/* ============================================================
   STRUCTORA — styles.css (v4 design)
   Agent-First Shopify Ops
   Palette: #F6F6F1 cream · #10140F near-black · #1C4029 forest
            #2A5E3C green · #A8E6C1 mint · #DFE0D4 border
   Fonts: DM Serif Display (display) · Instrument Sans (body)
   Boxed editorial layout — vertical rules, sharp corners.
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; }

:root {
  --cream:       #F6F6F1;
  --white:       #FFFFFF;
  --black:       #10140F;
  --forest:      #1C4029;
  --green:       #2A5E3C;
  --mint:        #A8E6C1;
  --border:      #DFE0D4;
  --border-soft: #ECEDE4;
  --row-soft:    #F0F1E9;
  --text-2:      #3D443B;
  --text-3:      #6B7267;
  --text-4:      #9AA093;
  --max:         1120px;
}

html, body { margin: 0; padding: 0; background: var(--cream); }
body {
  font-family: 'Instrument Sans', system-ui, -apple-system, sans-serif;
  color: var(--black);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: var(--forest); text-decoration: none; }
a:hover { color: var(--green); }
::selection { background: var(--forest); color: var(--cream); }

h1, h2, h3, .display {
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.01em;
  margin: 0;
}

img { max-width: 100%; display: block; }

/* ── Layout ── */
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  padding: 80px 64px 88px;
}
@media (max-width: 900px) { .wrap { padding: 64px 32px 72px; } }
@media (max-width: 600px) { .wrap { padding: 48px 20px 56px; border-left: none; border-right: none; } }

section { border-bottom: 1px solid var(--border); }
section.bg-white { background: var(--white); }

.eyebrow {
  display: block;
  margin: 0 0 16px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--forest);
}

h2.section-h2 {
  margin: 0 0 48px;
  font-size: 42px;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--black);
  max-width: 640px;
}
@media (max-width: 700px) { h2.section-h2 { font-size: 30px; } }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 26px;
  border-radius: 8px;
  border: 1px solid transparent;
  cursor: pointer;
  line-height: 1;
  white-space: nowrap;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.btn-primary { background: var(--forest); color: #fff; border-color: var(--mint); }
.btn-primary:hover { background: var(--black); color: #fff; }
.btn-ghost { background: var(--white); color: var(--black); border-color: #B8BFB2; padding: 13px 26px; }
.btn-ghost:hover { border-color: var(--black); }
.btn-white { background: var(--white); color: var(--black); }
.btn-white:hover { background: #E9EFE9; }

/* ── Announcement bar ── */
.announce {
  background: var(--forest);
  color: #E9EFE9;
  font-size: 13px;
  letter-spacing: 0.02em;
  text-align: center;
  padding: 9px 24px;
}
.announce a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(246, 246, 241, 0.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
@media (max-width: 600px) { .nav-inner { padding: 0 20px; } }

.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo span { font-family: 'DM Serif Display', Georgia, serif; font-size: 19px; color: var(--black); letter-spacing: -0.01em; }

.main-nav { display: none; align-items: center; gap: 26px; font-size: 14px; font-weight: 500; }
@media (min-width: 860px) { .main-nav { display: flex; } }
.main-nav > a { color: var(--text-2); }
.main-nav > a:hover { color: var(--black); }

.nav-cta .btn-primary { padding: 9px 18px; font-size: 14px; border-radius: 2px; border-color: transparent; background: var(--black); }
.nav-cta .btn-primary:hover { background: var(--forest); color: #fff; }

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-shrink: 0;
}
@media (min-width: 860px) { .hamburger { display: none; } }
.hamburger span { display: block; height: 1.5px; background: var(--black); border-radius: 2px; transition: transform 0.2s, opacity 0.2s; transform-origin: center; }
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile drawer */
.mobile-drawer {
  display: none;
  position: fixed;
  top: 60px;
  left: 0; right: 0;
  z-index: 99;
  background: rgba(246, 246, 241, 0.98);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  padding: 12px 20px 20px;
  flex-direction: column;
  gap: 2px;
  box-shadow: 0 8px 24px rgba(16, 20, 15, 0.08);
}
.mobile-drawer.open { display: flex; }
@media (min-width: 860px) { .mobile-drawer { display: none !important; } }
.mobile-drawer a:not(.btn) { display: block; padding: 11px 14px; color: var(--text-2); font-weight: 500; }
.mobile-drawer a:not(.btn):hover { background: #EFEFE9; color: var(--black); }
.mobile-drawer .btn-primary { margin-top: 8px; justify-content: center; background: var(--black); }
.mobile-label { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-4); padding: 14px 14px 4px; }

/* Products dropdown (desktop) */
.dropdown { position: relative; }
.dropdown-btn {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: inherit; font-size: 14px; font-weight: 500;
  color: var(--text-2); background: none; border: none; padding: 0; cursor: pointer;
}
.dropdown-btn:hover, .dropdown.open .dropdown-btn { color: var(--black); }
.dropdown-chevron { transition: transform 0.2s; }
.dropdown.open .dropdown-chevron { transform: rotate(180deg); }
.dropdown-panel { display: none; position: absolute; top: 100%; left: -20px; padding-top: 14px; z-index: 60; }
.dropdown.open .dropdown-panel { display: block; }
.dropdown-panel-inner {
  background: var(--white); border: 1px solid var(--border); min-width: 260px;
  box-shadow: 0 8px 24px rgba(16, 20, 15, 0.08); display: flex; flex-direction: column;
}
.dropdown-panel-inner a { display: block; padding: 14px 20px; font-size: 14px; font-weight: 500; color: var(--text-2); border-bottom: 1px solid var(--border-soft); }
.dropdown-panel-inner a:last-child { border-bottom: none; }
.dropdown-panel-inner a:hover { background: var(--cream); color: var(--black); }

/* ============================================================
   HERO
   ============================================================ */
.hero-section { border-bottom: 1px solid var(--border); }
.hero-photo {
  padding: 88px 64px 0;
  background: var(--forest) url("./structora-shopify-ai-agent-commerce-hero.webp") center / cover no-repeat;
  position: relative;
}
@media (max-width: 900px) { .hero-photo { padding: 64px 32px 0; } }
@media (max-width: 600px) { .hero-photo { padding: 48px 20px 0; } }
.hero-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13,17,23,0.5), rgba(13,17,23,0.72));
  pointer-events: none;
}
.hero-photo > * { position: relative; z-index: 1; }

.hero-content { max-width: 780px; }
.hero-tag {
  margin: 0 0 24px;
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--forest); border: 1px solid #C9D2C6; padding: 7px 14px;
  background: var(--white); border-radius: 8px;
}
h1.hero-h1 { margin: 0 0 24px; font-size: 64px; line-height: 1.06; letter-spacing: -0.015em; color: #fff; }
h1.hero-h1 em { font-style: normal; color: #F6F6F6; }
@media (max-width: 900px) { h1.hero-h1 { font-size: 48px; } }
@media (max-width: 600px) { h1.hero-h1 { font-size: 36px; } }
.hero-sub { margin: 0 0 36px; font-size: 19px; line-height: 1.6; color: #EFEFEF; max-width: 600px; }
.hero-btns { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-meta { margin: 0; display: flex; gap: 28px; flex-wrap: wrap; font-size: 13.5px; font-weight: 500; color: #EAEBEA; }

/* Hero visual: ACR preview card */
.hero-visual { margin-top: 64px; border: 1px solid var(--border); border-bottom: none; background: var(--white); }
@media (max-width: 600px) { .hero-visual { margin-top: 40px; } }
.hero-visual-head { display: flex; align-items: center; justify-content: space-between; padding: 12px 20px; border-bottom: 1px solid var(--border-soft); gap: 12px; flex-wrap: wrap; }
.hero-visual-head .label { font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-3); }
.hero-visual-head .url { font-size: 12px; font-weight: 500; color: var(--text-3); }
.hero-visual-body { display: grid; grid-template-columns: 300px 1fr; }
@media (max-width: 720px) { .hero-visual-body { grid-template-columns: 1fr; } }
.hero-visual-side { border-right: 1px solid var(--border-soft); padding: 36px 32px; display: flex; flex-direction: column; justify-content: space-between; gap: 32px; }
@media (max-width: 720px) { .hero-visual-side { border-right: none; border-bottom: 1px solid var(--border-soft); } }
.hero-visual-side .label { font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-3); margin-bottom: 14px; }
.hero-score-value { font-family: 'DM Serif Display', Georgia, serif; font-size: 72px; line-height: 1; color: var(--black); }
.hero-score-value span { font-size: 26px; color: var(--text-4); }
.hero-score-tag { margin-top: 12px; display: inline-block; font-size: 12.5px; font-weight: 600; color: #8A3A1B; background: #F7EDE6; border: 1px solid #E6D2C2; padding: 4px 10px; }
.hero-visual-side p { margin: 0; font-size: 13.5px; line-height: 1.55; color: var(--text-3); }
.hero-visual-dims { padding: 28px 32px; }
@media (max-width: 600px) { .hero-visual-dims { padding: 20px; } }
.hero-dim-row { display: grid; grid-template-columns: 28px minmax(140px, 200px) 1fr 56px; align-items: center; gap: 16px; padding: 11px 0; border-bottom: 1px solid var(--row-soft); }
.hero-dim-row:last-child { border-bottom: none; }
.hero-dim-n { font-size: 12px; font-weight: 600; color: var(--text-4); }
.hero-dim-name { font-size: 14px; font-weight: 600; color: var(--black); }
.hero-dim-bar { display: block; height: 6px; background: #EEEFE6; position: relative; }
.hero-dim-bar span { position: absolute; left: 0; top: 0; bottom: 0; background: var(--forest); }
.hero-dim-pts { font-size: 13px; font-weight: 500; color: var(--text-3); text-align: right; }
@media (max-width: 480px) {
  .hero-dim-row { grid-template-columns: 20px 1fr 40px; }
  .hero-dim-bar { display: none; }
}
.hero-visual-foot { display: flex; align-items: center; justify-content: space-between; padding-top: 18px; gap: 16px; flex-wrap: wrap; }
.hero-visual-foot p { margin: 0; font-size: 13px; color: var(--text-3); }
.hero-visual-foot a { font-size: 13px; font-weight: 600; color: var(--forest); }

/* ============================================================
   SHIFT
   ============================================================ */
.shift-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; border: 1px solid var(--border); background: var(--white); }
@media (max-width: 800px) { .shift-grid { grid-template-columns: 1fr; } }
.shift-col { padding: 36px 32px 40px; border-right: 1px solid var(--border-soft); }
.shift-col:last-child { border-right: none; }
@media (max-width: 800px) {
  .shift-col { border-right: none; border-bottom: 1px solid var(--border-soft); }
  .shift-col:last-child { border-bottom: none; }
}
.shift-num { font-family: 'DM Serif Display', Georgia, serif; font-size: 15px; color: var(--text-4); margin-bottom: 18px; }
.shift-col p { margin: 0; font-size: 15px; line-height: 1.65; color: var(--text-2); }

/* ============================================================
   ACR SCORE SECTION
   ============================================================ */
.acr-header-grid { display: grid; grid-template-columns: minmax(320px, 3fr) minmax(220px, 2fr); gap: 48px; margin-bottom: 48px; }
@media (max-width: 800px) { .acr-header-grid { grid-template-columns: 1fr; } }
.acr-header-grid h2 { font-size: 34px; line-height: 1.22; letter-spacing: -0.01em; color: var(--black); }
@media (max-width: 700px) { .acr-header-grid h2 { font-size: 26px; } }
.acr-header-grid p { margin: 0; font-size: 16px; line-height: 1.65; color: var(--text-2); align-self: end; }

.acr-list { border: 1px solid var(--border); }
.acr-row { display: grid; grid-template-columns: 64px minmax(180px, 240px) 1fr 90px; gap: 28px; align-items: start; padding: 28px 32px; border-bottom: 1px solid var(--border-soft); }
.acr-row:last-child { border-bottom: none; }
@media (max-width: 700px) {
  .acr-row { grid-template-columns: 36px 1fr; padding: 22px 20px; row-gap: 6px; }
  .acr-row .acr-pts { grid-column: 2; justify-self: start; text-align: left; }
}
.acr-row .n { font-family: 'DM Serif Display', Georgia, serif; font-size: 24px; color: var(--text-4); line-height: 1.2; }
.acr-row h3 { font-size: 17px; font-weight: 600; color: var(--black); line-height: 1.35; padding-top: 3px; font-family: 'Instrument Sans', sans-serif; }
.acr-row .body { margin: 0; font-size: 14.5px; line-height: 1.6; color: var(--text-2); }
.acr-pts { font-family: 'DM Serif Display', Georgia, serif; font-size: 24px; color: var(--forest); text-align: right; line-height: 1.2; }
.acr-pts .unit { font-family: 'Instrument Sans', sans-serif; font-size: 12px; font-weight: 600; color: var(--text-4); }
.acr-cta-row { margin-top: 36px; display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.acr-cta-row p { margin: 0; font-size: 14px; color: var(--text-3); }

/* ============================================================
   SERVICES
   ============================================================ */
.services-head { margin-bottom: 48px; }
.services-head h2 { margin: 0 0 14px; font-size: 42px; line-height: 1.12; letter-spacing: -0.01em; color: var(--black); }
@media (max-width: 700px) { .services-head h2 { font-size: 30px; } }
.services-head p { margin: 0; font-size: 16px; color: var(--text-2); }
.services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 700px) { .services-grid { grid-template-columns: 1fr; } }
.service-card { border: 1px solid var(--border); background: var(--white); padding: 32px 32px 28px; display: flex; flex-direction: column; }
.service-card.wide { grid-column: 1 / -1; }
.service-card-head { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; margin-bottom: 18px; flex-wrap: wrap; }
.service-card-head h3 { font-size: 19px; font-weight: 600; letter-spacing: -0.01em; color: var(--black); font-family: 'Instrument Sans', sans-serif; }
.service-price { font-size: 16px; font-weight: 600; color: var(--forest); }
.service-price .unit { font-size: 12px; font-weight: 500; color: var(--text-4); }
.service-label { font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-4); margin-bottom: 8px; }
.service-card p.desc { margin: 0 0 24px; font-size: 14.5px; line-height: 1.6; color: var(--text-2); flex: 1; }
.service-foot { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--border-soft); padding-top: 16px; }
.service-duration { font-size: 13px; font-weight: 500; color: var(--text-3); }
.service-link { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: var(--forest); }
.service-link:hover { color: var(--black); }

/* ============================================================
   WHY FOUNDER-LED
   ============================================================ */
.founder-grid { display: grid; grid-template-columns: minmax(280px, 380px) minmax(0, 1fr); gap: 64px; }
@media (max-width: 800px) { .founder-grid { grid-template-columns: 1fr; gap: 32px; } }
.founder-grid h2 { font-size: 42px; line-height: 1.12; letter-spacing: -0.01em; color: var(--black); }
@media (max-width: 700px) { .founder-grid h2 { font-size: 30px; } }
.founder-grid h2 em { font-style: normal; color: var(--forest); }
.founder-paras { display: flex; flex-direction: column; gap: 18px; font-size: 16px; line-height: 1.65; color: var(--text-2); padding-top: 8px; }
.founder-paras strong { color: var(--black); }

/* ============================================================
   SUBSCRIPTION
   ============================================================ */
.sub-intro { margin: 0 0 48px; font-size: 16px; line-height: 1.6; color: var(--text-2); max-width: 620px; }
.sub-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 880px; }
@media (max-width: 640px) { .sub-grid { grid-template-columns: 1fr; } }
.sub-card { border: 1px solid var(--border); background: var(--white); padding: 32px 32px 36px; }
.sub-card.soon { opacity: 0.72; }
.sub-tag { display: inline-block; font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-3); border: 1px solid var(--border); padding: 5px 12px; margin-bottom: 20px; }
.sub-card h3 { margin: 0 0 8px; font-size: 20px; font-weight: 600; color: var(--black); font-family: 'Instrument Sans', sans-serif; }
.sub-price { font-family: 'DM Serif Display', Georgia, serif; font-size: 38px; color: var(--forest); margin-bottom: 8px; }
.sub-price sub { font-family: 'Instrument Sans', sans-serif; font-size: 14px; font-weight: 500; color: var(--text-4); bottom: 4px; }
.sub-note { margin: 0 0 20px; font-size: 14px; color: var(--text-3); }
.sub-list { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 10px; }
.sub-list li { display: flex; align-items: baseline; gap: 10px; font-size: 14px; line-height: 1.5; color: var(--text-2); }
.sub-list li::before { content: ''; width: 5px; height: 5px; background: var(--forest); flex-shrink: 0; transform: translateY(-2px); display: inline-block; }

/* ============================================================
   HOW TO START
   ============================================================ */
.steps-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; border: 1px solid var(--border); }
@media (max-width: 800px) { .steps-grid { grid-template-columns: 1fr; } }
.step-col { padding: 36px 32px 40px; border-right: 1px solid var(--border-soft); }
.step-col:last-child { border-right: none; }
@media (max-width: 800px) {
  .step-col { border-right: none; border-bottom: 1px solid var(--border-soft); }
  .step-col:last-child { border-bottom: none; }
}
.step-head { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.step-n { display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; border: 1px solid var(--forest); font-family: 'DM Serif Display', Georgia, serif; font-size: 15px; color: var(--forest); flex-shrink: 0; }
.step-line { flex: 1; height: 1px; background: var(--border); }
.step-col h3 { margin: 0 0 10px; font-size: 18px; font-weight: 600; color: var(--black); font-family: 'Instrument Sans', sans-serif; }
.step-col p { margin: 0; font-size: 14.5px; line-height: 1.6; color: var(--text-2); }
.step-col p a { font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: minmax(280px, 360px) minmax(0, 1fr); gap: 64px; }
@media (max-width: 800px) { .contact-grid { grid-template-columns: 1fr; gap: 32px; } }
.contact-grid h2 { margin: 0 0 14px; font-size: 38px; line-height: 1.14; letter-spacing: -0.01em; color: var(--black); }
@media (max-width: 700px) { .contact-grid h2 { font-size: 28px; } }
.contact-lead p { margin: 0 0 32px; font-size: 16px; color: var(--text-2); }
.contact-links { display: flex; flex-direction: column; gap: 12px; font-size: 14.5px; font-weight: 500; }
.contact-box { border: 1px solid var(--border); background: var(--white); padding: 40px; }
@media (max-width: 600px) { .contact-box { padding: 28px 22px; } }
.form-success { font-size: 16px; font-weight: 600; color: var(--forest); padding: 24px 0; display: none; }
.form-success.show { display: block; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
@media (max-width: 480px) { .form-grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 20px; }
.field label { font-size: 13px; font-weight: 600; color: var(--text-2); }
.field input, .field textarea {
  font-family: inherit; font-size: 15px; padding: 11px 14px;
  border: 1px solid #C9CDBF; border-radius: 2px; background: #FDFDFB; color: var(--black); outline: none;
}
.field input:focus, .field textarea:focus { border-color: var(--forest); }
.field textarea { resize: vertical; }
.honeypot { display: none; }
.submit-btn {
  width: 100%; font-family: inherit; background: var(--forest); color: #fff;
  font-size: 15px; font-weight: 600; padding: 14px 26px; border: none; border-radius: 2px; cursor: pointer;
}
.submit-btn:hover { background: var(--black); }
.submit-btn:disabled { opacity: 0.6; cursor: not-allowed; }
.form-note { margin: 12px 0 0; font-size: 13px; color: var(--text-3); text-align: center; }
.form-divider { display: flex; align-items: center; gap: 16px; margin: 24px 0; color: var(--text-4); font-size: 13px; }
.form-divider::before, .form-divider::after { content: ''; flex: 1; height: 1px; background: var(--border-soft); }
.calendly-btn { display: flex; align-items: center; justify-content: center; gap: 10px; border: 1px solid #B8BFB2; padding: 13px; font-size: 14.5px; font-weight: 600; color: var(--black); border-radius: 2px; }
.calendly-btn:hover { border-color: var(--black); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-head { margin-bottom: 48px; }
.faq-head h2 { margin: 0 0 14px; font-size: 42px; line-height: 1.12; letter-spacing: -0.01em; color: var(--black); }
@media (max-width: 700px) { .faq-head h2 { font-size: 30px; } }
.faq-head h2 em { font-style: normal; color: var(--forest); }
.faq-head p { margin: 0; font-size: 16px; color: var(--text-2); }
.faq-list { border: 1px solid var(--border); max-width: 880px; }
.faq-item { border-bottom: 1px solid var(--border-soft); }
.faq-item:last-child { border-bottom: none; }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px;
  text-align: left; font-family: inherit; font-size: 16px; font-weight: 600; color: var(--black);
  background: none; border: none; padding: 22px 28px; cursor: pointer;
}
.faq-q:hover { color: var(--forest); }
.faq-q svg { flex-shrink: 0; transition: transform 0.2s; }
.faq-q[aria-expanded="true"] svg { transform: rotate(180deg); }
.faq-a { display: none; padding: 0 28px 26px; font-size: 15px; line-height: 1.65; color: var(--text-2); max-width: 720px; }
.faq-a.show { display: block; }
.faq-a a { font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }

/* ============================================================
   PRE-FOOTER CTA
   ============================================================ */
.cta-wrap-pad { padding: 72px 64px; }
@media (max-width: 700px) { .cta-wrap-pad { padding: 40px 20px; } }
.cta-box { border: 1px solid var(--forest); background: var(--forest); color: var(--cream); padding: 72px 64px; text-align: center; }
@media (max-width: 700px) { .cta-box { padding: 48px 28px; } }
.cta-box .eyebrow { color: #A8C2AC; margin: 0 0 18px; }
.cta-box h2 { margin: 0 auto 18px; font-size: 44px; line-height: 1.12; letter-spacing: -0.01em; max-width: 680px; color: #fff; }
@media (max-width: 700px) { .cta-box h2 { font-size: 28px; } }
.cta-box p { margin: 0 auto 34px; font-size: 16.5px; line-height: 1.6; color: #C8D6CA; max-width: 480px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--cream); }
.footer-inner { max-width: var(--max); margin: 0 auto; border-left: 1px solid var(--border); border-right: 1px solid var(--border); padding: 64px 64px 0; }
@media (max-width: 700px) { .footer-inner { padding: 48px 24px 0; border-left: none; border-right: none; } }
.footer-cols { display: grid; grid-template-columns: minmax(200px, 1fr) auto auto auto auto; gap: 48px; padding-bottom: 56px; }
@media (max-width: 900px) { .footer-cols { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 520px) { .footer-cols { grid-template-columns: 1fr; } }
.footer-brand-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-brand-logo span { font-family: 'DM Serif Display', Georgia, serif; font-size: 18px; color: var(--black); }
.footer-brand p { margin: 0 0 10px; font-size: 14px; line-height: 1.6; color: var(--text-3); max-width: 260px; }
.footer-brand p a { color: var(--text-2); }
.footer-col-label { font-size: 12.5px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-4); margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 11px; font-size: 14px; }
.footer-links a { color: var(--text-2); }
.footer-links a:hover { color: var(--forest); }
.footer-bottom { border-top: 1px solid var(--border); padding: 20px 0 28px; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.footer-bottom span { font-size: 13px; color: var(--text-4); }
