/* =========================================================
   Shine Rite Mobile Detailing — luxury black/gold theme
   ========================================================= */

:root {
  --bg: #0a0a0c;
  --bg-2: #101013;
  --surface: #131318;
  --surface-2: #17171d;
  --border: #2a2a32;
  --border-strong: #3a3a44;

  --text: #ece9e0;
  --text-muted: #a09c93;
  --text-faint: #6d6a63;

  --gold-1: #f3d27a;       /* highlight */
  --gold-2: #d4af37;       /* core gold */
  --gold-3: #a8842a;       /* deep gold */
  --gold-soft: rgba(212, 175, 55, 0.18);
  --gold-line: rgba(212, 175, 55, 0.32);

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;

  --shadow-sm: 0 1px 0 rgba(255,255,255,0.04), 0 6px 24px rgba(0,0,0,0.35);
  --shadow-md: 0 1px 0 rgba(255,255,255,0.05), 0 18px 48px rgba(0,0,0,0.55);

  --container: 1180px;

  --font-display: "Cormorant Garamond", ui-serif, Georgia, "Times New Roman", serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --ease: cubic-bezier(.16, 1, .3, 1);
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }

a { color: var(--gold-1); text-decoration: none; }
a:hover { color: var(--gold-2); }

p { margin: 0 0 1em; color: var(--text); }

.muted { color: var(--text-muted); }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--gold-2); color: #000; padding: 10px 14px; z-index: 100;
}
.skip-link:focus { left: 12px; top: 12px; }

/* =========================
   Header
   ========================= */
.site-header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(10, 10, 12, 0.72);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.site-header.is-scrolled {
  background: rgba(10, 10, 12, 0.88);
  border-bottom-color: var(--border);
}

.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding-top: 16px; padding-bottom: 16px;
}

.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--text); }
.brand:hover { color: var(--text); }
.brand-mark { width: 36px; height: 36px; flex: none; }
.brand-logo {
  width: 148px;
  height: auto;
  flex: none;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,.45));
}
.footer-logo { width: 190px; }
.brand-text { display: inline-flex; flex-direction: column; line-height: 1.05; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 0.01em;
  background: linear-gradient(135deg, var(--gold-1), var(--gold-3));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.brand-tag {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.nav {
  display: flex; gap: 28px; align-items: center;
}
.nav a {
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .02em;
  position: relative;
  padding: 6px 0;
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  height: 1px; width: 0; background: var(--gold-2);
  transition: width .3s var(--ease);
}
.nav a:hover { color: var(--gold-1); }
.nav a:hover::after { width: 100%; }

.header-cta { display: inline-flex; }

.menu-toggle {
  display: none;
  background: none; border: 1px solid var(--border-strong);
  width: 42px; height: 42px; border-radius: 10px;
  padding: 0; cursor: pointer;
  flex-direction: column; align-items: center; justify-content: center; gap: 4px;
}
.menu-toggle span {
  display: block; width: 18px; height: 1.5px; background: var(--gold-2); border-radius: 2px;
}

.mobile-nav {
  display: none;
  flex-direction: column; gap: 4px;
  padding: 8px 24px 20px;
  border-top: 1px solid var(--border);
  background: rgba(10,10,12,.96);
}
.mobile-nav a {
  padding: 14px 8px;
  color: var(--text);
  font-size: 16px;
  border-bottom: 1px solid var(--border);
}
.mobile-nav a:last-child { border-bottom: 0; margin-top: 12px; }

/* =========================
   Buttons
   ========================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 14px; font-weight: 600;
  letter-spacing: .02em;
  cursor: pointer;
  border: 1px solid transparent;
  text-decoration: none;
  white-space: nowrap;
  transition: transform .2s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.btn-lg { padding: 16px 26px; font-size: 15px; }
.btn-block { display: flex; width: 100%; }

.btn-gold {
  background: linear-gradient(180deg, #e7c45e 0%, #c79c2c 100%);
  color: #1a1305;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.35), 0 8px 24px rgba(212,175,55,.18);
}
.btn-gold:hover {
  color: #1a1305;
  transform: translateY(-1px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.4), 0 14px 30px rgba(212,175,55,.28);
}

.btn-outline {
  color: var(--gold-1);
  border-color: var(--gold-line);
  background: transparent;
}
.btn-outline:hover {
  color: #1a1305;
  background: var(--gold-1);
  border-color: var(--gold-1);
}

.btn-ghost {
  color: var(--text);
  background: transparent;
  border-color: var(--border-strong);
}
.btn-ghost:hover {
  color: var(--gold-1);
  border-color: var(--gold-line);
}

/* =========================
   Hero
   ========================= */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(80px, 14vh, 160px) 0 clamp(70px, 12vh, 140px);
  isolation: isolate;
}
.hero-bg {
  position: absolute; inset: 0;
  z-index: -1;
}
.hero-svg { width: 100%; height: 100%; min-height: 600px; object-fit: cover; }
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(120% 80% at 50% 0%, transparent 40%, rgba(10,10,12,.85) 100%);
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold-1);
  margin: 0 0 20px;
}
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold-2);
  box-shadow: 0 0 0 4px rgba(212,175,55,.15);
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(40px, 7.4vw, 88px);
  line-height: 1.02;
  letter-spacing: -0.01em;
  margin: 0 0 22px;
  color: var(--text);
  max-width: 16ch;
}
.accent-italic {
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(135deg, var(--gold-1), var(--gold-3));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-sub {
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 56ch;
  margin: 0 0 32px;
}

.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 36px; }

.hero-badges {
  display: flex; flex-wrap: wrap; gap: 22px;
  list-style: none; padding: 0; margin: 0;
  color: var(--text-muted);
  font-size: 14px;
}
.hero-badges li { display: inline-flex; align-items: center; gap: 8px; }
.check {
  display: inline-flex; align-items: center; justify-content: center;
  width: 20px; height: 20px; border-radius: 50%;
  background: rgba(212,175,55,.12);
  border: 1px solid var(--gold-line);
  color: var(--gold-1);
  font-size: 11px;
  font-weight: 700;
}

/* =========================
   Service pages
   ========================= */
.page-hero {
  position: relative;
  padding: 160px 0 82px;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 20%, rgba(212,175,55,.10), transparent 32%),
    linear-gradient(180deg, #101012 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--border);
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at center, rgba(243,210,122,.18) 1px, transparent 1px);
  background-size: 58px 58px;
  opacity: .16;
  pointer-events: none;
}
.page-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, .95fr);
  gap: 54px;
  align-items: center;
}
.page-hero-copy h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(48px, 7vw, 84px);
  line-height: .95;
  letter-spacing: -0.035em;
  max-width: 820px;
  margin: 18px 0 22px;
}
.page-hero-copy > p:not(.eyebrow) {
  color: var(--text-muted);
  max-width: 640px;
  font-size: 18px;
}
.breadcrumb {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--gold-1);
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.page-hero-media {
  margin: 0;
  min-height: 440px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gold-line);
  box-shadow: var(--shadow-lg);
  background: var(--surface);
}
.page-hero-media img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
  display: block;
  filter: saturate(.95) contrast(1.05) brightness(.86);
}
.page-hero .hero-actions,
.mini-cta .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}
.service-detail-page { padding-top: 88px; }
.service-page-note { margin-top: 28px; }
.service-choice-grid .card { min-height: 100%; }
.service-choice-note { margin-top: 32px; }
.mini-cta {
  padding: 42px;
  border: 1px solid var(--gold-line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top right, rgba(212,175,55,.12), transparent 34%),
    rgba(255,255,255,.025);
  box-shadow: var(--shadow-md);
}
.mini-cta h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(34px, 4.6vw, 58px);
  line-height: 1;
  margin: 8px 0 16px;
  max-width: 820px;
}
.mini-cta p:not(.eyebrow) {
  color: var(--text-muted);
  max-width: 720px;
}

/* =========================
   Trust strip
   ========================= */
.trust {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-2);
  padding: 28px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.trust-item {
  display: flex; align-items: flex-start; gap: 14px;
}
.trust-item svg {
  width: 22px; height: 22px;
  color: var(--gold-2);
  margin-top: 2px;
  flex: none;
}
.trust-item strong { display: block; color: var(--text); font-size: 14px; }
.trust-item span { display: block; color: var(--text-muted); font-size: 13.5px; line-height: 1.5; }

/* =========================
   Sections
   ========================= */
.section {
  padding: clamp(72px, 10vw, 130px) 0;
  position: relative;
}
.section + .section { border-top: 1px solid var(--border); }

.section-head {
  max-width: 720px;
  margin: 0 auto clamp(40px, 6vw, 64px);
  text-align: center;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.005em;
  margin: 0 0 16px;
  color: var(--text);
}
.section-lede {
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.65;
  margin: 0;
}

/* =========================
   Services / cards
   ========================= */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.cards-two {
  grid-template-columns: repeat(2, 1fr);
}
.service-category {
  margin-top: 54px;
}
.service-category:first-of-type {
  margin-top: 0;
}
.category-copy {
  max-width: 760px;
  margin-bottom: 24px;
}
.category-copy h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.05;
  margin: 0 0 12px;
  color: var(--text);
  letter-spacing: -0.01em;
}
.category-copy p:not(.eyebrow) {
  color: var(--text-muted);
  margin: 0;
  max-width: 68ch;
}
.ceramic-panel {
  padding: 32px;
  border: 1px solid var(--gold-line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top right, rgba(212,175,55,.10), transparent 38%),
    linear-gradient(180deg, rgba(255,255,255,.025), rgba(255,255,255,0));
}
.card {
  position: relative;
  background: linear-gradient(180deg, var(--surface) 0%, var(--surface-2) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex; flex-direction: column;
  transition: transform .35s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.card:hover {
  transform: translateY(-3px);
  border-color: var(--gold-line);
  box-shadow: var(--shadow-md);
}
.card-featured {
  border-color: var(--gold-line);
  background:
    linear-gradient(180deg, rgba(212,175,55,.06), rgba(212,175,55,0) 60%),
    linear-gradient(180deg, var(--surface) 0%, var(--surface-2) 100%);
  box-shadow: 0 0 0 1px rgba(212,175,55,.18), 0 24px 60px rgba(0,0,0,.45);
}
.ribbon {
  position: absolute; top: -12px; left: 28px;
  background: linear-gradient(180deg, #e7c45e, #c79c2c);
  color: #1a1305;
  font-size: 11px; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 999px;
  box-shadow: 0 6px 16px rgba(212,175,55,.25);
}
.card-head h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 26px;
  margin: 0 0 6px;
  color: var(--text);
  letter-spacing: -0.005em;
}
.card-sub {
  color: var(--text-muted);
  font-size: 14px;
  margin: 0 0 22px;
}
.price {
  display: flex; align-items: baseline; gap: 10px;
  margin: 0 0 22px;
  padding: 0 0 22px;
  border-bottom: 1px dashed var(--border);
}
.price .from {
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--text-muted);
}
.price .amount {
  font-family: var(--font-display);
  font-size: 42px; font-weight: 500;
  color: var(--gold-1);
  letter-spacing: -0.01em;
  line-height: 1;
}
.price.quote {
  align-items: flex-start;
  flex-direction: column;
  gap: 6px;
}
.price.quote .amount {
  font-size: 30px;
}
.price-table {
  display: grid;
  gap: 8px;
  padding: 0 0 22px;
  margin: 0 0 22px;
  border-bottom: 1px dashed var(--border);
}
.price-table div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: baseline;
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 10px;
  background: rgba(255,255,255,.025);
}
.price-table span {
  color: var(--text-muted);
  font-size: 13px;
}
.price-table strong {
  font-family: var(--font-display);
  color: var(--gold-1);
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}
.features {
  list-style: none; padding: 0; margin: 0 0 24px;
  display: flex; flex-direction: column; gap: 10px;
  color: var(--text);
  font-size: 14.5px;
  flex: 1;
}
.features li {
  position: relative; padding-left: 22px;
  line-height: 1.5;
}
.features li::before {
  content: "";
  position: absolute; left: 0; top: 9px;
  width: 10px; height: 10px;
  border: 1px solid var(--gold-2);
  transform: rotate(45deg);
}
.features li::after {
  content: "";
  position: absolute; left: 3px; top: 12px;
  width: 4px; height: 4px;
  background: var(--gold-2);
  transform: rotate(45deg);
}

.addons {
  margin-top: 56px;
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
}
.addons-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  margin: 0 0 18px;
  color: var(--text);
}
.addons-grid {
  list-style: none; padding: 0; margin: 0 0 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.addons-grid li {
  display: flex; justify-content: space-between; align-items: baseline; gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14.5px;
}
.addons-grid li:nth-last-child(-n+3) { border-bottom: 0; }
.addons-note {
  font-size: 13px;
  color: var(--text-muted);
  margin: 8px 0 0;
}

/* =========================
   Gallery
   ========================= */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 16px;
}
.gtile {
  position: relative; margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
}
.gtile-tall { grid-row: span 2; }
.gtile-wide { grid-column: span 2; }
.gimg { position: absolute; inset: 0; }
.gimg svg { width: 100%; height: 100%; }
.gtile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(.95) contrast(1.04) brightness(.86);
  transition: transform .5s var(--ease), filter .5s var(--ease);
}
.gtile:hover img {
  transform: scale(1.035);
  filter: saturate(1.03) contrast(1.06) brightness(.94);
}
.gtile figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 14px 16px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.75));
  color: var(--text);
  font-size: 13px;
  letter-spacing: .02em;
}
.gtile::after {
  content: "";
  position: absolute; inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(212,175,55,.0) 60%, rgba(212,175,55,.08) 100%);
}
.gallery-note { margin: 28px 0 0; font-size: 13px; text-align: center; }

/* =========================
   Reviews
   ========================= */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.review {
  margin: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
}
.review .stars {
  color: var(--gold-1);
  letter-spacing: 4px;
  font-size: 16px;
  margin-bottom: 12px;
}
.review p {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 19px;
  line-height: 1.5;
  color: var(--text);
  margin: 0 0 16px;
}
.review footer { display: flex; flex-direction: column; gap: 2px; }
.review footer strong { color: var(--text); font-size: 14px; font-weight: 600; }
.review footer span { color: var(--text-muted); font-size: 13px; }

/* =========================
   Service area
   ========================= */
.area-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: center;
}
.area .section-title { text-align: left; }
.area .section-lede { text-align: left; }
.area-list {
  list-style: none; padding: 0; margin: 28px 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px 22px;
  color: var(--text);
  font-size: 14.5px;
}
.area-list li {
  padding-left: 16px;
  position: relative;
}
.area-list li::before {
  content: "";
  position: absolute; left: 0; top: 9px;
  width: 6px; height: 6px;
  background: var(--gold-2);
  border-radius: 50%;
}
.area-map {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
}

/* =========================
   Contact
   ========================= */
.contact-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  align-items: stretch;
}
.contact .section-title { text-align: left; }
.contact .section-lede { text-align: left; max-width: 56ch; }
.contact-cta {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin: 28px 0 32px;
}
.contact-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 0;
}
.contact-meta dt {
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold-1);
  margin-bottom: 4px;
}
.contact-meta dd { margin: 0; font-size: 15px; color: var(--text); }

.contact-card {
  background:
    radial-gradient(120% 80% at 100% 0%, rgba(212,175,55,.10), transparent 60%),
    linear-gradient(180deg, var(--surface) 0%, var(--surface-2) 100%);
  border: 1px solid var(--gold-line);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex; flex-direction: column; gap: 14px;
}
.contact-mark { width: 52px; height: 52px; }
.contact-card h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 26px;
  margin: 0;
  color: var(--text);
}
.contact-list {
  list-style: none; padding: 0; margin: 12px 0 0;
  display: flex; flex-direction: column; gap: 12px;
}
.contact-list li {
  display: flex; justify-content: space-between; align-items: baseline; gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14.5px;
}
.contact-list li:last-child { border-bottom: 0; }
.contact-list li > span:first-child {
  color: var(--text-muted);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.contact-list li a { color: var(--gold-1); font-weight: 600; }

/* =========================
   Footer
   ========================= */
.site-footer {
  border-top: 1px solid var(--border);
  background: #060608;
  padding: 56px 0 28px;
  margin-top: 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
}
.footer-inner h4 {
  font-size: 12px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold-1);
  margin: 0 0 14px;
  font-weight: 600;
}
.footer-inner nav { display: flex; flex-direction: column; gap: 8px; }
.footer-inner nav a { color: var(--text); font-size: 14px; }
.footer-inner nav a:hover { color: var(--gold-1); }
.footer-tag { margin: 16px 0 0; max-width: 40ch; font-size: 14px; }
.footer-phone {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--gold-1);
  margin-bottom: 4px;
}
.brand-footer .brand-mark { width: 32px; height: 32px; }
.footer-base {
  display: flex; justify-content: space-between; gap: 20px;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font-size: 13px;
}

/* =========================
   Sticky mobile call bar
   ========================= */
.sticky-call {
  display: none;
  position: fixed; left: 16px; right: 16px; bottom: 16px;
  z-index: 60;
  padding: 14px 20px;
  background: linear-gradient(180deg, #e7c45e, #c79c2c);
  color: #1a1305;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .02em;
  border-radius: 999px;
  align-items: center; justify-content: center; gap: 10px;
  box-shadow: 0 10px 32px rgba(0,0,0,.55), 0 0 0 1px rgba(255,255,255,.15) inset;
}

/* =========================
   Responsive
   ========================= */
@media (max-width: 1024px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 22px 32px; }
  .cards { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .cards-two { grid-template-columns: 1fr; }
  .category-copy { margin-left: auto; margin-right: auto; }
  .page-hero-inner { grid-template-columns: 1fr; gap: 34px; }
  .page-hero-media { min-height: 340px; }
  .page-hero-media img { min-height: 340px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; }
  .gtile-wide { grid-column: span 2; }
  .gtile-tall { grid-row: span 1; }
  .reviews-grid { grid-template-columns: 1fr; }
  .area-grid { grid-template-columns: 1fr; gap: 36px; }
  .area-map { max-width: 480px; }
  .contact-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .addons-grid { grid-template-columns: repeat(2, 1fr); }
  .addons-grid li:nth-last-child(-n+3) { border-bottom: 1px solid var(--border); }
  .addons-grid li:nth-last-child(-n+2) { border-bottom: 0; }
}

@media (max-width: 720px) {
  .nav, .header-cta { display: none; }
  .menu-toggle { display: flex; }
  .mobile-nav[data-open="true"] { display: flex; }

  .header-inner { padding-top: 14px; padding-bottom: 14px; }
  .brand-name { font-size: 18px; }
  .brand-mark { width: 32px; height: 32px; }
  .brand-logo { width: 118px; }
  .footer-logo { width: 170px; }

  .hero { padding: 60px 0 80px; }
  .hero-title { font-size: clamp(36px, 9vw, 56px); }
  .hero-sub { font-size: 16px; }
  .hero-badges { gap: 14px 18px; font-size: 13px; }
  .page-hero { padding: 126px 0 58px; }
  .page-hero-copy h1 { font-size: clamp(42px, 12vw, 64px); }
  .page-hero-copy > p:not(.eyebrow) { font-size: 16px; }
  .page-hero .hero-actions,
  .mini-cta .hero-actions { flex-direction: column; }
  .page-hero .hero-actions .btn,
  .mini-cta .hero-actions .btn { width: 100%; }
  .mini-cta { padding: 28px 22px; }

  .trust-grid { grid-template-columns: 1fr; gap: 18px; }

  .section { padding: 64px 0; }
  .section-head { text-align: left; margin-bottom: 32px; }
  .section-title { font-size: clamp(26px, 6vw, 34px); }
  .service-category { margin-top: 42px; }
  .ceramic-panel { padding: 22px; }
  .price-table div { align-items: flex-start; flex-direction: column; gap: 6px; }

  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; gap: 10px; }
  .gtile-wide { grid-column: span 2; }
  .area-list { grid-template-columns: repeat(2, 1fr); }
  .addons { padding: 24px; }
  .addons-grid { grid-template-columns: 1fr; }
  .addons-grid li { border-bottom: 1px solid var(--border) !important; }
  .addons-grid li:last-child { border-bottom: 0 !important; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-base { flex-direction: column; gap: 8px; }
  .contact-card { padding: 24px; }

  .sticky-call { display: inline-flex; }
  body { padding-bottom: 76px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}

/* Focus */
:focus-visible {
  outline: 2px solid var(--gold-1);
  outline-offset: 3px;
  border-radius: 4px;
}
