/* =========================================================
   Squeaky Clean Auto Detailing — spec preview
   Design system + layout
   ========================================================= */

:root {
  /* brand */
  --brand:      #1657cc;
  --brand-2:    #2f7ff0;
  --navy:       #0a2a63;
  --navy-deep:  #061b41;
  --cyan:       #27c0f5;

  /* neutrals */
  --ink:    #0b1220;
  --slate:  #44506a;
  --muted:  #6b7790;
  --line:   #e4e9f2;
  --paper:  #f4f7fc;
  --paper-2:#eaf0f9;
  --white:  #ffffff;

  /* type */
  --font-display: "Helvetica Neue", "Arial Narrow", "Segoe UI", system-ui, sans-serif;
  --font-body: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --fs-eyebrow: clamp(0.72rem, 0.68rem + 0.2vw, 0.82rem);
  --fs-body:    clamp(1rem, 0.97rem + 0.18vw, 1.125rem);
  --fs-lead:    clamp(1.1rem, 1rem + 0.6vw, 1.4rem);
  --fs-h3:      clamp(1.3rem, 1.1rem + 1vw, 1.7rem);
  --fs-h2:      clamp(2rem, 1.4rem + 2.8vw, 3.4rem);
  --fs-h1:      clamp(2.6rem, 1.5rem + 5.2vw, 5.6rem);
  --fs-display: clamp(3rem, 1.2rem + 7vw, 7rem);

  /* spacing */
  --space-section: clamp(4.5rem, 3rem + 7vw, 9rem);
  --wrap: 1240px;
  --gutter: clamp(1.15rem, 0.6rem + 2.5vw, 2.75rem);
  --radius: 18px;
  --radius-lg: 28px;

  --shadow-sm: 0 2px 10px rgba(10, 27, 65, 0.06);
  --shadow:    0 18px 50px -20px rgba(10, 27, 65, 0.35);
  --shadow-lg: 0 40px 90px -36px rgba(6, 27, 65, 0.5);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { line-height: 1.04; font-weight: 800; letter-spacing: -0.02em; }
p { text-wrap: pretty; }

::selection { background: var(--brand); color: #fff; }

.wrap { width: min(100% - 2 * var(--gutter), var(--wrap)); margin-inline: auto; }
.section { padding-block: var(--space-section); }

.skip-link {
  position: absolute; left: 50%; transform: translateX(-50%) translateY(-150%);
  top: 8px; z-index: 999; background: var(--navy); color: #fff;
  padding: 0.6rem 1.1rem; border-radius: 999px; transition: transform .25s var(--ease);
}
.skip-link:focus { transform: translateX(-50%) translateY(0); }

:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ---------- type helpers ---------- */
.eyebrow {
  font-family: var(--font-display);
  font-size: var(--fs-eyebrow);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.1rem;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--brand);
  display: inline-block;
}
.eyebrow-light { color: #bcd6ff; }
.eyebrow-light::before { background: var(--cyan); }

.section-title {
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  text-transform: none;
  margin-bottom: 1.2rem;
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  --bg: var(--brand);
  --fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  background: var(--bg);
  color: var(--fg);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background-color .25s var(--ease), color .25s var(--ease);
  will-change: transform;
}
.btn-lg { padding: 1.05rem 1.9rem; font-size: 1.02rem; }
.btn-primary { --bg: var(--brand); box-shadow: 0 14px 30px -12px rgba(22, 87, 204, 0.7); }
.btn-primary:hover { background: var(--navy); transform: translateY(-3px); box-shadow: 0 20px 40px -14px rgba(10, 42, 99, 0.75); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,0.55); }
.btn-ghost:hover { background: rgba(255,255,255,0.12); border-color: #fff; transform: translateY(-3px); }
.btn-ghost-dark { background: transparent; color: var(--navy); border-color: rgba(10,42,99,0.3); }
.btn-ghost-dark:hover { background: var(--navy); color: #fff; transform: translateY(-3px); }
.btn-light { background: #fff; color: var(--navy); }
.btn-light:hover { background: var(--cyan); color: var(--navy-deep); transform: translateY(-3px); box-shadow: 0 20px 40px -16px rgba(39,192,245,0.6); }
.btn-pill { padding: 0.6rem 1.15rem; font-size: 0.9rem; }

.dot { width: 9px; height: 9px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 0 0 rgba(39,192,245,0.6); animation: pulse 2.4s infinite; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(39,192,245,0.55); }
  70% { box-shadow: 0 0 0 10px rgba(39,192,245,0); }
  100% { box-shadow: 0 0 0 0 rgba(39,192,245,0); }
}

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding-block: 1rem;
  transition: background-color .4s var(--ease), box-shadow .4s var(--ease), padding .4s var(--ease);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.site-header.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-sm);
  padding-block: 0.6rem;
}

.brand { display: inline-flex; align-items: center; gap: 0.7rem; color: #fff; transition: color .4s var(--ease); }
.site-header.scrolled .brand { color: var(--ink); }
.brand-mark {
  display: grid; place-items: center;
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--brand);
  color: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease);
}
.brand:hover .brand-mark { transform: translateY(-2px) rotate(-3deg); }
.brand-words { display: flex; flex-direction: column; line-height: 1; }
.brand-top {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 1.02rem;
}
.brand-sub {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.34em;
  font-size: 0.6rem;
  opacity: 0.82;
  margin-top: 3px;
}

.nav { display: none; gap: 2rem; }
.nav a {
  font-weight: 600;
  font-size: 0.95rem;
  color: #fff;
  position: relative;
  padding-block: 0.3rem;
  transition: color .4s var(--ease);
}
.site-header.scrolled .nav a { color: var(--slate); }
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 2px; background: var(--cyan);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease);
}
.nav a:hover { color: var(--cyan); }
.site-header.scrolled .nav a:hover { color: var(--brand); }
.nav a:hover::after { transform: scaleX(1); }

.header-cta { color: #fff; background: rgba(255,255,255,0.14); border: 1px solid rgba(255,255,255,0.35); backdrop-filter: blur(6px); }
.header-cta:hover { background: #fff; color: var(--navy); transform: translateY(-2px); }
.site-header.scrolled .header-cta { background: var(--brand); border-color: transparent; color: #fff; }
.site-header.scrolled .header-cta:hover { background: var(--navy); }

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

/* =========================================================
   GRAIN / TEXTURE (reusable, self-contained)
   ========================================================= */
.hero-grain {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  opacity: 0.5; mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: min(90svh, 820px);
  display: flex;
  align-items: center;
  padding-block: clamp(7rem, 9vh, 9.5rem) clamp(3rem, 5vh, 5rem);
  isolation: isolate;
  color: #fff;
  background:
    radial-gradient(120% 90% at 82% 8%, rgba(22,87,204,0.42) 0%, rgba(22,87,204,0) 55%),
    linear-gradient(165deg, #071c44 0%, #0a2a63 46%, #061a3e 100%);
  overflow: hidden;
}
/* soft seam into the marquee below */
.hero::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 120px;
  background: linear-gradient(to bottom, rgba(6,20,46,0), rgba(6,20,46,0.55));
  pointer-events: none; z-index: 0;
}
.hero-bg { position: absolute; inset: 0; z-index: -1; overflow: hidden; }
/* fine structural dot-grid: gives the navy field intentional depth */
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(174,203,255,0.16) 1px, transparent 1.5px);
  background-size: 30px 30px;
  -webkit-mask-image: radial-gradient(130% 95% at 22% 18%, #000 0%, transparent 70%);
  mask-image: radial-gradient(130% 95% at 22% 18%, #000 0%, transparent 70%);
  opacity: 0.7;
}
.hero-glow {
  position: absolute; border-radius: 50%; filter: blur(70px); opacity: 0.6;
}
.hero-glow-1 { width: 46vw; height: 46vw; top: -16vw; right: -10vw; background: radial-gradient(circle, rgba(39,192,245,0.45), transparent 65%); }
.hero-glow-2 { width: 40vw; height: 40vw; bottom: -18vw; left: -14vw; background: radial-gradient(circle, rgba(47,127,240,0.4), transparent 68%); }
.hero-silhouette {
  position: absolute; right: -6%; bottom: -8%;
  width: 70%; height: auto; opacity: 0.05; fill: #fff;
}

.hero-inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
  width: min(100% - 2 * var(--gutter), var(--wrap));
}
.hero-copy { max-width: 38rem; }
.hero-eyebrow { color: #aecbff; }
.hero-eyebrow::before { background: var(--cyan); }
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 1.5rem + 3vw, 4.25rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  margin-bottom: 1.5rem;
  text-wrap: balance;
}
.hero-title .line { display: block; }
.hero-lead {
  font-size: var(--fs-lead);
  max-width: 52ch;
  color: rgba(232,240,255,0.86);
  line-height: 1.5;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2.2rem; }
.hero-chips {
  list-style: none; padding: 0;
  display: flex; flex-wrap: wrap; gap: 0.65rem 0.7rem;
  margin-top: 2.3rem;
}
.hero-chips li {
  font-weight: 600;
  font-size: 0.86rem;
  letter-spacing: 0.01em;
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: rgba(232,240,255,0.92);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  padding: 0.5rem 0.95rem 0.5rem 0.75rem;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}
.hero-chips li::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%; flex: none;
  background: var(--cyan);
  box-shadow: 0 0 8px rgba(39,192,245,0.8);
}

/* hero photo card */
.hero-figure { position: relative; }
.hero-photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,0.12);
  transform: rotate(1.4deg);
}
.hero-photo img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  object-position: 56% 60%;
  filter: saturate(1.08) contrast(1.06) brightness(1.02);
  transform: scale(1.06);
  animation: heroZoom 10s var(--ease) forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero-photo-tint {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(6,20,46,0) 38%, rgba(6,20,46,0.55) 100%),
    linear-gradient(120deg, rgba(22,87,204,0.18), rgba(6,20,46,0.1));
}
.hero-figure-card {
  position: absolute;
  left: -1rem; bottom: -1.5rem;
  display: flex; align-items: center; gap: 0.9rem;
  background: linear-gradient(150deg, rgba(13,40,92,0.92), rgba(7,22,52,0.92));
  color: #fff;
  border-radius: 16px;
  padding: 0.95rem 1.2rem 0.95rem 1.05rem;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(140,180,255,0.28);
  box-shadow: var(--shadow-lg), 0 0 0 6px rgba(7,22,52,0.35);
  max-width: 18.5rem;
  transform: rotate(-1.4deg);
}
.hero-figure-card::before {
  content: ""; position: absolute; left: 0; top: 14%; bottom: 14%;
  width: 4px; border-radius: 4px; background: var(--cyan);
}
.hfc-mark {
  flex: none; display: grid; place-items: center;
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(39,192,245,0.16); color: var(--cyan);
  border: 1.5px solid rgba(39,192,245,0.55);
}
.hfc-text { display: flex; flex-direction: column; font-size: 0.84rem; line-height: 1.4; color: rgba(226,238,255,0.78); }
.hfc-text strong { color: #fff; font-size: 0.98rem; font-weight: 800; letter-spacing: -0.01em; margin-bottom: 1px; }

@media (min-width: 980px) {
  .hero-inner { grid-template-columns: 1.05fr 0.95fr; }
}

.hero-scroll {
  position: absolute;
  left: var(--gutter); bottom: 1.4rem; z-index: 1;
  display: none;
}
.hero-scroll-line {
  display: block; width: 1px; height: 60px;
  background: linear-gradient(rgba(255,255,255,0.7), rgba(255,255,255,0));
  position: relative; overflow: hidden;
}
.hero-scroll-line::after {
  content: ""; position: absolute; top: -50%; left: 0; width: 100%; height: 50%;
  background: var(--cyan);
  animation: scrollLine 2.2s var(--ease) infinite;
}
@keyframes scrollLine { 0% { top: -50%; } 100% { top: 100%; } }
@media (min-width: 1100px) { .hero-scroll { display: block; } }

/* =========================================================
   MARQUEE
   ========================================================= */
.marquee {
  background: var(--navy);
  color: #fff;
  overflow: hidden;
  padding-block: 1.15rem;
  border-block: 1px solid rgba(255,255,255,0.08);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 1.6rem;
  white-space: nowrap;
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: clamp(1rem, 0.8rem + 1vw, 1.5rem);
  animation: marquee 26s linear infinite;
  padding-left: 1.6rem;
}
.marquee-track .sep { color: var(--cyan); }
@keyframes marquee { to { transform: translateX(-50%); } }
.marquee:hover .marquee-track { animation-play-state: paused; }

/* =========================================================
   ABOUT
   ========================================================= */
.about { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.5rem, 4vw, 5rem);
  align-items: center;
}
.about-media { position: relative; }
.about-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 42%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  filter: saturate(1.06) contrast(1.04);
}
/* intentional brand-tinted frame over the product shot */
.about-media::before {
  content: ""; position: absolute; inset: 0; border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(6,20,46,0) 55%, rgba(6,20,46,0.45) 100%),
    linear-gradient(125deg, rgba(22,87,204,0.16), rgba(39,192,245,0.04) 45%, rgba(6,20,46,0) 70%);
  pointer-events: none;
}
.about-media::after {
  content: ""; position: absolute; inset: 0; border-radius: var(--radius-lg);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.18);
  pointer-events: none;
}
.about-badge {
  position: absolute;
  z-index: 2;
  right: -14px; bottom: -22px;
  background: var(--brand);
  color: #fff;
  border-radius: 16px;
  padding: 0.85rem 1.15rem;
  display: flex; align-items: center; gap: 0.7rem;
  box-shadow: var(--shadow-lg);
  font-family: var(--font-display);
  transform: rotate(-3deg);
}
.about-badge .ab-mark {
  display: grid; place-items: center; flex: none;
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,0.16);
  color: #fff;
}
.about-badge em { font-style: normal; font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; line-height: 1.3; max-width: 7rem; }

.about-copy p { color: var(--slate); margin-bottom: 1.1rem; max-width: 56ch; }
.about-points { list-style: none; padding: 0; margin-top: 2rem; display: grid; gap: 1.2rem; }
.about-points li { display: flex; gap: 1.1rem; align-items: flex-start; padding-top: 1.2rem; border-top: 1px solid var(--line); }
.about-points .num {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--brand);
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  flex: none;
  padding-top: 0.15rem;
}
.pt-body { display: flex; flex-direction: column; color: var(--slate); }
.pt-body strong { color: var(--ink); font-size: 1.05rem; margin-bottom: 0.15rem; }

@media (min-width: 860px) {
  .about-grid { grid-template-columns: 0.85fr 1fr; }
  .about-points { grid-template-columns: 1fr 1fr; }
}

/* =========================================================
   SERVICES
   ========================================================= */
.services { background: var(--paper); }
.services-head { max-width: 640px; margin-bottom: clamp(2.5rem, 4vw, 4rem); }
.services-intro { color: var(--slate); font-size: var(--fs-lead); line-height: 1.5; }

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
.svc {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.svc:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.svc-body { padding: clamp(1.5rem, 2.5vw, 2.2rem); display: flex; flex-direction: column; gap: 0.6rem; height: 100%; }
.svc-tag {
  align-self: flex-start;
  font-family: var(--font-display);
  font-size: 0.66rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--brand);
  background: var(--paper-2);
  padding: 0.35rem 0.7rem; border-radius: 999px;
}
.svc h3 { font-size: var(--fs-h3); }
.svc p { color: var(--slate); }

.svc-feature { background: var(--navy); color: #fff; border-color: transparent; }
.svc-feature .svc-media { overflow: hidden; }
.svc-feature .svc-media img {
  width: 100%; aspect-ratio: 16 / 10; object-fit: cover;
  transition: transform .7s var(--ease);
}
.svc-feature:hover .svc-media img { transform: scale(1.06); }
.svc-feature h3, .svc-feature p { color: #fff; }
.svc-feature p { color: rgba(255,255,255,0.85); }
.svc-feature .svc-tag { background: rgba(39,192,245,0.18); color: var(--cyan); }

.svc-cta { background: linear-gradient(150deg, var(--brand), var(--brand-2)); color: #fff; border-color: transparent; }
.svc-cta h3, .svc-cta p { color: #fff; }
.svc-cta p { color: rgba(255,255,255,0.9); }
.svc-cta .btn { margin-top: auto; background: #fff; color: var(--brand); align-self: flex-start; box-shadow: none; }
.svc-cta .btn:hover { background: var(--navy-deep); color: #fff; transform: translateY(-3px); }

@media (min-width: 760px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-feature { grid-column: 1 / -1; flex-direction: row; align-items: stretch; }
  .svc-feature .svc-media { flex: 1 1 56%; }
  .svc-feature .svc-media img { height: 100%; aspect-ratio: auto; }
  .svc-feature .svc-body { flex: 1 1 44%; justify-content: center; }
}
@media (min-width: 1080px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .svc-feature .svc-body { flex-basis: 40%; }
}

/* =========================================================
   TRUST BAND
   ========================================================= */
.trust {
  position: relative;
  isolation: isolate;
  color: #fff;
  padding-block: clamp(5rem, 8vw, 9rem);
  overflow: hidden;
  background:
    radial-gradient(110% 120% at 0% 0%, rgba(22,87,204,0.5) 0%, rgba(22,87,204,0) 52%),
    linear-gradient(115deg, #061a3e 0%, #0a2a63 50%, #061a3e 100%);
}
.trust-bg { position: absolute; inset: 0; z-index: -1; overflow: hidden; }
.trust-bg::after {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(174,203,255,0.14) 1px, transparent 1.5px);
  background-size: 30px 30px;
  -webkit-mask-image: radial-gradient(120% 110% at 8% 10%, #000 0%, transparent 68%);
  mask-image: radial-gradient(120% 110% at 8% 10%, #000 0%, transparent 68%);
  opacity: 0.65;
}
.trust-glow {
  position: absolute; bottom: -22%; right: -10%;
  width: 48vw; height: 48vw; border-radius: 50%;
  background: radial-gradient(circle, rgba(39,192,245,0.32), transparent 66%);
  filter: blur(60px);
}
.trust-silhouette {
  position: absolute; right: -4%; bottom: -10%;
  width: 56%; height: auto; opacity: 0.06; fill: #fff;
}
.trust-inner { position: relative; z-index: 1; max-width: 720px; }
.trust-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 1.2rem + 2.6vw, 3rem);
  margin-bottom: 1.2rem;
}
.trust-lead { font-size: var(--fs-lead); color: rgba(255,255,255,0.9); line-height: 1.5; max-width: 58ch; margin-bottom: 2rem; }

/* =========================================================
   GALLERY
   ========================================================= */
.gallery { background: var(--white); }
.gallery-head { margin-bottom: clamp(2rem, 3.5vw, 3.5rem); }
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
}
.g { position: relative; overflow: hidden; border-radius: var(--radius); margin: 0; background: var(--paper-2); }
.g img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; transition: transform .8s var(--ease); }
.g:hover img { transform: scale(1.05); }

/* editorial caption on photo tiles */
.g-cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  display: flex; align-items: center; gap: 0.6rem;
  padding: 1.6rem 1.2rem 1rem;
  font-size: 0.88rem; font-weight: 600; line-height: 1.3; color: #fff;
  background: linear-gradient(to top, rgba(6,20,46,0.82), rgba(6,20,46,0));
  transform: translateY(8px); opacity: 0;
  transition: transform .5s var(--ease), opacity .5s var(--ease);
}
.g-cap span {
  font-family: var(--font-display); font-weight: 800; font-size: 0.74rem;
  letter-spacing: 0.06em; color: var(--cyan);
  border: 1px solid rgba(39,192,245,0.6); border-radius: 999px;
  padding: 0.15rem 0.5rem; flex: none;
}
.g:hover .g-cap, .g:focus-within .g-cap { transform: none; opacity: 1; }
@media (hover: none) { .g-cap { transform: none; opacity: 1; } }

/* designed brand / CTA tile (replaces the logo placeholder) */
.g-panel {
  display: flex; flex-direction: column; justify-content: center;
  gap: 0.7rem; padding: clamp(1.6rem, 3vw, 2.2rem);
  color: #fff; overflow: hidden;
  background:
    radial-gradient(120% 120% at 100% 0%, rgba(39,192,245,0.28), rgba(39,192,245,0) 55%),
    linear-gradient(150deg, var(--brand), var(--navy-deep));
}
.g-panel-mark { color: rgba(255,255,255,0.9); }
.g-panel-mark svg { width: 64px; height: auto; }
.g-panel-title { font-family: var(--font-display); font-weight: 800; font-size: var(--fs-h3); line-height: 1.05; letter-spacing: -0.02em; }
.g-panel-sub { color: rgba(255,255,255,0.82); font-size: 0.95rem; line-height: 1.45; }
.g-panel .btn { align-self: flex-start; margin-top: 0.6rem; }

@media (min-width: 760px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 1fr; }
  .g-tall { grid-row: span 2; }
  .g-tall img { aspect-ratio: auto; height: 100%; }
}

/* =========================================================
   CONTACT
   ========================================================= */
.contact { background: var(--paper); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.5rem, 4vw, 4rem);
  align-items: center;
}
.contact-copy p { color: var(--slate); max-width: 50ch; }
.contact-hours {
  margin-top: 2rem;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem 1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem 1.3rem;
}
.ch-label { font-family: var(--font-display); font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; font-size: 0.72rem; color: var(--muted); }
.ch-open { display: inline-flex; align-items: center; gap: 0.5rem; font-weight: 700; color: var(--brand); }
.ch-time { color: var(--slate); }

.contact-card {
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 3vw, 2.8rem);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.contact-card::before {
  content: "";
  position: absolute; top: -60px; right: -60px;
  width: 200px; height: 200px; border-radius: 50%;
  background: radial-gradient(circle, rgba(39,192,245,0.4), transparent 70%);
}
.cc-kicker { font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.18em; font-size: 0.72rem; color: var(--cyan); margin-bottom: 0.8rem; }
.cc-phone {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 1.2rem + 3.4vw, 3rem);
  letter-spacing: -0.01em;
  line-height: 1;
  margin-bottom: 1.4rem;
  transition: color .3s var(--ease);
}
.cc-phone:hover { color: var(--cyan); }
.cc-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; }
.contact-card .btn-ghost-dark { color: #fff; border-color: rgba(255,255,255,0.4); }
.contact-card .btn-ghost-dark:hover { background: #fff; color: var(--navy); }
.cc-note { margin-top: 1.4rem; font-size: 0.9rem; color: rgba(255,255,255,0.75); }

@media (min-width: 860px) {
  .contact-grid { grid-template-columns: 1.1fr 0.9fr; }
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer { background: var(--ink); color: rgba(255,255,255,0.82); padding-top: clamp(3rem, 5vw, 4.5rem); }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
}
.footer-brand .brand-words { color: #fff; }
.footer-brand .brand-top { font-size: 1.2rem; }
.footer-tag { margin-top: 0.9rem; max-width: 36ch; color: rgba(255,255,255,0.6); }
.footer-nav { display: flex; flex-wrap: wrap; gap: 1.4rem; align-content: start; }
.footer-nav a { color: rgba(255,255,255,0.78); font-weight: 600; transition: color .25s var(--ease); }
.footer-nav a:hover { color: var(--cyan); }
.footer-contact { display: flex; flex-direction: column; gap: 0.4rem; }
.footer-phone { font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; color: #fff; transition: color .25s var(--ease); }
.footer-phone:hover { color: var(--cyan); }
.footer-hours { font-size: 0.9rem; color: rgba(255,255,255,0.6); }
.footer-base {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-block: 1.5rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}
@media (min-width: 760px) {
  .footer-grid { grid-template-columns: 1.6fr 1fr 1fr; gap: 3rem; }
}

/* spec footer (mandatory) */
.spec-footer {
  background: #05060a;
  color: rgba(255,255,255,0.62);
  font-size: 0.82rem;
  text-align: center;
  padding: 1.1rem var(--gutter);
  line-height: 1.6;
}
.spec-footer a { color: var(--cyan); text-decoration: underline; }

/* =========================================================
   REVEAL ANIMATION
   ========================================================= */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s var(--ease), transform .55s var(--ease);
  transition-delay: calc(var(--d, 0) * 48ms);
}
.js [data-reveal].in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js [data-reveal] { opacity: 1; transform: none; transition: none; }
  .hero-photo img { animation: none; transform: none; }
  .marquee-track { animation: none; }
  .dot { animation: none; }
  .hero-scroll-line::after { animation: none; }
  * { scroll-behavior: auto !important; }
}
