/* ============================================================
   Rey's Auto Spa — navy-dominant editorial design system
   Fonts: Fraunces (display), Inter (body) · Relume tokens
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;0,9..144,900;1,9..144,400;1,9..144,500;1,9..144,600;1,9..144,700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  /* Navy palette (Madison) — the brand's main color */
  --navy-lightest: #e6ebef;
  --navy-lighter: #ced7e0;
  --navy-light: #537593;
  --navy: #0a3a66;
  --navy-dark: #082e51;
  --navy-darker: #041728;
  --navy-darkest: #03111e;

  /* Neutrals */
  --white: #ffffff;
  --ink: #03111e;

  /* Semantic */
  --bg: var(--navy-darkest);
  --bg-2: #061f38;          /* slightly lifted navy panel */
  --bg-3: #0a2c4d;          /* card / elevated */
  --text: #ffffff;
  --muted: #9fb4c7;         /* navy-tinted muted text */
  --faint: #6f8aa3;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.22);

  --r-button: 6px;
  --r-card: 12px;
  --r-image: 12px;
  --r-pill: 999px;

  --maxw: 80rem;
  --pad: 5vw;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;

  /* Desktop type scale */
  --t-h1: 5.25rem;
  --t-h2: 3.75rem;
  --t-h3: 3rem;
  --t-h4: 2.5rem;
  --t-h5: 2rem;
  --t-h6: 1.625rem;
  --t-large: 1.5rem;
  --t-medium: 1.25rem;
  --t-regular: 1.125rem;
  --t-small: 1rem;
  --t-tiny: 0.8125rem;
}

@media (max-width: 991px) {
  :root {
    --t-h1: 3rem;
    --t-h2: 2.5rem;
    --t-h3: 2.1rem;
    --t-h4: 1.7rem;
    --t-h5: 1.4rem;
    --t-h6: 1.2rem;
    --t-large: 1.2rem;
    --t-medium: 1.05rem;
  }
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin: 0;
  text-wrap: balance;
}
em, .it { font-style: italic; font-weight: 500; }

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

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }
.section { padding-block: clamp(4rem, 9vw, 8rem); }
.eyebrow {
  font-family: var(--font-body);
  font-size: var(--t-small);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--navy-light);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}
.eyebrow::before {
  content: "";
  width: 2.2rem; height: 1px;
  background: var(--navy-light);
  display: inline-block;
}
.eyebrow.center::before { display: none; }

.h1 { font-size: var(--t-h1); }
.h2 { font-size: var(--t-h2); }
.h3 { font-size: var(--t-h3); }
.h4 { font-size: var(--t-h4); }
.lead { font-size: var(--t-large); color: var(--muted); line-height: 1.5; font-weight: 300; }
.muted { color: var(--muted); }
.faint { color: var(--faint); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  font-family: var(--font-body); font-size: var(--t-small); font-weight: 500;
  letter-spacing: 0.01em;
  padding: 0.95rem 1.7rem; border-radius: var(--r-button);
  border: 1px solid transparent; cursor: pointer;
  transition: transform .18s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.btn svg { width: 1.05em; height: 1.05em; }
.btn-primary { background: #fff; color: var(--navy-darkest); }
.btn-primary:hover { transform: translateY(-2px); background: var(--navy-lightest); }
.btn-ghost { background: transparent; color: #fff; border-color: var(--line-strong); }
.btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,0.06); transform: translateY(-2px); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-dark); transform: translateY(-2px); }
.btn-lg { padding: 1.1rem 2.1rem; font-size: var(--t-regular); }

/* ---------- Backgrounds / panels ---------- */
.bg-darkest { background: var(--navy-darkest); }
.bg-darker  { background: var(--navy-darker); }
.bg-panel   { background: var(--bg-2); }
.bg-grad    { background: linear-gradient(160deg, #082e51 0%, #041728 55%, #03111e 100%); }
.bg-grad-soft { background: linear-gradient(180deg, #041728 0%, #03111e 100%); }
.hairline { height: 1px; width: 100%; background: var(--line); border: 0; }

/* ---------- Cards ---------- */
.card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
}

/* ---------- Image frames + hover zoom ---------- */
.frame { position: relative; overflow: hidden; border-radius: var(--r-image); background: var(--bg-3); }
.frame img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s cubic-bezier(.16,.84,.44,1); }
.zoom { cursor: zoom-in; }
.zoom img { transition: transform .9s cubic-bezier(.16,.84,.44,1); }
.zoom:hover img { transform: scale(1.07); }
.frame .tag {
  position: absolute; left: 1rem; bottom: 1rem; z-index: 2;
  font-size: var(--t-tiny); letter-spacing: 0.14em; text-transform: uppercase;
  background: rgba(3,17,30,0.72); backdrop-filter: blur(6px);
  border: 1px solid var(--line); padding: 0.45rem 0.8rem; border-radius: var(--r-pill);
}
.frame .num {
  position: absolute; right: 1rem; top: 0.9rem; z-index: 2;
  font-family: var(--font-display); font-size: var(--t-medium); color: rgba(255,255,255,0.85);
}

/* image placeholder (when no photo) */
.ph {
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.04) 0 12px, transparent 12px 24px),
    var(--bg-3);
  display: grid; place-items: center; color: var(--faint);
  font-family: var(--font-body); font-size: var(--t-tiny); letter-spacing: 0.1em; text-transform: uppercase;
}

/* ---------- Navbar ---------- */
.nav {
  position: sticky; top: 0; z-index: 999;
  background: color-mix(in srgb, var(--navy-darkest) 86%, transparent);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; min-height: 4.75rem; gap: 1.5rem; }
.nav-logo img { height: 38px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 0.35rem; }
.nav-links a {
  padding: 0.55rem 0.9rem; font-size: var(--t-small); color: var(--navy-lighter);
  border-radius: var(--r-button); transition: color .2s ease, background .2s ease;
}
.nav-links a:hover, .nav-links a.active { color: #fff; background: rgba(255,255,255,0.06); }
.nav-cta { display: flex; align-items: center; gap: 0.6rem; }

/* dropdown */
.nav-drop { position: relative; }
.nav-drop > button {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: none; border: 0; color: var(--navy-lighter); cursor: pointer;
  font-family: var(--font-body); font-size: var(--t-small); padding: 0.55rem 0.9rem; border-radius: var(--r-button);
}
.nav-drop > button:hover { color: #fff; background: rgba(255,255,255,0.06); }
.nav-drop > button svg { transition: transform .25s ease; }
.nav-drop[data-open="true"] > button svg { transform: rotate(180deg); }
.nav-menu {
  position: absolute; top: calc(100% + 0.5rem); left: 0; min-width: 230px;
  background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--r-card);
  padding: 0.5rem; box-shadow: 0 24px 60px rgba(0,0,0,0.5);
  opacity: 0; visibility: hidden; transform: translateY(8px); transition: all .22s ease;
}
.nav-drop[data-open="true"] .nav-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-menu a { display: block; padding: 0.65rem 0.8rem; font-size: var(--t-small); color: var(--navy-lighter); border-radius: var(--r-button); }
.nav-menu a:hover { background: rgba(255,255,255,0.06); color: #fff; }

.burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 0.5rem; }
.burger span { width: 24px; height: 2px; background: #fff; transition: .25s; }
.nav.open .burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.open .burger span:nth-child(2) { opacity: 0; }
.nav.open .burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu { display: none; }

@media (max-width: 991px) {
  .nav-links, .nav-cta { display: none; }
  .burger { display: flex; }
  .mobile-menu {
    display: block; max-height: 0; overflow: hidden; transition: max-height .35s ease;
    border-top: 0;
  }
  .nav.open .mobile-menu { max-height: 80vh; border-top: 1px solid var(--line); }
  .mobile-menu .inner { padding: 1rem var(--pad) 1.6rem; display: flex; flex-direction: column; gap: 0.25rem; }
  .mobile-menu a { padding: 0.8rem 0; font-size: 1.1rem; border-bottom: 1px solid var(--line); }
  .mobile-menu .mlabel { color: var(--faint); font-size: var(--t-tiny); letter-spacing: 0.16em; text-transform: uppercase; padding-top: 1rem; }
  .mobile-menu .btn { margin-top: 1rem; }
}

/* ---------- Footer ---------- */
.footer { background: var(--navy-darker); border-top: 1px solid var(--line); padding-block: clamp(3.5rem, 6vw, 5rem); }
.footer-top { display: grid; grid-template-columns: 1.1fr 1.4fr; gap: 4vw; padding-bottom: 3.5rem; }
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.footer h4 { font-family: var(--font-body); font-size: var(--t-small); font-weight: 600; letter-spacing: 0.06em; margin-bottom: 1.1rem; }
.footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.7rem; }
.footer ul a { font-size: var(--t-small); color: var(--muted); }
.footer ul a:hover { color: #fff; }
.footer-logo img { height: 44px; margin-bottom: 1.3rem; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 2rem; font-size: var(--t-small); color: var(--faint); gap: 1rem; flex-wrap: wrap; }
@media (max-width: 768px) {
  .footer-top { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
}

/* ---------- Page hero ---------- */
.phero { position: relative; padding-top: clamp(3.5rem, 7vw, 6rem); padding-bottom: clamp(3.5rem, 7vw, 6rem); }
.phero .eyebrow { margin-bottom: 1.5rem; }

/* ---------- Marquee ---------- */
.marquee { overflow: hidden; border-block: 1px solid var(--line); padding-block: 1.1rem; }
.marquee-track { display: flex; gap: 2.5rem; white-space: nowrap; width: max-content; animation: marq 38s linear infinite; }
.marquee-track span { font-family: var(--font-display); font-style: italic; font-size: var(--t-h6); color: var(--navy-light); display: inline-flex; align-items: center; gap: 2.5rem; }
.marquee-track span::after { content: "◆"; font-size: 0.6em; color: var(--navy-light); font-style: normal; }
@keyframes marq { to { transform: translateX(-50%); } }

/* ---------- Accordion (FAQ) ---------- */
.acc-item { border-bottom: 1px solid var(--line); }
.acc-q {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer; color: #fff;
  font-family: var(--font-display); font-size: var(--t-h6); font-weight: 500;
  padding: 1.6rem 0; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
}
.acc-q .pm { flex: none; width: 1.5rem; height: 1.5rem; position: relative; }
.acc-q .pm::before, .acc-q .pm::after { content: ""; position: absolute; background: var(--navy-light); transition: transform .3s ease; }
.acc-q .pm::before { top: 50%; left: 0; width: 100%; height: 2px; transform: translateY(-50%); }
.acc-q .pm::after { left: 50%; top: 0; height: 100%; width: 2px; transform: translateX(-50%); }
.acc-item[data-open="true"] .pm::after { transform: translateX(-50%) scaleY(0); }
.acc-a { overflow: hidden; max-height: 0; transition: max-height .35s ease; }
.acc-a .inner { padding-bottom: 1.7rem; color: var(--muted); max-width: 60ch; font-weight: 300; font-size: var(--t-regular); }

/* ---------- Tabs ---------- */
.tabs-bar { display: inline-flex; gap: 0.3rem; padding: 0.35rem; border: 1px solid var(--line); border-radius: var(--r-pill); background: var(--bg-2); }
.tabs-bar button {
  border: 0; background: none; cursor: pointer; color: var(--muted);
  font-family: var(--font-body); font-size: var(--t-small); font-weight: 500;
  padding: 0.6rem 1.3rem; border-radius: var(--r-pill); transition: all .2s ease;
}
.tabs-bar button[aria-selected="true"] { background: #fff; color: var(--navy-darkest); }
.tab-panel { display: none; }
.tab-panel.active { display: block; animation: fade .5s ease; }
@keyframes fade { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s cubic-bezier(.16,.84,.44,1), transform .8s cubic-bezier(.16,.84,.44,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ---------- Lightbox ---------- */
.lightbox { position: fixed; inset: 0; z-index: 1000; background: rgba(2,9,15,0.92); display: none; place-items: center; padding: 5vw; cursor: zoom-out; }
.lightbox.open { display: grid; animation: fade .25s ease; }
.lightbox img { max-width: 92vw; max-height: 88vh; border-radius: 8px; box-shadow: 0 30px 80px rgba(0,0,0,0.6); }

/* ---------- Stat ---------- */
.stat-num { font-family: var(--font-display); font-size: var(--t-h2); font-weight: 600; line-height: 1; }
.stat-label { color: var(--muted); font-size: var(--t-small); margin-top: 0.4rem; }

/* ---------- Editorial feature rows ---------- */
.feat-row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.feat-row.rev .feat-media { order: 2; }
.feat-media { position: relative; }
.feat-num { font-family: var(--font-display); font-size: clamp(3rem, 7vw, 5.5rem); line-height: 1; color: rgba(255,255,255,0.1); }

/* fab call */
.fab { position: fixed; right: 18px; bottom: 18px; z-index: 997; display: none; }
@media (max-width: 991px) { .fab { display: inline-flex; } }

/* ============================================================
   HOMEPAGE
   ============================================================ */
/* Hero */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.05); animation: heroZoom 18s ease-out forwards; }
@keyframes heroZoom { to { transform: scale(1); } }
.hero-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(3,17,30,0.78) 0%, rgba(3,17,30,0.62) 45%, rgba(3,17,30,0.92) 100%); }
.hero-inner { position: relative; z-index: 2; width: 100%; }
.hero h1 { font-size: clamp(2.8rem, 8.5vw, 7.5rem); line-height: 0.98; }
.hero .sub { letter-spacing: 0.28em; text-transform: uppercase; font-size: var(--t-small); color: var(--navy-lighter); }
.scroll-cue { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 0.6rem; color: var(--navy-lighter); font-size: var(--t-tiny); letter-spacing: 0.22em; text-transform: uppercase; }
.scroll-cue .line { width: 1px; height: 38px; background: linear-gradient(var(--navy-lighter), transparent); animation: scrollPulse 2s ease-in-out infinite; transform-origin: top; }
@keyframes scrollPulse { 0%,100% { transform: scaleY(0.4); opacity: 0.4; } 50% { transform: scaleY(1); opacity: 1; } }

/* section header */
.sec-head { max-width: 46rem; }
.sec-head.center { margin-inline: auto; text-align: center; }

/* Service card (homepage) */
.svc-card { position: relative; border-radius: var(--r-card); overflow: hidden; border: 1px solid var(--line); aspect-ratio: 3/4; display: flex; align-items: flex-end; }
.svc-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .9s cubic-bezier(.16,.84,.44,1); }
.svc-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(3,17,30,0) 30%, rgba(3,17,30,0.55) 60%, rgba(3,17,30,0.95) 100%); transition: background .4s ease; }
.svc-card:hover img { transform: scale(1.08); }
.svc-card:hover::after { background: linear-gradient(180deg, rgba(3,17,30,0.1) 20%, rgba(8,46,81,0.5) 55%, rgba(3,17,30,0.96) 100%); }
.svc-card .body { position: relative; z-index: 2; padding: 1.6rem; }
.svc-card .body .num { position: absolute; top: -3.2rem; right: 1.6rem; font-family: var(--font-display); font-size: var(--t-h4); color: rgba(255,255,255,0.7); }
.svc-card .arrow { color: var(--navy-lighter); font-size: var(--t-small); margin-top: 0.6rem; display: inline-flex; align-items: center; gap: 0.4rem; transition: gap .25s ease; }
.svc-card:hover .arrow { gap: 0.8rem; }

/* Gallery masonry */
.gal-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 1fr; gap: 1rem; }
.gal-item { position: relative; overflow: hidden; border-radius: var(--r-card); border: 1px solid var(--line); aspect-ratio: 1/1; }
.gal-item.tall { grid-row: span 2; aspect-ratio: 1/2.06; }
.gal-item.wide { grid-column: span 2; aspect-ratio: 2.06/1; }
.gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s cubic-bezier(.16,.84,.44,1); }
.gal-item:hover img { transform: scale(1.08); }
.gal-item .cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 1.2rem 1.1rem 1rem; font-size: var(--t-small); background: linear-gradient(transparent, rgba(3,17,30,0.9)); opacity: 0; transform: translateY(8px); transition: all .35s ease; }
.gal-item:hover .cap { opacity: 1; transform: none; }
@media (max-width: 860px) { .gal-grid { grid-template-columns: 1fr 1fr; } .gal-item.wide { grid-column: span 2; } }
@media (max-width: 560px) { .gal-grid { grid-template-columns: 1fr 1fr; } .gal-item.wide, .gal-item.tall { grid-column: auto; grid-row: auto; aspect-ratio: 1/1; } }

/* Coating option card */
.coat-card { position: relative; border-radius: var(--r-card); overflow: hidden; border: 1px solid var(--line); }

/* ---------- Spinning diamond packages ---------- */
.diamond-wrap { perspective: 900px; display: grid; place-items: center; }
.diamond {
  width: clamp(90px, 14vw, 130px); height: auto;
  transform-style: preserve-3d;
  animation: diamondSpin 6s linear infinite;
  filter: drop-shadow(0 14px 28px rgba(0,0,0,0.45));
  will-change: transform;
}
@keyframes diamondSpin { from { transform: rotateY(0deg); } to { transform: rotateY(360deg); } }
@media (prefers-reduced-motion: reduce) { .diamond { animation: none; } }

.pkg-card {
  position: relative; background: var(--bg-2); border: 1px solid var(--line);
  border-radius: var(--r-card); overflow: hidden; display: flex; flex-direction: column;
  transition: border-color .3s ease, transform .3s ease;
}
.pkg-card:hover { border-color: var(--line-strong); transform: translateY(-4px); }
.pkg-card.feature { border-color: var(--line-strong); }
.pkg-card .pkg-top {
  position: relative; padding: 2rem 1.5rem 1.6rem;
  background:
    radial-gradient(120% 100% at 50% 0%, rgba(10,58,102,0.55) 0%, rgba(6,31,56,0) 70%),
    var(--bg-3);
  border-bottom: 1px solid var(--line);
}
.pkg-card .badge-pop {
  position: absolute; top: 1rem; right: 1rem; z-index: 3;
  background: #fff; color: var(--navy-darkest); font-size: var(--t-tiny); font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; padding: 0.4rem 0.8rem; border-radius: var(--r-pill);
}
.coat-card .media { aspect-ratio: 16/10; overflow: hidden; }
.coat-card .media img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s ease; }
.coat-card:hover .media img { transform: scale(1.05); }

/* Booking form */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { display: flex; flex-direction: column; gap: 0.45rem; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: var(--t-small); color: var(--muted); }
.field input, .field select, .field textarea {
  background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--r-button);
  color: #fff; padding: 0.85rem 1rem; font-family: var(--font-body); font-size: var(--t-small);
  transition: border-color .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--navy-light); }
.field input::placeholder, .field textarea::placeholder { color: var(--faint); }
.svc-checks { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.6rem; }
.svc-check { position: relative; }
.svc-check input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.svc-check span { display: block; text-align: center; padding: 0.7rem 0.6rem; border: 1px solid var(--line); border-radius: var(--r-button); font-size: var(--t-small); color: var(--muted); transition: all .2s ease; cursor: pointer; }
.svc-check input:checked + span { background: #fff; color: var(--navy-darkest); border-color: #fff; font-weight: 500; }
.svc-check input:focus-visible + span { border-color: var(--navy-light); }
@media (max-width: 768px) { .form-grid { grid-template-columns: 1fr; } .svc-checks { grid-template-columns: 1fr 1fr; } }

/* Contact info rows */
.contact-row { display: flex; gap: 1rem; align-items: flex-start; padding: 1.2rem 0; border-bottom: 1px solid var(--line); }
.contact-row .ic { flex: none; width: 2.6rem; height: 2.6rem; border-radius: 50%; border: 1px solid var(--line-strong); display: grid; place-items: center; color: var(--navy-light); }
.hours-table { width: 100%; border-collapse: collapse; font-size: var(--t-small); }
.hours-table td { padding: 0.7rem 0; border-bottom: 1px solid var(--line); }
.hours-table td:last-child { text-align: right; color: var(--muted); }

/* Insta strip */
.insta-grid { display: grid; grid-template-columns: repeat(6,1fr); gap: 0.6rem; }
.insta-grid a { position: relative; aspect-ratio: 1/1; overflow: hidden; border-radius: 8px; }
.insta-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease, filter .4s ease; filter: grayscale(0.2); }
.insta-grid a:hover img { transform: scale(1.1); filter: none; }
@media (max-width: 768px) { .insta-grid { grid-template-columns: repeat(3,1fr); } }

/* Responsive grid overrides (beat inline grid-template-columns) */
@media (max-width: 991px) {
  .pk-hero-grid, .addon-grid, .split-2, .about-hero-grid, .story-grid, .feat-row, .feat-row.rev, .home-split { grid-template-columns: 1fr !important; }
  .feat-row.rev { direction: ltr !important; }
}
@media (max-width: 1100px) {
  .pk-grid { grid-template-columns: 1fr 1fr !important; }
}
@media (max-width: 860px) {
  .pk-grid, .svc-grid, .team-grid { grid-template-columns: 1fr 1fr !important; }
}
@media (max-width: 600px) {
  .pk-grid, .pk-grid-2, .addon-list, .svc-grid, .team-grid, .stat-row, .home-svc-grid { grid-template-columns: 1fr !important; }
}
