:root {
  --ink: #17322f;
  --muted: #566561;
  --paper: #f5f0e6;
  --paper-deep: #e9e0d0;
  --white: #fffdf8;
  --green: #1e5b50;
  --green-dark: #123d37;
  --coral: #df6d4d;
  --line: rgba(23, 50, 47, 0.18);
  --serif: "Newsreader", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

a:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 4px;
}

.site-header,
main > section,
footer {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  min-height: 104px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  line-height: 1.05;
  text-decoration: none;
}

.brand small {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: var(--green);
  border-radius: 50%;
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.55rem;
}

nav { display: flex; align-items: center; gap: 30px; }
nav a { font-size: 0.87rem; font-weight: 600; text-decoration: none; }
nav a:not(.nav-cta):hover { color: var(--coral); }
.nav-cta { padding: 10px 18px; border: 1px solid var(--ink); border-radius: 999px; }
.nav-cta:hover { background: var(--ink); color: var(--white); }

.hero {
  min-height: 700px;
  padding: 86px 0 96px;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(330px, 0.65fr);
  gap: clamp(60px, 8vw, 120px);
  align-items: center;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--green);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero .eyebrow { display: flex; align-items: center; gap: 10px; }
.hero .eyebrow span { width: 34px; height: 2px; background: var(--coral); }

h1, h2, h3, blockquote { font-family: var(--serif); font-weight: 500; line-height: 0.98; }

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(4rem, 7vw, 6.9rem);
  letter-spacing: -0.055em;
}

.hero-intro {
  max-width: 690px;
  margin: 34px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
}

.hero-actions { display: flex; align-items: center; gap: 22px; margin-top: 38px; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 0.87rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease;
}

.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--green); color: var(--white); }
.button-primary:hover { background: var(--green-dark); }
.button-quiet { padding-inline: 4px; }

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  padding: 0;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: 0.8rem;
  list-style: none;
}

.trust-list li::before { content: "✓"; margin-right: 8px; color: var(--green); font-weight: 700; }

.hero-card {
  position: relative;
  padding: 42px 38px;
  background: var(--green);
  color: var(--white);
  border-radius: 4px 54px 4px 4px;
  box-shadow: 22px 24px 0 var(--paper-deep);
}

.hero-card::before {
  content: "";
  position: absolute;
  width: 64px;
  height: 64px;
  top: -22px;
  right: 38px;
  border: 2px solid var(--coral);
  border-radius: 50%;
}

.card-label { color: #bcd4cd; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; }
blockquote { margin: 20px 0 44px; font-size: clamp(2.05rem, 3.2vw, 3.1rem); letter-spacing: -0.025em; }
.coffee-note { display: flex; gap: 15px; padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, 0.25); }
.coffee-note p { margin: 0; color: #d5e3df; font-size: 0.84rem; line-height: 1.5; }
.coffee-note strong { color: var(--white); }
.coffee-icon { font-size: 1.35rem; }

.statement {
  width: 100%;
  max-width: none;
  padding: 106px max(24px, calc((100vw - 1180px) / 2));
  display: grid;
  grid-template-columns: 80px 1fr 1fr;
  gap: clamp(30px, 5vw, 80px);
  background: var(--white);
}

.section-number { margin: 3px 0; color: var(--coral); font-size: 0.74rem; font-weight: 700; letter-spacing: 0.12em; }
h2 { margin: 0; font-size: clamp(3rem, 5vw, 5.2rem); letter-spacing: -0.045em; }
.statement-copy { max-width: 540px; color: var(--muted); }
.statement-copy p:first-child { margin-top: 0; color: var(--ink); font-size: 1.18rem; }

.process { padding: 110px 0; }
.section-heading { max-width: 700px; }
.section-heading > p:last-child { color: var(--muted); }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; padding: 0; margin: 66px 0 0; background: var(--line); list-style: none; }
.process-grid li { min-height: 330px; padding: 38px 34px; background: var(--paper); }
.process-grid li > span { color: var(--coral); font-size: 0.73rem; font-weight: 700; }
.process-grid h3 { margin: 84px 0 16px; font-size: 2.1rem; line-height: 1.08; }
.process-grid p { margin: 0; color: var(--muted); font-size: 0.9rem; }

.topics {
  width: 100%;
  max-width: none;
  padding: 105px max(24px, calc((100vw - 1180px) / 2));
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(60px, 10vw, 150px);
  background: var(--green-dark);
  color: var(--white);
}

.topics .eyebrow { color: #8fc3b7; }
.topics-intro > p:last-child { max-width: 480px; color: #bad0ca; }
.topic-list { padding: 0; margin: 0; list-style: none; }
.topic-list li { display: flex; justify-content: space-between; gap: 20px; padding: 23px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.18); }
.topic-list span { font-family: var(--serif); font-size: 1.65rem; line-height: 1.1; }
.topic-list strong { color: #8fc3b7; font-size: 0.7rem; }

.about { padding: 120px 0; display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(60px, 10vw, 140px); align-items: center; }
.about-image { margin: 0; }
.about-image img { width: 100%; aspect-ratio: 4 / 5; display: block; object-fit: cover; filter: saturate(0.75); }
.about-image figcaption { margin-top: 10px; color: var(--muted); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; }
.about-copy h2 { font-size: clamp(3rem, 4.6vw, 5rem); }
.about-copy > p:not(.eyebrow) { max-width: 660px; color: var(--muted); }
.about-copy > p:nth-of-type(2) { margin-top: 30px; color: var(--ink); font-size: 1.12rem; }
.text-link { display: inline-block; margin-top: 16px; color: var(--green); font-size: 0.86rem; font-weight: 700; text-underline-offset: 5px; }

.faq { padding: 10px 0 120px; display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(60px, 10vw, 140px); }
.faq-list { border-top: 1px solid var(--line); }
details { border-bottom: 1px solid var(--line); }
summary { padding: 25px 40px 25px 0; cursor: pointer; font-family: var(--serif); font-size: 1.55rem; line-height: 1.2; }
details p { max-width: 700px; margin: -6px 40px 24px 0; color: var(--muted); font-size: 0.91rem; }

.final-cta {
  width: calc(100% - 48px);
  max-width: 1180px;
  padding: 92px clamp(26px, 8vw, 110px);
  background: var(--coral);
  border-radius: 4px 72px 4px 4px;
  color: var(--white);
  text-align: center;
}

.final-cta .eyebrow { color: #ffe1d6; }
.final-cta h2 { max-width: 800px; margin-inline: auto; }
.final-cta > p:not(.eyebrow) { margin: 24px 0 32px; }
.button-light { background: var(--white); color: var(--ink); }

footer { min-height: 130px; display: flex; align-items: center; justify-content: space-between; color: var(--muted); font-size: 0.72rem; }
footer div { display: flex; gap: 24px; }
footer a { text-underline-offset: 4px; }

@media (max-width: 900px) {
  nav a:not(.nav-cta) { display: none; }
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 72px; }
  .hero-card { max-width: 560px; }
  .statement { grid-template-columns: 50px 1fr; }
  .statement-copy { grid-column: 2; }
  .process-grid { grid-template-columns: 1fr; }
  .process-grid li { min-height: auto; }
  .process-grid h3 { margin-top: 42px; }
  .topics, .about, .faq { grid-template-columns: 1fr; }
  .about-image { max-width: 520px; }
}

@media (max-width: 600px) {
  body { font-size: 16px; }
  .site-header, main > section, footer { width: min(100% - 30px, 1180px); }
  .site-header { min-height: 82px; }
  .brand-mark { width: 36px; height: 36px; }
  .brand { font-size: 0.85rem; }
  .nav-cta { padding: 8px 13px; }
  .hero { padding: 58px 0 80px; gap: 68px; }
  h1 { font-size: clamp(3.35rem, 17vw, 5rem); }
  h2 { font-size: clamp(2.7rem, 14vw, 4rem); }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .button-quiet { min-height: 38px; }
  .hero-card { padding: 36px 26px; box-shadow: 12px 14px 0 var(--paper-deep); }
  blockquote { font-size: 2.2rem; }
  .statement { padding-block: 80px; grid-template-columns: 1fr; }
  .statement .section-number { display: none; }
  .statement-copy { grid-column: 1; }
  .process { padding: 84px 0; }
  .topics { padding-block: 80px; }
  .topic-list span { font-size: 1.35rem; }
  .about { padding: 85px 0; }
  .faq { padding-bottom: 85px; }
  .final-cta { width: calc(100% - 30px); padding: 70px 22px; }
  footer { padding: 32px 0; align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .button { transition: none; }
}
