/* =========================================================
   GLOBAL PALETTE: the only literal colours in the site.
   Everything else is derived from these via color-mix().
   ========================================================= */
:root {
  --c-red: #d30d13;        /* logo red, brand accent */
  --c-black: #0d1b1e;      /* dark */
  --c-cream: #f2e8e4;      /* light */
  --c-grey: #c2c1c2;       /* neutral grey */
  --c-whatsapp: #25d366;   /* WhatsApp green, WhatsApp only */

  --font: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --maxw: 1200px;
  --shadow-sm: 0 2px 10px color-mix(in srgb, var(--c-black) 8%, transparent);
  --shadow: 0 18px 50px color-mix(in srgb, var(--c-black) 16%, transparent);
}

/* ---------- Light theme (default) ---------- */
:root {
  --bg: var(--c-cream);
  --surface: color-mix(in srgb, var(--c-cream) 45%, #fff);
  --surface-alt: color-mix(in srgb, var(--c-cream) 80%, var(--c-grey));
  --text: var(--c-black);
  --text-muted: color-mix(in srgb, var(--c-black) 55%, var(--c-grey));
  --border: color-mix(in srgb, var(--c-black) 14%, transparent);
  --border-strong: color-mix(in srgb, var(--c-black) 28%, transparent);
  --header-bg: color-mix(in srgb, var(--c-cream) 82%, transparent);
  --on-dark: var(--c-cream);
}

/* ---------- Dark theme ---------- */
:root[data-theme="dark"] {
  --bg: var(--c-black);
  --surface: color-mix(in srgb, var(--c-black) 90%, var(--c-grey));
  --surface-alt: color-mix(in srgb, var(--c-black) 80%, var(--c-grey));
  --text: var(--c-cream);
  --text-muted: color-mix(in srgb, var(--c-cream) 55%, var(--c-black));
  --border: color-mix(in srgb, var(--c-grey) 18%, transparent);
  --border-strong: color-mix(in srgb, var(--c-grey) 34%, transparent);
  --header-bg: color-mix(in srgb, var(--c-black) 82%, transparent);
  --on-dark: var(--c-cream);
}

/* Auto dark mode when the user hasn't chosen explicitly */
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --bg: var(--c-black);
    --surface: color-mix(in srgb, var(--c-black) 90%, var(--c-grey));
    --surface-alt: color-mix(in srgb, var(--c-black) 80%, var(--c-grey));
    --text: var(--c-cream);
    --text-muted: color-mix(in srgb, var(--c-cream) 55%, var(--c-black));
    --border: color-mix(in srgb, var(--c-grey) 18%, transparent);
    --border-strong: color-mix(in srgb, var(--c-grey) 34%, transparent);
    --header-bg: color-mix(in srgb, var(--c-black) 82%, transparent);
  }
}

/* =========================================================
   Base
   ========================================================= */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  transition: background 0.3s ease, color 0.3s ease;
}

a {
  color: inherit;
  text-decoration: none;
}

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

h1,
h2,
h3 {
  font-family: var(--font);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4.4rem);
}

h2 {
  font-size: clamp(1.9rem, 4vw, 2.9rem);
}

h3 {
  font-size: 1.25rem;
  font-weight: 700;
}

p {
  margin: 0;
}

/* ---------- Eyebrow label ---------- */
.eyebrow {
  margin: 0 0 18px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-red);
}

.eyebrow.light {
  color: color-mix(in srgb, var(--c-red) 70%, #fff);
}

/* ---------- Buttons ---------- */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 4px;
  border: 1px solid transparent;
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.large {
  min-height: 54px;
  padding: 0 30px;
  font-size: 0.95rem;
}

/* WhatsApp green, WhatsApp actions only */
.button.accent {
  color: #082015;
  background: var(--c-whatsapp);
}

.button.accent:hover {
  background: color-mix(in srgb, var(--c-whatsapp) 82%, #000);
  color: var(--c-cream);
}

/* Brand red */
.button.primary {
  color: var(--c-cream);
  background: var(--c-red);
}

.button.primary:hover {
  background: color-mix(in srgb, var(--c-red) 82%, #000);
}

.button.outline {
  color: var(--text);
  background: transparent;
  border-color: var(--border-strong);
}

.button.outline:hover {
  border-color: var(--text);
  background: var(--text);
  color: var(--bg);
}

.button.outline-light {
  color: var(--c-cream);
  background: transparent;
  border-color: color-mix(in srgb, var(--c-cream) 55%, transparent);
}

.button.outline-light:hover {
  background: var(--c-cream);
  color: var(--c-black);
  border-color: var(--c-cream);
}

.button.ghost {
  color: var(--text);
  background: transparent;
  border-color: var(--border);
}

.button.ghost:hover {
  border-color: var(--text);
}

/* Button icons (phone / WhatsApp). currentColor = matches button text in any theme. */
.btn-icon {
  width: 1.05em;
  height: 1.05em;
  flex: none;
  color: currentColor;
}

/* ---------- Theme toggle ---------- */
.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: transparent;
  color: var(--text);
  font-size: 1.1rem;
  cursor: pointer;
  transition: border-color 0.18s ease, background 0.18s ease;
}

.theme-toggle:hover {
  border-color: var(--text);
}

.theme-toggle-moon {
  display: none;
}

:root[data-theme="dark"] .theme-toggle-sun {
  display: none;
}

:root[data-theme="dark"] .theme-toggle-moon {
  display: inline;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .theme-toggle-sun {
    display: none;
  }
  :root:not([data-theme="light"]) .theme-toggle-moon {
    display: inline;
  }
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 12px clamp(18px, 4vw, 56px);
  background: var(--header-bg);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 56px;
  height: 50px;
  object-fit: contain;
  object-position: left center;
}

.brand-name {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  font-weight: 700;
  font-style: italic;
  letter-spacing: 0.01em;
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 38px);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.nav a {
  position: relative;
  padding: 4px 0;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1.5px;
  background: var(--c-red);
  transition: width 0.22s ease;
}

.nav a:hover {
  color: var(--c-red);
}

.nav a:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  align-items: center;
}

.header-actions .button {
  min-height: 42px;
  padding: 0 18px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 84vh;
  padding: clamp(80px, 12vw, 150px) clamp(20px, 6vw, 80px);
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      100deg,
      color-mix(in srgb, var(--c-black) 92%, transparent) 0%,
      color-mix(in srgb, var(--c-black) 58%, transparent) 45%,
      color-mix(in srgb, var(--c-black) 18%, transparent) 100%
    ),
    url("assets/img/hero.webp") center / cover;
}

.hero-content {
  position: relative;
  width: min(720px, 100%);
  color: var(--c-cream);
}

/* Eyebrow pill above the hero heading */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  padding: 9px 18px;
  border: 1px solid color-mix(in srgb, var(--c-cream) 35%, transparent);
  border-radius: 999px;
  background: color-mix(in srgb, var(--c-cream) 8%, transparent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-cream);
}

.hero-eyebrow-dot {
  width: 8px;
  height: 8px;
  flex: none;
  border-radius: 50%;
  background: var(--c-red);
}

.hero-content h1 {
  color: var(--c-cream);
  margin-bottom: 22px;
}

/* Typewriter: all characters are present (reserving space) but hidden until revealed */
.hero-content h1 .tw-char {
  visibility: hidden;
}

.hero-content h1 .tw-char.is-on {
  visibility: visible;
}

/* Typewriter caret */
.type-caret {
  display: inline-block;
  width: 0.07em;
  height: 0.95em;
  margin-left: 0.05em;
  vertical-align: -0.08em;
  background: var(--c-cream);
  animation: caretBlink 0.8s steps(1) infinite;
}

@keyframes caretBlink {
  0%,
  50% {
    opacity: 1;
  }
  50.01%,
  100% {
    opacity: 0;
  }
}

.hero-copy {
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
  color: color-mix(in srgb, var(--c-cream) 85%, transparent);
  max-width: 560px;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 30px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: color-mix(in srgb, var(--c-cream) 75%, transparent);
}

.hero-meta span:last-child {
  color: color-mix(in srgb, var(--c-red) 65%, #fff);
}

/* ---------- Open now / Closed badge ---------- */
.open-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.open-status .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  flex: none;
  background: var(--c-grey);
}

.open-status.is-open .dot {
  background: var(--c-whatsapp);
  animation: openpulse 2.2s infinite;
}

.open-status.is-closed .dot {
  background: var(--c-red);
}

@keyframes openpulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  70% {
    box-shadow: 0 0 0 7px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* badge on its own line inside the Visit card */
.visit-card .open-status {
  display: flex;
  margin-top: 12px;
}

/* ---------- How it works ---------- */
.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 4vw, 48px);
}

.steps::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 18%;
  right: 18%;
  height: 2px;
  background: var(--border);
  z-index: 0;
}

.step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 8px;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
  border-radius: 50%;
  background: var(--c-red);
  color: var(--c-cream);
  font-size: 1.4rem;
  font-weight: 800;
}

.step h3 {
  margin-bottom: 10px;
}

.step p {
  color: var(--text-muted);
}

/* ---------- Quick info bar ---------- */
.quick-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--c-black);
  color: var(--c-cream);
}

.quick-info div {
  padding: clamp(22px, 3vw, 34px) clamp(20px, 4vw, 56px);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.quick-info div:last-child {
  border-right: none;
}

.quick-info span {
  display: block;
  margin-bottom: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--c-red) 65%, #fff);
}

.quick-info strong {
  font-weight: 500;
  font-size: 1.02rem;
  color: color-mix(in srgb, var(--c-cream) 92%, transparent);
}

/* ---------- Section base ---------- */
.section {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(36px, 3.5vw, 52px) clamp(20px, 5vw, 40px);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 40px;
}

.section-heading h2 {
  margin-bottom: 18px;
}

.section-heading > p:not(.eyebrow) {
  color: var(--text-muted);
  font-size: 1.08rem;
}

.section-heading.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading.compact {
  max-width: 720px;
}

/* ---------- Services ---------- */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.service-grid article {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.service-grid article:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.service-img {
  overflow: hidden;
}

.service-grid img {
  width: 100%;
  height: clamp(120px, 14vw, 180px);
  aspect-ratio: auto;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-grid article:hover img {
  transform: scale(1.05);
}

.service-body {
  padding: 24px clamp(20px, 3vw, 28px) 28px;
}

.service-body span {
  display: block;
  margin-bottom: 12px;
  font-size: 1rem;
  font-weight: 800;
  color: var(--c-red);
}

.service-body h3 {
  margin-bottom: 10px;
}

.service-body p {
  color: var(--text-muted);
  font-size: 0.96rem;
}

.more-services {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
  margin-top: 36px;
  padding: clamp(28px, 4vw, 40px);
  background: var(--surface-alt);
  border-radius: 6px;
}

.more-services h3 {
  font-size: 1.4rem;
}

.more-services p {
  max-width: 620px;
  margin-top: 8px;
  color: var(--text-muted);
}

.more-services-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

/* ---------- Pricing ---------- */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: clamp(24px, 3vw, 32px);
}

.price-card h3 {
  margin: 0 0 8px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--c-red);
}

.price-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.price-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid var(--border);
}

.price-list li:last-child {
  border-bottom: none;
}

.price-list li > span:first-child {
  color: var(--text-muted);
}

.price-list .price {
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
}

.price-disclaimer {
  max-width: 760px;
  margin: 30px auto 0;
  padding: 16px 22px;
  text-align: center;
  font-size: 0.92rem;
  color: var(--text-muted);
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--c-red);
  border-radius: 6px;
}

.price-note {
  margin: 22px 0 0;
  text-align: center;
  color: var(--text-muted);
}

.price-note a {
  color: var(--c-red);
  font-weight: 700;
}

/* ---------- Reviews ---------- */
.reviews {
  background: var(--surface-alt);
  max-width: none;
}

.reviews > * {
  max-width: var(--maxw);
  margin-left: auto;
  margin-right: auto;
}

/* Carousel */
.reviews-carousel {
  position: relative;
}

.rc-track {
  display: flex;
  gap: 26px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 6px 2px 14px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.rc-track::-webkit-scrollbar {
  display: none;
}

.rc-track .review-card {
  flex: 0 0 calc((100% - 52px) / 3);
  scroll-snap-align: start;
}

.rc-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 24px;
}

.rc-arrow {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  background: var(--surface);
  color: var(--text);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.rc-arrow:hover {
  background: var(--c-red);
  border-color: var(--c-red);
  color: var(--c-cream);
}

.review-card {
  margin: 0;
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.stars {
  color: var(--c-red);
  letter-spacing: 0.12em;
  font-size: 1.05rem;
}

.review-card blockquote {
  margin: 0;
  font-size: 1.12rem;
  line-height: 1.5;
  color: var(--text);
}

.review-card figcaption {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 6px;
  border-top: 1px solid var(--border);
}

.review-card figcaption strong {
  font-weight: 700;
}

.review-card figcaption span {
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  color: var(--text-muted);
}

.reviews-cta {
  margin-top: 40px;
  text-align: center;
}

/* ---------- About ---------- */
.about {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}

.about-image {
  overflow: hidden;
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.about-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.about-copy h2 {
  margin-bottom: 20px;
}

.about-copy p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 16px;
}

.about-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.about-points li {
  position: relative;
  padding-left: 26px;
  font-weight: 500;
  font-size: 0.96rem;
}

.about-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 12px;
  height: 12px;
  border: 1.5px solid var(--c-red);
  border-radius: 50%;
}

/* ---------- CTA banner ---------- */
.cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  padding: clamp(44px, 4.5vw, 64px) clamp(24px, 6vw, 80px);
  background: var(--c-black);
  color: var(--c-cream);
}

.cta h2 {
  color: var(--c-cream);
  margin: 8px 0 12px;
  max-width: 620px;
}

.cta p {
  color: color-mix(in srgb, var(--c-cream) 85%, transparent);
  max-width: 520px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* ---------- Visit ---------- */
.visit-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
}

.visit-card {
  padding: clamp(28px, 4vw, 40px);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
}

.visit-card h3 {
  margin-bottom: 16px;
}

.visit-card > p {
  color: var(--text-muted);
  margin-bottom: 24px;
}

.visit-address {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.visit-address-icon {
  width: 22px;
  height: 22px;
  flex: none;
  margin-top: 2px;
  color: var(--c-red);
}

.eyebrow-icon {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.eyebrow-pin {
  width: 15px;
  height: 15px;
  flex: none;
  color: var(--c-red);
}

.visit-hours {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.visit-line-icon {
  width: 18px;
  height: 18px;
  flex: none;
  margin-top: 3px;
  color: var(--c-red);
}

.visit-card dd a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.visit-card dl {
  margin: 0;
  display: grid;
  gap: 18px;
}

.visit-card dt {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-red);
  margin-bottom: 4px;
}

.visit-card dd {
  margin: 0;
  color: var(--text-muted);
}

.visit-card a:hover {
  color: var(--c-red);
}

.visit-directions {
  margin-top: 26px;
  width: 100%;
}

/* keep the button text white on hover (overrides .visit-card a:hover) */
.visit-card a.visit-directions:hover {
  color: var(--c-cream);
}

.visit-layout iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  border-radius: 6px;
}

/* ---------- FAQ ---------- */
.faq details {
  border-bottom: 1px solid var(--border);
  padding: 8px 0;
}

.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 40px 18px 0;
  font-size: 1.2rem;
  font-weight: 700;
  position: relative;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--c-red);
}

.faq details[open] summary::after {
  content: "−";
}

.faq details p {
  padding: 0 40px 20px 0;
  color: var(--text-muted);
}

/* ---------- Footer ---------- */
.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  padding: clamp(40px, 6vw, 64px) clamp(20px, 5vw, 56px);
  background: var(--c-black);
  color: var(--c-cream);
}

.footer-brand strong {
  font-size: 1.4rem;
  font-weight: 800;
}

.footer-brand p {
  color: color-mix(in srgb, var(--c-cream) 60%, transparent);
  margin-top: 4px;
}

.footer-brand address {
  margin-top: 14px;
  font-style: normal;
  font-size: 0.92rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--c-cream) 70%, transparent);
}

.footer-brand address a:hover {
  color: color-mix(in srgb, var(--c-red) 65%, #fff);
}

.footer-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-actions a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-actions a:hover {
  color: color-mix(in srgb, var(--c-red) 65%, #fff);
}

.footer-copy {
  flex-basis: 100%;
  margin: 8px 0 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.82rem;
  color: color-mix(in srgb, var(--c-cream) 55%, transparent);
}

/* ---------- Sticky mobile bar ---------- */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 40;
  gap: 1px;
  background: var(--border-strong);
  box-shadow: 0 -6px 20px color-mix(in srgb, var(--c-black) 18%, transparent);
}

.mobile-bar a {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 15px 0;
  font-weight: 700;
  letter-spacing: 0.04em;
  background: var(--c-black);
  color: var(--c-cream);
}

.mobile-bar .mobile-bar-wa {
  background: var(--c-whatsapp);
  color: #082015;
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  /* Single-page site: drop jump-links on smaller screens,
     rely on scroll + the sticky Call/WhatsApp bar */
  .nav {
    display: none;
  }

  .service-grid,
  .price-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .rc-track .review-card {
    flex-basis: calc((100% - 26px) / 2);
  }

  .quick-info,
  .about,
  .visit-layout {
    grid-template-columns: 1fr;
  }

  .quick-info div {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .about-image {
    order: 2;
  }

  .cta,
  .site-footer,
  .more-services {
    flex-direction: column;
    align-items: flex-start;
  }

  .more-services-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  /* Mobile header: name left · logo centre · theme toggle right */
  .site-header {
    grid-template-columns: 1fr auto 1fr;
    gap: 12px 14px;
    padding: 12px 18px;
  }

  /* Let the logo and name place themselves directly in the header grid */
  .brand {
    display: contents;
  }

  .brand img {
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
    width: auto;
    height: 40px;
  }

  .brand-name {
    display: block;
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
    font-size: 1.2rem;
    white-space: nowrap;
  }

  .header-actions {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
  }

  /* Contact actions live in the sticky bottom bar on mobile */
  .header-actions .ghost,
  .header-actions .accent {
    display: none;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .price-grid {
    grid-template-columns: 1fr;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .steps::before {
    display: none;
  }

  .rc-track .review-card {
    flex-basis: 86%;
  }

  .about-points {
    grid-template-columns: 1fr;
  }

  .button.large {
    width: 100%;
  }

  body {
    padding-bottom: 56px; /* room for sticky mobile bar */
  }

  .mobile-bar {
    display: flex;
  }
}
