/* ==========================================================================
   VELOUR STUDIO — MASTER TEMPLATE STYLESHEET
   --------------------------------------------------------------------------
   You should almost never need to edit this file.
   Colors and fonts are injected from config.js as CSS custom properties.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. TOKENS  (defaults match config.js; app.js overrides them at load)
   -------------------------------------------------------------------------- */
:root {
  /* Brand (overridden from config.js) */
  --c-primary:      #2E4B45;
  --c-primary-deep: #1C2F2B;
  --c-accent:       #C0965C;
  --c-bg:           #FAF8F4;
  --c-surface:      #F1EDE5;
  --c-text:         #23282A;
  --c-text-soft:    #5E6660;

  --f-heading: 'Fraunces', Georgia, serif;
  --f-body:    'Outfit', -apple-system, 'Segoe UI', sans-serif;

  /* Derived */
  --c-on-dark:      #F4F1EA;
  --c-on-dark-soft: rgba(244, 241, 234, 0.68);
  --c-line:         rgba(35, 40, 42, 0.14);
  --c-line-dark:    rgba(244, 241, 234, 0.16);

  /* Rhythm */
  --space-section: clamp(4.5rem, 10vw, 8.5rem);
  --space-head:    clamp(2.25rem, 5vw, 3.75rem);
  --container:     1160px;
  --gutter:        clamp(1.25rem, 4vw, 2.5rem);
  --radius:        2px;

  --ease:     cubic-bezier(0.22, 0.7, 0.24, 1);
  --t-fast:   0.22s;
  --t-med:    0.45s;
}

/* --------------------------------------------------------------------------
   2. RESET & BASE
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--f-body);
  font-size: 1.0625rem;               /* 17px */
  line-height: 1.65;
  color: var(--c-text);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }

:focus-visible {
  outline: 2px solid var(--c-accent);
  outline-offset: 3px;
}

::selection { background: var(--c-accent); color: #fff; }

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* Skip link (accessibility) */
.skip-link {
  position: absolute; top: -3rem; left: 1rem; z-index: 200;
  background: var(--c-primary-deep); color: var(--c-on-dark);
  padding: 0.6rem 1.1rem; border-radius: var(--radius);
  transition: top var(--t-fast) var(--ease);
}
.skip-link:focus { top: 1rem; }

/* Disabled modules — sections are hidden, never deleted */
[data-module][hidden] { display: none !important; }

/* --------------------------------------------------------------------------
   3. TYPOGRAPHY
   -------------------------------------------------------------------------- */
h1, h2, h3 {
  font-family: var(--f-heading);
  font-weight: 480;
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--c-primary);
  text-wrap: balance;
}

h1 { font-size: clamp(2.6rem, 6.5vw, 4.6rem); }
h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); }
h3 { font-size: 1.25rem; font-family: var(--f-body); font-weight: 600; letter-spacing: 0; color: inherit; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-accent);
}
.eyebrow::before {
  content: '';
  width: 1.75rem;
  height: 1px;
  background: var(--c-accent);
}

.section-head { max-width: 38rem; margin-bottom: var(--space-head); }
.section-head h2 { margin-top: 0.9rem; }
.section-head p  { margin-top: 1rem; color: var(--c-text-soft); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }
.section-head--center .eyebrow::before { display: none; }

/* Italic serif emphasis inside headings — part of the visual signature */
h1 em, h2 em { font-style: italic; font-weight: 420; color: var(--c-accent); }

/* --------------------------------------------------------------------------
   4. BUTTONS
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 1.9rem;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: transform var(--t-fast) var(--ease),
              background-color var(--t-fast) var(--ease),
              border-color var(--t-fast) var(--ease),
              color var(--t-fast) var(--ease);
}
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary { background: var(--c-primary); color: var(--c-on-dark); }
.btn--primary:hover { background: var(--c-primary-deep); }

.btn--accent { background: var(--c-accent); color: #fff; }
.btn--accent:hover { filter: brightness(0.92); }

.btn--ghost { border-color: currentColor; }
.btn--ghost:hover { border-color: var(--c-accent); color: var(--c-accent); }

/* On dark backgrounds */
.on-dark .btn--primary { background: var(--c-accent); }
.on-dark .btn--primary:hover { background: var(--c-accent); filter: brightness(1.08); }
.on-dark .btn--ghost { color: var(--c-on-dark); border-color: var(--c-line-dark); }
.on-dark .btn--ghost:hover { border-color: var(--c-on-dark); color: var(--c-on-dark); }

/* --------------------------------------------------------------------------
   5. SIGNATURE IMAGE FRAME
   --------------------------------------------------------------------------
   Every featured image sits inside a subtle offset hairline frame —
   the one consistent visual signature across all Velour websites.
   -------------------------------------------------------------------------- */
.frame {
  position: relative;
  overflow: visible;
}
.frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}
.frame::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--c-accent);
  border-radius: var(--radius);
  transform: translate(12px, 12px);
  pointer-events: none;
  opacity: 0.75;
  transition: transform var(--t-med) var(--ease);
}
.frame:hover::after { transform: translate(8px, 8px); }

/* Zoom-on-hover treatment for gallery-style imagery */
.zoom { overflow: hidden; border-radius: var(--radius); }
.zoom img { transition: transform 0.9s var(--ease); }
.zoom:hover img { transform: scale(1.05); }

/* --------------------------------------------------------------------------
   6. HEADER / NAVIGATION
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background-color var(--t-med) var(--ease),
              box-shadow var(--t-med) var(--ease);
}
.site-header.is-scrolled {
  background: color-mix(in srgb, var(--c-primary-deep) 92%, transparent);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--c-line-dark);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 1.1rem;
  color: var(--c-on-dark);
}

.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--f-heading);
  font-size: 1.3rem;
  font-weight: 520;
  letter-spacing: 0.01em;
}
.nav-brand svg, .nav-brand img { width: 2rem; height: 2rem; }

.nav-links {
  display: none;
  gap: 2.1rem;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.nav-links a { position: relative; padding-block: 0.3rem; opacity: 0.85; transition: opacity var(--t-fast); }
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; right: 100%; bottom: 0;
  height: 1px;
  background: var(--c-accent);
  transition: right var(--t-fast) var(--ease);
}
.nav-links a:hover { opacity: 1; }
.nav-links a:hover::after { right: 0; }

.nav-cta { display: none; }

@media (min-width: 900px) {
  .nav-links { display: flex; }
  .nav-cta   { display: inline-flex; padding: 0.7rem 1.4rem; }
  .nav-toggle{ display: none; }
}

/* Mobile menu */
.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
}
.nav-toggle span {
  width: 22px; height: 1.5px;
  background: currentColor;
  transition: transform var(--t-fast) var(--ease), opacity var(--t-fast);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
@media (min-width: 900px) { .nav-toggle { display: none; } }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-content: center;
  gap: 1.6rem;
  text-align: center;
  background: color-mix(in srgb, var(--c-primary-deep) 97%, transparent);
  backdrop-filter: blur(8px);
  color: var(--c-on-dark);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--t-med) var(--ease), visibility var(--t-med);
}
.mobile-menu.is-open { opacity: 1; visibility: visible; }
.mobile-menu a {
  font-family: var(--f-heading);
  font-size: 1.7rem;
  transition: color var(--t-fast);
}
.mobile-menu a:hover { color: var(--c-accent); }

/* --------------------------------------------------------------------------
   7. HERO
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: min(100svh, 900px);
  display: flex;
  align-items: flex-end;
  color: var(--c-on-dark);
  background: var(--c-primary-deep);
  overflow: hidden;
}

.hero-slides, .hero-slide { position: absolute; inset: 0; }
.hero-slide {
  opacity: 0;
  transition: opacity 1.6s ease;
}
.hero-slide.is-active { opacity: 1; }
.hero-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-slide.is-active img { animation: hero-drift 16s var(--ease) forwards; }
@keyframes hero-drift {
  from { transform: scale(1.05); }
  to   { transform: scale(1.13) translate(-0.8%, -0.8%); }
}

.hero-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    color-mix(in srgb, var(--c-primary-deep) 45%, transparent) 0%,
    transparent 40%,
    color-mix(in srgb, var(--c-primary-deep) 88%, transparent) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-block: 7.5rem 5rem;
  max-width: 44rem;
}
.hero-content .eyebrow { color: var(--c-accent); }
.hero-content h1 { color: var(--c-on-dark); margin-top: 1.1rem; }
.hero-content p {
  margin-top: 1.4rem;
  max-width: 34rem;
  font-size: 1.1rem;
  color: var(--c-on-dark-soft);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2.2rem; }

.hero-dots {
  position: absolute;
  z-index: 3;
  right: var(--gutter);
  bottom: 2.2rem;
  display: flex;
  gap: 0.5rem;
}
.hero-dots button {
  width: 26px; height: 3px;
  padding: 0;
  background: rgba(255, 255, 255, 0.35);
  transition: background var(--t-fast);
}
.hero-dots button.is-active { background: var(--c-accent); }

/* --------------------------------------------------------------------------
   8. SECTIONS — shared rhythm
   -------------------------------------------------------------------------- */
.section { padding-block: var(--space-section); }
.section--surface { background: var(--c-surface); }
.section--dark {
  background: var(--c-primary);
  color: var(--c-on-dark);
}
.section--dark h2 { color: var(--c-on-dark); }
.section--dark .section-head p,
.section--dark p { color: var(--c-on-dark-soft); }

/* --------------------------------------------------------------------------
   9. ABOUT
   -------------------------------------------------------------------------- */
.about-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 900px) {
  .about-grid { grid-template-columns: 5fr 6fr; gap: clamp(3rem, 7vw, 6rem); }
}
.about-media { aspect-ratio: 5 / 6; max-width: 480px; }
.about-body .eyebrow + h2 { margin-top: 0.9rem; }
.about-body p { margin-top: 1.2rem; color: var(--c-text-soft); }
.about-signature {
  margin-top: 1.6rem;
  font-family: var(--f-heading);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--c-primary);
}

.about-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  margin-top: 2.4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--c-line);
}
.about-stats strong {
  display: block;
  font-family: var(--f-heading);
  font-size: 2rem;
  font-weight: 500;
  color: var(--c-primary);
  line-height: 1;
}
.about-stats span {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-text-soft);
}

/* --------------------------------------------------------------------------
   10. SERVICES
   -------------------------------------------------------------------------- */
.card-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.card {
  background: var(--c-bg);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  transition: transform var(--t-med) var(--ease),
              border-color var(--t-med) var(--ease),
              box-shadow var(--t-med) var(--ease);
}
.card:hover {
  transform: translateY(-4px);
  border-color: var(--c-accent);
  box-shadow: 0 14px 30px -18px rgba(30, 47, 43, 0.35);
}

.card-icon {
  width: 2.6rem; height: 2.6rem;
  display: grid;
  place-items: center;
  color: var(--c-accent);
  border: 1px solid var(--c-line);
  border-radius: 50%;
  margin-bottom: 1.3rem;
}
.card-icon svg { width: 1.2rem; height: 1.2rem; }

.card h3 { color: var(--c-primary); }
.card p  { margin-top: 0.6rem; font-size: 0.95rem; color: var(--c-text-soft); }
.card-price {
  display: inline-block;
  margin-top: 1.1rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-accent);
}

/* Cards inside the dark "why" section */
.section--dark .card { background: transparent; border-color: var(--c-line-dark); }
.section--dark .card:hover { border-color: var(--c-accent); box-shadow: none; }
.section--dark .card h3 { color: var(--c-on-dark); }
.section--dark .card p  { color: var(--c-on-dark-soft); }
.section--dark .card-icon { border-color: var(--c-line-dark); }

/* --------------------------------------------------------------------------
   11. GALLERY
   -------------------------------------------------------------------------- */
.gallery-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 760px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}
.gallery-grid figure { aspect-ratio: 1; }

/* --------------------------------------------------------------------------
   12. PRICE LIST / MENU (shared layout)
   -------------------------------------------------------------------------- */
.pricelist {
  display: grid;
  gap: 3rem;
  max-width: 54rem;
  margin-inline: auto;
}
@media (min-width: 760px) {
  .pricelist { grid-template-columns: 1fr 1fr; gap: 3rem 4rem; }
}
.pricelist-group h3 {
  font-family: var(--f-heading);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--c-primary);
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--c-line);
  margin-bottom: 1.2rem;
}
.pricelist-item {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  padding-block: 0.55rem;
}
.pricelist-item .name { font-weight: 500; }
.pricelist-item .dots {
  flex: 1;
  border-bottom: 1px dotted var(--c-line);
  transform: translateY(-4px);
}
.pricelist-item .price { font-weight: 600; color: var(--c-accent); white-space: nowrap; }
.pricelist-item .desc {
  flex-basis: 100%;
  font-size: 0.9rem;
  color: var(--c-text-soft);
  margin-top: 0.15rem;
}
.pricelist-item.has-desc { flex-wrap: wrap; }
.pricelist-note {
  margin-top: 2.5rem;
  text-align: center;
  font-size: 0.9rem;
  font-style: italic;
  color: var(--c-text-soft);
}

/* --------------------------------------------------------------------------
   13. TEAM
   -------------------------------------------------------------------------- */
.team-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  max-width: 60rem;
  margin-inline: auto;
}
.team-card { text-align: center; }
.team-card figure { aspect-ratio: 4 / 5; margin-bottom: 1.2rem; }
.team-card h3 { font-family: var(--f-heading); font-weight: 500; font-size: 1.25rem; color: var(--c-primary); }
.team-card p  { font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--c-text-soft); margin-top: 0.3rem; }

/* --------------------------------------------------------------------------
   14. OPENING HOURS
   -------------------------------------------------------------------------- */
.hours-list {
  max-width: 30rem;
  margin-inline: auto;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.9rem;
  border-bottom: 1px solid var(--c-line);
}
.hours-row:last-child { border-bottom: none; }
.hours-row .days  { font-weight: 500; }
.hours-row .hours { color: var(--c-text-soft); }
.section--dark .hours-row { border-color: var(--c-line-dark); }
.section--dark .hours-row .hours { color: var(--c-on-dark-soft); }

/* --------------------------------------------------------------------------
   15. TESTIMONIALS
   -------------------------------------------------------------------------- */
.reviews-slider { position: relative; max-width: 46rem; margin-inline: auto; text-align: center; }
.review-slide { display: none; }
.review-slide.is-active { display: block; animation: review-in 0.5s var(--ease); }
@keyframes review-in {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: none; }
}

.review-quote {
  font-family: var(--f-heading);
  font-size: clamp(1.25rem, 2.6vw, 1.7rem);
  font-weight: 420;
  font-style: italic;
  line-height: 1.45;
  color: var(--c-primary);
}
.review-quote::before { content: '\201C'; color: var(--c-accent); }
.review-quote::after  { content: '\201D'; color: var(--c-accent); }
.review-meta { margin-top: 1.6rem; }
.review-meta strong { display: block; font-weight: 600; }
.review-meta span   { font-size: 0.85rem; color: var(--c-text-soft); }

.reviews-nav {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2.2rem;
}
.reviews-nav button {
  width: 26px; height: 3px; padding: 0;
  background: var(--c-line);
  transition: background var(--t-fast);
}
.reviews-nav button.is-active { background: var(--c-accent); }

/* --------------------------------------------------------------------------
   16. FAQ
   -------------------------------------------------------------------------- */
.faq-list { max-width: 44rem; margin-inline: auto; }
.faq-item {
  border-bottom: 1px solid var(--c-line);
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 1.35rem;
  font-weight: 500;
  font-size: 1.05rem;
  cursor: pointer;
  list-style: none;
  transition: color var(--t-fast);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--c-accent); }
.faq-item summary::after {
  content: '+';
  flex-shrink: 0;
  font-family: var(--f-heading);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--c-accent);
  transition: transform var(--t-fast) var(--ease);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  padding-bottom: 1.4rem;
  max-width: 40rem;
  color: var(--c-text-soft);
}

/* --------------------------------------------------------------------------
   17. CONTACT
   -------------------------------------------------------------------------- */
.contact-grid {
  display: grid;
  gap: 3.5rem;
}
@media (min-width: 900px) {
  .contact-grid { grid-template-columns: 5fr 6fr; gap: clamp(3rem, 6vw, 5.5rem); }
}

.contact-methods { display: grid; gap: 1.4rem; margin-top: 2.2rem; }
.contact-intro { margin-top: 1rem; color: var(--c-text-soft); }
.contact-method { display: flex; gap: 1.1rem; align-items: flex-start; }
.contact-method .card-icon { margin: 0; flex-shrink: 0; width: 2.4rem; height: 2.4rem; }
.contact-method strong {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-text-soft);
  margin-bottom: 0.2rem;
}
.contact-method a, .contact-method span.value { font-size: 1.02rem; font-weight: 500; }
.contact-method a { transition: color var(--t-fast); }
.contact-method a:hover { color: var(--c-accent); }

/* Form */
.form-grid { display: grid; gap: 1.1rem; }
@media (min-width: 560px) {
  .form-grid { grid-template-columns: 1fr 1fr; }
  .form-grid .full { grid-column: 1 / -1; }
}
.field label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-text-soft);
  margin-bottom: 0.45rem;
}
.field input, .field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  font: inherit;
  color: var(--c-text);
  background: var(--c-bg);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  transition: border-color var(--t-fast);
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--c-accent);
}
.field textarea { resize: vertical; min-height: 8rem; }
.form-status { font-size: 0.95rem; margin-top: 0.4rem; }
.form-status.is-ok    { color: #2F7A4D; }
.form-status.is-error { color: #B4483E; }
.honeypot { position: absolute; left: -9999px; opacity: 0; }

/* Map */
.map-wrap { margin-top: var(--space-head); }
.map-wrap iframe {
  width: 100%;
  height: 380px;
  border: 0;
  border-radius: var(--radius);
  filter: grayscale(0.4) contrast(1.02);
}
.map-placeholder {
  height: 380px;
  display: grid;
  place-content: center;
  gap: 0.8rem;
  text-align: center;
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  color: var(--c-text-soft);
}
.map-placeholder svg { width: 2rem; height: 2rem; margin-inline: auto; color: var(--c-accent); }

/* --------------------------------------------------------------------------
   18. CTA BAND
   -------------------------------------------------------------------------- */
.cta-band {
  position: relative;
  padding-block: clamp(5rem, 12vw, 9rem);
  color: var(--c-on-dark);
  background: var(--c-primary-deep);
  overflow: hidden;
  text-align: center;
}
.cta-band .bg {
  position: absolute; inset: 0;
  opacity: 0.35;
}
.cta-band .bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-band .container { position: relative; z-index: 2; max-width: 46rem; }
.cta-band h2 { color: var(--c-on-dark); margin-top: 1rem; }
.cta-band p  { margin-top: 1.2rem; color: var(--c-on-dark-soft); }
.cta-band .btn { margin-top: 2.2rem; }
.cta-band .eyebrow { justify-content: center; }
.cta-band .eyebrow::before { display: none; }

/* --------------------------------------------------------------------------
   19. FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--c-primary-deep);
  color: var(--c-on-dark-soft);
  padding-block: 4rem 2rem;
  font-size: 0.95rem;
}
.footer-grid {
  display: grid;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--c-line-dark);
}
@media (min-width: 760px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; gap: 3rem; }
}
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--f-heading);
  font-size: 1.35rem;
  color: var(--c-on-dark);
}
.footer-brand svg, .footer-brand img { width: 1.9rem; height: 1.9rem; }
.footer-tagline { margin-top: 0.9rem; max-width: 26rem; }

.site-footer h3 {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 1.1rem;
}
.site-footer li { padding-block: 0.3rem; }
.site-footer a { transition: color var(--t-fast); }
.site-footer a:hover { color: var(--c-on-dark); }

.footer-social { display: flex; gap: 0.9rem; margin-top: 1.5rem; }
.footer-social a {
  display: grid;
  place-items: center;
  width: 2.4rem; height: 2.4rem;
  border: 1px solid var(--c-line-dark);
  border-radius: 50%;
  transition: border-color var(--t-fast), color var(--t-fast);
}
.footer-social a:hover { border-color: var(--c-accent); color: var(--c-accent); }
.footer-social svg { width: 1rem; height: 1rem; }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.8rem;
  padding-top: 1.8rem;
  font-size: 0.82rem;
}

/* --------------------------------------------------------------------------
   20. SCROLL REVEAL (progressive enhancement)
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }
/* If JS never runs, content stays visible */
.no-js .reveal { opacity: 1; transform: none; }

/* --------------------------------------------------------------------------
   21. REDUCED MOTION
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
