/* Evianads landing page — site-specific styles.
   Built on top of design-system.css (Modernist tokens: accent ramp, fonts).
   Page-literal colors below are taken from the approved design handoff
   (see README "Design Tokens") rather than the design system's own
   --color-bg/--color-text, which don't match this page's palette. */

@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@400;500;600;700;800&display=swap');

:root {
  --bg: #fbfaf9;
  --surface: #fff;
  --surface-alt: #f4f1ef;
  --ink: #1a1918;
  --ink-darker: #131211;
  --text-body: #4a4644;
  --text-body-2: #56514e;
  --text-muted: #6f6a67;
  --text-muted-2: #8a8481;
  --text-faint: #a09a96;
  --on-dark: #f4f1ef;
  --on-dark-muted: #b3aeaa;
  --on-dark-muted-2: #7d7773;
  --on-dark-faint: #a5a09c;
  --border: #e3dfdc;
  --border-strong: #d8d3cf;
  --border-input: #cfc9c5;
  --border-dark: #3a3634;
  --max-width: 1120px;
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  scroll-behavior: smooth;
  font-family: "Archivo", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}
*, *::before, *::after { box-sizing: border-box; }
body { overflow-x: hidden; }
a { color: var(--ink); text-decoration: none; }
a:hover { color: var(--color-accent-700); }
::selection { background: var(--color-accent-200); }
input, select, textarea, button { font-family: "Archivo", system-ui, sans-serif; }
:focus-visible { outline: 2px solid var(--color-accent); outline-offset: 3px; }
img { display: block; max-width: 100%; }

.wrap { max-width: var(--max-width); margin: 0 auto; padding: 0 40px; }

h1, h2, h3, h4 { font-family: "Archivo", system-ui, sans-serif; margin: 0; }

/* — header — */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 250, 249, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.site-header .wrap {
  min-height: 78px; padding-top: 14px; padding-bottom: 14px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.brand { display: flex; align-items: center; }
.brand img { height: 44px; width: auto; }
.site-nav { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; white-space: nowrap; }
.site-nav a.nav-link { font-size: 14px; font-weight: 500; color: var(--text-body); }
.site-nav a.nav-link:hover { color: var(--ink); }

/* — nav dropdown ("Services") — */
.nav-item-dropdown { position: relative; }
.nav-dropdown-toggle {
  display: flex; align-items: center; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 0; font-family: inherit;
  font-size: 14px; font-weight: 500; color: var(--text-body);
}
.nav-dropdown-toggle:hover { color: var(--ink); }
.nav-dropdown-caret { width: 8px; height: 8px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: rotate(45deg) translateY(-2px); transition: transform 0.15s ease; }
.nav-item-dropdown.open .nav-dropdown-caret { transform: rotate(-135deg) translateY(1px); }
.nav-dropdown-menu {
  position: absolute; top: calc(100% + 18px); left: -16px; z-index: 60;
  min-width: 250px; padding: 10px; background: var(--surface);
  border: 1px solid var(--border-strong); box-shadow: 0 16px 36px rgba(20, 18, 17, 0.14);
  flex-direction: column; gap: 2px; display: none;
}
.nav-item-dropdown:hover .nav-dropdown-menu,
.nav-item-dropdown.open .nav-dropdown-menu { display: flex; }
.nav-dropdown-menu a { padding: 10px 12px; font-size: 14px; font-weight: 500; color: var(--text-body); }
.nav-dropdown-menu a:hover { background: var(--surface-alt); color: var(--ink); }

/* — mobile nav toggle — */
.nav-toggle {
  display: none; width: 40px; height: 40px; padding: 0; border: none; background: none; cursor: pointer;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.nav-toggle span { width: 22px; height: 2px; background: var(--ink); display: block; }

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .site-nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0; white-space: normal;
    background: var(--surface); border-bottom: 1px solid var(--border);
    padding: 8px 20px 20px;
  }
  .site-header.nav-open .site-nav { display: flex; }
  .site-nav a.nav-link, .nav-dropdown-toggle { width: 100%; padding: 14px 0; justify-content: space-between; border-bottom: 1px solid var(--border); }
  .site-nav .btn { margin-top: 16px; }
  .nav-item-dropdown { width: 100%; }
  .nav-dropdown-menu { position: static; box-shadow: none; border: none; padding: 0 0 6px 14px; min-width: 0; }
  .nav-dropdown-menu a { padding: 12px 0; border-bottom: none; }
}

/* — buttons — */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; cursor: pointer; border: none; font-size: 15px; font-weight: 600; transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-dark { padding: 12px 20px; background: var(--ink); color: var(--bg); }
.btn-dark:hover { background: var(--color-accent-700); color: var(--bg); }
.btn-dark-lg { padding: 17px 30px; background: var(--ink); color: var(--bg); }
.btn-dark-lg:hover { background: var(--color-accent-700); color: var(--bg); }
.btn-outline { padding: 17px 26px; border: 1px solid var(--border-strong); color: var(--ink); background: transparent; }
.btn-outline:hover { border-color: var(--ink); }
.btn-light { padding: 16px 28px; background: var(--bg); color: var(--ink); }
.btn-light:hover { background: var(--color-accent-200); }
.btn:disabled { opacity: 0.5; cursor: not-allowed; }
.btn:disabled:hover { transform: none; }

/* — hero — */
.hero { border-bottom: 1px solid var(--border); scroll-margin-top: 80px; }
.hero .wrap {
  padding-top: 96px;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 80px; align-items: start;
}
.hero-copy { padding-bottom: 88px; }
.eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 34px; }
.eyebrow-dot { width: 6px; height: 6px; background: var(--color-accent); display: block; }
.eyebrow-label { font-size: 12.5px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted-2); }
.hero h1 {
  font-size: clamp(42px, 6.4vw, 72px); line-height: 0.98; font-weight: 700; letter-spacing: -0.04em;
  margin: 0 0 28px; max-width: 13ch; text-wrap: balance;
}
.hero-sub { font-size: 19px; line-height: 1.6; color: var(--text-body); max-width: 50ch; margin: 0 0 40px; text-wrap: pretty; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-stats {
  margin-top: 44px; padding-top: 26px; border-top: 1px solid var(--border);
  display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 28px;
}
.hero-stat-value { font-size: 32px; font-weight: 700; letter-spacing: -0.035em; line-height: 1; }
.hero-stat-label { font-size: 13.5px; line-height: 1.45; color: var(--text-muted); margin-top: 9px; }
.hero-media { border-left: 1px solid var(--border); padding: 0 0 88px 48px; align-self: stretch; }
.hero-media figure { aspect-ratio: 3 / 4; overflow: hidden; background: #e6e1de; margin: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-media figcaption { margin-top: 20px; font-size: 14px; line-height: 1.5; color: var(--text-muted); }

/* — hero diagram (visual panel: the 3-outcome framework, replaces a stock photo) — */
.hero-diagram { border-left: 1px solid var(--border); padding: 8px 0 88px 48px; align-self: stretch; }
.hero-diagram-step { display: grid; grid-template-columns: 56px 1fr; gap: 22px; padding: 22px 0; position: relative; }
.hero-diagram-num {
  position: relative; width: 56px; height: 56px; flex: none;
  display: flex; align-items: center; justify-content: center;
  border: 1.5px solid var(--ink); font-size: 20px; font-weight: 700; letter-spacing: -0.02em;
  background: var(--bg);
}
.hero-diagram-step + .hero-diagram-step .hero-diagram-num::before {
  content: ""; position: absolute; bottom: 100%; left: 50%; transform: translateX(-50%);
  width: 1px; height: 22px; background: var(--border-strong);
}
.hero-diagram-step.is-accent .hero-diagram-num { background: var(--ink); color: var(--bg); }
.hero-diagram-body h4 { font-size: 19px; font-weight: 700; letter-spacing: -0.02em; margin: 0 0 6px; }
.hero-diagram-body p { font-size: 14px; line-height: 1.55; color: var(--text-muted); margin: 0; max-width: 30ch; text-wrap: pretty; }
.hero-diagram-caption { margin-top: 8px; padding-top: 20px; border-top: 1px solid var(--border); font-size: 14px; line-height: 1.5; color: var(--text-muted); }

/* — trust strip — */
.trust-strip { border-bottom: 1px solid var(--border); background: var(--surface-alt); }
.trust-strip .wrap { padding: 26px 40px; display: flex; align-items: center; gap: 40px; flex-wrap: wrap; justify-content: space-between; }
.trust-label { font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted-2); }
.badge-row { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.badge { display: inline-flex; align-items: center; height: 38px; padding: 0 16px; border: 1px solid var(--border-strong); background: var(--bg); font-size: 13px; font-weight: 600; color: var(--text-body); transition: border-color 0.2s ease, color 0.2s ease; }
.badge:hover { border-color: var(--ink); color: var(--ink); }

/* — section shell — */
.section { max-width: var(--max-width); margin: 0 auto; padding: 112px 40px 0; scroll-margin-top: 80px; }
.section-head { display: flex; align-items: baseline; gap: 20px; margin-bottom: 12px; }
.section-num { font-size: 12.5px; font-weight: 600; letter-spacing: 0.14em; color: var(--color-accent-700); }
.section-num.on-dark { color: var(--color-accent-400); }
.section h2, .section-head h2 { font-size: clamp(30px, 4vw, 46px); font-weight: 700; letter-spacing: -0.035em; line-height: 1.06; }
.section-sub { font-size: 17px; line-height: 1.6; color: var(--text-body-2); max-width: 56ch; margin: 0 0 44px 32px; }
.section-sub.small { font-size: 15px; color: var(--text-muted-2); }

/* — hairline card grid — */
.grid-3 {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1px; background: var(--border); border: 1px solid var(--ink);
}
.card { background: var(--surface); padding: 34px 30px; display: flex; flex-direction: column; gap: 16px; transition: background 0.2s ease; }
.card:hover { background: var(--surface-alt); }
.card:hover h3 { color: var(--color-accent-700); }
.card-num { font-size: 12.5px; font-weight: 600; letter-spacing: 0.12em; color: var(--text-faint); }
.card h3 { font-size: 24px; font-weight: 700; letter-spacing: -0.025em; line-height: 1.15; transition: color 0.2s ease; }
.card p { font-size: 15.5px; line-height: 1.65; color: var(--text-body-2); margin: 0; text-wrap: pretty; }
.card-includes {
  font-size: 14.5px; line-height: 1.85; color: var(--text-muted); white-space: pre-line;
  border-top: 1px solid var(--border); padding-top: 16px; margin-top: auto;
}
.card-cta { font-size: 14.5px; font-weight: 600; color: var(--color-accent-700); border-bottom: 1px solid var(--color-accent); padding-bottom: 3px; align-self: flex-start; }
.card-cta:hover { color: var(--ink); border-color: var(--ink); }

/* — linked list inside a card (solution-category includes) — */
.card-list { list-style: none; margin: 0; padding: 16px 0 0; border-top: 1px solid var(--border); margin-top: auto; display: flex; flex-direction: column; gap: 4px; }
.card-list li a { display: flex; align-items: center; gap: 8px; padding: 6px 0; font-size: 14.5px; font-weight: 600; color: var(--text-body-2); }
.card-list li a:hover { color: var(--color-accent-700); }
.card-list li a::before { content: "→"; color: var(--color-accent); flex: none; }

/* — category flow (the 3 core outcomes: large numerals + icon + connector) — */
.category-flow { position: relative; }
.card-num-lg { font-size: 46px; font-weight: 800; letter-spacing: -0.03em; line-height: 1; color: var(--color-accent-700); display: block; }
.category-flow .card-icon-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.category-flow .grid-3 > .card { position: relative; }
.category-flow .grid-3 > .card:not(:last-child)::after {
  content: "→"; position: absolute; top: 50%; right: -14px; transform: translateY(-50%);
  width: 28px; height: 24px; display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 700; color: var(--ink); background: var(--bg); z-index: 2;
}
@media (max-width: 860px) { .category-flow .grid-3 > .card:not(:last-child)::after { display: none; } }

/* — icon badge (small square icon container, reused in category cards + service hero) — */
.icon-badge {
  width: 44px; height: 44px; flex: none; display: flex; align-items: center; justify-content: center;
  border: 1.5px solid var(--ink); color: var(--ink); transition: border-color 0.2s ease, color 0.2s ease;
}
.icon-badge svg { width: 22px; height: 22px; display: block; }
.icon-badge.is-lg { width: 60px; height: 60px; }
.icon-badge.is-lg svg { width: 28px; height: 28px; }
.icon-badge.is-sm { width: 30px; height: 30px; border-width: 1px; }
.icon-badge.is-sm svg { width: 15px; height: 15px; }
.eyebrow.has-icon { margin-bottom: 26px; }
.icon-badge.on-dark { border-color: var(--border-dark); color: var(--on-dark); }

/* — service feature grid (premium 7-service presentation) — */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2px; background: var(--border); border: 1px solid var(--ink); }
.service-feature {
  position: relative; overflow: hidden; background: var(--surface);
  padding: 38px 32px; display: flex; flex-direction: column; gap: 16px;
  transition: background 0.2s ease;
}
.service-feature::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--color-accent); transform: scaleX(0); transform-origin: left;
  transition: transform 0.25s ease;
}
.service-feature:hover { background: var(--surface-alt); }
.service-feature:hover::before { transform: scaleX(1); }
.service-feature:hover .icon-badge { border-color: var(--color-accent); color: var(--color-accent-700); }
.service-feature h3 { font-size: 22px; font-weight: 700; letter-spacing: -0.02em; line-height: 1.15; margin: 0; transition: color 0.2s ease; }
.service-feature:hover h3 { color: var(--color-accent-700); }
.service-feature p { font-size: 15px; line-height: 1.6; color: var(--text-body-2); margin: 0; flex: 1; text-wrap: pretty; }
.service-feature .card-cta { align-self: flex-start; }
.service-feature.is-featured { grid-column: 1 / -1; padding: 46px 40px; }
.service-feature.is-featured h3 { font-size: 30px; }
.service-feature.is-featured p { max-width: 60ch; }

/* — dark sections — */
.section-dark { margin-top: 112px; background: var(--ink); color: var(--on-dark); scroll-margin-top: 80px; }
.section-dark .wrap { padding: 88px 40px; display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 80px; align-items: start; }
.section-dark p { font-size: 17px; line-height: 1.65; color: var(--on-dark-muted); margin: 0 0 20px; max-width: 42ch; text-wrap: pretty; }
.section-dark p.emph { color: var(--on-dark); }

.audit-steps .step { display: grid; grid-template-columns: 68px 1fr; gap: 24px; padding: 26px 0; border-top: 1px solid var(--border-dark); align-items: start; }
.step-num { font-size: 13px; font-weight: 600; letter-spacing: 0.1em; color: var(--on-dark-muted-2); padding-top: 4px; }
.step h3 { font-size: 19px; font-weight: 700; margin: 0 0 8px; letter-spacing: -0.015em; }
.step p { font-size: 15.5px; line-height: 1.65; color: var(--on-dark-faint); margin: 0; max-width: none; text-wrap: pretty; }

/* — results — */
.result-sector { font-size: 12.5px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted-2); }
.result-metric { font-size: 42px; font-weight: 700; letter-spacing: -0.04em; line-height: 1; color: var(--color-accent-700); }
.result-metric-label { font-size: 14.5px; color: var(--text-body-2); margin-top: 10px; line-height: 1.4; }
.result-detail { font-size: 14.5px; line-height: 1.6; color: var(--text-muted); border-top: 1px solid var(--border); padding-top: 16px; text-wrap: pretty; }
.result-period { font-size: 13px; color: var(--text-faint); letter-spacing: 0.02em; margin-top: auto; }

/* — commitments / who-not-for — */
.split-section { max-width: var(--max-width); margin: 88px auto 0; padding: 0 40px; scroll-margin-top: 80px; }
.split-section .wrap-inner { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 64px; align-items: start; }
.commitment-row { display: grid; grid-template-columns: 1fr auto; gap: 24px; padding: 18px 0; border-bottom: 1px solid var(--border); align-items: baseline; }
.commitment-claim { font-size: 16.5px; line-height: 1.5; color: var(--ink); }
.commitment-tag { font-size: 13.5px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--color-accent-700); white-space: nowrap; }
.callout { border: 1px solid var(--ink); padding: 34px 32px 36px; background: var(--surface-alt); }
.callout h3 { font-size: 21px; font-weight: 700; letter-spacing: -0.02em; margin: 0 0 16px; }
.callout p { font-size: 15.5px; line-height: 1.7; color: var(--text-body-2); margin: 0 0 16px; text-wrap: pretty; }
.callout p:last-child { margin-bottom: 0; }

/* — faq — */
.faq-list { border-top: 1px solid var(--ink); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 24px 0; background: transparent; border: none; cursor: pointer; text-align: left; color: var(--ink);
}
.faq-q:hover { color: var(--color-accent-700); }
.faq-q-text { font-size: 18px; font-weight: 600; letter-spacing: -0.015em; }
.faq-sign { font-size: 22px; font-weight: 400; line-height: 1; color: var(--color-accent); flex: none; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.32s ease; }
.faq-item.open .faq-a { max-height: 340px; }
.faq-a p { font-size: 16px; line-height: 1.7; color: var(--text-body-2); margin: 0 0 26px; max-width: 62ch; text-wrap: pretty; }

/* — contact — */
.contact-fact { padding: 18px 0; border-top: 1px solid var(--border-dark); }
.contact-fact-label { font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--on-dark-muted-2); margin-bottom: 8px; }
.contact-fact-value { font-size: 17px; font-weight: 600; color: var(--on-dark); }
.contact-card { background: var(--surface); color: var(--ink); padding: 40px; }
.form-grid { display: grid; gap: 20px; }
.form-row-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 20px; }
.field { display: grid; gap: 8px; }
.field-label { font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); }
.field input, .field select, .field textarea {
  width: 100%; min-width: 0; border: 1px solid var(--border-input); background: #fff; padding: 13px 14px; font-size: 16px; color: var(--ink);
}
.field textarea { resize: vertical; }
.form-note { font-size: 13px; line-height: 1.6; color: var(--text-muted-2); margin: 0; }
.form-error { font-size: 14px; line-height: 1.5; color: var(--color-accent-700); margin: 0; min-height: 0; }
.form-error:empty { display: none; }
.confirm-title { font-size: 26px; font-weight: 700; letter-spacing: -0.025em; margin-bottom: 12px; }
.confirm-body { font-size: 16.5px; line-height: 1.65; color: var(--text-body-2); margin: 0; }
.hidden { display: none !important; }

/* — process grid (light, 4-up) — */
.process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 40px 32px; }
.process-step { position: relative; border-top: 2px solid var(--ink); padding-top: 20px; overflow: hidden; transition: transform 0.25s ease; }
.process-step:hover { transform: translateY(-6px); }
.process-step-ghost {
  position: absolute; top: 4px; right: -6px; font-size: 76px; font-weight: 800; line-height: 1;
  color: var(--surface-alt); z-index: 0; letter-spacing: -0.04em; user-select: none; pointer-events: none;
}
.process-step-num { position: relative; z-index: 1; font-size: 13px; font-weight: 600; letter-spacing: 0.1em; color: var(--color-accent-700); display: block; margin-bottom: 14px; }
.process-step h3 { position: relative; z-index: 1; font-size: 19px; font-weight: 700; letter-spacing: -0.015em; margin: 0 0 8px; }
.process-step p { position: relative; z-index: 1; font-size: 15px; line-height: 1.6; color: var(--text-body-2); margin: 0; text-wrap: pretty; }

/* — feature split (Google Ads highlight, etc.) — */
.feature-split { background: var(--surface-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.feature-split .wrap { padding: 108px 40px; display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 64px; align-items: center; }
.feature-split .eyebrow-label { color: var(--color-accent-700); }
.feature-split h2 { font-size: 34px; font-weight: 700; letter-spacing: -0.03em; line-height: 1.14; margin: 18px 0 20px; max-width: 14ch; }
.feature-split p { font-size: 17px; line-height: 1.65; color: var(--text-body-2); max-width: 46ch; margin: 0 0 30px; text-wrap: pretty; }
.feature-split-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.feature-split-list li { padding-left: 22px; position: relative; font-size: 15.5px; line-height: 1.5; color: var(--text-body); }
.feature-split-list li::before { content: "—"; position: absolute; left: 0; color: var(--color-accent); font-weight: 700; }
.feature-split-visual { border: 1px solid var(--ink); background: var(--bg); padding: 40px 36px; display: flex; flex-direction: column; gap: 24px; }
.feature-split-visual .icon-badge { margin-bottom: 4px; }
.feature-split-visual-label { font-size: 12.5px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted-2); }

/* — background/section utilities — */
.section-alt { background: var(--surface-alt); }

/* — simple centered CTA band — */
.cta-band { text-align: center; }
.cta-band .wrap { padding: 128px 40px; display: block; }
.cta-band h2 { font-size: clamp(34px, 5.5vw, 60px); letter-spacing: -0.04em; line-height: 1.04; margin: 0 auto 18px; max-width: 16ch; }
.cta-band p { margin: 0 auto 36px; max-width: 46ch; }
.cta-band .hero-ctas { justify-content: center; }

/* — footer — */
.site-footer { background: var(--ink-darker); color: var(--on-dark-muted-2); }
.site-footer .wrap { padding: 40px 40px 32px; display: flex; align-items: flex-start; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.site-footer span { font-size: 13.5px; }
.footer-brand-col { display: flex; flex-direction: column; gap: 10px; }
.footer-nav { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-nav a { font-size: 13.5px; color: var(--on-dark-muted-2); }
.footer-nav a:hover { color: var(--on-dark); }
.footer-meta { display: flex; flex-direction: column; gap: 6px; align-items: flex-end; text-align: right; }
@media (max-width: 620px) { .footer-meta { align-items: flex-start; text-align: left; } }

/* — breadcrumb (service pages) — */
.eyebrow-link { color: var(--text-muted-2); }
.eyebrow-link:hover { color: var(--color-accent-700); }

/* — simple centered page shell (404, etc.) — */
.simple-shell { max-width: 560px; margin: 0 auto; padding: 96px 40px 120px; }
.simple-shell .eyebrow-label { color: var(--text-muted-2); }
.simple-shell h1 { font-size: 36px; font-weight: 700; letter-spacing: -0.03em; margin: 20px 0 16px; }
.simple-shell .lede { font-size: 16.5px; line-height: 1.6; color: var(--text-body-2); margin: 0 0 40px; }

/* ══════════════════════════════════════════════════════════════════════
   Art direction upgrade — background rhythm, digital-visual mockups,
   controlled motion. Extends the flat/hairline system above; nothing
   above is removed, only overridden with more specific rules.
   ══════════════════════════════════════════════════════════════════ */

:root {
  --color-teal: #1c6f6a; /* one controlled complementary accent — mockups only, never UI/buttons */
  --gradient-dark: linear-gradient(135deg, var(--ink) 0%, var(--color-accent-900) 130%);
}

/* — motion (guarded by reduced-motion) — */
@keyframes ev-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }
.mock-float { animation: ev-float 5s ease-in-out infinite; }
.mock-float-slow { animation: ev-float 7s ease-in-out infinite; animation-delay: 0.6s; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .mock-float, .mock-float-slow { animation: none !important; }
}

/* — hero: soft gradient glow instead of flat bg — */
.hero { position: relative; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; top: -220px; right: -180px; width: 640px; height: 640px;
  background: radial-gradient(circle, var(--color-accent-200) 0%, transparent 68%);
  opacity: 0.7; pointer-events: none; z-index: 0;
}
.hero::after {
  content: ""; position: absolute; bottom: -260px; left: -220px; width: 520px; height: 520px;
  background: radial-gradient(circle, var(--surface-alt) 0%, transparent 70%);
  opacity: 0.9; pointer-events: none; z-index: 0;
}
.hero .wrap { position: relative; z-index: 1; }

/* — section tint: alternates the page away from one continuous white canvas — */
.section-tint { background: linear-gradient(180deg, var(--color-accent-100) 0%, var(--surface-alt) 100%); }
.section-tint .wrap { padding-top: 100px; padding-bottom: 100px; }

/* — dark sections: gradient + soft glow + faint texture instead of flat ink — */
.section-dark { position: relative; overflow: hidden; background: var(--gradient-dark); }
.section-dark::before {
  content: ""; position: absolute; top: -160px; right: -120px; width: 480px; height: 480px;
  background: radial-gradient(circle, color-mix(in srgb, var(--color-accent-500) 35%, transparent) 0%, transparent 70%);
  pointer-events: none;
}
.section-dark::after {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(135deg, transparent 48%, color-mix(in srgb, #fff 4%, transparent) 49%, transparent 51%);
  background-size: 64px 64px; opacity: 0.4; pointer-events: none;
}
.section-dark .wrap { position: relative; z-index: 1; }

/* — feature-split spotlight modifier (Google Ads homepage section) — */
.feature-split.is-spotlight { background: var(--gradient-dark); border-top: none; border-bottom: none; position: relative; overflow: hidden; }
.feature-split.is-spotlight::before {
  content: ""; position: absolute; top: -140px; left: -100px; width: 420px; height: 420px;
  background: radial-gradient(circle, color-mix(in srgb, var(--color-accent-500) 30%, transparent) 0%, transparent 70%);
  pointer-events: none;
}
.feature-split.is-spotlight .wrap { position: relative; z-index: 1; }
.feature-split.is-spotlight .eyebrow-label { color: var(--color-accent-400); }
.feature-split.is-spotlight .eyebrow-dot { background: var(--color-accent-400); }
.feature-split.is-spotlight h2 { color: var(--on-dark); }
.feature-split.is-spotlight p { color: var(--on-dark-muted); }
.feature-split.is-spotlight .feature-split-visual { background: var(--surface); border-color: transparent; box-shadow: var(--shadow-lg); }
.feature-split.is-spotlight .feature-split-visual-label { color: var(--text-muted-2); }

/* — hairline grids, richened: shadowed/tinted cards with hover lift, replacing flat hairline dividers — */
.grid-3, .feature-grid { background: transparent; border: none; gap: 20px; }
.grid-3 > .card, .service-feature {
  border: 1px solid var(--border-strong); background: var(--surface-alt);
  box-shadow: var(--shadow-sm); transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.2s ease;
}
.grid-3 > .card:hover, .service-feature:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); background: var(--surface); }
.grid-3 > .card:not(:last-child)::after { background: transparent; }
.service-feature.is-featured { background: var(--color-accent-100); }
.service-feature.is-featured:hover { background: var(--color-accent-200); }
.service-feature:nth-child(3n+3):not(.is-featured) { background: var(--surface); }
.service-feature::before { height: 4px; }
.service-feature:hover .icon-badge { background: var(--color-accent); color: #fff; }

/* — category-flow: each of the 3 outcomes gets its own visual identity — */
.category-flow .grid-3 > .card:nth-child(1) { background: var(--color-accent-100); }
.category-flow .grid-3 > .card:nth-child(2) { background: var(--surface); }
.category-flow .grid-3 > .card:nth-child(3) { background: var(--ink); color: var(--on-dark); border-color: var(--border-dark); }
.category-flow .grid-3 > .card:nth-child(3):hover { background: var(--ink-darker); }
.category-flow .grid-3 > .card:nth-child(3) h3,
.category-flow .grid-3 > .card:nth-child(3) .card-num-lg { color: var(--on-dark); }
.category-flow .grid-3 > .card:nth-child(3) p,
.category-flow .grid-3 > .card:nth-child(3) .card-list li a { color: var(--on-dark-muted); }
.category-flow .grid-3 > .card:nth-child(3) .card-list { border-color: var(--border-dark); }
.category-flow .grid-3 > .card:nth-child(3) .card-list li a:hover { color: var(--on-dark); }
.category-flow .grid-3 > .card:nth-child(3) .icon-badge { background: color-mix(in srgb, #fff 12%, transparent); color: var(--on-dark); }
.category-flow .grid-3 > .card:not(:last-child)::after { color: var(--color-accent-700); font-size: 20px; }

/* — icon badges: filled with accent tint, more color, less outline-only — */
.icon-badge { background: var(--color-accent-100); border-color: transparent; color: var(--color-accent-700); }
.icon-badge.on-dark { background: color-mix(in srgb, #fff 10%, transparent); color: var(--on-dark); border-color: transparent; }

/* — callout: subtle accent-tinted gradient instead of flat surface-alt — */
.callout { background: linear-gradient(160deg, var(--color-accent-100) 0%, var(--surface) 65%); box-shadow: var(--shadow-sm); border-color: var(--border-strong); }

/* — process: faint connecting line above the steps on wide screens — */
.process-grid { position: relative; }
.process-grid::before {
  content: ""; position: absolute; top: -22px; left: 0; right: 0; height: 2px; display: none;
  background-image: repeating-linear-gradient(90deg, var(--color-accent-300) 0 10px, transparent 10px 20px);
}
@media (min-width: 780px) { .process-grid::before { display: block; } }

/* — digital-visual mockups: hero stack + per-service hero visuals (no stock imagery, hand-built) — */
.hero-visual { align-self: stretch; padding: 8px 0 40px; }
.hero-visual-caption { margin-top: 20px; font-size: 13.5px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-muted-2); }
.service-hero-visual { align-self: stretch; padding: 8px 0 40px; position: relative; min-height: 300px; }
.mock-glow {
  position: absolute; inset: -40px; z-index: 0;
  background: radial-gradient(circle at 60% 30%, color-mix(in srgb, var(--color-accent-500) 22%, transparent) 0%, transparent 65%);
  pointer-events: none;
}
.mock-stack { position: relative; z-index: 1; min-height: 370px; }
.mock-card {
  position: relative; width: 100%; max-width: 340px; background: var(--surface);
  border: 1px solid var(--border-strong); box-shadow: var(--shadow-lg); padding: 18px 20px;
}
.mock-stack .mock-card { position: absolute; }
.mock-browser-bar { display: flex; align-items: center; gap: 6px; margin-bottom: 14px; }
.mock-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--border-strong); flex: none; }
.mock-url { margin-left: 8px; font-size: 11px; color: var(--text-faint); background: var(--surface-alt); padding: 3px 10px; flex: 1; }
.mock-line { height: 8px; background: var(--border); margin-bottom: 8px; }
.mock-line.w-70 { width: 70%; } .mock-line.w-90 { width: 90%; } .mock-line.w-50 { width: 50%; } .mock-line.w-40 { width: 40%; }
.mock-title-line { height: 12px; background: var(--ink); opacity: 0.85; width: 62%; margin-bottom: 10px; }
.mock-tag {
  display: inline-flex; align-items: center; font-size: 10px; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--color-accent-700); background: var(--color-accent-100);
  padding: 3px 8px; margin-bottom: 10px;
}
.mock-sparkline { display: block; margin-top: 12px; overflow: visible; }
.mock-sparkline path { fill: none; stroke: var(--color-accent-500); stroke-width: 2; }
.mock-sparkline circle { fill: var(--color-accent-600); }
.mock-status-pill {
  display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 700;
  letter-spacing: 0.04em; text-transform: uppercase; padding: 4px 10px;
}
.mock-status-pill.is-new { background: var(--surface-alt); color: var(--text-muted); }
.mock-status-pill.is-booked { background: var(--color-accent-100); color: var(--color-accent-700); }
.mock-status-pill.is-booked::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--color-accent-600); }
.mock-arrow-sep { text-align: center; color: var(--text-faint); font-size: 13px; margin: 8px 0; }
.mock-rank-row { display: flex; align-items: center; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--border); }
.mock-rank-row:last-child { border-bottom: none; }
.mock-rank-badge {
  width: 26px; height: 26px; flex: none; display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; border: 1px solid var(--border-strong); color: var(--text-muted);
}
.mock-rank-body { flex: 1; min-width: 0; }
.mock-rank-row.is-you { background: var(--color-accent-100); margin: 0 -14px; padding: 10px 14px; }
.mock-rank-row.is-you .mock-rank-badge { background: var(--color-accent); color: #fff; border-color: var(--color-accent); }
.mock-chat-bubble { background: var(--surface-alt); border: 1px solid var(--border); padding: 18px 20px; }
.mock-sparkle { color: var(--color-teal); }
.mock-cite { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 700; color: var(--color-teal); margin-top: 12px; }
.mock-frame-browser .mock-frame-body { padding: 16px; display: grid; gap: 8px; }
.mock-frame-phone {
  position: absolute; width: 108px; border: 6px solid var(--ink); border-radius: 14px; background: var(--surface);
  box-shadow: var(--shadow-lg); overflow: hidden; z-index: 2;
}
.mock-frame-phone .mock-frame-body { padding: 10px; display: grid; gap: 6px; }
.mock-listing-row { display: flex; align-items: center; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--border); }
.mock-listing-row:last-child { border-bottom: none; }
.mock-pin { width: 30px; height: 30px; flex: none; display: flex; align-items: center; justify-content: center; background: var(--color-accent-100); color: var(--color-accent-700); }
.mock-stars { color: var(--color-accent-500); font-size: 12px; letter-spacing: 1px; }
.mock-envelope-row { display: flex; align-items: center; gap: 14px; }
.mock-envelope { width: 42px; height: 32px; flex: none; border: 1.5px solid var(--border-strong); position: relative; background: var(--surface); }
.mock-envelope::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 16px; border-bottom: 1.5px solid var(--border-strong); clip-path: polygon(0 0, 50% 100%, 100% 0); }
.mock-flow-node {
  display: flex; align-items: center; gap: 10px; padding: 12px 16px; background: var(--surface);
  border: 1px solid var(--border-strong); box-shadow: var(--shadow-sm); font-size: 13.5px; font-weight: 600;
}
.mock-flow-connector { width: 2px; height: 22px; background: var(--color-accent-300); margin-left: 27px; }

/* — photography (selective real-world images; complements the digital visuals above, never replaces them) — */
.hero-visual-photo {
  position: absolute; width: 116px; height: 148px; z-index: 4;
  border: 1px solid var(--border-strong); box-shadow: var(--shadow-lg); background: var(--surface);
  overflow: hidden;
}
.hero-visual-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

.section-photo-accent {
  position: absolute; width: 180px; height: 230px; z-index: 2;
  border: 1px solid var(--border-strong); box-shadow: var(--shadow-lg); overflow: hidden; background: var(--surface);
}
.section-photo-accent img { width: 100%; height: 100%; object-fit: cover; display: block; }

.spotlight-photo-accent {
  width: 100%; max-width: 200px; aspect-ratio: 4 / 5; overflow: hidden;
  border: 1px solid var(--border-dark); box-shadow: var(--shadow-lg); align-self: flex-end;
}
.spotlight-photo-accent img { width: 100%; height: 100%; object-fit: cover; display: block; }

.section-dark.has-photo {
  background-image:
    linear-gradient(135deg, color-mix(in srgb, var(--ink) 92%, transparent) 0%, color-mix(in srgb, var(--color-accent-900) 85%, transparent) 130%),
    var(--section-photo);
  background-size: cover; background-position: center;
}

.photo-feature-media {
  width: 100%; aspect-ratio: 21 / 9; overflow: hidden;
  border: 1px solid var(--border-strong); box-shadow: var(--shadow-lg);
}
.photo-feature-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.photo-feature-caption { margin-top: 22px; font-size: 14.5px; line-height: 1.6; color: var(--text-muted); max-width: 60ch; }

.feature-mockup-panel {
  width: 100%; background: var(--surface-alt); border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-lg); padding: 48px 40px;
  display: flex; align-items: center; justify-content: center; gap: 32px; flex-wrap: wrap;
}
.feature-mockup-panel .mock-card { margin: 0; }

.service-hero-photo {
  position: absolute; width: 150px; height: 190px; z-index: 3;
  border: 1px solid var(--border-strong); box-shadow: var(--shadow-lg); overflow: hidden; background: var(--surface);
}
.service-hero-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

@media (max-width: 780px) {
  .mock-stack { min-height: 320px; }
  .mock-card { max-width: 280px; }
  .hero::before, .hero::after, .mock-glow { opacity: 0.4; }
  .section-photo-accent { display: none; }
}

@media (max-width: 480px) {
  .hero-visual-photo, .service-hero-photo { display: none; }
}

@media (max-width: 620px) {
  .wrap, .section, .split-section, .simple-shell { padding-left: 20px; padding-right: 20px; }
  .hero h1 { font-size: 40px; }
  .section h2 { font-size: 28px; }
  .feature-split h2 { font-size: 28px; }
  .cta-band h2 { font-size: 30px; }
  .site-footer .wrap { flex-direction: column; }
  .footer-meta { align-items: flex-start; text-align: left; }
  .section-tint .wrap { padding-top: 64px; padding-bottom: 64px; }
  .mock-float, .mock-float-slow { animation: none; }
}
