/* ============================================================
   The Crew Edition · Super Yacht CVs
   Nautical-luxe: deep navy, warm paper, brushed gold.
   No frameworks, no build step.
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  --navy: #0a1b33;
  --navy-2: #0e2547;
  --navy-3: #14304f;
  --ink: #1b2a41;
  --ink-soft: #46586f;
  --paper: #f7f3ec;
  --cream: #efe8db;
  --white: #ffffff;
  --gold: #c6a15b;
  --gold-soft: #e2cd9f;
  --gold-deep: #a37f3c;
  --wa: #25d366;
  --wa-deep: #17b757;
  --mist: #b9c6d8;

  --font-serif: "Fraunces", Georgia, "Times New Roman", serif;
  --font-sans: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 18px 45px -18px rgba(10, 27, 51, 0.28);
  --shadow-soft: 0 10px 30px -14px rgba(10, 27, 51, 0.18);
  --container: 1120px;
}

/* ---------- Base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.12;
  margin: 0 0 0.6em;
  letter-spacing: 0.01em;
}

h1 {
  font-size: clamp(2.6rem, 6.2vw, 4.35rem);
}

h2 {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
}

h3 {
  font-size: 1.35rem;
}

h1 em, h2 em {
  font-style: italic;
  color: var(--gold);
}

p {
  margin: 0 0 1em;
}

a {
  color: var(--gold-deep);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

.container-narrow {
  max-width: 780px;
}

.section {
  position: relative;
  padding: clamp(4rem, 9vw, 6.5rem) 0;
}

.section-light {
  background: var(--paper);
}

.section-cream {
  background: var(--cream);
}

.section-dark {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-2) 100%);
  color: #eef2f7;
}

.section-dark h2 {
  color: var(--white);
}

.eyebrow {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 0.9rem;
}

.section-dark .eyebrow,
.hero .eyebrow {
  color: var(--gold);
}

.lead {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--ink-soft);
  max-width: 46ch;
}

.section-sub {
  color: var(--mist);
  margin-top: -0.4rem;
  margin-bottom: 2.6rem;
  max-width: 52ch;
}

.br-desktop {
  display: none;
}

@media (min-width: 700px) {
  .br-desktop {
    display: block;
  }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
  white-space: nowrap;
}

.btn svg {
  width: 1.15em;
  height: 1.15em;
  flex: none;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn-wa {
  background: var(--wa);
  color: #fff;
  box-shadow: 0 12px 28px -10px rgba(37, 211, 102, 0.55);
}

.btn-wa:hover {
  background: var(--wa-deep);
}

.btn-ghost {
  color: var(--gold-soft);
  border-color: rgba(198, 161, 91, 0.55);
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--white);
  background: rgba(198, 161, 91, 0.12);
}

.btn-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}

.btn-outline:hover {
  border-color: var(--wa);
  color: var(--wa);
}

.btn-sm {
  padding: 0.6rem 1.15rem;
  font-size: 0.9rem;
}

.btn-lg {
  padding: 1rem 1.9rem;
  font-size: 1.05rem;
}

.btn-xl {
  padding: 1.15rem 2.3rem;
  font-size: 1.15rem;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 27, 51, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.25s ease;
}

.site-header.scrolled {
  background: rgba(10, 27, 51, 0.92);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
}

.brand-icon {
  width: 30px;
  height: 30px;
  color: var(--gold);
  flex: none;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-name {
  font-family: "Aurora", var(--font-serif);
  font-style: normal;
  font-size: 1.7rem;
  font-feature-settings: "liga" 1, "calt" 1;
  color: var(--white);
}

.brand-sub {
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.site-nav > a:not(.btn) {
  color: #dfe6ef;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.15s ease;
}

.site-nav > a:not(.btn):hover {
  color: var(--gold);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: none;
  border: 0;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
    padding: 1rem 1.25rem 1.4rem;
    background: rgba(10, 27, 51, 0.97);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: none;
  }

  .site-nav > a:not(.btn) {
    padding: 0.55rem 0;
    font-size: 1.05rem;
    width: 100%;
  }

  .site-nav .nav-cta {
    margin-top: 0.6rem;
  }

  .site-header.nav-open .site-nav {
    display: flex;
  }

  .site-header.nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .site-header.nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.nav-open .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(1100px 480px at 78% -10%, rgba(198, 161, 91, 0.16), transparent 60%),
    radial-gradient(900px 420px at 12% 8%, rgba(37, 211, 102, 0.07), transparent 55%),
    linear-gradient(180deg, var(--navy) 0%, var(--navy-2) 72%, var(--navy-3) 100%);
  color: #eef2f7;
  padding: clamp(4.5rem, 10vw, 7.5rem) 0 0;
  margin-top: calc(-1 * (61px));
  /* pull hero behind the translucent sticky header */
  padding-top: calc(clamp(4.5rem, 10vw, 7.5rem) + 61px);
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(600px 220px at 50% 108%, rgba(198, 161, 91, 0.18), transparent 70%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 0.45em;
  text-wrap: balance;
}

.hero .lead {
  color: var(--mist);
  margin-inline: auto;
  max-width: 56ch;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  justify-content: center;
  margin-top: 1.6rem;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 2.2rem;
}

.chips li {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(198, 161, 91, 0.35);
  background: rgba(255, 255, 255, 0.04);
  color: #e8ddc4;
  font-size: 0.86rem;
  font-weight: 600;
}

.chips svg {
  width: 1.05em;
  height: 1.05em;
  color: var(--gold);
  flex: none;
}

.hero-sea {
  position: relative;
  margin-top: clamp(1.5rem, 4vw, 3rem);
  display: flex;
  justify-content: center;
  color: var(--gold);
}

.hero-sea .yacht {
  width: min(680px, 92vw);
  height: auto;
  opacity: 0.9;
}

.yacht-body,
.hero-sea g[fill] {
  animation: bob 6s ease-in-out infinite;
}

.hero-sea g[stroke][stroke-width="2"]:not(.yacht-waves) {
  animation: bob 6s ease-in-out infinite;
}

.yacht-waves {
  animation: drift 9s ease-in-out infinite;
}

@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

@keyframes drift {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(14px); }
}

/* ---------- Wave dividers ---------- */
.wave-divider {
  line-height: 0;
}

.wave-divider svg {
  display: block;
  width: 100%;
  height: clamp(46px, 8vw, 110px);
}

.section-dark .wave-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.section-dark .wave-divider:last-child {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.section-dark {
  padding-top: clamp(7rem, 14vw, 10rem);
  padding-bottom: clamp(7rem, 14vw, 10rem);
}

/* ---------- Why me ---------- */
.why-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.why-story .btn {
  margin-top: 0.6rem;
}

.why-story p {
  max-width: 58ch;
}

.portrait {
  margin: 0;
  justify-self: center;
  text-align: center;
}

.portrait-frame {
  position: relative;
  width: min(320px, 74vw);
  aspect-ratio: 4 / 5;
  border-radius: 160px 160px var(--radius) var(--radius);
  overflow: hidden;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-3) 100%);
  box-shadow: var(--shadow);
  border: 6px solid var(--white);
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portrait-fallback {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(240px 200px at 50% 20%, rgba(198, 161, 91, 0.25), transparent 70%),
    linear-gradient(160deg, var(--navy) 0%, var(--navy-3) 100%);
}

.portrait-fallback svg {
  width: 42%;
  aspect-ratio: 1;
  color: var(--gold);
}

.portrait-frame.no-photo img {
  display: none;
}

.portrait-frame.no-photo .portrait-fallback {
  display: flex;
}

.portrait figcaption {
  margin-top: 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
}

/* ---------- Stats ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: clamp(2.6rem, 6vw, 4rem);
}

.stats li {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem 1.4rem;
  box-shadow: var(--shadow-soft);
  border-top: 3px solid var(--gold);
}

.stat-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.6rem;
  line-height: 1;
  color: var(--navy);
}

.stat-num small {
  font-size: 0.5em;
  color: var(--gold-deep);
}

.stat-label {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.86rem;
  color: var(--ink-soft);
  line-height: 1.45;
}

/* ---------- Timeline ---------- */
.timeline-wrap {
  margin-top: clamp(3rem, 7vw, 5rem);
}

.timeline-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 1.8rem;
}

.timeline {
  position: relative;
  display: grid;
  gap: 1.4rem;
  padding-left: 2.1rem;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: linear-gradient(180deg, var(--gold) 0%, rgba(198, 161, 91, 0.25) 100%);
}

.timeline li {
  position: relative;
}

.timeline li::before {
  content: "";
  position: absolute;
  left: -2.1rem;
  top: 8px;
  width: 14px;
  height: 14px;
  margin-left: 2px;
  border-radius: 50%;
  background: var(--paper);
  border: 3px solid var(--gold);
}

.timeline h4 {
  font-size: 1.15rem;
  margin-bottom: 0.25rem;
  color: var(--navy);
}

.timeline p {
  margin: 0;
  color: var(--ink-soft);
  max-width: 62ch;
}

.timeline-you h4 {
  color: var(--gold-deep);
  font-style: italic;
}

.timeline-you::before {
  background: var(--gold) !important;
}

/* ---------- Services ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  align-items: stretch;
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 2rem 1.7rem 1.8rem;
  backdrop-filter: blur(4px);
}

.card h3 {
  color: var(--white);
  margin-bottom: 0.2rem;
}

.price {
  font-family: var(--font-serif);
  font-size: 2.3rem;
  color: var(--gold);
  margin-bottom: 0.4rem;
  line-height: 1;
}

.card-tag {
  color: var(--mist);
  font-size: 0.92rem;
  min-height: 2.6em;
  margin-bottom: 1rem;
}

.card ul {
  display: grid;
  gap: 0.65rem;
  margin-bottom: 1.8rem;
  flex: 1;
}

.card li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-size: 0.94rem;
  color: #dbe3ec;
}

.card li svg {
  width: 1.05em;
  height: 1.05em;
  flex: none;
  margin-top: 0.22em;
  color: var(--wa);
}

.card .btn {
  justify-content: center;
}

.card-featured {
  background: rgba(198, 161, 91, 0.1);
  border-color: rgba(198, 161, 91, 0.5);
  box-shadow: 0 24px 60px -24px rgba(0, 0, 0, 0.55);
  transform: translateY(-10px);
}

.card-flag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.35rem 0.95rem;
  border-radius: 999px;
  margin: 0;
  white-space: nowrap;
}

.services-note {
  margin-top: 2.2rem;
  text-align: center;
  color: var(--mist);
  font-size: 0.95rem;
  font-style: italic;
}

/* ---------- Steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  counter-reset: step;
  margin-top: 2.4rem;
}

.steps li {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.7rem;
  box-shadow: var(--shadow-soft);
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  font-family: var(--font-serif);
  font-size: 1.4rem;
  margin-bottom: 1.1rem;
}

.steps h3 {
  font-size: 1.25rem;
  margin-bottom: 0.4rem;
}

.steps p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.97rem;
}

/* ---------- Testimonials ---------- */
.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin-top: 2.4rem;
}

.quote {
  margin: 0;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.9rem 1.7rem;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  position: relative;
}

.quote::before {
  content: "“";
  position: absolute;
  top: 0.2rem;
  right: 1.2rem;
  font-family: var(--font-serif);
  font-size: 4.6rem;
  line-height: 1;
  color: rgba(198, 161, 91, 0.28);
}

.quote-stars {
  display: flex;
  gap: 0.2rem;
  margin-bottom: 0.9rem;
}

.quote-stars svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
}

.quote blockquote {
  margin: 0 0 1.2rem;
  font-size: 0.99rem;
  color: var(--ink);
  flex: 1;
}

.quote figcaption {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink-soft);
  letter-spacing: 0.03em;
}

/* ---------- FAQ ---------- */
.faq-list {
  display: grid;
  gap: 0.8rem;
  margin-top: 2.2rem;
}

.faq-list details {
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-soft);
  padding: 0 1.4rem;
  overflow: hidden;
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 0;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-icon {
  position: relative;
  flex: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid var(--gold);
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 2px;
  background: var(--gold-deep);
  transform: translate(-50%, -50%);
  transition: transform 0.25s ease;
}

.faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

details[open] .faq-icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-list details p {
  margin: 0;
  padding: 0 0 1.3rem;
  color: var(--ink-soft);
}

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  background:
    radial-gradient(700px 300px at 50% 120%, rgba(198, 161, 91, 0.22), transparent 70%),
    linear-gradient(180deg, var(--navy-2) 0%, var(--navy) 100%);
  color: #eef2f7;
  text-align: center;
  padding: clamp(4.5rem, 10vw, 7rem) 0;
}

.cta-band h2 {
  color: var(--white);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
}

.cta-band .lead {
  margin-inline: auto;
  color: var(--mist);
}

.cta-band .btn {
  margin-top: 1.4rem;
}

.cta-note {
  margin-top: 1.4rem;
  font-size: 0.9rem;
  color: rgba(226, 205, 159, 0.75);
  font-style: italic;
}

/* ---------- Footer ---------- */
.site-footer {
  background: #071426;
  color: var(--mist);
  padding: 3rem 0 1.5rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 2.2rem;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-brand p {
  margin-top: 0.8rem;
  font-size: 0.9rem;
  font-style: italic;
  color: #7f92aa;
}

.footer-nav {
  display: grid;
  gap: 0.45rem;
}

.footer-nav a {
  color: var(--mist);
  text-decoration: none;
  font-size: 0.94rem;
}

.footer-nav a:hover {
  color: var(--gold);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.7rem;
}

.footer-contact a:not(.btn) {
  color: var(--mist);
  font-size: 0.94rem;
}

.footer-copy {
  margin: 2.5rem 0 0;
  text-align: center;
  font-size: 0.8rem;
  color: #5d708a;
}

/* ---------- Floating WhatsApp button ---------- */
.wa-fab {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--wa);
  color: #fff;
  box-shadow: 0 14px 34px -10px rgba(37, 211, 102, 0.65);
  transition: transform 0.18s ease, background 0.18s ease;
}

.wa-fab svg {
  width: 30px;
  height: 30px;
}

.wa-fab:hover {
  transform: scale(1.07);
  background: var(--wa-deep);
}

.wa-fab::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.55);
  animation: fab-pulse 2.4s ease-out infinite;
}

@keyframes fab-pulse {
  0% { transform: scale(1); opacity: 1; }
  70%, 100% { transform: scale(1.55); opacity: 0; }
}

/* ---------- Reveal on scroll ---------- */
html.js [data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--d, 0s);
}

html.js [data-reveal].revealed {
  opacity: 1;
  transform: none;
}

/* ---------- Sections anchor offset (sticky header) ---------- */
section[id],
#top {
  scroll-margin-top: 76px;
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .cards,
  .steps,
  .quotes {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin-inline: auto;
  }

  .card-featured {
    transform: none;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .portrait {
    order: -1;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 1rem;
  }

  .stats {
    grid-template-columns: 1fr 1fr;
    gap: 0.7rem;
  }

  .stats li {
    padding: 1.1rem 1rem;
  }

  .stat-num {
    font-size: 2rem;
  }

  .cta-row {
    flex-direction: column;
    width: 100%;
  }

  .cta-row .btn {
    justify-content: center;
  }

  .chips {
    gap: 0.45rem;
  }

  .chips li {
    font-size: 0.78rem;
    padding: 0.42rem 0.8rem;
  }

  .footer-inner {
    flex-direction: column;
  }
}

/* ---------- 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;
  }

  html.js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
