/* =====================================================================
   WICKED SHINE — styles.css
   Premium desert-shine theme: deep navy + glass blue + gold
   Mobile-first, conversion-focused, pure CSS (no frameworks)
   ===================================================================== */

/* ---------- Design tokens ---------- */
:root {
  /* Brand colors */
  --navy-900: #081427;
  --navy-800: #0a1b33;
  --navy-700: #0e2547;
  --navy-600: #143258;
  --blue-700: #0f5fb3;
  --blue-600: #1370ce;
  --blue-500: #2c9cf0;
  --blue-400: #4fb0f7;
  --blue-200: #bfe2ff;
  --gold-600: #f5a623;
  --gold-500: #ffc233;
  --gold-400: #ffd46b;

  /* Neutrals */
  --ink: #0c1a2e;
  --ink-soft: #475a75;
  --ink-faint: #7186a1;
  --line: #e3ebf5;
  --line-strong: #cfdcec;
  --paper: #ffffff;
  --paper-2: #f2f7fd;
  --paper-3: #e9f1fb;
  --white: #ffffff;

  /* Effects */
  --shadow-sm: 0 2px 8px rgba(8, 20, 39, .08);
  --shadow-md: 0 14px 36px rgba(8, 20, 39, .12);
  --shadow-lg: 0 28px 70px rgba(8, 20, 39, .26);
  --shadow-gold: 0 12px 30px rgba(245, 166, 35, .34);
  --ring: 0 0 0 3px rgba(44, 156, 240, .45);

  --grad-blue: linear-gradient(135deg, var(--blue-500), var(--blue-700));
  --grad-gold: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  --grad-navy: linear-gradient(165deg, var(--navy-700) 0%, var(--navy-900) 100%);

  /* Type */
  --font-display: "Bricolage Grotesque", "Trebuchet MS", system-ui, sans-serif;
  --font-body: "Hanken Grotesk", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  /* Layout */
  --container: 1200px;
  --gutter: clamp(1.1rem, 4vw, 2.5rem);
  --radius: 18px;
  --radius-sm: 12px;
  --radius-lg: 26px;
  --header-h: 74px;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.075rem);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: none; box-shadow: var(--ring); border-radius: 8px; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.06;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--ink);
}

/* ---------- Helpers ---------- */
.container { width: min(100% - 2 * var(--gutter), var(--container)); margin-inline: auto; }
.section { padding: clamp(3.6rem, 8vw, 6.5rem) 0; position: relative; }
.section--dark { background: var(--grad-navy); color: var(--white); }
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: var(--white); }
.section--tint { background: var(--paper-2); }

.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue-600);
}
.eyebrow::before {
  content: ""; width: 26px; height: 2px; border-radius: 2px;
  background: var(--grad-gold);
}
.section--dark .eyebrow { color: var(--gold-500); }
.section--dark .eyebrow::before { background: var(--grad-blue); }
.eyebrow--center { justify-content: center; }

.section-head { max-width: 720px; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-title {
  font-size: clamp(1.95rem, 1.2rem + 3.2vw, 3.35rem);
  margin: .65rem 0 .8rem;
}
.section-title .hl { color: var(--blue-500); }
.section--dark .section-title .hl { color: var(--gold-500); }
.section-sub { color: var(--ink-soft); font-size: 1.08rem; max-width: 60ch; }
.section--dark .section-sub { color: rgba(255, 255, 255, .78); }
.section-head--center .section-sub { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  --_pad-y: .95rem; --_pad-x: 1.5rem;
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  padding: var(--_pad-y) var(--_pad-x);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: .005em;
  border-radius: 999px;
  position: relative; overflow: hidden;
  transition: transform .2s ease, box-shadow .25s ease, background-color .25s ease, color .2s ease;
  white-space: nowrap;
}
.btn svg { width: 1.15em; height: 1.15em; flex: none; }
.btn:active { transform: translateY(1px) scale(.99); }

.btn--gold { background: var(--grad-gold); color: var(--navy-900); box-shadow: var(--shadow-gold); }
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 18px 40px rgba(245, 166, 35, .46); }

.btn--blue { background: var(--grad-blue); color: #fff; box-shadow: 0 12px 30px rgba(19, 112, 206, .35); }
.btn--blue:hover { transform: translateY(-2px); box-shadow: 0 18px 40px rgba(19, 112, 206, .45); }

.btn--ghost {
  background: rgba(255, 255, 255, .06);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, .4);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}
.btn--ghost:hover { background: rgba(255, 255, 255, .14); border-color: #fff; transform: translateY(-2px); }

.btn--outline {
  background: #fff; color: var(--navy-800);
  border: 1.5px solid var(--line-strong);
  box-shadow: var(--shadow-sm);
}
.btn--outline:hover { border-color: var(--blue-500); color: var(--blue-700); transform: translateY(-2px); }

.btn--lg { --_pad-y: 1.15rem; --_pad-x: 2rem; font-size: 1.12rem; }
.btn--block { width: 100%; }

/* gleam sweep — on brand for a "shine" company */
.btn--gold::after,
.btn--blue::after {
  content: ""; position: absolute; top: 0; left: -130%;
  width: 60%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .55), transparent);
  transform: skewX(-22deg);
  transition: none;
}
.btn--gold:hover::after,
.btn--blue:hover::after { animation: gleam 0.9s ease; }
@keyframes gleam { from { left: -130%; } to { left: 130%; } }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--header-h);
  display: flex; align-items: center;
  transition: background-color .35s ease, box-shadow .35s ease, backdrop-filter .35s ease;
}
.site-header.scrolled {
  background: rgba(8, 18, 36, .9);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, .28);
}
.header-inner {
  width: min(100% - 2 * var(--gutter), var(--container));
  margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.brand { display: flex; align-items: center; gap: .7rem; }
.brand img { height: 46px; width: auto; filter: drop-shadow(0 4px 10px rgba(0, 0, 0, .35)); }
.brand-name {
  font-family: var(--font-display); font-weight: 800; color: #fff;
  font-size: 1.15rem; letter-spacing: .01em; line-height: 1;
  display: none;
}
.nav { display: none; }
.nav a {
  font-family: var(--font-display); font-weight: 600; color: rgba(255, 255, 255, .82);
  font-size: .98rem; padding: .4rem .2rem; position: relative;
  transition: color .2s ease;
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--grad-gold); border-radius: 2px; transition: width .25s ease;
}
.nav a:hover { color: #fff; }
.nav a:hover::after { width: 100%; }

.header-cta { display: flex; align-items: center; gap: .6rem; }
.header-call {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--grad-gold); color: var(--navy-900);
  font-family: var(--font-display); font-weight: 700;
  padding: .62rem 1.1rem; border-radius: 999px;
  box-shadow: var(--shadow-gold);
  transition: transform .2s ease, box-shadow .25s ease;
  font-size: .98rem;
}
.header-call:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(245, 166, 35, .5); }
.header-call svg { width: 1.05em; height: 1.05em; }
.header-call .label { display: none; }

/* mobile menu toggle */
.menu-toggle {
  display: inline-flex; flex-direction: column; gap: 5px;
  width: 44px; height: 44px; align-items: center; justify-content: center;
  border-radius: 12px; border: 1px solid rgba(255, 255, 255, .25);
}
.menu-toggle span { width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: transform .3s, opacity .3s; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile drawer */
.mobile-nav {
  position: fixed; inset: var(--header-h) 0 auto 0; z-index: 99;
  background: rgba(8, 18, 36, .98);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border-top: 1px solid rgba(255, 255, 255, .1);
  transform: translateY(-12px); opacity: 0; visibility: hidden;
  transition: transform .3s ease, opacity .3s ease, visibility .3s;
  padding: 1rem var(--gutter) 1.6rem;
}
.mobile-nav.open { transform: translateY(0); opacity: 1; visibility: visible; }
.mobile-nav a {
  display: block; color: #fff; font-family: var(--font-display); font-weight: 600;
  font-size: 1.15rem; padding: .85rem .25rem; border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.mobile-nav .btn { margin-top: 1.1rem; }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center;
  padding: calc(var(--header-h) + 2.4rem) 0 3.2rem;
  color: #fff; isolation: isolate;
}
.hero__bg { position: absolute; inset: 0; z-index: -3; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 62%; }
.hero__overlay {
  position: absolute; inset: 0; z-index: -2;
  background:
    linear-gradient(180deg, rgba(8, 18, 36, .82) 0%, rgba(8, 18, 36, .5) 38%, rgba(8, 18, 36, .72) 78%, rgba(8, 18, 36, .94) 100%),
    linear-gradient(95deg, rgba(8, 18, 36, .9) 0%, rgba(8, 18, 36, .35) 55%, rgba(8, 18, 36, 0) 80%);
}
.hero__glow {
  position: absolute; z-index: -1; top: -8%; right: -6%;
  width: 46vmax; height: 46vmax; pointer-events: none;
  background: radial-gradient(circle, rgba(255, 198, 51, .26) 0%, rgba(255, 198, 51, .08) 35%, transparent 65%);
}
.hero .container { position: relative; }
.hero__content { max-width: 760px; }

.hero h1 {
  color: #fff;
  font-size: clamp(2.5rem, 1.2rem + 6.4vw, 5rem);
  letter-spacing: -0.02em; margin-bottom: 1.1rem;
  text-shadow: 0 4px 30px rgba(0, 0, 0, .35);
}
.hero h1 .shine {
  position: relative;
  background: linear-gradient(92deg, #bfe2ff 0%, #ffffff 25%, #7cc4ff 50%, #ffffff 75%, #bfe2ff 100%);
  background-size: 220% auto;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  animation: shineText 6s linear infinite;
}
@keyframes shineText { to { background-position: 220% center; } }

.hero__sub {
  font-size: clamp(1.06rem, 1rem + 0.5vw, 1.3rem);
  color: rgba(255, 255, 255, .9); max-width: 56ch; margin-bottom: 1.7rem;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-bottom: 1.9rem; }

.hero__chips { display: flex; flex-wrap: wrap; gap: .55rem .55rem; }
.chip {
  display: inline-flex; align-items: center; gap: .45rem;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .18);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  padding: .5rem .85rem; border-radius: 999px;
  font-size: .88rem; font-weight: 600; color: #fff;
}
.chip svg { width: 1em; height: 1em; color: var(--gold-500); }

.hero__scroll {
  position: absolute; left: 50%; bottom: 1.4rem; transform: translateX(-50%);
  z-index: 1; color: rgba(255, 255, 255, .7); display: grid; place-items: center; gap: .35rem;
  font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; font-family: var(--font-display);
}
.hero__scroll span.dot {
  width: 26px; height: 42px; border: 2px solid rgba(255, 255, 255, .5); border-radius: 14px;
  position: relative;
}
.hero__scroll span.dot::after {
  content: ""; position: absolute; top: 7px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 8px; border-radius: 4px; background: var(--gold-500);
  animation: scrollDot 1.7s ease-in-out infinite;
}
@keyframes scrollDot { 0% { opacity: 0; top: 7px; } 40% { opacity: 1; } 80% { opacity: 0; top: 20px; } 100% { opacity: 0; } }

/* ---------- Value strip ---------- */
.value-strip { background: var(--navy-900); color: #fff; padding: 1.5rem 0; }
.value-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem 1.4rem;
}
.value-item { display: flex; align-items: center; gap: .8rem; }
.value-item .vi-icon {
  width: 44px; height: 44px; flex: none; border-radius: 12px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(44, 156, 240, .2), rgba(44, 156, 240, .05));
  border: 1px solid rgba(44, 156, 240, .3); color: var(--blue-400);
}
.value-item .vi-icon svg { width: 22px; height: 22px; }
.value-item b { font-family: var(--font-display); font-size: .98rem; display: block; }
.value-item span { font-size: .82rem; color: rgba(255, 255, 255, .65); }

/* ---------- Services ---------- */
.services-grid {
  margin-top: 2.6rem;
  display: grid; gap: 1.3rem;
  grid-template-columns: 1fr;
}
.svc-card {
  position: relative; border-radius: var(--radius);
  overflow: hidden; background: #fff; border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
  display: flex; flex-direction: column;
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--line-strong); }

.svc-card--photo .svc-media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.svc-card--photo .svc-media img {
  width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease;
}
.svc-card--photo:hover .svc-media img { transform: scale(1.06); }
.svc-card--photo .svc-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(8, 20, 39, .55) 100%);
}
.svc-badge {
  position: absolute; top: .9rem; left: .9rem; z-index: 2;
  display: inline-flex; align-items: center; gap: .4rem;
  background: rgba(8, 18, 36, .72); color: #fff;
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  padding: .35rem .7rem; border-radius: 999px; font-size: .76rem;
  font-family: var(--font-display); font-weight: 700; letter-spacing: .03em;
  border: 1px solid rgba(255, 255, 255, .18);
}
.svc-body { padding: 1.3rem 1.35rem 1.45rem; display: flex; flex-direction: column; flex: 1; }
.svc-icon {
  width: 52px; height: 52px; border-radius: 14px; flex: none; margin-bottom: .9rem;
  display: grid; place-items: center; color: #fff;
  background: var(--grad-blue); box-shadow: 0 10px 22px rgba(19, 112, 206, .3);
}
.svc-icon svg { width: 26px; height: 26px; }
.svc-card h3 { font-size: 1.22rem; margin-bottom: .4rem; }
.svc-card p { color: var(--ink-soft); font-size: .96rem; margin-bottom: 1rem; }
.svc-link {
  margin-top: auto; align-self: flex-start;
  display: inline-flex; align-items: center; gap: .4rem;
  font-family: var(--font-display); font-weight: 700; font-size: .92rem;
  color: var(--blue-700);
}
.svc-link svg { width: 1em; height: 1em; transition: transform .2s ease; }
.svc-link:hover svg { transform: translateX(4px); }

/* ---------- Before / After ---------- */
.ba-grid { margin-top: 2.4rem; display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
.ba-card {
  background: #fff; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow-sm);
}
.ba-figure { position: relative; }
.ba-figure img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.ba-tags { position: absolute; inset: 0; pointer-events: none; }
.ba-tag {
  position: absolute; bottom: .85rem;
  font-family: var(--font-display); font-weight: 800; font-size: .72rem;
  letter-spacing: .12em; text-transform: uppercase;
  padding: .35rem .75rem; border-radius: 999px; color: #fff;
}
.ba-tag.before { left: .85rem; background: rgba(8, 18, 36, .82); }
.ba-tag.after { right: .85rem; background: var(--grad-blue); }
.ba-card figcaption { padding: 1rem 1.2rem; font-weight: 600; color: var(--ink); display: flex; align-items: center; gap: .55rem; }
.ba-card figcaption svg { width: 1.1em; height: 1.1em; color: var(--gold-600); flex: none; }

/* ---------- Gallery ---------- */
.gallery {
  margin-top: 2.6rem;
  columns: 2; column-gap: 1rem;
}
.gallery-item {
  position: relative; break-inside: avoid; margin-bottom: 1rem;
  border-radius: var(--radius-sm); overflow: hidden; cursor: pointer;
  background: var(--navy-800); display: block; width: 100%;
}
.gallery-item img { width: 100%; transition: transform .55s ease; }
.gallery-item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(8, 18, 36, .55));
  opacity: 0; transition: opacity .3s ease;
}
.gallery-item .gi-zoom {
  position: absolute; right: .7rem; bottom: .7rem; z-index: 2;
  width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(255, 255, 255, .92); color: var(--navy-800);
  transform: scale(.5); opacity: 0; transition: transform .3s ease, opacity .3s ease;
}
.gallery-item .gi-zoom svg { width: 18px; height: 18px; }
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item:hover::after { opacity: 1; }
.gallery-item:hover .gi-zoom { transform: scale(1); opacity: 1; }

/* lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 200; display: none;
  align-items: center; justify-content: center;
  background: rgba(5, 11, 22, .92);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  padding: clamp(1rem, 4vw, 3rem);
}
.lightbox.open { display: flex; animation: fade .25s ease; }
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
.lightbox img {
  max-width: 100%; max-height: 86vh; border-radius: 12px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .6);
}
.lb-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(255, 255, 255, .12); color: #fff; border: 1px solid rgba(255, 255, 255, .25);
  transition: background .2s ease;
}
.lb-btn:hover { background: rgba(255, 255, 255, .25); }
.lb-prev { left: clamp(.6rem, 2vw, 2rem); }
.lb-next { right: clamp(.6rem, 2vw, 2rem); }
.lb-close { top: clamp(.8rem, 3vw, 1.6rem); right: clamp(.8rem, 3vw, 1.6rem); transform: none; }
.lb-btn svg { width: 22px; height: 22px; }
.lb-count {
  position: absolute; bottom: clamp(.8rem, 3vw, 1.6rem); left: 50%; transform: translateX(-50%);
  color: rgba(255, 255, 255, .8); font-family: var(--font-display); font-size: .9rem; letter-spacing: .05em;
}

/* ---------- Why choose us ---------- */
.why-grid { display: grid; gap: 2.4rem; align-items: center; grid-template-columns: 1fr; }
.why-media { position: relative; }
.why-media img {
  width: 100%; border-radius: var(--radius-lg); aspect-ratio: 4 / 5; object-fit: cover;
  box-shadow: var(--shadow-lg);
}
.why-media .why-tag {
  position: absolute; left: 1rem; bottom: 1rem;
  background: rgba(8, 18, 36, .82); color: #fff;
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, .18);
  padding: .7rem 1rem; border-radius: 14px; max-width: 80%;
}
.why-tag b { font-family: var(--font-display); display: block; font-size: .98rem; }
.why-tag span { font-size: .82rem; color: rgba(255, 255, 255, .72); }

.why-list { display: grid; gap: 1.15rem; margin-top: 1.8rem; }
.why-item { display: flex; gap: .95rem; }
.why-item .wi-check {
  width: 38px; height: 38px; flex: none; border-radius: 11px; display: grid; place-items: center;
  background: rgba(44, 156, 240, .14); color: var(--blue-400);
  border: 1px solid rgba(44, 156, 240, .3);
}
.section--dark .why-item .wi-check { background: rgba(255, 198, 51, .12); color: var(--gold-500); border-color: rgba(255, 198, 51, .3); }
.why-item .wi-check svg { width: 20px; height: 20px; }
.why-item h4 { font-size: 1.08rem; margin-bottom: .15rem; }
.why-item p { font-size: .94rem; color: rgba(255, 255, 255, .74); }
.why-actions { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: .8rem; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative; overflow: hidden;
  background: linear-gradient(120deg, var(--blue-700), var(--navy-800));
  color: #fff; text-align: center;
  padding: clamp(3rem, 7vw, 5rem) 0;
}
.cta-band::before {
  content: ""; position: absolute; top: -40%; left: 50%; transform: translateX(-50%);
  width: 60vmax; height: 60vmax;
  background: radial-gradient(circle, rgba(255, 198, 51, .22), transparent 60%);
  pointer-events: none;
}
.cta-band .container { position: relative; }
.cta-band h2 { color: #fff; font-size: clamp(1.9rem, 1.1rem + 3.4vw, 3.2rem); margin-bottom: .7rem; }
.cta-band p { color: rgba(255, 255, 255, .85); max-width: 50ch; margin: 0 auto 1.8rem; font-size: 1.1rem; }
.cta-phone {
  display: inline-flex; align-items: center; gap: .8rem;
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(1.7rem, 1rem + 3vw, 2.8rem);
  color: #fff; margin-top: .3rem;
}
.cta-phone svg { width: .9em; height: .9em; color: var(--gold-500); }
.cta-phone:hover { color: var(--gold-400); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; gap: 2.2rem; grid-template-columns: 1fr; }
.contact-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 2.6rem); box-shadow: var(--shadow-md);
}
.contact-phone-wrap { text-align: center; padding-bottom: 1.4rem; border-bottom: 1px dashed var(--line-strong); margin-bottom: 1.4rem; }
.contact-phone-wrap .pw-label {
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  letter-spacing: .12em; font-size: .8rem; color: var(--blue-700); margin-bottom: .4rem;
}
.contact-phone {
  display: inline-flex; align-items: center; gap: .7rem;
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(1.9rem, 1.1rem + 3.4vw, 3rem);
  color: var(--navy-800); line-height: 1;
}
.contact-phone svg { width: .78em; height: .78em; color: var(--gold-600); }
.contact-phone:hover { color: var(--blue-700); }
.contact-actions { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; margin-bottom: 1.5rem; }

.contact-meta { display: grid; gap: 1.05rem; }
.cmeta { display: flex; gap: .85rem; align-items: flex-start; }
.cmeta .cm-icon {
  width: 42px; height: 42px; flex: none; border-radius: 12px; display: grid; place-items: center;
  background: var(--paper-2); color: var(--blue-700); border: 1px solid var(--line);
}
.cmeta .cm-icon svg { width: 20px; height: 20px; }
.cmeta b { font-family: var(--font-display); display: block; font-size: 1rem; }
.cmeta span { color: var(--ink-soft); font-size: .94rem; }

.contact-aside h3 { font-size: 1.5rem; margin-bottom: .6rem; }
.contact-aside > p { color: var(--ink-soft); margin-bottom: 1.4rem; }
.clean-chips { display: flex; flex-wrap: wrap; gap: .55rem; }
.clean-chip {
  display: inline-flex; align-items: center; gap: .45rem;
  background: var(--paper-2); border: 1px solid var(--line);
  border-radius: 999px; padding: .5rem .9rem; font-size: .88rem; font-weight: 600; color: var(--navy-700);
}
.clean-chip svg { width: 1em; height: 1em; color: var(--blue-500); }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-900); color: rgba(255, 255, 255, .72); padding: 3rem 0 6.5rem; }
.footer-grid { display: grid; gap: 2rem; grid-template-columns: 1fr; }
.footer-brand img {
  width: auto;
  height: auto;
  max-width: 180px;
  max-height: 80px;
  object-fit: contain;
  display: block;
  margin-bottom: 1rem;
}
.footer-brand p { max-width: 36ch; font-size: .95rem; }
.footer-col h4 { color: #fff; font-size: 1.05rem; margin-bottom: .9rem; }
.footer-col ul { display: grid; gap: .55rem; }
.footer-col a, .footer-col li { font-size: .95rem; }
.footer-col a:hover { color: var(--gold-500); }
.footer-phone {
  display: inline-flex; align-items: center; gap: .5rem; color: #fff;
  font-family: var(--font-display); font-weight: 800; font-size: 1.35rem;
}
.footer-phone svg { width: 1em; height: 1em; color: var(--gold-500); }
.footer-bottom {
  margin-top: 2.4rem; padding-top: 1.5rem; border-top: 1px solid rgba(255, 255, 255, .1);
  display: flex; flex-wrap: wrap; gap: .6rem; justify-content: space-between; align-items: center;
  font-size: .85rem; color: rgba(255, 255, 255, .55);
}
.footer-bottom .tagline { color: var(--gold-500); font-family: var(--font-display); font-weight: 700; }

/* ---------- Sticky mobile call bar ---------- */
.mobile-callbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: flex; gap: .6rem; padding: .6rem;
  background: rgba(8, 18, 36, .94);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 255, 255, .12);
  transform: translateY(120%); transition: transform .35s ease;
}
.mobile-callbar.show { transform: translateY(0); }
.mobile-callbar a { flex: 1; padding: .85rem; font-size: 1.02rem; }
.mobile-callbar .mcb-text { flex: 0 0 auto; }

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in-view { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }
.reveal[data-delay="5"] { transition-delay: .4s; }

/* hero entrance */
.hero__content > * { opacity: 0; transform: translateY(22px); animation: heroIn .8s cubic-bezier(.2, .7, .2, 1) forwards; }
.hero__content > *:nth-child(1) { animation-delay: .1s; }
.hero__content > *:nth-child(2) { animation-delay: .24s; }
.hero__content > *:nth-child(3) { animation-delay: .38s; }
.hero__content > *:nth-child(4) { animation-delay: .52s; }
.hero__content > *:nth-child(5) { animation-delay: .64s; }
@keyframes heroIn { to { opacity: 1; transform: none; } }

/* ---------- Responsive ---------- */
@media (min-width: 560px) {
  .header-call .label { display: inline; }
  .contact-actions { grid-template-columns: 1fr 1fr; }
  .ba-grid { grid-template-columns: 1fr 1fr; }
  .gallery { columns: 2; }
}

@media (min-width: 760px) {
  .brand-name { display: block; }
  .value-grid { grid-template-columns: repeat(4, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery { columns: 3; }
  .footer-grid { grid-template-columns: 1.6fr 1fr 1fr; }
}

@media (min-width: 1000px) {
  :root { --header-h: 84px; }
  .nav { display: flex; align-items: center; gap: 1.8rem; }
  .menu-toggle { display: none; }
  .services-grid { grid-template-columns: repeat(4, 1fr); }
  .why-grid { grid-template-columns: 1fr 1.05fr; gap: 3.5rem; }
  .contact-grid { grid-template-columns: 1.1fr .9fr; align-items: start; }
  .mobile-callbar { display: none; }
  .site-footer { padding-bottom: 3rem; }
  .gallery { columns: 4; }
}

@media (min-width: 1240px) {
  .gallery { columns: 4; }
}

/* respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  .hero__content > * { opacity: 1; transform: none; }
  .hero h1 .shine { animation: none; }
}
