/* ═══════════════════════════════════════════════════════════════
   Myla Igoe — style.css
   Palette: Deep Navy · Steel Blue · Sand · Coral
   Feel: Santa Barbara tourism, editorial, premium, trust
═══════════════════════════════════════════════════════════════ */

/* ── Tokens ─────────────────────────────────────────────────── */
:root {
  /* Core palette — deep navy */
  --midnight:    #080f1a;
  --deep:        #0d1829;
  --ocean:       #122038;
  --blue:        #1a3158;
  --coastal:     #1e4d8c;
  --sky:         #4a7fc1;
  --sky-light:   #7aabd6;

  --sand:        #f0ead8;
  --sand-light:  #f7f3e8;
  --sand-mid:    #e4dcc8;
  --cream:       #faf8f3;

  --coral:       #c47a5a;
  --coral-light: #dba080;
  --coral-muted: #f0d5c8;
  --coral-dark:  #a85e3e;

  --ink:         #1a1a1a;
  --ink-60:      rgba(26,26,26,.6);
  --ink-40:      rgba(26,26,26,.4);
  --white:       #ffffff;

  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'DM Sans', system-ui, sans-serif;

  --max-w:     1180px;
  --gutter:    clamp(1.5rem, 5vw, 3rem);
  --section-v: clamp(4rem, 7vw, 7rem);

  --r-xs:   4px;
  --r-sm:   8px;
  --r-md:   16px;
  --r-lg:   24px;
  --r-xl:   36px;
  --r-pill: 999px;

  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.45, 0, 0.55, 1);
  --t-fast: 0.18s;
  --t-med:  0.38s;

  --shadow-sm: 0 2px 12px rgba(8,15,26,.12);
  --shadow-md: 0 8px 32px rgba(8,15,26,.18);
  --shadow-lg: 0 20px 64px rgba(8,15,26,.24);
  --shadow-xl: 0 32px 96px rgba(8,15,26,.30);
}

/* ── Reset ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.65;
  cursor: auto;
  overflow-x: hidden;
}
img  { display: block; max-width: 100%; height: auto; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }
button { font: inherit; border: none; background: none; cursor: pointer; }
input, select, textarea { font-family: var(--sans); }

/* ── Layout ──────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

/* ── Type Scale — Telluride-style editorial ─────────────────── */
.eyebrow {
  font-size: .62rem;
  font-weight: 500;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--coastal);
  display: block;
  margin-bottom: 1.25rem;
}
.eyebrow--light { color: rgba(240,234,216,.55); }
.eyebrow--coral { color: var(--coral-light); }

.section-title {
  font-family: 'Cormorant Garamond', 'Times New Roman', Georgia, serif;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 300;
  line-height: 1.06;
  color: var(--ink);
  margin-bottom: 1.75rem;
  letter-spacing: .01em;
}
.section-title em { font-style: italic; color: var(--coastal); font-weight: 400; }
.section-title--light { color: var(--sand-light); }
.section-title--light em { color: var(--coral-light); }

.body-text {
  font-size: clamp(.88rem, 1.3vw, .98rem);
  color: var(--ink-60);
  line-height: 1.9;
  max-width: 560px;
  margin-bottom: 1.25rem;
  font-weight: 300;
}
.body-text--light { color: rgba(240,234,216,.55); }
.body-text strong { color: inherit; font-weight: 600; }
.body-text em { font-style: italic; color: var(--coastal); }

/* ── Scroll Reveal ───────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(48px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal-left.visible { opacity: 1; transform: none; }
.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal-right.visible { opacity: 1; transform: none; }
.reveal-scale {
  opacity: 0;
  transform: scale(0.88);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal-scale.visible { opacity: 1; transform: scale(1); }
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .26s; }
.delay-3 { transition-delay: .40s; }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  border-radius: var(--r-pill);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  border: 1.5px solid transparent;
  transition: background var(--t-fast), color var(--t-fast),
              border-color var(--t-fast), transform 0.22s var(--ease-out),
              box-shadow var(--t-fast);
  white-space: nowrap;
  cursor: pointer;
}
.btn:active { transform: scale(0.97) !important; }
.btn--dark {
  background: var(--midnight);
  color: var(--cream);
  border-color: var(--midnight);
}
.btn--dark:hover { background: var(--deep); transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.btn--light {
  background: var(--cream);
  color: var(--midnight);
  border-color: var(--cream);
}
.btn--light:hover { background: var(--sand); transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.btn--outline-light {
  background: transparent;
  color: rgba(240,234,216,.7);
  border-color: rgba(240,234,216,.25);
}
.btn--outline-light:hover {
  background: rgba(240,234,216,.08);
  border-color: rgba(240,234,216,.5);
  color: var(--sand-light);
}
.btn--outline-dark {
  background: transparent;
  color: var(--ink);
  border-color: rgba(26,26,26,.25);
}
.btn--outline-dark:hover { background: var(--midnight); color: var(--cream); border-color: var(--midnight); }
.btn--coral {
  background: var(--coral);
  color: var(--white);
  border-color: var(--coral);
}
.btn--coral:hover {
  background: var(--coral-dark);
  border-color: var(--coral-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(196,122,90,.35);
}
.btn--sand {
  background: var(--sand-light);
  color: var(--midnight);
  border-color: var(--sand-light);
}
.btn--sand:hover { background: var(--cream); transform: translateY(-2px); }
.btn--ocean {
  background: var(--coastal);
  color: var(--white);
  border-color: var(--coastal);
}
.btn--ocean:hover { background: var(--blue); border-color: var(--blue); transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.btn--full { width: 100%; justify-content: center; }

/* ═══════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  padding: 1.75rem 0;
  transition: background var(--t-med), padding var(--t-med), box-shadow var(--t-med);
}
.nav.is-scrolled {
  background: rgba(8,15,26,.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 1rem 0;
  box-shadow: 0 1px 0 rgba(255,255,255,.04);
}
.nav__inner {
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--sand-light);
  letter-spacing: .15em;
}
.nav__menu { display: flex; align-items: center; gap: 2.5rem; }
.nav__link {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(240,234,216,.5);
  transition: color var(--t-fast);
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--coral-light);
  transition: width var(--t-fast) var(--ease-out);
}
.nav__link:hover { color: var(--sand-light); }
.nav__link:hover::after { width: 100%; }
.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .5rem 1.25rem;
  border: 1px solid rgba(196,122,90,.4);
  border-radius: var(--r-pill);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--coral-light);
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast);
}
.nav__cta:hover { background: var(--coral); color: var(--white); border-color: var(--coral); }
.nav__burger { display: none; flex-direction: column; gap: 6px; padding: 4px; }
.nav__burger span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--sand-light);
  transition: transform var(--t-fast), opacity var(--t-fast);
}
.nav__burger.is-open span:first-child { transform: translateY(7.5px) rotate(45deg); }
.nav__burger.is-open span:last-child  { transform: translateY(-7.5px) rotate(-45deg); }

/* ═══════════════════════════════════════
   HERO — full-bleed photo + two-panel CTA
═══════════════════════════════════════ */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  background: var(--midnight);
}

/* The actual photo layer */
.hero__photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  z-index: 0;
}

/* Multi-layer dark gradient over the photo */
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to bottom,
      rgba(8,15,26,.82) 0%,
      rgba(8,15,26,.68) 35%,
      rgba(8,15,26,.82) 70%,
      rgba(8,15,26,.97) 100%),
    linear-gradient(to right,
      rgba(8,15,26,.40) 0%,
      transparent 70%);
}

.hero__noise {
  position: absolute; inset: 0; z-index: 2;
  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)' opacity='0.025'/%3E%3C/svg%3E");
  pointer-events: none;
}

/* Location badge top-left */
.hero__location {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: 5.5rem var(--gutter) 0;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}
.hero__location span:last-child {
  font-size: .62rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(240,234,216,.75);
  font-weight: 600;
  text-shadow: 0 1px 8px rgba(0,0,0,.6);
}

.hero__dot {
  width: 6px; height: 6px;
  background: var(--sky);
  border-radius: 50%;
  animation: pulse-dot 2.5s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .5; transform: scale(1.5); }
}

/* Centre hero content */
.hero__center {
  flex: 1;
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(3rem, 7vw, 6rem) var(--gutter) clamp(2.5rem, 4vw, 3.5rem);
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}

.hero__eyebrow-tag {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--coral-light);
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 12px rgba(0,0,0,.7);
}

.hero__h1 {
  font-family: 'Cormorant Garamond', 'Times New Roman', Georgia, serif;
  font-size: clamp(3rem, 6.5vw, 6rem);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: .01em;
  color: #ffffff;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 24px rgba(0,0,0,.8), 0 4px 48px rgba(0,0,0,.5);
}
.hero__line1 { display: block; }
.hero__line2 { display: block; font-style: italic; font-weight: 600; color: var(--coral-light); text-shadow: 0 2px 20px rgba(0,0,0,.8); }

.hero__sub {
  font-size: clamp(.95rem, 1.5vw, 1.1rem);
  color: rgba(255,255,255,.78);
  line-height: 1.75;
  max-width: 600px;
  font-weight: 400;
  text-shadow: 0 1px 12px rgba(0,0,0,.65);
  margin-bottom: 2.5rem;
}
.hero__sub em { color: #ffffff; font-style: italic; font-weight: 500; }

/* CTA links — Telluride-style understated inline text */
.hero__ctas {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 0 var(--gutter) clamp(3rem, 5vw, 4.5rem);
}

.hero__cta-link {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  padding: .6rem 2rem;
  text-decoration: none;
  color: rgba(255,255,255,.7);
  transition: color var(--t-fast);
}
.hero__cta-link:hover { color: #ffffff; }

.hero__cta-label {
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,.25);
  padding-bottom: 2px;
  transition: border-color var(--t-fast);
}
.hero__cta-link:hover .hero__cta-label { border-color: rgba(255,255,255,.7); }

.hero__cta-arrow {
  font-size: .6rem;
  opacity: .5;
  transition: transform var(--t-fast), opacity var(--t-fast);
}
.hero__cta-link:hover .hero__cta-arrow { transform: translateX(4px); opacity: 1; }

.hero__cta-divider {
  width: 1px;
  height: 1rem;
  background: rgba(255,255,255,.2);
  flex-shrink: 0;
}

/* Ticker */
.ticker {
  position: relative;
  z-index: 3;
  border-top: 1px solid rgba(255,255,255,.06);
  padding-block: .85rem;
  background: rgba(8,15,26,.8);
  overflow: hidden;
}
.ticker__track {
  display: flex;
  gap: 2.5rem;
  animation: ticker-scroll 40s linear infinite;
  width: max-content;
  white-space: nowrap;
}
.ticker__track span {
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(240,234,216,.28);
}
.t-sep { color: var(--coral) !important; opacity: .6; }
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════
   ABOUT
═══════════════════════════════════════ */
.about {
  padding-block: var(--section-v);
  background: var(--cream);
}
/* Legacy combined section — no longer used but kept for safety */
.about-pricing {
  padding-block: var(--section-v);
  background: var(--cream);
}
.about__inner { max-width: 760px; }
.about--dark {
  padding-top: clamp(3rem, 5vw, 5rem);
  padding-bottom: clamp(3rem, 5vw, 5rem);
  border-top: 1px solid rgba(255,255,255,.07);
  margin-top: clamp(3rem, 5vw, 5rem);
}
.about__tags {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  margin-top: 1.75rem;
}
.tag {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: .8rem;
  font-weight: 500;
  color: var(--ink-60);
  background: var(--sand);
  border: 1px solid var(--sand-mid);
  border-radius: var(--r-pill);
  padding: .45rem 1rem;
  width: fit-content;
  transition: background .25s, color .25s, transform .25s var(--ease-out), border-color .25s;
}
.tag i { color: var(--coastal); font-size: .75rem; }
.tag a { color: var(--coastal); }
.tag:hover { background: var(--coastal); color: var(--white); border-color: var(--coastal); transform: translateX(6px); }
.tag:hover i, .tag:hover a { color: var(--white); }
/* Dark variant tags for inside dark sections */
.tag--dark {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.1);
  color: rgba(240,234,216,.65);
}
.tag--dark i { color: var(--sky); }
.tag--dark a { color: var(--sky-light); }
.tag--dark:hover { background: var(--coastal); color: var(--white); border-color: var(--coastal); }
.tag--dark:hover i, .tag--dark:hover a { color: var(--white); }

/* ═══════════════════════════════════════
   SECTION WRAPPERS — alternating light / dark
═══════════════════════════════════════ */

/* ① AI Issues — LIGHT */
.sec-issues {
  padding-block: var(--section-v);
  background: var(--cream);
}
.sec-issues__header { max-width: 100%; margin-bottom: clamp(3rem, 5vw, 5rem); }

/* ② Statistics — DARK */
.sec-stats {
  padding-block: var(--section-v);
  background: var(--ocean);
  width: 100%;
}
.sec-stats__header {
  max-width: 780px;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

/* ③ Who I Am — LIGHT */
.sec-about {
  padding-block: var(--section-v);
  background: var(--cream);
}

/* ④ Simple Pricing — DARK */
.sec-pricing {
  padding-block: var(--section-v);
  background: var(--ocean);
  width: 100%;
}

/* Legacy names kept for compatibility */
.stats-section {
  padding-block: var(--section-v);
  background: var(--ocean);
  width: 100%;
}
.stats__header {
  max-width: 780px;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}
.stats__intro { max-width: 620px; }

/* What needs to change — specific issues grid */
.ai-issues {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: clamp(3rem, 5vw, 5rem);
}
.ai-issue-card {
  background: var(--white);
  border: 1px solid var(--sand-mid);
  border-radius: var(--r-lg);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: background .3s, transform .3s, border-color .3s, box-shadow .3s;
  cursor: default;
  box-shadow: var(--shadow-sm);
}
.ai-issue-card:hover {
  background: var(--sand-light);
  border-color: var(--coastal);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.ai-issue-card__icon {
  width: 2.8rem; height: 2.8rem;
  background: rgba(30,77,140,.1);
  border: 1px solid rgba(30,77,140,.15);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  color: var(--coastal);
  flex-shrink: 0;
  transition: background .3s, color .3s;
}
.ai-issue-card:hover .ai-issue-card__icon { background: var(--coastal); color: var(--white); }
.ai-issue-card__label {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--coastal);
}
.ai-issue-card__title {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.2;
}
.ai-issue-card__desc {
  font-size: .84rem;
  color: var(--ink-60);
  line-height: 1.72;
  flex: 1;
}
.ai-issue-card__fix {
  font-size: .75rem;
  font-weight: 600;
  color: var(--coral-dark);
  letter-spacing: .04em;
  padding-top: .75rem;
  border-top: 1px solid var(--sand-mid);
}
.ai-issue-card__fix i { margin-right: .35rem; }

/* Stats row — on dark background */
.stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: clamp(3rem, 5vw, 5rem);
}
.stat-card {
  background: rgba(8,15,26,.5);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  transition: background .35s, transform .35s;
  cursor: default;
}
.stat-card:hover { background: rgba(74,127,193,.18); transform: translateY(-4px); position: relative; z-index: 2; }
.stat-card:hover .stat-card__num { color: var(--sky-light); }
.stat-card__num {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 300;
  line-height: 1;
  color: var(--sand-light);
  letter-spacing: -.02em;
  transition: color .3s;
  display: inline-block;
}
.stat-card__text { font-size: .85rem; color: rgba(240,234,216,.5); line-height: 1.7; flex: 1; }
.stat-card__src {
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(240,234,216,.22);
}

/* IgoeScan teaser */
.igoescan-teaser {
  background: rgba(46,125,166,.1);
  border: 1px solid rgba(91,163,201,.2);
  border-radius: var(--r-xl);
  padding: clamp(2rem, 4vw, 3.5rem);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
  margin-bottom: clamp(3rem, 5vw, 5rem);
}
.igoescan-teaser__badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(196,122,90,.15);
  border: 1px solid rgba(196,122,90,.3);
  border-radius: var(--r-pill);
  padding: .3rem .9rem;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--coral-light);
  margin-bottom: 1rem;
}
.igoescan-teaser__title {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 400;
  color: var(--sand-light);
  line-height: 1.15;
  margin-bottom: .75rem;
}
.igoescan-teaser__desc {
  font-size: .9rem;
  color: rgba(240,234,216,.5);
  line-height: 1.75;
  max-width: 560px;
}
.igoescan-teaser__right { flex-shrink: 0; }

.stats__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 2.5rem 3rem;
  background: rgba(46,125,166,.1);
  border: 1px solid rgba(91,163,201,.12);
  border-radius: var(--r-lg);
}
.stats__cta-text {
  font-size: clamp(.9rem, 1.5vw, 1.05rem);
  color: rgba(240,234,216,.55);
  line-height: 1.75;
  max-width: 640px;
}
.stats__cta-text em { color: rgba(240,234,216,.8); font-style: italic; }

/* ═══════════════════════════════════════
   PRICING — lives inside .sec-pricing (dark)
═══════════════════════════════════════ */
.pricing__header { max-width: 780px; margin-bottom: clamp(3rem, 5vw, 5rem); }
.pricing__divider { max-width: 560px; margin-bottom: clamp(3rem, 5vw, 5rem); margin-top: clamp(4rem, 7vw, 7rem); }
.pricing__sub { max-width: 480px; }
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: start;
  margin-bottom: clamp(3rem, 5vw, 5rem);
}
/* Dark-background price cards */
.price-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--r-xl);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color .35s, transform .4s var(--ease-out), background .35s, box-shadow .4s;
}
.price-card:hover {
  border-color: rgba(255,255,255,.22);
  transform: translateY(-8px);
  background: rgba(255,255,255,.09);
  box-shadow: 0 24px 64px rgba(0,0,0,.3);
  z-index: 2;
}
.price-card--featured {
  border-color: rgba(196,122,90,.45);
  background: rgba(196,122,90,.09);
}
.price-card--featured:hover {
  border-color: rgba(196,122,90,.75);
  box-shadow: 0 24px 64px rgba(196,122,90,.22);
}
.price-card__badge {
  position: absolute;
  top: -1rem; left: 50%;
  transform: translateX(-50%);
  background: var(--coral);
  color: var(--white);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .3rem 1.1rem;
  border-radius: var(--r-pill);
  white-space: nowrap;
}
.price-card__head { margin-bottom: 2rem; }
.price-card__name { font-family: var(--serif); font-size: 1.4rem; font-weight: 400; color: var(--sand-light); margin-bottom: .6rem; }
.price-card__price { font-family: var(--serif); font-size: 2rem; font-weight: 300; color: var(--white); line-height: 1.1; margin: .4rem 0 .3rem; }
.price-card__price span { font-family: var(--sans); font-size: .78rem; font-weight: 500; color: rgba(240,234,216,.35); }
.price-card__note { font-size: .72rem; color: rgba(240,234,216,.3); }
.price-card__list {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 1.5rem;
  margin-bottom: 2rem;
  flex: 1;
}
.price-card__list li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .82rem;
  color: rgba(240,234,216,.6);
  line-height: 1.5;
}
.price-card__list li i { color: var(--sky-light); flex-shrink: 0; margin-top: .2rem; font-size: .7rem; }
.pricing__note {
  text-align: center;
  font-size: .82rem;
  color: rgba(240,234,216,.3);
  margin-top: 2rem;
}
.pricing__note a { color: var(--coral-light); }
.pricing__note a:hover { color: var(--sand-light); }

/* Video Why */
.video-why {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: center;
  padding: clamp(2.5rem, 4vw, 4rem) clamp(2rem, 4vw, 3.5rem);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-xl);
  margin-bottom: clamp(3rem, 5vw, 5rem);
}
.video-why__title { font-family: var(--serif); font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 400; color: var(--sand-light); margin-bottom: 1rem; line-height: 1.2; }
.video-why .body-text { color: rgba(240,234,216,.55); max-width: 100%; }
.video-why .body-text em { color: var(--coral-light); font-style: italic; }
.video-why__stats { display: flex; flex-direction: column; }
.vws {
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  display: flex;
  flex-direction: column;
  gap: .3rem;
  transition: padding-left .3s;
  cursor: default;
}
.vws:first-child { border-top: 1px solid rgba(255,255,255,.06); }
.vws:hover { padding-left: .75rem; }
.vws:hover strong { color: var(--coral-light); }
.vws strong { font-family: var(--serif); font-size: clamp(1.8rem, 3.5vw, 2.5rem); font-weight: 300; color: var(--sand-light); line-height: 1; transition: color .3s; }
.vws span { font-size: .75rem; color: rgba(240,234,216,.38); line-height: 1.4; }

/* Booking CTA — sits inside dark .sec-pricing */
.booking-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  background: rgba(196,122,90,.12);
  border: 1px solid rgba(196,122,90,.3);
  border-radius: var(--r-xl);
  padding: clamp(2rem, 3.5vw, 3rem) clamp(2rem, 4vw, 3.5rem);
  transition: transform .4s, box-shadow .4s, background .4s;
}
.booking-cta:hover { transform: translateY(-4px); background: rgba(196,122,90,.18); box-shadow: 0 20px 60px rgba(196,122,90,.2); }
.booking-cta__title { font-family: var(--serif); font-size: clamp(1.4rem, 2.8vw, 2rem); font-weight: 400; color: var(--sand-light); margin-bottom: .3rem; }
.booking-cta__sub { font-size: .85rem; color: rgba(240,234,216,.55); }

/* ═══════════════════════════════════════
   WORK / EXPERIENCE
═══════════════════════════════════════ */
.work { padding-block: var(--section-v); background: var(--cream); border-top: 1px solid var(--sand-mid); }
.work__header { max-width: 640px; margin-bottom: clamp(3rem, 5vw, 5rem); }
.exp-list { display: flex; flex-direction: column; }
.exp-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 2.5rem;
  padding: 2.25rem 0;
  border-top: 1px solid var(--sand-mid);
  align-items: start;
  transition: padding-left .4s;
  position: relative;
}
.exp-row::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(46,125,166,.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .3s;
  pointer-events: none;
}
.exp-row:last-child { border-bottom: 1px solid var(--sand-mid); }
.exp-row:hover { padding-left: 1.25rem; }
.exp-row:hover::after { opacity: 1; }
.exp-row:hover .exp-title { color: var(--coastal); }
.exp-meta { display: flex; flex-direction: column; gap: .4rem; padding-top: .15rem; }
.exp-year { font-size: .68rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-40); }
.exp-tag { font-size: .65rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: .2rem .6rem; border-radius: var(--r-pill); width: fit-content; }
.exp-tag--video   { background: var(--coral-muted); color: var(--coral-dark); }
.exp-tag--intern  { background: rgba(46,125,166,.1); color: var(--coastal); }
.exp-tag--founder { background: rgba(196,122,90,.1); color: var(--coral); }
.exp-tag--web     { background: var(--sand); color: var(--ink-60); border: 1px solid var(--sand-mid); }
.exp-body { display: flex; flex-direction: column; gap: .5rem; }
.exp-title { font-family: 'Cormorant Garamond','Times New Roman',Georgia,serif; font-size: clamp(1.4rem, 2.2vw, 1.8rem); font-weight: 300; color: var(--ink); line-height: 1.15; transition: color .3s; letter-spacing: .01em; }
.exp-desc { font-size: .88rem; color: var(--ink-60); line-height: 1.75; max-width: 580px; }
.exp-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .78rem;
  font-weight: 600;
  color: var(--coastal);
  border-bottom: 1px solid var(--coastal);
  padding-bottom: 2px;
  width: fit-content;
  transition: color var(--t-fast), gap var(--t-fast);
}
.exp-link:hover { color: var(--ink); border-color: var(--ink); gap: .65rem; }

/* ═══════════════════════════════════════
   CONTACT
═══════════════════════════════════════ */
.contact { padding-block: var(--section-v); background: var(--cream); }
.contact__grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(3rem, 7vw, 7rem); align-items: start; }
.contact__info { display: flex; flex-direction: column; gap: .75rem; margin: 1.75rem 0; }
.contact-item { display: flex; align-items: center; gap: .85rem; font-size: .88rem; color: var(--ink-60); transition: color var(--t-fast); }
.contact-item__icon {
  width: 2.2rem; height: 2.2rem;
  background: var(--sand);
  border: 1px solid var(--sand-mid);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .82rem;
  color: var(--coastal);
  flex-shrink: 0;
  transition: background var(--t-fast), color var(--t-fast);
}
.contact-item:hover { color: var(--ink); }
.contact-item:hover .contact-item__icon { background: var(--coastal); color: var(--white); }
.contact__card { display: flex; align-items: center; gap: 1rem; padding: 1.1rem 1.4rem; background: var(--sand); border: 1px solid var(--sand-mid); border-radius: var(--r-md); margin-top: 2.5rem; }
.contact__card-img { width: 3.2rem; height: 3.2rem; border-radius: 50%; object-fit: cover; object-position: center center; border: 2px solid var(--coral-muted); flex-shrink: 0; }
.contact__card-name { font-weight: 600; font-size: .88rem; color: var(--ink); }
.contact__card-role { font-size: .74rem; color: var(--ink-40); margin-top: .15rem; }
.contact__form { background: var(--white); border: 1px solid var(--sand-mid); border-radius: var(--r-xl); padding: clamp(2rem, 4vw, 3rem); display: flex; flex-direction: column; gap: 1.25rem; box-shadow: var(--shadow-sm); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-field { display: flex; flex-direction: column; gap: .4rem; }
.form-field label { font-size: .65rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-60); }
.form-field input,
.form-field select,
.form-field textarea {
  background: var(--sand-light);
  border: 1.5px solid var(--sand-mid);
  border-radius: var(--r-sm);
  padding: .8rem 1rem;
  font-size: .88rem;
  color: var(--ink);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color var(--t-fast), background var(--t-fast);
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(26,26,26,.25); }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--coastal); background: var(--white); }
.form-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23888'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .85rem center;
  background-size: 1rem;
  padding-right: 2.5rem;
  cursor: pointer;
}
.form-field textarea { resize: vertical; min-height: 130px; }
.form-success { display: flex; align-items: center; gap: .5rem; font-size: .85rem; color: var(--coastal); background: rgba(46,125,166,.07); border: 1px solid rgba(46,125,166,.18); border-radius: var(--r-sm); padding: .75rem 1rem; }
.form-success[hidden] { display: none; }

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.footer { background: var(--midnight); padding-top: 3.5rem; }
.footer__inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1.5rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,.05); }
.footer__logo { font-family: var(--serif); font-size: 1.4rem; font-weight: 400; color: var(--sand-light); }
.footer__tagline { font-size: .73rem; color: rgba(240,234,216,.25); margin-top: .2rem; }
.footer__nav { display: flex; gap: 2rem; }
.footer__nav a { font-size: .72rem; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; color: rgba(240,234,216,.35); transition: color var(--t-fast); }
.footer__nav a:hover { color: var(--sand-light); }
.footer__social { display: flex; gap: .65rem; }
.footer__social a { width: 2.1rem; height: 2.1rem; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .82rem; color: rgba(240,234,216,.35); transition: background var(--t-fast), color var(--t-fast); }
.footer__social a:hover { background: var(--coral); color: var(--white); }
.footer__bottom { padding: 1.25rem var(--gutter); text-align: center; font-size: .72rem; color: rgba(240,234,216,.2); }
.footer__bottom a { color: rgba(240,234,216,.35); }
.footer__bottom a:hover { color: var(--sand-light); }

/* Back to top */
.back-top {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 100;
  width: 2.6rem; height: 2.6rem;
  background: var(--coastal); color: var(--white);
  border-radius: 50%; font-size: .8rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  transition: background var(--t-fast), transform var(--t-fast);
}
.back-top:hover { background: var(--midnight); transform: translateY(-3px); }
.back-top[hidden] { display: none; }

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 900px) {
  .ai-issues { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .video-why { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact__grid { grid-template-columns: 1fr; }
  .booking-cta { padding: 2rem; }
  .igoescan-teaser { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav__menu {
    display: none;
    position: fixed;
    inset: 0 0 0 30%;
    background: rgba(8,15,26,.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 2rem 2.5rem;
    gap: 2rem;
    z-index: 500;
  }
  .nav__menu.is-open { display: flex; }
  .nav__link { font-size: .95rem; }
  .nav__burger { display: flex; }
  /* Hero CTAs stack on mobile */
  .hero__ctas { flex-direction: column; align-items: center; gap: .25rem; }
  .hero__cta-divider { width: 2rem; height: 1px; }
  .ai-issues { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: 1fr; }
  .stats__cta { flex-direction: column; align-items: flex-start; padding: 2rem; }
  .pricing__grid { grid-template-columns: 1fr; }
  .video-why { grid-template-columns: 1fr; gap: 2rem; }
  .exp-row { grid-template-columns: 1fr; gap: .5rem; padding: 1.75rem 0; }
  .exp-meta { flex-direction: row; align-items: center; gap: .75rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer__inner { flex-direction: column; align-items: flex-start; }
  .booking-cta { flex-direction: column; align-items: flex-start; }
  .booking-cta .btn--sand { width: 100%; justify-content: center; }
}
@media (max-width: 560px) {
  .hero__h1 { font-size: 2.4rem; }
  .hero__sub { font-size: .9rem; }
  .footer__inner { align-items: center; text-align: center; }
  .footer__nav { justify-content: center; flex-wrap: wrap; gap: 1rem; }
}
