/* ============================================================
   STRUCTORA — styles.css
   Agent-First Shopify Ops
   Brand: #1C4029 Forest · #2A5E3C Mid Green · #A8E6C1 Mint
          #F5F4F0 Off-White · #0D1117 Near Black
   Fonts: DM Serif Display (display) · Inter (body)
   Mobile-first · No framework dependencies
   ============================================================ */

/* ── Reset ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ── Tokens ── */
:root {
  --forest:    #1C4029;
  --green:     #2A5E3C;
  --mint:      #A8E6C1;
  --cream:     #F5F4F0;
  --black:     #0D1117;
  --text-2:    #384039;
  --text-3:    #6B786C;
  --border:    #CDD5CE;
  --bg-alt:    #ECEEE9;
  --white:     #FFFFFF;
  --r:         6px;
  --r-lg:      12px;
  --max:       1080px;
}

/* ── Base ── */
html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--cream);
  color: var(--black);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── Grain overlay ── */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.022;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

/* ── Typography ── */
h1, h2, h3,
.display {
  font-family: 'DM Serif Display', Georgia, serif;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

/* ── Layout ── */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 640px) {
  .container { padding: 0 40px; }
}

section {
  padding: 72px 0;
}

@media (min-width: 768px) {
  section { padding: 96px 0; }
}

.eyebrow {
  display: block;
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 16px;
}

/* ── Scroll reveal ── */
[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity  0.6s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal-d="1"] { transition-delay: 0.08s; }
[data-reveal-d="2"] { transition-delay: 0.16s; }
[data-reveal-d="3"] { transition-delay: 0.24s; }
[data-reveal-d="4"] { transition-delay: 0.32s; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--r);
  font-size: 0.9rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s, border-color 0.15s;
  cursor: pointer;
  border: none;
  white-space: nowrap;
  line-height: 1;
}
.btn:hover  { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--forest);
  color: #fff;
}
.btn-primary:hover {
  background: var(--green);
  box-shadow: 0 6px 20px rgba(28, 64, 41, 0.28);
}

.btn-ghost {
  background: transparent;
  color: var(--black);
  border: 1.5px solid var(--border);
}
.btn-ghost:hover {
  border-color: var(--text-2);
  box-shadow: none;
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 60px;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.nav.scrolled {
  background: rgba(245, 244, 240, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 20px rgba(13, 17, 23, 0.07);
  border-color: rgba(205, 213, 206, 0.5);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 640px) {
  .nav-inner { padding: 0 40px; }
}

.nav-logo {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-logo svg { height: 22px; width: auto; display: block; }

.nav-links {
  display: none;
  align-items: center;
  gap: 24px;
}
.nav-links a:not(.btn) {
  color: var(--text-2);
  text-decoration: none;
  font-size: 0.865rem;
  font-weight: 500;
  transition: color 0.15s;
}
.nav-links a:not(.btn):hover { color: var(--black); }
.nav-links .btn-primary { padding: 8px 18px; font-size: 0.84rem; }

@media (min-width: 768px) {
  .nav-links { display: flex; }
}

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

@media (min-width: 768px) {
  .nav-hamburger { display: none; }
}

/* Mobile drawer */
.mobile-drawer {
  display: none;
  position: fixed;
  top: 60px;
  left: 0; right: 0;
  z-index: 99;
  background: rgba(245, 244, 240, 0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  padding: 12px 20px 20px;
  flex-direction: column;
  gap: 2px;
  box-shadow: 0 8px 24px rgba(13, 17, 23, 0.08);
}
.mobile-drawer.open { display: flex; }
.mobile-drawer a:not(.btn) {
  display: block;
  padding: 11px 14px;
  border-radius: var(--r);
  color: var(--text-2);
  text-decoration: none;
  font-weight: 500;
  transition: background 0.12s, color 0.12s;
}
.mobile-drawer a:not(.btn):hover { background: var(--bg-alt); color: var(--black); }
.mobile-drawer .btn-primary {
  margin-top: 8px;
  justify-content: center;
}

/* ============================================================
   SECTION 1 — HERO
   ============================================================ */
.hero {
  padding: 72px 0 64px;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .hero { padding: 96px 0 88px; }
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--forest);
  border: 1px solid rgba(28, 64, 41, 0.28);
  border-radius: 3px;
  padding: 5px 12px;
  margin-bottom: 28px;
}

.hero-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--forest);
  flex-shrink: 0;
  animation: pulse 2.4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.3; transform: scale(0.6); }
}

.hero h1 {
  font-size: clamp(2.6rem, 7vw, 5rem);
  font-weight: 400;
  color: var(--black);
  max-width: 860px;
  margin-bottom: 24px;
}
.hero h1 em {
  font-style: italic;
  color: var(--forest);
}

.hero-sub {
  font-size: clamp(0.98rem, 1.6vw, 1.1rem);
  color: var(--text-2);
  max-width: 520px;
  line-height: 1.8;
  margin-bottom: 36px;
}

.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.hero-meta {
  font-size: 0.77rem;
  color: var(--text-3);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.hero-meta span {
  padding: 0 12px;
  border-left: 1px solid var(--border);
}
.hero-meta span:first-child { border-left: none; padding-left: 0; }

/* ============================================================
   SECTION 2 — THE AGENTIC SHIFT
   ============================================================ */
.shift-section {
  background: var(--forest);
}
.shift-section .eyebrow {
  color: var(--mint);
}
.shift-section h2 {
  font-size: clamp(1.8rem, 4vw, 2.9rem);
  font-weight: 400;
  color: #fff;
  max-width: 640px;
  margin-bottom: 48px;
}

.shift-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 768px) {
  .shift-grid { grid-template-columns: repeat(3, 1fr); gap: 48px; }
}

.shift-para p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.82;
}

/* ============================================================
   SECTION 3 — THE ACR SCORE
   ============================================================ */
.acr-section {
  background: var(--white);
}

.acr-header {
  max-width: 700px;
  margin-bottom: 48px;
}
.acr-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 400;
  margin-bottom: 14px;
  line-height: 1.14;
}
.acr-header p {
  font-size: 1rem;
  color: var(--text-2);
  line-height: 1.72;
}

.acr-dims {
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: 40px;
}

.acr-dim {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 20px;
  align-items: start;
  padding: 24px;
  border-bottom: 1px solid var(--border);
  background: var(--white);
  transition: background 0.12s;
  position: relative;
}
.acr-dim:last-child { border-bottom: none; }
.acr-dim:hover { background: var(--cream); }

@media (min-width: 640px) {
  .acr-dim {
    grid-template-columns: 48px 1fr auto;
    gap: 24px;
    padding: 28px 36px;
  }
}

.acr-num {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: rgba(28, 64, 41, 0.2);
  line-height: 1.2;
  padding-top: 2px;
  letter-spacing: -0.02em;
}

.acr-dim-body { min-width: 0; }
.acr-dim-body h3 {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--black);
  letter-spacing: 0;
  margin-bottom: 6px;
  line-height: 1.3;
}
.acr-dim-body p {
  font-size: 0.86rem;
  color: var(--text-2);
  line-height: 1.68;
}

.acr-pts {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--forest);
  white-space: nowrap;
  text-align: right;
  flex-shrink: 0;
  padding-top: 2px;
  letter-spacing: -0.02em;
}
.acr-pts span {
  font-family: 'Inter', sans-serif;
  font-size: 0.66rem;
  font-weight: 700;
  color: var(--text-3);
  display: block;
  text-align: right;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 3px;
}

/* mobile: pts below body text */
@media (max-width: 639px) {
  .acr-pts { display: none; }
  .acr-dim-body h3::after {
    content: ' — 20 pts';
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--forest);
    letter-spacing: 0.04em;
  }
}

.acr-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.acr-cta p {
  font-size: 0.84rem;
  color: var(--text-3);
  line-height: 1.5;
}

/* ============================================================
   SECTION 4 — SERVICES
   ============================================================ */
.services-section {
  background: var(--cream);
}

.services-header {
  margin-bottom: 44px;
}
.services-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 400;
  margin-bottom: 10px;
}
.services-header > p {
  font-size: 0.97rem;
  color: var(--text-2);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 640px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 0.15s, box-shadow 0.15s;
  position: relative;
  overflow: hidden;
}

@media (min-width: 640px) {
  .service-card { padding: 32px; }
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--forest);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.service-card:hover {
  border-color: rgba(28, 64, 41, 0.28);
  box-shadow: 0 4px 28px rgba(28, 64, 41, 0.09);
}
.service-card:hover::before { transform: scaleX(1); }

.service-card--wide {
  grid-column: 1;
}

@media (min-width: 640px) {
  .service-card--wide { grid-column: span 2; }
}

.service-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.service-card-name {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--black);
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.service-card-price {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--forest);
  white-space: nowrap;
  text-align: right;
  flex-shrink: 0;
  letter-spacing: -0.02em;
  line-height: 1;
}
.service-card-price span {
  font-family: 'Inter', sans-serif;
  font-size: 0.67rem;
  font-weight: 700;
  color: var(--text-3);
  display: block;
  text-align: right;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 3px;
}

.service-card-label {
  font-size: 0.69rem;
  font-weight: 700;
  color: var(--forest);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.service-card p {
  font-size: 0.875rem;
  color: var(--text-2);
  line-height: 1.72;
  flex: 1;
}

.service-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  margin-top: auto;
}

.service-duration {
  font-size: 0.77rem;
  color: var(--text-3);
  font-weight: 500;
  letter-spacing: 0.01em;
}

.service-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--forest);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap 0.15s;
  line-height: 1;
}
.service-link:hover { gap: 9px; }

/* ============================================================
   SECTION 5 — WHY FOUNDER-LED
   ============================================================ */
.founder-section {
  background: var(--bg-alt);
}

.founder-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}

@media (min-width: 768px) {
  .founder-grid {
    grid-template-columns: 1fr 1.9fr;
    gap: 80px;
  }
}

.founder-label .eyebrow { margin-bottom: 20px; }
.founder-label h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 400;
  line-height: 1.18;
}
.founder-label h2 em {
  font-style: italic;
  color: var(--forest);
}

@media (min-width: 768px) {
  .founder-label h2 {
    position: sticky;
    top: 80px;
  }
}

.founder-paras p {
  font-size: 1.01rem;
  color: var(--text-2);
  line-height: 1.85;
  margin-bottom: 22px;
}
.founder-paras p:last-child { margin-bottom: 0; }
.founder-paras strong {
  color: var(--black);
  font-weight: 600;
}

/* ============================================================
   SECTION 6 — SUBSCRIPTION
   ============================================================ */
.sub-section {
  background: var(--forest);
}
.sub-section .eyebrow { color: var(--mint); }

.sub-section h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 400;
  color: #fff;
  margin-bottom: 10px;
}

.sub-intro {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.68);
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: 48px;
}

.sub-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 580px) {
  .sub-cards { grid-template-columns: repeat(2, 1fr); max-width: 780px; }
}

.sub-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--r-lg);
  padding: 28px 32px;
  transition: background 0.15s;
  position: relative;
}
.sub-card:hover { background: rgba(255, 255, 255, 0.11); }

.sub-card-tag {
  display: block;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 14px;
}

.sub-card h3 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.sub-card-price {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 2.4rem;
  font-weight: 400;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}
.sub-card-price sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.84rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  vertical-align: baseline;
  letter-spacing: 0;
}

.sub-card-note {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.48);
  margin-bottom: 22px;
  line-height: 1.5;
}

.sub-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.sub-card ul li {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}
.sub-card ul li::before {
  content: '';
  display: block;
  width: 4px;
  height: 4px;
  min-width: 4px;
  border-radius: 50%;
  background: var(--mint);
  margin-top: 7px;
}

.sub-card--soon {
  opacity: 0.6;
}
.sub-card--soon::after {
  content: 'Coming soon';
  position: absolute;
  top: 14px;
  right: 14px;
  font-family: 'Inter', sans-serif;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mint);
  border: 1px solid rgba(168, 230, 193, 0.3);
  border-radius: 3px;
  padding: 3px 8px;
}

/* ============================================================
   SECTION 7 — HOW TO START
   ============================================================ */
.start-section {
  background: var(--cream);
}

.start-header {
  margin-bottom: 48px;
}
.start-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 400;
  margin-top: 6px;
}

.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}

@media (min-width: 640px) {
  .steps { grid-template-columns: repeat(3, 1fr); }
}

.step {
  background: var(--white);
  padding: 36px 28px;
  transition: background 0.12s;
}
.step:hover { background: #FDFCFA; }

.step-n {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 2.8rem;
  font-weight: 400;
  color: rgba(28, 64, 41, 0.14);
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}

.step h3 {
  font-family: 'Inter', sans-serif;
  font-size: 0.93rem;
  font-weight: 700;
  color: var(--black);
  letter-spacing: 0;
  margin-bottom: 8px;
  line-height: 1.3;
}

.step p {
  font-size: 0.875rem;
  color: var(--text-2);
  line-height: 1.68;
}
.step p a {
  color: var(--forest);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 600;
}
.step p a:hover { color: var(--green); }

/* ============================================================
   SECTION 8 — CONTACT
   ============================================================ */
.contact-section {
  background: var(--bg-alt);
}

.contact-inner {
  max-width: 680px;
  margin: 0 auto;
}

.contact-head {
  margin-bottom: 32px;
}
.contact-head .eyebrow { margin-bottom: 12px; }
.contact-head h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 400;
  margin-bottom: 10px;
}
.contact-head p {
  font-size: 0.97rem;
  color: var(--text-2);
}

.contact-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px;
  margin-bottom: 20px;
}

@media (max-width: 480px) {
  .contact-box { padding: 24px 20px; }
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

@media (min-width: 480px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}
.form-field:last-of-type { margin-bottom: 0; }

.form-field label {
  font-size: 0.81rem;
  font-weight: 600;
  color: var(--text-2);
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 10px 13px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--r);
  font-size: 0.92rem;
  font-family: 'Inter', sans-serif;
  color: var(--black);
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
  -webkit-appearance: none;
  appearance: none;
}
.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--text-3);
}
.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--forest);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(28, 64, 41, 0.07);
}
.form-field textarea {
  resize: vertical;
  min-height: 100px;
}

.form-btn {
  width: 100%;
  padding: 13px 24px;
  background: var(--forest);
  color: #fff;
  border: none;
  border-radius: var(--r);
  font-size: 0.93rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  margin-top: 6px;
  transition: background 0.15s, transform 0.15s, box-shadow 0.15s;
  line-height: 1;
}
.form-btn:hover {
  background: var(--green);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(28, 64, 41, 0.22);
}
.form-btn:active { transform: none; box-shadow: none; }
.form-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.form-note {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-3);
  margin-top: 10px;
}

.form-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-3);
  font-size: 0.8rem;
  margin: 20px 0;
}
.form-divider::before,
.form-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.calendly-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  background: transparent;
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  color: var(--text-2);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  transition: border-color 0.15s, color 0.15s;
}
.calendly-link:hover {
  border-color: var(--forest);
  color: var(--forest);
}

.contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  justify-content: center;
  margin-top: 4px;
}
.contact-info a {
  font-size: 0.83rem;
  color: var(--text-3);
  text-decoration: none;
  transition: color 0.15s;
}
.contact-info a:hover { color: var(--forest); }

.form-success {
  display: none;
  background: rgba(28, 64, 41, 0.06);
  border: 1px solid rgba(28, 64, 41, 0.18);
  border-radius: var(--r);
  padding: 24px;
  text-align: center;
  color: var(--forest);
  font-weight: 600;
  font-size: 0.93rem;
  line-height: 1.6;
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}

.faq-inner {
  max-width: 720px;
  margin: 0 auto;
}

.faq-head {
  margin-bottom: 36px;
}
.faq-head .eyebrow { margin-bottom: 12px; }
.faq-head h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 400;
  margin-bottom: 10px;
}
.faq-head p {
  font-size: 0.97rem;
  color: var(--text-2);
  max-width: 560px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  background: var(--white);
}
.faq-item:last-child { border-bottom: none; }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--black);
  line-height: 1.4;
  transition: background 0.15s;
}
.faq-question:hover { background: var(--cream); }
.faq-question[aria-expanded="true"] { color: var(--forest); }

.faq-chevron {
  flex-shrink: 0;
  color: var(--text-3);
  transition: transform 0.25s cubic-bezier(0.22,1,0.36,1), color 0.15s;
}
.faq-question[aria-expanded="true"] .faq-chevron {
  transform: rotate(180deg);
  color: var(--forest);
}

.faq-answer {
  display: none;
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.75;
}
.faq-answer.open { display: block; }
.faq-answer a {
  color: var(--forest);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 600;
}
.faq-answer a:hover { color: var(--green); }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  border-top: 1px solid var(--border);
  padding: 44px 40px 32px;
  text-align: center;
}

@media (max-width: 640px) {
  footer { padding: 36px 24px 28px; }
}

.footer-logo {
  display: block;
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--black);
  letter-spacing: -0.02em;
  margin-bottom: 18px;
  text-decoration: none;
}

.footer-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px 18px;
  margin-bottom: 18px;
}
.footer-nav a {
  color: var(--text-3);
  text-decoration: none;
  font-size: 0.83rem;
  font-weight: 500;
  transition: color 0.15s;
}
.footer-nav a:hover { color: var(--black); }

footer p { font-size: 0.82rem; color: var(--text-3); margin-top: 5px; }
footer p a { color: var(--forest); text-decoration: none; }
footer p a:hover { text-decoration: underline; }

.footer-copy {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}
