/* Deer Creek Canine site stylesheet.
 * Color: deep forest green primary, warm cream neutral, charcoal text, amber accent.
 * Type: Fraunces (display) + Inter (body).
 * Mobile-first.
 */

:root {
  --c-bg: #f7f3ec;
  --c-bg-alt: #efe9dc;
  --c-surface: #ffffff;
  --c-text: #1c1f1d;
  --c-text-muted: #4f5a55;
  --c-text-soft: #6e7a74;
  --c-accent: #1f3a2c;
  --c-accent-2: #2d5440;
  --c-accent-3: #3f6b54;
  --c-amber: #d6932b;
  --c-amber-2: #b97a1d;
  --c-line: #d8d1c1;
  --c-line-soft: #e6dfcf;
  --c-error: #b3261e;
  --c-success: #2d6a4f;
  --c-dark: #14241c;
  --c-dark-2: #1c3327;
  --shadow-sm: 0 1px 2px rgba(20, 36, 28, 0.06);
  --shadow-md: 0 6px 18px -8px rgba(20, 36, 28, 0.18);
  --shadow-lg: 0 24px 64px -32px rgba(20, 36, 28, 0.32);
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;
  --r-xl: 24px;
  --container: 1200px;
  --pad: clamp(16px, 4vw, 32px);
  --gap: clamp(16px, 3vw, 28px);
  --gap-lg: clamp(28px, 5vw, 56px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; overflow-x: hidden; max-width: 100vw; }
body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--c-text);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, picture, svg { display: block; max-width: 100%; height: auto; }
a { color: var(--c-accent-2); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4, h5 {
  font-family: 'Fraunces', 'Iowan Old Style', Georgia, serif;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--c-text);
  margin: 0 0 0.5em;
}
h1 { font-size: clamp(2rem, 4.4vw, 3.4rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.4rem); }
h3 { font-size: clamp(1.15rem, 1.6vw, 1.35rem); }
h4 { font-size: 1.05rem; }
p { margin: 0 0 1rem; color: var(--c-text); }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.2rem); color: var(--c-text-muted); line-height: 1.55; }
ul { padding-left: 1.2em; margin: 0 0 1rem; }
li { margin-bottom: 0.4em; }

.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--c-accent-3);
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  margin-bottom: 0.6em;
}
.eyebrow.on-dark, .on-dark .eyebrow { color: var(--c-amber); }

/* ===== Top call strip ===== */
.top-call-strip {
  display: none;
  background: var(--c-dark);
  color: #fff;
  padding: 8px 16px;
  font-weight: 600;
  font-size: 0.9rem;
  text-align: center;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
}
.top-call-strip:hover { color: var(--c-amber); text-decoration: none; }
/* top-call-strip hidden at all viewports; phone CTA is in the nav */

/* ===== Nav ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(247, 243, 236, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--c-line-soft);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 12px var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.nav-brand { display: flex; align-items: center; gap: 12px; color: var(--c-text); }
.nav-brand:hover { text-decoration: none; }
.nav-logo { width: 48px; height: 48px; aspect-ratio: 1 / 1; object-fit: contain; flex-shrink: 0; }
.nav-wordmark { display: flex; flex-direction: column; line-height: 1; }
.nav-wordmark { font-family: 'Fraunces', serif; font-size: 1.1rem; font-weight: 700; color: var(--c-accent); }
.nav-wordmark-sub { font-family: 'Inter', sans-serif; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--c-text-soft); margin-top: 4px; }
.nav-links { display: flex; gap: 22px; align-items: center; }
.nav-links a {
  color: var(--c-text);
  font-size: 0.92rem;
  font-weight: 500;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}
.nav-links a:hover, .nav-links a[aria-current] { color: var(--c-accent); border-bottom-color: var(--c-accent); text-decoration: none; }
.nav-right { display: flex; gap: 10px; align-items: center; }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--c-accent);
  color: #fff;
  padding: 9px 16px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.88rem;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--c-dark-2); color: #fff; text-decoration: none; }
.nav-cta-secondary { background: transparent; color: var(--c-accent); border: 1.5px solid var(--c-accent); }
.nav-cta-secondary:hover { background: var(--c-accent); color: #fff; }
.nav-burger {
  display: none;
  background: transparent;
  border: 1px solid var(--c-line);
  border-radius: var(--r-sm);
  padding: 8px;
  color: var(--c-text);
  cursor: pointer;
}
.nav-burger-close { display: none; }
.nav-burger[aria-expanded="true"] .nav-burger-open { display: none; }
.nav-burger[aria-expanded="true"] .nav-burger-close { display: inline-flex; }
.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--c-surface);
  border-top: 1px solid var(--c-line-soft);
  padding: 16px var(--pad);
  gap: 12px;
}
.nav-mobile nav { display: flex; flex-direction: column; gap: 4px; }
.nav-mobile a {
  padding: 12px 14px;
  border-radius: var(--r-md);
  color: var(--c-text);
  font-weight: 500;
  font-size: 1rem;
}
.nav-mobile a:hover, .nav-mobile a[aria-current] { background: var(--c-bg-alt); color: var(--c-accent); text-decoration: none; }
.nav-mobile-reserve { background: transparent; color: var(--c-accent) !important; border: 1.5px solid var(--c-accent); text-align: center; }
.nav-mobile-cta {
  background: var(--c-accent);
  color: #fff !important;
  padding: 14px 16px;
  border-radius: var(--r-md);
  text-align: center;
  font-weight: 700;
  font-size: 1rem;
}
.nav-mobile-cta:hover { background: var(--c-dark-2); text-decoration: none; }

@media (max-width: 980px) {
  .nav-links { display: none; }
  .nav-cta-secondary { display: none; }
  .nav-burger { display: inline-flex; }
}
@media (max-width: 700px) {
  .nav-cta span { display: none; }
  .nav-cta { padding: 9px 12px; }
  .nav-wordmark { font-size: 1rem; }
}
.nav-mobile:not([hidden]) { display: flex; }

/* ===== Nav dropdown ===== */
.nav-has-dropdown { position: relative; display: inline-flex; align-items: center; }
.nav-has-dropdown > button {
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 6px 0;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--c-text);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-family: inherit;
  line-height: inherit;
}
.nav-has-dropdown > button:hover,
.nav-has-dropdown.is-open > button { color: var(--c-accent); border-bottom-color: var(--c-accent); }
.nav-dropdown-panel {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--c-surface);
  border: 1px solid var(--c-line-soft);
  border-radius: var(--r-md);
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
  min-width: 182px;
  display: flex;
  flex-direction: column;
  padding: 6px;
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity .15s ease, transform .15s ease;
}
.nav-has-dropdown.is-open .nav-dropdown-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-panel a {
  padding: 9px 14px;
  border-radius: var(--r-sm);
  color: var(--c-text);
  font-size: 0.9rem;
  font-weight: 500;
  white-space: nowrap;
  display: block;
  border-bottom: none;
}
.nav-dropdown-panel a:hover,
.nav-dropdown-panel a[aria-current] { background: var(--c-bg-alt); color: var(--c-accent); text-decoration: none; }
body.has-glass-nav .nav-has-dropdown > button {
  font-size: 0.82rem;
  border-bottom: 0;
  padding: 6px 4px;
  color: var(--c-text-muted);
}
body.has-glass-nav .nav-has-dropdown > button:hover,
body.has-glass-nav .nav-has-dropdown.is-open > button { color: var(--c-accent); border-bottom: 0; }
/* Mobile Training sub-items */
.nav-mobile-subnav { display: flex; flex-direction: column; gap: 0; margin-top: -4px; margin-bottom: 4px; }
.nav-mobile-subnav a { padding: 9px 14px 9px 32px; font-size: 0.9rem; color: var(--c-text-muted); }
.nav-mobile-subnav a:hover,
.nav-mobile-subnav a[aria-current] { background: var(--c-bg-alt); color: var(--c-accent); text-decoration: none; }

/* ===== Buttons / CTAs (paw outline, coastline-vibe) ===== */
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.86rem;
  padding: 14px 26px;
  width: max-content;
  max-width: 100%;
  border-radius: 999px;
  cursor: pointer;
  transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.15s ease;
  border: 1.5px solid var(--c-accent);
  background: transparent;
  color: var(--c-accent);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  text-align: center;
  line-height: 1.1;
}
.cta:hover {
  background: var(--c-accent);
  color: var(--c-bg);
  border-color: var(--c-accent);
  text-decoration: none;
  transform: translateY(-1px);
}
.cta:focus-visible {
  outline: 2px solid var(--c-amber);
  outline-offset: 3px;
}
.cta-primary { border-color: var(--c-accent); color: var(--c-accent); background: transparent; }
.cta-primary:hover { background: var(--c-accent); color: var(--c-bg); border-color: var(--c-accent); }
.cta-secondary { border-color: var(--c-accent); color: var(--c-accent); background: transparent; }
.cta-secondary:hover { background: var(--c-accent); color: var(--c-bg); }
.cta-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,0.55); }
.cta-ghost:hover { background: #fff; color: var(--c-accent); border-color: #fff; }
.cta-link { border-color: transparent; color: var(--c-accent); padding: 12px 8px; text-transform: none; letter-spacing: 0; }
.cta-link:hover { background: transparent; color: var(--c-dark-2); border-color: transparent; transform: none; text-decoration: underline; }
.cta-large { font-size: 0.95rem; padding: 17px 32px; letter-spacing: 0.16em; }
.cta-block { display: flex; width: 100%; }
.cta svg { flex-shrink: 0; }
.cta-paw { width: 22px; height: 22px; }
.cta-large .cta-paw { width: 26px; height: 26px; }
@media (max-width: 700px) {
  .cta { font-size: 14.5px; padding: 0.85rem 1.5rem; letter-spacing: 0.10em; }
  .cta-large { width: max-content; max-width: 100%; font-size: 15.5px; padding: 0.95rem 1.5rem; letter-spacing: 0.08em; }
  .cta-paw { width: 18px; height: 18px; }
  .cta-large .cta-paw { width: 18px; height: 18px; }
}

/* On dark hero / final-cta backgrounds, the outline must be cream so it reads against the scrim. */
.dcc-hero .cta-primary,
.dcc-hero .cta-large,
.final-cta .cta-primary,
.final-cta .cta-large,
.hero .cta-primary {
  border-color: var(--c-bg);
  color: var(--c-bg);
  background: transparent;
}
.dcc-hero .cta-primary:hover,
.dcc-hero .cta-large:hover,
.final-cta .cta-primary:hover,
.final-cta .cta-large:hover,
.hero .cta-primary:hover {
  background: var(--c-bg);
  color: var(--c-accent);
  border-color: var(--c-bg);
}

/* ===== Trust strip ===== */
.trust-strip {
  background: var(--c-dark);
  color: #fff;
  padding: 22px var(--pad);
}
.trust-strip-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.trust-rating { display: flex; align-items: center; gap: 10px; }
.trust-stars { display: inline-flex; gap: 2px; color: var(--c-amber); }
.trust-rating strong { font-family: 'Fraunces', serif; font-size: 1.5rem; font-weight: 700; }
.trust-rating-text { font-size: 0.92rem; color: rgba(255,255,255,0.85); }
.trust-pills {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
}
.trust-pills li strong { color: #fff; }

/* ===== Hero (organic site) ===== */
.hero {
  background: var(--c-bg);
  padding: clamp(28px, 5vw, 64px) var(--pad) clamp(28px, 5vw, 56px);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
}
.hero-copy { max-width: 600px; }
.hero-copy h1 { margin: 0 0 16px; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--c-accent-3);
  margin-bottom: 16px;
}
.hero-sub { font-size: clamp(1.05rem, 1.6vw, 1.18rem); color: var(--c-text-muted); }
.hero-rating { display: flex; align-items: center; gap: 10px; margin: 18px 0 22px; flex-wrap: wrap; }
.hero-stars { display: inline-flex; gap: 2px; color: var(--c-amber); }
.hero-rating-text { font-size: 0.95rem; color: var(--c-text-muted); }
.hero-rating-text strong { color: var(--c-text); font-weight: 700; }
.hero-cta-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-media {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-media img { width: 100%; height: auto; display: block; aspect-ratio: 4 / 3; object-fit: cover; }
.hero-photo-tag {
  position: absolute;
  bottom: 18px;
  left: 18px;
  background: rgba(20, 36, 28, 0.86);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(4px);
}
.hero-photo-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-amber);
  box-shadow: 0 0 0 4px rgba(214, 147, 43, 0.25);
}

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
}

/* ===== Page hero (lighter, no photo) ===== */
.page-hero {
  background: var(--c-bg);
  padding: clamp(32px, 6vw, 80px) var(--pad) clamp(20px, 4vw, 48px);
}
.page-hero-inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: left;
}
.page-hero h1 { margin: 0 0 14px; }

/* ===== Three tracks ===== */
.three-tracks { padding: clamp(40px, 6vw, 80px) var(--pad); }
.three-tracks-inner { max-width: var(--container); margin: 0 auto; }
.three-tracks-head { max-width: 720px; margin: 0 auto 40px; text-align: center; }
.three-tracks-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.track-card {
  background: var(--c-surface);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--c-line-soft);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.track-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.track-photo img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.track-copy { padding: 24px; }
.track-copy h3 { font-size: 1.4rem; margin: 0 0 10px; }
.track-link { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; margin-top: 12px; color: var(--c-accent); }
.track-link svg { transition: transform 0.2s ease; }
.track-link:hover svg { transform: translateX(3px); }

/* ===== Split block ===== */
.split { padding: clamp(40px, 6vw, 80px) var(--pad); background: var(--c-bg); }
.split + .split { background: var(--c-bg-alt); }
.split-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
}
.split-photo-left .split-copy { order: 2; }
.split-photo-left .split-photo { order: 1; }
.split-copy h2 { margin: 0 0 14px; }
.split-features { list-style: none; padding: 0; margin: 22px 0; display: flex; flex-direction: column; gap: 10px; }
.split-features li { display: flex; align-items: flex-start; gap: 10px; color: var(--c-text); font-size: 0.97rem; }
.split-features .check { display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%; background: var(--c-accent); color: #fff; }
.split-features .check svg { width: 14px; height: 14px; }
.split-photo {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.split-photo img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; object-position: 50% 30%; }
@media (max-width: 800px) {
  .split-inner { grid-template-columns: 1fr; }
  .split-photo-left .split-copy, .split-photo-left .split-photo { order: initial; }
}

/* ===== Pillars block ===== */
.pillars-block { padding: clamp(40px, 6vw, 80px) var(--pad); background: var(--c-bg-alt); }
.pillars-inner { max-width: var(--container); margin: 0 auto; }
.pillars-head { max-width: 720px; margin: 0 auto 40px; text-align: center; }
.pillars-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.pillar {
  background: var(--c-surface);
  padding: 28px 24px;
  border-radius: var(--r-lg);
  border: 1px solid var(--c-line-soft);
  position: relative;
}
.pillar-num {
  font-family: 'Fraunces', serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--c-amber);
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 12px;
}
.pillar h3 { font-size: 1.18rem; margin: 0 0 8px; }
.pillar p { color: var(--c-text-muted); font-size: 0.95rem; margin: 0; }

/* ===== Gallery band ===== */
.gallery-band { background: var(--c-dark); color: #fff; padding: clamp(40px, 6vw, 80px) var(--pad); }
.gallery-band-head { max-width: 720px; margin: 0 auto 40px; text-align: center; }
.gallery-band-head h2 { color: #fff; }
.gallery-band-head .lead { color: rgba(255,255,255,0.78); }
.gallery-mosaic {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 520px;
  gap: 14px;
}
.gallery-tile { margin: 0; border-radius: var(--r-md); overflow: hidden; }
.gallery-tile img { width: 100%; height: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.gallery-tile video { display: block; width: 100%; height: 100%; object-fit: cover; background: #000; }
.gallery-tile.is-wide { grid-column: span 2; }
@media (max-width: 700px) {
  .gallery-mosaic { grid-template-columns: 1fr 1fr; grid-auto-rows: 300px; }
  .gallery-tile.is-wide { grid-column: span 1; }
}

/* ===== Testimonials ===== */
.testimonials-band { padding: clamp(40px, 6vw, 80px) var(--pad); background: var(--c-bg); }
.testimonials-inner { max-width: var(--container); margin: 0 auto; }
.testimonials-head { max-width: 720px; margin: 0 auto 40px; text-align: center; }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; }
.testimonial-card {
  background: var(--c-surface);
  border: 1px solid var(--c-line-soft);
  border-radius: var(--r-lg);
  padding: 26px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.testimonial-card .t-stars { display: inline-flex; gap: 2px; color: var(--c-amber); }
.testimonial-card blockquote {
  margin: 0;
  font-family: 'Fraunces', serif;
  font-size: 1.05rem;
  line-height: 1.5;
  color: var(--c-text);
}
.testimonial-card figcaption { display: flex; flex-direction: column; gap: 2px; padding-top: 10px; border-top: 1px solid var(--c-line-soft); }
.testimonial-card figcaption strong { color: var(--c-text); }
.testimonial-card figcaption span { font-size: 0.85rem; color: var(--c-text-soft); }

/* ===== FAQ ===== */
.faq-block { padding: clamp(40px, 6vw, 80px) var(--pad); background: var(--c-bg-alt); }
.faq-inner { max-width: 880px; margin: 0 auto; }
.faq-head { margin-bottom: 32px; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--c-surface);
  border: 1px solid var(--c-line-soft);
  border-radius: var(--r-md);
  padding: 18px 22px;
  transition: border-color 0.2s ease;
}
.faq-item[open] { border-color: var(--c-accent-3); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-q { font-weight: 600; font-size: 1.02rem; color: var(--c-text); }
.faq-toggle { position: relative; width: 18px; height: 18px; flex-shrink: 0; margin-top: 4px; }
.faq-toggle::before, .faq-toggle::after { content: ''; position: absolute; top: 50%; left: 50%; width: 12px; height: 2px; background: var(--c-accent); transform: translate(-50%, -50%); transition: transform 0.2s ease; }
.faq-toggle::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item[open] .faq-toggle::after { transform: translate(-50%, -50%) rotate(0); }
.faq-a { padding-top: 14px; color: var(--c-text-muted); }
.faq-a p:last-child { margin-bottom: 0; }

/* ===== Final CTA ===== */
.final-cta { position: relative; padding: clamp(48px, 8vw, 100px) var(--pad); color: #fff; overflow: hidden; }
.final-cta-bg { position: absolute; inset: 0; }
.final-cta-bg img { width: 100%; height: 100%; object-fit: cover; }
.final-cta-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,36,28,0.65), rgba(20,36,28,0.85)); }
.final-cta-inner { position: relative; max-width: 880px; margin: 0 auto; text-align: center; }
.final-cta-inner h2 { color: #fff; }
.final-cta-inner .lead { color: rgba(255,255,255,0.85); }
.final-cta-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 24px; }

/* ===== Footer ===== */
.foot { background: var(--c-dark); color: rgba(255,255,255,0.78); padding: 56px var(--pad) 28px; }
.foot-inner { max-width: var(--container); margin: 0 auto; display: grid; grid-template-columns: 1.4fr 2.6fr; gap: 48px; }
.foot-brand { display: inline-flex; align-items: center; gap: 12px; color: #fff; margin-bottom: 16px; }
.foot-brand:hover { text-decoration: none; }
.foot-brand img { width: 56px; height: 56px; aspect-ratio: 1 / 1; object-fit: contain; flex-shrink: 0; }
.foot-brand span { font-family: 'Fraunces', serif; font-size: 1.15rem; font-weight: 700; line-height: 1.05; display: flex; flex-direction: column; }
.foot-brand span span { font-family: 'Inter', sans-serif; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.65); margin-top: 6px; }
.foot-tag { font-size: 0.92rem; color: rgba(255,255,255,0.7); margin: 0 0 18px; max-width: 320px; }
.foot-phone, .foot-email { display: inline-flex; align-items: center; gap: 8px; color: #fff; margin-right: 14px; margin-bottom: 8px; font-weight: 600; font-size: 0.95rem; }
.foot-phone:hover, .foot-email:hover { color: var(--c-amber); text-decoration: none; }
.foot-addr { font-size: 0.9rem; color: rgba(255,255,255,0.7); margin: 12px 0 0; }
.foot-cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.foot-col strong { display: block; font-family: 'Fraunces', serif; color: #fff; font-size: 1.05rem; margin-bottom: 12px; }
.foot-col a { display: block; color: rgba(255,255,255,0.7); font-size: 0.9rem; padding: 4px 0; }
.foot-col a:hover { color: #fff; text-decoration: none; }
.foot-fine {
  max-width: var(--container);
  margin: 32px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
}
.foot-legal { display: flex; gap: 18px; }
.foot-legal a { color: rgba(255,255,255,0.7); }
.foot-legal a:hover { color: #fff; text-decoration: none; }
@media (max-width: 800px) {
  .foot-inner { grid-template-columns: 1fr; gap: 32px; }
  .foot-cols { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}

/* ===== Sticky mobile CTA ===== */
.sticky-mobile-call {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 90;
  display: none;
  align-items: center;
  gap: 12px;
  background: var(--c-accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: var(--r-lg);
  box-shadow: 0 12px 32px -10px rgba(20, 36, 28, 0.5);
  font-weight: 600;
}
.sticky-mobile-call:hover { color: #fff; text-decoration: none; }
.sticky-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
}
.sticky-text { display: flex; flex-direction: column; line-height: 1.2; flex: 1; }
.sticky-text strong { font-size: 1rem; }
.sticky-text small { font-size: 0.8rem; opacity: 0.85; font-weight: 500; }
@media (max-width: 700px) {
  .sticky-mobile-call { display: flex; }
  /* Add bottom padding so it does not cover the footer / form */
  body { padding-bottom: 80px; }
}

/* ===== Programs hub ===== */
.prog-list-section { padding: clamp(28px, 4vw, 48px) var(--pad); }
.prog-list-inner { max-width: var(--container); margin: 0 auto; }
.prog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; }
.prog-card {
  background: var(--c-surface);
  border: 1px solid var(--c-line-soft);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.prog-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.prog-photo img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.prog-copy { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.prog-copy h3 { font-size: 1.3rem; margin: 0 0 10px; }
.prog-best { font-size: 0.88rem; color: var(--c-text-soft); font-style: italic; margin: 0 0 10px; }
.prog-link { margin-top: auto; color: var(--c-accent); font-weight: 600; display: inline-flex; align-items: center; gap: 6px; }
.prog-link:hover { color: var(--c-dark-2); text-decoration: none; }

.comparison { padding: clamp(40px, 6vw, 80px) var(--pad); background: var(--c-bg-alt); }
.comparison-inner { max-width: var(--container); margin: 0 auto; }
.comparison-head { text-align: center; margin-bottom: 40px; max-width: 720px; margin-left: auto; margin-right: auto; }
.comparison-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.comp-card { background: var(--c-surface); border: 1px solid var(--c-line-soft); border-radius: var(--r-md); padding: 20px; }
.comp-card h3 { font-size: 1.1rem; margin: 0 0 12px; }
.comp-card dl { margin: 0; }
.comp-card dt { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--c-text-soft); margin-top: 12px; }
.comp-card dd { margin: 4px 0 0; font-size: 0.93rem; color: var(--c-text); }
.comp-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; color: var(--c-accent); font-weight: 600; font-size: 0.9rem; }

/* ===== Boarding features ===== */
.boarding-features { padding: clamp(40px, 6vw, 80px) var(--pad); background: var(--c-bg-alt); }
.boarding-features-inner { max-width: var(--container); margin: 0 auto; }
.boarding-features-head { text-align: center; max-width: 720px; margin: 0 auto 40px; }
.boarding-features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.bf-card { background: var(--c-surface); border: 1px solid var(--c-line-soft); border-radius: var(--r-md); padding: 24px; }
.bf-num { display: block; font-family: 'Fraunces', serif; font-size: 0.85rem; font-weight: 700; color: var(--c-amber); margin-bottom: 8px; letter-spacing: 0.1em; }
.bf-card h3 { font-size: 1.15rem; margin: 0 0 8px; }
.bf-card p { font-size: 0.93rem; color: var(--c-text-muted); margin: 0; }

/* ===== Contact + Reservations ===== */
.contact-grid, .reservations-grid { padding: clamp(20px, 4vw, 48px) var(--pad) clamp(40px, 6vw, 80px); }
.contact-grid-inner, .reservations-grid-inner { max-width: var(--container); margin: 0 auto; display: grid; grid-template-columns: 1fr 1.3fr; gap: 40px; }
@media (max-width: 880px) {
  .contact-grid-inner, .reservations-grid-inner { grid-template-columns: 1fr; }
}
.contact-info, .reservations-info { display: flex; flex-direction: column; gap: 20px; }
.contact-card { background: var(--c-surface); border: 1px solid var(--c-line-soft); border-radius: var(--r-lg); padding: 26px; }
.contact-card h2 { font-size: 1.3rem; margin: 0 0 16px; }
.contact-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.contact-list li { display: flex; gap: 14px; align-items: flex-start; }
.ci-icon { display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; width: 36px; height: 36px; background: var(--c-bg-alt); border-radius: 50%; color: var(--c-accent); }
.contact-list strong { display: block; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--c-text-soft); margin-bottom: 2px; }
.contact-list a, .contact-list span { color: var(--c-text); font-size: 0.97rem; }
.contact-area-list { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.contact-area-list li { display: inline-flex; align-items: center; gap: 6px; background: var(--c-bg-alt); padding: 6px 12px; border-radius: 999px; font-size: 0.88rem; color: var(--c-text); }
.contact-form, .reservations-form { background: var(--c-surface); border: 1px solid var(--c-line-soft); border-radius: var(--r-lg); padding: 28px; }
.contact-form h2, .reservations-form h2 { margin: 0 0 8px; }
.reservations-checklist { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.reservations-checklist li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.95rem; }
.reservations-checklist .check { display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%; background: var(--c-accent); color: #fff; }

/* ===== GHL form embed ===== */
.ghl-form-wrap { margin-top: 16px; }
.ghl-form-embed { width: 100%; min-height: 600px; background: #fafafa; border-radius: var(--r-md); }
.ghl-form-embed iframe { width: 100%; min-height: 600px; border: 0; border-radius: var(--r-md); background: #fff; }
.ghl-form-fallback { font-size: 0.85rem; color: var(--c-text-soft); margin-top: 12px; text-align: center; }

/* ===== Stories ===== */
.story-grid-section { padding: clamp(40px, 6vw, 80px) var(--pad); }
.story-grid { max-width: var(--container); margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.story-card { background: var(--c-surface); border: 1px solid var(--c-line-soft); border-radius: var(--r-lg); overflow: hidden; }
.story-card-link { display: flex; flex-direction: column; color: var(--c-text); }
.story-card-link:hover { text-decoration: none; }
.story-card-photo img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.story-card-copy { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.story-card-tag { display: inline-block; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--c-amber-2); margin-bottom: 10px; }
.story-card h3 { font-size: 1.25rem; margin: 0 0 10px; }
.story-card-cta { color: var(--c-accent); font-weight: 600; margin-top: auto; display: inline-flex; align-items: center; gap: 6px; padding-top: 14px; }

.story-body { padding: clamp(40px, 6vw, 80px) var(--pad); background: var(--c-bg); }
.story-body-inner { max-width: var(--container); margin: 0 auto; display: grid; grid-template-columns: 1.6fr 1fr; gap: 48px; align-items: start; }
.story-arc h2 { margin: 28px 0 8px; font-size: 1.4rem; color: var(--c-accent); }
.story-arc h2:first-child { margin-top: 0; }
.story-arc p { font-size: 1.02rem; color: var(--c-text); }
.story-quote { background: var(--c-dark); color: #fff; padding: 32px; border-radius: var(--r-lg); position: sticky; top: 100px; }
.story-quote-mark { font-family: 'Fraunces', serif; font-size: 4rem; line-height: 1; color: var(--c-amber); }
.story-quote blockquote { margin: 0 0 18px; font-family: 'Fraunces', serif; font-size: 1.05rem; line-height: 1.55; color: rgba(255,255,255,0.92); }
.story-quote figcaption strong { color: #fff; }
.story-quote figcaption span { font-size: 0.85rem; color: rgba(255,255,255,0.65); display: block; margin-top: 4px; }
.story-program, .story-trainers { margin-top: 18px; padding-top: 14px; border-top: 1px solid rgba(255,255,255,0.15); display: flex; gap: 8px; align-items: baseline; }
.story-program-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.6); }
.story-program-value { font-size: 0.95rem; color: #fff; font-weight: 600; }
@media (max-width: 800px) {
  .story-body-inner { grid-template-columns: 1fr; }
  .story-quote { position: static; }
}

/* ===== Blog ===== */
.post-list-section { padding: clamp(20px, 4vw, 48px) var(--pad) clamp(40px, 6vw, 80px); }
.post-grid { max-width: var(--container); margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 22px; }
.post-card { background: var(--c-surface); border: 1px solid var(--c-line-soft); border-radius: var(--r-lg); padding: 28px; }
.post-card-link { color: var(--c-text); display: block; }
.post-card-link:hover { text-decoration: none; }
.post-card h3 { font-size: 1.25rem; margin: 0 0 10px; }
.post-card p { font-size: 0.95rem; color: var(--c-text-muted); margin: 0 0 12px; }
.post-meta { font-size: 0.82rem; color: var(--c-text-soft); display: flex; gap: 6px; margin-bottom: 14px; }
.post-card-cta { color: var(--c-accent); font-weight: 600; display: inline-flex; align-items: center; gap: 6px; }

.post { padding: clamp(20px, 4vw, 48px) var(--pad) clamp(40px, 6vw, 80px); }
.post-inner { max-width: 720px; margin: 0 auto; font-size: 1.05rem; line-height: 1.7; }
.post-inner h2 { font-size: 1.5rem; margin-top: 36px; margin-bottom: 12px; color: var(--c-accent); }
.post-inner p { color: var(--c-text); margin-bottom: 1.2em; }
.post-inner a { color: var(--c-accent); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.post-end-cta { margin-top: 40px; text-align: center; }

/* ===== Legal ===== */
.legal { padding: clamp(20px, 4vw, 48px) var(--pad) clamp(40px, 6vw, 80px); }
.legal-inner { max-width: 720px; margin: 0 auto; }
.legal-inner h2 { font-size: 1.25rem; margin-top: 28px; color: var(--c-accent); }
.legal-inner p { font-size: 0.97rem; line-height: 1.7; color: var(--c-text); }

/* ===== Landing pages ===== */
.lp-hero { background: var(--c-bg); padding: clamp(20px, 4vw, 48px) var(--pad) clamp(40px, 6vw, 64px); }
.lp-hero-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  grid-template-areas:
    "copy form"
    "media form";
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
}
.lp-hero-copy { grid-area: copy; max-width: 600px; }
.lp-hero-media { grid-area: media; position: relative; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.lp-hero-media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.lp-hero-photo-tag { position: absolute; bottom: 18px; left: 18px; background: rgba(20, 36, 28, 0.86); color: #fff; font-size: 0.78rem; font-weight: 600; padding: 8px 14px; border-radius: 999px; display: inline-flex; align-items: center; gap: 8px; }
.lp-hero-photo-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--c-amber); }
.lp-hero-form { grid-area: form; }
.lp-hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; color: var(--c-accent-3); margin-bottom: 16px; }
.lp-hero-copy h1 { margin: 0 0 16px; }
.lp-hero-sub { font-size: clamp(1.05rem, 1.6vw, 1.18rem); color: var(--c-text-muted); }
.lp-hero-rating { display: flex; align-items: center; gap: 10px; margin: 18px 0 18px; flex-wrap: wrap; }
.lp-hero-stars { display: inline-flex; gap: 2px; color: var(--c-amber); }
.lp-hero-rating-text { font-size: 0.95rem; color: var(--c-text-muted); }
.lp-hero-rating-text strong { color: var(--c-text); font-weight: 700; }
.lp-hero-trust { list-style: none; padding: 0; margin: 0 0 20px; display: flex; flex-direction: column; gap: 8px; }
.lp-hero-trust li { display: flex; align-items: center; gap: 10px; color: var(--c-text); font-size: 0.95rem; }
.lp-hero-trust .check { display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%; background: var(--c-accent); color: #fff; }
.lp-hero-call { margin-top: 8px; }
.lp-form-card {
  background: var(--c-surface);
  border: 1px solid var(--c-line-soft);
  border-radius: var(--r-lg);
  padding: 28px;
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 92px;
}
.lp-form-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 0.74rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; color: var(--c-amber-2); margin-bottom: 12px; }
.lp-form-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--c-amber); }
.lp-form-title { font-size: 1.4rem; margin: 0 0 6px; }
.lp-form-sub { font-size: 0.95rem; color: var(--c-text-muted); margin: 0 0 8px; }
@media (max-width: 980px) {
  .lp-hero-inner {
    grid-template-columns: 1fr;
    grid-template-areas: "copy" "media" "form";
  }
  .lp-form-card { position: static; }
}

/* ===== Misc utility ===== */
::selection { background: var(--c-amber); color: #1a1106; }

/* Hide elements off-screen accessibly */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

/* ===== Big-stat band (review hero) ===== */
.dcc-bigstat {
  background: var(--c-dark);
  color: var(--c-bg);
  padding: 36px var(--pad);
  border-top: 1px solid rgba(247, 243, 236, 0.08);
  border-bottom: 1px solid rgba(247, 243, 236, 0.08);
}
.dcc-bigstat-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 48px;
  max-width: var(--container);
  margin: 0 auto;
}
.dcc-bigstat-numeral {
  font-family: 'Fraunces', 'Iowan Old Style', Georgia, serif;
  font-weight: 900;
  font-size: clamp(96px, 14vw, 180px);
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: var(--c-amber);
}
.dcc-bigstat-text {
  display: grid;
  gap: 8px;
}
.dcc-bigstat-stars {
  color: var(--c-amber);
  font-size: 18px;
  letter-spacing: 0.16em;
  line-height: 1;
}
.dcc-bigstat-headline {
  font-family: 'Fraunces', 'Iowan Old Style', Georgia, serif;
  font-size: clamp(20px, 2.2vw, 30px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--c-bg);
  margin: 0;
}
.dcc-bigstat-sub {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(247, 243, 236, 0.7);
  margin: 0;
  max-width: 60ch;
}
.dcc-bigstat-cta {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-amber);
  border-bottom: 2px solid var(--c-amber);
  padding-bottom: 4px;
  white-space: nowrap;
  text-decoration: none;
  transition: color 160ms ease, border-color 160ms ease;
}
.dcc-bigstat-cta:hover {
  color: var(--c-amber-2);
  border-color: var(--c-amber-2);
  text-decoration: none;
}
@media (max-width: 900px) {
  .dcc-bigstat-inner { grid-template-columns: auto 1fr; gap: 24px 28px; }
  .dcc-bigstat-cta { grid-column: 1 / -1; justify-self: start; }
}
@media (max-width: 540px) {
  .dcc-bigstat-inner { grid-template-columns: 1fr; text-align: left; gap: 14px; }
  .dcc-bigstat-numeral { font-size: clamp(96px, 26vw, 150px); }
}

/* ===== Home hero carousel (HCW v3 port) ===== */
.dcc-hero {
  position: relative;
  min-height: 72vh;
  min-height: 72svh;
  width: 100%;
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
  padding-top: 0;
  background: var(--c-dark);
}
@media (max-width: 900px) {
  .dcc-hero { min-height: 65vh; min-height: 65svh; }
}
.dcc-hero-stage {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.dcc-hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 700ms ease;
  pointer-events: none;
}
.dcc-hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}
.dcc-hero-slide picture, .dcc-hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}
.dcc-hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(13, 17, 23, .55) 0%, rgba(13, 17, 23, .35) 30%, rgba(13, 17, 23, .70) 65%, rgba(13, 17, 23, .96) 100%),
    linear-gradient(90deg, rgba(13, 17, 23, .65) 0%, rgba(13, 17, 23, .15) 60%, rgba(13, 17, 23, 0) 100%);
  pointer-events: none;
}
.dcc-hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
  padding: clamp(48px, 8vw, 72px) clamp(20px, 4vw, 48px) clamp(72px, 10vw, 120px);
}
.dcc-hero-eyebrow {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-amber);
  margin-bottom: 18px;
}
.dcc-hero-h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(40px, 6vw, 88px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin: 0 0 24px;
  max-width: 18ch;
  color: #fff;
  text-wrap: balance;
}
.dcc-hero-sub {
  font-family: 'Inter', sans-serif;
  font-size: clamp(16px, 1.7vw, 20px);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 36px;
  max-width: 56ch;
}
.dcc-hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
.dcc-hero-controls {
  position: absolute;
  z-index: 3;
  right: clamp(20px, 4vw, 48px);
  bottom: clamp(24px, 4vw, 48px);
  display: flex;
  align-items: center;
  gap: 14px;
}
.dcc-hero-arrow {
  width: 44px; height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(13, 17, 23, 0.35);
  color: #fff;
  border-radius: 50%;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease;
}
.dcc-hero-arrow:hover {
  background: var(--c-amber);
  border-color: var(--c-amber);
}
.dcc-hero-dots {
  display: flex;
  gap: 8px;
}
.dcc-hero-dot {
  width: 28px;
  height: 4px;
  background: rgba(255, 255, 255, 0.4);
  border: 0;
  cursor: pointer;
  padding: 0;
  transition: background 160ms ease, width 160ms ease;
}
.dcc-hero-dot.is-active {
  background: var(--c-amber);
  width: 44px;
}
@media (max-width: 700px) {
  .dcc-hero-controls { right: clamp(20px, 4vw, 48px); bottom: 18px; gap: 8px; }
  .dcc-hero-arrow { width: 38px; height: 38px; }
  .dcc-hero-dot { width: 20px; }
  .dcc-hero-dot.is-active { width: 32px; }
}
@media (prefers-reduced-motion: reduce) {
  .dcc-hero-slide { transition: none; }
}

/* ===== Interior single-photo hero (HCW v3 port) ===== */
.dcc-hero--single {
  min-height: 68vh;
  min-height: 68svh;
  background: var(--c-dark);
}
@media (max-width: 900px) {
  .dcc-hero--single { min-height: 88vh; min-height: 88svh; }
}
.dcc-hero--single .dcc-hero-media {
  position: absolute;
  inset: -10% 0 0 0;
  z-index: 0;
  will-change: transform;
  animation: dccKenBurns 22s ease-in-out infinite alternate;
  transform-origin: center 35%;
}
.dcc-hero--single .dcc-hero-media picture,
.dcc-hero--single .dcc-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}
@keyframes dccKenBurns {
  0%   { transform: scale(1.0); }
  100% { transform: scale(1.06); }
}
@media (prefers-reduced-motion: reduce) {
  .dcc-hero--single .dcc-hero-media { animation: none; }
}
.dcc-hero-grain {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.045;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix type='matrix' values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.7 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* Hero phone CTA - white + underline so it doesn't blend with the scrim */
.cta-link-light {
  color: #fff;
  background: transparent;
  border-color: transparent;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 600;
  padding: 14px 8px;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
}
.cta-link-light:hover {
  color: var(--c-amber);
  background: transparent;
  border-color: transparent;
  text-decoration: underline;
  transform: none;
}
.cta-link-light svg { stroke: currentColor; }

/* =====================================================================
 * Glossy upgrade layer (DCC v2 patterns adapted for DCC palette).
 * Ambient blobs, glass nav capsule, gradient hero, marquee, magnet CTA,
 * 3D tilt cards, reviews gauge, scroll reveals.
 * ===================================================================== */

/* Glossy palette helpers, layered onto existing brand tokens. */
:root {
  --gold-glow: #f0c14b;
  --line-soft-rgba: rgba(20, 36, 28, 0.08);
  --line-bright-rgba: rgba(20, 36, 28, 0.16);
  --shadow-soft: 0 4px 14px rgba(20, 36, 28, 0.05);
  --shadow-elev: 0 18px 40px rgba(20, 36, 28, 0.10);
  --shadow-deep: 0 24px 60px rgba(20, 36, 28, 0.12), 0 4px 14px rgba(20, 36, 28, 0.06);
}

/* Page sits above the ambient layer. */
body { position: relative; }
main { position: relative; z-index: 2; }
.nav, .foot, .top-call-strip, .sticky-mobile-call { position: relative; z-index: 60; }
.nav { z-index: 80; }
.sticky-mobile-call { z-index: 90; }

/* ===== Ambient layer ===== */
.dcc-ambient {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.dcc-ambient .blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  will-change: transform;
}
.dcc-ambient .blob.b1 {
  width: 50vw; height: 50vw; left: -10vw; top: -10vw;
  background: radial-gradient(circle, #d8e4dc 0%, transparent 65%);
  opacity: 0.85;
  animation: dccDrift1 28s ease-in-out infinite;
}
.dcc-ambient .blob.b2 {
  width: 40vw; height: 40vw; right: -8vw; top: 30vh;
  background: radial-gradient(circle, #f4ddae 0%, transparent 65%);
  opacity: 0.55;
  animation: dccDrift2 36s ease-in-out infinite;
}
.dcc-ambient .blob.b3 {
  width: 60vw; height: 60vw; left: 10vw; top: 80vh;
  background: radial-gradient(circle, #e6e9d8 0%, transparent 65%);
  opacity: 0.75;
  animation: dccDrift3 40s ease-in-out infinite;
}
.dcc-ambient .blob.b4 {
  width: 35vw; height: 35vw; right: 5vw; top: 140vh;
  background: radial-gradient(circle, #f0c14b 0%, transparent 70%);
  opacity: 0.22;
  animation: dccDrift1 32s ease-in-out infinite reverse;
}
@keyframes dccDrift1 { 0%, 100% { transform: translate(0, 0) scale(1); } 50% { transform: translate(8vw, 6vh) scale(1.15); } }
@keyframes dccDrift2 { 0%, 100% { transform: translate(0, 0) scale(1); } 50% { transform: translate(-10vw, 8vh) scale(1.2); } }
@keyframes dccDrift3 { 0%, 100% { transform: translate(0, 0) scale(1); } 50% { transform: translate(6vw, -8vh) scale(1.1); } }

.dcc-grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.04;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}
.dcc-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.45;
  background-image:
    linear-gradient(to right, rgba(20, 36, 28, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(20, 36, 28, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  -webkit-mask-image: radial-gradient(ellipse 100% 80% at 50% 30%, black 30%, transparent 80%);
          mask-image: radial-gradient(ellipse 100% 80% at 50% 30%, black 30%, transparent 80%);
}

/* ===== Glass nav capsule ===== */
body.has-glass-nav .nav {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: auto;
  max-width: calc(100vw - 24px);
  border: 1px solid var(--line-bright-rgba);
  background: rgba(255, 253, 247, 0.65);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(20, 36, 28, 0.08), 0 2px 8px rgba(20, 36, 28, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.6);
}
body.has-glass-nav .nav-inner {
  padding: 8px 12px 8px 16px;
  gap: 18px;
}
body.has-glass-nav .nav-brand .nav-logo { width: 36px; height: 36px; }
body.has-glass-nav .nav-wordmark { font-size: 1rem; }
body.has-glass-nav .nav-wordmark-sub { display: none; }
body.has-glass-nav .nav-brand::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--c-amber);
  box-shadow: 0 0 14px var(--c-amber);
  margin-right: 8px;
  vertical-align: middle;
  animation: dccPulse 2.4s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes dccPulse { 0%, 100% { opacity: 0.6; transform: scale(0.85); } 50% { opacity: 1; transform: scale(1.15); } }
body.has-glass-nav .nav-links { gap: 18px; }
body.has-glass-nav .nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  border-bottom: 0;
  padding: 6px 4px;
  color: var(--c-text-muted);
}
body.has-glass-nav .nav-links a:hover,
body.has-glass-nav .nav-links a[aria-current] {
  color: var(--c-accent);
  border-bottom: 0;
}
body.has-glass-nav .nav-cta-secondary { display: none; }
body.has-glass-nav .nav-cta {
  background: var(--c-accent);
  color: #fff;
  font-size: 0.82rem;
  padding: 9px 16px;
  box-shadow: 0 4px 14px rgba(31, 58, 44, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}
body.has-glass-nav .nav-cta:hover {
  transform: translateY(-1px);
  background: var(--c-accent-2);
  box-shadow: 0 8px 22px rgba(31, 58, 44, 0.35);
}
body.has-glass-nav main { padding-top: 76px; }
@media (max-width: 980px) {
  body.has-glass-nav .nav-inner { padding: 6px 8px 6px 14px; gap: 10px; }
  body.has-glass-nav .nav-cta { font-size: 0.78rem; padding: 8px 12px; }
}
@media (max-width: 700px) {
  /* On mobile: revert pill to standard full-width sticky bar — no overlap with call strip */
  body.has-glass-nav .nav {
    position: sticky;
    top: 0;
    left: auto;
    transform: none;
    width: 100%;
    max-width: 100%;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid var(--c-line-soft);
    background: rgba(247, 243, 236, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 1px 4px rgba(0,0,0,.06);
  }
  body.has-glass-nav .nav-inner { padding: 12px var(--pad); gap: 16px; }
  body.has-glass-nav .nav-brand .nav-logo { width: 48px; height: 48px; }
  body.has-glass-nav .nav-wordmark { font-size: 1rem; }
  body.has-glass-nav .nav-wordmark-sub { display: block; }
  body.has-glass-nav .nav-brand::before { display: none; }
  body.has-glass-nav .nav-cta { font-size: 0.88rem; padding: 9px 12px; box-shadow: none; transition: none; }
  /* Nav is now in flow — zero out the fixed-nav dead-zone compensation */
  body.has-glass-nav main { padding-top: 0; }
}

/* ===== Hero badge pill (floating, above H1) ===== */
.dcc-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 16px 7px 10px;
  background: rgba(255, 253, 247, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--line-bright-rgba);
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--c-text-muted);
  margin-bottom: 18px;
  box-shadow: 0 2px 12px rgba(20, 36, 28, 0.05);
  animation: dccFloatIn 1s ease-out;
}
.dcc-hero-badge .pip {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--c-accent-2);
  box-shadow: 0 0 10px var(--c-accent-2);
  animation: dccPulse 1.6s ease-in-out infinite;
  flex-shrink: 0;
}
.dcc-hero-badge strong { color: var(--c-text); font-weight: 600; }
.dcc-hero .dcc-hero-badge {
  background: rgba(255, 253, 247, 0.18);
  border-color: rgba(255, 253, 247, 0.28);
  color: rgba(255, 253, 247, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.dcc-hero .dcc-hero-badge strong { color: #fff; }
@keyframes dccFloatIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* ===== H1 gradient italic word ===== */
.dcc-gradient {
  background: linear-gradient(135deg, #f3b441 0%, #ffffff 50%, #f3b441 100%);
  background-size: 220% 220%;
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  font-style: italic;
  filter: drop-shadow(0 2px 8px rgba(20, 36, 28, 0.75));
  animation: dccShimmer 6s ease-in-out infinite;
}
@keyframes dccShimmer { 0%, 100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }

/* ===== Hero stat strip (with animated counters) ===== */
.dcc-hero-strip {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  width: 100%;
  max-width: 720px;
  border: 1px solid rgba(255, 253, 247, 0.2);
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 253, 247, 0.12), rgba(255, 253, 247, 0.06));
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.15);
  animation: dccFloatIn 1.4s 0.6s ease-out backwards;
}
.dcc-hero-strip > div {
  padding: 14px 14px;
  border-right: 1px solid rgba(255, 253, 247, 0.12);
  text-align: left;
}
.dcc-hero-strip > div:last-child { border-right: 0; }
.dcc-hero-strip .num {
  font-family: 'Fraunces', serif;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
  font-weight: 600;
}
.dcc-hero-strip .num .accent { color: var(--c-amber); }
.dcc-hero-strip .lbl {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 253, 247, 0.7);
}
@media (max-width: 760px) {
  .dcc-hero-strip { grid-template-columns: 1fr 1fr; }
  .dcc-hero-strip > div:nth-child(2) { border-right: 0; }
  .dcc-hero-strip > div:nth-child(1),
  .dcc-hero-strip > div:nth-child(2) { border-bottom: 1px solid rgba(255, 253, 247, 0.12); }
}

/* ===== Marquee ===== */
.dcc-marquee {
  position: relative;
  z-index: 2;
  margin: 0;
  padding: 18px 0;
  border-top: 1px solid var(--line-soft-rgba);
  border-bottom: 1px solid var(--line-soft-rgba);
  background: rgba(31, 58, 44, 0.04);
  overflow: hidden;
  white-space: nowrap;
}
.dcc-marquee-track {
  display: inline-flex;
  gap: 60px;
  animation: dccMarqueeScroll 40s linear infinite;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 22px;
  color: var(--c-text-muted);
  padding-left: 60px;
}
.dcc-marquee-track .star { color: var(--c-amber); margin: 0 6px; }
@keyframes dccMarqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===== 3D tilt cards (program / track / pillar) ===== */
[data-tilt] {
  position: relative;
  transition: transform 0.35s cubic-bezier(0.2, 0.7, 0.3, 1.2), border-color 0.35s, box-shadow 0.35s;
  transform-style: preserve-3d;
  will-change: transform;
}
[data-tilt]::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(600px circle at var(--mx, 50%) var(--my, 50%), rgba(240, 193, 75, 0.22) 0%, transparent 45%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  z-index: 1;
}
[data-tilt]:hover::before { opacity: 1; }
[data-tilt]:hover {
  border-color: rgba(214, 147, 43, 0.45);
  box-shadow: 0 20px 48px rgba(20, 36, 28, 0.10), 0 4px 12px rgba(20, 36, 28, 0.05);
}
[data-tilt] > * { position: relative; z-index: 2; }
[data-tilt] img { transition: transform 0.8s cubic-bezier(0.25, 0.6, 0.3, 1); }
[data-tilt]:hover img { transform: scale(1.06); }

/* ===== Reviews gauge ===== */
.dcc-reviews-gauge {
  display: flex;
  justify-content: center;
  margin: 0 auto 36px;
}
.dcc-reviews-gauge .gauge {
  display: inline-flex;
  align-items: baseline;
  gap: 14px;
  padding: 18px 32px;
  background: linear-gradient(180deg, rgba(255, 253, 247, 0.95), rgba(255, 253, 247, 0.7));
  border: 1px solid var(--line-bright-rgba);
  border-radius: 22px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 8px 24px rgba(20, 36, 28, 0.06);
}
.dcc-reviews-gauge .v {
  font-family: 'Fraunces', serif;
  font-size: 56px;
  line-height: 1;
  color: var(--c-amber);
  letter-spacing: -0.02em;
  font-weight: 600;
}
.dcc-reviews-gauge .stars { color: var(--c-amber); letter-spacing: 2px; font-size: 14px; }
.dcc-reviews-gauge .ct { color: var(--c-text-muted); font-size: 14px; }

/* Glass + lift on testimonial cards */
.testimonial-card {
  background: rgba(255, 253, 247, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--line-bright-rgba);
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.4s cubic-bezier(0.25, 0.6, 0.3, 1), border-color 0.3s, background-color 0.3s, box-shadow 0.3s;
}
.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: rgba(214, 147, 43, 0.45);
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(20, 36, 28, 0.10);
}
.testimonial-card figcaption strong::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-glow), var(--c-accent-2));
  margin-right: 10px;
  vertical-align: middle;
  box-shadow: 0 4px 10px rgba(31, 58, 44, 0.18);
}

/* ===== Magnetic CTA ===== */
.dcc-magnet-wrap {
  position: relative;
  display: inline-block;
}
.dcc-magnet-wrap .halo {
  position: absolute;
  inset: -40% -10%;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(240, 193, 75, 0.22) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.dcc-magnet {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 22px 36px;
  background: linear-gradient(180deg, var(--c-amber), var(--c-amber-2));
  color: #1a1407 !important;
  border-radius: 999px;
  font-family: 'Fraunces', serif;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.005em;
  text-decoration: none !important;
  box-shadow: 0 0 0 1px rgba(240, 193, 75, 0.5), 0 14px 40px rgba(240, 193, 75, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.4);
  transition: box-shadow 0.3s cubic-bezier(0.2, 0.7, 0.3, 1.2);
  will-change: transform;
}
.dcc-magnet:hover {
  box-shadow: 0 0 0 1px rgba(240, 193, 75, 0.7), 0 20px 60px rgba(240, 193, 75, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}
.dcc-magnet svg { width: 22px; height: 22px; }
@media (max-width: 700px) {
  .dcc-magnet { font-size: 20px; padding: 18px 28px; gap: 10px; }
  .dcc-magnet svg { width: 18px; height: 18px; }
}

.dcc-magnet-section {
  position: relative;
  z-index: 2;
  padding: 80px var(--pad);
  text-align: center;
}
.dcc-magnet-section .magnet-eyebrow {
  display: inline-block;
  padding: 6px 14px;
  border: 1px solid var(--line-bright-rgba);
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-amber);
  background: rgba(240, 193, 75, 0.08);
  margin-bottom: 22px;
}
.dcc-magnet-section h2 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: clamp(34px, 5.5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--c-text);
  max-width: 18ch;
  margin: 0 auto 32px;
}
.dcc-magnet-section h2 em {
  font-style: italic;
  color: var(--c-amber);
}
.dcc-magnet-section .small {
  margin-top: 18px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--c-text-soft);
}

/* ===== Scroll reveals (gated on JS so non-JS / pre-hydration users still see content) ===== */
html.dcc-js .dcc-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s cubic-bezier(0.2, 0.7, 0.3, 1), transform 0.9s cubic-bezier(0.2, 0.7, 0.3, 1);
}
html.dcc-js .dcc-reveal.in {
  opacity: 1;
  transform: none;
}
html.dcc-force-reveal .dcc-reveal { opacity: 1 !important; transform: none !important; transition: none !important; }

/* ===== Glass treatment + deeper shadow on elevated surfaces ===== */
.track-card,
.pillar,
.split-inner,
.faq-item,
.lp-form-card {
  box-shadow: var(--shadow-soft);
  transition: transform 0.35s cubic-bezier(0.25, 0.6, 0.3, 1), box-shadow 0.35s, border-color 0.3s;
}
.track-card { background: rgba(255, 253, 247, 0.92); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
.track-card:hover, .pillar:hover, .faq-item:hover { box-shadow: var(--shadow-elev); }
.lp-form-card { box-shadow: var(--shadow-deep); }

/* ===== White-glass footer (v2 polish) ===== */
.foot {
  background: rgba(255, 253, 247, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--c-text-muted);
  border-top: 1px solid var(--line-soft-rgba);
  padding: 56px var(--pad) 40px;
}
.foot-brand { color: var(--c-text); margin-bottom: 14px; }
.foot-brand span { color: var(--c-text); }
.foot-brand span span { color: var(--c-text-soft); }
.foot-tag { color: var(--c-text-muted); }
.foot-phone, .foot-email { color: var(--c-text); }
.foot-phone:hover, .foot-email:hover { color: var(--c-amber); }
.foot-addr { color: var(--c-text-muted); }
.foot-col strong { color: var(--c-text); font-weight: 500; font-size: 1rem; }
.foot-col a { color: var(--c-text-muted); transition: color 0.2s ease; }
.foot-col a:hover { color: var(--c-amber); }
.foot-fine {
  border-top: 1px solid var(--line-soft-rgba);
  color: var(--c-text-soft);
}
.foot-fine .foot-build {
  margin-left: auto;
  font-family: 'Fraunces', serif;
  font-style: italic;
  color: var(--c-text-soft);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}
.foot-legal a { color: var(--c-text-muted); }
.foot-legal a:hover { color: var(--c-amber); }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .dcc-ambient .blob,
  .dcc-hero-badge,
  .dcc-hero-strip,
  .dcc-marquee-track,
  .dcc-gradient,
  .dcc-magnet { animation: none !important; }
  html.dcc-js .dcc-reveal { opacity: 1; transform: none; }
  .dcc-grain, .dcc-grid { display: none; }
}
