/* ==========================================================================
   GSM Mechanical — stylesheet
   Brand: yellow for actions, charcoal for the frame, ink on white for reading.
   See DESIGN.md for the token rationale.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Fonts (self-hosted, latin subset)
   -------------------------------------------------------------------------- */
@font-face {
  font-family: 'Roboto';
  src: url('../assets/fonts/roboto-var.woff2') format('woff2-variations'),
       url('../assets/fonts/roboto-var.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../assets/fonts/poppins-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* --------------------------------------------------------------------------
   2. Tokens
   -------------------------------------------------------------------------- */
:root {
  --yellow:        #FFC513;
  --yellow-deep:   #E5AC00;
  --ink:           #1E1E1E;
  --ink-2:         #4A4A4A;
  --charcoal:      #262626;
  --charcoal-2:    #303030;
  --line:          #E4E4E4;
  --line-dark:     rgba(255, 255, 255, .14);
  --panel:         #F5F5F5;
  --white:         #FFFFFF;
  --ok:            #1F7A3A;
  --err:           #B3261E;

  --font-body:     'Roboto', system-ui, -apple-system, 'Segoe UI', Arial, sans-serif;
  --font-display:  'Poppins', var(--font-body);

  --container:     1140px;
  --gutter:        20px;
  --section:       clamp(56px, 8vw, 104px);
  --radius:        2px;

  --ease-out:      cubic-bezier(.22, 1, .36, 1);
  --t-fast:        .18s;
  --t-med:         .32s;

  /* z-index scale */
  --z-sticky:      50;
  --z-menu:        60;
  --z-callbar:     70;
  --z-dialog:      100;
  --z-preloader:   200;

  --header-h:      76px;
}
@media (min-width: 768px) { :root { --gutter: 24px; --header-h: 84px; } }

/* --------------------------------------------------------------------------
   3. Base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); overflow-x: clip; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
@media (min-width: 768px) { body { font-size: 17px; } }

img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1em; max-width: 70ch; }
p:last-child { margin-bottom: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
address { font-style: normal; }
strong { font-weight: 600; }
:focus-visible { outline: 3px solid var(--yellow); outline-offset: 3px; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  margin: 0 0 .5em;
  text-wrap: balance;
  color: var(--ink);
}
h1 { font-size: clamp(2rem, 1.2rem + 3.2vw, 3.5rem); letter-spacing: -.01em; }
h2 { font-size: clamp(1.6rem, 1.1rem + 1.8vw, 2.5rem); letter-spacing: -.01em; }
h3 { font-size: 1.25rem; line-height: 1.25; }
h4 { font-size: 1.05rem; line-height: 1.3; }
.lead { font-size: clamp(1.05rem, 1rem + .4vw, 1.25rem); color: var(--ink-2); max-width: 60ch; }
.muted { color: var(--ink-2); }
.num { font-variant-numeric: tabular-nums; }

.skip-link {
  position: absolute; left: -9999px; top: 8px; z-index: var(--z-dialog);
  padding: 12px 18px; background: var(--yellow); color: var(--ink); font-weight: 600; border-radius: var(--radius);
}
.skip-link:focus { left: 8px; }
.visually-hidden {
  position: absolute !important; 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: calc(var(--container) + var(--gutter) * 2); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: var(--section) 0; }
.section--panel { background: var(--panel); }
.section--dark { background: var(--charcoal); color: var(--white); }
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: var(--white); }
.section--dark .lead, .section--dark .muted { color: rgba(255, 255, 255, .78); }
.section-head { max-width: 62ch; margin-bottom: clamp(28px, 4vw, 48px); }
.section-head h2 { margin-bottom: .35em; }
.section-head p { margin: 0; }

.icon { width: 1em; height: 1em; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex: 0 0 auto; }
.icon--fill { fill: currentColor; stroke: none; }

/* --------------------------------------------------------------------------
   3b. Preloader — the workshop dial. Once per visit, capped, never blocking.
   -------------------------------------------------------------------------- */
.preloader {
  position: fixed; inset: 0; z-index: var(--z-preloader);
  display: grid; place-items: center; align-content: center; gap: 24px;
  background: var(--charcoal);
  animation: preloaderOut .45s var(--ease-out) 2.6s forwards; /* safety net if JS never runs */
}
.preloader.is-done { animation: preloaderOut .45s var(--ease-out) forwards; }
@keyframes preloaderOut { to { opacity: 0; visibility: hidden; } }

.dial {
  --r: 64px;
  position: relative; width: 150px; height: 150px;
  border: 1px solid rgba(255, 255, 255, .45); border-radius: 50%;
}
.dial::before, .dial::after {
  content: ''; position: absolute; border-radius: 50%;
  border: 1px solid transparent;
}
.dial::before {
  inset: 5px; border-color: rgba(255, 255, 255, .85); border-right-color: transparent;
  animation: dialSpin 3s linear infinite;
}
.dial::after {
  inset: 11px; border-right-color: var(--yellow);
  animation: dialSpin 5s linear infinite reverse;
}
.dial__tick {
  position: absolute; left: 50%; top: 50%; width: 2px; height: 9px; margin: -1px 0 0 -1px;
  background: rgba(255, 255, 255, .5);
  transform: rotate(var(--a)) translateY(calc(var(--r) * -1));
}
.dial__tick--hot { background: var(--yellow); }
.dial__tick:nth-child(1) { --a: 0deg; }
.dial__tick:nth-child(2) { --a: 45deg; }
.dial__tick:nth-child(3) { --a: 90deg; }
.dial__tick:nth-child(4) { --a: 135deg; }
.dial__tick:nth-child(5) { --a: 180deg; }
.dial__tick:nth-child(6) { --a: 225deg; }
.dial__tick:nth-child(7) { --a: 270deg; }
.dial__tick:nth-child(8) { --a: 315deg; }
.dial__needle {
  position: absolute; left: 50%; top: 50%; width: 14px; height: 14px; margin: -7px 0 0 -7px;
  border: 1px solid rgba(255, 255, 255, .7); border-radius: 50%; z-index: 2;
  animation: dialSweep 3s ease-in-out infinite;
}
.dial__needle::before {
  content: ''; position: absolute; right: 50%; top: 50%; margin-top: -3px;
  width: 0; height: 0; border-style: solid; border-width: 3px 52px 3px 0;
  border-color: transparent var(--yellow) transparent transparent;
  border-radius: 0 50% 50% 0;
}
.preloader__word {
  margin: 0; font-family: var(--font-display); font-weight: 600; font-size: .8rem;
  letter-spacing: .3em; text-indent: .3em; text-transform: uppercase;
  color: rgba(255, 255, 255, .7);
}
@keyframes dialSpin { to { transform: rotate(360deg); } }
@keyframes dialSweep {
  0%   { transform: rotate(0deg); }
  16%  { transform: rotate(75deg); }
  25%  { transform: rotate(55deg); }
  30%  { transform: rotate(90deg); }
  36%  { transform: rotate(170deg); }
  42%  { transform: rotate(150deg); }
  50%  { transform: rotate(227deg); }
  100% { transform: rotate(0deg); }
}
@media (max-width: 600px) {
  .dial { --r: 51px; width: 122px; height: 122px; }
  .dial__needle::before { border-width: 3px 40px 3px 0; }
}

/* --------------------------------------------------------------------------
   4. Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 0 26px;
  font-weight: 600; font-size: 1rem; line-height: 1.2;
  border-radius: var(--radius); border: 1px solid transparent;
  white-space: nowrap; cursor: pointer;
  transition: background-color var(--t-fast) var(--ease-out), color var(--t-fast) var(--ease-out), border-color var(--t-fast) var(--ease-out), transform var(--t-fast) var(--ease-out);
}
.btn .icon { width: 20px; height: 20px; }
.btn:active { transform: translateY(1px); }
.btn-yellow { background: var(--yellow); color: var(--ink); border-color: var(--yellow); }
.btn-yellow:hover { background: var(--yellow-deep); border-color: var(--yellow-deep); }
.btn-dark { background: var(--charcoal); color: var(--white); border-color: var(--charcoal); }
.btn-dark:hover { background: #111; border-color: #111; }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--white); }
.btn-ghost-light { background: transparent; color: var(--white); border-color: rgba(255, 255, 255, .6); }
.btn-ghost-light:hover { background: var(--white); color: var(--ink); border-color: var(--white); }
.btn-lg { min-height: 58px; padding: 0 32px; font-size: 1.05rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

.text-link { font-weight: 600; text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 2px; text-decoration-color: var(--yellow); }
.text-link:hover { text-decoration-color: currentColor; }

/* --------------------------------------------------------------------------
   5. Header
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: var(--z-sticky);
  background: var(--charcoal); color: var(--white);
  box-shadow: 0 1px 0 var(--line-dark);
}
.site-header .container { display: flex; align-items: center; gap: 18px; min-height: var(--header-h); }
.brand { display: flex; align-items: center; flex: 0 0 auto; }
.brand img { width: auto; height: 52px; }
@media (min-width: 768px) { .brand img { height: 58px; } }

.site-nav { display: none; margin-left: 8px; }
.site-nav ul { display: flex; gap: 4px; }
.site-nav a {
  display: block; padding: 10px 14px; font-weight: 500; color: rgba(255, 255, 255, .86); border-radius: var(--radius);
  transition: color var(--t-fast), background-color var(--t-fast);
}
.site-nav a:hover { color: var(--white); background: var(--charcoal-2); }
.site-nav a[aria-current="page"] { color: var(--white); box-shadow: inset 0 -3px 0 var(--yellow); }
@media (min-width: 992px) { .site-nav { display: block; } }

.header-cta { margin-left: auto; display: flex; align-items: center; gap: 14px; }
.hours-chip { display: none; align-items: center; gap: 8px; font-size: .92rem; color: rgba(255, 255, 255, .86); white-space: nowrap; }
.hours-chip .dot { width: 9px; height: 9px; border-radius: 50%; background: #8A8A8A; }
.hours-chip.is-open .dot { background: #4CCB6A; }
@media (min-width: 1200px) { .hours-chip { display: flex; } }
.header-phone { min-height: 46px; padding: 0 16px; }
.header-phone .label { display: none; }
.header-phone .label-sm { display: inline; }
@media (min-width: 560px) { .header-phone .label { display: inline; } .header-phone .label-sm { display: none; } .header-phone { padding: 0 18px; } }

.nav-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: var(--radius); color: var(--white); background: var(--charcoal-2);
}
.nav-toggle .icon { width: 24px; height: 24px; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-menu { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }
@media (min-width: 992px) { .nav-toggle { display: none; } }

/* Mobile menu: drops down under the header */
.mobile-menu {
  display: none; position: fixed; left: 0; right: 0; top: var(--header-h); z-index: var(--z-menu);
  max-height: calc(100dvh - var(--header-h)); overflow-y: auto;
  background: var(--charcoal); color: var(--white);
  border-top: 1px solid var(--line-dark);
  box-shadow: 0 24px 48px rgba(0, 0, 0, .35);
}
.mobile-menu.is-open { display: block; animation: menuIn var(--t-med) var(--ease-out) both; }
@keyframes menuIn { from { transform: translateY(-8px); } to { transform: none; } }
.mobile-menu ul { padding: 8px 0; }
.mobile-menu li a {
  display: block; padding: 16px var(--gutter); font-size: 1.15rem; font-weight: 500;
  border-bottom: 1px solid var(--line-dark);
}
.mobile-menu li a[aria-current="page"] { color: var(--yellow); }
.mobile-menu .menu-meta { padding: 16px var(--gutter) 22px; color: rgba(255, 255, 255, .78); font-size: .95rem; line-height: 1.7; }
.mobile-menu .menu-meta strong { color: var(--white); }
.mobile-menu .btn-row { padding: 0 var(--gutter) 20px; }
.mobile-menu .btn { flex: 1 1 auto; }
@media (min-width: 992px) { .mobile-menu { display: none !important; } }
.menu-backdrop { display: none; position: fixed; inset: 0; z-index: calc(var(--z-menu) - 1); background: rgba(0, 0, 0, .45); }
.menu-backdrop.is-open { display: block; }

/* --------------------------------------------------------------------------
   6. Hero
   -------------------------------------------------------------------------- */
.hero { position: relative; background: var(--charcoal); color: var(--white); overflow: hidden; isolation: isolate; }
.hero__img { position: absolute; inset: 0; z-index: -2; }
.hero__img img { width: 100%; height: 100%; object-fit: cover; object-position: 60% 40%; }
.hero::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(90deg, rgba(20, 20, 20, .9) 0%, rgba(20, 20, 20, .74) 45%, rgba(20, 20, 20, .38) 100%);
}
.hero .container { padding-top: clamp(56px, 9vw, 120px); padding-bottom: clamp(56px, 9vw, 120px); }
.hero__content { max-width: 640px; }
.hero__kicker { display: inline-block; margin-bottom: 18px; padding: 8px 12px; background: var(--yellow); color: var(--ink); font-weight: 600; font-size: .92rem; border-radius: var(--radius); }
.hero h1 { color: var(--white); margin-bottom: .45em; }
.hero p { font-size: clamp(1.05rem, 1rem + .5vw, 1.3rem); color: rgba(255, 255, 255, .88); margin-bottom: 30px; max-width: 54ch; line-height: 1.5; }
.hero .btn-row { gap: 14px; }
.hero__note { margin-top: 22px; font-size: .95rem; color: rgba(255, 255, 255, .78); }
.hero__note strong { color: var(--white); }

.reveal { animation: rise .6s var(--ease-out) both; }
.reveal:nth-child(2) { animation-delay: 60ms; }
.reveal:nth-child(3) { animation-delay: 120ms; }
.reveal:nth-child(4) { animation-delay: 180ms; }
.reveal:nth-child(5) { animation-delay: 240ms; }
@keyframes rise { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

/* Trust strip under the hero */
.trust { background: var(--yellow); color: var(--ink); }
.trust ul { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); }
.trust li { display: flex; align-items: center; gap: 12px; padding: 14px 0; font-weight: 600; font-size: .98rem; }
@media (max-width: 899px) {
  .trust ul { grid-template-columns: 1fr 1fr; gap: 0 16px; }
  .trust li { padding: 12px 0; font-size: .9rem; line-height: 1.3; gap: 10px; }
  .trust .icon { width: 20px; height: 20px; }
}
@media (max-width: 359px) { .trust ul { grid-template-columns: 1fr; } }
@media (min-width: 900px) {
  .trust li { padding: 20px 18px; }
  .trust li + li { border-left: 1px solid rgba(0, 0, 0, .15); }
  .trust li:first-child { padding-left: 0; }
}
.trust .icon { width: 22px; height: 22px; }

/* --------------------------------------------------------------------------
   7. Services - one tall photograph beside the lists, not a row of cards
   -------------------------------------------------------------------------- */
.services-split { display: grid; grid-template-columns: minmax(0, 1fr); gap: 32px; }
@media (min-width: 900px) {
  .services-split { grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr); gap: 56px; align-items: start; }
}
.services-photo { position: relative; margin: 0; overflow: hidden; border-radius: var(--radius); background: var(--panel); }
.services-photo img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 16 / 9; }
@media (min-width: 900px) { .services-photo img { aspect-ratio: 3 / 4; } }
.services-photo figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 14px 18px;
  background: rgba(20, 20, 20, .82); color: rgba(255, 255, 255, .9); font-size: .9rem;
}
.services-lists { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(210px, 100%), 1fr)); gap: 30px 44px; }
.service-group--wide { grid-column: 1 / -1; }
.service-group h3 { margin-bottom: 10px; }
.service-group ul li { position: relative; padding: 9px 0 9px 28px; border-bottom: 1px solid var(--line); }
.service-group ul li:last-child { border-bottom: 0; }
.service-group ul li::before,
.checks li::before {
  content: ''; position: absolute; left: 2px; top: 15px; width: 12px; height: 7px;
  border-left: 3px solid var(--yellow-deep); border-bottom: 3px solid var(--yellow-deep); transform: rotate(-45deg);
}
.services-cta { margin-top: clamp(28px, 4vw, 44px); display: flex; flex-wrap: wrap; gap: 16px 28px; align-items: center; }
.services-cta p { margin: 0; color: var(--ink-2); }

/* Service detail (services page) */
.service-detail { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr)); gap: 28px 40px; }
.service-detail article { padding-top: 18px; border-top: 1px solid var(--line); }
.service-detail article h3::before { content: ''; display: inline-block; width: 10px; height: 10px; margin: 0 10px 2px 0; background: var(--yellow); }
.service-detail h3 { margin-bottom: 8px; }
.service-detail p { color: var(--ink-2); font-size: .98rem; }

/* --------------------------------------------------------------------------
   8. Steps (the one numbered sequence on the site)
   -------------------------------------------------------------------------- */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr)); gap: 28px 40px; counter-reset: step; }
.step { position: relative; padding-left: 68px; }
.step::before {
  counter-increment: step; content: counter(step);
  position: absolute; left: 0; top: 0; width: 50px; height: 50px; border-radius: 50%;
  background: var(--yellow); color: var(--ink); font-family: var(--font-display); font-weight: 600; font-size: 1.3rem;
  display: flex; align-items: center; justify-content: center;
}
.step h3 { margin-bottom: 6px; }
.step p { color: var(--ink-2); font-size: .98rem; }
.section--dark .step p { color: rgba(255, 255, 255, .78); }

/* --------------------------------------------------------------------------
   9. Why GSM (dark band with photo)
   -------------------------------------------------------------------------- */
.why { display: grid; gap: 40px; align-items: center; }
@media (min-width: 900px) { .why { grid-template-columns: 1fr 1.1fr; gap: 64px; } }
.why__photo { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4 / 3.4; background: var(--charcoal-2); margin: 0; }
.why__photo img { width: 100%; height: 100%; object-fit: cover; }
.why__photo figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 14px 18px; background: rgba(20, 20, 20, .8); font-size: .92rem; color: rgba(255, 255, 255, .86); }
.facts { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(230px, 100%), 1fr)); gap: 22px 28px; margin-top: 30px; }
.facts li { padding-top: 14px; border-top: 1px solid var(--line-dark); }
.facts strong { display: block; font-family: var(--font-display); font-size: 1.1rem; margin-bottom: 4px; color: var(--white); }
.facts span { color: rgba(255, 255, 255, .78); font-size: .97rem; }

/* --------------------------------------------------------------------------
   10. Reviews - pull quotes separated by rules, no card chrome
   -------------------------------------------------------------------------- */
.reviews-head { display: flex; flex-wrap: wrap; align-items: baseline; gap: 12px 28px; margin-bottom: clamp(26px, 3.5vw, 40px); }
.reviews-head h2 { margin: 0; }
.reviews { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr)); gap: 34px 44px; }
.review { display: flex; flex-direction: column; gap: 18px; }
.review blockquote {
  margin: 0; position: relative; padding-top: 38px;
  font-size: 1.06rem; line-height: 1.5; color: var(--ink);
}
.review blockquote::before {
  content: '\201C'; position: absolute; top: -8px; left: -4px;
  font-family: var(--font-display); font-size: 4rem; line-height: 1; color: var(--yellow);
}
.review footer { margin-top: auto; display: flex; align-items: center; gap: 12px; font-size: .9rem; color: var(--ink-2); }
.review .stars { display: inline-flex; gap: 2px; color: var(--yellow-deep); }
.review .stars .icon { width: 15px; height: 15px; }
@media (min-width: 760px) {
  .reviews { gap: 0; }
  .review + .review { padding-left: 44px; border-left: 1px solid var(--line); }
}

/* --------------------------------------------------------------------------
   11. Brands
   -------------------------------------------------------------------------- */
.brands { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 34px 0; }
.brands .container { display: flex; flex-wrap: wrap; align-items: center; gap: 18px 36px; }
.brands p { margin: 0; font-weight: 600; color: var(--ink-2); flex: 0 0 auto; }
.brands ul { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 30px; flex: 1 1 auto; }
.brands img { height: 64px; width: auto; filter: grayscale(1); opacity: .75; transition: filter var(--t-med), opacity var(--t-med); }
@media (max-width: 600px) { .brands { padding: 26px 0; } .brands ul { gap: 8px 22px; } .brands img { height: 48px; } }
.brands img:hover { filter: none; opacity: 1; }

/* --------------------------------------------------------------------------
   12. Location & hours
   -------------------------------------------------------------------------- */
.visit { display: grid; grid-template-columns: minmax(0, 1fr); gap: 36px; }
.visit > * { min-width: 0; }
@media (min-width: 900px) { .visit { grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr); gap: 56px; align-items: start; } }
.visit__map { aspect-ratio: 4 / 3; min-height: 300px; background: var(--panel); border-radius: var(--radius); overflow: hidden; }
@media (max-width: 600px) { .visit__map { aspect-ratio: 3 / 2; min-height: 0; } }
.visit__map iframe { width: 100%; max-width: 100%; min-width: 0; height: 100%; border: 0; display: block; }
.visit address { font-size: 1.1rem; line-height: 1.5; margin: 0 0 18px; }
.visit address strong { display: block; font-family: var(--font-display); font-size: 1.2rem; }
.hours { width: 100%; border-collapse: collapse; margin: 22px 0 24px; font-size: 1rem; }
.hours th, .hours td { text-align: left; padding: 10px 0; border-bottom: 1px solid var(--line); font-weight: 400; }
.hours th { color: var(--ink-2); font-weight: 500; width: 46%; }
.hours tr.is-today th, .hours tr.is-today td { font-weight: 600; color: var(--ink); }
.hours td.closed { color: var(--ink-2); }
.status { display: inline-flex; align-items: center; gap: 8px; padding: 6px 12px; border-radius: 999px; background: var(--panel); font-weight: 600; font-size: .92rem; }
.status .dot { width: 9px; height: 9px; border-radius: 50%; background: #8A8A8A; }
.status.is-open .dot { background: var(--ok); }

/* --------------------------------------------------------------------------
   13. FAQ
   -------------------------------------------------------------------------- */
.faq { max-width: 780px; }
.faq details { border-top: 1px solid var(--line); }
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding: 18px 0; font-family: var(--font-display); font-weight: 600; font-size: 1.05rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ''; flex: 0 0 auto; width: 12px; height: 12px; margin-right: 4px;
  border-right: 2px solid var(--ink); border-bottom: 2px solid var(--ink); transform: rotate(45deg);
  transition: transform var(--t-med) var(--ease-out);
}
.faq details[open] summary::after { transform: rotate(-135deg); }
.faq details p { padding: 0 0 20px; color: var(--ink-2); max-width: 66ch; }

/* --------------------------------------------------------------------------
   14. Final CTA band
   -------------------------------------------------------------------------- */
.cta-band { background: var(--yellow); color: var(--ink); }
.cta-band .container { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 22px 40px; padding-top: clamp(40px, 6vw, 64px); padding-bottom: clamp(40px, 6vw, 64px); }
.cta-band h2 { margin: 0 0 6px; }
.cta-band p { margin: 0; color: rgba(0, 0, 0, .72); }
.cta-band .btn-ghost { border-color: var(--ink); }

/* --------------------------------------------------------------------------
   15. Footer
   -------------------------------------------------------------------------- */
.site-footer { background: var(--charcoal); color: rgba(255, 255, 255, .8); padding: clamp(44px, 6vw, 72px) 0 0; font-size: .97rem; }
.footer-grid { display: grid; gap: 34px 40px; grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr)); }
.site-footer h3 { color: var(--white); font-size: 1rem; margin-bottom: 14px; }
.site-footer a:hover { color: var(--white); text-decoration: underline; text-underline-offset: 3px; }
.site-footer .brand img { height: 56px; margin-bottom: 16px; }
.footer-list li { padding: 5px 0; }
.footer-list .icon { width: 18px; height: 18px; display: inline-block; vertical-align: -3px; margin-right: 8px; color: var(--yellow); }
.footer-list strong { color: var(--white); font-weight: 500; }
.social { display: flex; gap: 10px; margin-top: 16px; }
.social a { display: inline-flex; width: 42px; height: 42px; align-items: center; justify-content: center; border-radius: 50%; background: var(--charcoal-2); color: var(--white); }
.social a:hover { background: var(--yellow); color: var(--ink); text-decoration: none; }
.social .icon { width: 20px; height: 20px; }
.footer-bottom { margin-top: clamp(32px, 5vw, 56px); padding: 20px 0; border-top: 1px solid var(--line-dark); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px 24px; font-size: .9rem; color: rgba(255, 255, 255, .62); }

/* Sticky call bar (phones) */
.call-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: var(--z-callbar);
  display: flex; gap: 10px;
  padding: 10px var(--gutter) max(10px, env(safe-area-inset-bottom));
  background: rgba(38, 38, 38, .96); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  transform: translateY(110%); transition: transform var(--t-med) var(--ease-out);
}
.call-bar.is-visible { transform: none; }
.call-bar .btn { flex: 1 1 0; min-height: 50px; padding: 0 14px; }
@media (max-width: 380px) { .call-bar { gap: 8px; } .call-bar .btn { padding: 0 8px; font-size: .95rem; gap: 6px; } }
@media (min-width: 992px) { .call-bar { display: none; } }
@media (max-width: 991px) { body.has-callbar { padding-bottom: 74px; } }

/* --------------------------------------------------------------------------
   16. Inner pages
   -------------------------------------------------------------------------- */
.page-head { background: var(--charcoal); color: var(--white); padding: clamp(40px, 6vw, 72px) 0; }
.page-head h1 { color: var(--white); margin-bottom: .3em; }
.page-head p { color: rgba(255, 255, 255, .8); margin: 0; }
.page-head .btn-row { margin-top: 24px; }
.two-col { display: grid; gap: 36px; }
@media (min-width: 900px) { .two-col { grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; } }
.photo { border-radius: var(--radius); overflow: hidden; background: var(--panel); }
.photo img { width: 100%; height: auto; }
.checks li { position: relative; padding: 8px 0 8px 30px; font-weight: 500; }
.contact-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(230px, 100%), 1fr)); gap: 20px; margin-bottom: clamp(32px, 5vw, 56px); }
.contact-card { padding: 22px; background: var(--panel); border-radius: var(--radius); }
.contact-card h3 { font-size: 1rem; margin-bottom: 8px; color: var(--ink-2); }
.contact-card .big { font-family: var(--font-display); font-size: 1.35rem; line-height: 1.25; display: block; margin-bottom: 8px; }

/* --------------------------------------------------------------------------
   17. Forms
   -------------------------------------------------------------------------- */
.form-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr)); gap: 14px 16px; }
.form-grid .full { grid-column: 1 / -1; }
.field label { display: block; font-weight: 500; font-size: .95rem; margin-bottom: 6px; }
.field .hint { font-weight: 400; color: var(--ink-2); }
.field input, .field select, .field textarea {
  width: 100%; min-height: 52px; padding: 12px 14px;
  font: inherit; color: var(--ink); background: var(--white);
  border: 2px solid #B9B9B9; border-radius: var(--radius);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, .06);
  transition: border-color var(--t-fast), box-shadow var(--t-fast), background-color var(--t-fast);
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: #8A8A8A; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; background: var(--white); border-color: var(--ink); box-shadow: 0 0 0 3px var(--yellow); }
.field input::placeholder, .field textarea::placeholder { color: #767676; }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: var(--err); }
.field .error-msg { display: none; margin-top: 6px; font-size: .9rem; color: var(--err); }
.field.has-error .error-msg { display: block; }
fieldset { border: 0; margin: 0 0 22px; padding: 0; min-width: 0; }
legend { font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; margin-bottom: 12px; padding: 0; }
.checks-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr)); gap: 8px 16px; }
.checks-grid label { display: flex; align-items: flex-start; gap: 10px; padding: 6px 0; cursor: pointer; font-size: .97rem; }
.checks-grid input { width: 22px; height: 22px; margin: 1px 0 0; accent-color: var(--ink); flex: 0 0 auto; }
.checks-grid label { border: 2px solid transparent; }
.form-status { display: none; margin-top: 16px; padding: 14px 16px; border-radius: var(--radius); font-size: .97rem; }
.form-status.is-visible { display: block; }
.form-status.is-success { background: #E6F4EA; color: #14532D; }
.form-status.is-error { background: #FBEAE9; color: #7A1C16; }
.honeypot { position: absolute; left: -9999px; }


/* Enquiry form on the contact page sits in a light panel so the white fields stand out */
.two-col form { padding: 24px; background: var(--panel); border-radius: var(--radius); }
@media (max-width: 600px) { .two-col form { padding: 18px; } }
/* Booking dialog */
.booking { width: min(760px, calc(100% - 32px)); max-height: calc(100dvh - 32px); margin: auto; padding: 0; border: 0; border-radius: var(--radius); background: var(--white); color: var(--ink); box-shadow: 0 30px 80px rgba(0, 0, 0, .4); }
.booking::backdrop { background: rgba(0, 0, 0, .6); }
.booking__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; padding: 26px 28px 0; }
.booking__head h2 { font-size: 1.5rem; margin: 0 0 4px; }
.booking__head p { margin: 0; color: var(--ink-2); font-size: .97rem; }
.booking__close { width: 44px; height: 44px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; background: var(--panel); flex: 0 0 auto; }
.booking__close:hover { background: var(--line); }
.booking__close .icon { width: 20px; height: 20px; }
.booking form { padding: 22px 28px 28px; }
.booking .btn-row { margin-top: 6px; }
.booking .or { color: var(--ink-2); font-size: .95rem; }
@media (max-width: 560px) { .booking__head { padding: 20px 18px 0; } .booking form { padding: 18px; } }
@media (prefers-reduced-motion: no-preference) {
  .booking[open] { animation: dialogIn .3s var(--ease-out); }
  @keyframes dialogIn { from { transform: translateY(12px); } to { transform: none; } }
}

/* --------------------------------------------------------------------------
   17b. Phones: tighter hero, photo visible, equal full-width buttons
   -------------------------------------------------------------------------- */
.hide-sm { display: inline; }
@media (max-width: 600px) {
  .hide-sm { display: none; }
  .hero .container { padding-top: 40px; padding-bottom: 44px; }
  .hero__img img { object-position: 62% 30%; }
  .hero::before { background: linear-gradient(180deg, rgba(20, 20, 20, .45) 0%, rgba(20, 20, 20, .8) 45%, rgba(20, 20, 20, .92) 100%); }
  .hero__kicker { margin-bottom: 14px; padding: 6px 10px; font-size: .85rem; }
  .hero h1 { font-size: clamp(1.9rem, 1.2rem + 3.6vw, 2.3rem); margin-bottom: .4em; }
  .hero p { font-size: 1.02rem; margin-bottom: 22px; }
  .hero__note { margin-top: 16px; font-size: .9rem; }
  .hero .btn-row .btn, .cta-band .btn-row .btn, .page-head .btn-row .btn, .visit .btn-row .btn,
  .mobile-menu .btn-row .btn, .booking .btn-row .btn, .services-cta .btn, form .btn-row .btn { flex: 1 1 100%; width: 100%; }
  .btn-lg { min-height: 54px; padding: 0 22px; font-size: 1rem; }
  .btn { white-space: normal; text-align: center; }
  .section { padding: 48px 0; }
  .section-head { margin-bottom: 24px; }
  .steps { gap: 22px; }
  .facts { gap: 16px; }
  .review { padding: 20px; }
  .footer-grid { gap: 26px; }
}

/* --------------------------------------------------------------------------
   17c. Motion - chosen per element, not one entrance sprayed over every
   section. Content is visible by default; JS adds .js-anim to opt in.
   -------------------------------------------------------------------------- */

/* Photographs uncover, like a panel sliding off. */
.js-anim [data-reveal="wipe"] {
  clip-path: inset(0 0 100% 0);
  transition: clip-path .85s var(--ease-out) var(--d, 0ms);
}
.js-anim [data-reveal="wipe"].is-in { clip-path: inset(0 0 0 0); }

/* The numbered steps arrive in order, because they are a sequence. */
.js-anim [data-reveal="rise"] {
  opacity: 0; transform: translateY(14px);
  transition: opacity .5s var(--ease-out) var(--d, 0ms), transform .5s var(--ease-out) var(--d, 0ms);
}
.js-anim [data-reveal="rise"].is-in { opacity: 1; transform: none; }

/* The hero photograph settles as the page opens. */
.hero__img img { animation: heroDrift 22s var(--ease-out) both; }
@keyframes heroDrift { from { transform: scale(1.08); } to { transform: scale(1); } }

/* Header lifts off the page once you scroll. */
.site-header { transition: box-shadow var(--t-med) var(--ease-out); }
.site-header.is-scrolled { box-shadow: 0 8px 26px rgba(0, 0, 0, .3); }

/* Photographs breathe on hover. */
.services-photo img, .why__photo img, .photo img { transition: transform .7s var(--ease-out); }
.services-photo:hover img, .why__photo:hover img, .photo:hover img { transform: scale(1.04); }

/* Small feedback where a finger or cursor lands. */
.trust li .icon { transition: transform var(--t-med) var(--ease-out); }
.trust li:hover .icon { transform: scale(1.12) rotate(-4deg); }
.step::before { transition: transform var(--t-med) var(--ease-out); }
.step:hover::before { transform: scale(1.06); }
.contact-card { transition: background-color var(--t-fast) var(--ease-out); }
.contact-card:hover { background: #EFEFEF; }

/* FAQ answers ease open. */
.faq details[open] p { animation: faqIn .32s var(--ease-out) both; }
@keyframes faqIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }

/* --------------------------------------------------------------------------
   18. Reduced motion & print
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-reveal] { opacity: 1 !important; transform: none !important; clip-path: none !important; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-delay: 0s !important; transition-duration: .01ms !important; }
}
@media print {
  [data-reveal] { opacity: 1 !important; transform: none !important; clip-path: none !important; }
  .site-header, .call-bar, .mobile-menu, .menu-backdrop, .booking, .cta-band, .hero::before { display: none !important; }
  .hero, .hero h1, .hero p { color: var(--ink); }
}
