:root {
  --bg: #FBF9F6;
  --text: #16202B;
  --brand: #1A7A40;
  --brand-dark: #146033;
  --brand-tint-bg: #E7F1EA;
  --brand-tint-text: #146033;
  --muted-1: #4A5A69;
  --muted-2: #5A6875;
  --muted-3: #7A8794;
  --muted-4: #8E9CAA;
  --border-1: #E6E0D7;
  --border-2: #E1DACF;
  --border-3: #DDD6CB;
  --border-4: #D8D1C6;
  --border-5: #D0C8BC;
  --section-bg: #F5F1EA;
  --card-bg: #FFFDFA;
  --field-bg: #FBF9F6;
  --dark-bg: #16202B;
  --dark-text: #F3EFE9;
  --dark-text-2: #DCE3E9;
  --dark-border: #2B3744;
  --dark-border-2: #35424F;
  --dark-card-bg: #1B2632;
  --accent-mint: #4FB374;
  --star: #E8901F;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  padding-left: env(safe-area-inset-left, 0px);
  padding-right: env(safe-area-inset-right, 0px);
  background: var(--bg);
  color: var(--text);
  font-family: 'Schibsted Grotesk', Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-wrap: pretty;
}

a { color: var(--text); text-decoration: none; }
a:hover { color: var(--brand); }

input, select, textarea, button { font: inherit; color: inherit; }

img, video { max-width: 100%; }

.mono {
  font-family: 'IBM Plex Mono', monospace;
}

.wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- marquee bar ---------- */
.marquee-bar {
  background: var(--brand);
  color: #F2F8F4;
  overflow: hidden;
  position: relative;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: pg-marquee 26s linear infinite;
}
.marquee-group {
  display: flex;
  align-items: center;
  gap: 44px;
  padding: 11px 22px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
}
.marquee-group span.dot { opacity: 0.5; }
@keyframes pg-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 249, 246, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-1);
}
.site-header .wrap {
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-inline-end: auto;
}
.brand-mark {
  width: 44px;
  height: 44px;
  overflow: hidden;
  position: relative;
  display: block;
  flex: none;
}
.brand-mark img {
  position: absolute;
  width: 107px;
  height: 107px;
  max-width: none;
  left: -31px;
  top: -24px;
  mix-blend-mode: multiply;
}
.brand-name {
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.02em;
  color: #14572B;
  white-space: nowrap;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 15px;
  font-weight: 500;
  flex-wrap: wrap;
}
.main-nav a { color: var(--muted-1); }
.main-nav a.is-home { color: var(--text); }
.main-nav a:hover { color: var(--brand); }
.main-nav .nav-call { display: none; }
.header-actions { display: flex; align-items: center; gap: 10px; }
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid var(--border-4);
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
  flex: none;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  width: 18px;
  height: 2px;
  background: var(--text);
  display: block;
}
.nav-toggle span {
  position: relative;
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
.btn-call {
  padding: 11px 16px;
  border: 1px solid var(--border-4);
  border-radius: 10px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
}
.btn-call:hover { border-color: var(--text); color: var(--text); }

@media (max-width: 800px) {
  .site-header .wrap { flex-wrap: nowrap; gap: 14px; position: relative; }
  .header-actions { gap: 8px; }
  .header-actions .btn-call { display: none; }
  .nav-toggle { display: inline-flex; }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 6px 24px 14px;
    background: var(--bg);
    border-bottom: 1px solid var(--border-1);
    box-shadow: 0 12px 24px rgba(22, 32, 43, 0.1);
  }
  .main-nav.is-open { display: flex; }
  .main-nav a {
    padding: 13px 0;
    border-bottom: 1px solid var(--border-1);
  }
  .main-nav a:last-child { border-bottom: none; }
  .main-nav .nav-call { display: block; color: var(--brand); font-weight: 600; }
}

@media (max-width: 380px) {
  .brand-name { display: none; }
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  min-height: clamp(520px, 78vh, 760px);
  padding: clamp(56px, 9vw, 110px) 0 clamp(52px, 8vw, 96px);
  background: var(--dark-bg);
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: url("assets/hero-poster.jpg");
  background-size: cover;
  background-position: center 28%;
  background-color: var(--dark-bg);
}
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  display: block;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 14, 20, 0.5) 0%, rgba(9, 14, 20, 0.44) 45%, rgba(9, 14, 20, 0.58) 100%);
}
.hero-content { width: 100%; }
.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #EAF3EC;
}
.eyebrow-pill .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-mint);
  display: inline-block;
}
.hero h1 {
  margin: 20px 0 0;
  max-width: 18ch;
  font-size: clamp(38px, 6vw, 66px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  font-weight: 700;
  color: #FFFFFF;
  text-shadow: 0 2px 24px rgba(9, 14, 20, 0.4);
}
.hero-lede {
  margin: 22px 0 0;
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
  max-width: 52ch;
  text-shadow: 0 1px 16px rgba(9, 14, 20, 0.4);
}
.hero-ctas { margin: 32px 0 0; display: flex; flex-wrap: wrap; gap: 12px; }
.btn-primary-lg {
  padding: 17px 32px;
  border-radius: 12px;
  background: var(--brand);
  color: #F2F8F4;
  font-weight: 600;
  font-size: 17px;
  box-shadow: 0 8px 24px rgba(9, 14, 20, 0.3);
}
.btn-primary-lg:hover { background: var(--brand-dark); color: #F2F8F4; }
.btn-outline-lg {
  padding: 17px 28px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: #FFFFFF;
  font-weight: 600;
  font-size: 17px;
  backdrop-filter: blur(2px);
}
.btn-outline-lg:hover { background: #FFFFFF; color: var(--text); border-color: #FFFFFF; }
.hero-hours {
  margin: 18px 0 0;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.72);
  letter-spacing: 0.04em;
}

@media (prefers-reduced-motion: reduce) {
  .hero-video { display: none; }
}

/* ---------- rating strip ---------- */
.rating-strip {
  border-top: 1px solid var(--border-1);
  border-bottom: 1px solid var(--border-1);
  background: var(--section-bg);
}
.rating-strip .wrap {
  padding: 28px 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
  gap: 24px;
}
.stat-num { font-size: 30px; font-weight: 700; letter-spacing: -0.03em; }
.stat-num .star { color: var(--star); }
.stat-label { margin-top: 4px; font-size: 14px; color: #5A6875; }

/* ---------- section shells ---------- */
.section { padding: clamp(56px, 8vw, 104px) 24px; }
.section-head {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 40px;
}
.kicker {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
}
.section-head h2 {
  margin: 12px 0 0;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 700;
  max-width: 22ch;
}
.text-link {
  font-weight: 600;
  font-size: 16px;
  color: var(--brand);
  border-bottom: 2px solid var(--brand);
  padding-bottom: 2px;
}

/* ---------- services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: 16px;
}
.service-card {
  padding: 28px;
  border: 1px solid var(--border-1);
  border-radius: 16px;
  background: var(--card-bg);
}
.service-card:hover { border-color: var(--text); }
.service-card .index { font-family: 'IBM Plex Mono', monospace; font-size: 12px; color: var(--brand); }
.service-card h3 { margin: 14px 0 8px; font-size: 21px; letter-spacing: -0.02em; font-weight: 600; }
.service-card p { margin: 0; font-size: 15.5px; line-height: 1.55; color: var(--muted-2); }
.service-card--featured {
  border: 1px solid var(--text);
  background: var(--dark-bg);
  color: #F3EFE9;
}
.service-card--featured .index { color: var(--accent-mint); }
.service-card--featured p { color: #B7C2CC; }

/* ---------- about ---------- */
.about-section {
  background: var(--section-bg);
  border-top: 1px solid var(--border-1);
  border-bottom: 1px solid var(--border-1);
}
.about-grid {
  padding: clamp(56px, 8vw, 100px) 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.about-photo {
  width: 100%;
  aspect-ratio: 4 / 3.6;
  object-fit: cover;
  object-position: center 22%;
  border-radius: 18px;
  display: block;
}
.about-copy h2 {
  margin: 12px 0 0;
  font-size: clamp(28px, 3.6vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-weight: 700;
}
.about-copy p { margin: 20px 0 0; font-size: 17px; line-height: 1.6; color: var(--muted-1); }
.about-copy p + p { margin-top: 16px; }
.about-ctas { margin: 28px 0 0; display: flex; flex-wrap: wrap; gap: 12px; }
.btn-dark {
  padding: 15px 26px;
  border-radius: 11px;
  background: var(--text);
  color: var(--bg);
  font-weight: 600;
  font-size: 16px;
}
.btn-dark:hover { background: var(--brand); color: #F2F8F4; }
.btn-block { width: 100%; border: none; cursor: pointer; }
.btn-outline {
  padding: 15px 26px;
  border-radius: 11px;
  border: 1px solid var(--border-5);
  font-weight: 600;
  font-size: 16px;
}
.btn-outline:hover { border-color: var(--text); }

/* ---------- gallery ---------- */
.gallery-head {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 36px;
}
.gallery-head p { margin: 0; max-width: 34ch; font-size: 15.5px; line-height: 1.55; color: var(--muted-2); }
.gallery-carousel { position: relative; }
.gallery-track {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.gallery-track::-webkit-scrollbar { display: none; }
.gallery-track:focus-visible { outline: 2px solid var(--brand); outline-offset: 6px; border-radius: 14px; }
.gallery-slide {
  margin: 0;
  flex: 0 0 calc((100% - 28px) / 3);
  scroll-snap-align: start;
}
.gallery-slide img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 14px;
  display: block;
}
.gallery-slide img.pos-team { object-position: center 20%; }
.gallery-slide figcaption {
  margin-top: 10px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-3);
}
.gallery-arrow {
  position: absolute;
  top: calc(50% - 22px);
  transform: translateY(-50%);
  z-index: 2;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid var(--border-1);
  border-radius: 50%;
  background: rgba(251, 249, 246, 0.94);
  backdrop-filter: blur(6px);
  color: var(--text);
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(22, 32, 43, 0.12);
}
.gallery-arrow svg { width: 20px; height: 20px; display: block; }
.gallery-arrow--prev { inset-inline-start: -8px; }
.gallery-arrow--next { inset-inline-end: -8px; }
.gallery-arrow:hover { border-color: var(--text); }
.gallery-arrow:focus-visible { outline: 2px solid var(--brand); outline-offset: 2px; }
.gallery-arrow[disabled] { opacity: 0; pointer-events: none; }
.gallery-arrow[hidden] { display: none; }
.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}
.gallery-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: var(--border-4);
  cursor: pointer;
  transition: background 0.2s ease, width 0.2s ease;
}
.gallery-dot[aria-current="true"] { background: var(--brand); width: 22px; border-radius: 999px; }
.gallery-dot:focus-visible { outline: 2px solid var(--brand); outline-offset: 3px; }

@media (max-width: 1000px) {
  .gallery-slide { flex-basis: calc((100% - 14px) / 2); }
}
@media (max-width: 620px) {
  .gallery-slide { flex-basis: 100%; }
  .gallery-arrow { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .gallery-track { scroll-behavior: auto; }
  .gallery-dot { transition: none; }
}

.results-block {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--border-1);
}
.results-head {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 28px;
}
.results-head h3 {
  margin: 12px 0 0;
  font-size: clamp(24px, 2.8vw, 34px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-weight: 700;
}
.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: 16px;
}
.results-grid figure {
  margin: 0;
  border: 1px solid var(--border-1);
  border-radius: 16px;
  overflow: hidden;
  background: var(--card-bg);
}
.results-grid img { width: 100%; height: auto; display: block; }
.results-grid figcaption { padding: 18px 22px; font-size: 16px; line-height: 1.5; color: var(--muted-1); }

/* ---------- social proof carousel ---------- */
.reviews-section { background: var(--dark-bg); color: #F3EFE9; }
.reviews-inner { padding: clamp(56px, 8vw, 100px) 24px; }
.social-head {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 40px;
}
.social-head .kicker { color: var(--accent-mint); }
.social-title {
  margin: 12px 0 0;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-weight: 700;
}
.social-title-main { display: block; color: var(--dark-text); }
.social-title-accent {
  display: block;
  color: var(--accent-mint);
  font-style: italic;
  font-weight: 600;
}
.carousel-nav { display: flex; gap: 10px; align-items: center; }
.carousel-btn {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid var(--dark-border-2);
  border-radius: 50%;
  background: var(--dark-bg);
  color: #F3EFE9;
  cursor: pointer;
}
.carousel-btn svg { width: 20px; height: 20px; display: block; }
.carousel-btn:hover { border-color: var(--accent-mint); color: var(--accent-mint); }
.carousel-btn:focus-visible { outline: 2px solid var(--accent-mint); outline-offset: 2px; }

.carousel { overflow: hidden; }
.carousel-track {
  display: flex;
  gap: 16px;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.social-card {
  flex: 0 0 calc((100% - 48px) / 4);
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: var(--dark-card-bg);
}
.social-card img.social-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
}
.social-user {
  position: absolute;
  top: 12px;
  inset-inline-start: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: calc(100% - 24px);
  padding-block: 5px;
  padding-inline: 5px 12px;
  border-radius: 999px;
  background: rgba(11, 17, 24, 0.62);
  backdrop-filter: blur(6px);
}
.social-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  flex: none;
  background: var(--bg);
  isolation: isolate;
}
.social-avatar img {
  position: absolute;
  width: 68px;
  height: 68px;
  max-width: none;
  left: -19.7px;
  top: -15.3px;
  mix-blend-mode: multiply;
}
.social-username {
  font-size: 13px;
  font-weight: 600;
  color: #F3EFE9;
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 1000px) {
  .social-card { flex-basis: calc((100% - 16px) / 2); }
}
@media (max-width: 620px) {
  .social-card { flex-basis: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  .carousel-track { transition: none; }
}

/* ---------- booking ---------- */
.booking-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: clamp(28px, 4vw, 56px);
}
.booking-copy h2 {
  margin: 12px 0 0;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 700;
}
.booking-copy > p { margin: 18px 0 0; font-size: 17px; line-height: 1.6; color: var(--muted-1); max-width: 44ch; }
.booking-calls { margin: 28px 0 0; display: grid; gap: 12px; }
.call-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  border: 1px solid var(--border-1);
  border-radius: 14px;
  background: var(--card-bg);
}
.call-row:hover { border-color: var(--text); }
.call-row .label { font-weight: 600; font-size: 16.5px; }
.call-row .num { font-family: 'IBM Plex Mono', monospace; font-size: 15px; color: var(--brand); }

.booking-form, .contact-form-card form {
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--border-1);
  border-radius: 18px;
  background: var(--card-bg);
  display: grid;
  gap: 16px;
}
.contact-form-card form { padding: 0; border: none; }
.field { display: grid; gap: 7px; font-size: 14px; font-weight: 500; color: #3C4B59; }
.field input, .field select, .field textarea {
  padding: 14px 16px;
  border: 1px solid var(--border-3);
  border-radius: 10px;
  background: var(--field-bg);
  font-size: 16px;
  width: 100%;
  min-width: 0;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 2px solid var(--brand);
  outline-offset: 1px;
  border-color: var(--brand);
}
.field textarea { resize: vertical; }
.field-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(140px, 100%), 1fr));
  gap: 16px;
}
.btn-submit {
  margin-top: 4px;
  padding: 17px 24px;
  border: none;
  border-radius: 12px;
  background: var(--brand);
  color: #F2F8F4;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
}
.btn-submit:hover { background: var(--brand-dark); color: #F2F8F4; }
.form-status { margin: 0; font-size: 13.5px; color: var(--muted-3); text-align: center; }

/* ---------- contact ---------- */
.contact-section { background: var(--section-bg); border-top: 1px solid var(--border-1); }
.contact-section .section { padding: clamp(56px, 8vw, 100px) 24px; }
.contact-section h2 { margin: 12px 0 36px; font-size: clamp(30px, 4vw, 46px); line-height: 1.08; letter-spacing: -0.03em; font-weight: 700; }

.branches-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: 16px;
}
.branch-card {
  border: 1px solid var(--border-2);
  border-radius: 18px;
  overflow: hidden;
  background: var(--card-bg);
}
.branch-map {
  aspect-ratio: 16 / 9;
  border-bottom: 1px solid var(--border-2);
  display: block;
  width: 100%;
}
.branch-map iframe { width: 100%; height: 100%; border: 0; display: block; }
.branch-body { padding: 26px; }
.branch-body h3 { margin: 0; font-size: 22px; letter-spacing: -0.02em; font-weight: 700; }
.branch-body p { margin: 10px 0 0; font-size: 16px; line-height: 1.55; color: var(--muted-1); }
.branch-body p.hours { margin: 6px 0 0; color: var(--muted-1); }
.branch-ctas { margin: 20px 0 0; display: flex; flex-wrap: wrap; gap: 10px; }
.btn-dark-sm {
  padding: 13px 20px;
  border-radius: 10px;
  background: var(--text);
  color: var(--bg);
  font-weight: 600;
  font-size: 15.5px;
}
.btn-dark-sm:hover { background: var(--brand); color: #F2F8F4; }
.btn-outline-sm {
  padding: 13px 20px;
  border-radius: 10px;
  border: 1px solid var(--border-5);
  font-weight: 600;
  font-size: 15.5px;
}
.btn-outline-sm:hover { border-color: var(--text); }

.contact-lower {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: 16px;
}
.contact-form-card, .contact-info-card {
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid var(--border-2);
  border-radius: 18px;
  background: var(--card-bg);
}
.contact-form-card h3 { margin: 0 0 6px; font-size: 20px; font-weight: 700; letter-spacing: -0.02em; }
.contact-form-card > p { margin: 0 0 20px; font-size: 15.5px; line-height: 1.55; color: var(--muted-2); }
.contact-info-card { display: grid; gap: 18px; align-content: start; }
.contact-info-card .kicker-sm {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand);
}
.contact-info-card p { margin: 8px 0 0; font-size: 16.5px; line-height: 1.5; color: var(--text); }
.contact-info-card .divider { height: 1px; background: #EAE4DA; }
.contact-info-card .phones { margin: 8px 0 0; display: grid; gap: 4px; font-size: 16.5px; }
.contact-info-card .socials { margin: 8px 0 0; display: flex; gap: 10px; flex-wrap: wrap; }
.pill-link {
  padding: 11px 18px;
  border: 1px solid var(--border-2);
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
}
.pill-link:hover { border-color: var(--text); }

/* ---------- footer ---------- */
.site-footer { background: var(--dark-bg); color: #F3EFE9; }
.footer-top {
  padding: clamp(44px, 6vw, 72px) 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
  gap: 32px;
  align-items: start;
}
.footer-brand { display: flex; align-items: center; gap: 10px; }
.footer-badge {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--bg);
  overflow: hidden;
  position: relative;
  display: block;
  flex: none;
}
.footer-badge img {
  position: absolute;
  width: 83px;
  height: 83px;
  max-width: none;
  left: -24px;
  top: -18.5px;
  mix-blend-mode: multiply;
}
.footer-brand-name { font-weight: 700; font-size: 19px; letter-spacing: -0.02em; }
.footer-col-1 p { margin: 16px 0 0; font-size: 15.5px; line-height: 1.55; color: var(--muted-4); max-width: 30ch; }
.footer-col { display: grid; gap: 10px; font-size: 15.5px; }
.footer-col .kicker-sm {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-mint);
}
.footer-col a { color: var(--dark-text-2); }
.footer-col a:hover { color: var(--accent-mint); }
.footer-col span.muted { color: var(--muted-4); }
.footer-ctas { display: grid; gap: 12px; }
.btn-primary-block {
  padding: 16px 26px;
  border-radius: 12px;
  background: var(--brand);
  color: #F2F8F4;
  font-weight: 600;
  font-size: 16.5px;
  text-align: center;
}
.btn-primary-block:hover { background: var(--bg); color: var(--text); }
.btn-outline-block {
  padding: 15px 26px;
  border-radius: 12px;
  border: 1px solid var(--dark-border-2);
  color: #F3EFE9;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
}
.btn-outline-block:hover { border-color: var(--accent-mint); color: var(--accent-mint); }
.footer-bottom {
  margin-top: 40px;
  padding-top: 22px;
  border-top: 1px solid var(--dark-border);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  font-size: 13.5px;
  color: var(--muted-4);
}
.footer-bottom .mono { letter-spacing: 0.04em; }

/* ---------- sticky booking CTA ---------- */
.site-footer { padding-bottom: calc(84px + env(safe-area-inset-bottom, 0px)); }
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 80;
  display: flex;
  justify-content: center;
  padding: 12px calc(16px + env(safe-area-inset-right, 0px)) calc(12px + env(safe-area-inset-bottom, 0px)) calc(16px + env(safe-area-inset-left, 0px));
  background: rgba(251, 249, 246, 0.92);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border-1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0s linear 0.35s;
}
.sticky-cta.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0s;
}
.sticky-cta-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 16px 24px;
  border-radius: 12px;
  background: var(--brand);
  color: #F2F8F4;
  font-weight: 600;
  font-size: 16.5px;
  box-shadow: 0 6px 20px rgba(22, 32, 43, 0.22);
}
.sticky-cta-btn:hover { background: var(--brand-dark); color: #F2F8F4; }
.sticky-cta-btn:focus-visible { outline: 2px solid var(--text); outline-offset: 3px; }

@media (min-width: 700px) {
  .site-footer { padding-bottom: calc(96px + env(safe-area-inset-bottom, 0px)); }
  .sticky-cta {
    pointer-events: none;
    padding: 0 calc(24px + env(safe-area-inset-right, 0px)) calc(22px + env(safe-area-inset-bottom, 0px)) calc(24px + env(safe-area-inset-left, 0px));
    background: none;
    backdrop-filter: none;
    border-top: none;
  }
  .sticky-cta-btn {
    pointer-events: auto;
    width: auto;
    border-radius: 999px;
    padding: 17px 38px;
    box-shadow: 0 10px 30px rgba(22, 32, 43, 0.28);
  }
}

@media (prefers-reduced-motion: reduce) {
  .sticky-cta { transition: opacity 0.01s linear, visibility 0s linear 0.01s; transform: none; }
  .sticky-cta.is-visible { transition: opacity 0.01s linear, visibility 0s; transform: none; }
}

/* ---------- language toggle ---------- */
.lang-toggle {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border-4);
  border-radius: 999px;
  overflow: hidden;
  flex: none;
}
.lang-btn {
  padding: 7px 11px;
  border: none;
  background: transparent;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--muted-1);
  cursor: pointer;
}
.lang-btn[data-lang="ar"] { font-family: 'Cairo', 'Schibsted Grotesk', sans-serif; }
.lang-btn[aria-pressed="true"] { background: var(--brand); color: #F2F8F4; }
.lang-btn:focus-visible { outline: 2px solid var(--brand); outline-offset: -2px; }

/* ---------- Arabic typography ---------- */
html[lang="ar"] body,
html[lang="ar"] input,
html[lang="ar"] select,
html[lang="ar"] textarea,
html[lang="ar"] button {
  font-family: 'Cairo', 'Schibsted Grotesk', Helvetica, Arial, sans-serif;
}
html[lang="ar"] .mono,
html[lang="ar"] .kicker,
html[lang="ar"] .kicker-sm,
html[lang="ar"] .marquee-group,
html[lang="ar"] .eyebrow-pill,
html[lang="ar"] .hero-hours,
html[lang="ar"] .gallery-slide figcaption,
html[lang="ar"] .social-username,
html[lang="ar"] .service-card .index,
html[lang="ar"] .call-row .num,
html[lang="ar"] .reviews-note {
  font-family: 'Cairo', 'IBM Plex Mono', monospace;
}

/* Arabic is a connected script — tracking breaks the joins */
html[lang="ar"] .marquee-group,
html[lang="ar"] .brand-name,
html[lang="ar"] .eyebrow-pill,
html[lang="ar"] .hero h1,
html[lang="ar"] .hero-hours,
html[lang="ar"] .stat-num,
html[lang="ar"] .kicker,
html[lang="ar"] .kicker-sm,
html[lang="ar"] .section-head h2,
html[lang="ar"] .service-card h3,
html[lang="ar"] .about-copy h2,
html[lang="ar"] .gallery-slide figcaption,
html[lang="ar"] .results-head h3,
html[lang="ar"] .social-title,
html[lang="ar"] .social-username,
html[lang="ar"] .booking-copy h2,
html[lang="ar"] .contact-section h2,
html[lang="ar"] .branch-body h3,
html[lang="ar"] .contact-form-card h3,
html[lang="ar"] .footer-brand-name,
html[lang="ar"] .footer-bottom .mono,
html[lang="ar"] .reviews-note {
  letter-spacing: normal;
}

/* Arabic faces have no true italic; synthetic slanting looks broken */
html[lang="ar"] .social-title-accent { font-style: normal; }

/* ---------- RTL mirroring ---------- */
@keyframes pg-marquee-rtl {
  from { transform: translateX(0); }
  to { transform: translateX(50%); }
}
html[dir="rtl"] .marquee-track { animation-name: pg-marquee-rtl; }

html[dir="rtl"] .gallery-arrow svg,
html[dir="rtl"] .carousel-btn svg { transform: scaleX(-1); }

/* ---------- motion ---------- */
/* Hidden state is scoped to html.js so a no-JS visitor never gets blank sections. */
html.js [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity, transform;
}
html.js [data-reveal].is-revealed {
  opacity: 1;
  transform: none;
  will-change: auto;
}

@keyframes pg-rise {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: none; }
}
html.js .hero-content > * {
  opacity: 0;
  animation: pg-rise 0.85s cubic-bezier(0.2, 0.7, 0.3, 1) forwards;
}
html.js .hero-content > *:nth-child(1) { animation-delay: 0.05s; }
html.js .hero-content > *:nth-child(2) { animation-delay: 0.14s; }
html.js .hero-content > *:nth-child(3) { animation-delay: 0.23s; }
html.js .hero-content > *:nth-child(4) { animation-delay: 0.32s; }
html.js .hero-content > *:nth-child(5) { animation-delay: 0.41s; }

.site-header { transition: box-shadow 0.3s ease; }
.site-header.is-scrolled { box-shadow: 0 6px 20px rgba(22, 32, 43, 0.07); }

.service-card,
.branch-card,
.results-grid figure,
.call-row,
.social-card {
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.28s ease, box-shadow 0.28s ease;
}
.service-card:hover,
.branch-card:hover,
.results-grid figure:hover,
.call-row:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(22, 32, 43, 0.09);
}
.social-card:hover { transform: translateY(-4px); }

.gallery-slide img,
.results-grid img {
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery-slide:hover img { transform: scale(1.04); }

.btn-primary-lg,
.btn-outline-lg,
.btn-dark,
.btn-outline,
.btn-dark-sm,
.btn-outline-sm,
.btn-call,
.btn-submit,
.btn-primary-block,
.btn-outline-block,
.sticky-cta-btn,
.text-link,
.pill-link,
.lang-btn {
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.12s ease;
}
.btn-primary-lg:active,
.btn-outline-lg:active,
.btn-dark:active,
.btn-outline:active,
.btn-dark-sm:active,
.btn-outline-sm:active,
.btn-call:active,
.btn-submit:active,
.btn-primary-block:active,
.btn-outline-block:active,
.sticky-cta-btn:active {
  transform: translateY(1px);
}

.carousel-btn,
.gallery-arrow,
.nav-toggle {
  transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease, opacity 0.25s ease;
}

@media (prefers-reduced-motion: reduce) {
  html.js [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
  html.js .hero-content > * {
    opacity: 1;
    animation: none;
  }
  .service-card,
  .branch-card,
  .results-grid figure,
  .call-row,
  .social-card,
  .gallery-slide img,
  .results-grid img,
  .site-header {
    transition: none;
  }
  .service-card:hover,
  .branch-card:hover,
  .results-grid figure:hover,
  .call-row:hover,
  .social-card:hover,
  .gallery-slide:hover img {
    transform: none;
  }
}

/* ---------- mobile refinements ---------- */
.lang-btn {
  min-width: 44px;
  min-height: 40px;
  padding: 7px 10px;
}

@media (max-width: 620px) {
  /* four stacked stat rows wasted most of a screen — pair them up */
  .rating-strip .wrap {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 16px;
  }

  /* buttons were ragged at their intrinsic widths; full width reads as one block */
  .hero-ctas { gap: 10px; }
  .hero-ctas > a { flex: 1 1 100%; text-align: center; }
  .about-ctas > a,
  .branch-ctas > a { flex: 1 1 100%; text-align: center; }

  /* tighten the vertical rhythm — the page ran very long on a phone */
  .section { padding-block: clamp(44px, 11vw, 68px); }
  .about-grid { padding-block: clamp(44px, 11vw, 68px); }
  .reviews-inner { padding-block: clamp(44px, 11vw, 68px); }
  .contact-section .section { padding-block: clamp(44px, 11vw, 68px); }
  .service-card { padding: 22px; }
  .results-block { margin-top: 40px; padding-top: 32px; }
  .section-head { margin-bottom: 28px; }
  .gallery-head,
  .social-head { margin-bottom: 24px; }

  /* 11.5px is too small to read comfortably on a phone */
  .gallery-slide figcaption,
  .kicker-sm { font-size: 12px; }

  /* inline links were only ~22px tall to tap */
  .text-link { display: inline-block; padding-block: 6px; }
}
