/* ============================================================
   CHERRY ON TOP — MAIN STYLESHEET
   Mobile-first. Animate only transform + opacity.
   ============================================================ */

/* ── ROOT VARIABLES ── */
:root {
  --red:           #C0192C;
  --red-dark:      #9E1424;
  --red-glow:      rgba(192, 25, 44, 0.18);
  --red-glow-sm:   rgba(192, 25, 44, 0.09);
  --navy:          #0A1628;
  --navy-mid:      #0F1F38;
  --navy-light:    #162440;
  --blue:          #7DD4E8;
  --blue-dim:      rgba(125, 212, 232, 0.15);
  --off-white:     #FAFAFA;
  --white:         #FFFFFF;
  --dark-text:     #1A1A1A;
  --text-light:    rgba(255, 255, 255, 0.88);
  --text-dim:      rgba(255, 255, 255, 0.48);
  --text-dim-med:  rgba(255, 255, 255, 0.64);
  --border-light:  rgba(255, 255, 255, 0.08);
  --border-dark:   rgba(0, 0, 0, 0.08);

  --font-display:  'Bebas Neue', sans-serif;
  --font-body:     'Outfit', sans-serif;

  --ease-expo:     cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring:   cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-out:      cubic-bezier(0.22, 1, 0.36, 1);

  --z-nav:         100;
  --z-overlay:     200;
  --z-noise:       10;
}

/* ── BASE ── */
html {
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
}

.js-loaded .reveal-hero {
  opacity: 0;
}

/* ── NOISE OVERLAY ── */
.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: var(--z-noise);
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
}

/* ── CONTAINER ── */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 1.25rem;
}

/* ── TYPOGRAPHY UTILITIES ── */
.text-light { color: var(--text-light); }
.text-dim   { color: var(--text-dim); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dark-text);
  background: var(--border-dark);
  border: 1px solid var(--border-dark);
  border-radius: 9999px;
  padding: 0.3rem 0.875rem;
  margin-bottom: 1.25rem;
}

.eyebrow-light {
  color: var(--text-dim-med);
  background: var(--border-light);
  border-color: var(--border-light);
}

.eyebrow-red {
  color: var(--red);
  background: rgba(192, 25, 44, 0.1);
  border-color: rgba(192, 25, 44, 0.2);
}

.section-header {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  line-height: 1;
  letter-spacing: 0.01em;
  color: var(--dark-text);
  margin-bottom: 0.75rem;
}

.section-header .text-light {
  color: var(--text-light);
}

.section-sub {
  font-size: 1.0625rem;
  color: #5a6475;
  max-width: 52ch;
  line-height: 1.6;
  margin-top: 0.75rem;
}

/* ── LINK UTILITIES ── */
.link-light {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  font-family: var(--font-body);
  font-weight: 600;
  border-radius: 9999px;
  cursor: pointer;
  transition: transform 300ms var(--ease-expo), opacity 300ms var(--ease-expo), background 300ms var(--ease-expo);
  white-space: nowrap;
  text-align: center;
}

.btn:active {
  transform: scale(0.97);
}

.btn-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.18);
  margin-left: 0.25rem;
  font-size: 0.85rem;
  flex-shrink: 0;
  transition: transform 300ms var(--ease-expo);
}

.btn:hover .btn-icon-wrap {
  transform: translate(2px, -2px);
}

/* Nav buttons */
.btn-nav-primary {
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.5rem 1.125rem;
  background: var(--red);
  color: #fff;
  letter-spacing: 0.01em;
}

.btn-nav-primary:hover {
  background: var(--red-dark);
}

.btn-nav-ghost {
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 1.125rem;
  color: var(--text-light);
  border: 1px solid var(--border-light);
}

.btn-nav-ghost:hover {
  background: var(--border-light);
}

/* Hero buttons */
.btn-hero-primary {
  font-size: 1rem;
  font-weight: 700;
  padding: 0.875rem 1.5rem;
  background: var(--red);
  color: #fff;
  letter-spacing: 0.01em;
  min-height: 3rem;
}

.btn-hero-primary:hover {
  background: var(--red-dark);
}

.btn-hero-ghost {
  font-size: 1rem;
  font-weight: 600;
  padding: 0.875rem 1.75rem;
  color: var(--text-light);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  min-height: 3rem;
}

.btn-hero-ghost:hover {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.06);
}

/* Card buttons */
.btn-card {
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.625rem 1.25rem;
  background: var(--navy);
  color: var(--text-light);
  border: 1.5px solid rgba(10, 22, 40, 0.12);
  min-height: 2.75rem;
}

.btn-card:hover {
  background: var(--navy-light);
}

.btn-card-red {
  font-size: 0.875rem;
  font-weight: 700;
  padding: 0.625rem 1.25rem;
  background: var(--red);
  color: #fff;
  min-height: 2.75rem;
}

.btn-card-red:hover {
  background: var(--red-dark);
}

/* Large red CTA */
.btn-red-large {
  font-size: 1rem;
  font-weight: 700;
  padding: 0.9375rem 1.75rem;
  background: var(--red);
  color: #fff;
  letter-spacing: 0.01em;
  min-height: 3.25rem;
}

.btn-red-large:hover {
  background: var(--red-dark);
}

.btn-red-large .btn-icon-wrap {
  background: rgba(0, 0, 0, 0.2);
}

/* Outline dark */
.btn-outline-dark {
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  color: var(--dark-text);
  border: 1.5px solid rgba(0, 0, 0, 0.2);
  min-height: 3rem;
}

.btn-outline-dark:hover {
  background: rgba(0, 0, 0, 0.04);
}

/* VIP badge (non-clickable callout) */
.vip-badge {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(125, 212, 232, 0.1);
  border: 1px solid rgba(125, 212, 232, 0.22);
  border-radius: 9999px;
  padding: 0.35rem 0.875rem;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  cursor: default;
}

.vip-badge-hero {
  font-size: 0.75rem;
  padding: 0.4rem 1rem;
  background: rgba(125, 212, 232, 0.08);
}

/* Ghost large */
.btn-ghost-large {
  font-size: 1rem;
  font-weight: 600;
  padding: 0.9375rem 1.75rem;
  color: var(--text-light);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  min-height: 3.25rem;
}

.btn-ghost-large:hover {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.06);
}

/* Mobile buttons */
.btn-primary-large {
  font-size: 1.0625rem;
  font-weight: 700;
  padding: 1rem 2rem;
  background: var(--red);
  color: #fff;
  width: 100%;
  justify-content: center;
  min-height: 3.25rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: background 300ms var(--ease-expo);
}

.btn-primary-large:hover {
  background: var(--red-dark);
}


/* ── SCROLL REVEAL BASE STATE ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
}

/* ── NAVIGATION ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-nav);
  padding: 1.25rem 1.25rem 0;
  pointer-events: none;
}

.nav-pill {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(10, 22, 40, 0.75);
  border: 1px solid var(--border-light);
  border-radius: 9999px;
  padding: 0.5rem 0.5rem 0.5rem 1.25rem;
  max-width: 1100px;
  margin-inline: auto;
  pointer-events: all;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: background 400ms var(--ease-expo), border-color 400ms var(--ease-expo);
}

.site-header.scrolled .nav-pill {
  background: rgba(10, 22, 40, 0.95);
  border-color: rgba(255, 255, 255, 0.12);
}

.nav-logo {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0;
  letter-spacing: -0.01em;
  transition: opacity 200ms;
}

.nav-logo:hover { opacity: 0.8; }

.logo-cherry { color: var(--red); }
.logo-dot    { color: var(--red); }
.logo-top    { color: var(--text-light); }

.nav-links {
  display: none;
  flex: 1;
  justify-content: center;
  gap: 0.125rem;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-dim-med);
  padding: 0.4375rem 0.75rem;
  border-radius: 9999px;
  transition: color 200ms, background 200ms;
}

.nav-links a:hover {
  color: var(--text-light);
  background: var(--border-light);
}

.nav-ctas {
  display: none;
  gap: 0.375rem;
}

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: var(--border-light);
  flex-shrink: 0;
  position: relative;
  transition: background 200ms;
}

.hamburger:hover {
  background: rgba(255, 255, 255, 0.12);
}

.ham-line {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--text-light);
  border-radius: 2px;
  transform-origin: center;
  position: absolute;
  transition: transform 350ms var(--ease-expo), opacity 250ms;
}

.ham-line:first-child  { transform: translateY(-3px); }
.ham-line:last-child   { transform: translateY(3px); }

.hamburger.active .ham-line:first-child {
  transform: rotate(45deg);
}
.hamburger.active .ham-line:last-child {
  transform: rotate(-45deg);
}

/* ── MOBILE OVERLAY ── */
.mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: var(--z-overlay);
  background: rgba(10, 22, 40, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 400ms var(--ease-expo);
}

.mobile-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  width: 100%;
  max-width: 320px;
  padding-inline: 1.25rem;
}

.mobile-nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  width: 100%;
  text-align: center;
}

.mob-link {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  letter-spacing: 0.03em;
  color: var(--text-light);
  padding: 0.25rem 0;
  opacity: 0;
  transform: translateY(20px);
  transition: color 200ms, opacity 400ms var(--ease-expo), transform 400ms var(--ease-expo);
}

.mobile-overlay.active .mob-link {
  opacity: 1;
  transform: translateY(0);
}

.mobile-overlay.active .mob-link:nth-child(1) { transition-delay: 80ms; }
.mobile-overlay.active .mob-link:nth-child(2) { transition-delay: 130ms; }
.mobile-overlay.active .mob-link:nth-child(3) { transition-delay: 180ms; }
.mobile-overlay.active .mob-link:nth-child(4) { transition-delay: 230ms; }
.mobile-overlay.active .mob-link:nth-child(5) { transition-delay: 280ms; }

.mob-link:hover { color: var(--red); }

.mob-ctas {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 400ms var(--ease-expo) 350ms, transform 400ms var(--ease-expo) 350ms;
}

.mobile-overlay.active .mob-ctas {
  opacity: 1;
  transform: translateY(0);
}

.mob-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  opacity: 0;
  transition: opacity 400ms var(--ease-expo) 420ms;
}

.mobile-overlay.active .mob-contact {
  opacity: 1;
}

.mob-contact a {
  font-size: 0.875rem;
  color: var(--text-dim);
  transition: color 200ms;
}

.mob-contact a:hover { color: var(--blue); }

/* ── SKIP LINK (ACCESSIBILITY) ── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 9999;
  background: var(--red);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 0 0 8px 8px;
  font-weight: 600;
  font-size: 0.875rem;
  transition: top 200ms;
}

.skip-link:focus {
  top: 0;
}

/* ── SECTION BACKGROUNDS ── */
.section-light { background: var(--off-white); color: var(--dark-text); }
.section-dark  { background: var(--navy); }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding-top: 5rem;
  padding-bottom: 4rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  width: clamp(400px, 70vw, 900px);
  height: clamp(400px, 70vw, 900px);
  border-radius: 50%;
  background: radial-gradient(circle, var(--red-glow) 0%, transparent 65%);
  top: -20%;
  right: -15%;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.055) 1px, transparent 1px);
  background-size: 44px 44px;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 2rem;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-dim);
  border: 1px solid rgba(125, 212, 232, 0.2);
  border-radius: 9999px;
  padding: 0.3rem 0.875rem;
  margin-bottom: 1.75rem;
}

.hero-title {
  font-family: var(--font-display);
  line-height: 0.88;
  letter-spacing: 0.01em;
  margin-bottom: 1.5rem;
}

.title-cherry {
  display: block;
  font-size: clamp(5.5rem, 17vw, 13.5rem);
  color: var(--red);
}

.title-on {
  display: block;
  font-family: var(--font-body);
  font-size: clamp(1.625rem, 3.5vw, 3.25rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  margin-left: clamp(1rem, 3%, 4rem);
}

.title-top {
  display: block;
  font-size: clamp(5.5rem, 17vw, 13.5rem);
  color: var(--white);
}

.hero-tagline {
  font-size: clamp(1rem, 1.8vw, 1.1875rem);
  font-weight: 500;
  color: var(--text-dim-med);
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.hero-area {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 2.25rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: scrollFade 2s var(--ease-expo) 2.5s forwards;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.3));
  animation: scrollPulse 2s ease-in-out infinite;
}

.hero-scroll-hint span {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
}

@keyframes scrollFade {
  to { opacity: 1; }
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 0.5; }
  50%       { transform: scaleY(1.3); opacity: 1; }
}

/* ── SERVICES ── */
.services {
  padding-block: clamp(5rem, 10vw, 8rem);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

/* Double-bezel cards */
.card-outer {
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 1.75rem;
  padding: 0.3125rem;
}

.card-outer.card-featured {
  background: rgba(192, 25, 44, 0.06);
  border-color: rgba(192, 25, 44, 0.15);
}

.card-inner {
  background: #fff;
  border-radius: calc(1.75rem - 0.3125rem);
  padding: 1.75rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
  position: relative;
}

.card-featured .card-inner {
  background: #fff9f9;
}

.card-tag {
  display: inline-flex;
  align-items: center;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #5a6475;
  background: #f1f3f7;
  border-radius: 9999px;
  padding: 0.25rem 0.625rem;
  margin-bottom: 1rem;
  width: fit-content;
}

.card-tag-red {
  color: var(--red);
  background: rgba(192, 25, 44, 0.08);
}

.card-number {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  letter-spacing: 0.08em;
  color: rgba(0, 0, 0, 0.18);
  margin-bottom: 0.375rem;
}

.card-inner h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.02em;
  color: var(--dark-text);
  margin-bottom: 0.625rem;
  line-height: 1;
}

.card-inner > p {
  font-size: 0.9375rem;
  color: #5a6475;
  line-height: 1.55;
  margin-bottom: 1.25rem;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
  flex: 1;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: #3e4651;
  line-height: 1.4;
}

.feature-list li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
}

.card-price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}

.price-from {
  font-size: 0.75rem;
  font-weight: 500;
  color: #8a94a2;
}

.price-amount {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.01em;
  color: var(--dark-text);
  line-height: 1;
}

/* ── HOW IT WORKS ── */
.how-it-works {
  padding-block: clamp(5rem, 10vw, 8rem);
}

.steps-row {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.step {
  flex: 1;
}

.step-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--red);
  line-height: 1;
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
}

.step h3 {
  font-family: var(--font-display);
  font-size: 1.625rem;
  letter-spacing: 0.02em;
  margin-bottom: 0.625rem;
}

.step p {
  font-size: 0.9375rem;
  line-height: 1.6;
  max-width: 32ch;
}

.step-divider {
  width: 1px;
  height: 1px;
  background: transparent;
}

.how-cta {
  display: flex;
  justify-content: flex-start;
}

/* ── VIP ── */
.vip-section {
  position: relative;
  padding-block: clamp(5rem, 10vw, 9rem);
  background: var(--navy-mid);
  overflow: hidden;
}

.vip-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.vip-glow {
  position: absolute;
  width: clamp(300px, 60vw, 800px);
  height: clamp(300px, 60vw, 800px);
  border-radius: 50%;
  background: radial-gradient(circle, var(--red-glow) 0%, transparent 70%);
  bottom: -30%;
  left: -10%;
}

.vip-inner {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.vip-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1;
  letter-spacing: 0.01em;
  color: var(--text-light);
  margin-bottom: 1.25rem;
}

.vip-sub {
  font-size: 1.0625rem;
  line-height: 1.65;
  max-width: 52ch;
  margin-bottom: 2.5rem;
}

.vip-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.875rem;
  margin-bottom: 2.5rem;
}

.vip-feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  color: var(--text-light);
  font-weight: 500;
}

.vip-feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: rgba(125, 212, 232, 0.1);
  border: 1px solid rgba(125, 212, 232, 0.2);
  flex-shrink: 0;
}

.vip-cta-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-start;
}

.vip-note {
  font-size: 0.8125rem;
  color: var(--text-dim);
}

/* ── GALLERY ── */
.gallery {
  padding-block: clamp(5rem, 10vw, 8rem);
}

.gallery-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.gallery-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.375rem;
  border-radius: 1.25rem;
  overflow: hidden;
}

.gallery-before,
.gallery-after {
  position: relative;
  overflow: hidden;
}

.gallery-before img,
.gallery-after img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 500ms var(--ease-expo);
}

.gallery-before:hover img,
.gallery-after:hover img {
  transform: scale(1.04);
}

.gallery-label {
  position: absolute;
  bottom: 0.625rem;
  left: 0.625rem;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 9999px;
  padding: 0.25rem 0.625rem;
  backdrop-filter: blur(4px);
}

.gallery-label-after {
  background: rgba(192, 25, 44, 0.7);
}

.gallery-note {
  font-size: 0.8125rem;
  color: #8a94a2;
  text-align: center;
}

/* ── TESTIMONIALS ── */
.testimonials {
  padding-block: clamp(5rem, 10vw, 8rem);
}

.testimonials .section-header h2 {
  color: var(--text-light);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.testimonial-card {
  background: var(--navy-light);
  border: 1px solid var(--border-light);
  border-radius: 1.5rem;
  padding: 1.75rem;
}

.testimonial-card .stars {
  color: var(--red);
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.875rem;
}

.testimonial-card p {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--text-dim-med);
  margin-bottom: 1.25rem;
  font-style: italic;
}

.testimonial-card footer {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.testimonial-card cite {
  font-style: normal;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-light);
}

.testimonial-location {
  font-size: 0.8125rem;
  color: var(--text-dim);
}

.testimonial-location::before {
  content: '· ';
}

/* ── ABOUT ── */
.about {
  padding-block: clamp(5rem, 10vw, 8rem);
}

.about-inner {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.about-text {
  flex: 1;
}

.about-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  line-height: 1;
  letter-spacing: 0.01em;
  color: var(--dark-text);
  margin-bottom: 1.25rem;
}

.about-text p {
  font-size: 1rem;
  line-height: 1.7;
  color: #4a5568;
  max-width: 56ch;
  margin-bottom: 1rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.25rem;
  color: var(--red);
  line-height: 1;
  letter-spacing: 0.01em;
  margin-bottom: 0.25rem;
}

.stat-label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #8a94a2;
  line-height: 1.3;
}

.about-visual {
  flex-shrink: 0;
}

.about-image-wrap {
  border-radius: 1.5rem;
  overflow: hidden;
  background: var(--navy-light);
  position: relative;
}

.about-image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 1.5rem;
  border: 1px solid rgba(0, 0, 0, 0.07);
  pointer-events: none;
}

.about-image-wrap img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

/* ── SERVICE AREA ── */
.service-area {
  padding-block: clamp(5rem, 10vw, 8rem);
}

.service-area .section-header h2 {
  color: var(--text-light);
}

.area-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin-bottom: 1.75rem;
}

.area-chip {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-light);
  background: var(--navy-light);
  border: 1px solid var(--border-light);
  border-radius: 9999px;
  padding: 0.5rem 1rem;
  transition: border-color 200ms, background 200ms;
}

.area-chip:hover {
  background: var(--navy-mid);
  border-color: rgba(125, 212, 232, 0.3);
}

.area-note {
  font-size: 0.9375rem;
}

/* ── FAQ ── */
.faq {
  padding-block: clamp(5rem, 10vw, 8rem);
}

.faq-container {
  max-width: 760px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-bottom: 3rem;
}

.faq-item {
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 1rem;
  overflow: hidden;
  transition: border-color 200ms;
}

.faq-item.faq-open {
  border-color: rgba(192, 25, 44, 0.2);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.25rem;
  width: 100%;
  text-align: left;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark-text);
  cursor: pointer;
  min-height: 3.25rem;
  transition: color 200ms;
  background: none;
  border: none;
}

.faq-question:hover {
  color: var(--red);
}

.faq-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.05);
  flex-shrink: 0;
  color: var(--dark-text);
  transition: transform 350ms var(--ease-expo), background 200ms;
}

.faq-item.faq-open .faq-icon {
  transform: rotate(180deg);
  background: rgba(192, 25, 44, 0.08);
  color: var(--red);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 400ms var(--ease-expo);
}

.faq-answer-inner {
  padding: 0 1.25rem 1.25rem;
}

.faq-answer p {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #5a6475;
}

.faq-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.875rem;
}

.faq-cta p {
  font-size: 1rem;
  font-weight: 500;
  color: var(--dark-text);
}

/* ── CONTACT STRIP ── */
.contact-strip {
  padding-block: clamp(4rem, 8vw, 6.5rem);
}

.contact-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: 0.01em;
  margin-bottom: 0.375rem;
}

.contact-text p {
  font-size: 0.9375rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-dim-med);
  transition: color 200ms;
  min-height: 2.75rem;
}

.contact-link:hover {
  color: var(--blue);
}

.contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--border-light);
  flex-shrink: 0;
}

/* ── FOOTER ── */
.site-footer {
  background: #060e1a;
  border-top: 1px solid var(--border-light);
  padding-block: 3.5rem 2rem;
}

.footer-top {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border-light);
}

.footer-brand {
  flex-shrink: 0;
}

.footer-logo {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 0.625rem;
  transition: opacity 200ms;
}

.footer-logo:hover { opacity: 0.75; }

.footer-tagline {
  font-size: 0.875rem;
  color: var(--text-dim);
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--border-light);
  color: var(--text-dim-med);
  transition: background 200ms, color 200ms;
}

.footer-social a:hover {
  background: var(--red);
  color: #fff;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.footer-nav-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 0.875rem;
}

.footer-nav-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-nav-col a {
  font-size: 0.9375rem;
  color: var(--text-dim-med);
  transition: color 200ms;
  line-height: 1.4;
}

.footer-nav-col a:hover {
  color: var(--text-light);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.footer-copy,
.footer-credit {
  font-size: 0.8125rem;
  color: var(--text-dim);
}


/* ============================================================
   RESPONSIVE — min-width breakpoints
   ============================================================ */

/* ── 640px ── */
@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-before img,
  .gallery-after img {
    height: 260px;
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-nav {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
}

/* ── 768px ── */
@media (min-width: 768px) {
  .nav-links  { display: flex; }
  .nav-ctas   { display: flex; }
  .hamburger  { display: none; }

  .hero-content {
    padding-top: 0;
  }

  .steps-row {
    flex-direction: row;
    align-items: flex-start;
    gap: 1rem;
  }

  .step-divider {
    flex-shrink: 0;
    align-self: stretch;
    width: 1px;
    height: auto;
    background: var(--border-light);
  }

  .step {
    padding-inline: 1.5rem;
  }

  .step:first-child { padding-left: 0; }
  .step:last-child  { padding-right: 0; }

  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .about-inner {
    flex-direction: row;
    align-items: flex-start;
    gap: 4rem;
  }

  .about-image-wrap img {
    width: 340px;
    height: 460px;
  }

  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    flex-direction: unset;
  }

  .gallery-pair {
    grid-template-columns: 1fr;
  }

  .gallery-before img,
  .gallery-after img {
    height: 200px;
  }

  .vip-features {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

/* ── 1024px ── */
@media (min-width: 1024px) {
  .container {
    padding-inline: 2rem;
  }

  .vip-inner {
    max-width: 740px;
  }

  .about-image-wrap img {
    width: 420px;
    height: 520px;
  }

  .gallery-before img,
  .gallery-after img {
    height: 230px;
  }
}
