:root {
  --ink: #17211b;
  --muted: #667169;
  --paper: #f7f4ed;
  --white: #fffdf8;
  --green: #1d6c4d;
  --green-deep: #123f31;
  --line: rgba(23, 33, 27, 0.16);
  --orange: #e97845;
  --blue: #dbe8ed;
  --radius: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}
a { color: inherit; }
.site-header, main, footer { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.site-header {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.brand { display: inline-flex; align-items: center; gap: 11px; font-weight: 760; text-decoration: none; letter-spacing: -0.02em; }
.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--green);
  border-radius: 50% 50% 50% 12px;
  font-family: Georgia, serif;
  font-style: italic;
}
nav { display: flex; gap: 30px; }
nav a, .footer-links a { color: var(--muted); text-decoration: none; font-size: 0.92rem; }
nav a:hover, .footer-links a:hover { color: var(--green); }
.hero {
  min-height: 690px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.7fr);
  gap: clamp(50px, 8vw, 110px);
  align-items: center;
  padding: 92px 0 96px;
}
.eyebrow, .kicker { margin: 0 0 22px; color: var(--green); font-size: 0.76rem; font-weight: 780; letter-spacing: 0.15em; text-transform: uppercase; }
.eyebrow { display: flex; align-items: center; gap: 10px; }
.eyebrow span { width: 8px; height: 8px; background: var(--orange); border-radius: 50%; }
h1, h2, h3 { margin-top: 0; line-height: 1.05; letter-spacing: -0.045em; }
h1 { margin-bottom: 28px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(4rem, 8.6vw, 7.5rem); font-weight: 500; }
h2 { margin-bottom: 20px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(2.5rem, 5vw, 4.4rem); font-weight: 500; }
h3 { font-size: 1.25rem; letter-spacing: -0.025em; }
.hero-intro { max-width: 650px; margin: 0; color: var(--muted); font-size: clamp(1.05rem, 1.6vw, 1.22rem); }
.hero-actions { display: flex; gap: 12px; margin-top: 38px; }
.button { display: inline-flex; min-height: 50px; align-items: center; justify-content: center; padding: 0 23px; border: 1px solid var(--green); border-radius: 999px; font-weight: 720; text-decoration: none; transition: transform 160ms ease, background 160ms ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: white; background: var(--green); }
.button-primary:hover { background: var(--green-deep); }
.button-secondary { color: var(--green); }
.delivery-card { padding: 30px; color: white; background: var(--green-deep); border-radius: 120px 120px var(--radius) var(--radius); box-shadow: 0 28px 70px rgba(20, 62, 48, 0.18); }
.delivery-card-head { display: flex; justify-content: space-between; margin: 32px 8px 28px; padding-bottom: 18px; border-bottom: 1px solid rgba(255,255,255,.18); font-size: .8rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.live-dot { display: flex; align-items: center; gap: 7px; color: #b9dfca; }
.live-dot::before { content: ""; width: 7px; height: 7px; background: #73d99b; border-radius: 50%; box-shadow: 0 0 0 5px rgba(115,217,155,.12); }
.principle-list { margin: 0; padding: 0; list-style: none; }
.principle-list li { display: grid; grid-template-columns: 36px 1fr; gap: 14px; padding: 18px 6px; border-bottom: 1px solid rgba(255,255,255,.12); }
.step { color: #b9dfca; font: italic 1rem Georgia, serif; }
.principle-list strong, .principle-list small { display: block; }
.principle-list strong { margin-bottom: 4px; font-size: .98rem; }
.principle-list small { color: rgba(255,255,255,.64); line-height: 1.45; }
.card-note { padding: 24px 6px 4px; color: rgba(255,255,255,.58); font-size: .8rem; text-align: center; }
.facts { display: grid; grid-template-columns: repeat(3, 1fr); border-block: 1px solid var(--line); }
.facts div { min-height: 116px; display: flex; flex-direction: column; justify-content: center; padding: 24px 30px; border-right: 1px solid var(--line); }
.facts div:last-child { border: 0; }
.facts span { margin-bottom: 7px; color: var(--muted); font-size: .73rem; font-weight: 760; letter-spacing: .12em; text-transform: uppercase; }
.facts strong { font-size: .98rem; }
.section { padding: 140px 0; }
.section-heading { max-width: 690px; margin-bottom: 58px; }
.section-heading > p:last-child { max-width: 590px; color: var(--muted); font-size: 1.06rem; }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.use-card { min-height: 320px; display: flex; flex-direction: column; align-items: flex-start; padding: 28px; border-radius: var(--radius); }
.use-card.warm { background: #ead9c7; }
.use-card.green { background: #d7e5d8; }
.use-card.blue { background: var(--blue); }
.card-index { margin-bottom: auto; font: italic 2rem Georgia, serif; opacity: .55; }
.use-card h3 { margin: 42px 0 12px; }
.use-card p { margin: 0 0 22px; color: rgba(23,33,27,.72); }
.tag { margin-top: auto; padding: 5px 10px; border: 1px solid rgba(23,33,27,.24); border-radius: 999px; font-size: .7rem; font-weight: 750; text-transform: uppercase; }
.process-section {
  width: auto;
  max-width: none;
  margin-inline: calc(50% - 50vw);
  padding: 130px max(20px, calc((100vw - 1180px) / 2));
  color: white;
  background: var(--green-deep);
}
.inverse .kicker { color: #9fd0b5; }
.inverse > p:last-child { color: rgba(255,255,255,.66); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.14); }
.process-grid article { min-height: 280px; padding: 28px; background: var(--green-deep); }
.process-grid span { display: block; margin-bottom: 80px; color: #9fd0b5; font: italic 1.25rem Georgia, serif; }
.process-grid h3 { margin-bottom: 13px; }
.process-grid p { color: rgba(255,255,255,.62); font-size: .9rem; }
.policy-section { display: grid; grid-template-columns: .75fr 1.25fr; gap: 100px; }
.policy-title { position: sticky; top: 40px; align-self: start; }
.policy-list { border-top: 1px solid var(--line); }
.policy-list div { display: grid; grid-template-columns: 46px 1fr; gap: 20px; padding: 30px 0; border-bottom: 1px solid var(--line); }
.policy-list span { color: var(--green); font: italic 1rem Georgia, serif; }
.policy-list p { margin: 0; font-size: 1.06rem; }
.contact-section { display: grid; grid-template-columns: 1fr .8fr; gap: 80px; margin-bottom: 100px; padding: 66px; color: white; background: var(--orange); border-radius: var(--radius); }
.contact-section h2 { max-width: 620px; margin: 0; font-size: clamp(2.4rem, 4vw, 4rem); }
.contact-section .kicker { color: #542514; }
.contact-block { align-self: end; padding-left: 32px; border-left: 1px solid rgba(255,255,255,.45); }
.contact-block p, .contact-block small { display: block; color: rgba(255,255,255,.8); }
.contact-block a { display: inline-block; margin: 8px 0 16px; color: white; font-size: clamp(1.25rem, 2vw, 1.7rem); font-weight: 760; }
footer { display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: center; padding: 44px 0 50px; border-top: 1px solid var(--line); }
.footer-links { display: flex; gap: 24px; }
footer > p { grid-column: 1 / -1; margin: 0; color: var(--muted); font-size: .8rem; }

.legal-main { max-width: 850px; padding: 90px 0 120px; }
.legal-main h1 { font-size: clamp(3.3rem, 8vw, 6rem); }
.legal-intro { margin-bottom: 64px; padding-bottom: 36px; color: var(--muted); font-size: 1.08rem; border-bottom: 1px solid var(--line); }
.legal-main article h2 { margin: 50px 0 16px; font-family: inherit; font-size: 1.35rem; font-weight: 760; letter-spacing: -.025em; }
.legal-main article p, .legal-main article li { color: #4f5b53; }
.legal-main article ul { padding-left: 20px; }
.back-link { display: inline-flex; margin-bottom: 36px; color: var(--green); font-weight: 700; text-decoration: none; }

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .delivery-card { max-width: 560px; border-radius: 80px 80px var(--radius) var(--radius); }
  .facts, .card-grid { grid-template-columns: 1fr; }
  .facts div { border-right: 0; border-bottom: 1px solid var(--line); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .policy-section, .contact-section { grid-template-columns: 1fr; gap: 40px; }
  .policy-title { position: static; }
  .contact-block { padding: 0; border: 0; }
}
@media (max-width: 620px) {
  .site-header, main, footer { width: min(100% - 28px, 1180px); }
  .site-header { min-height: 72px; }
  nav a:not(:last-child) { display: none; }
  .hero { padding: 68px 0 72px; }
  h1 { font-size: clamp(3.4rem, 17vw, 5.2rem); }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .delivery-card { padding: 22px; border-radius: 58px 58px 16px 16px; }
  .facts div { padding-inline: 10px; }
  .section { padding: 92px 0; }
  .process-section { padding-block: 90px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-grid span { margin-bottom: 35px; }
  .contact-section { width: calc(100% - 28px); padding: 38px 28px; margin-inline: auto; }
  footer { grid-template-columns: 1fr; }
  .footer-links { flex-wrap: wrap; }
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } * { transition: none !important; } }
