/*
Theme Name: Fleet Preserve Bespoke Theme
Description: Lightweight design system theme for marine consulting and structural engineering.
Version: 1.0
Author: Fleet Preserve
License: GNU General Public License v2 or later
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Source+Serif+4:ital,wght@0,400;0,500;1,400&display=swap');

/* ---------- Rest of your existing tokens and CSS rules follow exactly... ---------- */


/* =============================================================
   Fleet Preserve — Design System Stylesheet
   Implements the Brand & Visual Direction spec (Deliverable 2).
   ============================================================= */

/* ---------- Tokens ---------- */
:root {
  --c-hull-navy:   #16294A;
  --c-steel-blue:  #4D8AAB;
  --c-deep-ocean:  #0A1A2F;
  --c-fog:         #F4F6F9;
  --c-mist:        #DBE3EB;
  --c-slate:       #5B6B7F;
  --c-white:       #FFFFFF;
  --c-sextant:     #C9A24B;

  --c-link:        var(--c-steel-blue);
  --c-link-hover:  var(--c-hull-navy);

  --c-error:       #B23A48;
  --c-success:     #1E6A36;

  --font-sans:  'Inter', system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
  --font-serif: 'Source Serif 4', Charter, Georgia, serif;
  --font-mono:  'JetBrains Mono', 'SF Mono', Consolas, monospace;

  --radius-sm: 2px;
  --radius-md: 4px;

  --max-w: 1200px;
  --section-y: 96px;
  --section-y-mobile: 56px;

  --t-fast: 180ms cubic-bezier(.2,.6,.2,1);
  --t-base: 280ms cubic-bezier(.2,.6,.2,1);
  --t-slow: 600ms cubic-bezier(.2,.6,.2,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { margin: 0; }
img, svg, video { display: block; max-width: 100%; height: auto; }
button { font: inherit; cursor: pointer; }
a { color: var(--c-link); text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--c-link-hover); }

/* ---------- Base typography ---------- */
body {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--c-deep-ocean);
  background: var(--c-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
  font-family: var(--font-sans);
  color: var(--c-hull-navy);
  font-weight: 700;
  margin: 0 0 0.5em;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
h1 { font-size: clamp(2.2rem, 4.5vw, 3.5rem); letter-spacing: -0.025em; }
h2 { font-size: clamp(1.75rem, 3vw, 2.25rem); }
h3 { font-size: 1.5rem; letter-spacing: -0.01em; line-height: 1.25; }
h4 { font-size: 1.125rem; line-height: 1.3; }
p  { margin: 0 0 1em; }

.eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-slate);
  display: inline-block;
  margin-bottom: 1em;
}
.eyebrow.on-dark { color: #9CC2D8; }

.lead {
  font-size: 1.25rem;
  line-height: 1.55;
  color: var(--c-deep-ocean);
}

/* ---------- Containers / sections ---------- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
section { padding: var(--section-y) 0; }
section.tight { padding: 64px 0; }
section.fog { background: var(--c-fog); }
section.navy { background: var(--c-hull-navy); color: var(--c-white); }
section.navy h1, section.navy h2, section.navy h3 { color: var(--c-white); }

@media (max-width: 720px) {
  section { padding: var(--section-y-mobile) 0; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
  background: var(--c-hull-navy);
  color: var(--c-white);
  border: none;
  border-radius: var(--radius-sm);
  transition: background var(--t-fast), transform var(--t-fast);
  text-decoration: none;
}
.btn:hover {
  background: var(--c-deep-ocean);
  color: var(--c-white);
  transform: translateY(-1px);
}
.btn--secondary {
  background: transparent;
  color: var(--c-hull-navy);
  border: 1.5px solid var(--c-hull-navy);
}
.btn--secondary:hover {
  background: var(--c-fog);
  color: var(--c-hull-navy);
}
.btn--ghost-light {
  background: transparent;
  color: var(--c-white);
  border: 1.5px solid rgba(255,255,255,0.5);
}
.btn--ghost-light:hover {
  background: rgba(255,255,255,0.1);
  color: var(--c-white);
  border-color: var(--c-white);
}
.btn .arrow { display: inline-block; transition: transform var(--t-fast); }
.btn:hover .arrow { transform: translateX(3px); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  background: transparent;
  transition: background var(--t-base), border-color var(--t-base);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled,
.site-header.solid {
  background: rgba(22, 41, 74, 0.97);
  backdrop-filter: blur(8px);
  border-bottom-color: rgba(255,255,255,0.08);
}
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  max-width: 1320px;
  margin: 0 auto;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--c-white);
  font-family: var(--font-sans);
  font-weight: 700;
  letter-spacing: 0.04em;
  font-size: 1.15rem;
}
.nav-logo img { height: 38px; width: auto; }
.nav-logo .wordmark { display: inline-flex; gap: 0; }
.nav-logo .wordmark .a { color: var(--c-white); }
.nav-logo .wordmark .b { color: #9CC2D8; }
.nav-logo:hover { color: var(--c-white); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.nav-links a {
  color: var(--c-white);
  font-weight: 500;
  font-size: 15px;
  position: relative;
  padding: 8px 2px;
}
.nav-links a:hover { color: #9CC2D8; }
.nav-links a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: #9CC2D8;
}
.nav-cta { padding: 10px 20px; font-size: 14px; background: #9CC2D8; color: var(--c-hull-navy); }
.nav-cta:hover { background: var(--c-white); color: var(--c-hull-navy); }

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--c-white);
  padding: 8px;
}
.nav-toggle svg { width: 24px; height: 24px; }

@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .site-header.menu-open { background: rgba(22, 41, 74, 0.99); }
  .site-header.menu-open .nav-links {
    display: flex;
    position: absolute;
    inset: 100% 0 auto 0;
    flex-direction: column;
    gap: 0;
    padding: 16px 24px 24px;
    background: rgba(22,41,74,0.99);
  }
  .site-header.menu-open .nav-links a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    width: 100%;
  }
  .site-header.menu-open .nav-links li:last-child a { border-bottom: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 120px;
  padding-bottom: 100px;
  background:
    radial-gradient(ellipse at 70% 20%, rgba(77,138,171,0.25) 0%, transparent 60%),
    linear-gradient(180deg, #0a1a2f 0%, #16294a 100%);
  color: var(--c-white);
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-bg-ship {
  position: absolute;
  inset: auto 0 18% 0;
  width: 100%;
  pointer-events: none;
  opacity: 0.85;
  transform-origin: center;
  transition: transform 100ms linear;
}
.hero-bg-ship svg { width: 100%; height: auto; }

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.hero h1 {
  color: var(--c-white);
  font-size: clamp(2.4rem, 6.5vw, 5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 24px;
}
.hero h1 .accent { color: #9CC2D8; }
.hero-sub {
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  line-height: 1.5;
  color: rgba(255,255,255,0.85);
  margin-bottom: 36px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* SVG line-draw animation for the ship */
.ship-lines .hull-line {
  stroke-dasharray: 2000;
  stroke-dashoffset: 2000;
  animation: draw 2.6s cubic-bezier(.2,.7,.3,1) 0.4s forwards;
}
.ship-lines .hull-line:nth-child(n+5) { animation-delay: 1.2s; }
.ship-lines .hull-line:nth-child(n+10) { animation-delay: 1.6s; }
.wave-line {
  stroke-dasharray: 2000;
  stroke-dashoffset: 2000;
  animation: draw 3s linear 2s forwards;
}
@keyframes draw {
  to { stroke-dashoffset: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .ship-lines .hull-line, .wave-line { animation: none; stroke-dashoffset: 0; }
  .hero-bg-ship { transition: none; }
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.5);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  animation: hint 2.4s ease-in-out infinite;
  z-index: 3;
}
@keyframes hint {
  0%, 100% { transform: translate(-50%, 0); opacity: 0.5; }
  50% { transform: translate(-50%, 6px); opacity: 0.9; }
}

/* ---------- Generic page header (non-home) ---------- */
.page-header {
  background:
    radial-gradient(ellipse at 80% 30%, rgba(77,138,171,0.18) 0%, transparent 60%),
    linear-gradient(180deg, #0a1a2f 0%, #16294a 100%);
  color: var(--c-white);
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-header h1 { color: var(--c-white); }
.page-header .lead { color: rgba(255,255,255,0.85); max-width: 720px; }
.page-header .eyebrow { color: #9CC2D8; }
.breadcrumb {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 32px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.breadcrumb a { color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: var(--c-white); }
.breadcrumb .sep { margin: 0 10px; }

/* ---------- Stats strip ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 64px 0;
  border-bottom: 1px solid var(--c-mist);
}
.stat .num {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 700;
  color: var(--c-hull-navy);
  letter-spacing: -0.03em;
  line-height: 1;
  display: block;
}
.stat .label {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-slate);
  margin-top: 12px;
  display: block;
}
@media (max-width: 720px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Section headers ---------- */
.section-head {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-head.left { margin-left: 0; text-align: left; }
.section-head h2 { margin-bottom: 16px; }
.section-head p { color: var(--c-slate); font-size: 1.1rem; }

/* ---------- Flagship cards (large) ---------- */
.flagship {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.flag-card {
  background: var(--c-white);
  border: 1px solid var(--c-mist);
  padding: 32px;
  position: relative;
  transition: border-color var(--t-base), transform var(--t-base), box-shadow var(--t-base);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.flag-card:hover {
  border-color: var(--c-steel-blue);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(22,41,74,0.07);
  color: inherit;
}
.flag-card .icon {
  width: 48px; height: 48px;
  margin-bottom: 24px;
  color: var(--c-steel-blue);
}
.flag-card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}
.flag-card p {
  color: var(--c-slate);
  font-size: 0.97rem;
  flex-grow: 1;
}
.flag-card .more {
  margin-top: 16px;
  color: var(--c-hull-navy);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
}
.flag-card .more .arrow { transition: transform var(--t-fast); display: inline-block; }
.flag-card:hover .more .arrow { transform: translateX(4px); }

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

/* ---------- Services grid (smaller cards) ---------- */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.svc-card {
  background: var(--c-white);
  border: 1px solid var(--c-mist);
  padding: 24px;
  text-decoration: none;
  color: inherit;
  transition: border-color var(--t-base), transform var(--t-base);
  display: block;
}
.svc-card:hover {
  border-color: var(--c-steel-blue);
  transform: translateY(-2px);
  color: inherit;
}
.svc-card .eyebrow { margin-bottom: 8px; font-size: 11px; }
.svc-card h4 { color: var(--c-hull-navy); margin-bottom: 8px; }
.svc-card p { font-size: 0.92rem; color: var(--c-slate); margin: 0; }

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

/* ---------- Two-column "who-we-work-with" ---------- */
.audience {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.aud-tile {
  border-top: 2px solid var(--c-hull-navy);
  padding-top: 24px;
}
.aud-tile h4 { margin-bottom: 12px; }
.aud-tile p { color: var(--c-slate); font-size: 0.97rem; }
@media (max-width: 880px) { .audience { grid-template-columns: 1fr; } }

/* ---------- Positioning quote block ---------- */
.positioning {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.positioning p {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2.2vw, 1.6rem);
  line-height: 1.5;
  color: var(--c-hull-navy);
  font-style: italic;
}
.positioning .attrib {
  display: block;
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-slate);
  margin-top: 24px;
}

/* ---------- Insights teaser ---------- */
.insight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.insight-card {
  text-decoration: none;
  color: inherit;
  display: block;
  border-bottom: 2px solid var(--c-mist);
  padding-bottom: 24px;
  transition: border-color var(--t-base);
}
.insight-card:hover { border-bottom-color: var(--c-hull-navy); color: inherit; }
.insight-card .thumb {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--c-hull-navy), var(--c-steel-blue));
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}
.insight-card .thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 70%, rgba(255,255,255,0.08), transparent 60%),
    repeating-linear-gradient(0deg, transparent, transparent 4px, rgba(255,255,255,0.03) 4px, rgba(255,255,255,0.03) 5px);
}
.insight-card h4 { color: var(--c-hull-navy); font-size: 1.15rem; margin-bottom: 8px; }
.insight-card p { color: var(--c-slate); font-size: 0.95rem; margin: 0; }
@media (max-width: 880px) { .insight-grid { grid-template-columns: 1fr; } }

/* ---------- CTA strip ---------- */
.cta-strip {
  background: var(--c-hull-navy);
  color: var(--c-white);
  padding: 72px 0;
}
.cta-strip .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-strip h2 {
  color: var(--c-white);
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2rem);
}
.cta-strip p {
  color: rgba(255,255,255,0.75);
  margin: 8px 0 0;
}
.cta-strip-text { flex: 1; min-width: 260px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--c-deep-ocean);
  color: rgba(255,255,255,0.75);
  padding: 80px 0 32px;
  font-size: 14px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-grid h5 {
  color: var(--c-white);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 20px;
  font-weight: 600;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 10px; }
.footer-grid a { color: rgba(255,255,255,0.75); }
.footer-grid a:hover { color: var(--c-white); }

.footer-brand img { height: 56px; margin-bottom: 16px; }
.footer-brand p { color: rgba(255,255,255,0.6); max-width: 280px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}
.footer-bottom a { color: rgba(255,255,255,0.5); margin-left: 16px; }
.footer-bottom a:hover { color: var(--c-white); }

@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---------- Forms ---------- */
.form-row { margin-bottom: 24px; }
.form-row label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-slate);
  font-weight: 600;
  margin-bottom: 8px;
}
.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  padding: 12px 0;
  border: none;
  border-bottom: 1.5px solid var(--c-mist);
  background: transparent;
  font: inherit;
  color: var(--c-deep-ocean);
  transition: border-color var(--t-fast);
}
.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  outline: none;
  border-bottom-color: var(--c-steel-blue);
  border-bottom-width: 2px;
}
.form-row textarea { min-height: 120px; resize: vertical; }

/* ---------- Service page (detail) ---------- */
.svc-body {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 64px;
  align-items: start;
}
.svc-body article p, .svc-body article ul { font-size: 17px; line-height: 1.7; color: var(--c-deep-ocean); }
.svc-body article ul { padding-left: 20px; }
.svc-body article ul li { margin-bottom: 8px; }
.svc-body article h3 { margin-top: 40px; }

.svc-aside {
  background: var(--c-fog);
  padding: 28px;
  border-top: 3px solid var(--c-hull-navy);
  position: sticky;
  top: 100px;
}
.svc-aside h4 { margin-bottom: 16px; font-size: 1rem; }
.svc-aside ul { padding-left: 18px; margin: 0 0 24px; }
.svc-aside ul li { margin-bottom: 6px; font-size: 14px; }
.svc-aside .btn { width: 100%; justify-content: center; }

@media (max-width: 960px) {
  .svc-body { grid-template-columns: 1fr; }
  .svc-aside { position: static; }
}

.trigger-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 24px 0 32px;
}
.trigger {
  background: var(--c-fog);
  padding: 20px;
  border-left: 3px solid var(--c-steel-blue);
}
.trigger h5 {
  color: var(--c-hull-navy);
  font-size: 0.95rem;
  margin: 0 0 6px;
}
.trigger p { color: var(--c-slate); font-size: 0.92rem; margin: 0; }
@media (max-width: 720px) { .trigger-grid { grid-template-columns: 1fr; } }

/* ---------- About — founders panel ---------- */
.founders {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.founder {
  background: var(--c-fog);
  padding: 32px;
  border-top: 3px solid var(--c-hull-navy);
}
.founder .portrait {
  width: 120px; height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-hull-navy), var(--c-steel-blue));
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-white);
  font-weight: 700;
  font-size: 36px;
  letter-spacing: 0.05em;
}
.founder h3 { font-size: 1.3rem; margin-bottom: 4px; }
.founder .role { color: var(--c-slate); font-size: 14px; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 16px; }
.founder p { font-size: 0.97rem; color: var(--c-deep-ocean); }
@media (max-width: 720px) { .founders { grid-template-columns: 1fr; } }

/* ---------- Philosophy tiles ---------- */
.philosophy {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 24px;
}
.phil-tile {
  padding: 24px;
  border-top: 2px solid var(--c-steel-blue);
}
.phil-tile h4 { font-size: 1rem; margin-bottom: 8px; }
.phil-tile p { font-size: 0.92rem; color: var(--c-slate); margin: 0; }
@media (max-width: 880px) { .philosophy { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .philosophy { grid-template-columns: 1fr; } }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  align-items: start;
}
.contact-info h3 { font-size: 1.2rem; margin-top: 32px; margin-bottom: 8px; }
.contact-info h3:first-child { margin-top: 0; }
.contact-info p, .contact-info a { color: var(--c-deep-ocean); margin: 0; }
.contact-info .response {
  margin-top: 32px;
  padding: 20px;
  background: var(--c-fog);
  border-left: 3px solid var(--c-steel-blue);
}
.contact-info .response p { font-size: 0.95rem; color: var(--c-slate); margin: 0; }
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; gap: 32px; } }

/* ---------- Utility / accessibility ---------- */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--c-hull-navy);
  color: var(--c-white);
  padding: 12px 20px;
  z-index: 100;
}
.skip-link:focus { top: 0; color: var(--c-white); }

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 700ms ease, transform 700ms ease;
}
.fade-in.in {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .fade-in { opacity: 1; transform: none; transition: none; }
}
