/* ===================================================================
   San Diego Live Printing — "Baja Coast" bespoke design system
   Laid-back coastal-conference. Ocean blue + warm sand + sun gold,
   layered wave linework, airy whitespace. Vanilla CSS, no frameworks.
   Animations: transform/opacity only, gated by prefers-reduced-motion.
   =================================================================== */

:root {
  /* Baja Coast palette */
  --deep:    #0c2a3a;   /* deep ocean / ink */
  --deep-2:  #103b50;   /* lifted ocean */
  --sea:     #1f7a9c;   /* mid sea teal-blue */
  --surf:    #2e9fc4;   /* bright surf */
  --foam:    #d8eef4;   /* sea foam tint */
  --sky:     #eef7fb;   /* hazy sky / paper */
  --sand:    #f3e7d2;   /* warm sand */
  --sand-2:  #e8d6b6;   /* deeper sand */
  --sun:     #f2a83b;   /* sun gold */
  --sun-2:   #e8842a;   /* sunset amber */
  --coral:   #ef6b53;   /* coral pop (sparing) */
  --paper:   #fbfdfe;   /* near-white card */
  --ink:     #0c2a3a;   /* body text on light */
  --muted:   #4f6b78;   /* muted slate */
  --line:    #d3e6ee;   /* hairline on light */
  --line-sand:#ddcdaf;  /* hairline on sand */
  --white:   #ffffff;

  --grad-sea:  linear-gradient(135deg, var(--surf) 0%, var(--sea) 55%, var(--deep-2) 100%);
  --grad-sun:  linear-gradient(120deg, var(--sun) 0%, var(--sun-2) 100%);
  --grad-text: linear-gradient(105deg, var(--sun) 0%, var(--coral) 100%);

  --shadow-sm: 0 2px 10px rgba(12, 42, 58, 0.06);
  --shadow:    0 14px 40px -18px rgba(12, 42, 58, 0.30);
  --shadow-lg: 0 40px 90px -36px rgba(12, 42, 58, 0.42);

  --r-sm: 12px;
  --r:    18px;
  --r-lg: 28px;
  --r-xl: 36px;

  --maxw: 1200px;
  --gut: clamp(1.1rem, 4vw, 2.4rem);

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--sky);
  line-height: 1.65;
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.075rem);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: var(--sea); text-decoration: none; }
a:hover { color: var(--sun-2); }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.06; letter-spacing: -0.012em; color: var(--deep); }
strong { font-weight: 700; color: var(--deep); }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); }

/* ---------- skip link + focus ---------- */
.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--deep); color: #fff; padding: 0.7rem 1.1rem;
  border-radius: 0 0 var(--r-sm) var(--r-sm); font-weight: 600; transition: top 0.18s var(--ease);
}
.skip-link:focus { top: 0; color: #fff; }
:focus-visible { outline: 3px solid var(--sun); outline-offset: 3px; border-radius: 4px; }

/* ---------- scroll progress ---------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 100%;
  transform: scaleX(0); transform-origin: 0 50%;
  background: var(--grad-sun); z-index: 120; will-change: transform;
}

/* ===================================================================
   BUTTONS
   =================================================================== */
.btn {
  --b-bg: var(--deep); --b-fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: var(--font-body); font-weight: 700; font-size: 0.98rem;
  line-height: 1; letter-spacing: 0.005em;
  padding: 0.92rem 1.5rem; border-radius: 999px; border: 1.5px solid transparent;
  background: var(--b-bg); color: var(--b-fg); cursor: pointer;
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease), background 0.22s var(--ease), color 0.22s var(--ease);
  position: relative; white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-lg { padding: 1.06rem 1.8rem; font-size: 1.04rem; }

.btn-accent { --b-bg: var(--sun); --b-fg: var(--deep); box-shadow: 0 12px 28px -12px rgba(232, 132, 42, 0.7); }
.btn-accent:hover { background: var(--sun-2); color: var(--deep); box-shadow: 0 18px 36px -14px rgba(232, 132, 42, 0.8); }

.btn-ghost { background: transparent; color: var(--deep); border-color: var(--line-sand); }
.btn-ghost:hover { background: var(--white); border-color: var(--sea); color: var(--deep); }

.btn-paper { background: var(--white); color: var(--deep); box-shadow: var(--shadow-sm); }
.btn-paper:hover { background: var(--sand); color: var(--deep); }

/* On dark sections, ghost buttons invert */
.hero .btn-ghost, .cta-banner .btn-ghost, .section-ink .btn-ghost {
  color: #fff; border-color: rgba(255,255,255,0.4);
}
.hero .btn-ghost:hover, .cta-banner .btn-ghost:hover { background: rgba(255,255,255,0.12); border-color: #fff; color: #fff; }

/* ===================================================================
   HEADER
   =================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251, 253, 254, 0.82);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.3s var(--ease), border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.site-header.is-stuck { box-shadow: var(--shadow-sm); border-bottom-color: var(--line); }
.header-inner { display: flex; align-items: center; gap: 1.2rem; min-height: 74px; }

.brand { display: inline-flex; align-items: center; gap: 0.7rem; color: var(--deep); }
.brand:hover { color: var(--deep); }
.brand-mark { flex: none; border-radius: 13px; box-shadow: var(--shadow-sm); }
.brand-word { display: flex; flex-direction: column; line-height: 1.02; }
.brand-word b { font-family: var(--font-display); font-weight: 600; font-size: 1.12rem; letter-spacing: -0.02em; }
.brand-word span { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); font-weight: 600; }

.site-nav { display: flex; align-items: center; gap: 1.5rem; margin-left: auto; }
.nav-list { list-style: none; display: flex; gap: 0.3rem; padding: 0; }
.nav-list a {
  display: inline-block; padding: 0.5rem 0.78rem; border-radius: 999px;
  color: var(--ink); font-weight: 600; font-size: 0.94rem;
  transition: color 0.18s var(--ease), background 0.18s var(--ease);
}
.nav-list a:hover { color: var(--deep); background: var(--foam); }

.header-phone {
  font-weight: 700; color: var(--deep); font-size: 0.94rem; white-space: nowrap;
  padding: 0.45rem 0.6rem; border-radius: 999px;
}
.header-phone:hover { color: var(--sun-2); }
.nav-cta { padding: 0.62rem 1.15rem; }

.nav-toggle {
  display: none; align-items: center; gap: 0.5rem; margin-left: auto;
  background: var(--deep); color: #fff; border: none; border-radius: 999px;
  padding: 0.55rem 0.95rem; font-weight: 700; font-size: 0.9rem; cursor: pointer; font-family: var(--font-body);
}
.nav-toggle .burger { display: inline-flex; flex-direction: column; gap: 3px; width: 16px; }
.nav-toggle .burger i { height: 2px; width: 100%; background: #fff; border-radius: 2px; transition: transform 0.25s var(--ease), opacity 0.2s; }
.nav-toggle[aria-expanded="true"] .burger i:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .burger i:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .burger i:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

@media (max-width: 920px) {
  .header-phone { display: none; }
  .nav-toggle { display: inline-flex; }
  .site-nav {
    position: fixed; inset: 74px 0 auto 0; margin: 0;
    flex-direction: column; align-items: stretch; gap: 0.3rem;
    background: var(--paper); border-bottom: 1px solid var(--line);
    padding: 1rem var(--gut) 1.6rem; box-shadow: var(--shadow);
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: transform 0.28s var(--ease), opacity 0.28s var(--ease);
  }
  .site-nav.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-list { flex-direction: column; gap: 0.1rem; }
  .nav-list a { padding: 0.8rem 0.9rem; font-size: 1.05rem; border-radius: var(--r-sm); }
  .nav-cta { margin-top: 0.6rem; text-align: center; }
}
@media (prefers-reduced-motion: reduce) {
  .site-nav { transition: none; }
  .btn, .nav-list a, .skip-link { transition: none; }
}

/* ===================================================================
   SIGNATURE: layered wave band component (reused as dividers)
   =================================================================== */
.wave-band { display: block; width: 100%; height: auto; }
.wave-band.flip { transform: scaleY(-1); }

/* ===================================================================
   HERO — layered-wave coastal hero (the showcase)
   =================================================================== */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(120% 90% at 85% -10%, rgba(46,159,196,0.55) 0%, transparent 55%),
    radial-gradient(90% 80% at 8% 0%, rgba(16,59,80,0.5) 0%, transparent 60%),
    linear-gradient(180deg, var(--deep) 0%, var(--deep-2) 60%, var(--sea) 130%);
  color: #fff;
  padding-top: clamp(2.6rem, 5vw, 4.4rem);
}
.hero-inner {
  position: relative; z-index: 3;
  display: grid; grid-template-columns: 1.04fr 0.96fr;
  gap: clamp(1.6rem, 4vw, 3.4rem); align-items: center;
  padding-bottom: clamp(5rem, 11vw, 9rem);
}

/* layered SVG wave bands sitting at the bottom of the hero */
.hero-motif {
  position: absolute; left: 0; right: 0; bottom: -1px; height: 46%;
  z-index: 2; pointer-events: none;
  background-repeat: no-repeat; background-position: bottom center; background-size: cover;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 360' preserveAspectRatio='none'%3E%3Cpath d='M0 250 C 240 200 480 320 720 280 C 960 240 1200 180 1440 230 L1440 360 L0 360 Z' fill='%231f7a9c' fill-opacity='0.35'/%3E%3Cpath d='M0 285 C 260 245 470 335 720 305 C 980 275 1210 235 1440 275 L1440 360 L0 360 Z' fill='%232e9fc4' fill-opacity='0.4'/%3E%3Cpath d='M0 318 C 240 295 500 340 760 322 C 1010 305 1220 285 1440 312 L1440 360 L0 360 Z' fill='%23eef7fb' fill-opacity='0.9'/%3E%3C/svg%3E");
}
/* fine sun-gold contour lines drifting across hero */
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none; opacity: 0.5;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1200' height='600' viewBox='0 0 1200 600'%3E%3Cg fill='none' stroke='%23f2a83b' stroke-opacity='0.18' stroke-width='1.5'%3E%3Cpath d='M-40 90 C 240 40 360 140 640 96 C 900 56 1020 120 1260 84'/%3E%3Cpath d='M-40 150 C 240 100 360 200 640 156 C 900 116 1020 180 1260 144'/%3E%3Cpath d='M-40 210 C 240 160 360 260 640 216 C 900 176 1020 240 1260 204'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 1200px 600px;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 700;
  color: var(--sand); background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16); padding: 0.4rem 0.85rem; border-radius: 999px;
  backdrop-filter: blur(6px);
}
.hero-eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--sun); box-shadow: 0 0 0 4px rgba(242,168,59,0.25); }

.hero h1 {
  color: #fff; margin-top: 1.15rem;
  font-size: clamp(2.6rem, 1.6rem + 4.6vw, 5.1rem); font-weight: 500;
  letter-spacing: -0.022em; line-height: 0.98;
}
.hero h1 .grad {
  background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent;
  font-style: italic; font-weight: 600;
}
.hero-sub {
  margin-top: 1.3rem; max-width: 35ch; color: rgba(238,247,251,0.92);
  font-size: clamp(1.04rem, 1rem + 0.4vw, 1.22rem); line-height: 1.55;
}
.hero-actions { margin-top: 1.9rem; display: flex; flex-wrap: wrap; gap: 0.8rem; }

.hero-trust {
  margin-top: 2.4rem; display: flex; flex-wrap: wrap; gap: 1.8rem;
  padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.14);
}
.hero-trust > div { display: flex; flex-direction: column; }
.hero-trust b { font-family: var(--font-display); font-weight: 600; font-size: 1.7rem; color: var(--sun); line-height: 1; }
.hero-trust span { font-size: 0.82rem; color: rgba(238,247,251,0.8); margin-top: 0.3rem; letter-spacing: 0.01em; }

/* hero media — tilted photo frame with floating badge */
.hero-media { position: relative; }
.hm-frame {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); border: 8px solid #fff;
  transform: rotate(2.2deg); aspect-ratio: 4 / 5;
  background: var(--deep-2);
}
.hm-frame img { width: 100%; height: 100%; object-fit: cover; }
.hm-frame::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(12,42,58,0.28) 100%);
}
.hero-badge {
  position: absolute; left: -14px; bottom: 24px; z-index: 4;
  background: var(--paper); color: var(--ink); border-radius: var(--r);
  padding: 0.85rem 1.05rem; box-shadow: var(--shadow); max-width: 245px;
  transform: rotate(-2.2deg); border: 1px solid var(--line);
}
.hero-badge b { display: flex; align-items: center; gap: 0.5rem; font-family: var(--font-body); font-weight: 700; font-size: 0.95rem; color: var(--deep); }
.hero-badge span { display: block; font-size: 0.82rem; color: var(--muted); margin-top: 0.25rem; line-height: 1.4; }
.live-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--coral); position: relative; flex: none; }
.live-dot::after { content: ""; position: absolute; inset: -5px; border-radius: 50%; border: 2px solid var(--coral); opacity: 0.6; animation: ping 1.8s var(--ease) infinite; }
@keyframes ping { 0% { transform: scale(0.7); opacity: 0.7; } 80%, 100% { transform: scale(1.7); opacity: 0; } }

@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2.4rem; }
  .hm-frame { transform: rotate(1.6deg); max-width: 460px; margin-inline: auto; }
  .hero-media { max-width: 520px; margin-inline: auto; width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  .hm-frame, .hero-badge { transform: none; }
  .live-dot::after { animation: none; }
}

/* ===================================================================
   MARQUEE — sandy ticker band
   =================================================================== */
.marquee {
  background: var(--sand); border-top: 1px solid var(--line-sand); border-bottom: 1px solid var(--line-sand);
  overflow: hidden; padding: 0.85rem 0; position: relative;
}
.marquee-track { display: inline-flex; align-items: center; gap: 1.4rem; white-space: nowrap; will-change: transform; animation: marq 38s linear infinite; }
.marquee-item { font-family: var(--font-display); font-style: italic; font-weight: 500; font-size: 1.04rem; color: var(--deep); }
.marquee-star { color: var(--sun-2); font-size: 0.8rem; }
@keyframes marq { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee:hover .marquee-track { animation-play-state: paused; }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; transform: none; } }

/* ===================================================================
   SECTIONS / shared headings
   =================================================================== */
.section { padding: clamp(3.6rem, 8vw, 6.6rem) 0; }
.section-alt { background: var(--white); position: relative; }
.section-alt::before, .section-alt::after {
  content: ""; position: absolute; left: 0; right: 0; height: 40px; pointer-events: none;
  background-repeat: no-repeat; background-size: 100% 100%;
}
/* sand-to-white & white-to-sand wave seams */
.section-alt::before {
  top: -1px;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 40' preserveAspectRatio='none'%3E%3Cpath d='M0 0 C 360 40 1080 40 1440 0 L1440 40 L0 40 Z' fill='%23ffffff'/%3E%3C/svg%3E");
}
.section-alt::after {
  bottom: -1px;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 40' preserveAspectRatio='none'%3E%3Cpath d='M0 40 C 360 0 1080 0 1440 40 L1440 40 L0 40 Z' fill='%23ffffff'/%3E%3C/svg%3E");
}

.section-head { max-width: 56rem; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .kicker { justify-content: center; }

.kicker {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.76rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 700;
  color: var(--sea); margin-bottom: 0.9rem;
}
.kicker .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--sun); }

.section-title { font-size: clamp(1.9rem, 1.3rem + 2.6vw, 3.1rem); font-weight: 500; letter-spacing: -0.02em; }
.section-lede { margin-top: 1rem; color: var(--muted); font-size: 1.1rem; max-width: 52ch; }
.section-head.center .section-lede { margin-inline: auto; }
.hl {
  background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent;
  font-style: italic; font-weight: 600;
}

/* ===================================================================
   STEPS — "how it works" coastal numbered path
   =================================================================== */
.steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem;
  counter-reset: step; position: relative;
}
.step-card {
  position: relative; background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--r); padding: 2.6rem 1.4rem 1.5rem; box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.step-card::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  position: absolute; top: 1.1rem; left: 1.4rem;
  font-family: var(--font-display); font-weight: 600; font-size: 1.05rem;
  color: var(--deep); background: var(--sand); width: 2.2rem; height: 2.2rem;
  display: grid; place-items: center; border-radius: 50%;
}
.step-card::after {
  content: ""; position: absolute; top: 1.1rem; right: 1.3rem; width: 26px; height: 26px;
  background: no-repeat center/contain url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231f7a9c' stroke-width='1.6' stroke-linecap='round'%3E%3Cpath d='M3 12 C 7 8 9 16 13 12 C 16 9 18 13 21 11'/%3E%3C/svg%3E");
  opacity: 0.7;
}
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.step-card h3 { font-size: 1.16rem; font-weight: 600; margin-bottom: 0.45rem; }
.step-card p { color: var(--muted); font-size: 0.96rem; }
@media (max-width: 880px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .steps { grid-template-columns: 1fr; } }
@media (prefers-reduced-motion: reduce) { .step-card:hover { transform: none; } }

/* ===================================================================
   CARD GRID — services + occasions
   =================================================================== */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
@media (max-width: 900px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .card-grid { grid-template-columns: 1fr; } }

/* service cards */
.svc-card {
  display: flex; flex-direction: column; gap: 0.55rem;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r);
  padding: 1.7rem 1.5rem; color: var(--ink); box-shadow: var(--shadow-sm);
  position: relative; overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.svc-card::before {
  content: ""; position: absolute; inset: auto -30% -55% auto; width: 70%; height: 70%;
  background: radial-gradient(circle, rgba(46,159,196,0.12), transparent 70%);
  transition: transform 0.5s var(--ease);
}
.svc-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--surf); color: var(--ink); }
.svc-card:hover::before { transform: translate(-20%, -20%); }
.svc-icon {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--foam), #fff); color: var(--sea);
  border: 1px solid var(--line); margin-bottom: 0.4rem;
}
.svc-icon svg { width: 26px; height: 26px; }
.svc-card h3 { font-size: 1.22rem; font-weight: 600; }
.svc-card p { color: var(--muted); font-size: 0.95rem; flex: 1; }
.go {
  margin-top: 0.5rem; font-weight: 700; font-size: 0.9rem; color: var(--sun-2);
  display: inline-flex; align-items: center; gap: 0.4rem;
}
.svc-card:hover .go span[aria-hidden], .occasion-card:hover .occasion-go { transform: translateX(4px); }
.go span[aria-hidden] { transition: transform 0.25s var(--ease); }

/* occasion cards — photo tiles */
.occasion-card {
  position: relative; display: block; border-radius: var(--r); overflow: hidden;
  aspect-ratio: 4 / 3; box-shadow: var(--shadow-sm); color: #fff; isolation: isolate;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.occasion-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.occasion-card .ov {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(12,42,58,0.05) 0%, rgba(12,42,58,0.18) 38%, rgba(12,42,58,0.82) 100%);
}
.occasion-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); color: #fff; }
.occasion-card:hover img { transform: scale(1.06); }
.occasion-body { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 1.3rem 1.3rem 1.2rem; display: flex; flex-direction: column; gap: 0.18rem; }
.occasion-title { font-family: var(--font-display); font-weight: 600; font-size: 1.2rem; letter-spacing: -0.01em; }
.occasion-line { font-size: 0.9rem; color: rgba(255,255,255,0.86); }
.occasion-go { margin-top: 0.45rem; font-weight: 700; font-size: 0.86rem; color: var(--sand); display: inline-flex; transition: transform 0.25s var(--ease); }
@media (prefers-reduced-motion: reduce) {
  .svc-card:hover, .occasion-card:hover { transform: none; }
  .occasion-card:hover img { transform: none; }
}

/* ===================================================================
   SPLIT — "convention to coast" signature section
   =================================================================== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.8rem, 4vw, 3.4rem); align-items: center; }
.split-media { position: relative; }
.split-media img {
  width: 100%; border-radius: var(--r-lg); box-shadow: var(--shadow);
  aspect-ratio: 5 / 4; object-fit: cover; border: 7px solid #fff;
}
.split-copy h2 { font-size: clamp(1.7rem, 1.2rem + 2.2vw, 2.7rem); font-weight: 500; }
.split-copy > p { margin-top: 1rem; color: var(--muted); font-size: 1.06rem; }
.checklist { list-style: none; padding: 0; margin: 1.5rem 0 0; display: grid; gap: 0.7rem; }
.checklist li { position: relative; padding-left: 2.1rem; color: var(--ink); font-weight: 500; }
.checklist li::before {
  content: ""; position: absolute; left: 0; top: 2px; width: 1.4rem; height: 1.4rem; border-radius: 50%;
  background: var(--grad-sun) no-repeat center;
  -webkit-mask: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='12'/%3E%3C/svg%3E");
}
.checklist li::after {
  content: ""; position: absolute; left: 0.38rem; top: 0.5rem; width: 0.66rem; height: 0.38rem;
  border-left: 2.4px solid #fff; border-bottom: 2.4px solid #fff; transform: rotate(-45deg);
}
.mt-2 { margin-top: 1.6rem; }
@media (max-width: 820px) { .split { grid-template-columns: 1fr; } .split-media { order: -1; } }

/* ===================================================================
   STATS — deep ocean band
   =================================================================== */
.section-ink {
  position: relative; color: #fff; overflow: hidden;
  background:
    radial-gradient(90% 120% at 12% 10%, rgba(46,159,196,0.4), transparent 55%),
    linear-gradient(135deg, var(--deep) 0%, var(--deep-2) 55%, var(--sea) 130%);
}
.section-ink::after {
  content: ""; position: absolute; inset: 0; opacity: 0.4; pointer-events: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1200' height='400' viewBox='0 0 1200 400'%3E%3Cg fill='none' stroke='%23f2a83b' stroke-opacity='0.12' stroke-width='1.4'%3E%3Cpath d='M-20 120 C 260 80 380 170 660 126 C 920 86 1040 150 1280 114'/%3E%3Cpath d='M-20 200 C 260 160 380 250 660 206 C 920 166 1040 230 1280 194'/%3E%3Cpath d='M-20 280 C 260 240 380 330 660 286 C 920 246 1040 310 1280 274'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 1200px 400px;
}
.stats { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; text-align: center; }
.stat b { display: block; font-family: var(--font-display); font-weight: 600; font-size: clamp(2.4rem, 1.6rem + 3vw, 3.6rem); color: var(--sun); line-height: 1; }
.stat span { display: block; margin-top: 0.5rem; color: rgba(238,247,251,0.85); font-size: 0.92rem; }
@media (max-width: 720px) { .stats { grid-template-columns: repeat(2, 1fr); gap: 2rem 1.4rem; } }

/* ===================================================================
   GALLERY — coastal mosaic
   =================================================================== */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 0.9rem; }
.gallery-item {
  position: relative; overflow: hidden; border-radius: var(--r);
  box-shadow: var(--shadow-sm); grid-column: span 1; grid-row: span 1; margin: 0;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.gallery-item.wide { grid-column: span 2; }
.gallery-item.tall { grid-row: span 2; }
.gallery-item figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 1.5rem 1rem 0.85rem; font-size: 0.86rem; font-weight: 600; color: #fff;
  background: linear-gradient(180deg, transparent, rgba(12,42,58,0.78));
  opacity: 0; transform: translateY(8px); transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item:hover figcaption { opacity: 1; transform: translateY(0); }
@media (max-width: 760px) {
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .gallery-item.wide { grid-column: span 2; }
  .gallery-item.tall { grid-row: span 1; }
  .gallery-item figcaption { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) { .gallery-item:hover img { transform: none; } }

/* ===================================================================
   CHIPS
   =================================================================== */
.chip-row { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 0.6rem; }
.chip {
  display: inline-flex; align-items: center; padding: 0.5rem 0.95rem; border-radius: 999px;
  background: var(--white); border: 1px solid var(--line); color: var(--deep);
  font-size: 0.88rem; font-weight: 600; transition: transform 0.2s var(--ease), border-color 0.2s var(--ease), background 0.2s var(--ease);
}
a.chip:hover { border-color: var(--surf); background: var(--foam); color: var(--deep); transform: translateY(-2px); }
@media (prefers-reduced-motion: reduce) { a.chip:hover { transform: none; } }

/* ===================================================================
   FAQ accordion
   =================================================================== */
.faq-list { max-width: 50rem; margin-inline: auto; display: grid; gap: 0.7rem; }
.faq-item { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease); }
.faq-item.is-open { border-color: var(--surf); box-shadow: var(--shadow-sm); }
.faq-h { margin: 0; }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  background: none; border: none; cursor: pointer; text-align: left;
  font-family: var(--font-display); font-weight: 600; font-size: 1.06rem; color: var(--deep);
  padding: 1.15rem 1.3rem; line-height: 1.3;
}
.faq-q:hover { color: var(--sea); }
.faq-icon {
  flex: none; width: 28px; height: 28px; border-radius: 50%; background: var(--sand); color: var(--deep);
  display: grid; place-items: center; font-size: 1.2rem; font-weight: 400; line-height: 1; font-family: var(--font-body);
  transition: transform 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease);
}
.faq-item.is-open .faq-icon { transform: rotate(45deg); background: var(--sun); }
.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.32s var(--ease); }
.faq-item.is-open .faq-a { grid-template-rows: 1fr; }
.faq-a-inner { overflow: hidden; }
.faq-a-inner p { padding: 0 1.3rem 1.25rem; color: var(--muted); margin: 0; }
@media (prefers-reduced-motion: reduce) { .faq-a { transition: none; } .faq-icon { transition: none; } }

/* ===================================================================
   QUOTE SECTION + LEAD FORM
   =================================================================== */
.quote-section {
  position: relative; overflow: hidden; color: #fff;
  padding: clamp(3.6rem, 8vw, 6rem) 0;
  background:
    radial-gradient(85% 120% at 90% 0%, rgba(46,159,196,0.45), transparent 55%),
    linear-gradient(140deg, var(--deep) 0%, var(--deep-2) 60%, var(--sea) 135%);
}
.quote-section::before {
  content: ""; position: absolute; inset: 0; opacity: 0.45; pointer-events: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1200' height='600' viewBox='0 0 1200 600'%3E%3Cg fill='none' stroke='%23f2a83b' stroke-opacity='0.12' stroke-width='1.4'%3E%3Cpath d='M-20 150 C 260 110 380 200 660 156 C 920 116 1040 180 1280 144'/%3E%3Cpath d='M-20 250 C 260 210 380 300 660 256 C 920 216 1040 280 1280 244'/%3E%3Cpath d='M-20 350 C 260 310 380 400 660 356 C 920 316 1040 380 1280 344'/%3E%3Cpath d='M-20 450 C 260 410 380 500 660 456 C 920 416 1040 480 1280 444'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 1200px 600px;
}
.quote-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(1.8rem, 4vw, 3.4rem); align-items: start; }
.quote-pitch .kicker { color: var(--sand); }
.quote-pitch .section-title { color: #fff; }
.quote-lede { margin-top: 1rem; color: rgba(238,247,251,0.9); font-size: 1.08rem; max-width: 42ch; }
.quote-points { list-style: none; padding: 0; margin: 1.6rem 0 0; display: grid; gap: 0.75rem; }
.quote-points li { position: relative; padding-left: 1.9rem; color: rgba(238,247,251,0.95); font-size: 0.98rem; }
.quote-points li::before {
  content: ""; position: absolute; left: 0; top: 0.5em; width: 0.8rem; height: 0.8rem; border-radius: 50%;
  background: var(--sun); box-shadow: 0 0 0 4px rgba(242,168,59,0.2);
}
.quote-direct { margin-top: 1.8rem; color: rgba(238,247,251,0.85); font-size: 0.95rem; line-height: 1.8; }
.quote-direct a { color: #fff; font-weight: 600; }
.quote-tel { font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; color: var(--sun) !important; }
.quote-direct a:hover { color: var(--sun); }

.quote-card { background: var(--paper); border-radius: var(--r-lg); box-shadow: var(--shadow-lg); padding: clamp(1.5rem, 3vw, 2.3rem); border: 1px solid var(--line); }
.quote-card-head { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; margin-bottom: 1.4rem; padding-bottom: 1rem; border-bottom: 1px solid var(--line); }
.qc-title { font-family: var(--font-display); font-weight: 600; font-size: 1.3rem; color: var(--deep); }
.qc-city { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--sea); background: var(--foam); padding: 0.3rem 0.7rem; border-radius: 999px; }

.lead-form { display: grid; gap: 0.9rem; }
.hp-field { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; opacity: 0; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }
@media (max-width: 480px) { .field-row { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 0.35rem; }
.field label { font-size: 0.82rem; font-weight: 700; color: var(--deep); letter-spacing: 0.01em; }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: 0.98rem; color: var(--ink);
  padding: 0.72rem 0.85rem; border: 1.5px solid var(--line); border-radius: var(--r-sm);
  background: var(--white); width: 100%; transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.field textarea { resize: vertical; min-height: 84px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--surf); box-shadow: 0 0 0 3px rgba(46,159,196,0.16);
}
.field input::placeholder, .field textarea::placeholder { color: #93a8b2; }

.details-toggle {
  justify-self: start; background: none; border: none; cursor: pointer; font-family: var(--font-body);
  color: var(--sea); font-weight: 700; font-size: 0.9rem; padding: 0.2rem 0;
  display: inline-flex; align-items: center; gap: 0.4rem;
}
.details-toggle:hover { color: var(--sun-2); }
.details-toggle span { transition: transform 0.25s var(--ease); display: inline-block; }
.details-toggle[aria-expanded="true"] span { transform: rotate(45deg); }
.extra-fields { display: grid; gap: 0.9rem; }
.extra-fields[hidden] { display: none; }

.form-submit { width: 100%; margin-top: 0.4rem; }
.form-note { font-size: 0.84rem; color: var(--muted); text-align: center; margin-top: 0.2rem; }
.lead-form.is-success .form-submit { background: var(--sea); color: #fff; box-shadow: none; }

@media (max-width: 820px) { .quote-grid { grid-template-columns: 1fr; } }
@media (prefers-reduced-motion: reduce) { .field input, .field select, .field textarea, .details-toggle span { transition: none; } }

/* ===================================================================
   INTERIOR PAGES — title band + article
   =================================================================== */
.title-band {
  position: relative; overflow: hidden; color: #fff;
  background:
    radial-gradient(90% 130% at 88% -20%, rgba(46,159,196,0.5), transparent 55%),
    linear-gradient(135deg, var(--deep) 0%, var(--deep-2) 70%, var(--sea) 140%);
  padding: clamp(2.4rem, 5vw, 3.8rem) 0 clamp(3.6rem, 7vw, 5.4rem);
}
.title-band .kicker { color: var(--sand); }
.band-motif {
  position: absolute; left: 0; right: 0; bottom: -1px; height: 54px; pointer-events: none;
  background: no-repeat bottom center / cover url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 54' preserveAspectRatio='none'%3E%3Cpath d='M0 30 C 300 8 520 44 760 30 C 1010 16 1200 4 1440 26 L1440 54 L0 54 Z' fill='%23eef7fb' fill-opacity='0.18'/%3E%3Cpath d='M0 40 C 320 20 540 52 780 40 C 1020 28 1220 18 1440 38 L1440 54 L0 54 Z' fill='%23eef7fb'/%3E%3C/svg%3E");
}
.band-motif + div, .title-band .container { position: relative; z-index: 1; }
.breadcrumb { margin-bottom: 1rem; }
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: 0.45rem; padding: 0; font-size: 0.84rem; }
.breadcrumb li { display: flex; align-items: center; gap: 0.45rem; color: rgba(238,247,251,0.7); }
.breadcrumb li:not(:last-child)::after { content: "›"; color: rgba(238,247,251,0.5); }
.breadcrumb a { color: rgba(238,247,251,0.9); font-weight: 600; }
.breadcrumb a:hover { color: var(--sun); }
.breadcrumb li[aria-current] { color: var(--sand); font-weight: 600; }
.page-title { color: #fff; font-size: clamp(2rem, 1.4rem + 2.8vw, 3.3rem); font-weight: 500; }
.page-lede { margin-top: 0.9rem; color: rgba(238,247,251,0.92); font-size: 1.12rem; max-width: 56ch; }

.article { max-width: 50rem; padding-top: clamp(2.4rem, 5vw, 3.6rem); padding-bottom: clamp(1.6rem, 3vw, 2.4rem); }
.article > p { margin-bottom: 1.15rem; color: var(--ink); font-size: 1.06rem; line-height: 1.72; }
.lead-para { font-size: 1.2rem !important; line-height: 1.6 !important; color: var(--deep) !important; }
.lead-para strong { color: var(--sun-2); }
.article h2 { font-size: clamp(1.45rem, 1.1rem + 1.6vw, 2.05rem); font-weight: 500; margin: 2.2rem 0 0.9rem; }
.article ul { margin: 0 0 1.3rem; padding-left: 0; list-style: none; display: grid; gap: 0.6rem; }
.article ul li { position: relative; padding-left: 1.7rem; color: var(--ink); line-height: 1.6; }
.article ul li::before {
  content: ""; position: absolute; left: 0; top: 0.62em; width: 0.62rem; height: 0.62rem; border-radius: 2px 50% 50% 50%;
  background: var(--grad-sun); transform: rotate(45deg);
}
.article a { font-weight: 600; border-bottom: 1.5px solid rgba(46,159,196,0.3); }
.article a:hover { border-bottom-color: var(--sun-2); }

.callout {
  background: linear-gradient(135deg, var(--sand) 0%, var(--sand-2) 120%);
  border: 1px solid var(--line-sand); border-left: 4px solid var(--sun);
  border-radius: var(--r); padding: 1.2rem 1.4rem; margin: 1.6rem 0;
}
.callout p { margin: 0; color: var(--deep); font-size: 1rem; }
.callout strong { color: var(--sun-2); }

/* blog post hero image */
.post-hero { margin: 0 0 1.8rem; }
.post-hero img { width: 100%; height: auto; aspect-ratio: 3 / 2; object-fit: cover; border-radius: var(--r); box-shadow: var(--shadow); display: block; }

/* pricing table */
.ptable { width: 100%; border-collapse: collapse; margin: 1.2rem 0 1.6rem; font-size: 0.98rem; }
.ptable th, .ptable td { text-align: left; padding: 0.85rem 1rem; border-bottom: 1px solid var(--line); vertical-align: top; }
.ptable thead th { background: var(--deep); color: #fff; font-family: var(--font-body); font-weight: 700; font-size: 0.82rem; letter-spacing: 0.06em; text-transform: uppercase; }
.ptable thead th:first-child { border-radius: var(--r-sm) 0 0 0; }
.ptable thead th:last-child { border-radius: 0 var(--r-sm) 0 0; }
.ptable tbody tr:nth-child(even) { background: var(--foam); }
.ptable td:first-child { width: 32%; }
.ptable td strong { color: var(--deep); }

.sibling-links { margin-top: 2.4rem; padding-top: 1.6rem; border-top: 1px solid var(--line); }
.sibling-head { font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 700; color: var(--muted); margin-bottom: 0.8rem; }

/* area / answer cards */
.area-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
@media (max-width: 900px) { .area-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .area-grid { grid-template-columns: 1fr; } }
.area-card {
  display: flex; flex-direction: column; gap: 0.5rem; background: var(--paper);
  border: 1px solid var(--line); border-radius: var(--r); padding: 1.5rem 1.4rem;
  color: var(--ink); box-shadow: var(--shadow-sm); position: relative;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.area-card::after {
  content: ""; position: absolute; left: 1.4rem; top: 1.5rem; width: 28px; height: 4px; border-radius: 2px;
  background: var(--grad-sun); transition: width 0.3s var(--ease);
}
.area-card h3 { font-size: 1.18rem; font-weight: 600; margin-top: 0.9rem; }
.area-card p { color: var(--muted); font-size: 0.95rem; flex: 1; }
.area-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--surf); color: var(--ink); }
.area-card:hover::after { width: 46px; }
@media (prefers-reduced-motion: reduce) { .area-card:hover { transform: none; } }

/* ===================================================================
   CTA BANNER (interior)
   =================================================================== */
.cta-banner-wrap { padding-top: clamp(1rem, 3vw, 2rem); padding-bottom: clamp(3.4rem, 7vw, 5.6rem); }
.cta-banner {
  position: relative; overflow: hidden; text-align: center; color: #fff;
  border-radius: var(--r-xl); padding: clamp(2.4rem, 5vw, 3.8rem) clamp(1.4rem, 4vw, 3rem);
  background:
    radial-gradient(80% 140% at 85% 0%, rgba(46,159,196,0.5), transparent 55%),
    linear-gradient(135deg, var(--deep) 0%, var(--deep-2) 60%, var(--sea) 135%);
  box-shadow: var(--shadow);
}
.cta-motif {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.5;
  background: no-repeat bottom / 100% auto url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 220' preserveAspectRatio='none'%3E%3Cg fill='none' stroke='%23f2a83b' stroke-opacity='0.18' stroke-width='1.5'%3E%3Cpath d='M-20 120 C 300 80 520 160 760 120 C 1010 80 1200 140 1460 104'/%3E%3Cpath d='M-20 160 C 300 120 520 200 760 160 C 1010 120 1200 180 1460 144'/%3E%3C/g%3E%3C/svg%3E");
}
.cta-title { position: relative; z-index: 1; color: #fff; font-size: clamp(1.6rem, 1.2rem + 2vw, 2.5rem); font-weight: 500; }
.cta-sub { position: relative; z-index: 1; margin-top: 0.8rem; color: rgba(238,247,251,0.9); font-size: 1.08rem; }
.cta-actions { position: relative; z-index: 1; margin-top: 1.7rem; display: flex; flex-wrap: wrap; gap: 0.9rem; justify-content: center; align-items: center; }
.cta-tel { color: #fff; font-weight: 600; }
.cta-tel:hover { color: var(--sun); }

.muted { color: var(--muted); }

/* ===================================================================
   FOOTER
   =================================================================== */
.site-footer { background: var(--deep); color: rgba(238,247,251,0.78); padding-top: clamp(3rem, 6vw, 4.4rem); position: relative; }
.site-footer::before {
  content: ""; position: absolute; top: -1px; left: 0; right: 0; height: 34px; pointer-events: none;
  background: no-repeat top center / cover url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 34' preserveAspectRatio='none'%3E%3Cpath d='M0 0 C 300 26 540 -8 780 8 C 1020 24 1220 30 1440 6 L1440 0 Z' fill='%230c2a3a'/%3E%3C/svg%3E");
  transform: translateY(-33px);
}
.footer-grid { display: grid; grid-template-columns: 1.6fr repeat(4, 1fr); gap: 2rem; padding-bottom: 2.6rem; }
.footer-brand .brand-mark { margin-bottom: 0.9rem; }
.footer-name { font-family: var(--font-display); font-weight: 600; font-size: 1.35rem; color: #fff; line-height: 1.05; }
.footer-blurb { margin-top: 0.8rem; font-size: 0.92rem; line-height: 1.6; max-width: 32ch; }
.footer-contact { font-style: normal; margin-top: 1.1rem; font-size: 0.92rem; line-height: 1.85; }
.footer-contact a { color: var(--sand); font-weight: 600; }
.footer-contact a:hover { color: var(--sun); }
.footer-contact span { color: rgba(238,247,251,0.6); }
.footer-head { font-size: 0.74rem; letter-spacing: 0.13em; text-transform: uppercase; font-weight: 700; color: var(--sun); margin-bottom: 0.9rem; }
.footer-col ul { list-style: none; padding: 0; display: grid; gap: 0.5rem; }
.footer-col a { color: rgba(238,247,251,0.8); font-size: 0.92rem; }
.footer-col a:hover { color: #fff; }

.family-row { border-top: 1px solid rgba(255,255,255,0.12); padding-top: 1.6rem; margin-top: 0.4rem; }
.family-row ul { list-style: none; padding: 0; margin-top: 0.4rem; display: flex; flex-wrap: wrap; gap: 0.5rem 1.3rem; }
.family-row a { color: rgba(238,247,251,0.72); font-size: 0.88rem; }
.family-row a:hover { color: var(--sand); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); margin-top: 1.6rem; padding: 1.4rem 0 2rem; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.6rem; font-size: 0.84rem; color: rgba(238,247,251,0.55); }

@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.8rem; } .footer-brand { grid-column: 1 / -1; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }

/* ===================================================================
   REVEAL ANIMATIONS
   =================================================================== */
.reveal-pending { opacity: 0; transform: translateY(22px); }
.is-inview { opacity: 1; transform: none; transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
@media (prefers-reduced-motion: reduce) {
  .reveal-pending { opacity: 1 !important; transform: none !important; }
  .is-inview { transition: none; }
}
