/* =========================
   GSUDZ DETAILING — V5 STYLES (UPDATED)
   - Keeps your V4 aesthetic (dark, premium, muted)
   - FIX: Mobile hero no longer gets covered by text (media becomes a real block)
   - FIX: Interior hero image no longer looks "too zoomed" (crop tuning + contain fallback)
   - Cleaner hero image selection (premium + mobile-friendly)
   - Keeps all your existing class names/structure
   ========================= */

:root {
  /* Base */
  --bg-0: #0A0E14;
  --bg-1: #0B0F16;
  --panel: rgba(255,255,255,0.055);
  --panel-strong: rgba(255,255,255,0.09);
  --border: rgba(215, 222, 232, 0.14);

  --text-0: #E9EEF7;
  --text-1: #A9B2C3;

  /* Muted brand accents */
  --brand-0: #2B5BBB;
  --brand-1: #17306C;
  --accent: #6FE7D0;
  --chrome: #D7DEE8;

  --radius: 16px;
  --radius-sm: 12px;

  --shadow-soft: 0 10px 30px rgba(0,0,0,0.35);
  --shadow-hard: 0 18px 50px rgba(0,0,0,0.5);

  --glass: linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04));
  --shine: linear-gradient(120deg, transparent, rgba(255,255,255,0.26), transparent);

  --container: 1200px;
}

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

html, body {
  margin: 0;
  padding: 0;
  background:
    radial-gradient(1100px 560px at 20% -10%, rgba(43,91,187,0.14), transparent 60%),
    radial-gradient(900px 420px at 90% 10%, rgba(111,231,208,0.06), transparent 60%),
    var(--bg-0);
  color: var(--text-0);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  scroll-behavior: smooth;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
a:hover { opacity: .98; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: clamp(64px, 8vw, 110px) 0;
  position: relative;
}

.section--alt {
  background:
    radial-gradient(600px 300px at 10% 0%, rgba(43,91,187,0.10), transparent 60%),
    radial-gradient(500px 300px at 90% 20%, rgba(111,231,208,0.06), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,0.02), transparent);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-head {
  max-width: 720px;
  margin-bottom: 32px;
}

.h1, .h2, .h3 {
  font-family: "Bebas Neue", Inter, sans-serif;
  letter-spacing: 0.04em;
  margin: 0 0 12px;
}

.h1 { font-size: clamp(40px, 6vw, 72px); line-height: 1.05; }
.h2 { font-size: clamp(28px, 4vw, 44px); }
.h3 { font-size: 22px; }

.h1__glow {
  background: linear-gradient(90deg, var(--brand-0), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 10px rgba(43,91,187,0.28));
}

.kicker {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-1);
  font-size: 12px;
  margin-bottom: 10px;
}

.lead { color: var(--text-1); max-width: 620px; line-height: 1.6; }
.muted { color: var(--text-1); }
.fineprint { color: var(--text-1); font-size: 13px; margin-top: 18px; }
.center { display: grid; place-items: center; margin-top: 24px; }

/* =========================
   Topbar
   ========================= */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: linear-gradient(180deg, rgba(10,14,20,0.82), rgba(10,14,20,0.62));
  border-bottom: 1px solid var(--border);
}

.topbar__inner {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand__name { font-weight: 700; }
.brand__sub { font-size: 12px; color: var(--text-1); display: block; }

/* logo image (replaces GS text) */
.brand__logo{
  width: 38px;
  height: 38px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.14), var(--shadow-soft);
  background: rgba(255,255,255,0.04);
}

/* hours line */
.topbar__meta{
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 10px;
  border-left: 1px solid rgba(215,222,232,0.10);
  border-right: 1px solid rgba(215,222,232,0.10);
}
.topbar__hours{
  font-size: 12px;
  color: rgba(233,238,247,0.86);
  letter-spacing: .02em;
  white-space: nowrap;
}

.topbar__actions { display: flex; gap: 8px; flex-wrap: wrap; }

/* =========================
   Buttons
   ========================= */
.btn {
  --btn-bg: transparent;
  --btn-bd: var(--border);
  --btn-fg: var(--text-0);

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid var(--btn-bd);
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-weight: 600;
  letter-spacing: .02em;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
  box-shadow: 0 0 0 rgba(0,0,0,0);
}

.btn--sm { padding: 8px 12px; font-size: 13px; }
.btn--ghost { --btn-bg: rgba(255,255,255,0.035); }
.btn--glass { --btn-bg: var(--glass); backdrop-filter: blur(8px); }

.btn--primary {
  --btn-bg: linear-gradient(135deg, var(--brand-0), var(--brand-1));
  --btn-bd: transparent;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.16), var(--shadow-soft);
}

.btn--accent {
  --btn-bg: linear-gradient(135deg, var(--accent), rgba(111,231,208,0.82));
  --btn-bd: transparent;
  color: #06201A;
  box-shadow: 0 10px 26px rgba(111,231,208,0.16);
}

.btn:hover { transform: translateY(-1px); box-shadow: 0 12px 28px rgba(0,0,0,0.42); }

/* A “link-like” button option (used for secondary CTA) */
.btn--link {
  --btn-bg: transparent;
  --btn-bd: transparent;
  padding: 10px 6px;
  border-radius: 10px;
  color: rgba(233,238,247,0.90);
  text-decoration: underline;
  text-decoration-color: rgba(111,231,208,0.25);
  text-underline-offset: 3px;
}
.btn--link:hover { transform: none; box-shadow: none; opacity: 1; }

/* =========================
   Hero
   ========================= */
.hero { position: relative; overflow: hidden; border-bottom: 1px solid var(--border); }

/* hero media strip (desktop/tablet) */
.hero__media{
  position: absolute;
  inset: 0 0 auto 0;
  height: clamp(240px, 36vh, 420px);
  z-index: 1;                 /* ✅ photos above track */
  pointer-events: none;
}

.hero__photos{
  height: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 10px 10px 0 10px;
}

/* IMPORTANT: stable crop */
.hero__photo{
  border-radius: 14px;
  border: 1px solid rgba(215,222,232,0.12);
  background: #0b1220;
  box-shadow: 0 18px 48px rgba(0,0,0,0.45);
  overflow: hidden;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  filter: saturate(0.95) contrast(1.05);
  opacity: 0.95;

  height: 100%;
  min-height: 140px;
}

/* HERO IMAGE PICKS (premium + crop-friendly) */
.hero__photo--1 { background-image: url("gallery/gwagensideshotafter.JPG"); background-position: 50% 55%; }
.hero__photo--2 { background-image: url("gallery/corvette2after.JPG");     background-position: 50% 50%; }
.hero__photo--3 { background-image: url("gallery/doorafter.JPG");          background-position: 50% 45%; }

/* darken overlay ABOVE photos */
.hero__overlay{
  position: absolute;
  inset: 0;
  z-index: 2;                 /* ✅ overlay above photos */
  background:
    linear-gradient(180deg, rgba(10,14,20,0.08) 0%, rgba(10,14,20,0.78) 70%, rgba(10,14,20,0.94) 100%),
    radial-gradient(700px 260px at 70% 10%, rgba(43,91,187,0.16), transparent 60%),
    radial-gradient(700px 260px at 20% 15%, rgba(111,231,208,0.08), transparent 60%);
}

/* text/content always on top */
.hero__inner {
  position: relative;
  z-index: 3;                 /* ✅ top layer */
  min-height: clamp(560px, 85vh, 820px);
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 28px;
  align-items: center;
  padding-top: clamp(160px, 18vh, 240px);
}

/* decorative bubbles BEHIND photos */
.hero__bubbles {
  position: absolute;
  inset: -10% -10% 0 -10%;
  z-index: 0;                 /* ✅ behind photos */
  pointer-events: none;
  background:
    radial-gradient(14px 14px at 10% 90%, rgba(255,255,255,0.10), transparent 60%),
    radial-gradient(18px 18px at 30% 80%, rgba(255,255,255,0.08), transparent 60%),
    radial-gradient(12px 12px at 60% 85%, rgba(255,255,255,0.08), transparent 60%),
    radial-gradient(20px 20px at 80% 88%, rgba(255,255,255,0.12), transparent 60%);
  filter: blur(1px);
  opacity: .55;
}

/* grid/track effect BEHIND photos */
.hero__track{
  position:absolute;
  inset:-10% -10% -10% -10%;
  z-index: 0;                 /* ✅ behind photos */
  pointer-events:none;
  opacity:.62;
  background:
    radial-gradient(900px 420px at 70% 10%, rgba(43,91,187,0.18), transparent 60%),
    radial-gradient(700px 360px at 15% 40%, rgba(111,231,208,0.08), transparent 60%),
    repeating-linear-gradient(
      90deg,
      rgba(255,255,255,0.00) 0px,
      rgba(255,255,255,0.00) 22px,
      rgba(255,255,255,0.03) 23px,
      rgba(255,255,255,0.00) 24px
    );
  mask-image: radial-gradient(circle at 35% 35%, rgba(0,0,0,1) 0%, rgba(0,0,0,0.85) 40%, rgba(0,0,0,0) 72%);
}

/* CTA row */
.hero__cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 18px 0 10px;
}

.hero__trust, .pill-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 10px; }
.pill {
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
  font-size: 12px;
}
.dot { opacity: .5; margin: 0 6px; }
.hero__contact { margin-top: 10px; }
.mini-link { color: rgba(233,238,247,0.92); }
.mini-link:hover { opacity: 1; text-decoration: underline; text-decoration-color: rgba(111,231,208,0.28); }

.glass-card{
  background: var(--glass);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-hard);
}

.quick-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 12px 0 16px; }
.quick{
  display: grid;
  gap: 6px;
  padding: 14px;
  border-radius: 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
}
.quick__icon { font-size: 22px; line-height: 1; color: rgba(233,238,247,0.92); }
.quick__icon svg { display:block; }
.quick__title { font-weight: 700; }
.quick__sub { font-size: 12px; color: var(--text-1); }

.divider { height: 1px; background: var(--border); margin: 14px 0; }
.stack { display: grid; gap: 10px; }

/* =========================
   Cards / grids
   ========================= */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.cards--4 { grid-template-columns: repeat(4, 1fr); }
.cards--2 { grid-template-columns: repeat(2, 1fr); } /* used in Ceramic section */

.card{
  position: relative;
  background: rgba(255,255,255,0.045);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.card::after{
  content:"";
  position:absolute;
  inset:-40% -60%;
  background: var(--shine);
  opacity: 0;
  transform: translateX(-40%) rotate(8deg);
  pointer-events:none;
}
.card:hover::after{ opacity:.18; animation: shineSweep 850ms ease-out forwards; }

@keyframes shineSweep{
  0%{ transform: translateX(-55%) rotate(8deg); opacity:0; }
  15%{ opacity:.18; }
  100%{ transform: translateX(55%) rotate(8deg); opacity:0; }
}

.card--featured{
  outline: 2px solid rgba(111,231,208,0.22);
  box-shadow: 0 0 0 1px rgba(111,231,208,0.20), var(--shadow-hard);
}
.card--mini{ padding: 16px; }

.badge{
  position:absolute; top:12px; right:12px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 11px;
  background: linear-gradient(135deg, var(--accent), rgba(111,231,208,0.78));
  color: #06201A;
  font-weight: 700;
}

.price { font-weight: 700; color: var(--accent); margin: 6px 0 10px; }

.list{ list-style:none; padding:0; margin:0 0 10px; }
.list li{ padding-left:18px; position:relative; margin-bottom:6px; }
.list li::before{ content:"•"; position:absolute; left:0; color: var(--accent); }
.list--icons li{ display:flex; gap:10px; align-items:center; }
.ico{ opacity:.9; }

/* clean dot helper (used in Specialty list) */
.ico-dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(111,231,208,0.10);
  display:inline-block;
  margin-top: 2px;
}

/* FIX: tags no longer look like "road lines" */
.addons{ display:flex; flex-wrap:wrap; gap:8px; margin-bottom:10px; }
.tag{
  font-size: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(215,222,232,0.16);
  background: rgba(255,255,255,0.04);
  color: rgba(233,238,247,0.86);
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.10);
}

/* NEW: collapse add-ons by default (Packages cards) */
.addons--collapsed{
  max-height: 78px;           /* ~2 rows */
  overflow: hidden;
  position: relative;
}
.addons--collapsed::after{
  content:"";
  position:absolute;
  left:0; right:0; bottom:0;
  height: 38px;
  background: linear-gradient(180deg, rgba(10,14,20,0), rgba(10,14,20,0.92));
  pointer-events:none;
}
.addons--collapsed.is-open{ max-height: none; }
.addons--collapsed.is-open::after{ display:none; }

.addons-toggle{
  margin: 2px 0 10px;
  padding: 8px 10px;
  border-radius: 12px;
  border: 1px solid rgba(215,222,232,0.14);
  background: rgba(255,255,255,0.03);
  color: rgba(233,238,247,0.86);
  font-weight: 700;
  letter-spacing: .01em;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.addons-toggle:hover{
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(0,0,0,0.34);
  background: rgba(255,255,255,0.05);
}

.card__cta{ display:flex; gap:8px; flex-wrap:wrap; }

/* =========================
   Image breaks (visual flow)
   ========================= */
.imgbreaks{
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.imgbox{
  position: relative;
  border-radius: 14px;
  border: 1px solid rgba(215,222,232,0.14);
  background: #0b1220;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  box-shadow: 0 18px 48px rgba(0,0,0,0.38);
}
.imgbox img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.96) contrast(1.05);
}
.imgbox::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,0.0), rgba(0,0,0,0.35));
  opacity: .9;
  pointer-events: none;
}

/* =========================
   Split panels
   ========================= */
.split{ display:grid; grid-template-columns: 1.1fr .9fr; gap:18px; }
.panel{
  background: rgba(255,255,255,0.045);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}
.panel--shine{ position:relative; overflow:hidden; }
.shine-line{
  height: 2px;
  width: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.55), transparent);
  margin: 16px 0;
  opacity: .35;
}

/* service list + map card */
.service-list{ display: grid; gap: 10px; margin: 12px 0 0; }
.service-item{
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: start;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid rgba(215,222,232,0.14);
  background: rgba(255,255,255,0.03);
}
.service-ico{
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(215,222,232,0.14);
  color: rgba(233,238,247,0.92);
  font-weight: 800;
}
.service-item strong{ display:block; margin-bottom: 2px; }
.service-item span{ color: var(--text-1); font-size: 13px; line-height: 1.5; }

.mapcard{
  margin-top: 12px;
  border-radius: 16px;
  border: 1px solid rgba(215,222,232,0.14);
  overflow: hidden;
  background: #0b1220;
  box-shadow: 0 18px 52px rgba(0,0,0,0.42);
}
.mapcard__top{
  padding: 14px 14px 10px;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 10px;
  border-bottom: 1px solid rgba(215,222,232,0.10);
  background: rgba(255,255,255,0.03);
}
.mapcard__title{ font-weight: 800; letter-spacing: .02em; }
.mapcard__sub{ color: var(--text-1); font-size: 12px; }
.mapcard iframe{
  width: 100%;
  height: 260px;
  display: block;
  border: 0;
  background: #0b1220;
  filter: saturate(0.95) contrast(1.05);
}

/* =========================
   Gallery
   ========================= */
.gallery-toolbar{ display:flex; gap:8px; flex-wrap:wrap; margin-bottom:12px; }
.chip{
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
  color: var(--text-1);
  cursor: pointer;
}
.chip.is-active{
  background: linear-gradient(135deg, var(--brand-0), var(--brand-1));
  color:#fff;
  border-color: transparent;
}

.gallery-grid{ display:grid; grid-template-columns: repeat(4, 1fr); gap:10px; }
.gallery-item{
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  overflow:hidden;
  background: #0b1220;
  border: 1px solid var(--border);
  cursor: pointer;
}
.gallery-item img{ width:100%; height:100%; object-fit: cover; }
.gallery-item::after{
  content:"View";
  position:absolute;
  inset:0;
  display:grid;
  place-items:center;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.62));
  opacity: 0;
  transition: opacity .15s ease;
}
.gallery-item:hover::after{ opacity: 1; }

/* =========================
   Reviews
   ========================= */
.quote{ font-size: 16px; line-height: 1.5; }
.who{ margin-top: 10px; font-weight: 600; }

/* =========================
   Form (simplified)
   ========================= */
.form-shell{
  background: rgba(255,255,255,0.045);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}

.tabs{ display:flex; gap:6px; margin-bottom:14px; }
.tab{
  flex:1;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
  color: var(--text-1);
  cursor:pointer;
  text-align:center;
  font-weight: 600;
}
.tab.is-active{
  background: linear-gradient(135deg, var(--brand-0), var(--brand-1));
  color:#fff;
  border-color: transparent;
}

.leadform .grid{ display:grid; grid-template-columns: repeat(2, 1fr); gap:12px; }
.grid--simple { margin-top: 6px; }
.field{ display:grid; gap:6px; }
.field span{ font-size:12px; color: var(--text-1); }

.field input,
.field select,
.field textarea{
  width:100%;
  padding: 12px 12px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.05);
  color: var(--text-0);
  outline: none;
}
.field input::placeholder,
.field textarea::placeholder{ color: rgba(169,178,195,0.6); }

.form-actions{ display:flex; gap:10px; flex-wrap:wrap; margin-top:10px; }
.status{ margin-top: 10px; min-height: 20px; }
.hp{ display:none !important; }

/* Steps list */
.steps{
  margin: 0;
  padding-left: 18px;
  color: var(--text-1);
  line-height: 1.7;
}
.steps li{ margin-bottom: 10px; }
.steps strong{ color: var(--text-0); }

/* =========================
   HUD / Spec sheet (hero)
   ========================= */
.hud{
  margin: 16px 0 10px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.025));
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.34);
}
.hud__row{ display:flex; gap:8px; flex-wrap:wrap; margin-bottom:8px; }
.hud__tag{
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.03);
  color: rgba(233,238,247,0.86);
  position: relative;
  overflow: hidden;
}
.hud__tag::after{
  content:"";
  position:absolute;
  inset:-40% -60%;
  background: var(--shine);
  opacity: .06;
  transform: translateX(-40%) rotate(8deg);
  pointer-events:none;
}
.hud__meta{
  font-size: 13px;
  color: var(--text-1);
  display:flex;
  align-items:center;
  flex-wrap: wrap;
  gap: 8px;
}
.hud__sep{ opacity:.55; }
.hud__dot{
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(111,231,208,0.12);
  display:inline-block;
}

.spec{
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.14);
  border-radius: 14px;
  padding: 12px 12px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.045);
  margin-bottom: 14px;
}
.spec__row{
  display:flex;
  justify-content: space-between;
  align-items:center;
  gap: 10px;
  padding: 10px 8px;
  border-bottom: 1px solid rgba(255,255,255,0.075);
}
.spec__row:last-child{ border-bottom: 0; }
.spec__label{
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(169,178,195,0.85);
}
.spec__value{
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(233,238,247,0.92);
  display:flex;
  align-items:center;
  gap: 10px;
  text-align: right;
}
.spec__dot{
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(111,231,208,0.10);
}

/* =========================
   Cursor ripple bubbles (hero)
   ========================= */
.ripple-bubble {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  border: 1px solid rgba(215, 222, 232, 0.18);
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.18), rgba(255,255,255,0.05) 55%, rgba(255,255,255,0.02));
  transform: translate(-50%, -50%) scale(0.7);
  opacity: 0;
  filter: blur(1px);
  animation: ripplePop 900ms ease-out forwards;
}
@keyframes ripplePop {
  0%   { opacity: 0; transform: translate(-50%, -50%) scale(0.55); }
  15%  { opacity: 0.16; }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(1.35); }
}

/* =========================
   Footer centered + icon buttons
   ========================= */
.footer{
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,255,255,0.02), transparent);
  padding: 36px 0;
}

.footer__inner--center{
  display: grid;
  place-items: center;
  text-align: center;
  gap: 16px;
}

.footer__brand{
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.footer__logo{
  width: 44px;
  height: 44px;
  border-radius: 12px;
  object-fit: cover;
  border: 1px solid rgba(215,222,232,0.14);
  background: rgba(255,255,255,0.04);
}

.footer__name{
  font-weight: 700;
  letter-spacing: .02em;
}

.footer__actions{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.iconbtn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
  color: rgba(233,238,247,0.92);
  font-weight: 600;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}

.iconbtn svg{ opacity: .95; }

.iconbtn:hover{
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.35);
  background: rgba(255,255,255,0.05);
}

.footer__fine{
  max-width: 720px;
  margin: 6px 0 0;
  font-size: 13px;
  line-height: 1.5;
}

/* Footer legal (Privacy link) */
.footer__legal{
  margin-top: 4px;
  font-size: 12px;
  opacity: .75;
}

.footer__legal a{
  color: rgba(233,238,247,0.75);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footer__legal a:hover{
  opacity: 1;
  text-decoration-color: rgba(111,231,208,0.35);
}

/* =========================
   Sticky mobile bar (single source of truth)
   ========================= */
.mobilebar{
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 60;
  display: none;
  gap: 10px;
  padding: 10px;
  border-radius: 18px;
  border: 1px solid rgba(215,222,232,0.16);
  background: rgba(10,14,20,0.74);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-hard);
}
.mobilebar__btn{
  flex: 1;
  text-align: center;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(215,222,232,0.14);
  background: rgba(255,255,255,0.04);
  color: rgba(233,238,247,0.92);
  font-weight: 800;
  letter-spacing: .01em;
}
.mobilebar__btn--accent{
  border: 0;
  background: linear-gradient(135deg, var(--accent), rgba(111,231,208,0.82));
  color: #06201A;
}

/* =========================
   Responsive
   ========================= */
@media (max-width: 1000px) {
  .hero__inner, .split { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr 1fr; }
  .cards--4 { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .imgbreaks { grid-template-columns: 1fr 1fr 1fr; }
}

@media (max-width: 760px) {
  .topbar__inner { flex-wrap: wrap; justify-content: center; }
  .topbar__meta { order: 3; border-left: 0; border-right: 0; padding: 6px 0 10px; }
  .mobilebar{ display: flex; }
  body { padding-bottom: 92px; }
}

/* ✅ MOBILE HERO: media becomes a REAL block above copy (no overlap) */
@media (max-width: 640px) {
  .topbar__actions .btn--ghost { display: none; }

  .cards { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .leadform .grid { grid-template-columns: 1fr; }
  .quick-grid { grid-template-columns: 1fr; }
  .imgbreaks { grid-template-columns: 1fr; }

  /* hero media becomes part of layout */
  .hero__media{
    position: relative;
    inset: auto;
    height: auto;
    padding: 10px 12px 0;
  }

  /* make this a single, clean banner */
  .hero__photos{
    height: auto;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 0;
  }

  .hero__photo{
    min-height: 0;
    height: clamp(170px, 40vw, 240px);
    border-radius: 16px;
  }

  /* show only the best banner on mobile */
  .hero__photo--2,
  .hero__photo--3{
    display: none;
  }

  /* remove huge top padding since media is now on top */
  .hero__inner{
    padding-top: 26px;
    min-height: auto;
  }

  /* Mobile CTA stacking (tap-friendly) */
  .hero__cta{
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    align-items: stretch;
  }
  .hero__cta .btn{
    width: 100%;
    justify-content: center;
  }
}

/* Responsive: cards--2 should stack on small screens */
@media (max-width: 800px){
  .cards--2{ grid-template-columns: 1fr; }
}
