/* =========================================================
   Finishing Touch Auto Centre
   Mobile-first. Graphite + off-white, one red accent from the sign.
   ========================================================= */

:root {
  --bg: #f5f4f0;
  --bg-tint: #ebe9e3;
  --paper: #ffffff;
  --ink: #15191e;
  --ink-2: #2b313a;
  --muted: #646c77;
  --line: rgba(21, 25, 30, 0.1);
  --dark: #111417;
  --dark-2: #1b2026;
  --red: #c0343c;
  --red-2: #8f1d22;
  --on-dark: #e9e6df;
  --sans: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --display: 'Bricolage Grotesque', var(--sans);
  --max: 1160px;
  --radius: 16px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow: 0 18px 44px rgba(15, 23, 30, 0.12);
  --pad: 20px;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: 76px;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
h1,
h2,
h3,
h4 {
  font-family: var(--display);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-wrap: balance;
}
h1 {
  font-size: clamp(2.3rem, 5.2vw + 1rem, 4.6rem);
}
h2 {
  font-size: clamp(1.75rem, 2.4vw + 1rem, 2.9rem);
}
h2 .muted {
  color: var(--muted);
  font-weight: 500;
  font-size: 0.55em;
  display: inline-block;
  margin-top: 6px;
  letter-spacing: 0;
}
.section-dark h2 .muted {
  color: rgba(233, 230, 223, 0.6);
}
h3 {
  font-size: 1.2rem;
  font-weight: 700;
}
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}
.section {
  padding: 64px 0;
}
.section-tint {
  background: var(--bg-tint);
}
.section-dark {
  background: var(--dark);
  color: var(--on-dark);
}
.section-dark h2,
.section-dark h3 {
  color: #fff;
}
.section-head {
  margin-bottom: 26px;
  max-width: 640px;
}
.eyebrow {
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: '';
  width: 18px;
  height: 2px;
  background: var(--red);
}
.center {
  text-align: center;
  margin-top: 28px;
}
.stars {
  color: var(--red);
  letter-spacing: 0.08em;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}
.pill::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #7d8590;
}
.pill.open::before {
  background: #48c774;
  box-shadow: 0 0 0 3px rgba(72, 199, 116, 0.25);
}
.pill.closed::before {
  background: var(--red);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 15px 22px;
  border-radius: 12px;
  border: 1.5px solid transparent;
  cursor: pointer;
  min-height: 50px;
  transition:
    transform 0.3s var(--ease),
    background 0.3s,
    color 0.3s,
    border-color 0.3s,
    box-shadow 0.3s;
}
.btn:active {
  transform: scale(0.98);
}
.btn-sm {
  padding: 10px 16px;
  min-height: 0;
  font-size: 0.86rem;
}
.btn-block {
  width: 100%;
}
.btn-primary {
  background: var(--red);
  color: #fff;
}
.btn-primary:hover {
  background: #d13f47;
  box-shadow: 0 10px 26px rgba(192, 52, 60, 0.3);
}
.btn-outline {
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}
.btn-outline-light {
  border-color: rgba(233, 230, 223, 0.3);
  color: var(--on-dark);
}
.btn-outline-dark {
  border-color: var(--ink);
  color: var(--ink);
}
.btn-outline-dark:hover {
  background: var(--ink);
  color: #fff;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 244, 240, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition:
    border-color 0.3s,
    box-shadow 0.3s;
}
.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 4px 20px rgba(15, 23, 30, 0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  height: 66px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: auto;
}
.brand-mark {
  width: 42px;
  height: 42px;
  flex: none;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand-name {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}
.brand-sub {
  font-family: var(--display);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin-top: 3px;
}
.brand-light {
  color: #fff;
}
.nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
.nav > a:not(.btn) {
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink-2);
}
.nav > a:not(.btn):hover {
  color: var(--red);
}
.header-call {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--red);
  color: #fff;
  align-items: center;
  justify-content: center;
}
.menu-toggle {
  display: none;
  background: none;
  border: 0;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}
.menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition:
    transform 0.3s var(--ease),
    background 0.3s;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  color: #fff;
  overflow: hidden;
  background: var(--dark);
}
.hero-media {
  position: absolute;
  inset: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(17, 20, 23, 0.45) 0%,
    rgba(17, 20, 23, 0.82) 70%,
    rgba(17, 20, 23, 0.95) 100%
  );
}
.hero-content {
  position: relative;
  padding-top: 88px;
  padding-bottom: 40px;
}
.kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 18px;
}
.hero h1 {
  color: #fff;
  margin-bottom: 16px;
}
.lead {
  font-size: 1.02rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 520px;
  margin-bottom: 24px;
}
.hero-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  max-width: 420px;
}
.stagger {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.8s var(--ease),
    transform 0.8s var(--ease);
}
body.is-loaded .stagger {
  opacity: 1;
  transform: none;
}
body.is-loaded .stagger:nth-child(2) {
  transition-delay: 0.1s;
}
body.is-loaded .stagger:nth-child(3) {
  transition-delay: 0.2s;
}
body.is-loaded .stagger:nth-child(4) {
  transition-delay: 0.3s;
}

/* ---------- Sign band (like the storefront) ---------- */
.sign {
  background: var(--dark);
  color: #fff;
  text-align: center;
  font-family: var(--display);
}
.sign-top {
  padding: 12px var(--pad) 10px;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.sign-red {
  background: linear-gradient(180deg, #c8313a, #8f1d22);
  padding: 10px var(--pad);
  font-style: italic;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  box-shadow: inset 0 -4px 0 #2b313a;
}

/* ---------- Quick actions ---------- */
.quick {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.quick-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.quick-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 16px 6px 14px;
  gap: 4px;
  border-right: 1px solid var(--line);
  transition: background 0.2s;
}
.quick-item:last-child {
  border-right: 0;
}
.quick-item:hover {
  background: var(--bg);
}
.quick-item svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--red);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  margin-bottom: 2px;
}
.quick-item span {
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.86rem;
}
.quick-item small {
  font-size: 0.68rem;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

/* ---------- Horizontal scrollers (phone) ---------- */
.scroller-wrap {
  overflow: hidden;
}
.scroller {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-left: var(--pad);
  padding-bottom: 8px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.scroller::-webkit-scrollbar {
  display: none;
}
.scroller > * {
  scroll-snap-align: start;
  flex: 0 0 78%;
}
.scroller::after {
  content: '';
  flex: 0 0 6px;
}
.scroller-hint {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 4px;
}

/* ---------- Services ---------- */
.service {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition:
    transform 0.4s var(--ease),
    box-shadow 0.4s var(--ease);
}
.service:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.service img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.service-body {
  padding: 18px 18px 20px;
}
.service-num {
  font-family: var(--display);
  font-weight: 800;
  font-size: 0.78rem;
  color: var(--red);
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 6px;
}
.service h3 {
  margin-bottom: 6px;
  font-size: 1.15rem;
}
.service p {
  color: var(--muted);
  font-size: 0.9rem;
}

/* ---------- About ---------- */
.about-grid {
  display: grid;
  gap: 28px;
}
.about-media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}
.about-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.photo-tag {
  position: absolute;
  left: 12px;
  bottom: 12px;
  background: rgba(17, 20, 23, 0.85);
  color: #fff;
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 8px;
}
.about-copy > p {
  color: rgba(233, 230, 223, 0.75);
  margin-top: 14px;
  font-size: 1rem;
}
.facts {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 24px 0 20px;
}
.facts li {
  background: var(--dark-2);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  padding: 14px 12px;
}
.facts strong {
  display: block;
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.6rem;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
}
.facts span {
  font-size: 0.72rem;
  color: rgba(233, 230, 223, 0.6);
  line-height: 1.3;
  display: block;
}
.checks {
  list-style: none;
  display: grid;
  gap: 8px;
  font-size: 0.95rem;
}
.checks li {
  padding-left: 28px;
  position: relative;
}
.checks li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--red);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='12'/%3E%3Cpath d='M7 12.5l3 3 7-7' stroke='%23000' stroke-width='2.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='12'/%3E%3Cpath d='M7 12.5l3 3 7-7' stroke='%23000' stroke-width='2.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    center / contain no-repeat;
}

/* ---------- Steps ---------- */
.steps {
  list-style: none;
  display: grid;
  gap: 10px;
}
.steps li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: start;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px;
}
.step-num {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--dark);
  color: #fff;
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.2rem;
  display: grid;
  place-items: center;
}
.steps h3 {
  font-size: 1.05rem;
  margin-bottom: 4px;
}
.steps p {
  color: var(--muted);
  font-size: 0.9rem;
}

/* ---------- Photo strip ---------- */
.strip {
  display: grid;
  gap: 14px;
}
.strip figure {
  display: grid;
  grid-template-columns: 120px 1fr;
  border-radius: 14px;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
}
.strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 110px;
}
.strip figcaption {
  padding: 14px 16px;
  font-size: 0.88rem;
  color: var(--muted);
  align-self: center;
}
.strip figcaption strong {
  display: block;
  font-family: var(--display);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 2px;
  font-size: 1rem;
}

/* ---------- Reviews ---------- */
.review {
  background: var(--dark-2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
}
.review .stars {
  margin-bottom: 10px;
  font-size: 0.85rem;
}
.review p {
  font-size: 0.97rem;
  color: #fff;
  margin-bottom: 14px;
  flex: 1;
}
.review footer {
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.82rem;
  color: rgba(233, 230, 223, 0.6);
}

/* ---------- Hours + map ---------- */
.hours-grid {
  display: grid;
  gap: 16px;
}
.hours-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 20px;
}
.status-line {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
  font-weight: 600;
  margin: 12px 0 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--bg);
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #7d8590;
}
.dot.open {
  background: #48c774;
  box-shadow: 0 0 0 3px rgba(72, 199, 116, 0.25);
}
.dot.closed {
  background: var(--red);
}
.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin: 14px 0 18px;
}
.hours-table td {
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.92rem;
}
.hours-table td:last-child {
  text-align: right;
  color: var(--muted);
  white-space: nowrap;
}
.hours-table tr.today td {
  font-weight: 600;
  color: var(--ink);
}
.hours-table tr.today td:first-child::after {
  content: 'Today';
  margin-left: 8px;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  border: 1px solid var(--red);
  padding: 2px 6px;
  border-radius: 999px;
  vertical-align: middle;
}
address {
  font-style: normal;
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 18px;
}
address strong {
  color: var(--ink);
}
.hours-actions {
  display: grid;
  gap: 10px;
}
.map {
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 260px;
}
.map iframe {
  width: 100%;
  height: 100%;
  min-height: 260px;
  border: 0;
  display: block;
}

/* ---------- Booking ---------- */
.book-grid {
  display: grid;
  gap: 24px;
}
.book-copy > p {
  color: var(--muted);
  margin: 12px 0 20px;
}
.faq {
  border-top: 1px solid var(--line);
  padding: 12px 0;
}
.faq:last-of-type {
  border-bottom: 1px solid var(--line);
}
.faq summary {
  cursor: pointer;
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.98rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary::after {
  content: '+';
  font-size: 1.3rem;
  color: var(--red);
  flex: none;
}
.faq[open] summary::after {
  content: '–';
}
.faq p {
  color: var(--muted);
  padding-top: 8px;
  font-size: 0.92rem;
}
.book-form {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 18px;
}
.row {
  display: grid;
  gap: 0;
}
.field {
  margin-bottom: 14px;
}
.field label {
  display: block;
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--ink-2);
  margin-bottom: 6px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  font: inherit;
  font-size: 1rem;
  padding: 13px 14px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: var(--bg);
  color: var(--ink);
  outline: none;
  min-height: 48px;
  -webkit-appearance: none;
  appearance: none;
}
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23646c77' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px;
  padding-right: 38px;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--red);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(192, 52, 60, 0.15);
}
.field.error input {
  border-color: var(--red);
}
.form-note {
  margin-top: 12px;
  text-align: center;
  font-size: 0.9rem;
  color: var(--red-2);
  min-height: 1.4em;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--dark);
  color: rgba(233, 230, 223, 0.7);
  padding: 48px 0 24px;
}
.footer-grid {
  display: grid;
  gap: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-tag {
  margin-top: 12px;
  max-width: 300px;
  font-size: 0.92rem;
}
.site-footer h4 {
  color: #fff;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.site-footer a:not(.brand) {
  display: block;
  margin-bottom: 6px;
}
.site-footer a:not(.brand):hover {
  color: #fff;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding-top: 18px;
  font-size: 0.82rem;
}
.footer-bottom a {
  display: inline !important;
}

/* ---------- Sticky call bar ---------- */
.callbar {
  position: sticky;
  bottom: 0;
  z-index: 80;
  display: flex;
  gap: 10px;
  width: 100%;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: rgba(17, 20, 23, 0.96);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.callbar a {
  flex: 1;
  text-align: center;
  padding: 14px;
  border-radius: 12px;
  font-family: var(--display);
  font-weight: 700;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
}
.callbar a.primary {
  background: var(--red);
  border-color: var(--red);
}

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.8s var(--ease),
    transform 0.8s var(--ease);
  transition-delay: var(--d, 0s);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
.reveal-clip {
  clip-path: inset(0 0 100% 0);
  transition: clip-path 1s var(--ease);
  transition-delay: var(--d, 0s);
}
.reveal-clip.is-visible {
  clip-path: inset(0 0 0 0);
}

/* =========================================================
   PHONE menu
   ========================================================= */
@media (max-width: 839px) {
  .nav {
    position: fixed;
    inset: 0;
    background: var(--dark);
    color: #fff;
    flex-direction: column;
    justify-content: center;
    gap: 22px;
    transform: translateY(-110%);
    visibility: hidden;
    pointer-events: none;
    transition:
      transform 0.45s var(--ease),
      visibility 0s linear 0.45s;
    z-index: 90;
    padding: 0 var(--pad);
  }
  .nav.is-open {
    transform: none;
    visibility: visible;
    pointer-events: auto;
    transition:
      transform 0.45s var(--ease),
      visibility 0s;
  }
  .nav > a:not(.btn) {
    color: #fff;
    font-size: 1.6rem;
    font-weight: 800;
  }
  .nav .btn {
    margin-top: 10px;
    width: 100%;
    max-width: 320px;
    min-height: 50px;
    font-size: 1rem;
  }
  .header-call,
  .menu-toggle {
    display: flex;
  }
  .menu-toggle {
    position: relative;
    z-index: 95;
  }
  .menu-toggle.is-open span {
    background: #fff;
  }
  .menu-toggle.is-open span:nth-child(1) {
    transform: translateY(4px) rotate(45deg);
  }
  .menu-toggle.is-open span:nth-child(2) {
    transform: translateY(-4px) rotate(-45deg);
  }
}

/* =========================================================
   TABLET + DESKTOP
   ========================================================= */
@media (min-width: 840px) {
  :root {
    --pad: 24px;
  }
  .section {
    padding: 100px 0;
  }
  .section-head {
    margin-bottom: 44px;
  }
  .header-inner {
    height: 76px;
  }
  .brand-mark {
    width: 48px;
    height: 48px;
  }
  .callbar {
    display: none;
  }
  .hero-content {
    padding-top: 150px;
    padding-bottom: 120px;
    max-width: 760px;
    margin-left: max(var(--pad), calc((100% - var(--max)) / 2));
  }
  .hero-shade {
    background:
      linear-gradient(
        90deg,
        rgba(17, 20, 23, 0.92) 0%,
        rgba(17, 20, 23, 0.7) 45%,
        rgba(17, 20, 23, 0.25) 100%
      ),
      linear-gradient(0deg, rgba(17, 20, 23, 0.7) 0%, transparent 40%);
  }
  .lead {
    font-size: 1.15rem;
  }
  .hero-actions {
    display: flex;
  }
  .hero-actions .btn {
    padding: 16px 28px;
  }
  .sign-top {
    font-size: 0.86rem;
  }
  .sign-red {
    font-size: 1.3rem;
    padding: 12px;
  }
  .quick-item {
    flex-direction: row;
    gap: 12px;
    padding: 18px 24px;
    text-align: left;
    justify-content: center;
    align-items: center;
  }
  .quick-item svg {
    margin: 0;
  }
  .quick-item span {
    font-size: 0.95rem;
  }
  .scroller {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    overflow: visible;
    padding-bottom: 0;
  }
  .scroller > * {
    flex: none;
  }
  .scroller::after {
    display: none;
  }
  .scroller-hint {
    display: none;
  }
  .reviews.scroller {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-grid {
    grid-template-columns: 1fr 1.1fr;
    gap: 64px;
    align-items: center;
  }
  .steps {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  .steps li {
    grid-template-columns: 1fr;
    padding: 26px 22px;
  }
  .strip {
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }
  .strip figure {
    grid-template-columns: 1fr;
  }
  .strip img {
    aspect-ratio: 4 / 3;
  }
  .strip figcaption {
    padding: 18px 20px 22px;
  }
  .hours-grid {
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
  }
  .hours-card {
    padding: 40px;
  }
  .hours-actions {
    display: flex;
  }
  .map,
  .map iframe {
    min-height: 460px;
  }
  .book-grid {
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
    align-items: start;
  }
  .book-form {
    padding: 36px;
    box-shadow: var(--shadow);
  }
  .row {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .footer-grid {
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 40px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  .reveal,
  .stagger {
    opacity: 1;
    transform: none;
  }
  .reveal-clip {
    clip-path: none;
  }
}
