/* ============================================================
   ANGIE BAY PHOTOS — angie-bay.com · 2026
   Paleta = angelicacolion.com ("lavender editorial", pedido
   de Angélica 2026-08-05). Los nombres de tokens (--sage/--terra/
   --sand) se conservan por compatibilidad con el HTML, pero sus
   VALORES son ahora la familia lavanda del sitio hermano.
   ============================================================ */

:root {
  /* Type */
  --serif: "Fraunces", "Times New Roman", Georgia, serif;
  --sans: "Karla", -apple-system, BlinkMacSystemFont, "Helvetica Neue", system-ui, sans-serif;

  /* Palette — lavender editorial (angelicacolion.com) */
  --shell: #F5F0E8;
  --shell-soft: #FAF6EF;
  --white: #FFFBF0;
  --ink: #1A1820;
  --ink-soft: #423E55;
  --ink-mute: #7A7290;
  --sage: #7B6FE0;        /* = lavender (acento firma) */
  --sage-deep: #5B50C8;   /* = lavender profundo (botones, bandas, footer) */
  --sage-pale: #F2EEFB;   /* = lavender-pale */
  --terra: #7B6FE0;       /* = lavender (CTA Apply) */
  --terra-deep: #5B4FC0;
  --terra-pale: #E8E2F5;  /* = lavender-bg */
  --sand: #D8D2F4;        /* acentos claros sobre banda oscura */
  --sand-deep: #B5ACEF;   /* = lavender-soft */

  --border: rgba(26, 24, 32, 0.12);
  --border-soft: rgba(26, 24, 32, 0.07);
  --shadow-soft: 0 4px 20px rgba(26, 24, 32, 0.05);
  --shadow-card: 0 12px 40px rgba(123, 111, 224, 0.10), 0 2px 8px rgba(26, 24, 32, 0.05);
  --shadow-lift: 0 20px 60px rgba(123, 111, 224, 0.16), 0 4px 12px rgba(26, 24, 32, 0.07);

  /* Spacing */
  --s-1: 4px;  --s-2: 8px;   --s-3: 12px;  --s-4: 16px;  --s-5: 20px;
  --s-6: 24px; --s-8: 32px;  --s-10: 40px; --s-12: 48px; --s-16: 64px;
  --s-20: 80px; --s-24: 96px; --s-32: 128px;

  /* Layout */
  --max-w: 1240px;
  --max-w-narrow: 780px;
  --radius: 16px;
  --radius-sm: 8px;
  --radius-pill: 999px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--shell);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Atmosphere: cream with sage + sand glows, like fog burning off at 8 AM */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(900px circle at 92% -8%, rgba(123, 111, 224, 0.18), transparent 52%),
    radial-gradient(760px circle at -4% 108%, rgba(123, 111, 224, 0.12), transparent 50%),
    linear-gradient(180deg, var(--shell) 0%, var(--shell-soft) 100%);
  z-index: -1;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; }
::selection { background: var(--sage-pale); color: var(--sage-deep); }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--s-6); }
.container.narrow { max-width: var(--max-w-narrow); }
section { position: relative; }

/* ============================================================
   TYPOGRAPHY — Fraunces display + Karla body.
   The italic-sage accent is the family signature move.
   ============================================================ */
.display {
  font-family: var(--serif);
  font-weight: 480;
  font-size: clamp(46px, 7vw, 92px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-variation-settings: "opsz" 144;
}
.display em, .section-title em, .accent-italic {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 460;
  color: var(--sage);
}

.section-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 1.07;
  letter-spacing: -0.015em;
  color: var(--ink);
  font-variation-settings: "opsz" 100;
}

h3, .h3 {
  font-family: var(--serif);
  font-weight: 560;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage-deep);
}
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--terra);
}
.eyebrow.terra { color: var(--terra-deep); }
.eyebrow.terra .dot { background: var(--sage); }

.lede {
  font-size: clamp(17px, 1.55vw, 21px);
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 58ch;
}
.body-large { font-size: 17px; line-height: 1.65; color: var(--ink-soft); }
.body-large + .body-large { margin-top: var(--s-4); }
.caption {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 600;
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--shell) 82%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-soft);
}
.nav-inner {
  max-width: var(--max-w); margin: 0 auto;
  padding: var(--s-4) var(--s-6);
  display: flex; align-items: center; justify-content: space-between; gap: var(--s-6);
}
.nav-brand {
  font-family: var(--serif);
  font-size: 21px; font-weight: 560; letter-spacing: -0.01em;
  white-space: nowrap;
}
.nav-brand em { font-style: italic; color: var(--sage); font-weight: 460; }
.nav-brand .suffix {
  font-family: var(--sans); font-size: 10px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-mute);
  margin-left: var(--s-3);
}
.nav-menu { display: flex; align-items: center; gap: var(--s-6); }
.nav-links { display: flex; align-items: center; gap: var(--s-5); }
.nav-links a {
  font-size: 14px; font-weight: 600; color: var(--ink-soft);
  transition: color 0.25s var(--ease);
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--sage-deep); }
.lang-switch {
  display: inline-flex; align-items: center; gap: var(--s-1);
  font-size: 12px; font-weight: 700; letter-spacing: 0.08em;
  color: var(--ink-mute);
  border: 1px solid var(--border); border-radius: var(--radius-pill);
  padding: 5px 10px;
}
.lang-switch a { padding: 2px 4px; border-radius: 6px; }
.lang-switch a.active { color: var(--sage-deep); background: var(--sage-pale); }
.lang-switch a:not(.active):hover { color: var(--ink); }
.nav-toggle { display: none; }
.nav-book-link { display: none; }
@media (max-width: 720px) { .nav-menu.open .nav-book-link { display: block; font-weight: 700; } }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: var(--s-2);
  font-size: 14.5px; font-weight: 700; letter-spacing: 0.01em;
  padding: 13px 26px; border-radius: var(--radius-pill);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease),
              background 0.25s var(--ease), color 0.25s var(--ease);
  will-change: transform;
}
.btn .arrow { transition: transform 0.35s var(--ease); }
.btn:hover .arrow { transform: translateX(3px); }
.btn-primary {
  background: var(--sage-deep); color: var(--shell-soft);
  box-shadow: var(--shadow-soft);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-lift); background: var(--sage); }
.btn-terra { background: var(--terra); color: #FFF9F2; box-shadow: var(--shadow-soft); }
.btn-terra:hover { transform: translateY(-2px); box-shadow: var(--shadow-lift); background: var(--terra-deep); }
.btn-ghost {
  border: 1.5px solid var(--border); color: var(--ink);
  background: color-mix(in srgb, var(--white) 55%, transparent);
}
.btn-ghost:hover { border-color: var(--sage); color: var(--sage-deep); transform: translateY(-2px); }
.btn-light { background: var(--shell-soft); color: var(--sage-deep); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-lift); }
.btn-block { width: 100%; justify-content: center; }

/* ============================================================
   HERO
   ============================================================ */
.hero { padding: var(--s-20) 0 var(--s-24); }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: var(--s-16); align-items: center;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: var(--s-4); margin-top: var(--s-10); }
.hero-note { margin-top: var(--s-5); font-size: 13.5px; font-weight: 600; color: var(--ink-mute); }
.hero-note .flag { color: var(--sage-deep); }
.hero-meta {
  display: flex; flex-wrap: wrap; gap: var(--s-10);
  margin-top: var(--s-16); padding-top: var(--s-8);
  border-top: 1px solid var(--border-soft);
}
.hero-meta .num {
  font-family: var(--serif); font-size: 34px; font-weight: 500; line-height: 1;
  display: block; color: var(--ink);
}
.hero-meta .num em { font-style: italic; color: var(--sage); }
.hero-meta .label {
  display: block; margin-top: var(--s-2);
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--ink-mute);
}

/* ============================================================
   PHOTO TREATMENT — passe-partout + contact-sheet caption
   ============================================================ */
.photo-frame {
  position: relative;
  background: var(--white);
  padding: 8px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-soft);
}
.photo-frame img {
  width: 100%; height: 100%; object-fit: cover;
  border-radius: calc(var(--radius) - 6px);
}
.photo-frame .meta {
  position: absolute; left: var(--s-5); bottom: var(--s-5);
  background: color-mix(in srgb, var(--ink) 78%, transparent);
  color: var(--shell-soft);
  backdrop-filter: blur(6px);
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 7px 14px; border-radius: var(--radius-pill);
}
.hero-photo { position: relative; }
.hero-photo .photo-frame { aspect-ratio: 4 / 5; transform: rotate(0.6deg); }
.hero-photo .photo-frame img { height: 100%; }

/* Placeholder for missing portfolio images */
.photo-placeholder {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: var(--s-3); text-align: center;
  background:
    repeating-linear-gradient(-45deg, transparent 0 14px, rgba(123,111,224,0.06) 14px 28px),
    var(--sage-pale);
  border: 1.5px dashed var(--sand-deep);
  border-radius: calc(var(--radius) - 6px);
  color: var(--sage-deep);
  width: 100%; height: 100%; min-height: 240px;
  padding: var(--s-6);
}
.photo-placeholder .tag {
  font-size: 10.5px; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase;
}
.photo-placeholder .cat { font-family: var(--serif); font-style: italic; font-size: 19px; }

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: var(--s-24) 0; }
.section.tight { padding: var(--s-16) 0; }
.section-head { max-width: 720px; margin-bottom: var(--s-16); }
.section-head.text-center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head .eyebrow + .section-title { margin-top: var(--s-5); }
.section-head .section-title + .lede { margin-top: var(--s-5); }
.section-alt { background: color-mix(in srgb, var(--white) 55%, transparent); border-block: 1px solid var(--border-soft); }

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: var(--s-8);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-6); }
.card-grid.two { grid-template-columns: repeat(2, 1fr); }
.card-grid.four { grid-template-columns: repeat(4, 1fr); }

/* Session / package cards */
.pkg { display: flex; flex-direction: column; }
.pkg .pkg-for {
  font-size: 11px; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--sage-deep);
}
.pkg h3 { margin-top: var(--s-3); }
.pkg h3 em { font-style: italic; color: var(--sage); font-weight: 460; }
.pkg .pkg-sub { margin-top: var(--s-2); font-size: 14.5px; color: var(--ink-mute); }
.pkg .pkg-duration {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: var(--s-4); font-size: 12.5px; font-weight: 700;
  color: var(--ink-soft); background: var(--sage-pale);
  padding: 5px 12px; border-radius: var(--radius-pill); align-self: flex-start;
}
.pkg .features { list-style: none; margin-top: var(--s-5); display: grid; gap: var(--s-3); }
.pkg .features li { display: flex; gap: var(--s-3); font-size: 14.5px; color: var(--ink-soft); }
.pkg .features .check {
  flex: none; width: 18px; height: 18px; margin-top: 2px;
  border-radius: 50%; background: var(--sage-pale); color: var(--sage-deep);
  display: inline-flex; align-items: center; justify-content: center;
}
.pkg .price-row { margin-top: auto; padding-top: var(--s-6); display: flex; align-items: baseline; gap: var(--s-2); flex-wrap: wrap; }
.pkg .price {
  font-family: var(--serif); font-size: 38px; font-weight: 500; letter-spacing: -0.02em;
  color: var(--ink);
}
.pkg .price em { font-style: italic; font-size: 0.65em; color: var(--terra); }
.pkg .price-note { font-size: 12.5px; color: var(--ink-mute); font-weight: 600; }
.pkg .cta { margin-top: var(--s-5); }
.pkg.featured { border-color: var(--sage); box-shadow: var(--shadow-card); position: relative; }
.pkg.featured::after {
  content: "Most requested";
  position: absolute; top: -12px; right: var(--s-6);
  background: var(--sage-deep); color: var(--shell-soft);
  font-size: 10px; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 5px 12px; border-radius: var(--radius-pill);
}
.launch-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--terra-pale); color: var(--terra-deep);
  border: 1px solid color-mix(in srgb, var(--terra) 30%, transparent);
  font-size: 10.5px; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 6px 13px; border-radius: var(--radius-pill);
}

/* ============================================================
   PORTFOLIO GRID
   ============================================================ */
.pf-filters { display: flex; flex-wrap: wrap; gap: var(--s-2); margin-bottom: var(--s-10); }
.pf-filter {
  font-size: 13px; font-weight: 700; color: var(--ink-soft);
  border: 1px solid var(--border); border-radius: var(--radius-pill);
  padding: 8px 18px; transition: all 0.25s var(--ease);
}
.pf-filter:hover { border-color: var(--sage); color: var(--sage-deep); }
.pf-filter.active { background: var(--sage-deep); border-color: var(--sage-deep); color: var(--shell-soft); }
.pf-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-5); }
.pf-item { break-inside: avoid; }
.pf-item .photo-frame { aspect-ratio: 4 / 5; }
.pf-item.wide { grid-column: span 2; }
.pf-item.wide .photo-frame { aspect-ratio: 16 / 10; }
.pf-item figcaption {
  margin-top: var(--s-3); display: flex; justify-content: space-between; gap: var(--s-3);
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-mute);
}

/* ============================================================
   DARK BAND (sage-deep) — Portfolio Project / wedding offer
   ============================================================ */
.band {
  background:
    radial-gradient(700px circle at 88% -20%, rgba(232, 226, 245, 0.12), transparent 55%),
    var(--sage-deep);
  color: var(--shell-soft);
  border-radius: calc(var(--radius) + 8px);
  padding: var(--s-16);
  box-shadow: var(--shadow-lift);
  overflow: hidden;
  position: relative;
}
.band .eyebrow { color: var(--sand); }
.band .eyebrow .dot { background: var(--terra); }
.band .band-title {
  font-family: var(--serif); font-weight: 480;
  font-size: clamp(30px, 3.6vw, 50px); line-height: 1.08; letter-spacing: -0.015em;
  margin-top: var(--s-4);
}
.band .band-title em { font-style: italic; color: var(--sand); }
.band p { color: color-mix(in srgb, var(--shell-soft) 82%, transparent); max-width: 60ch; }
.band-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: var(--s-12); align-items: center; }
.band .big-num {
  font-family: var(--serif); font-style: italic; font-weight: 460;
  font-size: clamp(90px, 10vw, 150px); line-height: 0.9; color: var(--sand);
  text-align: center;
}
.band .big-label {
  text-align: center; margin-top: var(--s-4);
  font-size: 12px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: color-mix(in srgb, var(--shell-soft) 70%, transparent);
}

/* ============================================================
   EXPERIENCE STEPS
   ============================================================ */
.steps { display: grid; gap: 0; counter-reset: step; }
.step {
  display: grid; grid-template-columns: 110px 1fr; gap: var(--s-8);
  padding: var(--s-8) 0; border-bottom: 1px solid var(--border-soft);
  align-items: start;
}
.step:last-child { border-bottom: 0; }
.step .num {
  font-family: var(--serif); font-style: italic; font-weight: 440;
  font-size: 58px; line-height: 1; color: var(--sage);
  opacity: 0.85;
}
.step h3 { font-size: 22px; }
.step p { margin-top: var(--s-2); font-size: 15.5px; color: var(--ink-soft); max-width: 62ch; }

/* ============================================================
   FIELD NOTES STRIP
   ============================================================ */
.notes-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-6); }
.note-card {
  background: #FFFBF0;
  border: 1px solid var(--sand);
  border-radius: var(--radius);
  padding: var(--s-8);
  box-shadow: var(--shadow-soft);
  transform: rotate(-0.4deg);
}
.note-card:nth-child(2) { transform: rotate(0.5deg); }
.note-card:nth-child(3) { transform: rotate(-0.2deg); }
.note-card .date {
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-mute); padding-bottom: var(--s-4); margin-bottom: var(--s-4);
  border-bottom: 1px dashed var(--sand-deep);
}
.note-card .text {
  font-family: var(--serif); font-size: 21px; line-height: 1.35; font-weight: 460;
}
.note-card .text em { font-style: italic; color: var(--sage); }
.note-card .sig { margin-top: var(--s-5); font-family: var(--serif); font-style: italic; color: var(--terra); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { display: grid; gap: var(--s-3); }
.faq-item {
  background: var(--white); border: 1px solid var(--border-soft);
  border-radius: var(--radius); overflow: hidden;
}
.faq-item summary {
  list-style: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: var(--s-4);
  padding: var(--s-5) var(--s-6);
  font-family: var(--serif); font-size: 19px; font-weight: 540;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .chev { flex: none; color: var(--sage); transition: transform 0.3s var(--ease); }
.faq-item[open] summary .chev { transform: rotate(45deg); }
.faq-item .answer { padding: 0 var(--s-6) var(--s-6); font-size: 15.5px; color: var(--ink-soft); max-width: 70ch; }
.faq-item .answer p + p { margin-top: var(--s-3); }

/* ============================================================
   FORMS
   ============================================================ */
.form-card {
  background: var(--white); border: 1px solid var(--border-soft);
  border-radius: calc(var(--radius) + 4px); box-shadow: var(--shadow-card);
  padding: var(--s-10);
}
.form-section + .form-section { margin-top: var(--s-10); padding-top: var(--s-10); border-top: 1px solid var(--border-soft); }
.form-section > .caption { color: var(--sage-deep); display: block; margin-bottom: var(--s-5); }
.field { display: flex; flex-direction: column; gap: var(--s-2); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-5); }
.field + .field, .field-row + .field, .field + .field-row, .field-row + .field-row { margin-top: var(--s-5); }
.field label { font-size: 13.5px; font-weight: 700; color: var(--ink); }
.field label .req { color: var(--terra-deep); }
.field .hint { font-size: 12.5px; color: var(--ink-mute); }
.field input, .field select, .field textarea {
  font: inherit; font-size: 15px; color: var(--ink);
  background: var(--shell-soft);
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  padding: 12px 14px; min-height: 48px;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
  width: 100%;
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--sage);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--sage) 18%, transparent);
}
.field.error input, .field.error select, .field.error textarea { border-color: #B3403A; }
.field .error-msg { display: none; font-size: 13px; font-weight: 600; color: #B3403A; }
.field.error .error-msg { display: block; }
.check-field {
  display: flex; gap: var(--s-3); align-items: flex-start;
  font-size: 14.5px; color: var(--ink-soft); cursor: pointer;
}
.check-field + .check-field { margin-top: var(--s-4); }
.check-field input {
  flex: none; width: 20px; height: 20px; margin-top: 1px;
  accent-color: var(--sage-deep); cursor: pointer;
}
.form-status {
  display: none; margin-top: var(--s-6); padding: var(--s-5) var(--s-6);
  border-radius: var(--radius-sm); font-size: 14.5px; font-weight: 600;
}
.form-status.ok { display: block; background: var(--sage-pale); color: var(--sage-deep); }
.form-status.err { display: block; background: #F6E3E1; color: #B3403A; }
.draft-note { font-size: 12.5px; color: var(--ink-mute); margin-top: var(--s-4); display: flex; align-items: center; gap: 6px; }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* ============================================================
   CTA BAND + CONTACT ROWS
   ============================================================ */
.cta-band { padding: var(--s-24) 0; }
.cta-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: var(--s-16); align-items: center; }
.cta-rows { display: grid; gap: var(--s-4); }
.cta-row {
  display: flex; align-items: center; gap: var(--s-5);
  background: var(--white); border: 1px solid var(--border-soft);
  border-radius: var(--radius); padding: var(--s-5) var(--s-6);
  box-shadow: var(--shadow-soft);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.25s;
}
.cta-row:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); border-color: var(--sage); }
.cta-row .ico {
  flex: none; width: 44px; height: 44px; border-radius: 12px;
  background: var(--sage-pale); color: var(--sage-deep);
  display: inline-flex; align-items: center; justify-content: center;
}
.cta-row .label { font-size: 11.5px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-mute); }
.cta-row .val { font-size: 16px; font-weight: 700; color: var(--ink); margin-top: 2px; }

/* ============================================================
   AREAS / PILL CLOUD
   ============================================================ */
.pill-cloud { display: flex; flex-wrap: wrap; gap: var(--s-2); }
.area-pill {
  font-size: 13.5px; font-weight: 700; color: var(--ink-soft);
  background: var(--white); border: 1px solid var(--border-soft);
  padding: 9px 18px; border-radius: var(--radius-pill);
  box-shadow: var(--shadow-soft);
}
.area-pill em { font-style: italic; font-family: var(--serif); color: var(--sage); }

/* ============================================================
   TABLE (project comparisons)
   ============================================================ */
.spec-list { list-style: none; display: grid; gap: var(--s-2); font-size: 14.5px; color: var(--ink-soft); }
.spec-list li { display: flex; gap: var(--s-3); }
.spec-list .k { flex: none; width: 130px; font-weight: 700; color: var(--ink); font-size: 13px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  margin-top: var(--s-20);
  background: var(--sage-deep); color: color-mix(in srgb, var(--shell-soft) 85%, transparent);
  padding: var(--s-20) 0 var(--s-10);
}
.footer-top {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--s-12); padding-bottom: var(--s-12);
  border-bottom: 1px solid rgba(250, 247, 239, 0.15);
}
.footer .wordmark { font-family: var(--serif); font-size: 26px; color: var(--shell-soft); }
.footer .wordmark em { font-style: italic; color: var(--sand); }
.footer .tag { margin-top: var(--s-4); font-size: 14px; line-height: 1.6; max-width: 34ch; }
.footer-col h4 {
  font-size: 11px; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--sand); margin-bottom: var(--s-5);
}
.footer-col ul { list-style: none; display: grid; gap: var(--s-3); }
.footer-col a { font-size: 14.5px; transition: color 0.2s; }
.footer-col a:hover { color: var(--shell-soft); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; gap: var(--s-6);
  padding-top: var(--s-8); flex-wrap: wrap;
}
.footer-bottom .caption { color: color-mix(in srgb, var(--shell-soft) 55%, transparent); }
.footer-legal { display: flex; gap: var(--s-5); font-size: 12.5px; }

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }
.reveal.delay-1 { transition-delay: 0.12s; }
.reveal.delay-2 { transition-delay: 0.24s; }
.reveal.delay-3 { transition-delay: 0.36s; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .card, .cta-row { transition: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .nav-brand .suffix { display: none; }
}
@media (max-width: 1040px) {
  .hero-grid, .cta-grid, .band-grid { grid-template-columns: 1fr; gap: var(--s-12); }
  .card-grid, .card-grid.four { grid-template-columns: repeat(2, 1fr); }
  .pf-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .hero-photo { max-width: 560px; }
}
@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-menu > .btn { display: none; }
  .nav-menu { gap: var(--s-3); }
  .nav-brand { font-size: 19px; }
  .nav-toggle {
    display: inline-flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; border-radius: 10px; color: var(--ink);
    border: 1px solid var(--border);
  }
  .nav-menu.open .nav-links {
    display: flex; flex-direction: column; align-items: flex-start;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--shell-soft); border-bottom: 1px solid var(--border);
    padding: var(--s-6); gap: var(--s-5); box-shadow: var(--shadow-card);
  }
  .nav-inner { position: relative; }
  .hero { padding: var(--s-12) 0 var(--s-16); }
  .section { padding: var(--s-16) 0; }
  .card-grid, .card-grid.two, .card-grid.four, .notes-strip, .pf-grid { grid-template-columns: 1fr; }
  .pf-item.wide { grid-column: span 1; }
  .field-row { grid-template-columns: 1fr; }
  .band { padding: var(--s-8); }
  .step { grid-template-columns: 64px 1fr; gap: var(--s-5); }
  .step .num { font-size: 40px; }
  .footer-top { grid-template-columns: 1fr; gap: var(--s-8); }
  .form-card { padding: var(--s-6); }
  .hero-meta { gap: var(--s-6); }
}
