/* ═══════════════════════════════════════════════
   Bong's Tyre Centre — shared stylesheet
   ═══════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ink:      #16181C;
  --ink-2:    #1E2127;
  --ink-3:    #2A2E36;

  --text:     #16181C;
  --text-2:   #5A5F68;
  --text-3:   #92979F;
  --white:    #FFFFFF;
  --off:      #F8F7F4;
  --off-2:    #F1EFEA;
  --line:     #E5E2DB;

  --yellow:   #FFC400;
  --yellow-d: #E0A800;
  --yellow-w: #FFF7DE;

  --wa:       #1FAF54;
  --wa-d:     #178C42;

  /* Nav is 78px of content + a 1px bottom border. The deals ticker sticks
     directly beneath it, so both read from this one number. */
  --nav-h: 79px;

  --wrap: 1200px;
  --gut: 24px;
  --r: 6px;
  --r-lg: 14px;
  --r-xl: 22px;

  --ease: cubic-bezier(.22,1,.36,1);
  --shadow: 0 24px 60px -24px rgba(22,24,28,.28);
  --shadow-lg: 0 40px 90px -30px rgba(22,24,28,.42);
}

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

body {
  font-family: 'Manrope', system-ui, sans-serif;
  background: var(--white);
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.08;
  text-wrap: balance;
}

.wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gut); }
.mono { font-family: 'JetBrains Mono', monospace; font-variant-numeric: tabular-nums; }

section { padding-block: clamp(58px, 7vw, 92px); }
.tight { padding-block: clamp(44px, 5vw, 64px); }

/* ── Yellow tag, from the shop's own size labels ── */
.tag {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; font-weight: 500; letter-spacing: .06em;
  background: var(--yellow); color: var(--ink);
  padding: 4px 9px; border-radius: 2px;
  white-space: nowrap; transform: rotate(-1.2deg);
}

/* ══ DEALS TICKER ══
   Sits directly under the nav, above the hero. The whole bar is one tap
   target through to WhatsApp. Two identical tracks scroll as one so the
   loop is seamless. */
.ticker {
  display: block;
  background: var(--yellow);
  color: var(--ink);
  text-decoration: none;
  overflow: hidden;
  /* Floats directly under the sticky nav so it stays on screen while the
     page scrolls. Sits below the nav's z-index so the mobile menu can
     still open over it. */
  position: sticky;
  top: var(--nav-h);
  z-index: 190;
  border-bottom: 1px solid rgba(22,24,28,.18);
  box-shadow: 0 6px 18px -8px rgba(22,24,28,.3);
  -webkit-tap-highlight-color: transparent;
}
.ticker:focus-visible { outline: 3px solid var(--ink); outline-offset: -3px; }
.ticker-track {
  display: flex;
  width: max-content;
  /* Fast enough to read as clearly moving, slow enough to read the words. */
  animation: ticker-run 18s linear infinite;
  will-change: transform;
}
.ticker:hover .ticker-track { animation-play-state: paused; }
.ticker-set { display: flex; align-items: center; flex-shrink: 0; }
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 20px;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: -.01em;
  white-space: nowrap;
}
.ticker-item::after {
  content: '';
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(22,24,28,.32);
  margin-left: 20px;
}
@media (max-width: 620px) {
  .ticker-item { padding: 8px 14px; font-size: 12px; gap: 7px; }
  .ticker-item::after { margin-left: 14px; }
}
.ticker-item.lead { font-weight: 800; }
.ticker-item svg { flex-shrink: 0; }
@keyframes ticker-run {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
/* With reduced motion the bar can't scroll itself, and making it a swipeable
   strip just produced a horizontal scrollbar. Show the headline only, centred,
   so it fits any screen with nothing to drag. */
@media (prefers-reduced-motion: reduce) {
  .ticker { overflow: hidden; }
  .ticker-track { animation: none; width: 100%; justify-content: center; }
  .ticker-set[aria-hidden='true'] { display: none; }
  .ticker-item:not(.lead) { display: none; }
  .ticker-item.lead::after { display: none; }
  .ticker-item.lead { padding-inline: 18px; }
}

.eyebrow {
  display: flex; align-items: center; gap: 11px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; font-weight: 500; letter-spacing: .17em;
  text-transform: uppercase; color: var(--text-3); margin-bottom: 16px;
}
.eyebrow::before { content: ''; width: 26px; height: 3px; background: var(--yellow); border-radius: 2px; flex-shrink: 0; }
.eyebrow.on-dark { color: rgba(255,255,255,.5); }
.eyebrow.ctr { justify-content: center; }
.eyebrow.ctr::after { content: ''; width: 26px; height: 3px; background: var(--yellow); border-radius: 2px; flex-shrink: 0; }

.h-sec { font-size: clamp(29px, 4vw, 45px); margin-bottom: 16px; }
.h-sec em { font-style: normal; color: var(--yellow-d); }
.lead { font-size: 17px; color: var(--text-2); max-width: 58ch; line-height: 1.72; }
.sec-head { margin-bottom: clamp(34px, 4.5vw, 52px); max-width: 720px; }
.sec-head.ctr { margin-inline: auto; text-align: center; }
.sec-head.ctr .lead { margin-inline: auto; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: 'Sora', sans-serif; font-weight: 600; font-size: 14.5px;
  padding: 14px 26px; border: 1.5px solid transparent; border-radius: var(--r);
  cursor: pointer; text-decoration: none;
  transition: background-color .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease), transform .2s var(--ease);
}
.btn:active { transform: translateY(1px); }
.btn:focus-visible { outline: 3px solid var(--yellow); outline-offset: 3px; }
.btn svg { flex-shrink: 0; }
.btn-y   { background: var(--yellow); color: var(--ink); border-color: var(--yellow); box-shadow: 0 10px 26px -10px rgba(255,196,0,.7); }
.btn-y:hover { background: var(--yellow-d); border-color: var(--yellow-d); }
.btn-ink { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn-ink:hover { background: var(--ink-3); border-color: var(--ink-3); }
.btn-wa  { background: var(--wa); color: #fff; border-color: var(--wa); box-shadow: 0 10px 26px -10px rgba(31,175,84,.6); }
.btn-wa:hover { background: var(--wa-d); border-color: var(--wa-d); }
.btn-line { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-line:hover { border-color: var(--ink); }
.btn-line-w { background: transparent; color: #fff; border-color: rgba(255,255,255,.3); }
.btn-line-w:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.btn-white { background: #fff; color: var(--ink); border-color: #fff; }
.btn-white:hover { background: var(--off-2); border-color: var(--off-2); }

/* ── Top bar ── */
.topbar { background: var(--ink); color: rgba(255,255,255,.6); font-size: 12.5px; }
.topbar-in { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; min-height: 42px; padding-block: 7px; }
.tb-l, .tb-r { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.tb-i { display: inline-flex; align-items: center; gap: 7px; color: inherit; text-decoration: none; transition: color .2s var(--ease); }
a.tb-i:hover { color: #fff; }
.tb-i svg { opacity: .5; flex-shrink: 0; }
.tb-sep { width: 1px; height: 13px; background: rgba(255,255,255,.15); }
.tb-open { display: inline-flex; align-items: center; gap: 7px; color: var(--yellow); font-weight: 600; }
.tb-open .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--yellow); box-shadow: 0 0 0 3px rgba(255,196,0,.2); }

/* ── Nav ── */
.nav { position: sticky; top: 0; z-index: 200; background: rgba(255,255,255,.94); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px); border-bottom: 1px solid var(--line); }
.nav-in { display: flex; align-items: center; justify-content: space-between; gap: 20px; height: calc(var(--nav-h) - 1px); }
.logo { display: flex; align-items: center; gap: 13px; text-decoration: none; flex-shrink: 0; }
.logo-mark { width: 46px; height: 46px; flex-shrink: 0; background: var(--ink); border-radius: 10px; display: grid; place-items: center; position: relative; }
.logo-mark::after { content: ''; position: absolute; inset: auto -3px -3px auto; width: 14px; height: 14px; background: var(--yellow); border-radius: 4px; border: 2.5px solid #fff; }
.logo-mark svg { width: 26px; height: 26px; }
.logo-t strong { display: block; font-family: 'Sora', sans-serif; font-weight: 800; font-size: 19px; letter-spacing: -.045em; color: var(--ink); line-height: 1.05; }
.logo-t span { display: block; font-family: 'JetBrains Mono', monospace; font-size: 9.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--text-3); margin-top: 3px; }
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a { font-size: 14.5px; font-weight: 600; color: var(--text-2); text-decoration: none; padding: 9px 13px; border-radius: var(--r); transition: color .2s var(--ease), background-color .2s var(--ease); }
.nav-links a:hover { color: var(--ink); background: var(--off); }
.nav-links a.on { color: var(--ink); background: var(--yellow-w); }
.nav-links a:focus-visible { outline: 2px solid var(--yellow); outline-offset: 2px; }
.nav-links .btn { margin-left: 8px; }
.burger { display: none; flex-direction: column; gap: 5px; background: none; border: 1px solid var(--line); border-radius: var(--r); padding: 11px 10px; cursor: pointer; }
.burger span { display: block; width: 20px; height: 2px; background: var(--ink); border-radius: 2px; }

/* ── Home hero ── */
.hero { padding-block: clamp(44px, 5.5vw, 78px) clamp(56px, 6.5vw, 88px); position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; z-index: 0; top: -180px; left: -180px; width: 620px; height: 620px; background: radial-gradient(circle, rgba(255,196,0,.14) 0%, transparent 66%); pointer-events: none; }
.hero-in { position: relative; z-index: 2; display: grid; grid-template-columns: 1.02fr .98fr; gap: clamp(36px, 5vw, 68px); align-items: center; }
.hero h1 { font-size: clamp(38px, 5.6vw, 66px); letter-spacing: -.05em; line-height: 1; margin-bottom: 20px; }
.hero h1 .hl { position: relative; display: inline-block; }
.hero h1 .hl::after { content: ''; position: absolute; left: -2px; right: -2px; bottom: .1em; height: .3em; background: var(--yellow); z-index: -1; border-radius: 2px; }
.hero-sub { font-size: 17.5px; color: var(--text-2); max-width: 46ch; line-height: 1.7; margin-bottom: 30px; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-facts { display: flex; gap: 32px; flex-wrap: wrap; padding-top: 28px; border-top: 1px solid var(--line); }
.fact strong { display: block; font-family: 'Sora', sans-serif; font-weight: 800; font-size: 25px; letter-spacing: -.04em; color: var(--ink); line-height: 1; }
.fact span { display: block; font-size: 12.5px; color: var(--text-3); margin-top: 6px; }
.hero-media { position: relative; }
.hero-frame { position: relative; border-radius: var(--r-xl); overflow: hidden; aspect-ratio: 4/5; background: var(--off-2); box-shadow: var(--shadow-lg); }
.hero-frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge { position: absolute; left: -18px; bottom: 32px; z-index: 3; background: #fff; border-radius: var(--r-lg); padding: 15px 19px; box-shadow: var(--shadow); display: flex; align-items: center; gap: 13px; }
.hero-badge-ic { width: 38px; height: 38px; border-radius: 10px; background: var(--yellow); display: grid; place-items: center; flex-shrink: 0; }
.hero-badge-ic svg { width: 19px; height: 19px; }
.hero-badge strong { display: block; font-family: 'Sora', sans-serif; font-size: 13.5px; font-weight: 700; letter-spacing: -.02em; }
.hero-badge span { display: block; font-size: 12px; color: var(--text-3); }

/* ── Inner page hero ── */
.phero { background: var(--off); border-bottom: 1px solid var(--line); padding-block: clamp(34px, 4vw, 52px) clamp(38px, 4.5vw, 58px); }
.crumb { display: flex; align-items: center; gap: 8px; font-size: 12.5px; color: var(--text-3); margin-bottom: 16px; flex-wrap: wrap; }
.crumb a { color: var(--text-2); text-decoration: none; font-weight: 600; }
.crumb a:hover { color: var(--ink); }
.crumb span { opacity: .55; }
.phero h1 { font-size: clamp(32px, 4.6vw, 52px); letter-spacing: -.045em; margin-bottom: 14px; max-width: 20ch; }
.phero .lead { font-size: 17.5px; max-width: 62ch; }
.phero-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 28px; flex-wrap: wrap; }
.phero-price { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 18px 22px; flex-shrink: 0; box-shadow: var(--shadow); max-width: 260px; }
.phero-price .k { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--text-3); margin-bottom: 6px; }
.phero-price .v-sub { font-size: 13.5px; color: var(--text-2); line-height: 1.45; margin-bottom: 12px; }
.phero-price .btn { width: 100%; padding-inline: 18px; }

/* ── Brand strip ── */
.brands { background: var(--ink); padding-block: 28px; }
.brands-in { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.brands-lbl { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: .15em; text-transform: uppercase; color: rgba(255,255,255,.4); flex-shrink: 0; }
.brands-row { display: flex; align-items: center; gap: 32px; flex-wrap: wrap; }
.brands-row span { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 16.5px; letter-spacing: -.02em; color: rgba(255,255,255,.72); transition: color .2s var(--ease); }
.brands-row span:hover { color: var(--yellow); }

/* ── Service cards ── */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.svc-grid.two { grid-template-columns: repeat(2, 1fr); }
.svc { display: flex; flex-direction: column; background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 28px 26px 22px; position: relative; overflow: hidden; transition: border-color .22s var(--ease), transform .22s var(--ease), box-shadow .22s var(--ease); }
.svc-body { display: block; text-decoration: none; color: inherit; flex: 1; }
.svc::before { content: ''; position: absolute; inset: 0 0 auto 0; height: 3px; background: var(--yellow); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease); }
.svc:hover { border-color: #D8D4CB; transform: translateY(-3px); box-shadow: var(--shadow); }
.svc:hover::before { transform: scaleX(1); }
.svc-ic { width: 48px; height: 48px; border-radius: 12px; background: var(--yellow-w); display: grid; place-items: center; margin-bottom: 18px; }
.svc-ic svg { width: 22px; height: 22px; stroke: var(--ink); }
.svc h3 { font-size: 18.5px; margin-bottom: 8px; }
.svc p { font-size: 14.5px; color: var(--text-2); line-height: 1.62; margin-bottom: 16px; }
.svc-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 15px; margin-top: 16px; border-top: 1px solid var(--line); }
.svc-more { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 700; color: var(--ink); text-decoration: none; transition: gap .2s var(--ease); }
.svc:hover .svc-more { gap: 10px; }

/* ══ PRICE CTA ══
   Sits wherever a price would normally be. Green so it reads as WhatsApp,
   and sized as a real tap target rather than a text link. */
.price-cta {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--wa); color: #fff;
  font-family: 'Sora', sans-serif; font-weight: 600; font-size: 13px;
  padding: 9px 15px; border-radius: var(--r);
  text-decoration: none; white-space: nowrap;
  transition: background-color .2s var(--ease), transform .15s var(--ease);
}
.price-cta:hover { background: var(--wa-d); transform: translateY(-1px); }
.price-cta:active { transform: translateY(0); }
.price-cta:focus-visible { outline: 3px solid var(--ink); outline-offset: 2px; }

/* ── Split feature ── */
.feat-in { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(34px, 4.5vw, 66px); align-items: center; }
.feat.flip .feat-media { order: 2; }
.feat-media { position: relative; }
.feat-frame { border-radius: var(--r-xl); overflow: hidden; aspect-ratio: 4/5; background: var(--off-2); box-shadow: var(--shadow); }
.feat-frame.wide { aspect-ratio: 5/4; }
.feat-frame img { width: 100%; height: 100%; object-fit: cover; }
.feat-float { position: absolute; right: -16px; bottom: -18px; z-index: 3; background: var(--ink); color: #fff; border-radius: var(--r-lg); padding: 17px 21px; box-shadow: var(--shadow-lg); max-width: 220px; }
.feat-float strong { display: block; font-family: 'Sora', sans-serif; font-weight: 800; font-size: 26px; letter-spacing: -.045em; color: var(--yellow); line-height: 1; }
.feat-float span { display: block; font-size: 12.5px; color: rgba(255,255,255,.6); margin-top: 7px; line-height: 1.45; }
.f-list { list-style: none; display: grid; gap: 12px; margin: 22px 0 30px; }
.f-list li { display: flex; align-items: flex-start; gap: 13px; font-size: 15px; color: var(--text-2); line-height: 1.6; }
.f-list li .ck { width: 22px; height: 22px; border-radius: 50%; background: var(--yellow); display: grid; place-items: center; flex-shrink: 0; margin-top: 1px; }
.f-list li .ck svg { width: 11px; height: 11px; stroke: var(--ink); }

/* ── Price table ── */
.ptable { border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; background: #fff; }
.ptable + .ptable { margin-top: 26px; }
.ptable-h { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 16px 24px; background: var(--ink); color: #fff; }
.ptable-h strong { font-family: 'Sora', sans-serif; font-size: 16.5px; font-weight: 700; letter-spacing: -.02em; }
.ptable-h span { font-family: 'JetBrains Mono', monospace; font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.5); }
.prow { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 15px 24px; border-bottom: 1px solid var(--line); }
.prow:last-child { border-bottom: none; }
.prow:nth-child(even) { background: var(--off); }
.prow-l strong { display: block; font-size: 15px; font-weight: 700; color: var(--ink); }
.prow-l span { display: block; font-size: 13px; color: var(--text-2); margin-top: 2px; }
.prow-p { font-family: 'Sora', sans-serif; font-weight: 800; font-size: 18px; letter-spacing: -.03em; flex-shrink: 0; text-align: right; }

.note {
  display: flex; gap: 12px; align-items: flex-start;
  background: var(--yellow-w); border: 1px solid rgba(255,196,0,.4);
  border-radius: var(--r-lg); padding: 16px 20px;
  font-size: 14px; color: var(--text-2); line-height: 1.6;
}
.note svg { flex-shrink: 0; margin-top: 3px; stroke: var(--yellow-d); }
.note strong { color: var(--ink); }

/* ── Size grid ── */
.size-row { display: flex; gap: 8px; flex-wrap: wrap; }
.size-row .tag:nth-child(even) { transform: rotate(1.4deg); }
.size-row .tag:nth-child(3n) { transform: rotate(-2deg); }

/* ── FAQ ── */
.faq { border-top: 1px solid var(--line); max-width: 780px; }
.faq-i { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; background: none; border: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 20px 0; text-align: left; font-family: 'Sora', sans-serif; font-weight: 600; font-size: 16px; letter-spacing: -.02em; color: var(--ink); transition: color .16s var(--ease); }
.faq-q:hover { color: var(--yellow-d); }
.faq-q:focus-visible { outline: 2px solid var(--yellow); outline-offset: 3px; }
.faq-ic { width: 26px; height: 26px; flex-shrink: 0; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; transition: transform .25s var(--ease), background-color .2s var(--ease), border-color .2s var(--ease); }
.faq-ic svg { stroke: var(--ink); transition: stroke .2s var(--ease); }
.faq-i.open .faq-ic { transform: rotate(45deg); background: var(--ink); border-color: var(--ink); }
.faq-i.open .faq-ic svg { stroke: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .32s var(--ease); }
.faq-a-in { padding: 0 0 20px; font-size: 15px; color: var(--text-2); line-height: 1.72; max-width: 68ch; }

/* ── Branch cards ── */
.loc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.loc { border: 1px solid var(--line); border-radius: var(--r-xl); overflow: hidden; background: var(--white); display: flex; flex-direction: column; transition: box-shadow .22s var(--ease), border-color .22s var(--ease); }
.loc:hover { box-shadow: var(--shadow); border-color: #D8D4CB; }
.loc-map { height: 240px; background: var(--off-2); }
.loc-map iframe { width: 100%; height: 100%; border: 0; display: block; }
.loc-body { padding: 26px; display: flex; flex-direction: column; flex: 1; }
.loc-tag { align-self: flex-start; font-family: 'JetBrains Mono', monospace; font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; background: var(--yellow); color: var(--ink); padding: 4px 10px; border-radius: 3px; margin-bottom: 13px; font-weight: 500; }
.loc h3 { font-size: 20px; margin-bottom: 6px; }
.loc-addr { font-size: 14.5px; color: var(--text-2); line-height: 1.6; margin-bottom: 18px; }
.loc-links { display: grid; gap: 9px; margin-top: auto; }
.loc-link { display: flex; align-items: center; gap: 12px; padding: 12px 15px; border: 1px solid var(--line); border-radius: var(--r); font-size: 14px; font-weight: 600; color: var(--ink); text-decoration: none; transition: border-color .2s var(--ease), background-color .2s var(--ease), color .2s var(--ease); }
.loc-link:hover { border-color: var(--wa); color: var(--wa); background: rgba(31,175,84,.05); }
.loc-link svg { flex-shrink: 0; }

/* ── Hours ── */
.hours { border: 1px solid var(--line); border-radius: var(--r-xl); padding: 28px 32px; background: var(--off); display: flex; gap: clamp(24px, 4vw, 54px); align-items: center; flex-wrap: wrap; }
.hours-h { flex-shrink: 0; }
.hours-h h3 { font-size: 18px; margin-bottom: 5px; }
.hours-h p { font-size: 13px; color: var(--text-3); }
.hours-rows { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0 clamp(22px, 4vw, 50px); flex: 1; min-width: 260px; }
.hours-r { display: flex; justify-content: space-between; align-items: baseline; gap: 14px; padding: 11px 0; border-bottom: 1px solid var(--line); }
.hours-r .d { font-size: 13.5px; color: var(--text-2); font-weight: 500; }
.hours-r .t { font-family: 'JetBrains Mono', monospace; font-size: 13px; font-weight: 500; color: var(--ink); }

/* ── Gallery ── */
.gal-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 180px; gap: 14px; grid-auto-flow: dense; }
.gal-i { border-radius: var(--r-lg); overflow: hidden; background: var(--off-2); }
.gal-i img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.gal-i:hover img { transform: scale(1.05); }
.gal-i.tall { grid-row: span 2; }
.gal-i.wide { grid-column: span 2; }

/* ── Why cards ── */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.why-c { padding: 28px 24px; background: var(--off); border-radius: var(--r-lg); transition: background-color .2s var(--ease); }
.why-c:hover { background: var(--yellow-w); }
.why-n { font-family: 'JetBrains Mono', monospace; font-size: 12px; font-weight: 700; color: var(--yellow-d); letter-spacing: .1em; margin-bottom: 14px; }
.why-c h3 { font-size: 17px; margin-bottom: 9px; }
.why-c p { font-size: 14px; color: var(--text-2); line-height: 1.62; }

/* ── Quote picker ── */
.picker { background: var(--ink); color: #fff; position: relative; overflow: hidden; }
.picker::before { content: ''; position: absolute; right: -140px; top: -140px; width: 560px; height: 560px; background: radial-gradient(circle, rgba(255,196,0,.11) 0%, transparent 65%); }
.picker .wrap { position: relative; z-index: 2; }
.picker .h-sec { color: #fff; }
.picker .lead { color: rgba(255,255,255,.6); }
.picker-box { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); border-radius: var(--r-xl); padding: clamp(24px, 3.2vw, 38px); margin-top: 34px; }
.picker-lbl { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: .15em; text-transform: uppercase; color: rgba(255,255,255,.45); margin-bottom: 15px; }
.size-grid { display: flex; gap: 9px; flex-wrap: wrap; margin-bottom: 28px; }
.size-btn { font-family: 'JetBrains Mono', monospace; font-size: 13px; font-weight: 500; background: rgba(255,255,255,.06); color: rgba(255,255,255,.82); border: 1px solid rgba(255,255,255,.14); border-radius: var(--r); padding: 10px 15px; cursor: pointer; transition: background-color .18s var(--ease), color .18s var(--ease), border-color .18s var(--ease), transform .18s var(--ease); }
.size-btn:hover { background: rgba(255,255,255,.13); color: #fff; transform: translateY(-2px); }
.size-btn:focus-visible { outline: 2px solid var(--yellow); outline-offset: 2px; }
.size-btn.on { background: var(--yellow); color: var(--ink); border-color: var(--yellow); font-weight: 700; }
.picker-split { display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: end; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); }
.picker-msg { font-size: 14.5px; color: rgba(255,255,255,.6); line-height: 1.6; }
.picker-msg b { color: var(--yellow); font-family: 'JetBrains Mono', monospace; font-weight: 500; }

/* ── CTA ── */
.cta { background: var(--yellow); position: relative; overflow: hidden; }
.cta::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 70% 100% at 50% 0%, rgba(255,255,255,.34), transparent 62%); }
.cta .wrap { position: relative; z-index: 2; text-align: center; max-width: 740px; }
.cta h2 { font-size: clamp(29px, 4.2vw, 46px); color: var(--ink); margin-bottom: 15px; }
.cta p { font-size: 16.5px; color: rgba(22,24,28,.7); margin-bottom: 30px; max-width: 50ch; margin-inline: auto; line-height: 1.65; }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── Related ── */
.rel { background: var(--off); border-top: 1px solid var(--line); }
.rel-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.rel-c { display: block; text-decoration: none; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 20px 22px; transition: border-color .2s var(--ease), transform .2s var(--ease); }
.rel-c:hover { border-color: var(--ink); transform: translateY(-2px); }
.rel-c strong { display: block; font-family: 'Sora', sans-serif; font-size: 15px; font-weight: 700; color: var(--ink); letter-spacing: -.02em; margin-bottom: 4px; }
.rel-c span { font-size: 13px; color: var(--text-2); }

/* ── Footer ── */
footer { background: var(--ink); color: rgba(255,255,255,.55); padding-block: 60px 0; }
.f-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.3fr; gap: 42px; padding-bottom: 44px; }
.f-logo { display: flex; align-items: center; gap: 13px; margin-bottom: 17px; }
.f-logo .logo-mark { background: rgba(255,255,255,.09); }
.f-logo .logo-mark::after { border-color: var(--ink); }
.f-logo .logo-t strong { color: #fff; }
.f-logo .logo-t span { color: rgba(255,255,255,.4); }
.f-about { font-size: 13.5px; line-height: 1.72; margin-bottom: 20px; max-width: 40ch; }
.f-h { font-family: 'JetBrains Mono', monospace; font-size: 10.5px; letter-spacing: .15em; text-transform: uppercase; color: rgba(255,255,255,.34); margin-bottom: 16px; }
.f-links { list-style: none; display: grid; gap: 10px; }
.f-links a { font-size: 13.5px; color: rgba(255,255,255,.55); text-decoration: none; transition: color .2s var(--ease); }
.f-links a:hover { color: var(--yellow); }
.f-c { display: grid; gap: 13px; }
.f-c-i { display: flex; gap: 11px; align-items: flex-start; text-decoration: none; }
.f-c-i svg { flex-shrink: 0; margin-top: 3px; stroke: var(--yellow); }
.f-c-i strong { display: block; font-size: 13.5px; color: #fff; font-weight: 600; }
.f-c-i span { font-size: 12px; color: rgba(255,255,255,.4); }
.f-bar { border-top: 1px solid rgba(255,255,255,.09); padding-block: 22px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 12px; color: rgba(255,255,255,.32); }

/* ── WhatsApp FAB ── */
.fab { position: fixed; right: 22px; bottom: 22px; z-index: 400; display: flex; align-items: center; gap: 0; background: var(--wa); border-radius: 999px; padding: 15px; text-decoration: none; box-shadow: 0 14px 34px -8px rgba(31,175,84,.62); transition: gap .28s var(--ease), padding .28s var(--ease), transform .22s var(--ease); overflow: hidden; }
.fab svg { width: 27px; height: 27px; fill: #fff; flex-shrink: 0; }
.fab span { font-family: 'Sora', sans-serif; font-weight: 600; font-size: 14px; color: #fff; max-width: 0; opacity: 0; white-space: nowrap; transition: max-width .28s var(--ease), opacity .22s var(--ease); }
.fab:hover { gap: 10px; padding-inline: 19px 22px; transform: translateY(-2px); }
.fab:hover span { max-width: 190px; opacity: 1; }

/* ── Motion ── */
.rise { opacity: 0; transform: translateY(20px); transition: opacity .65s var(--ease), transform .65s var(--ease); }
.rise.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition-duration: .01ms !important; }
  .rise { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ── Responsive ── */
@media (max-width: 1080px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .rel-grid { grid-template-columns: repeat(2, 1fr); }
  .gal-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 165px; }
  .f-grid { grid-template-columns: 1fr 1fr; gap: 34px; }
  .hours-rows { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 920px) {
  .nav-links { display: none; position: absolute; top: var(--nav-h); left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 4px; background: #fff; border-bottom: 1px solid var(--line); padding: 16px; box-shadow: 0 16px 34px -16px rgba(22,24,28,.2); }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 13px 14px; }
  .nav-links .btn { margin-left: 0; margin-top: 6px; }
  .burger { display: flex; }
  .hero-in { grid-template-columns: 1fr; gap: 40px; }
  .hero-frame { aspect-ratio: 5/4; }
  .hero-badge { left: 14px; bottom: -20px; }
  .feat-in { grid-template-columns: 1fr; gap: 40px; }
  .feat.flip .feat-media { order: 0; }
  .feat-frame, .feat-frame.wide { aspect-ratio: 5/4; }
  .feat-float { right: 14px; bottom: -20px; }
  .loc-grid { grid-template-columns: 1fr; }
  .picker-split { grid-template-columns: 1fr; align-items: start; }
  .svc-grid.two { grid-template-columns: 1fr; }
  .tb-r { display: none; }
}
@media (max-width: 620px) {
  :root { --gut: 18px; }
  .svc-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .rel-grid { grid-template-columns: 1fr; }
  .gal-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 140px; }
  .f-grid { grid-template-columns: 1fr; }
  .hours-rows { grid-template-columns: 1fr; }
  .hours { padding: 24px 20px; }
  .hero-btns .btn, .cta-btns .btn { width: 100%; }
  .hero-facts { gap: 22px; }
  .prow { flex-direction: column; align-items: flex-start; gap: 6px; }
  .prow-p { text-align: left; }
  .phero-row { gap: 20px; }
  .fab { right: 15px; bottom: 15px; padding: 13px; }
  .fab svg { width: 25px; height: 25px; }
  .fab:hover { gap: 0; padding: 13px; }
  .fab:hover span { max-width: 0; opacity: 0; }
}
