@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 500 600;
  font-display: swap;
  src: url("./assets/fonts/CormorantGaramond-Latin.woff2") format("woff2");
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("./assets/fonts/Manrope-Latin.woff2") format("woff2");
}

:root {
  color-scheme: light;
  --forest-deep: #102c20;
  --forest: #173b2b;
  --rust: #b94f26;
  --rust-deep: #963a1a;
  --paper: #f5f3ef;
  --white: #fff;
  --ink: #14231d;
  --muted: #58655f;
  --line: #d9ddd9;
  --display: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", system-ui, sans-serif;
  --page: clamp(22px, 4.2vw, 70px);
  --content: 1370px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--white); color: var(--ink); font: 15px/1.65 var(--sans); }
a { color: inherit; }
button, a, summary { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid #f2a27e; outline-offset: 4px; }
.skip { position: fixed; z-index: 100; left: 16px; top: -80px; padding: 12px 16px; background: var(--white); color: var(--forest-deep); }
.skip:focus { top: 16px; }

.masthead {
  min-height: 88px;
  display: grid;
  grid-template-columns: minmax(150px, 1fr) auto minmax(310px, 1fr);
  align-items: center;
  gap: 34px;
  padding: 0 var(--page);
  background: var(--forest-deep);
  color: var(--white);
}
.brand { width: max-content; display: inline-flex; align-items: baseline; text-decoration: none; font: 600 47px/.9 var(--display); letter-spacing: -.035em; }
.brand span { color: var(--rust); }
.mainnav { display: flex; justify-content: center; gap: clamp(24px, 2.8vw, 46px); }
.mainnav a, footer nav a { text-decoration: none; font-size: 12px; font-weight: 700; }
.mainnav a:hover, footer nav a:hover { color: #ed9d77; }
.mobile-nav { display: none; position: relative; }
.mobile-nav summary { min-height: 44px; display: flex; align-items: center; gap: 8px; cursor: pointer; list-style: none; font-weight: 700; }
.mobile-nav summary::-webkit-details-marker { display: none; }
.mobile-nav summary::after { content: "+"; color: #ed9d77; font-size: 20px; }
.mobile-nav[open] summary::after { content: "−"; }
.mobile-nav nav { position: absolute; z-index: 10; right: 0; top: calc(100% + 10px); min-width: 190px; padding: 8px; background: var(--white); color: var(--ink); box-shadow: 0 18px 45px rgba(3, 20, 12, .22); }
.mobile-nav nav a { min-height: 44px; display: flex; align-items: center; padding: 0 12px; text-decoration: none; font-weight: 700; }
.nav-action { display: flex; justify-content: flex-end; align-items: center; gap: 23px; }
.price-tag { color: #ed9d77; font-size: 12px; font-weight: 700; white-space: nowrap; }
.button { min-height: 50px; width: max-content; display: inline-flex; align-items: center; justify-content: center; padding: 0 24px; border: 1px solid var(--rust); background: var(--rust); color: var(--white); text-decoration: none; font-size: 13px; font-weight: 700; transition: background .18s ease, border-color .18s ease, transform .18s ease; }
.button:hover { background: var(--rust-deep); border-color: var(--rust-deep); transform: translateY(-1px); }
.button-small { min-height: 48px; padding-inline: 20px; font-size: 12px; }

.hero {
  min-height: 790px;
  display: grid;
  grid-template-columns: minmax(350px, .82fr) minmax(560px, 1.18fr);
  gap: clamp(44px, 6vw, 96px);
  align-items: center;
  padding: 48px var(--page) 76px;
  background: var(--forest-deep);
  color: var(--white);
}
.hero-copy { max-width: 570px; }
h1, h2, h3, p { text-wrap: pretty; }
h1 { margin: 0; font: 500 clamp(65px, 6.4vw, 104px)/.92 var(--display); letter-spacing: -.035em; }
h1 span { color: var(--rust); }
.rule { width: 44px; height: 2px; margin: 34px 0 23px; background: var(--rust); }
.hero-lead { max-width: 38ch; margin: 0 0 28px; color: #f3f4f1; font-size: clamp(16px, 1.3vw, 19px); line-height: 1.65; }
.hero-note { max-width: 52ch; margin: 15px 0 0; color: #b9c6be; font-size: 12px; line-height: 1.55; }
.hero-note a { color: var(--white); text-underline-offset: 3px; }
.hero-visual { margin: 0; background: var(--paper); box-shadow: 0 28px 65px rgba(0, 0, 0, .25); }
.hero-visual img { width: 100%; height: auto; display: block; }
.hero-visual figcaption { padding: 10px 14px 12px; color: var(--muted); font-size: 11px; }

.section { padding: clamp(78px, 8.5vw, 120px) var(--page); }
.section > h2, .section > div { max-width: var(--content); margin-inline: auto; }
.section > h2 { margin-top: 0; margin-bottom: 42px; font: 500 clamp(40px, 4vw, 59px)/1 var(--display); letter-spacing: -.025em; }
.included { background: var(--white); }
.included-list { border-top: 1px solid var(--line); }
.included-list article { display: grid; grid-template-columns: minmax(210px, .52fr) minmax(0, 1fr); gap: clamp(34px, 7vw, 112px); align-items: start; padding: 26px 0 27px; border-bottom: 1px solid var(--line); }
.included-list h3 { margin: 0; font: 600 23px/1.15 var(--display); }
.included-list p { max-width: 70ch; margin: 0; color: var(--muted); font-size: 15px; }

.team { background: var(--forest); color: var(--white); }
.team-intro { display: grid; grid-template-columns: minmax(330px, .95fr) minmax(320px, .7fr); justify-content: space-between; align-items: end; gap: clamp(48px, 10vw, 170px); margin-bottom: clamp(40px, 5vw, 66px); }
.team-eyebrow { margin: 0 0 18px; color: #ed9d77; font-size: 10px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.team-intro h2 { max-width: 13ch; margin: 0; font: 500 clamp(43px, 4.5vw, 67px)/.96 var(--display); letter-spacing: -.03em; }
.team-lead { max-width: 58ch; margin: 0 0 4px; color: #d3ddd6; font-size: 15px; line-height: 1.75; }
.team-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(22px, 3vw, 42px); }
.team-card { min-width: 0; display: grid; grid-template-columns: minmax(210px, .86fr) minmax(245px, 1.14fr); background: var(--white); color: var(--ink); }
.team-portrait { min-height: 100%; position: relative; overflow: hidden; margin: 0; background: #ddd3c5; }
.team-portrait img { width: 100%; height: 100%; min-height: 420px; display: block; object-fit: cover; }
.ai-badge { position: absolute; right: 10px; bottom: 10px; width: 34px; height: 34px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid rgba(16, 44, 32, .22); border-radius: 50%; background: #f7f7f5; color: #090b0a; box-shadow: 0 3px 10px rgba(0, 0, 0, .18); }
.ai-badge strong { font-size: 13px; line-height: 1; font-weight: 700; letter-spacing: -.08em; }
.team-card-copy { min-width: 0; display: flex; flex-direction: column; justify-content: center; padding: clamp(26px, 3vw, 42px); }
.team-disclosure { margin: 0 0 22px; color: var(--rust); font-size: 9px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.team-card h3 { margin: 0; font: 500 clamp(38px, 3vw, 49px)/.9 var(--display); letter-spacing: -.025em; }
.team-role { margin: 10px 0 22px; color: var(--forest); font-size: 12px; font-weight: 700; }
.team-card-copy > p:not([class]) { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.7; }
.team-focus { margin: auto 0 0; padding-top: 27px; color: var(--muted); font-size: 10px; letter-spacing: .04em; }
.team-focus span { display: block; margin-bottom: 5px; color: var(--rust); font-size: 9px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }

.process { background: var(--paper); }
.process-row { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr minmax(250px, .82fr); align-items: stretch; gap: clamp(18px, 2.5vw, 38px); }
.process-row article { padding: 9px 0; }
.process-row h3 { margin: 0 0 14px; font: 500 25px/1.1 var(--display); }
.process-row article p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.65; }
.arrow { align-self: start; margin-top: 5px; color: var(--rust); font: 400 31px/1 var(--display); }
.price-panel { display: flex; flex-direction: column; justify-content: center; padding: 18px 0 18px 40px; border-left: 1px solid #bec6c0; }
.price-panel > p { margin: 0 0 13px; color: var(--rust); font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.price-panel strong { color: var(--rust); font: 500 62px/.9 var(--display); white-space: nowrap; }
.price-panel strong span { color: var(--ink); font: 500 16px/1 var(--display); }
.price-panel small { max-width: 26ch; margin-top: 18px; color: var(--muted); font-size: 11px; line-height: 1.55; }

.faq { background: var(--white); }
.faq-list { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 28px; cursor: pointer; list-style: none; font: 500 20px/1.25 var(--display); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; flex: none; color: var(--rust); font: 400 25px/1 var(--sans); }
.faq details[open] summary::after { content: "−"; }
.faq details p { max-width: 75ch; margin: -4px 50px 25px 0; color: var(--muted); }
.faq-close { display: flex; justify-content: space-between; align-items: center; gap: 32px; padding-top: 36px; }
.faq-close p { max-width: 64ch; margin: 0; color: var(--muted); }
.faq-close strong { color: var(--ink); }

footer {
  min-height: 108px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 34px;
  padding: 24px var(--page);
  background: var(--forest-deep);
  color: var(--white);
}
.footer-brand { font-size: 40px; }
footer nav { display: flex; gap: 30px; }
.footer-meta { display: flex; justify-content: flex-end; gap: 25px; color: #b9c6be; font-size: 11px; }
.footer-meta a { text-underline-offset: 3px; }

@media (max-width: 1120px) {
  .masthead { grid-template-columns: 1fr auto auto; }
  .mainnav { display: none; }
  .mobile-nav { display: block; }
  .hero { min-height: 720px; grid-template-columns: minmax(310px, .8fr) minmax(480px, 1.2fr); }
  .team-grid { grid-template-columns: 1fr; }
  .team-card { grid-template-columns: minmax(260px, .72fr) minmax(0, 1.28fr); }
  .team-portrait img { min-height: 400px; }
  .process-row { grid-template-columns: 1fr auto 1fr; }
  .process-row article:nth-of-type(3) { grid-column: 1; grid-row: 2; }
  .process-row .arrow:nth-of-type(2) { display: none; }
  .price-panel { grid-column: 3; grid-row: 2; }
}

@media (max-width: 860px) {
  .nav-action .price-tag { display: none; }
  .hero { min-height: 0; grid-template-columns: 1fr; padding-top: 60px; }
  .hero-copy { max-width: 650px; }
  .hero-visual { max-width: 760px; }
  .included-list article { grid-template-columns: minmax(170px, .5fr) 1fr; }
  .team-intro { grid-template-columns: 1fr; align-items: start; gap: 24px; }
  .team-intro h2 { max-width: 15ch; }
  .team-lead { max-width: 65ch; }
  .process-row { grid-template-columns: 1fr; }
  .process-row article:nth-of-type(3), .price-panel { grid-column: auto; grid-row: auto; }
  .arrow { transform: rotate(90deg); margin: 0; }
  .process-row .arrow:nth-of-type(2) { display: block; }
  .price-panel { border-left: 0; border-top: 1px solid #bec6c0; padding: 30px 0 0; }
  footer { grid-template-columns: 1fr auto; }
  footer nav { display: none; }
}

@media (max-width: 600px) {
  :root { --page: 19px; }
  .masthead { min-height: 72px; grid-template-columns: 1fr auto; gap: 15px; }
  .brand { font-size: 40px; }
  .mobile-nav { grid-column: 2; grid-row: 1; }
  .nav-action { display: none; }
  .hero { padding-top: 48px; padding-bottom: 58px; gap: 42px; }
  h1 { font-size: clamp(54px, 16vw, 74px); }
  .button { width: 100%; }
  .hero-note { font-size: 11px; }
  .section { padding-top: 66px; padding-bottom: 72px; }
  .section > h2 { margin-bottom: 29px; font-size: 39px; }
  .included-list article { grid-template-columns: 1fr; gap: 10px; padding: 23px 0; }
  .included-list h3 { font-size: 22px; }
  .team-intro { margin-bottom: 32px; }
  .team-intro h2 { font-size: 39px; }
  .team-lead { font-size: 14px; }
  .team-grid { gap: 18px; }
  .team-card { grid-template-columns: 1fr; }
  .team-portrait { aspect-ratio: 4 / 5; }
  .team-portrait img { min-height: 0; }
  .team-card-copy { min-height: 335px; }
  .team-disclosure { margin-bottom: 18px; }
  .ai-badge { width: 32px; height: 32px; right: 9px; bottom: 9px; }
  .ai-badge strong { font-size: 12px; }
  .process-row { gap: 20px; }
  .process-row h3 { font-size: 24px; }
  .arrow { margin-left: 2px; }
  .price-panel strong { font-size: 58px; }
  .faq summary { min-height: 72px; font-size: 19px; }
  .faq details p { margin-right: 12px; }
  .faq-close { align-items: stretch; flex-direction: column; gap: 20px; }
  footer { min-height: 96px; }
  .footer-meta { display: grid; justify-items: end; gap: 3px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
