/* ============================================================
   GT DETAILING — Redesign v3
   Primary: #3d69a4 (muted steel blue)
   Palette: light → dark subtle gradient, ambient motion
   Fonts: Syne (display) + Inter (body)
   ============================================================ */

:root {
  /* ---------- Primary palette ---------- */
  --primary: #3d69a4;
  --primary-light: #5a83b8;
  --primary-dark: #2e5080;
  --primary-glow: rgba(61, 105, 164, .15);
  --primary-dim: rgba(61, 105, 164, .08);

  /* ---------- Backgrounds (light → dark gradient theme) ---------- */
  --bg-top: #f4f5f7;
  --bg-mid: #eaecef;
  --bg-bottom: #dde1e7;
  --bg-card: #ffffff;
  --bg-card-hover: #f8fafc;
  --bg-elevated: #ffffffcc;

  /* ---------- Borders ---------- */
  --border-subtle: rgba(61, 105, 164, .1);
  --border-mid: rgba(61, 105, 164, .2);
  --border-strong: rgba(61, 105, 164, .35);

  /* ---------- Text — high contrast dark on light ---------- */
  --text-primary: #1a1d23;
  --text-secondary: #4a5060;
  --text-tertiary: #7a8090;
  --text-inverse: #ffffff;

  /* ---------- Accent (warm contrast to primary) ---------- */
  --accent: #c9a044;
  --accent-hover: #dbb555;

  /* ---------- Typography ---------- */
  --font-display: 'Syne', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --fs-hero: clamp(2.4rem, 6vw + .3rem, 4.8rem);
  --fs-h1: clamp(1.8rem, 3.5vw + .2rem, 2.8rem);
  --fs-h2: clamp(1.3rem, 2.5vw + .1rem, 1.6rem);
  --fs-body: 1rem;
  --fs-small: .9rem;
  --fs-xs: .8rem;

  --s-xs: .375rem;
  --s-sm: .75rem;
  --s-md: 1.5rem;
  --s-lg: 2.5rem;
  --s-xl: 4rem;
  --s-2xl: 6rem;

  --radius: .75rem;
  --max-w: 1140px;
  --header-h: 84px;
  --ease: cubic-bezier(.4, 0, .2, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--text-primary);
  background: linear-gradient(
    175deg,
    var(--bg-top) 0%,
    var(--bg-mid) 35%,
    var(--bg-bottom) 100%
  );
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  min-height: 100vh;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }
input, textarea, select { font: inherit; }

::selection { background: var(--primary); color: var(--text-inverse); }

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--s-md);
}

.site-section {
  padding: var(--s-2xl) 0;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s var(--ease), transform .65s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ============================================================
   AMBIENT BACKGROUND — soft floating shapes
   ============================================================ */
.ambient-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.ambient-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .12;
  will-change: transform;
}

.ambient-shape:nth-child(1) {
  width: 600px; height: 600px;
  background: var(--primary-light);
  top: -10%; left: -5%;
  animation: ambientDrift1 45s ease-in-out infinite alternate;
}

.ambient-shape:nth-child(2) {
  width: 500px; height: 500px;
  background: var(--primary);
  top: 30%; right: -8%;
  animation: ambientDrift2 55s ease-in-out infinite alternate;
}

.ambient-shape:nth-child(3) {
  width: 450px; height: 450px;
  background: var(--primary-dark);
  bottom: -5%; left: 20%;
  animation: ambientDrift3 60s ease-in-out infinite alternate;
}

.ambient-shape:nth-child(4) {
  width: 350px; height: 350px;
  background: var(--primary-light);
  top: 55%; left: 50%;
  animation: ambientDrift4 50s ease-in-out infinite alternate;
}

.ambient-shape:nth-child(5) {
  width: 300px; height: 300px;
  background: var(--accent);
  top: 15%; left: 60%;
  opacity: .07;
  animation: ambientDrift5 48s ease-in-out infinite alternate;
}

@keyframes ambientDrift1 {
  0%   { transform: translate(0, 0) scale(1); }
  33%  { transform: translate(60px, 40px) scale(1.05); }
  66%  { transform: translate(-30px, 80px) scale(.97); }
  100% { transform: translate(20px, -20px) scale(1.02); }
}

@keyframes ambientDrift2 {
  0%   { transform: translate(0, 0) scale(1); }
  33%  { transform: translate(-50px, -30px) scale(1.04); }
  66%  { transform: translate(40px, 60px) scale(.96); }
  100% { transform: translate(-20px, 30px) scale(1.01); }
}

@keyframes ambientDrift3 {
  0%   { transform: translate(0, 0) scale(1); }
  33%  { transform: translate(45px, -50px) scale(1.03); }
  66%  { transform: translate(-60px, 20px) scale(.98); }
  100% { transform: translate(30px, 40px) scale(1.02); }
}

@keyframes ambientDrift4 {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(-70px, -35px) scale(1.06); }
  100% { transform: translate(50px, 50px) scale(.98); }
}

@keyframes ambientDrift5 {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(40px, 60px) scale(1.03); }
  100% { transform: translate(-30px, -20px) scale(.97); }
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: #ffffff;
  transition: background .3s var(--ease), box-shadow .3s var(--ease);
}

.site-header.scrolled {
  background: rgba(244, 245, 247, .92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border-subtle);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* -------- Logo -------- */
.logo {
  display: flex;
  align-items: center;
  gap: .5rem;
  z-index: 1001;
  text-decoration: none;
}

.logo-img-wrap {
  height: 64px;
  display: flex;
  align-items: center;
}

.logo-img-wrap img {
  height: 100%;
  width: auto;
  object-fit: contain;
}

/* Fallback text logo when no image */
.logo-text-fallback {
  display: none; /* shown only if .has-logo-image is absent */
}

:not(.has-logo-image) > .logo-img-wrap { display: none; }
.has-logo-image > .logo-text-fallback { display: none !important; }
:not(.has-logo-image) > .logo-text-fallback { display: flex !important; align-items: baseline; gap: .35rem; }

.logo-mark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: -.03em;
  color: var(--primary);
}

.logo-word {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: .95rem;
  color: var(--text-secondary);
  letter-spacing: .02em;
}

/* -------- Nav -------- */
.nav-desktop {
  display: flex;
  align-items: center;
  gap: var(--s-md);
}

.nav-link {
  font-size: var(--fs-small);
  font-weight: 500;
  color: var(--text-secondary);
  transition: color .2s var(--ease);
  padding: .4rem .6rem;
  border-radius: .375rem;
}

.nav-link:hover { color: var(--primary); background: var(--primary-dim); }

.nav-quote {
  color: var(--primary) !important;
  font-weight: 600;
  background: var(--primary-dim);
  border-radius: .5rem;
}

.nav-quote:hover {
  background: var(--primary-glow) !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all .3s var(--ease);
  transform-origin: center;
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(244, 245, 247, .97);
  backdrop-filter: blur(16px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--s-md);
  opacity: 0;
  transition: opacity .3s var(--ease);
}

.nav-mobile.open { display: flex; opacity: 1; }
.nav-mobile .nav-link { font-size: 1.3rem; font-weight: 600; color: var(--text-primary); padding: .8rem 1.2rem; }

/* ============================================================
   HERO
   ============================================================ */
/* Floating ambient shapes background — no car photo */

.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  padding-top: var(--header-h);
  overflow: hidden;
  /* Solid dark base so text is crystal legible */
  background: linear-gradient(165deg, #172033 0%, #1c2b4a 40%, #1a2540 100%);
}

/* ---------- Floating ambient orbs ---------- */
.hero__ambient {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .18;
  will-change: transform;
}

.hero__orb:nth-child(1) {
  width: 520px; height: 520px;
  background: var(--primary-light);
  top: -12%; left: -8%;
  animation: heroOrb1 40s ease-in-out infinite alternate;
}

.hero__orb:nth-child(2) {
  width: 420px; height: 420px;
  background: var(--primary);
  top: 25%; right: -6%;
  animation: heroOrb2 50s ease-in-out infinite alternate;
}

.hero__orb:nth-child(3) {
  width: 380px; height: 380px;
  background: var(--primary-dark);
  bottom: -10%; left: 15%;
  animation: heroOrb3 55s ease-in-out infinite alternate;
}

.hero__orb:nth-child(4) {
  width: 300px; height: 300px;
  background: var(--primary-light);
  top: 50%; left: 45%;
  opacity: .12;
  animation: heroOrb4 45s ease-in-out infinite alternate;
}

.hero__orb:nth-child(5) {
  width: 260px; height: 260px;
  background: var(--primary);
  top: 10%; left: 55%;
  opacity: .1;
  animation: heroOrb5 48s ease-in-out infinite alternate;
}

.hero__orb:nth-child(6) {
  width: 200px; height: 200px;
  background: #6e9ad4;
  bottom: 20%; right: 25%;
  opacity: .1;
  animation: heroOrb6 38s ease-in-out infinite alternate;
}

@keyframes heroOrb1 {
  0%   { transform: translate(0, 0) scale(1); }
  33%  { transform: translate(50px, 35px) scale(1.04); }
  66%  { transform: translate(-25px, 70px) scale(.97); }
  100% { transform: translate(15px, -15px) scale(1.02); }
}

@keyframes heroOrb2 {
  0%   { transform: translate(0, 0) scale(1); }
  33%  { transform: translate(-40px, -25px) scale(1.03); }
  66%  { transform: translate(35px, 55px) scale(.96); }
  100% { transform: translate(-18px, 25px) scale(1.01); }
}

@keyframes heroOrb3 {
  0%   { transform: translate(0, 0) scale(1); }
  33%  { transform: translate(40px, -45px) scale(1.02); }
  66%  { transform: translate(-55px, 18px) scale(.98); }
  100% { transform: translate(28px, 35px) scale(1.01); }
}

@keyframes heroOrb4 {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(-60px, -30px) scale(1.05); }
  100% { transform: translate(45px, 45px) scale(.97); }
}

@keyframes heroOrb5 {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(35px, 55px) scale(1.02); }
  100% { transform: translate(-28px, -18px) scale(.96); }
}

@keyframes heroOrb6 {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(-30px, 40px) scale(1.04); }
  100% { transform: translate(25px, -30px) scale(.97); }
}

/* ---------- Inner container ---------- */
.hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: var(--s-2xl);
  min-height: calc(100vh - var(--header-h) - var(--s-xl));
}

/* ---------- Content column ---------- */
.hero__content {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}

.hero__eyebrow {
  font-size: var(--fs-xs);
  color: var(--primary-light);
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: var(--s-sm);
}

.hero__headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.4rem, 5vw + .3rem, 4rem);
  line-height: 1.05;
  letter-spacing: -.015em;
  color: #ffffff;
  margin-bottom: var(--s-md);
}

.hero__body {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #c5cad4;
  max-width: 520px;
  margin-bottom: var(--s-lg);
}

/* ---------- Trust pill row ---------- */
.hero__pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem 1rem;
  margin-bottom: var(--s-lg);
}

.hero__pill {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .45rem .85rem;
  background: rgba(255, 255, 255, .08);
  border-radius: 99px;
  color: #d1d5de;
  font-size: .875rem;
  font-weight: 500;
}

/* SVG icon constraints — THIS IS THE FIX */
.hero__pill-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: #6aaf8e;
}

/* ---------- CTA row ---------- */
.hero__cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-sm);
  margin-bottom: var(--s-xl);
}

.hero__cta--primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.4rem;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  font-size: .95rem;
  border-radius: var(--radius);
  text-transform: uppercase;
  letter-spacing: .04em;
  min-height: 56px;
  box-shadow: 0 4px 20px rgba(61, 105, 164, .3);
  transition: background .2s var(--ease), transform .15s var(--ease), box-shadow .2s var(--ease);
}

.hero__cta--primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(61, 105, 164, .4);
}

/* ---------- Hero responsive — stack on mobile ---------- */
@media (max-width: 768px) {
  .hero__inner {
    flex-direction: column;
    align-items: stretch;
    gap: var(--s-lg);
  }

  .hero__headline {
    font-size: clamp(2rem, 7vw + .1rem, 3rem);
  }

  .hero__cta-row {
    flex-direction: column;
  }

  .hero__cta--primary {
    width: 100%;
  }
}
   ============================================================ */
.section-header {
  margin-bottom: var(--s-lg);
}

.section-eyebrow {
  display: block;
  font-size: var(--fs-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--primary);
  margin-bottom: var(--s-xs);
}

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-h1);
  letter-spacing: -.02em;
  line-height: 1.15;
  color: var(--text-primary);
}

.section-desc {
  color: var(--text-secondary);
  max-width: 540px;
  margin-top: var(--s-sm);
}

/* ============================================================
   SERVICES — Package Cards
   ============================================================ */
.package-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--s-lg);
  margin-bottom: var(--s-2xl);
}

.package-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border-mid);
  border-radius: calc(var(--radius) * 1.3);
  padding: var(--s-lg);
  box-shadow:
    0 2px 16px rgba(61, 105, 164, .06),
    0 1px 3px rgba(0,0,0,.03);
  transition: box-shadow .2s var(--ease), border-color .2s var(--ease);
}

.package-card:hover {
  border-color: var(--primary-light);
  box-shadow:
    0 4px 24px rgba(61, 105, 164, .12),
    0 1px 4px rgba(0,0,0,.04);
}

.package-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .4rem;
  margin-bottom: var(--s-sm);
}

.package-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-h2);
  color: var(--text-primary);
}

.package-price-tag {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  white-space: nowrap;
}

.package-desc {
  font-size: var(--fs-small);
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: var(--s-md);
}

/* Vehicle-size price tiers */
.price-tiers {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  border-top: 1px solid var(--border-subtle);
  padding-top: var(--s-sm);
}

.price-tier {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--s-xs);
}

.tier-label {
  font-size: .875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.tier-value {
  font-size: .9rem;
  font-weight: 700;
  color: var(--primary);
  white-space: nowrap;
}

/* ============================================================
   ADD-ONS
   ============================================================ */
.addons-section {
  margin-top: var(--s-lg);
}

.addons-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-h3);
  color: var(--text-primary);
  margin-bottom: var(--s-md);
}

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

.addon-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: var(--s-md) var(--s-md);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}

.addon-card:hover {
  border-color: var(--primary-light);
  box-shadow: 0 2px 12px rgba(61, 105, 164, .1);
}

.addon-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: .3rem .8rem;
  margin-bottom: .3rem;
}

.addon-name {
  font-weight: 600;
  font-size: .95rem;
  color: var(--text-primary);
}

.addon-meta {
  font-size: .875rem;
  font-weight: 700;
  color: var(--primary);
  white-space: nowrap;
}

.addon-desc {
  font-size: var(--fs-small);
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* ============================================================
   PORTFOLIO — Comparison sliders
   ============================================================ */
.comparison-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-md);
  margin-bottom: var(--s-xl);
}

.comp-card .comp-viewport {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: col-resize;
  user-select: none;
}

/* Both images are full-size, absolutely filling the viewport */
.comp-viewport > .comp-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}

/* The before image sits inside a clip container on top of after */
.comp-clip {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
  z-index: 2;
}

/* Before image width is set by JS to match viewport — CSS must not override */
.comp-clip .comp-img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  max-width: none !important;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}

/* Vertical divider line */
.comp-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  margin-left: -2px;
  background: #fff;
  z-index: 10;
  pointer-events: none;
  box-shadow: 0 0 6px rgba(0,0,0,.5);
}

/* Circular drag knob */
.comp-handle::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,.95);
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0,0,0,.35);
}

/* Left arrow */
.comp-handle::before {
  content: '\25C0\25B6';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 12px;
  line-height: 1;
  letter-spacing: 6px;
  color: #333;
}

/* Before/after labels */
.comp-label {
  position: absolute;
  bottom: 12px;
  z-index: 5;
  padding: 4px 10px;
  background: rgba(0,0,0,.55);
  color: #fff;
  font-size: .7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  border-radius: 4px;
  pointer-events: none;
}

.comp-label-before {
  left: 12px;
}

.comp-label-after {
  right: 12px;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-md);
}

.photo-grid img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius);
}


/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  padding: var(--s-2xl) 0 var(--s-md);
  border-top: 1px solid var(--border-mid);
  background: rgba(255, 255, 255, .4);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: var(--s-lg);
  margin-bottom: var(--s-lg);
}

.footer-logo-link {
  display: block;
  margin-bottom: var(--s-lg);
  text-decoration: none;
}

.footer-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  display: block;
}

.footer-logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  align-items: baseline;
  gap: .3rem;
  color: var(--text-primary);
  display: none; /* shown only if logo image fails */
}

.logo-mark-sm {
  color: var(--primary);
}

.footer-brand-col p {
  font-size: var(--fs-small);
  color: var(--text-secondary);
  margin-top: var(--s-sm);
  max-width: 260px;
  line-height: 1.6;
}

.footer-col h4 {
  font-size: var(--fs-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--primary);
  margin-bottom: var(--s-sm);
}

.footer-col ul li { margin-bottom: .35rem; }

.footer-col a,
.footer-col span {
  font-size: var(--fs-small);
  color: var(--text-secondary);
  transition: color .2s var(--ease);
}

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

.footer-area-text {
  font-size: var(--fs-small);
  color: var(--text-secondary);
  line-height: 1.6;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  font-size: var(--fs-xs);
  color: var(--text-tertiary);
  padding-top: var(--s-md);
  border-top: 1px solid var(--border-subtle);
}

.footer-bottom a { color: var(--primary-light); }
.footer-bottom a:hover { color: var(--primary); }

/* ============================================================
   HEADER CONTACT
   ============================================================ */
.header-contact {
  display: flex;
  align-items: center;
  gap: var(--s-md);
}

.header-contact-link {
  font-size: var(--fs-small);
  font-weight: 500;
  color: #000000;
  text-decoration: none;
  transition: color .2s var(--ease);
  white-space: nowrap;
}

.header-contact-link:hover {
  color: var(--primary-light);
}

@media (max-width: 900px) {
  .header-contact { display: none; }
}

/* ============================================================
   MOBILE NAV — square booking button styling
   ============================================================ */
.nav-mobile button.square-booking-trigger,
nav button.square-booking-trigger {
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .comparison-strip { grid-template-columns: 1fr; }
  .photo-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 700px) {
  :root { --s-2xl: 4rem; --s-xl: 3rem; }

  .nav-desktop { display: none; }
  .hamburger { display: flex; }

  .opt-3, .opt-2 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }


  .footer-grid { grid-template-columns: 1fr; gap: var(--s-md); }
  .footer-bottom { flex-direction: column; gap: .4rem; text-align: center; }

  .services-list { border-top: none; }

  /* Larger touch targets on mobile */
  .opt-card { min-height: 64px; padding: 1.1rem .8rem; }
  .step-btn-forward,
  .step-btn-submit { font-size: 1.15rem; padding: 1rem 2rem; min-height: 56px; }
}

@media (max-width: 430px) {
  :root { --s-2xl: 3rem; }
  .container { padding: 0 var(--s-sm); }
  .photo-grid { grid-template-columns: 1fr; }
}
