/* ═══════════════════════════════════════════════════════════════
   A1 Premium Auto Detailing — Apple-inspired multi-page site
   Palette from logo: metallic silver · deep navy · clean white
   ═══════════════════════════════════════════════════════════════ */

:root {
  --navy-950: #050a12;
  --navy-900: #0a1628;
  --navy-800: #0f1f3a;
  --navy-700: #152a4a;
  --navy-600: #1e3a5f;
  --navy-500: #2a4a75;
  --navy-400: #3d6a9e;

  --silver-50: #f8f9fb;
  --silver-100: #eef0f4;
  --silver-200: #d8dce4;
  --silver-300: #b8bfcc;
  --silver-400: #8e98a8;
  --silver-500: #6b7585;
  --silver-600: #5a6372;

  --white: #ffffff;
  --bg: #f5f5f7;
  --bg-elevated: #ffffff;
  --text: #1d1d1f;
  --text-secondary: #6e6e73;
  --text-tertiary: #86868b;
  --border: rgba(0, 0, 0, 0.08);
  --border-strong: rgba(10, 22, 40, 0.12);
  --shadow-sm: 0 2px 12px rgba(10, 22, 40, 0.06);
  --shadow-md: 0 12px 40px rgba(10, 22, 40, 0.1);
  --shadow-lg: 0 24px 64px rgba(10, 22, 40, 0.14);
  --shadow-glow: 0 0 48px rgba(61, 106, 158, 0.18);
  --radius: 20px;
  --radius-lg: 28px;
  --radius-full: 9999px;
  --promo-h: 40px;
  --nav-h: 64px;
  --header-offset: calc(var(--promo-h) + var(--nav-h));
  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --max: 1120px;
  --font: "SF Pro Display", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Roboto, Helvetica, Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.47;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: -0.011em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

::selection {
  background: rgba(30, 58, 95, 0.18);
  color: var(--navy-900);
}

/* ── Layout ── */
.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 22px;
}

@media (min-width: 768px) {
  .container { padding: 0 28px; }
}

.section {
  padding: 88px 0;
}

@media (min-width: 768px) {
  .section { padding: 120px 0; }
}

.section-tight { padding: 64px 0; }

/* ── Typography ── */
.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy-500);
  margin-bottom: 12px;
}

.display {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.05;
  color: var(--text);
}

.display-sm {
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.lead {
  font-size: clamp(1.125rem, 2vw, 1.35rem);
  color: var(--text-secondary);
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: -0.01em;
  max-width: 36em;
}

.gradient-text {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-500) 45%, var(--silver-400) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.metal-text {
  background: linear-gradient(180deg, #e8ebf0 0%, #8e98a8 40%, #c5cad3 55%, #5a6372 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.01em;
  border-radius: var(--radius-full);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease), background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  white-space: nowrap;
}

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

.btn-primary {
  background: linear-gradient(180deg, var(--navy-700) 0%, var(--navy-900) 100%);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(10, 22, 40, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.btn-primary:hover {
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 8px 28px rgba(10, 22, 40, 0.35), var(--shadow-glow);
}

.btn-secondary {
  background: var(--white);
  color: var(--navy-900);
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  transform: translateY(-1px);
  border-color: var(--navy-400);
  box-shadow: var(--shadow-md);
}

.btn-ghost {
  color: var(--navy-500);
  font-weight: 500;
  padding: 10px 16px;
}

.btn-ghost:hover { color: var(--navy-900); }

.btn-lg { padding: 16px 32px; font-size: 16px; }
.btn-block { width: 100%; }

/* ── Opening soon promo bar ── */
.promo-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 110;
  height: var(--promo-h);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 16px;
  background: linear-gradient(90deg, var(--navy-900) 0%, var(--navy-700) 50%, var(--navy-900) 100%);
  color: var(--silver-100);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-align: center;
  border-bottom: 1px solid rgba(184, 191, 204, 0.15);
}

.promo-bar strong {
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
}

.promo-bar a {
  color: var(--silver-100);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 600;
  white-space: nowrap;
}

.promo-bar a:hover { color: var(--white); }

.promo-bar .promo-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #6ee7a0;
  box-shadow: 0 0 8px rgba(110, 231, 160, 0.7);
  flex-shrink: 0;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(0.85); }
}

@media (max-width: 480px) {
  .promo-bar { font-size: 11px; gap: 6px; padding: 0 10px; }
  .promo-bar .promo-hide-sm { display: none; }
}

/* ── Navigation ── */
.site-header {
  position: fixed;
  top: var(--promo-h);
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background 0.4s var(--ease), backdrop-filter 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: rgba(245, 245, 247, 0.78);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom-color: var(--border);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.6) inset;
}

.site-header.on-dark {
  background: transparent;
}

.site-header.on-dark.scrolled {
  background: rgba(5, 10, 18, 0.72);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.site-header.on-dark .nav-brand-text,
.site-header.on-dark .nav-link,
.site-header.on-dark .nav-toggle span {
  color: var(--silver-100);
}

.site-header.on-dark .nav-link:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.site-header.on-dark .nav-toggle span { background: var(--silver-100); }

.nav-inner {
  height: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-logo {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 2px 12px rgba(10, 22, 40, 0.15);
  ring: 1px solid var(--silver-200);
  border: 1px solid rgba(184, 191, 204, 0.35);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease);
}

.nav-brand:hover .nav-logo {
  transform: scale(1.05);
  box-shadow: var(--shadow-glow);
}

.nav-brand-text {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--navy-900);
}

.nav-brand-text span {
  display: block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-top: 1px;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2px;
}

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

.nav-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 8px 14px;
  border-radius: var(--radius-full);
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--navy-900);
  background: rgba(10, 22, 40, 0.05);
}

.nav-cta {
  display: none;
}

@media (min-width: 900px) {
  .nav-cta { display: inline-flex; padding: 10px 18px; font-size: 13px; }
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 110;
}

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

.nav-toggle span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--navy-900);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile menu */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(245, 245, 247, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: calc(var(--header-offset) + 24px) 24px 48px;
  flex-direction: column;
  gap: 4px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
  font-size: clamp(1.25rem, 5vw, 1.5rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  padding: 14px 4px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  min-height: 48px;
  display: flex;
  align-items: center;
}

.mobile-nav .btn {
  margin-top: 28px;
  min-height: 48px;
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100dvh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--header-offset) + 32px) 0 72px;
  overflow: hidden;
  background: var(--navy-950);
  color: var(--silver-100);
}

@media (min-width: 768px) {
  .hero { padding: calc(var(--header-offset) + 40px) 0 80px; }
}

.hero-media {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy-950);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
  animation: kenburns 28s ease-in-out infinite alternate;
}

/* Home hero photo: logo sits on the right — keep it in frame */
.hero-media-home img {
  object-fit: cover;
  object-position: 78% center;
  transform: none;
  animation: none;
}

@media (min-width: 900px) {
  .hero-media-home img {
    object-position: center right;
  }
}

@keyframes kenburns {
  from { transform: scale(1.02) translate(0, 0); }
  to { transform: scale(1.08) translate(-1%, -0.5%); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(5, 10, 18, 0.92) 0%, rgba(5, 10, 18, 0.45) 45%, rgba(5, 10, 18, 0.35) 100%),
    linear-gradient(to right, rgba(5, 10, 18, 0.75) 0%, transparent 60%);
  pointer-events: none;
}

/* Darken left/bottom for readable text; keep right clearer so photo logo shows */
.hero-media-home .hero-overlay {
  background:
    linear-gradient(to top, rgba(5, 10, 18, 0.94) 0%, rgba(5, 10, 18, 0.55) 38%, rgba(5, 10, 18, 0.28) 70%, rgba(5, 10, 18, 0.22) 100%),
    linear-gradient(to right, rgba(5, 10, 18, 0.82) 0%, rgba(5, 10, 18, 0.35) 48%, rgba(5, 10, 18, 0.12) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

/* Large, always-readable business name (not just the photo logo) */
.hero-brand {
  font-size: clamp(1.35rem, 3.2vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 10px;
  text-shadow: 0 2px 24px rgba(5, 10, 18, 0.55);
}

.hero .eyebrow { color: var(--silver-300); }

/* Slightly smaller hero headline than full .display */
.hero .display,
.display-hero {
  color: var(--white);
  max-width: 14ch;
  font-size: clamp(1.85rem, 4.2vw, 3rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.hero .lead { color: var(--silver-300); margin-top: 18px; max-width: 32em; }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-actions .btn {
  min-height: 48px;
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; max-width: 320px; }
  .hero .display,
  .display-hero { max-width: none; }
  .hero-media-home img { object-position: 85% center; }
}
.hero-meta {
  margin-top: 28px;
  font-size: 14px;
  color: var(--silver-400);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 16px;
}

.hero-meta a {
  color: var(--silver-200);
  transition: color 0.2s;
}
.hero-meta a:hover { color: var(--white); }

.hero .btn-primary {
  background: linear-gradient(180deg, var(--silver-100) 0%, var(--silver-300) 100%);
  color: var(--navy-900);
  box-shadow: 0 8px 32px rgba(184, 191, 204, 0.25);
}

.hero .btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--white);
  backdrop-filter: blur(12px);
}

.hero .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
}

/* Page hero (inner pages) */
.page-hero {
  padding: calc(var(--header-offset) + 56px) 0 48px;
  background: linear-gradient(180deg, var(--white) 0%, var(--bg) 100%);
  text-align: center;
}

@media (min-width: 768px) {
  .page-hero { padding: calc(var(--header-offset) + 64px) 0 56px; }
}

.page-hero .display-sm { margin: 0 auto 16px; max-width: 18ch; }
.page-hero .lead { margin: 0 auto; }

/* ── Cards ── */
.card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease), border-color 0.3s ease;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(61, 106, 158, 0.2);
}

.card-featured {
  background: linear-gradient(165deg, var(--navy-800) 0%, var(--navy-950) 100%);
  color: var(--silver-100);
  border-color: rgba(184, 191, 204, 0.25);
  box-shadow: var(--shadow-md), var(--shadow-glow);
  position: relative;
}

.card-featured:hover {
  border-color: rgba(184, 191, 204, 0.4);
  box-shadow: var(--shadow-lg), 0 0 60px rgba(61, 106, 158, 0.3);
}

.card-featured .price { color: var(--white); }
.card-featured .card-desc { color: var(--silver-300); }
.card-featured .card-list li { color: var(--silver-200); }
.card-featured .card-list li::before { background: var(--silver-300); }
.card-featured .badge {
  background: linear-gradient(135deg, var(--silver-100), var(--silver-300));
  color: var(--navy-900);
}

.card-body { padding: 28px 28px 32px; }
@media (min-width: 768px) {
  .card-body { padding: 32px; }
}

.card-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy-400);
  margin-bottom: 10px;
}

.card-featured .card-label { color: var(--silver-400); }

.card-title {
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.price {
  font-size: 2.25rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--navy-900);
  line-height: 1;
}

.price-note {
  font-size: 12px;
  color: var(--text-tertiary);
  margin-top: 4px;
  margin-bottom: 14px;
}

.card-desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.45;
  margin-bottom: 16px;
}

.includes-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy-400);
  margin-bottom: 12px;
}

.card-featured .includes-label { color: var(--silver-400); }

.card-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
  flex: 1;
}

.card-list li {
  font-size: 14px;
  color: var(--text-secondary);
  display: flex;
  gap: 10px;
  align-items: flex-start;
  line-height: 1.4;
}

.card-list li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--navy-400);
  margin-top: 7px;
  flex-shrink: 0;
}

.badge {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  background: var(--navy-900);
  color: var(--white);
}

/* Package grid */
.package-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .package-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1100px) {
  .package-grid { grid-template-columns: repeat(4, 1fr); gap: 18px; }
  .package-grid .card-featured { transform: scale(1.02); z-index: 1; }
  .package-grid .card-featured:hover { transform: scale(1.02) translateY(-6px); }
}

/* ── Add-ons ── */
.addon-group-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy-400);
  margin-bottom: 16px;
}

.addon-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.addon-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.3s var(--ease-out);
}

.addon-item:hover {
  border-color: rgba(61, 106, 158, 0.25);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.addon-item h4 {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}

.addon-item p {
  font-size: 13px;
  color: var(--text-tertiary);
  line-height: 1.4;
}

.include-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: var(--radius-full);
  background: rgba(30, 58, 95, 0.1);
  color: var(--navy-700);
  vertical-align: middle;
  white-space: nowrap;
}

.include-tag.subtle {
  background: rgba(10, 22, 40, 0.05);
  color: var(--text-tertiary);
  font-weight: 600;
}

.inclusion-callout {
  max-width: 720px;
  margin: 0 auto 36px;
  padding: 16px 20px;
  background: linear-gradient(135deg, rgba(30, 58, 95, 0.06), rgba(184, 191, 204, 0.12));
  border: 1px solid rgba(61, 106, 158, 0.18);
  border-radius: 16px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
  text-align: center;
}

.inclusion-callout strong {
  color: var(--navy-900);
  font-weight: 600;
}

.addon-price {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy-800);
  text-align: right;
  white-space: nowrap;
  flex-shrink: 0;
}

.addon-price small {
  display: block;
  font-size: 11px;
  font-weight: 400;
  color: var(--text-tertiary);
  margin-top: 2px;
}

.addons-grid {
  display: grid;
  gap: 40px;
}

@media (min-width: 900px) {
  .addons-grid { grid-template-columns: repeat(3, 1fr); gap: 28px; }
}

/* ── Gallery ── */
.gallery-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr 1fr;
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .gallery-grid .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
}

.gallery-item {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: zoom-in;
  border: 1px solid var(--border);
  background: var(--navy-900);
  -webkit-tap-highlight-color: transparent;
}

@media (hover: none) {
  .gallery-item figcaption {
    opacity: 1;
    transform: translateY(0);
  }
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

.gallery-item:hover img { transform: scale(1.06); }

.gallery-item figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 40px 16px 14px;
  background: linear-gradient(to top, rgba(5, 10, 18, 0.75), transparent);
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.35s ease, transform 0.35s var(--ease-out);
}

.gallery-item:hover figcaption {
  opacity: 1;
  transform: translateY(0);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(5, 10, 18, 0.92);
  backdrop-filter: blur(16px);
  align-items: center;
  justify-content: center;
  padding: 24px;
  cursor: zoom-out;
}

.lightbox.open { display: flex; }

.lightbox img {
  max-width: min(1100px, 100%);
  max-height: 88vh;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  color: var(--white);
  font-size: 28px;
  line-height: 1;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.lightbox-close:hover { opacity: 1; }

/* ── Split / feature ── */
.split {
  display: grid;
  gap: 40px;
  align-items: center;
}

@media (min-width: 900px) {
  .split {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }
  .split-reverse .split-media { order: 2; }
  .split-reverse .split-copy { order: 1; }
}

.split-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  aspect-ratio: 4/3;
  background: var(--navy-900);
}

.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Keep logos / text fully visible (no crop) */
.brand-safe {
  background: var(--navy-950);
}

.brand-safe img {
  object-fit: contain !important;
  object-position: center center !important;
}

.gallery-item.brand-safe {
  background: var(--navy-950);
}

.gallery-item.brand-safe img {
  object-fit: contain;
}

/* Gallery videos */
.video-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .video-grid {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }
}

@media (min-width: 1000px) {
  .video-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.gallery-video {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--navy-950);
  box-shadow: var(--shadow-sm);
  margin: 0;
}

.gallery-video video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #0a0a0a;
  vertical-align: middle;
}

.gallery-video figcaption {
  padding: 12px 16px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  background: var(--white);
  border-top: 1px solid var(--border);
}

@media (max-width: 480px) {
  .gallery-video video {
    aspect-ratio: 4 / 3;
  }
}

.split-copy .display-sm { margin-bottom: 16px; }
.split-copy .lead { margin-bottom: 24px; }

/* ── Stats / trust ── */
.stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (min-width: 768px) {
  .stats { grid-template-columns: repeat(4, 1fr); gap: 24px; }
}

.stat {
  text-align: center;
  padding: 28px 16px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.stat-value {
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--navy-900);
  margin-bottom: 4px;
}

.stat-label {
  font-size: 13px;
  color: var(--text-tertiary);
}

/* ── Team ── */
.team-grid {
  display: grid;
  gap: 20px;
}

@media (min-width: 640px) {
  .team-grid { grid-template-columns: 1fr 1fr; }
}

.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease);
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.team-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--navy-700), var(--navy-900));
  color: var(--silver-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  border: 2px solid var(--silver-200);
}

.team-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.team-role {
  font-size: 13px;
  color: var(--navy-400);
  font-weight: 500;
  margin-bottom: 12px;
}

.team-card p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 16px;
}

.team-phone {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy-900);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}

.team-phone:hover { color: var(--navy-500); }

/* ── Contact ── */
.contact-grid {
  display: grid;
  gap: 28px;
}

@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: start;
  }
}

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease), border-color 0.25s;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(61, 106, 158, 0.25);
}

.contact-card.featured {
  background: linear-gradient(165deg, var(--navy-800), var(--navy-950));
  color: var(--white);
  border-color: rgba(184, 191, 204, 0.2);
}

.contact-card.featured .contact-label { color: var(--silver-400); }
.contact-card.featured .contact-value { color: var(--white); }
.contact-card.featured .contact-hint { color: var(--silver-400); }

.contact-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 10px;
}

.contact-value {
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--navy-900);
  word-break: break-word;
}

.contact-hint {
  font-size: 13px;
  color: var(--text-tertiary);
  margin-top: 8px;
}

.contact-phones {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
}

@media (min-width: 520px) {
  .contact-phones { grid-template-columns: 1fr 1fr; }
}

/* Form */
.form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
}

@media (min-width: 768px) {
  .form { padding: 40px; }
}

.form-row {
  display: grid;
  gap: 16px;
  margin-bottom: 16px;
}

@media (min-width: 560px) {
  .form-row.two { grid-template-columns: 1fr 1fr; }
}

.form-field label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 14px 16px;
  font-size: 15px;
  font-family: inherit;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  appearance: none;
}

.form-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1.5l5 5 5-5' stroke='%236b7585' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--navy-400);
  box-shadow: 0 0 0 4px rgba(61, 106, 158, 0.12);
  background: var(--white);
}

.form-field textarea {
  min-height: 120px;
  resize: vertical;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--text-tertiary);
}

.form-note {
  text-align: center;
  font-size: 13px;
  color: var(--text-tertiary);
  margin-top: 16px;
}

.form-note a {
  color: var(--navy-600);
  font-weight: 500;
}

.form-note a:hover { text-decoration: underline; }

.aside-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.aside-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}

.aside-card h3 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy-400);
  margin-bottom: 10px;
}

.aside-card p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.aside-card strong { color: var(--text); font-weight: 600; }

/* ── CTA band ── */
.cta-band {
  background: linear-gradient(145deg, var(--navy-800) 0%, var(--navy-950) 100%);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 56px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: -40% -20%;
  background: radial-gradient(circle at 30% 40%, rgba(61, 106, 158, 0.35), transparent 50%),
              radial-gradient(circle at 80% 60%, rgba(184, 191, 204, 0.12), transparent 40%);
  pointer-events: none;
}

.cta-band > * { position: relative; z-index: 1; }

.cta-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--silver-300);
  margin-bottom: 12px;
}

.cta-band h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.cta-band p {
  color: var(--silver-300);
  font-size: 1.05rem;
  max-width: 28em;
  margin: 0 auto 28px;
}

.cta-band .flex-center {
  gap: 10px;
}

.cta-band .btn {
  min-height: 48px;
}

@media (max-width: 480px) {
  .cta-band {
    padding: 40px 20px;
  }
  .cta-band .btn-lg {
    width: 100%;
    max-width: 280px;
  }
}

.cta-band .btn-primary {
  background: linear-gradient(180deg, var(--silver-50), var(--silver-300));
  color: var(--navy-900);
}

/* ── Footer ── */
.site-footer {
  background: var(--navy-950);
  color: var(--silver-300);
  padding: 64px 0 32px;
  margin-top: 0;
}

.footer-grid {
  display: grid;
  gap: 40px;
  margin-bottom: 48px;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 32px;
  }
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-brand img {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  object-fit: cover;
  border: 1px solid rgba(184, 191, 204, 0.25);
}

.footer-brand h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.01em;
}

.footer-brand p {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--silver-500);
  margin-top: 4px;
}

.footer-col h4 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--silver-500);
  margin-bottom: 16px;
}

.footer-col a,
.footer-col p {
  display: block;
  font-size: 14px;
  color: var(--silver-300);
  margin-bottom: 10px;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  text-align: center;
  font-size: 12px;
  color: var(--silver-500);
}

@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

/* ── Section header ── */
.section-head {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 56px;
}

.section-head .display-sm { margin-bottom: 14px; }
.section-head .lead { margin: 0 auto; }

/* ── Logo showcase ── */
.logo-hero-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 48px 24px;
}

.logo-hero-block img {
  width: min(320px, 80vw);
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(10, 22, 40, 0.12));
  margin-bottom: 32px;
}

/* ── Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
  transition-delay: var(--delay, 0ms);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Toast ── */
.toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--navy-900);
  color: var(--white);
  padding: 14px 24px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  z-index: 300;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s var(--ease-out);
  max-width: 90vw;
  text-align: center;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ── Utility ── */
.text-center { text-align: center; }
.mt-8 { margin-top: 32px; }
.mt-12 { margin-top: 48px; }
.mb-0 { margin-bottom: 0; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* Home feature strip */
.feature-strip {
  display: grid;
  gap: 16px;
  margin-top: -48px;
  position: relative;
  z-index: 5;
}

@media (min-width: 768px) {
  .feature-strip { grid-template-columns: repeat(3, 1fr); gap: 20px; }
}

.feature-pill {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-md);
  text-align: center;
}

.feature-pill h3 {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
  color: var(--navy-900);
}

.feature-pill p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.45;
}

.feature-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 14px;
  border-radius: 12px;
  background: linear-gradient(145deg, var(--silver-100), var(--silver-200));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-700);
}

.feature-icon svg {
  width: 22px;
  height: 22px;
}

/* Process steps */
.process {
  display: grid;
  gap: 24px;
  counter-reset: step;
}

@media (min-width: 768px) {
  .process { grid-template-columns: repeat(3, 1fr); gap: 28px; }
}

.process-step {
  counter-increment: step;
  padding: 8px 0;
}

.process-step::before {
  content: counter(step, decimal-leading-zero);
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--navy-400);
  margin-bottom: 12px;
}

.process-step h3 {
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.process-step p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Subtle page bg accents */
.page-wrap {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

main { flex: 1; }

.bg-white { background: var(--white); }
.bg-soft { background: var(--bg); }

/* Safe areas (notched phones) */
@supports (padding: max(0px)) {
  .promo-bar {
    padding-left: max(16px, env(safe-area-inset-left));
    padding-right: max(16px, env(safe-area-inset-right));
  }
  .nav-inner {
    padding-left: max(22px, env(safe-area-inset-left));
    padding-right: max(22px, env(safe-area-inset-right));
  }
  .container {
    padding-left: max(22px, env(safe-area-inset-left));
    padding-right: max(22px, env(safe-area-inset-right));
  }
  .mobile-nav {
    padding-left: max(24px, env(safe-area-inset-left));
    padding-right: max(24px, env(safe-area-inset-right));
    padding-bottom: max(48px, env(safe-area-inset-bottom));
  }
}

/* Prevent horizontal overflow on small screens */
.package-grid .card,
.addon-item {
  min-width: 0;
}

.addon-item {
  flex-wrap: wrap;
}

@media (max-width: 400px) {
  .addon-price {
    width: 100%;
    text-align: left;
    margin-top: 4px;
  }
  .price { font-size: 1.85rem; }
  .feature-strip { margin-top: -32px; }
}
