/* ==========================================================================
   WHISPER SHINE — EXPRESS CAR WASH
   Design tokens: Navy #0B2A5B · Royal Blue #1E4FBB · Sky #4FA8E8
   Pale Blue #EAF3FC · White #FFFFFF · Red accent #D6273A
   Display: Poppins · Body: Inter
   ========================================================================== */

:root {
  /* Colors */
  --navy: #0B2A5B;
  --navy-deep: #071B3D;
  --blue: #1E4FBB;
  --blue-hover: #1740A0;
  --sky: #4FA8E8;
  --pale: #EAF3FC;
  --pale-2: #F5F9FE;
  --white: #FFFFFF;
  --red: #D6273A;
  --red-hover: #B81E2F;
  --ink: #16233F;
  --ink-soft: #4A5670;
  --line: #DCE7F5;

  /* Type */
  --font-display: 'Poppins', 'Segoe UI', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;

  /* Layout */
  --container: 1180px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 2px 10px rgba(11, 42, 91, 0.07);
  --shadow-md: 0 10px 30px rgba(11, 42, 91, 0.12);
  --shadow-lg: 0 20px 50px rgba(11, 42, 91, 0.16);

  /* Scale */
  --text-scale: 1;
  --space-section: clamp(56px, 8vw, 104px);
}

/* ==========================================================================
   RESET
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
body.reduce-motion *, body.reduce-motion *::before, body.reduce-motion *::after {
  animation-duration: 0.001ms !important;
  transition-duration: 0.001ms !important;
  scroll-behavior: auto !important;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  font-size: calc(16px * var(--text-scale));
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-display); color: var(--navy); margin: 0; line-height: 1.15; font-weight: 700; }
p { margin: 0; }
button { font-family: inherit; cursor: pointer; }

/* Focus visibility — never removed */
a:focus-visible,
button:focus-visible,
input:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 3px;
  border-radius: 4px;
}
body.enhanced-focus a:focus-visible,
body.enhanced-focus button:focus-visible,
body.enhanced-focus [tabindex]:focus-visible {
  outline: 4px solid var(--red);
  outline-offset: 4px;
  box-shadow: 0 0 0 8px rgba(214, 39, 58, 0.25);
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  background: var(--navy);
  color: var(--white);
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  z-index: 1000;
  font-weight: 600;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 12px; }
.skip-link-a11y:focus { left: 200px; }

/* ==========================================================================
   UTILITY / LAYOUT
   ========================================================================== */
.section { padding: var(--space-section) 0; }
.section-inner, .header-inner, .footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.section-tint { background: var(--pale-2); }

.section-head { max-width: 680px; margin: 0 auto 44px; text-align: center; }
.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin: 0 0 10px;
}
.eyebrow-light { color: var(--sky); }
.section-head h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); margin-bottom: 12px; }
.section-sub { color: var(--ink-soft); font-size: 1.05rem; }
.section-sub-left { text-align: left; margin: 0; }

.wave-divider { max-width: 220px; margin: 0 auto 40px; opacity: 0.8; }
.wave-divider svg { width: 100%; height: 12px; display: block; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 13px 26px;
  border-radius: 999px;
  border: 2px solid transparent;
  min-height: 44px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary,
a.btn-primary,
a.btn-primary:visited,
a.btn-primary:hover,
a.btn-primary:focus {
  background: var(--blue);
  color: #ffffff;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover,
a.btn-primary:hover { background: var(--blue-hover); color: #ffffff; box-shadow: var(--shadow-md); }
.btn-secondary { background: var(--pale); color: var(--navy); }
.btn-secondary:hover { background: #DCEBFB; color: var(--navy); }
.btn-accent,
a.btn-accent,
a.btn-accent:visited,
a.btn-accent:hover,
a.btn-accent:focus {
  background: var(--red);
  color: #ffffff;
  box-shadow: var(--shadow-sm);
}
.btn-accent:hover,
a.btn-accent:hover { background: var(--red-hover); color: #ffffff; box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--blue); border-color: var(--blue); }
.btn-outline:hover { background: var(--pale); color: var(--blue); }
.btn-outline-light,
a.btn-outline-light,
a.btn-outline-light:visited,
a.btn-outline-light:hover {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255,255,255,0.7);
}
.btn-outline-light:hover,
a.btn-outline-light:hover { background: rgba(255,255,255,0.12); color: #ffffff; }
.btn-ghost { background: transparent; color: var(--navy); }
.btn-ghost:hover { background: var(--pale); }
.btn-lg { padding: 15px 32px; font-size: 1rem; }
.btn-block { width: 100%; }
.mobile-action-btn-primary,
a.mobile-action-btn-primary { background: var(--blue); color: #ffffff; }

.disclaimer { text-align: center; color: var(--ink-soft); font-size: 0.85rem; margin-top: 36px; max-width: 640px; margin-left: auto; margin-right: auto; }

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 12px;
  padding-bottom: 12px;
}
.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-img {
  height: 52px;
  width: auto;
  max-width: min(220px, 42vw);
  object-fit: contain;
}
.logo-mark { flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-title { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; color: var(--navy); }
.logo-sub { font-family: var(--font-display); font-weight: 600; font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--blue); }

.main-nav { flex: 1; min-width: 0; display: flex; justify-content: center; }
.main-nav ul {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 2px;
  white-space: nowrap;
}
.main-nav a {
  display: block;
  padding: 10px 12px;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--ink);
  border-radius: 999px;
  position: relative;
  transition: color 0.15s ease;
  white-space: nowrap;
}
.main-nav a:hover { color: var(--blue); }
.main-nav a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 5px;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}
.main-nav a:hover::after { transform: scaleX(1); }

.header-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.header-call { font-size: 0.88rem; padding: 11px 18px; }

.hamburger {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}
.hamburger-box { display: flex; flex-direction: column; gap: 5px; width: 24px; }
.hamburger-line { display: block; height: 2.5px; width: 100%; background: var(--navy); border-radius: 2px; transition: transform 0.2s ease, opacity 0.2s ease; }
.hamburger[aria-expanded="true"] .hamburger-line:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger[aria-expanded="true"] .hamburger-line:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] .hamburger-line:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.mobile-menu {
  border-top: 1px solid var(--line);
  background: var(--white);
  padding: 12px 24px 24px;
}
.mobile-menu nav ul { display: flex; flex-direction: column; }
.mobile-menu nav a {
  display: block;
  padding: 14px 4px;
  font-weight: 500;
  font-size: 1.05rem;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  background: transparent;
}
.mobile-menu-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 18px;
}
.mobile-menu-actions .btn {
  width: 100%;
  min-height: 48px;
  border-width: 2px;
  border-style: solid;
  text-decoration: none;
  box-sizing: border-box;
}
.mobile-menu-actions a.btn-outline,
.mobile-menu-actions a.btn-outline:visited,
.mobile-menu-actions a.btn-outline:hover {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.mobile-menu-actions a.btn-outline:hover {
  background: var(--pale);
  color: var(--blue);
}
.mobile-menu-actions a.btn-primary,
.mobile-menu-actions a.btn-primary:visited,
.mobile-menu-actions a.btn-primary:hover,
.mobile-menu-actions a.btn-primary:focus {
  background: var(--blue);
  color: #ffffff;
  border-color: var(--blue);
}
.mobile-menu-actions a.btn-primary:hover {
  background: var(--blue-hover);
  border-color: var(--blue-hover);
  color: #ffffff;
}

@media (max-width: 980px) {
  .main-nav, .header-actions { display: none; }
  .hamburger { display: inline-flex; }
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  min-height: min(88vh, 760px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--white);
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 60% 45%; }
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(100deg, rgba(7,27,61,0.92) 0%, rgba(7,27,61,0.72) 32%, rgba(11,42,91,0.35) 60%, rgba(11,42,91,0.15) 100%),
    linear-gradient(0deg, rgba(7,27,61,0.55) 0%, rgba(7,27,61,0) 45%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 100px 24px 64px;
  width: 100%;
}
.hero-content h1 {
  color: var(--white);
  font-size: clamp(2.4rem, 5.4vw, 4.2rem);
  max-width: 15ch;
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}
.hero-sub { font-size: clamp(1.05rem, 1.6vw, 1.25rem); max-width: 46ch; color: #E4EEFC; margin-bottom: 32px; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 22px; }
.hero-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--white);
  padding: 6px 2px;
  border-bottom: 1px solid rgba(255,255,255,0.4);
  min-height: 44px;
}
.hero-call:hover { border-color: var(--white); }
.hero-hours {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--white);
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 10px 18px;
  border-radius: 999px;
}
.hero-hours-dot { width: 9px; height: 9px; border-radius: 50%; background: #5CD46B; box-shadow: 0 0 0 4px rgba(92,212,107,0.25); flex-shrink: 0; }

/* ==========================================================================
   INFO BAR
   ========================================================================== */
.info-bar { background: var(--navy); }
.info-bar-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 26px 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.info-item { display: flex; align-items: center; gap: 12px; color: var(--white); border-radius: var(--radius-sm); padding: 4px; }
.info-item-link { transition: opacity 0.15s ease; }
.info-item-link:hover { opacity: 0.8; }
.info-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sky);
}
.info-icon-accent { color: #FF8A93; background: rgba(214,39,58,0.18); }
.info-text { display: flex; flex-direction: column; font-size: 0.92rem; line-height: 1.35; }
.info-text strong { font-family: var(--font-display); font-weight: 600; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--sky); }

@media (max-width: 900px) {
  .info-bar-inner { grid-template-columns: repeat(2, 1fr); }
}

/* ==========================================================================
   PRICING
   ========================================================================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  align-items: stretch;
}
.price-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.price-card-featured {
  background: linear-gradient(165deg, var(--navy) 0%, #123268 100%);
  border-color: transparent;
  color: var(--white);
  position: relative;
}
.price-card-featured::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 2px;
  background: linear-gradient(135deg, var(--sky), var(--blue));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.price-card-featured h3, .price-card-featured .price-amount { color: var(--white); }
.price-card-featured .price-card-tagline { color: #BFD6F5; }
.price-card-featured .price-label { color: #9FBEE6; }
.price-card-featured .price-features li { color: #E4EEFC; border-color: rgba(255,255,255,0.14); }
.price-card-featured .price-features li::before { color: var(--sky); }

.price-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--red);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
  align-self: flex-start;
}
.price-badge-muted { background: var(--pale); color: var(--blue); }

.price-card h3 { font-size: 1.4rem; margin-bottom: 4px; }
.price-card-tagline { color: var(--ink-soft); font-size: 0.9rem; margin-bottom: 22px; }

.price-row { display: flex; gap: 18px; margin-bottom: 22px; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.price-card-featured .price-row { border-color: rgba(255,255,255,0.14); }
.price-block { display: flex; flex-direction: column; gap: 2px; }
.price-amount { font-family: var(--font-display); font-weight: 700; font-size: 1.9rem; color: var(--navy); line-height: 1; }
.price-per { font-size: 1rem; font-weight: 600; }
.price-label { font-size: 0.78rem; color: var(--ink-soft); font-weight: 500; }

.price-features { flex-grow: 1; margin-bottom: 26px; }
.price-features li {
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.94rem;
  padding-left: 26px;
  position: relative;
}
.price-features li:last-child { border-bottom: none; }
.price-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 700;
}

@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
}

/* ==========================================================================
   UNLIMITED CLUB
   ========================================================================== */
.unlimited-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.unlimited-copy h2 { text-align: left; }
.unlimited-buttons { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }

.unlimited-plans { display: flex; flex-direction: column; gap: 14px; }
.unlimited-plan {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 20px 26px;
  box-shadow: var(--shadow-sm);
}
.unlimited-plan-highlight {
  border-color: var(--blue);
  box-shadow: var(--shadow-md);
  transform: scale(1.03);
}
.unlimited-plan-name { font-family: var(--font-display); font-weight: 600; color: var(--navy); }
.unlimited-plan-price { font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; color: var(--blue); }

@media (max-width: 900px) {
  .unlimited-grid { grid-template-columns: 1fr; gap: 40px; }
  .unlimited-copy h2, .section-sub-left { text-align: center; }
  .unlimited-copy { text-align: center; }
  .unlimited-buttons { justify-content: center; }
  .unlimited-plan-highlight { transform: none; }
}

/* ==========================================================================
   FULL SERVICE
   ========================================================================== */
.full-service {
  background: linear-gradient(120deg, var(--navy) 0%, var(--blue) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.full-service::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 200"><path d="M0 120 C150 60 250 180 400 110 S650 40 800 110 V200 H0 Z" fill="rgba(255,255,255,0.05)"/></svg>') bottom / cover no-repeat;
  pointer-events: none;
}
.full-service-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 40px;
  position: relative;
}
.full-service h2 { color: var(--white); font-size: clamp(1.7rem, 3.2vw, 2.4rem); margin-bottom: 16px; }
.full-service-text { color: #DCEAFB; font-size: 1.05rem; max-width: 46ch; margin-bottom: 20px; }
.full-service-list { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 30px; }
.full-service-list li {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  padding: 9px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
}
.full-service-note { margin-top: 16px; font-size: 0.85rem; color: #B9CFEE; }

.full-service-price {
  justify-self: center;
  display: flex;
  align-items: flex-start;
  background: var(--white);
  color: var(--navy);
  border-radius: 999px;
  width: 200px;
  height: 200px;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  flex-shrink: 0;
}
.full-service-dollar { font-family: var(--font-display); font-weight: 700; font-size: 2.4rem; margin-top: 8px; color: var(--red); }
.full-service-number { font-family: var(--font-display); font-weight: 800; font-size: 5.2rem; line-height: 1; }

@media (max-width: 900px) {
  .full-service-inner { grid-template-columns: 1fr; text-align: center; }
  .full-service-list { justify-content: center; }
  .full-service-price { margin: 0 auto; }
}

/* ==========================================================================
   BENEFITS
   ========================================================================== */
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.benefit-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.benefit-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.benefit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--pale);
  color: var(--blue);
  margin-bottom: 18px;
}
.benefit-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.benefit-card p { color: var(--ink-soft); font-size: 0.94rem; }

@media (max-width: 900px) {
  .benefits-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
}

/* ==========================================================================
   HOW IT WORKS
   ========================================================================== */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; counter-reset: step; }
.step-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 34px 26px;
  text-align: center;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 18px;
}
.step-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.step-card p { color: var(--ink-soft); font-size: 0.94rem; }

@media (max-width: 900px) {
  .steps-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
}

/* ==========================================================================
   LOCATION
   ========================================================================== */
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-bottom: 60px; }
.location-details { display: flex; flex-direction: column; gap: 20px; }
.location-photo { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); width: 100%; object-fit: cover; aspect-ratio: 3/2; }
.location-card {
  background: var(--pale-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.location-card h3 { font-size: 1.2rem; margin-bottom: 14px; }
.location-card p { margin-bottom: 12px; font-size: 0.98rem; }
.location-card a[href^="https"]:not(.btn), .location-card a[href^="tel"]:not(.btn) { color: var(--blue); font-weight: 600; }
.location-card a[href^="https"]:not(.btn):hover, .location-card a[href^="tel"]:not(.btn):hover { text-decoration: underline; }
.location-card a.btn-primary,
.location-card a.btn-primary:hover,
.location-card a.btn-primary:visited { color: #ffffff; }
.location-buttons { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 18px; }

.location-map { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); min-height: 340px; border: 1px solid var(--line); }
.location-map iframe { width: 100%; height: 100%; min-height: 340px; }

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

/* Hours */
.hours-block {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}
.hours-head { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 22px; }
.hours-head h3 { font-size: 1.25rem; }
.open-status { display: inline-flex; align-items: center; gap: 9px; font-weight: 600; font-size: 0.92rem; padding: 8px 16px; border-radius: 999px; background: var(--pale); }
.open-status-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--ink-soft); flex-shrink: 0; }
.open-status.is-open { background: #E4F8E8; color: #1D7A34; }
.open-status.is-open .open-status-dot { background: #2FA84A; }
.open-status.is-closed { background: #FCEAEC; color: var(--red-hover); }
.open-status.is-closed .open-status-dot { background: var(--red); }

.hours-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 10px; }
.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 13px 18px;
  border-radius: var(--radius-sm);
  background: var(--pale-2);
  border: 1px solid var(--line);
  font-size: 0.94rem;
}
.hours-list li.is-today {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
  font-weight: 700;
  position: relative;
}
.hours-list li.is-today::before {
  content: "Today";
  position: absolute;
  top: -10px;
  left: 14px;
  background: var(--red);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 999px;
}
.hours-day { font-weight: 600; color: var(--navy); }
.hours-list li.is-today .hours-day { color: var(--white); }

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */
.accordion { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.accordion-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.accordion-item h3 { margin: 0; font-size: 1rem; }
.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  background: none;
  border: none;
  padding: 20px 24px;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--navy);
  min-height: 44px;
}
.accordion-trigger:hover { color: var(--blue); }
.accordion-icon { flex-shrink: 0; transition: transform 0.2s ease; color: var(--blue); }
.accordion-trigger[aria-expanded="true"] .accordion-icon { transform: rotate(180deg); }
.accordion-panel { padding: 0 24px 22px; color: var(--ink-soft); font-size: 0.96rem; }

/* ==========================================================================
   FINAL CTA
   ========================================================================== */
.cta-final {
  background: linear-gradient(160deg, var(--navy-deep), var(--navy));
  color: var(--white);
  text-align: center;
}
.cta-final-inner { max-width: 680px; }
.cta-final h2 { color: var(--white); font-size: clamp(1.8rem, 3.6vw, 2.6rem); margin-bottom: 14px; }
.cta-final p { color: #CFDFF6; font-size: 1.08rem; margin-bottom: 30px; }
.cta-final-buttons { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-bottom: 28px; }
.cta-final-address { color: #9FBEE6; font-size: 0.92rem; line-height: 1.6; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer { background: var(--navy-deep); color: #C9D9F0; padding-top: 60px; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.4fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo-link { display: inline-block; margin-bottom: 16px; }
.footer-logo-img {
  height: 56px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  background: var(--white);
  border-radius: 10px;
  padding: 6px 10px;
}
.footer-logo-title { color: var(--white); font-size: 1.25rem; display: block; }
.footer-logo-sub { color: var(--sky); display: block; margin-bottom: 16px; }
.footer-address { font-size: 0.94rem; line-height: 1.7; margin-bottom: 10px; }
.footer-address a { color: #C9D9F0; }
.footer-address a:hover { color: var(--white); }
.footer-hours { font-size: 0.9rem; color: #9FB6DC; }
.footer-served { font-size: 0.86rem; color: #8AA6D4; margin: 8px 0 16px; }
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: #D5E4F8;
  font-size: 0.86rem;
  font-weight: 600;
}
.footer-social a:hover { background: rgba(255,255,255,0.16); color: var(--white); }

.footer-links h3, .footer-legal h3 { color: var(--white); font-size: 0.95rem; margin-bottom: 16px; font-family: var(--font-display); }
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.92rem; color: #B7CBEC; }
.footer-links a:hover { color: var(--white); }

.footer-legal p { font-size: 0.88rem; line-height: 1.6; color: #A9C1E4; margin-bottom: 16px; }
.footer-legal a { color: #C9D9F0; }
.footer-legal-links { display: flex; flex-wrap: wrap; gap: 8px 18px; }
.footer-legal-links a { font-size: 0.86rem; }
.footer-legal-links a:hover { color: var(--white); text-decoration: underline; }

.footer-bottom { text-align: center; padding: 22px 24px calc(22px + 70px); font-size: 0.82rem; color: #7C97C2; }

@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr; gap: 32px; text-align: left; }
}
@media (min-width: 901px) {
  .footer-bottom { padding-bottom: 22px; }
}

/* ==========================================================================
   MOBILE ACTION BAR
   ========================================================================== */
.mobile-action-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 400;
  display: none;
  background: var(--white);
  border-top: 1px solid var(--line);
  box-shadow: 0 -6px 20px rgba(11,42,91,0.12);
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  gap: 12px;
}
.mobile-action-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  background: var(--pale);
  color: var(--navy);
}
.mobile-action-btn-primary { color: #ffffff; }

@media (max-width: 900px) {
  .mobile-action-bar { display: flex; }
  .site-footer { padding-bottom: 0; }
}

/* ==========================================================================
   ACCESSIBILITY PANEL
   ========================================================================== */
.a11y-toggle {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 450;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #ffffff;
  color: var(--white);
  border: 2px solid #ffffff;
  padding: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
}
.a11y-toggle:hover { background: #ffffff; transform: scale(1.04); }
.a11y-icon {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

@media (max-width: 900px) {
  .a11y-toggle { bottom: 92px; right: 16px; width: 48px; height: 48px; }
}

.a11y-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(7,27,61,0.4);
  z-index: 460;
}

.a11y-panel {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 470;
  width: min(340px, calc(100vw - 32px));
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  padding: 22px;
  max-height: min(560px, calc(100vh - 48px));
  overflow-y: auto;
}
@media (max-width: 900px) {
  .a11y-panel { bottom: 88px; right: 16px; }
}

.a11y-panel-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.a11y-panel-head h2 { font-size: 1.05rem; }
.a11y-close { background: var(--pale); border: none; width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--navy); }
.a11y-close:hover { background: var(--line); }

.a11y-row { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 0.92rem; font-weight: 500; color: var(--ink); }
.a11y-row:last-of-type { border-bottom: none; }

.a11y-btn-group { display: flex; gap: 6px; }
.a11y-btn-group button {
  min-width: 40px;
  min-height: 40px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: var(--pale-2);
  font-weight: 700;
  color: var(--navy);
}
.a11y-btn-group button:hover { background: var(--pale); }

.a11y-switch { background: none; border: none; padding: 0; min-width: 44px; min-height: 28px; }
.a11y-switch-track { display: block; width: 44px; height: 26px; border-radius: 999px; background: var(--line); position: relative; transition: background 0.2s ease; }
.a11y-switch-thumb { position: absolute; top: 3px; left: 3px; width: 20px; height: 20px; border-radius: 50%; background: var(--white); box-shadow: 0 1px 3px rgba(0,0,0,0.3); transition: transform 0.2s ease; }
.a11y-switch[aria-checked="true"] .a11y-switch-track { background: var(--blue); }
.a11y-switch[aria-checked="true"] .a11y-switch-thumb { transform: translateX(18px); }

.a11y-reset-btn { margin-top: 18px; }
.a11y-panel-link {
  margin-top: 16px;
  text-align: center;
  font-size: 0.88rem;
}
.a11y-panel-link a {
  color: var(--blue);
  font-weight: 600;
  text-decoration: underline;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ==========================================================================
   GALLERY — horizontal scroller (3 across on desktop)
   ========================================================================== */
.gallery-scroll-wrap {
  position: relative;
}
.gallery-grid {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 4px 4px 18px;
  margin: 0 -4px;
}
.gallery-grid::-webkit-scrollbar { height: 8px; }
.gallery-grid::-webkit-scrollbar-track { background: var(--pale); border-radius: 999px; }
.gallery-grid::-webkit-scrollbar-thumb { background: var(--sky); border-radius: 999px; }
.gallery-item {
  margin: 0;
  flex: 0 0 calc((100% - 32px) / 3);
  max-width: calc((100% - 32px) / 3);
  scroll-snap-align: start;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--pale);
  box-shadow: var(--shadow-sm);
}
.gallery-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.gallery-item figcaption {
  padding: 10px 12px 12px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
}
.gallery-scroll-hint {
  text-align: center;
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-top: 4px;
}
@media (max-width: 900px) {
  .gallery-item {
    flex-basis: calc((100% - 16px) / 2);
    max-width: calc((100% - 16px) / 2);
  }
  .gallery-item img { height: 160px; }
}
@media (max-width: 600px) {
  .gallery-item {
    flex-basis: 78%;
    max-width: 78%;
  }
  .gallery-item img { height: 170px; }
}

/* ==========================================================================
   AMENITIES
   ========================================================================== */
.amenities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
}
.amenity-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.amenity-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}
.amenity-card-body { padding: 24px; }
.amenity-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}
.amenity-card p {
  color: var(--ink-soft);
  margin-bottom: 16px;
  font-size: 0.98rem;
}
.amenity-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}
.amenity-checklist li {
  position: relative;
  padding-left: 26px;
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--ink);
}
.amenity-checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 700;
}

.massage-details {
  display: block;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  max-width: 720px;
  margin: 0 auto;
}
.massage-details-copy h3 {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  margin-bottom: 10px;
}
.massage-details-copy > p {
  color: var(--ink-soft);
  margin-bottom: 22px;
}
.massage-tiers {
  display: grid;
  gap: 12px;
  margin-bottom: 24px;
}
.massage-tier {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  background: var(--pale-2);
  border: 1px solid var(--line);
}
.massage-tier-featured {
  background: linear-gradient(120deg, var(--navy), var(--blue));
  border-color: transparent;
  color: var(--white);
}
.massage-tier-name { font-family: var(--font-display); font-weight: 700; font-size: 1rem; }
.massage-tier-meta { font-size: 0.88rem; color: var(--ink-soft); }
.massage-tier-featured .massage-tier-meta { color: #C9DCF8; }
.massage-tier-price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--blue);
}
.massage-tier-featured .massage-tier-price { color: #ffffff; }
.massage-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 14px;
}
.massage-features h4 {
  font-size: 0.95rem;
  margin-bottom: 8px;
  color: var(--navy);
}
.massage-features ul {
  list-style: disc;
  padding-left: 1.1rem;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}
.massage-features li { margin-bottom: 4px; }
.massage-note {
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin: 0;
}

@media (max-width: 900px) {
  .amenities-grid,
  .massage-features { grid-template-columns: 1fr; }
  .massage-tier {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "name price"
      "meta price";
  }
  .massage-tier-name { grid-area: name; }
  .massage-tier-meta { grid-area: meta; }
  .massage-tier-price { grid-area: price; align-self: center; }
}

/* ==========================================================================
   LEGAL PAGES
   ========================================================================== */
.legal-page {
  padding: 48px 0 80px;
  background:
    linear-gradient(180deg, var(--pale-2) 0%, var(--white) 180px);
}
.legal-inner { max-width: 820px; }
.legal-breadcrumb {
  margin-bottom: 28px;
}
.legal-breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  list-style: none;
  font-size: 0.9rem;
  color: var(--ink-soft);
}
.legal-breadcrumb li:not(:last-child)::after {
  content: "/";
  margin-left: 8px;
  color: var(--line);
}
.legal-breadcrumb a {
  color: var(--blue);
  font-weight: 600;
  text-decoration: underline;
}
.legal-page h1 {
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  margin-bottom: 10px;
}
.legal-meta {
  color: var(--ink-soft);
  font-size: 0.92rem;
  margin-bottom: 28px;
}
.legal-page h2 {
  font-size: 1.25rem;
  margin: 36px 0 12px;
}
.legal-page h3 {
  font-size: 1.05rem;
  margin: 22px 0 10px;
}
.legal-page p {
  color: var(--ink-soft);
  margin-bottom: 14px;
  line-height: 1.7;
}
.legal-page ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin: 0 0 16px;
  color: var(--ink-soft);
}
.legal-page li { margin-bottom: 8px; line-height: 1.6; }
.legal-page a:not(.btn) {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.legal-page a.btn-primary,
.legal-page a.btn-primary:hover,
.legal-page a.btn-primary:visited {
  color: #ffffff;
  text-decoration: none;
}
.legal-back {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  align-items: center;
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.legal-back .btn { text-decoration: none; }
.legal-back a:not(.btn) {
  font-weight: 600;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

/* ==========================================================================
   SPECIALS POPUP MODAL
   ========================================================================== */
.specials-backdrop {
  position: fixed;
  inset: 0;
  z-index: 600;
  background: rgba(7, 27, 61, 0.62);
  backdrop-filter: blur(4px);
}
.specials-modal {
  position: fixed;
  z-index: 610;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(440px, calc(100vw - 28px));
  max-height: calc(100vh - 32px);
  overflow: auto;
  border-radius: 24px;
  background: linear-gradient(165deg, #0B2A5B 0%, #1E4FBB 48%, #4FA8E8 100%);
  color: #ffffff;
  box-shadow: 0 28px 70px rgba(7, 27, 61, 0.45);
  padding: 0;
}
.specials-modal-inner {
  position: relative;
  padding: 28px 26px 30px;
  text-align: center;
  overflow: hidden;
}
.specials-modal-inner::before,
.specials-modal-inner::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  pointer-events: none;
}
.specials-modal-inner::before {
  width: 160px;
  height: 160px;
  top: -50px;
  right: -40px;
}
.specials-modal-inner::after {
  width: 110px;
  height: 110px;
  bottom: -30px;
  left: -28px;
}
.specials-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.specials-close:hover { background: rgba(255,255,255,0.28); }
.specials-badge {
  display: inline-block;
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: #D6273A;
  color: #ffffff;
  padding: 8px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.specials-offer-art {
  position: relative;
  z-index: 1;
  width: min(220px, 70vw);
  height: min(220px, 70vw);
  margin: 0 auto 18px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.35), transparent 45%),
    linear-gradient(145deg, #ffffff 0%, #EAF3FC 100%);
  color: var(--navy);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 40px rgba(0,0,0,0.22), inset 0 0 0 6px rgba(30,79,187,0.12);
  animation: specials-pulse 2.4s ease-in-out infinite;
}
@keyframes specials-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}
body.reduce-motion .specials-offer-art { animation: none; }
.specials-amount {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3.4rem, 12vw, 4.4rem);
  line-height: 0.9;
  color: #D6273A;
  letter-spacing: -0.03em;
}
.specials-amount-label {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  margin-top: 2px;
}
.specials-modal h2 {
  position: relative;
  z-index: 1;
  color: #ffffff;
  font-size: clamp(1.45rem, 4.5vw, 1.85rem);
  margin-bottom: 10px;
}
.specials-modal p {
  position: relative;
  z-index: 1;
  color: #E4EEFC;
  font-size: 1rem;
  margin-bottom: 22px;
  line-height: 1.5;
}
.specials-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.btn-specials-claim,
a.btn-specials-claim,
a.btn-specials-claim:visited,
a.btn-specials-claim:hover {
  background: #ffffff;
  color: #0B2A5B;
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.btn-specials-claim:hover,
a.btn-specials-claim:hover {
  background: #F5F9FE;
  color: #0B2A5B;
}
.specials-actions .btn-outline-light,
.specials-actions a.btn-outline-light {
  border-color: rgba(255,255,255,0.65);
  color: #ffffff;
}
.specials-fineprint {
  position: relative;
  z-index: 1;
  margin-top: 16px !important;
  margin-bottom: 0 !important;
  font-size: 0.78rem !important;
  color: rgba(228,238,252,0.8) !important;
}
@media (max-width: 480px) {
  .specials-modal { border-radius: 20px; }
  .specials-modal-inner { padding: 24px 18px 24px; }
}

/* ==========================================================================
   HIGH CONTRAST MODE
   ========================================================================== */
body.high-contrast {
  --ink-soft: #1a1a1a;
  --line: #000000;
}
body.high-contrast .site-header,
body.high-contrast .price-card,
body.high-contrast .benefit-card,
body.high-contrast .step-card,
body.high-contrast .accordion-item,
body.high-contrast .location-card,
body.high-contrast .hours-block,
body.high-contrast .unlimited-plan,
body.high-contrast .a11y-panel {
  border: 2px solid #000 !important;
}
body.high-contrast .hero-overlay { background: rgba(0,0,0,0.78); }
body.high-contrast .btn-primary, body.high-contrast .btn-accent { background: #000; color: #fff; }
body.high-contrast .price-card-featured { background: #000; }
body.high-contrast a { text-decoration: underline; }

/* ==========================================================================
   RESPONSIVE — large desktop refinement
   ========================================================================== */
@media (min-width: 1400px) {
  .section-inner, .header-inner, .footer-inner { max-width: 1280px; }
}

/* Small mobile fine-tuning */
@media (max-width: 480px) {
  .hero-content { padding-top: 72px; padding-bottom: 48px; }
  .full-service-number { font-size: 4rem; }
  .full-service-price { width: 160px; height: 160px; }
  .hero-buttons .btn, .cta-final-buttons .btn, .unlimited-buttons .btn { width: 100%; }
}
