/* ==========================================================================
   JP's Mobile Detailing LLC — Apple Liquid Glass Design System
   Commerce Township, Michigan
   ========================================================================== */

/* -- 1. DESIGN TOKENS --------------------------------------------------- */
:root {
  /* Palette */
  --void:        #00090F;
  --abyss:       #00111C;
  --deep:        #001829;
  --ocean:       #002540;
  --cobalt:      #013A63;
  --water:       #0066A8;
  --azure:       #0088CC;
  --cyan:        #00AADD;
  --aqua:        #33BBEE;
  --sky:         #7DD4F0;
  --mist:        #C2EAF8;

  /* Liquid Glass — iCloud-style: opaque enough to be a panel, translucent enough to show depth */
  --g-xs:        rgba(10, 50, 90, 0.38);
  --g-sm:        rgba(10, 55, 100, 0.48);
  --g-md:        rgba(12, 60, 110, 0.58);
  --g-lg:        rgba(14, 65, 120, 0.68);
  --g-featured:  rgba(0, 80, 140, 0.62);
  --g-border:    rgba(255, 255, 255, 0.080);
  --g-border-hi: rgba(255, 255, 255, 0.140);
  /* Specular: bright top-left edge, the liquid glass signature */
  --g-specular:  inset 0 1px 0 rgba(255,255,255,0.14), inset 1px 0 0 rgba(255,255,255,0.05);
  --g-shadow:    0 4px 24px rgba(0, 4, 14, 0.44), 0 1px 4px rgba(0, 4, 14, 0.22);
  --g-shadow-lg: 0 12px 48px rgba(0, 4, 14, 0.60), 0 4px 12px rgba(0, 4, 14, 0.30);
  --g-blur:      blur(40px) saturate(200%);
  --g-blur-lg:   blur(60px) saturate(220%);

  /* Text — blue-tinted, never pure white */
  --t-100:  rgba(220, 240, 255, 0.96);
  --t-70:   rgba(170, 210, 240, 0.72);
  --t-50:   rgba(130, 185, 220, 0.52);
  --t-label:rgba(0, 170, 221, 0.92);

  /* Glow — kept subtle */
  --glow-xs: 0 0 12px rgba(0, 150, 210, 0.22);
  --glow-sm: 0 0 20px rgba(0, 150, 210, 0.32), 0 0 50px rgba(0, 150, 210, 0.10);
  --glow-md: 0 0 30px rgba(0, 150, 210, 0.46), 0 0 70px rgba(0, 150, 210, 0.16);
  --glow-lg: 0 0 44px rgba(0, 150, 210, 0.58), 0 0 100px rgba(0, 150, 210, 0.22);

  /* System */
  --font:        -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', 'Inter', system-ui, sans-serif;
  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --trans:       all 0.30s var(--ease);

  /* Spacing */
  --s-xs: 0.4rem;  --s-sm: 0.85rem; --s-md: 1.5rem;
  --s-lg: 2.5rem;  --s-xl: 4rem;    --s-2xl: 7rem;

  /* Radius */
  --r-sm: 10px;  --r-md: 14px;  --r-lg: 20px;
  --r-xl: 28px;  --r-pill: 999px;
}

/* -- 2. RESET & BASE ---------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font);
  color: var(--t-100);
  background: var(--void);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

a      { text-decoration: none; color: inherit; }
img    { max-width: 100%; display: block; }
ul     { list-style: none; }
button { font-family: var(--font); }

/* -- 3. ANIMATED BACKGROUND -------------------------------------------- */
#bg-canvas {
  position: fixed;
  inset: 0;
  z-index: -1;
  background: linear-gradient(160deg, #001020 0%, #00090F 60%, #000C18 100%);
  overflow: hidden;
  pointer-events: none;
}

.bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  will-change: transform;
  pointer-events: none;
}

#blob-1 {
  width: clamp(500px, 75vw, 1100px);
  height: clamp(500px, 75vw, 1100px);
  background: radial-gradient(circle, rgba(0, 65, 130, 0.55) 0%, transparent 65%);
  top: -25%; left: -20%;
  animation: drift-1 28s ease-in-out infinite;
}
#blob-2 {
  width: clamp(400px, 60vw, 900px);
  height: clamp(400px, 60vw, 900px);
  background: radial-gradient(circle, rgba(0, 90, 160, 0.38) 0%, transparent 65%);
  bottom: -20%; right: -15%;
  animation: drift-2 34s ease-in-out infinite;
}
#blob-3 {
  width: clamp(300px, 50vw, 700px);
  height: clamp(300px, 50vw, 700px);
  background: radial-gradient(circle, rgba(0, 130, 190, 0.18) 0%, transparent 65%);
  top: 40%; left: 38%;
  animation: drift-3 22s ease-in-out infinite alternate;
}

@keyframes drift-1 {
  0%, 100% { transform: translate(0, 0); }
  33%       { transform: translate(8vw, 14vh); }
  66%       { transform: translate(3vw, 5vh); }
}
@keyframes drift-2 {
  0%, 100% { transform: translate(0, 0); }
  40%       { transform: translate(-9vw, -11vh); }
  70%       { transform: translate(-4vw, -3vh); }
}
@keyframes drift-3 {
  0%   { transform: translate(0, 0) scale(1.0); }
  100% { transform: translate(-7vw, 11vh) scale(1.3); }
}

@media (prefers-reduced-motion: reduce) {
  .bg-blob { animation: none !important; }
}

/* -- 4. TYPOGRAPHY ------------------------------------------------------ */
.d1 { font-size: clamp(2.8rem, 6vw, 5.4rem);  font-weight: 800; letter-spacing: -0.045em; line-height: 1.03; }
.d2 { font-size: clamp(2rem,   4vw, 3.6rem);  font-weight: 700; letter-spacing: -0.035em; line-height: 1.07; }
.d3 { font-size: clamp(1.4rem, 2.5vw, 2.1rem); font-weight: 700; letter-spacing: -0.025em; line-height: 1.14; }
.h4 { font-size: 1.15rem; font-weight: 600; letter-spacing: -0.01em; }

.eyebrow {
  display: inline-block;
  font-size: 0.70rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--t-label);
  margin-bottom: var(--s-sm);
}

.lead {
  font-size: 1.08rem;
  line-height: 1.80;
  color: var(--t-70);
  max-width: 56ch;
}

.gradient-text {
  background: linear-gradient(135deg, var(--aqua) 0%, var(--sky) 50%, var(--mist) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* -- 5. LAYOUT ---------------------------------------------------------- */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 var(--s-lg);
}

.section          { padding: var(--s-2xl) 0; position: relative; }
.section--compact { padding: var(--s-xl) 0; }

.section-header {
  text-align: center;
  margin-bottom: var(--s-xl);
}

.grid-3    { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-md); }
.grid-2    { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--s-md); }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: var(--s-md); }

/* -- 6. LIQUID GLASS COMPONENTS ---------------------------------------- */
.glass {
  background: var(--g-sm);
  backdrop-filter: var(--g-blur);
  -webkit-backdrop-filter: var(--g-blur);
  border: 1px solid var(--g-border);
  border-radius: var(--r-lg);
  box-shadow: var(--g-shadow), var(--g-specular);
  transition: var(--trans);
}

.glass:hover {
  background: var(--g-md);
  border-color: var(--g-border-hi);
  box-shadow: var(--g-shadow-lg), var(--g-specular);
  transform: translateY(-3px);
}

.glass-strong {
  background: var(--g-md);
  backdrop-filter: var(--g-blur-lg);
  -webkit-backdrop-filter: var(--g-blur-lg);
  border: 1px solid var(--g-border-hi);
  border-radius: var(--r-lg);
  box-shadow: var(--g-shadow-lg), var(--g-specular);
}

.glass-featured {
  background: var(--g-featured);
  backdrop-filter: var(--g-blur-lg);
  -webkit-backdrop-filter: var(--g-blur-lg);
  border: 1px solid rgba(0, 170, 221, 0.28);
  border-radius: var(--r-lg);
  box-shadow: var(--g-shadow-lg), var(--g-specular), var(--glow-xs);
  position: relative;
}

/* -- 7. NAVIGATION ------------------------------------------------------ */
.glass-nav {
  position: fixed;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: calc(100% - 32px);
  max-width: 960px;
  background: rgba(0, 18, 36, 0.78);
  backdrop-filter: blur(40px) saturate(220%);
  -webkit-backdrop-filter: blur(40px) saturate(220%);
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: var(--r-pill);
  box-shadow: 0 4px 24px rgba(0, 4, 14, 0.50), inset 0 1px 0 rgba(255,255,255,0.10);
  padding: 8px 14px;
  transition: all 0.4s var(--ease);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-md);
}

.nav-brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

.nav-logo {
  height: 30px;
  width: auto;
  object-fit: contain;
}

/* fallback if logo doesn't load */
.nav-brand-text {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--t-100);
  white-space: nowrap;
}
.nav-brand-text .brand-dot { color: var(--cyan); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  font-size: 0.855rem;
  font-weight: 500;
  color: var(--t-70);
  padding: 0.32rem 0.80rem;
  border-radius: var(--r-pill);
  transition: var(--trans);
  white-space: nowrap;
  letter-spacing: -0.01em;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--t-100);
  background: rgba(255, 255, 255, 0.07);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--t-70);
  border-radius: 2px;
  transition: var(--trans);
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile dropdown */
.nav-mobile {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 0; right: 0;
  background: rgba(0, 18, 36, 0.96);
  backdrop-filter: var(--g-blur-lg);
  -webkit-backdrop-filter: var(--g-blur-lg);
  border: 1px solid var(--g-border);
  border-radius: var(--r-lg);
  padding: var(--s-sm);
  flex-direction: column;
  gap: 4px;
  box-shadow: var(--g-shadow-lg);
}
.nav-mobile.open   { display: flex; }
.nav-mobile a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--t-70);
  padding: 0.7rem 1rem;
  border-radius: var(--r-md);
  transition: var(--trans);
}
.nav-mobile a:hover,
.nav-mobile a.active { color: var(--t-100); background: var(--g-sm); }
.nav-mobile .btn-glow { text-align: center; margin-top: 4px; }

/* -- 8. BUTTONS --------------------------------------------------------- */
.btn-glow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--azure) 0%, var(--cyan) 60%, var(--aqua) 100%);
  color: #001322;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: -0.01em;
  padding: 0.65rem 1.5rem;
  border-radius: var(--r-pill);
  border: none;
  cursor: pointer;
  box-shadow: 0 0 0 1px rgba(0,150,210,0.40), var(--glow-sm), inset 0 1px 0 rgba(255,255,255,0.28);
  animation: glow-pulse 3.5s ease-in-out infinite;
  transition: transform 0.25s var(--ease-spring), box-shadow 0.25s var(--ease);
  white-space: nowrap;
  text-decoration: none;
}
.btn-glow:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 0 0 1px rgba(51,187,238,0.60), var(--glow-lg), inset 0 1px 0 rgba(255,255,255,0.35);
  animation-play-state: paused;
}
.btn-glow--lg { font-size: 0.97rem; padding: 0.80rem 1.9rem; }

@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 0 0 1px rgba(0,150,210,0.40), var(--glow-sm), inset 0 1px 0 rgba(255,255,255,0.28); }
  50%       { box-shadow: 0 0 0 1px rgba(51,187,238,0.55), var(--glow-md), inset 0 1px 0 rgba(255,255,255,0.35); }
}

.btn-glass {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  color: var(--t-100);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: -0.01em;
  padding: 0.65rem 1.5rem;
  border-radius: var(--r-pill);
  border: 1px solid rgba(255, 255, 255, 0.090);
  cursor: pointer;
  transition: var(--trans);
  text-decoration: none;
  white-space: nowrap;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}
.btn-glass:hover {
  background: rgba(255, 255, 255, 0.095);
  border-color: rgba(255, 255, 255, 0.160);
  transform: translateY(-2px);
}
.btn-glass--lg { font-size: 0.97rem; padding: 0.80rem 1.9rem; }

/* -- 9. HERO ------------------------------------------------------------ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px var(--s-lg) var(--s-2xl);
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  opacity: 0.35;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(0, 9, 15, 0.96) 0%,
    rgba(0, 9, 15, 0.82) 38%,
    rgba(0, 9, 15, 0.48) 68%,
    rgba(0, 9, 15, 0.22) 100%
  );
}

.hero-content {
  max-width: 680px;
  position: relative;
  z-index: 2;
}

.hero-actions {
  display: flex;
  gap: var(--s-sm);
  flex-wrap: wrap;
  margin-top: var(--s-lg);
  align-items: center;
}

.hero-contact-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-pill);
  padding: 0.4rem 1rem;
  font-size: 0.84rem;
  color: var(--t-70);
  transition: var(--trans);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}
.hero-contact-pill:hover { background: rgba(255,255,255,0.08); color: var(--t-100); }

.hero-stats {
  display: flex;
  gap: var(--s-md);
  margin-top: var(--s-xl);
  flex-wrap: wrap;
}

.stat-pill {
  background: rgba(10, 50, 90, 0.52);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--r-pill);
  padding: 0.55rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}
.stat-pill .stat-num   { font-size: 1.1rem; font-weight: 800; color: var(--cyan); letter-spacing: -0.03em; }
.stat-pill .stat-label { font-size: 0.76rem; color: var(--t-50); }

/* -- 10. PAGE HERO (inner pages) ---------------------------------------- */
.page-hero {
  padding: 160px var(--s-lg) var(--s-xl);
  position: relative;
}
.page-hero .breadcrumb {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.80rem;
  color: var(--t-50);
  margin-bottom: var(--s-md);
}
.page-hero .breadcrumb a { color: var(--t-50); transition: color 0.25s; }
.page-hero .breadcrumb a:hover { color: var(--cyan); }
.page-hero .breadcrumb span { color: var(--t-70); }

/* -- 11. FEATURED PHOTOS (homepage spotlight) --------------------------- */
.featured-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 10px;
  margin-top: var(--s-xl);
}

.featured-tile {
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255,255,255,0.065);
  box-shadow: var(--g-shadow);
  transition: var(--trans);
  cursor: pointer;
}
.featured-tile--main {
  grid-row: span 2;
}
.featured-tile--main img   { aspect-ratio: 3/4; }
.featured-tile--sm img     { aspect-ratio: 4/3; }
.featured-tile img {
  width: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s var(--ease);
}
.featured-tile:hover {
  box-shadow: var(--g-shadow-lg), var(--glow-xs);
  border-color: rgba(255,255,255,0.12);
  transform: scale(1.015);
}
.featured-tile:hover img { transform: scale(1.06); }

.featured-tile-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 10px 14px;
  background: linear-gradient(to top, rgba(0,9,15,0.80) 0%, transparent 100%);
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--t-70);
  letter-spacing: 0.03em;
}

/* -- 12. SERVICE CARDS -------------------------------------------------- */
.service-card {
  padding: var(--s-lg);
  display: flex;
  flex-direction: column;
  gap: var(--s-sm);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.14), transparent);
}

.service-card-tag {
  display: inline-flex;
  align-items: center;
  background: rgba(0, 150, 210, 0.14);
  border: 1px solid rgba(0, 150, 210, 0.24);
  border-radius: var(--r-pill);
  padding: 0.22rem 0.70rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--cyan);
  width: fit-content;
}

.service-card-name {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--t-100);
}
.service-card-desc {
  font-size: 0.875rem;
  color: var(--t-70);
  line-height: 1.68;
  flex: 1;
}

.service-card-price { display: flex; align-items: baseline; gap: 4px; margin-top: auto; }
.price-from  { font-size: 0.68rem; color: var(--t-50); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 2px; }
.price-num   { font-size: 2.2rem; font-weight: 800; color: var(--t-100); letter-spacing: -0.04em; line-height: 1; }
.price-sup   { font-size: 1rem; font-weight: 600; color: var(--t-70); vertical-align: super; line-height: 1; }
.price-note  { font-size: 0.76rem; color: var(--t-50); }

.service-features { display: flex; flex-direction: column; gap: 6px; margin: var(--s-sm) 0; }
.service-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--t-70);
  line-height: 1.4;
}
.service-features li::before {
  content: '';
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--cyan);
  flex-shrink: 0;
}

.badge-featured {
  position: absolute;
  top: var(--s-md);
  right: var(--s-md);
  background: linear-gradient(135deg, var(--azure), var(--cyan));
  color: #001322;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 0.20rem 0.60rem;
  border-radius: var(--r-pill);
}

.service-card--elite {
  background: linear-gradient(135deg, rgba(0, 60, 120, 0.60) 0%, rgba(0, 110, 170, 0.45) 50%, rgba(0, 60, 120, 0.60) 100%);
  border: 1px solid rgba(0, 170, 221, 0.30);
  border-radius: var(--r-lg);
  box-shadow: var(--g-shadow-lg), var(--g-specular), var(--glow-xs);
}

/* -- 13. ADD-ONS -------------------------------------------------------- */
.addon-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: var(--s-sm); }
.addon-item {
  background: var(--g-xs);
  border: 1px solid var(--g-border);
  border-radius: var(--r-md);
  padding: var(--s-md);
  transition: var(--trans);
}
.addon-item:hover { background: var(--g-sm); border-color: var(--g-border-hi); }
.addon-item-name  { font-size: 0.9rem; font-weight: 600; color: var(--t-100); margin-bottom: 4px; }
.addon-item-price { font-size: 0.80rem; color: var(--cyan); font-weight: 600; }
.addon-item-note  { font-size: 0.76rem; color: var(--t-50); margin-top: 4px; }

/* -- 14. REQUIREMENTS NOTICE -------------------------------------------- */
.requirement-notice {
  background: rgba(0, 100, 160, 0.14);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--r-lg);
  padding: var(--s-lg);
  display: flex;
  gap: var(--s-md);
  align-items: flex-start;
  backdrop-filter: var(--g-blur);
  -webkit-backdrop-filter: var(--g-blur);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.07);
}
.requirement-notice-icon {
  width: 38px; height: 38px;
  background: rgba(0, 150, 210, 0.16);
  border: 1px solid rgba(0, 150, 210, 0.26);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.requirement-notice-icon svg {
  width: 17px; height: 17px;
  stroke: var(--cyan); fill: none; stroke-width: 2; stroke-linecap: round;
}
.requirement-notice-title { font-size: 0.93rem; font-weight: 700; color: var(--cyan); margin-bottom: var(--s-xs); letter-spacing: -0.01em; }
.requirement-notice-body  { font-size: 0.875rem; color: var(--t-70); line-height: 1.74; }

/* -- 15. QUOTE MODAL ---------------------------------------------------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 6, 16, 0.78);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--s-lg);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.30s var(--ease);
}
.modal-overlay.open { opacity: 1; pointer-events: all; }

.modal-panel {
  background: rgba(0, 22, 44, 0.90);
  backdrop-filter: var(--g-blur-lg);
  -webkit-backdrop-filter: var(--g-blur-lg);
  border: 1px solid rgba(255,255,255,0.090);
  border-radius: var(--r-xl);
  box-shadow: var(--g-shadow-lg), inset 0 1px 0 rgba(255,255,255,0.10), var(--glow-xs);
  width: 100%;
  max-width: 520px;
  max-height: 92vh;
  overflow-y: auto;
  padding: var(--s-xl) var(--s-lg) var(--s-lg);
  position: relative;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.4s var(--ease-spring), opacity 0.30s var(--ease);
  scrollbar-width: none;
}
.modal-panel::-webkit-scrollbar { display: none; }
.modal-overlay.open .modal-panel { transform: translateY(0) scale(1); }

.modal-close {
  position: absolute;
  top: var(--s-md); right: var(--s-md);
  width: 28px; height: 28px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 50%;
  color: var(--t-70);
  font-size: 0.95rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--trans);
}
.modal-close:hover { background: rgba(255,255,255,0.12); color: var(--t-100); }

.modal-progress { display: flex; align-items: center; gap: var(--s-sm); margin-bottom: var(--s-lg); }
.progress-dots  { display: flex; gap: 6px; }
.progress-dot {
  width: 28px; height: 3px;
  border-radius: 2px;
  background: rgba(255,255,255,0.07);
  transition: var(--trans);
}
.progress-dot.active { background: var(--cyan); }
.progress-label { font-size: 0.74rem; color: var(--t-50); margin-left: auto; }

.modal-step { display: none; animation: step-in 0.30s var(--ease-spring); }
.modal-step.active { display: block; }
@keyframes step-in {
  from { opacity: 0; transform: translateX(14px); }
  to   { opacity: 1; transform: translateX(0); }
}
.modal-step h3   { font-size: 1.25rem; font-weight: 700; letter-spacing: -0.025em; margin-bottom: var(--s-xs); color: var(--t-100); }
.modal-step p.sub { font-size: 0.875rem; color: var(--t-50); margin-bottom: var(--s-lg); }

.service-options { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: var(--s-lg); }
.service-option input[type="radio"] { display: none; }
.option-card {
  padding: 0.9rem 1rem;
  border-radius: var(--r-md);
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.03);
  transition: var(--trans);
  display: block;
  user-select: none;
}
.option-card:hover { background: rgba(255,255,255,0.06); }
.service-option input:checked + .option-card {
  background: rgba(0, 150, 210, 0.14);
  border-color: var(--cyan);
}
.option-name  { font-size: 0.82rem; font-weight: 600; color: var(--t-100); display: block; }
.option-price { font-size: 1rem; font-weight: 800; color: var(--cyan); display: block; margin-top: 2px; }

.vehicle-type-group { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: var(--s-md); }
.vehicle-type-btn {
  flex: 1; min-width: 100px;
  padding: 0.60rem 0.70rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--r-md);
  color: var(--t-70);
  font-size: 0.82rem; font-weight: 600; font-family: var(--font);
  cursor: pointer; transition: var(--trans); text-align: center;
}
.vehicle-type-btn:hover { background: rgba(255,255,255,0.06); color: var(--t-100); }
.vehicle-type-btn.selected { background: rgba(0,150,210,0.14); border-color: var(--cyan); color: var(--cyan); }

.modal-nav { display: flex; gap: var(--s-sm); margin-top: var(--s-lg); }
.modal-nav .btn-glass { flex: 0; }
.modal-nav .btn-glow  { flex: 1; }

.confirm-icon {
  width: 58px; height: 58px;
  background: rgba(0,150,210,0.14);
  border: 1px solid var(--cyan);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto var(--s-md);
  animation: confirm-pop 0.5s var(--ease-spring);
}
@keyframes confirm-pop { from { transform: scale(0.5); opacity: 0; } to { transform: scale(1); opacity: 1; } }
#stepConfirm { text-align: center; padding-bottom: var(--s-sm); }
#stepConfirm h3 { margin-bottom: var(--s-sm); }

/* -- 16. FORMS ---------------------------------------------------------- */
.form-group { margin-bottom: var(--s-md); }
.form-label {
  display: block;
  font-size: 0.74rem; font-weight: 600; letter-spacing: 0.05em;
  text-transform: uppercase; color: var(--t-label); margin-bottom: 6px;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.78rem 1rem;
  background: rgba(0, 20, 45, 0.60);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--r-md);
  color: var(--t-100); font-family: var(--font); font-size: 0.9rem;
  transition: var(--trans); outline: none; appearance: none;
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--t-50); }
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: rgba(0, 150, 210, 0.48);
  background: rgba(0, 28, 60, 0.70);
  box-shadow: 0 0 0 3px rgba(0, 150, 210, 0.09);
}
.form-select option { background: #001829; color: var(--t-100); }
.form-textarea { resize: vertical; min-height: 120px; }

/* -- 17. FAQ ACCORDION -------------------------------------------------- */
.faq-list { display: flex; flex-direction: column; gap: var(--s-sm); max-width: 760px; margin: 0 auto; }
.faq-item {
  background: var(--g-xs);
  border: 1px solid var(--g-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: var(--trans);
}
.faq-item:hover { border-color: var(--g-border-hi); }
.faq-question {
  width: 100%; background: none; border: none;
  padding: var(--s-md) var(--s-lg);
  display: flex; align-items: center; justify-content: space-between; gap: var(--s-md);
  color: var(--t-100); font-size: 0.93rem; font-weight: 600;
  font-family: var(--font); letter-spacing: -0.01em;
  cursor: pointer; text-align: left; transition: var(--trans);
}
.faq-question:hover { color: var(--aqua); }
.faq-icon {
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.09);
  display: flex; align-items: center; justify-content: center;
  color: var(--cyan); font-size: 0.88rem; flex-shrink: 0;
  transition: transform 0.3s var(--ease);
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease), padding 0.3s var(--ease); }
.faq-item.open .faq-answer { max-height: 300px; padding-bottom: var(--s-md); }
.faq-answer p { padding: 0 var(--s-lg); color: var(--t-70); font-size: 0.9rem; line-height: 1.80; }

/* -- 18. GALLERY -------------------------------------------------------- */
.gallery-category-label {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.13em;
  text-transform: uppercase; color: var(--t-label);
  margin-bottom: var(--s-md);
  display: flex; align-items: center; gap: var(--s-sm);
}
.gallery-category-label::after {
  content: ''; flex: 1; height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,0.09), transparent);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

/* Before & After pairs */
.gallery-ba-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.gallery-ba-pair {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.065);
  box-shadow: var(--g-shadow);
  background: var(--g-xs);
}
.gallery-ba-pair-inner { display: grid; grid-template-columns: 1fr 1fr; }
.gallery-ba-pair-inner img {
  width: 100%; height: 180px;
  object-fit: cover; display: block;
}
.gallery-ba-label {
  background: rgba(0, 14, 28, 0.75);
  padding: 7px 12px;
  display: flex; gap: 8px; align-items: center;
}
.gallery-ba-label span { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; }
.gallery-ba-label .before-tag { color: rgba(255,255,255,0.40); }
.gallery-ba-label .after-tag  { color: var(--cyan); }
.gallery-ba-label .divider    { flex: 1; height: 1px; background: rgba(255,255,255,0.07); }
.gallery-ba-title { font-size: 0.80rem; font-weight: 600; color: var(--t-70); padding: 7px 12px 10px; }

.gallery-tile {
  aspect-ratio: 4/3;
  background: var(--g-xs);
  border: 1px solid rgba(255,255,255,0.055);
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: var(--trans);
}
.gallery-tile:hover { border-color: rgba(255,255,255,0.12); box-shadow: var(--glow-xs); transform: scale(1.02); }
.gallery-tile img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s var(--ease); }
.gallery-tile:hover img { transform: scale(1.06); }
.gallery-tile-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 8px 12px;
  background: linear-gradient(to top, rgba(0,9,15,0.78) 0%, transparent 100%);
  font-size: 0.70rem; font-weight: 600; color: var(--t-70); letter-spacing: 0.03em;
}
.gallery-tile--wide { grid-column: span 2; aspect-ratio: 16/7; }
.gallery-tile--tall { grid-row: span 2; aspect-ratio: 3/5; }

/* Action shots grid */
.gallery-action-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.gallery-action-tile {
  border-radius: var(--r-lg); overflow: hidden; position: relative;
  border: 1px solid rgba(255,255,255,0.065);
  box-shadow: var(--g-shadow); transition: var(--trans);
}
.gallery-action-tile img {
  width: 100%; aspect-ratio: 3/4;
  object-fit: cover; display: block; transition: transform 0.6s var(--ease);
}
.gallery-action-tile.wide img { aspect-ratio: 3/2; }
.gallery-action-tile:hover {
  box-shadow: var(--g-shadow-lg), var(--glow-xs);
  border-color: rgba(255,255,255,0.12); transform: translateY(-3px);
}
.gallery-action-tile:hover img { transform: scale(1.05); }
.gallery-action-tile-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 10px 14px;
  background: linear-gradient(to top, rgba(0,9,15,0.80) 0%, transparent 100%);
  font-size: 0.74rem; font-weight: 600; color: var(--t-70);
}
.gallery-action-tile.important-tile {
  border-color: rgba(0, 150, 210, 0.22);
}

/* -- 19. FEATURE CARDS (Why JP's) -------------------------------------- */
.feature-card {
  padding: var(--s-lg); text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: var(--s-sm);
}
.feature-num {
  font-size: 0.70rem; font-weight: 700; letter-spacing: 0.06em; color: var(--t-label);
  width: 38px; height: 38px;
  background: rgba(0, 150, 210, 0.12);
  border: 1px solid rgba(0, 150, 210, 0.20);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: var(--trans);
}
.feature-card:hover .feature-num { background: rgba(0, 150, 210, 0.20); }
.feature-card h3 { font-size: 0.97rem; font-weight: 700; letter-spacing: -0.01em; color: var(--t-100); }
.feature-card p  { font-size: 0.875rem; color: var(--t-70); line-height: 1.68; }

/* -- 20. SERVICE AREA --------------------------------------------------- */
.area-badge {
  display: inline-flex; align-items: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.065);
  border-radius: var(--r-pill);
  padding: 0.26rem 0.76rem;
  font-size: 0.80rem; color: var(--t-70); transition: var(--trans);
}
.area-badge:hover { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.12); color: var(--t-100); }

/* -- 21. CTA STRIP ------------------------------------------------------ */
.cta-strip {
  text-align: center;
  padding: var(--s-2xl) var(--s-lg);
  position: relative;
}
.cta-strip::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 60, 110, 0.08) 50%, transparent 100%);
  pointer-events: none;
}

/* -- 22. FOOTER --------------------------------------------------------- */
.footer {
  background: rgba(0, 8, 16, 0.90);
  backdrop-filter: var(--g-blur);
  -webkit-backdrop-filter: var(--g-blur);
  border-top: 1px solid rgba(255,255,255,0.055);
  padding: var(--s-2xl) var(--s-lg) var(--s-lg);
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: var(--s-xl); margin-bottom: var(--s-xl); }
.footer-logo { height: 28px; width: auto; object-fit: contain; margin-bottom: var(--s-sm); }
.footer-brand { font-size: 1rem; font-weight: 800; color: var(--t-100); margin-bottom: var(--s-sm); letter-spacing: -0.025em; }
.footer-brand .dot { color: var(--cyan); }
.footer-desc { font-size: 0.875rem; color: var(--t-50); line-height: 1.75; margin-bottom: var(--s-md); }
.footer-contact-row {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.875rem; color: var(--t-50); margin-bottom: 8px; transition: color 0.25s;
}
.footer-contact-row a { color: var(--t-50); transition: color 0.25s; }
.footer-contact-row a:hover, .footer-contact-row:hover { color: var(--cyan); }
.footer h5 { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--t-label); margin-bottom: var(--s-md); }
.footer ul { display: flex; flex-direction: column; gap: 8px; }
.footer ul li a { font-size: 0.875rem; color: var(--t-50); transition: color 0.25s; }
.footer ul li a:hover { color: var(--t-100); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.045);
  padding-top: var(--s-md);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.80rem; color: var(--t-50);
}

/* -- 23. SCROLL REVEAL -------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.65s var(--ease), transform 0.65s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

/* -- 24. UTILITY -------------------------------------------------------- */
.text-cyan   { color: var(--cyan); }
.text-center { text-align: center; }
.mt-sm { margin-top: var(--s-sm); }
.mt-md { margin-top: var(--s-md); }
.mt-lg { margin-top: var(--s-lg); }
.mb-sm { margin-bottom: var(--s-sm); }
.mb-md { margin-bottom: var(--s-md); }
.glow-divider { height: 1px; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.10), transparent); margin: var(--s-xl) 0; }
.pill-tag {
  display: inline-block;
  background: rgba(0, 150, 210, 0.10);
  border: 1px solid rgba(0, 150, 210, 0.22);
  border-radius: var(--r-pill);
  padding: 0.22rem 0.72rem;
  font-size: 0.72rem; font-weight: 600; color: var(--cyan);
}

/* -- 25. CONTACT PAGE --------------------------------------------------- */
.contact-info-item { display: flex; align-items: flex-start; gap: var(--s-md); padding: var(--s-md); }
.contact-info-icon {
  width: 38px; height: 38px;
  background: rgba(0, 150, 210, 0.12);
  border: 1px solid rgba(0, 150, 210, 0.22);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-info-icon svg { width: 16px; height: 16px; stroke: var(--cyan); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.contact-info-label { font-size: 0.70rem; font-weight: 700; color: var(--t-label); letter-spacing: 0.07em; text-transform: uppercase; margin-bottom: 4px; }
.contact-info-value { font-size: 0.93rem; font-weight: 600; color: var(--t-100); }
.contact-info-value a { color: var(--t-100); transition: color 0.25s; }
.contact-info-value a:hover { color: var(--cyan); }

/* -- 26. ABOUT / PHILOSOPHY SECTION ------------------------------------ */
.studio-glass {
  background: rgba(8, 45, 90, 0.52);
  backdrop-filter: blur(40px) saturate(200%);
  -webkit-backdrop-filter: blur(40px) saturate(200%);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--r-xl);
  position: relative;
  box-shadow: var(--g-shadow-lg), inset 0 1px 0 rgba(255,255,255,0.09);
  overflow: hidden;
}
.studio-glass::before {
  content: ''; position: absolute; inset: 0; border-radius: inherit;
  padding: 1px;
  background: linear-gradient(140deg, rgba(255,255,255,0.16) 0%, rgba(255,255,255,0.04) 50%, transparent 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none;
}

.philosophy-body { font-size: 0.92rem; color: var(--t-70); line-height: 1.90; margin-bottom: var(--s-md); }
.philosophy-body strong { color: var(--t-100); }
.philosophy-body em { color: var(--aqua); font-style: normal; }

.philosophy-quote {
  margin-top: var(--s-lg); padding: var(--s-md) var(--s-lg);
  border-left: 2px solid rgba(0, 150, 210, 0.40);
  background: rgba(0, 100, 160, 0.08);
  border-radius: 0 var(--r-md) var(--r-md) 0;
}
.philosophy-quote p    { font-size: 0.92rem; color: var(--t-100); font-style: italic; line-height: 1.80; margin-bottom: var(--s-sm); }
.philosophy-quote cite { font-size: 0.78rem; color: var(--t-label); font-style: normal; font-weight: 700; }

.philosophy-pillar {
  display: flex; gap: var(--s-md); align-items: flex-start;
  padding: var(--s-md) var(--s-lg);
  background: var(--g-xs); border: 1px solid var(--g-border);
  border-radius: var(--r-lg); transition: var(--trans);
}
.philosophy-pillar:hover { background: var(--g-sm); border-color: var(--g-border-hi); }
.philosophy-pillar-num {
  font-size: 0.68rem; font-weight: 800; letter-spacing: 0.06em; color: var(--cyan);
  width: 30px; height: 30px;
  background: rgba(0, 150, 210, 0.12); border: 1px solid rgba(0, 150, 210, 0.22);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px;
}
.philosophy-pillar h4 { font-size: 0.95rem; font-weight: 700; letter-spacing: -0.01em; color: var(--t-100); margin-bottom: 4px; }
.philosophy-pillar p  { font-size: 0.855rem; color: var(--t-70); line-height: 1.68; }
.philosophy-pillar p strong { color: var(--t-100); }

/* -- 27. ABOUT PAGE PHOTOS -------------------------------------------- */
.about-hero-portrait {
  width: 100%; border-radius: var(--r-xl); overflow: hidden;
  position: relative;
  border: 1px solid rgba(255,255,255,0.075);
  box-shadow: var(--g-shadow-lg), inset 0 1px 0 rgba(255,255,255,0.09);
}
.about-hero-portrait img {
  width: 100%; aspect-ratio: 4/5;
  object-fit: cover; object-position: center top; display: block;
}
.about-hero-portrait::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,9,15,0.40) 0%, transparent 55%);
  pointer-events: none;
}

.life-photos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-sm); margin-top: var(--s-lg); }
.life-photo-tile {
  border-radius: var(--r-lg); overflow: hidden; position: relative;
  border: 1px solid rgba(255,255,255,0.065); box-shadow: var(--g-shadow); transition: var(--trans);
}
.life-photo-tile img {
  width: 100%; aspect-ratio: 3/4;
  object-fit: cover; display: block; transition: transform 0.6s var(--ease);
}
.life-photo-tile.wide img { aspect-ratio: 4/3; }
.life-photo-tile:hover { box-shadow: var(--g-shadow-lg), var(--glow-xs); border-color: rgba(255,255,255,0.11); }
.life-photo-tile:hover img { transform: scale(1.04); }
.life-photo-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 8px 12px;
  background: linear-gradient(to top, rgba(0,9,15,0.78) 0%, transparent 100%);
  font-size: 0.70rem; font-weight: 600; color: var(--t-70); letter-spacing: 0.03em;
}

/* -- 28. RESPONSIVE ----------------------------------------------------- */
@media (max-width: 960px) {
  .grid-3             { grid-template-columns: 1fr 1fr; }
  .footer-grid        { grid-template-columns: 1fr 1fr; }
  .gallery-grid       { grid-template-columns: repeat(2, 1fr); }
  .gallery-tile--wide { grid-column: span 1; }
  .featured-grid      { grid-template-columns: 1fr 1fr; }
  .featured-tile--main { grid-row: span 1; }
  .featured-tile--main img { aspect-ratio: 16/9; }
  .gallery-action-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 700px) {
  :root { --s-2xl: 4rem; --s-xl: 2.5rem; --s-lg: 1.5rem; }
  .grid-3, .grid-2        { grid-template-columns: 1fr; }
  .footer-grid            { grid-template-columns: 1fr; gap: var(--s-lg); }
  .footer-bottom          { flex-direction: column; gap: 6px; text-align: center; }
  .gallery-grid           { grid-template-columns: 1fr; }
  .gallery-ba-grid        { grid-template-columns: 1fr; }
  .gallery-action-grid    { grid-template-columns: 1fr; }
  .gallery-tile--wide,
  .gallery-tile--tall     { grid-column: span 1; grid-row: span 1; aspect-ratio: 4/3; }
  .featured-grid          { grid-template-columns: 1fr; }
  .featured-tile--main img { aspect-ratio: 16/9; }
  .hero-stats             { gap: 8px; flex-wrap: wrap; }
  .stat-pill              { padding: 0.48rem 0.85rem; }
  .stat-pill .stat-num    { font-size: 0.95rem; }
  .stat-pill .stat-label  { font-size: 0.68rem; }
  .service-options        { grid-template-columns: 1fr; }
  .nav-links              { display: none; }
  .nav-toggle             { display: flex; min-width: 44px; min-height: 44px; }
  .btn-glow, .btn-glass   { min-height: 44px; }
  .btn-glow--lg, .btn-glass--lg { font-size: 0.88rem; padding: 0.82rem 1.4rem; min-height: 48px; }
  .hero-contact-pill      { min-height: 44px; padding: 0.72rem 1.2rem; font-size: 0.88rem; }
  .hero                   { padding-top: 100px; min-height: 100svh; }
  .page-hero              { padding-top: 130px; }
  .life-photos-grid       { grid-template-columns: repeat(2, 1fr); }
  .gallery-ba-pair-inner img { height: 130px; }
  .section-header         { margin-bottom: var(--s-lg); }
  .service-card           { padding: var(--s-lg); }
  .faq-question           { font-size: 0.88rem; padding: var(--s-md) 0; min-height: 44px; }
  .philosophy-pillar      { gap: var(--s-sm); }
  .area-badge             { font-size: 0.72rem; padding: 5px 10px; }
}

@media (max-width: 480px) {
  :root { --s-xl: 2rem; --s-lg: 1.25rem; }
  .modal-panel    { padding: var(--s-lg) var(--s-md); border-radius: var(--r-xl) var(--r-xl) 0 0; }
  .modal-overlay  { align-items: flex-end; padding: 0; }
  .hero-actions   { flex-direction: column; align-items: stretch; }
  .hero-actions .btn-glow--lg,
  .hero-actions .btn-glass--lg,
  .hero-actions .hero-contact-pill { width: 100%; justify-content: center; text-align: center; }
  .container      { padding: 0 var(--s-md); }
  .d1             { font-size: clamp(2.2rem, 9vw, 3rem); }
  .hero-stats     { gap: 6px; }
  .stat-pill      { padding: 0.4rem 0.7rem; }
  .stat-pill .stat-num   { font-size: 0.88rem; }
  .stat-pill .stat-label { font-size: 0.62rem; }
  .life-photos-grid .wide { grid-column: span 2; }
  .gallery-ba-pair-inner img { height: 110px; }
}

@media (max-width: 700px) {
  .glass, .glass-strong, .glass-featured, .glass-nav, .modal-panel {
    backdrop-filter: blur(20px) saturate(160%);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
  }
  #blob-1, #blob-2, #blob-3 { filter: blur(60px); }
}
