:root {
  --bg: #0f0e0b;
  --bg-elevated: rgba(31, 27, 21, 0.82);
  --bg-soft: rgba(255, 244, 227, 0.06);
  --text: #f6ecdd;
  --text-soft: rgba(246, 236, 221, 0.74);
  --text-faint: rgba(246, 236, 221, 0.54);
  --line: rgba(239, 212, 165, 0.18);
  --accent: #d6a55a;
  --accent-strong: #f3c579;
  --accent-deep: #7c5423;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
  --radius-large: 34px;
  --radius-medium: 24px;
  --radius-small: 14px;
  --max-width: 1180px;
  --font-display: "Cormorant Garamond", serif;
  --font-body: "IBM Plex Sans Arabic", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(214, 165, 90, 0.14), transparent 34%),
    radial-gradient(circle at 80% 15%, rgba(153, 91, 36, 0.18), transparent 26%),
    linear-gradient(135deg, #0f0e0b 0%, #18130f 43%, #0c0b09 100%);
  line-height: 1.6;
  padding-bottom: 86px;
}

body.lightbox-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
  color: inherit;
}

.page-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.16;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: radial-gradient(circle at center, black 30%, transparent 88%);
}

.site-header,
.section,
.signal-band,
.site-footer {
  width: min(calc(100% - 2rem), var(--max-width));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
  margin-top: 1rem;
  padding: 1rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 999px;
  background: rgba(15, 14, 11, 0.42);
  backdrop-filter: blur(18px);
  transition:
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.site-header.scrolled {
  background: rgba(15, 14, 11, 0.8);
  border-color: rgba(214, 165, 90, 0.14);
}

.brand {
  display: inline-flex;
  flex-direction: column;
  line-height: 0.95;
}

.brand-kicker {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.brand-mark {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 0.04em;
}

.site-nav {
  display: inline-flex;
  justify-content: center;
  gap: 1.4rem;
  font-size: 0.95rem;
  color: var(--text-soft);
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  color: var(--text);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 1.15rem;
  border-radius: 999px;
  border: 1px solid rgba(214, 165, 90, 0.3);
  background: linear-gradient(135deg, rgba(214, 165, 90, 0.24), rgba(103, 72, 34, 0.28));
}

.section {
  padding: 5.2rem 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  align-items: center;
  gap: 4rem;
  min-height: min(880px, calc(100svh - 8.5rem));
  padding-top: 3rem;
}

.eyebrow {
  margin: 0 0 1rem;
  font-size: 0.82rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--accent-strong);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-display);
  line-height: 0.94;
}

h1 {
  font-size: clamp(4.6rem, 11vw, 9.2rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #f8edd8;
  text-shadow: 0 18px 36px rgba(0, 0, 0, 0.24);
}

h2 {
  font-size: clamp(2.8rem, 5vw, 4.55rem);
  max-width: 12ch;
}

h3 {
  font-size: clamp(1.7rem, 3vw, 2.2rem);
}

.hero-lead,
.section-lead,
.story-copy p,
.branch-card p,
.cta-shell p,
.site-footer p {
  margin: 0;
  color: var(--text-soft);
}

.hero-lead {
  max-width: 34rem;
  font-size: clamp(1.08rem, 2.1vw, 1.3rem);
  margin-top: 1.3rem;
}

.hero-lead-ar,
.section-lead-ar,
.service-ar,
.branch-ar {
  color: rgba(246, 236, 221, 0.88);
}

.hero-actions,
.branch-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-actions {
  margin-top: 1.9rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.8rem 1.3rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

.button:hover,
.button:focus-visible,
.gallery-item:hover,
.gallery-item:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, var(--accent-strong), #b87b36);
  color: #18110b;
  box-shadow: 0 12px 28px rgba(214, 165, 90, 0.22);
}

.button-secondary {
  border-color: rgba(214, 165, 90, 0.28);
  background: rgba(255, 244, 227, 0.05);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 2.1rem 0 0;
  padding: 1rem 0 0;
  border-top: 1px solid var(--line);
}

.hero-metrics div {
  padding-right: 1rem;
  border-right: 1px solid var(--line);
}

.hero-metrics div:last-child {
  border-right: 0;
}

.hero-metrics dt {
  font-size: clamp(1.2rem, 2.4vw, 1.5rem);
  font-weight: 700;
  color: var(--text);
}

.hero-metrics dd {
  margin: 0.35rem 0 0;
  color: var(--text-faint);
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
}

.hero-aura {
  position: absolute;
  inset: 7% -6% -4%;
  border-radius: 48% 52% 44% 56% / 40% 44% 56% 60%;
  background:
    radial-gradient(circle at 30% 28%, rgba(243, 197, 121, 0.32), transparent 28%),
    radial-gradient(circle at 70% 70%, rgba(111, 67, 27, 0.48), transparent 32%),
    rgba(255, 244, 227, 0.03);
  filter: blur(28px);
}

.hero-video-frame {
  position: relative;
  width: min(100%, 420px);
  padding: 0.85rem;
  border: 1px solid rgba(214, 165, 90, 0.18);
  border-radius: calc(var(--radius-large) + 8px);
  background: linear-gradient(180deg, rgba(255, 244, 227, 0.08), rgba(255, 244, 227, 0.02));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-video-glow {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  filter: blur(26px);
  opacity: 0.28;
}

.hero-video {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border-radius: var(--radius-large);
  border: 1px solid rgba(255, 244, 227, 0.08);
  background: #050505;
}

.hero-caption {
  display: flex;
  gap: 0.85rem;
  margin-top: 1rem;
  font-size: 0.88rem;
  color: var(--text-faint);
}

.hero-caption span + span::before {
  content: "•";
  margin-right: 0.85rem;
  color: var(--accent);
}

.signal-band {
  overflow: hidden;
  border-block: 1px solid var(--line);
  padding: 1rem 0;
}

.signal-track {
  display: flex;
  gap: 2rem;
  min-width: max-content;
  color: rgba(246, 236, 221, 0.82);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.75rem;
  animation: marquee 28s linear infinite;
}

.signal-track span::after {
  content: "•";
  margin-left: 2rem;
  color: var(--accent);
}

.section-heading {
  max-width: min(100%, 68rem);
}

.section-lead,
.section-lead-ar {
  margin-top: 1.15rem;
  max-width: 38rem;
}

.service-layout {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
  margin-top: 2.5rem;
}

.service-panel {
  padding: 1.5rem 1.35rem 1.55rem;
  border-radius: var(--radius-medium);
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 244, 227, 0.04), rgba(255, 244, 227, 0.015)),
    rgba(255, 255, 255, 0.01);
}

.service-index {
  margin: 0 0 1rem;
  color: var(--accent-strong);
  font-size: 0.9rem;
  letter-spacing: 0.24em;
}

.service-panel > p:not(.service-index):not(.service-ar) {
  margin-top: 0.95rem;
}

.service-ar {
  margin-top: 0.55rem;
  font-size: 1.02rem;
}

.service-panel ul {
  margin: 1.15rem 0 0;
  padding: 0;
  list-style: none;
}

.service-panel li {
  padding: 0.7rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--text-soft);
}

.story {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}

.story-visual {
  justify-self: center;
}

.story-visual img {
  width: min(100%, 320px);
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid rgba(214, 165, 90, 0.2);
  padding: 0.8rem;
  background: radial-gradient(circle at 20% 15%, rgba(214, 165, 90, 0.14), transparent 32%);
  box-shadow: var(--shadow);
}

.story-copy {
  display: grid;
  gap: 1rem;
}

.story-points {
  display: grid;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.story-points p {
  padding: 0.85rem 0 0;
  border-top: 1px solid var(--line);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.3rem;
}

.gallery-item {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 320px;
  padding: 1.15rem;
  border: 0;
  border-radius: var(--radius-medium);
  overflow: hidden;
  text-align: left;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 220ms ease,
    filter 220ms ease;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 14, 11, 0.04), rgba(15, 14, 11, 0.7) 78%),
    linear-gradient(20deg, rgba(124, 84, 35, 0.46), transparent 38%);
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.03);
  filter: saturate(1.06);
}

.gallery-copy,
.gallery-badge {
  position: relative;
  z-index: 1;
}

.gallery-copy {
  display: grid;
  gap: 0.18rem;
}

.gallery-copy strong {
  font-size: 1.08rem;
}

.gallery-copy span {
  color: rgba(246, 236, 221, 0.84);
  font-size: 0.9rem;
}

.gallery-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(15, 14, 11, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gallery-item-wide {
  grid-column: span 7;
}

.gallery-item-tall {
  grid-column: span 5;
}

.gallery-item:not(.gallery-item-wide):not(.gallery-item-tall) {
  grid-column: span 4;
}

.visit .section-heading {
  margin-bottom: 2rem;
}

.branch-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.branch-card {
  padding: 1.5rem;
  border-radius: var(--radius-medium);
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at top left, rgba(214, 165, 90, 0.14), transparent 32%),
    linear-gradient(180deg, rgba(255, 244, 227, 0.05), rgba(255, 244, 227, 0.015));
}

.branch-card-muted {
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.05), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
}

.branch-label {
  margin: 0 0 0.9rem;
  color: var(--accent-strong);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.78rem;
}

.branch-meta {
  margin-top: 1rem;
  color: var(--text-faint);
}

.branch-ar span {
  unicode-bidi: isolate;
}

.branch-actions {
  margin-top: 1.6rem;
}

.cta-shell {
  padding: 2rem;
  border-radius: calc(var(--radius-large) + 4px);
  border: 1px solid rgba(214, 165, 90, 0.22);
  background:
    radial-gradient(circle at top right, rgba(214, 165, 90, 0.2), transparent 28%),
    linear-gradient(130deg, rgba(255, 244, 227, 0.06), rgba(255, 244, 227, 0.015));
}

.cta-shell h2 {
  max-width: 11ch;
}

.cta-shell p {
  max-width: 39rem;
  margin-top: 1rem;
}

.cta-actions {
  margin-top: 1.6rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding: 0 0 2rem;
  color: var(--text-faint);
}

.footer-title {
  margin-bottom: 0.35rem;
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--text);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.mobile-bar {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  z-index: 18;
  display: none;
  gap: 0.5rem;
  padding: 0.65rem;
  border: 1px solid rgba(214, 165, 90, 0.18);
  border-radius: 999px;
  background: rgba(15, 14, 11, 0.84);
  backdrop-filter: blur(18px);
}

.mobile-bar a {
  flex: 1;
  text-align: center;
  padding: 0.65rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
}

.mobile-bar a:first-child {
  background: linear-gradient(135deg, var(--accent-strong), #b87b36);
  color: #18110b;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  gap: 1rem;
  padding: 2rem;
  background: rgba(9, 8, 7, 0.88);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-content {
  width: min(100%, 980px);
  max-height: min(72vh, 760px);
  border-radius: var(--radius-medium);
  overflow: hidden;
  background: #090909;
  box-shadow: var(--shadow);
}

.lightbox-content img,
.lightbox-content video {
  width: 100%;
  max-height: min(72vh, 760px);
  object-fit: contain;
  background: #090909;
}

.lightbox-meta {
  width: min(100%, 980px);
  display: grid;
  gap: 0.3rem;
}

.lightbox-title {
  margin: 0;
  font-size: 1.1rem;
  color: var(--text);
}

.lightbox-subtitle {
  margin: 0;
  color: var(--text-soft);
}

.lightbox-link {
  color: var(--accent-strong);
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  background: rgba(15, 14, 11, 0.75);
  cursor: pointer;
  font-size: 1.8rem;
}

[data-reveal] {
  opacity: 1;
  transform: none;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

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

  .site-nav {
    display: none;
  }

  .hero,
  .story,
  .branch-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 2rem;
    min-height: auto;
  }

  .hero-visual {
    order: -1;
  }

  .service-layout {
    grid-template-columns: 1fr;
  }

  .gallery-item-wide,
  .gallery-item-tall,
  .gallery-item:not(.gallery-item-wide):not(.gallery-item-tall) {
    grid-column: span 12;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 104px;
  }

  .section,
  .signal-band,
  .site-footer,
  .site-header {
    width: min(calc(100% - 1.2rem), var(--max-width));
  }

  .site-header {
    padding: 0.9rem 1rem;
  }

  .header-cta {
    display: none;
  }

  .hero-actions,
  .branch-actions,
  .cta-actions {
    flex-direction: column;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .hero-metrics div {
    padding-right: 0;
    padding-bottom: 0.9rem;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-metrics div:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .gallery-item {
    min-height: 260px;
  }

  .mobile-bar {
    display: flex;
  }

  .lightbox {
    padding: 1rem;
  }

  .lightbox-close {
    top: 0.7rem;
    right: 0.7rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Premium art-direction pass */
body {
  background:
    radial-gradient(circle at 12% 8%, rgba(243, 197, 121, 0.16), transparent 28%),
    radial-gradient(circle at 85% 18%, rgba(111, 67, 27, 0.24), transparent 32%),
    radial-gradient(circle at 55% 105%, rgba(214, 165, 90, 0.1), transparent 30%),
    linear-gradient(135deg, #0d0c09 0%, #19140f 45%, #080706 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(120deg, transparent 0 34%, rgba(246, 236, 221, 0.025) 34% 35%, transparent 35% 100%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 100% 100%, 142px 142px;
}

.site-header {
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.22);
}

.brand-mark {
  font-size: 2rem;
}

.hero {
  position: relative;
  isolation: isolate;
  width: 100%;
  max-width: none;
  margin-inline: 0;
  padding:
    clamp(4rem, 7vw, 7rem)
    max(1rem, calc((100vw - var(--max-width)) / 2))
    clamp(4rem, 7vw, 6rem);
  overflow: hidden;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.82fr);
  min-height: min(920px, calc(100svh - 5rem));
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(13, 12, 9, 0.98) 0%, rgba(13, 12, 9, 0.72) 45%, rgba(13, 12, 9, 0.22) 100%),
    linear-gradient(0deg, rgba(13, 12, 9, 0.95) 0%, transparent 38%),
    url("assets/media/hero-poster.jpg") center / cover;
  filter: saturate(0.86) contrast(1.04);
}

.hero::after {
  content: "CENTER FACELOOK";
  position: absolute;
  right: max(1rem, calc((100vw - var(--max-width)) / 2));
  bottom: 1.2rem;
  z-index: -1;
  font-family: var(--font-display);
  font-size: clamp(5rem, 15vw, 15rem);
  font-weight: 700;
  line-height: 0.75;
  color: rgba(246, 236, 221, 0.035);
  letter-spacing: -0.05em;
  pointer-events: none;
}

.hero-copy {
  max-width: 720px;
  text-shadow: 0 18px 42px rgba(0, 0, 0, 0.42);
}

h1 {
  display: grid;
  font-size: clamp(5.8rem, 14vw, 13.4rem);
  line-height: 0.74;
  letter-spacing: -0.055em;
  white-space: normal;
}

h1 span:last-child {
  padding-left: clamp(1.6rem, 6vw, 5.2rem);
  color: #fff4df;
}

h2 {
  max-width: none;
}

.hero-lead {
  max-width: 31rem;
  font-size: clamp(1.15rem, 1.7vw, 1.45rem);
  color: rgba(246, 236, 221, 0.9);
}

.hero-actions {
  align-items: center;
}

.hero .button-primary {
  background: linear-gradient(135deg, #ffd38a, #c88436);
  color: #120d08;
  box-shadow: 0 16px 38px rgba(243, 197, 121, 0.28);
}

.hero .button-secondary,
.hero .button-ghost {
  border-color: rgba(243, 197, 121, 0.28);
  background: rgba(13, 12, 9, 0.66);
  backdrop-filter: blur(12px);
}

.button {
  position: relative;
  overflow: hidden;
}

.button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0 28%, rgba(255, 255, 255, 0.26), transparent 72% 100%);
  transform: translateX(-120%);
  transition: transform 520ms ease;
}

.button:hover::after,
.button:focus-visible::after {
  transform: translateX(120%);
}

.hero-metrics {
  width: min(100%, 620px);
  padding: 1rem 0;
  border-block: 1px solid rgba(243, 197, 121, 0.22);
}

.hero-metrics dt {
  font-size: clamp(1.32rem, 2.2vw, 1.85rem);
}

.hero-visual {
  transform: translateY(calc(var(--scroll-y, 0) * 22px));
}

.hero-video-frame {
  width: min(100%, 390px);
  transform:
    perspective(1100px)
    rotateX(var(--tilt-y, 0deg))
    rotateY(var(--tilt-x, 0deg));
  transition: transform 180ms ease, border-color 180ms ease;
}

.hero-video-frame:hover {
  border-color: rgba(243, 197, 121, 0.42);
}

.hero-stamp {
  position: absolute;
  right: -0.6rem;
  bottom: 3.6rem;
  z-index: 2;
  display: grid;
  gap: 0.1rem;
  padding: 0.7rem 0.85rem;
  border: 1px solid rgba(243, 197, 121, 0.34);
  border-radius: 999px;
  background: rgba(13, 12, 9, 0.78);
  backdrop-filter: blur(14px);
  text-transform: uppercase;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.32);
}

.hero-stamp span {
  font-size: 0.64rem;
  letter-spacing: 0.24em;
  color: var(--accent-strong);
}

.hero-stamp strong {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
}

.booking-ribbon {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: -1.2rem auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem;
  padding: 0.6rem;
  border: 1px solid rgba(243, 197, 121, 0.18);
  border-radius: 30px;
  background: rgba(12, 10, 8, 0.7);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.booking-ribbon div {
  display: grid;
  gap: 0.25rem;
  padding: 1.2rem;
  border: 1px solid rgba(255, 244, 227, 0.06);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255, 244, 227, 0.055), rgba(255, 244, 227, 0.015)),
    rgba(255, 255, 255, 0.01);
}

.booking-ribbon div:last-of-type {
  border-right: 1px solid rgba(255, 244, 227, 0.06);
}

.booking-ribbon span {
  color: var(--accent-strong);
  letter-spacing: 0.22em;
  font-size: 0.72rem;
}

.booking-ribbon strong {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.4vw, 2.2rem);
  line-height: 0.95;
}

.booking-ribbon p {
  margin: 0;
  color: var(--text-faint);
}

.booking-ribbon-action {
  display: grid;
  grid-column: 1 / -1;
  gap: 0.3rem;
  padding: 1.15rem 1.25rem;
  border: 1px solid rgba(243, 197, 121, 0.28);
  border-radius: 24px;
  background:
    radial-gradient(circle at 10% 0%, rgba(243, 197, 121, 0.18), transparent 32%),
    rgba(243, 197, 121, 0.06);
}

.booking-ribbon-action strong {
  font-size: clamp(1.6rem, 2.6vw, 2.5rem);
}

.section:not(.hero) {
  padding-block: clamp(5rem, 8vw, 8rem);
}

.services,
.gallery,
.visit {
  width: 100%;
  max-width: none;
  margin-inline: 0;
  padding-inline: max(1rem, calc((100vw - var(--max-width)) / 2));
}

.services {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255, 244, 227, 0.025), transparent 24%),
    radial-gradient(circle at 18% 16%, rgba(243, 197, 121, 0.13), transparent 30%);
}

.services::before {
  content: "ATELIER";
  position: absolute;
  top: 2.6rem;
  right: max(1rem, calc((100vw - var(--max-width)) / 2));
  font-family: var(--font-display);
  font-size: clamp(5rem, 12vw, 12rem);
  line-height: 0.8;
  color: rgba(246, 236, 221, 0.035);
  pointer-events: none;
}

.services .section-heading,
.gallery .section-heading,
.visit .section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(20rem, 0.72fr);
  align-items: end;
  gap: 2.2rem;
}

.services .section-heading h2 {
  max-width: none;
}

.service-layout {
  grid-template-columns: 1fr;
  gap: 1rem;
  border-top: 0;
}

.service-panel {
  display: grid;
  grid-template-columns: 5rem minmax(12rem, 0.62fr) minmax(0, 1fr);
  align-items: start;
  gap: 1.4rem;
  position: relative;
  min-height: 220px;
  padding: 2rem clamp(1.2rem, 3vw, 2.4rem);
  border: 1px solid rgba(243, 197, 121, 0.16);
  border-radius: 34px;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(255, 244, 227, 0.07), rgba(255, 244, 227, 0.018)),
    rgba(255, 255, 255, 0.01);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.18);
}

.service-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 0 auto;
  width: min(32%, 280px);
  opacity: 0.22;
  background: center / cover no-repeat;
  mask-image: linear-gradient(90deg, transparent 0%, black 42%);
  filter: saturate(0.9) contrast(1.05);
}

.service-panel:nth-child(1)::before {
  background-image: url("assets/media/haircut-transform-poster.jpg");
}

.service-panel:nth-child(2)::before {
  background-image: url("assets/media/gallery-1.jpg");
}

.service-panel:nth-child(3)::before {
  background-image: url("assets/media/gallery-3.jpg");
}

.service-panel > * {
  position: relative;
  z-index: 1;
}

.service-panel h3 {
  grid-column: 2;
  max-width: none;
}

.service-index {
  grid-column: 1;
  grid-row: 1 / span 3;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 0.8;
  letter-spacing: -0.04em;
  color: rgba(243, 197, 121, 0.54);
}

.service-panel > p:not(.service-index):not(.service-ar) {
  grid-column: 3;
  margin-top: 0;
}

.service-ar {
  grid-column: 2;
}

.service-panel ul {
  grid-column: 3;
  margin-top: 1rem;
  columns: 2;
  column-gap: 1.5rem;
}

.service-panel li {
  break-inside: avoid;
}

.service-manifesto {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 2rem;
  padding: clamp(1.3rem, 3vw, 2.1rem);
  border: 1px solid rgba(243, 197, 121, 0.24);
  border-radius: var(--radius-large);
  background:
    radial-gradient(circle at 12% 20%, rgba(243, 197, 121, 0.2), transparent 32%),
    rgba(255, 244, 227, 0.035);
}

.service-manifesto p {
  max-width: 48rem;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3vw, 2.7rem);
  line-height: 1;
}

.service-manifesto a {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  min-height: 52px;
  padding: 0 1.15rem;
  border: 1px solid rgba(243, 197, 121, 0.3);
  border-radius: 999px;
  color: var(--accent-strong);
}

.story {
  width: 100%;
  max-width: none;
  margin-inline: 0;
  padding-inline: max(1rem, calc((100vw - var(--max-width)) / 2));
  background:
    linear-gradient(90deg, rgba(255, 244, 227, 0.045), transparent 54%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.22));
  border-block: 1px solid rgba(243, 197, 121, 0.12);
}

.story-visual img {
  width: min(100%, 390px);
  border-radius: 34px 34px 999px 999px;
}

.story-copy {
  padding: clamp(1.2rem, 3vw, 2.2rem);
  border-left: 1px solid rgba(243, 197, 121, 0.16);
}

.story-points {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.story-points p {
  min-height: 112px;
  padding: 1rem 0 0;
}

.gallery {
  background:
    radial-gradient(circle at 82% 12%, rgba(243, 197, 121, 0.1), transparent 26%),
    linear-gradient(180deg, transparent, rgba(255, 244, 227, 0.018));
}

.gallery-grid {
  grid-auto-rows: 118px;
  gap: 0.85rem;
}

.gallery-item {
  min-height: 0;
  height: 100%;
  border-radius: clamp(20px, 2vw, 34px);
  border: 1px solid rgba(255, 244, 227, 0.08);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.24);
}

.gallery-item-wide {
  grid-row: span 4;
}

.gallery-item-tall {
  grid-row: span 5;
}

.gallery-item:not(.gallery-item-wide):not(.gallery-item-tall) {
  grid-row: span 3;
}

.gallery-copy strong {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 0.98;
}

.visit {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255, 244, 227, 0.025), transparent 42%),
    radial-gradient(circle at 15% 25%, rgba(243, 197, 121, 0.09), transparent 34%);
}

.branch-card {
  position: relative;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  border-radius: 38px;
  padding: clamp(1.5rem, 3vw, 2.3rem);
}

.branch-card::after {
  position: absolute;
  right: 1rem;
  bottom: -0.7rem;
  font-family: var(--font-display);
  font-size: clamp(6rem, 12vw, 11rem);
  line-height: 0.8;
  color: rgba(246, 236, 221, 0.045);
  pointer-events: none;
}

.branch-card:nth-child(1)::after {
  content: "01";
}

.branch-card:nth-child(2)::after {
  content: "02";
}

.cta {
  width: 100%;
  max-width: none;
  margin-inline: 0;
  padding-inline: max(1rem, calc((100vw - var(--max-width)) / 2));
}

.cta-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 2rem;
  padding: clamp(2rem, 5vw, 4rem);
  border-radius: 44px;
  background:
    radial-gradient(circle at 85% 15%, rgba(243, 197, 121, 0.22), transparent 30%),
    linear-gradient(130deg, rgba(255, 244, 227, 0.075), rgba(255, 244, 227, 0.018));
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.22);
}

.cta-shell h2 {
  max-width: none;
  font-size: clamp(3rem, 6vw, 5.6rem);
}

.cta-actions {
  justify-content: flex-end;
}

.booking-section {
  position: relative;
}

.booking-page {
  background:
    radial-gradient(circle at 14% 4%, rgba(243, 197, 121, 0.16), transparent 30%),
    radial-gradient(circle at 88% 16%, rgba(125, 69, 30, 0.24), transparent 28%),
    linear-gradient(135deg, #0f0e0b 0%, #17110d 52%, #090807 100%);
}

.booking-page-hero {
  position: relative;
  isolation: isolate;
  width: 100%;
  max-width: none;
  margin-inline: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.52fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  min-height: min(780px, calc(100svh - 5rem));
  padding:
    clamp(4rem, 8vw, 7rem)
    max(1rem, calc((100vw - var(--max-width)) / 2))
    clamp(3rem, 6vw, 5rem);
  overflow: hidden;
}

.booking-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(13, 12, 9, 0.96), rgba(13, 12, 9, 0.72) 48%, rgba(13, 12, 9, 0.42)),
    url("assets/media/haircut-transform-poster.jpg") center / cover;
  opacity: 0.76;
  filter: saturate(0.82) contrast(1.06);
}

.booking-page-hero::after {
  content: "RESERVE";
  position: absolute;
  right: max(1rem, calc((100vw - var(--max-width)) / 2));
  bottom: 1rem;
  z-index: -1;
  font-family: var(--font-display);
  font-size: clamp(5rem, 16vw, 16rem);
  font-weight: 700;
  line-height: 0.72;
  color: rgba(246, 236, 221, 0.038);
  pointer-events: none;
}

.booking-hero-copy {
  max-width: 760px;
  text-shadow: 0 18px 44px rgba(0, 0, 0, 0.46);
}

.booking-hero-panel {
  display: grid;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid rgba(243, 197, 121, 0.22);
  border-radius: 36px;
  background:
    linear-gradient(145deg, rgba(255, 244, 227, 0.11), rgba(255, 244, 227, 0.026)),
    rgba(10, 9, 7, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
  transform:
    perspective(1100px)
    rotateX(var(--tilt-y, 0deg))
    rotateY(var(--tilt-x, 0deg));
  transition: transform 180ms ease, border-color 180ms ease;
}

.booking-hero-panel span {
  color: var(--accent-strong);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.76rem;
}

.booking-hero-panel strong {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 0.92;
}

.booking-hero-panel p {
  margin: 0;
  color: var(--text-soft);
}

.booking-hero-panel dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
  margin: 0;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(243, 197, 121, 0.18);
}

.booking-hero-panel div {
  min-width: 0;
}

.booking-hero-panel dt {
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 0.9;
  color: var(--accent-strong);
}

.booking-hero-panel dd {
  margin: 0.25rem 0 0;
  color: var(--text-faint);
  font-size: 0.84rem;
}

.booking-page-ribbon {
  margin-top: -2.2rem;
}

.booking-studio {
  padding-top: clamp(4rem, 7vw, 6rem);
}

.booking-section::before {
  content: "BOOK";
  position: absolute;
  top: 2.2rem;
  right: max(1rem, calc((100vw - var(--max-width)) / 2));
  font-family: var(--font-display);
  font-size: clamp(5rem, 13vw, 13rem);
  line-height: 0.8;
  color: rgba(246, 236, 221, 0.035);
  pointer-events: none;
}

.booking-app {
  margin-top: 2.5rem;
}

.booking-empty,
.booking-workspace,
.owner-card,
.owner-panel,
.owner-metrics div {
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(255, 244, 227, 0.055), rgba(255, 244, 227, 0.014)),
    rgba(255, 255, 255, 0.01);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.booking-empty {
  padding: 1.4rem;
  border-radius: var(--radius-medium);
}

.booking-workspace {
  display: grid;
  grid-template-columns: minmax(13rem, 0.34fr) minmax(0, 1fr);
  gap: 1rem;
  padding: 0.8rem;
  border-radius: calc(var(--radius-large) + 6px);
}

.booking-rail {
  position: sticky;
  top: 7rem;
  align-self: start;
  display: grid;
  gap: 0.7rem;
}

.booking-rail div,
.booking-panel {
  border: 1px solid rgba(255, 244, 227, 0.08);
  background: rgba(10, 9, 7, 0.48);
}

.booking-rail div {
  display: grid;
  gap: 0.2rem;
  padding: 1rem;
  border-radius: 20px;
}

.booking-rail span,
.booking-panel .eyebrow {
  color: var(--accent-strong);
}

.booking-rail strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1;
}

.booking-rail p,
.booking-panel-heading p,
.booking-muted,
.owner-muted {
  margin: 0;
  color: var(--text-faint);
}

.booking-flow {
  display: grid;
  gap: 1rem;
}

.booking-panel {
  padding: 1.1rem;
  border-radius: var(--radius-medium);
}

.booking-panel-heading {
  display: grid;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.booking-panel-heading h3 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.booking-choice-grid,
.barber-grid,
.service-picker,
.slot-grid,
.form-grid,
.owner-metrics,
.owner-grid {
  display: grid;
  gap: 0.85rem;
}

.booking-choice-grid-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.barber-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-picker {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.booking-choice,
.barber-card,
.service-pill,
.slot-button,
.auth-tabs button,
.appointment-actions button,
.appointment-actions a,
.owner-panel-heading button,
.owner-resource-list button,
.link-button {
  border: 1px solid rgba(255, 244, 227, 0.1);
  color: var(--text);
  cursor: pointer;
  background: rgba(255, 255, 255, 0.025);
}

.booking-choice,
.service-pill {
  display: grid;
  gap: 0.35rem;
  min-height: 140px;
  padding: 1rem;
  border-radius: 22px;
  text-align: left;
}

.booking-choice strong,
.service-pill strong {
  font-family: var(--font-display);
  font-size: 1.55rem;
  line-height: 1;
}

.booking-choice span,
.service-pill small,
.barber-card-copy span,
.barber-card-copy small,
.owner-resource-list span,
.appointment-row span {
  color: var(--text-soft);
}

.booking-choice small,
.service-pill span {
  color: var(--accent-strong);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.booking-choice.is-selected,
.barber-card.is-selected,
.service-pill.is-selected,
.slot-button.is-selected,
.auth-tabs button.is-selected {
  border-color: rgba(243, 197, 121, 0.58);
  background:
    radial-gradient(circle at 14% 0%, rgba(243, 197, 121, 0.16), transparent 36%),
    rgba(243, 197, 121, 0.06);
}

.barber-card {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 0.85rem;
  align-items: center;
  padding: 0.75rem;
  border-radius: 24px;
  text-align: left;
}

.barber-card img {
  width: 92px;
  height: 108px;
  border-radius: 18px;
  object-fit: cover;
}

.barber-card-copy {
  display: grid;
  gap: 0.15rem;
}

.barber-card-copy strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1;
}

.booking-panel-split {
  display: grid;
  grid-template-columns: minmax(16rem, 0.38fr) minmax(0, 1fr);
  gap: 1rem;
}

.slot-grid {
  grid-template-columns: repeat(auto-fit, minmax(92px, 1fr));
}

.slot-button {
  min-height: 48px;
  border-radius: 999px;
}

.auth-tabs {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.4rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
}

.auth-tabs button,
.link-button,
.appointment-actions button,
.appointment-actions a,
.owner-panel-heading button,
.owner-resource-list button {
  min-height: 42px;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
}

.account-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(243, 197, 121, 0.22);
  border-radius: 20px;
  background: rgba(243, 197, 121, 0.055);
}

.booking-form {
  display: grid;
  gap: 1rem;
}

.form-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.field-label {
  display: grid;
  gap: 0.45rem;
  color: var(--text-soft);
  font-size: 0.92rem;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 244, 227, 0.12);
  border-radius: 16px;
  background: rgba(8, 7, 6, 0.55);
  color: var(--text);
  font: inherit;
  padding: 0.82rem 0.9rem;
  outline: none;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(243, 197, 121, 0.58);
  box-shadow: 0 0 0 3px rgba(243, 197, 121, 0.1);
}

.booking-alert {
  padding: 0.9rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.booking-alert p {
  margin: 0;
}

.booking-alert a {
  display: inline-flex;
  margin-top: 0.55rem;
  color: var(--accent-strong);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.booking-alert-error {
  color: #ffd7c9;
  background: rgba(156, 49, 34, 0.22);
  border-color: rgba(255, 129, 103, 0.24);
}

.booking-alert-success {
  color: #e7ffce;
  background: rgba(86, 125, 42, 0.2);
  border-color: rgba(188, 232, 124, 0.22);
}

.booking-security-note,
.turnstile-box {
  margin: 0;
  color: var(--text-faint);
}

.turnstile-box {
  min-height: 65px;
}

.spam-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.owner-body {
  padding: clamp(1rem, 3vw, 2rem);
}

.owner-login,
.owner-shell {
  width: min(100%, 1240px);
  margin-inline: auto;
}

.owner-login {
  min-height: calc(100vh - 4rem);
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.48fr);
  gap: 2rem;
  align-items: center;
}

.owner-login h1,
.owner-topbar h1 {
  font-size: clamp(4rem, 9vw, 8rem);
}

.owner-card,
.owner-panel {
  border-radius: var(--radius-medium);
}

.owner-login-form,
.owner-form {
  display: grid;
  gap: 0.9rem;
}

.owner-card {
  padding: 1.2rem;
}

.owner-shell {
  display: grid;
  gap: 1rem;
}

.owner-topbar {
  display: flex;
  justify-content: space-between;
  gap: 1.4rem;
  align-items: end;
  padding-block: 1rem 0.5rem;
}

.owner-topbar p {
  margin-top: 0.4rem;
}

.owner-topbar-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.owner-metrics {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.owner-metrics div {
  display: grid;
  gap: 0.2rem;
  padding: 1rem;
  border-radius: 22px;
}

.owner-metrics span {
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 0.9;
  color: var(--accent-strong);
}

.owner-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.owner-panel-large {
  grid-column: 1 / -1;
}

.owner-panel {
  display: grid;
  gap: 1rem;
  padding: 1rem;
}

.owner-panel-heading {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
}

.owner-panel-heading h2 {
  margin: 0;
  font-size: 2.25rem;
}

.check-row {
  display: flex;
  gap: 0.55rem;
  align-items: center;
  color: var(--text-soft);
}

.check-row input {
  width: auto;
}

.appointment-list,
.owner-resource-list {
  display: grid;
  gap: 0.65rem;
}

.appointment-row,
.owner-resource-list article {
  display: grid;
  gap: 0.65rem;
  padding: 0.85rem;
  border: 1px solid rgba(255, 244, 227, 0.08);
  border-radius: 18px;
  background: rgba(8, 7, 6, 0.38);
}

.appointment-row {
  grid-template-columns: 0.85fr 1fr 0.9fr 1fr;
  align-items: center;
}

.appointment-row p {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--text-soft);
}

.appointment-row div,
.owner-resource-list article div {
  display: grid;
  gap: 0.2rem;
}

.appointment-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.owner-resource-list article {
  grid-template-columns: 1fr auto;
  align-items: center;
}

.owner-resource-list .is-muted {
  opacity: 0.54;
}

html.js [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 620ms ease,
    transform 620ms cubic-bezier(0.16, 1, 0.3, 1);
}

html.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 981px) {
  .section-heading h2,
  .story-copy h2,
  .cta-shell h2 {
    white-space: nowrap;
  }

  .section-heading h2 {
    font-size: clamp(2.8rem, 4.4vw, 4.2rem);
  }
}

body.is-ready .hero-copy .eyebrow,
body.is-ready .hero-copy h1,
body.is-ready .hero-lead,
body.is-ready .hero-actions,
body.is-ready .hero-metrics,
body.is-ready .hero-visual {
  animation: hero-rise 780ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

body.is-ready .hero-copy h1 {
  animation-delay: 80ms;
}

body.is-ready .hero-lead {
  animation-delay: 140ms;
}

body.is-ready .hero-actions {
  animation-delay: 210ms;
}

body.is-ready .hero-metrics {
  animation-delay: 280ms;
}

body.is-ready .hero-visual {
  animation-delay: 180ms;
}

@keyframes hero-rise {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: clamp(2.5rem, 7vw, 4rem);
  }

  .booking-page-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(13, 12, 9, 0.95) 0%, rgba(13, 12, 9, 0.7) 55%, rgba(13, 12, 9, 0.95) 100%),
      url("assets/media/hero-poster.jpg") center / cover;
  }

  .hero-visual {
    order: 0;
    justify-self: start;
    width: min(100%, 470px);
  }

  .booking-ribbon {
    grid-template-columns: 1fr;
  }

  .booking-ribbon div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .booking-ribbon div:last-of-type {
    border-bottom: 0;
  }

  .services .section-heading,
  .booking-section .section-heading,
  .gallery .section-heading,
  .visit .section-heading {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .booking-workspace,
  .owner-login,
  .owner-grid {
    grid-template-columns: 1fr;
  }

  .booking-rail {
    position: static;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .service-picker,
  .owner-metrics,
  .appointment-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .booking-panel-split,
  .owner-topbar {
    grid-template-columns: 1fr;
  }

  .owner-topbar {
    display: grid;
    align-items: start;
  }

  .service-panel {
    grid-template-columns: 4rem 1fr;
  }

  .service-panel h3,
  .service-ar {
    grid-column: 2;
  }

  .service-panel > p:not(.service-index):not(.service-ar),
  .service-panel ul {
    grid-column: 2;
  }

  .service-panel ul {
    columns: 1;
  }

  .service-panel::before {
    width: 44%;
    opacity: 0.14;
  }

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

  .service-manifesto,
  .cta-shell {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .cta-actions {
    justify-content: flex-start;
  }

  .gallery-grid {
    grid-auto-rows: auto;
  }

  .gallery-item,
  .gallery-item-wide,
  .gallery-item-tall,
  .gallery-item:not(.gallery-item-wide):not(.gallery-item-tall) {
    grid-row: auto;
    min-height: 330px;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: auto;
    padding-inline: 1rem;
    gap: 1.5rem;
  }

  h1 {
    font-size: clamp(4.6rem, 22vw, 7rem);
  }

  h1 span:last-child {
    padding-left: 1.15rem;
  }

  .hero-video-frame {
    width: min(100%, 292px);
  }

  .booking-page-hero {
    padding-inline: 1rem;
  }

  .booking-hero-panel dl {
    grid-template-columns: 1fr;
  }

  .hero-lead,
  .hero-lead-ar {
    color: rgba(246, 236, 221, 0.95);
  }

  .hero-actions {
    display: grid;
    width: min(100%, 330px);
    padding: 0.55rem;
    border: 1px solid rgba(243, 197, 121, 0.24);
    border-radius: 26px;
    background: rgba(8, 7, 6, 0.78);
    box-shadow: 0 20px 52px rgba(0, 0, 0, 0.36);
  }

  .hero .button {
    min-height: 50px;
    width: 100%;
    font-weight: 700;
  }

  .hero .button-secondary,
  .hero .button-ghost {
    background: rgba(13, 12, 9, 0.78);
  }

  .hero-stamp {
    right: 0.4rem;
    bottom: 2.4rem;
  }

  .service-panel {
    grid-template-columns: 1fr;
  }

  .service-panel > p:not(.service-index):not(.service-ar),
  .service-panel h3,
  .service-ar,
  .service-panel ul {
    grid-column: auto;
  }

  .service-manifesto {
    flex-direction: column;
    align-items: flex-start;
  }

  .story,
  .cta {
    padding-inline: 1rem;
  }

  .branch-card {
    min-height: auto;
  }

  .booking-workspace {
    padding: 0.55rem;
  }

  .booking-rail,
  .booking-choice-grid-two,
  .barber-grid,
  .service-picker,
  .form-grid,
  .owner-metrics,
  .appointment-row {
    grid-template-columns: 1fr;
  }

  .booking-rail div {
    padding: 0.85rem;
  }

  .barber-card {
    grid-template-columns: 82px 1fr;
  }

  .barber-card img {
    width: 82px;
    height: 98px;
  }

  .auth-tabs {
    display: grid;
    border-radius: 22px;
  }

  .owner-body {
    padding: 0.75rem;
  }

  .owner-login h1,
  .owner-topbar h1 {
    font-size: clamp(3.5rem, 19vw, 5.4rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-visual,
  .hero-video-frame,
  html.js [data-reveal],
  body.is-ready .hero-copy .eyebrow,
  body.is-ready .hero-copy h1,
  body.is-ready .hero-lead,
  body.is-ready .hero-actions,
  body.is-ready .hero-metrics,
  body.is-ready .hero-visual {
    animation: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}

@media (max-width: 980px) {
  .booking-workspace,
  .owner-login,
  .owner-grid {
    grid-template-columns: 1fr;
  }

  .booking-rail {
    position: static;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .service-picker,
  .owner-metrics,
  .appointment-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .booking-panel-split,
  .owner-topbar {
    grid-template-columns: 1fr;
  }

  .owner-topbar {
    display: grid;
    align-items: start;
  }
}

@media (max-width: 640px) {
  .booking-rail,
  .booking-choice-grid-two,
  .barber-grid,
  .service-picker,
  .form-grid,
  .owner-metrics,
  .appointment-row {
    grid-template-columns: 1fr;
  }
}

/* Premium booking page refresh */
.designer-signature {
  margin-top: 0.7rem;
  color: rgba(243, 197, 121, 0.72);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.booking-page .booking-page-hero {
  min-height: min(650px, calc(100svh - 5rem));
  padding-top: clamp(3rem, 6vw, 5.5rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
}

.booking-page .booking-page-hero::before {
  background:
    linear-gradient(90deg, rgba(10, 9, 7, 0.98), rgba(10, 9, 7, 0.75) 48%, rgba(10, 9, 7, 0.34)),
    linear-gradient(0deg, rgba(10, 9, 7, 0.9), transparent 44%),
    url("assets/media/haircut-transform-poster.jpg") center / cover;
  opacity: 0.9;
}

.booking-page h1 {
  font-size: clamp(4.7rem, 11vw, 10.5rem);
}

.booking-page .booking-hero-panel {
  align-self: end;
  border-radius: 40px;
  background:
    radial-gradient(circle at 14% 8%, rgba(243, 197, 121, 0.2), transparent 34%),
    linear-gradient(145deg, rgba(255, 244, 227, 0.12), rgba(255, 244, 227, 0.025)),
    rgba(10, 9, 7, 0.78);
}

.booking-page .booking-studio {
  width: 100%;
  max-width: none;
  margin-inline: 0;
  padding:
    clamp(3rem, 6vw, 5rem)
    max(1rem, calc((100vw - var(--max-width)) / 2))
    clamp(5rem, 8vw, 8rem);
  background:
    radial-gradient(circle at 82% 8%, rgba(243, 197, 121, 0.11), transparent 28%),
    linear-gradient(180deg, rgba(255, 244, 227, 0.035), transparent 26%);
}

.booking-page .booking-section::before {
  top: 1rem;
  right: max(1rem, calc((100vw - var(--max-width)) / 2));
  content: "BOOKING";
  opacity: 0.8;
}

.booking-page .booking-section .section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(20rem, 0.68fr);
  align-items: end;
  gap: 2rem;
}

.booking-page .booking-section .section-heading h2 {
  max-width: none;
}

.booking-page .booking-app {
  margin-top: clamp(1.4rem, 3vw, 2.5rem);
}

.booking-page .booking-workspace {
  grid-template-columns: 1fr;
  gap: 0;
  padding: clamp(0.65rem, 1.4vw, 0.95rem);
  border-radius: 44px;
  border-color: rgba(243, 197, 121, 0.24);
  background:
    linear-gradient(140deg, rgba(255, 244, 227, 0.08), rgba(255, 244, 227, 0.018)),
    rgba(8, 7, 6, 0.82);
  box-shadow: 0 42px 120px rgba(0, 0, 0, 0.34);
}

.booking-page .booking-flow {
  width: 100%;
  max-width: 1120px;
  margin-inline: auto;
}

.booking-page .booking-rail {
  top: 6.5rem;
  padding: 0.8rem;
  border: 1px solid rgba(243, 197, 121, 0.16);
  border-radius: 34px;
  background:
    radial-gradient(circle at 14% 0%, rgba(243, 197, 121, 0.16), transparent 38%),
    rgba(12, 10, 8, 0.72);
}

.booking-page .booking-rail-header,
.booking-page .booking-step,
.booking-page .booking-summary-card {
  border: 1px solid rgba(255, 244, 227, 0.075);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.026);
}

.booking-page .booking-rail-header {
  padding: 1rem;
}

.booking-page .booking-rail-header span,
.booking-page .booking-summary-card > span,
.booking-page .barber-card-copy em,
.booking-page .service-pill em {
  color: var(--accent-strong);
  font-size: 0.68rem;
  font-style: normal;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.booking-page .booking-rail-header strong {
  display: block;
  margin-top: 0.22rem;
  font-size: 2rem;
}

.booking-page .booking-step {
  position: relative;
  padding: 0.9rem 0.9rem 0.9rem 1rem;
}

.booking-page .booking-step.is-active {
  border-color: rgba(243, 197, 121, 0.54);
  background:
    radial-gradient(circle at 0% 0%, rgba(243, 197, 121, 0.18), transparent 40%),
    rgba(243, 197, 121, 0.06);
}

.booking-page .booking-step.is-complete::after {
  content: "";
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--accent-strong);
  box-shadow: 0 0 18px rgba(243, 197, 121, 0.6);
}

.booking-page .booking-summary-card {
  padding: 1rem;
}

.booking-page .booking-summary-card dl {
  display: grid;
  gap: 0.7rem;
  margin: 0.75rem 0 0;
}

.booking-page .booking-summary-card dl div {
  display: grid;
  gap: 0.1rem;
  padding: 0 0 0.65rem;
  border: 0;
  border-bottom: 1px solid rgba(255, 244, 227, 0.08);
  border-radius: 0;
  background: transparent;
}

.booking-page .booking-summary-card dl div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.booking-page .booking-summary-card dt {
  color: var(--text-faint);
  font-size: 0.78rem;
}

.booking-page .booking-summary-card dd {
  margin: 0;
  color: var(--text);
  font-weight: 700;
  line-height: 1.25;
}

.booking-page .booking-flow {
  gap: 1.05rem;
}

.booking-page .booking-panel {
  padding: clamp(1.1rem, 2.3vw, 1.7rem);
  border-radius: 34px;
  border-color: rgba(255, 244, 227, 0.095);
  background:
    linear-gradient(135deg, rgba(255, 244, 227, 0.055), rgba(255, 244, 227, 0.012)),
    rgba(14, 12, 9, 0.64);
}

.booking-page .booking-panel-heading {
  margin-bottom: 1.15rem;
}

.booking-page .booking-panel-heading h3 {
  font-size: clamp(2.25rem, 4vw, 3.8rem);
}

.booking-page .booking-choice,
.booking-page .barber-card,
.booking-page .service-pill,
.booking-page .slot-button {
  transition:
    transform 170ms ease,
    border-color 170ms ease,
    background 170ms ease;
}

.booking-page .booking-choice:hover,
.booking-page .booking-choice:focus-visible,
.booking-page .barber-card:hover,
.booking-page .barber-card:focus-visible,
.booking-page .service-pill:hover,
.booking-page .service-pill:focus-visible,
.booking-page .slot-button:hover,
.booking-page .slot-button:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(243, 197, 121, 0.42);
}

.booking-page .booking-choice,
.booking-page .service-pill {
  min-height: 0;
  padding: 1.15rem;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 244, 227, 0.052), rgba(255, 244, 227, 0.018)),
    rgba(255, 255, 255, 0.014);
}

.booking-page .booking-choice strong,
.booking-page .service-pill strong {
  font-size: clamp(1.55rem, 2.4vw, 2rem);
}

.booking-page .barber-card {
  grid-template-columns: 112px 1fr;
  min-height: 142px;
  padding: 0.85rem;
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(255, 244, 227, 0.055), rgba(255, 244, 227, 0.012)),
    rgba(255, 255, 255, 0.014);
}

.booking-page .barber-card img {
  width: 112px;
  height: 124px;
  border-radius: 23px;
}

.booking-page .service-picker {
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.booking-page .service-pill em {
  margin-top: 0.25rem;
}

.booking-page .booking-panel-split {
  grid-template-columns: minmax(230px, 0.35fr) minmax(0, 1fr);
  align-items: start;
}

.booking-page .slot-grid {
  grid-template-columns: repeat(auto-fit, minmax(94px, 1fr));
}

.booking-page .slot-button {
  min-height: 56px;
  border-radius: 999px;
  font-weight: 800;
}

.booking-page .auth-tabs {
  border: 1px solid rgba(255, 244, 227, 0.08);
  background: rgba(255, 244, 227, 0.045);
}

.booking-page .booking-form .button-primary {
  width: fit-content;
  min-width: 230px;
}

.booking-page .turnstile-box,
.booking-page .booking-security-note {
  padding: 0.9rem 1rem;
  border: 1px solid rgba(255, 244, 227, 0.09);
  border-radius: 20px;
  background: rgba(8, 7, 6, 0.38);
}

@media (max-width: 980px) {
  .booking-page .booking-section .section-heading,
  .booking-page .booking-workspace,
  .booking-page .booking-panel-split {
    grid-template-columns: 1fr;
  }

  .booking-page .booking-rail {
    position: static;
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .booking-page .booking-rail-header,
  .booking-page .booking-summary-card {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .booking-page h1 {
    font-size: clamp(4rem, 20vw, 6.6rem);
  }

  .booking-page .booking-page-hero,
  .booking-page .booking-studio {
    padding-inline: 1rem;
  }

  .booking-page .booking-workspace {
    padding: 0.65rem;
    border-radius: 30px;
  }

  .booking-page .booking-rail,
  .booking-page .barber-grid,
  .booking-page .booking-choice-grid-two,
  .booking-page .form-grid {
    grid-template-columns: 1fr;
  }

  .booking-page .barber-card {
    grid-template-columns: 86px 1fr;
  }

  .booking-page .barber-card img {
    width: 86px;
    height: 102px;
  }

  .booking-page .booking-form .button-primary {
    width: 100%;
  }
}

/* Booking flow hardening: keep the app controls premium even with cached browser defaults. */
.booking-page .booking-app,
.booking-page .booking-app * {
  box-sizing: border-box;
}

.booking-page .booking-workspace {
  width: min(100%, 1180px);
  margin-inline: auto;
  overflow: hidden;
}

.booking-page .booking-flow {
  display: grid;
  gap: clamp(0.85rem, 1.4vw, 1.15rem);
}

.booking-page .booking-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(1rem, 2.1vw, 1.55rem);
}

.booking-page .booking-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(243, 197, 121, 0.42), transparent);
  opacity: 0.55;
}

.booking-page .booking-panel > * {
  position: relative;
}

.booking-page .booking-panel-heading {
  max-width: 820px;
  gap: 0.35rem;
  margin-bottom: clamp(0.9rem, 1.8vw, 1.25rem);
}

.booking-page .booking-panel-heading .eyebrow {
  margin-bottom: 0.1rem;
  color: var(--accent-strong);
  font-size: 0.72rem;
}

.booking-page .booking-panel-heading h3 {
  font-size: clamp(1.75rem, 3.1vw, 2.65rem);
  line-height: 0.96;
  letter-spacing: 0.01em;
}

.booking-page .booking-panel-heading p:not(.eyebrow) {
  max-width: 58rem;
  font-size: clamp(0.94rem, 1.5vw, 1.05rem);
}

.booking-page .booking-choice-grid,
.booking-page .barber-grid,
.booking-page .service-picker,
.booking-page .slot-grid,
.booking-page .form-grid {
  display: grid;
  gap: clamp(0.65rem, 1.15vw, 0.9rem);
}

.booking-page .booking-choice-grid-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.booking-page .barber-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.booking-page .service-picker {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.booking-page .slot-grid {
  grid-template-columns: repeat(auto-fit, minmax(88px, 1fr));
}

.booking-page .booking-choice,
.booking-page .barber-card,
.booking-page .service-pill,
.booking-page .slot-button,
.booking-page .auth-tabs button {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  border: 1px solid rgba(255, 244, 227, 0.12);
  color: var(--text);
  background:
    linear-gradient(145deg, rgba(255, 244, 227, 0.072), rgba(255, 244, 227, 0.018)),
    rgba(8, 7, 6, 0.64);
  box-shadow: inset 0 1px 0 rgba(255, 244, 227, 0.08);
  cursor: pointer;
}

.booking-page .booking-choice,
.booking-page .service-pill {
  display: grid;
  min-height: 0;
  text-align: left;
}

.booking-page .booking-choice {
  gap: 0.28rem;
  padding: clamp(0.9rem, 1.6vw, 1.15rem);
}

.booking-page .service-pill {
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.35rem 0.8rem;
  align-items: start;
  min-height: 148px;
  padding: clamp(0.95rem, 1.6vw, 1.15rem);
}

.booking-page .booking-choice strong,
.booking-page .service-pill strong {
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  line-height: 1.02;
}

.booking-page .service-pill span {
  grid-column: 1;
  color: var(--accent-strong);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.booking-page .service-pill strong,
.booking-page .service-pill small {
  grid-column: 1 / -1;
}

.booking-page .service-pill em {
  grid-column: 2;
  grid-row: 1;
  justify-self: end;
  padding: 0.3rem 0.55rem;
  border: 1px solid rgba(243, 197, 121, 0.18);
  border-radius: 999px;
  background: rgba(243, 197, 121, 0.08);
  white-space: nowrap;
}

.booking-page .barber-card {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 0.85rem;
  align-items: center;
  min-height: 0;
  padding: 0.72rem;
  text-align: left;
}

.booking-page .barber-card img {
  width: 76px;
  height: 86px;
  border-radius: 18px;
  object-fit: cover;
}

.booking-page .barber-card-copy {
  min-width: 0;
}

.booking-page .barber-card-copy strong {
  font-size: clamp(1.16rem, 1.7vw, 1.42rem);
}

.booking-page .booking-choice.is-selected,
.booking-page .barber-card.is-selected,
.booking-page .service-pill.is-selected,
.booking-page .slot-button.is-selected,
.booking-page .auth-tabs button.is-selected {
  border-color: rgba(243, 197, 121, 0.68);
  background:
    radial-gradient(circle at 10% 0%, rgba(243, 197, 121, 0.2), transparent 40%),
    linear-gradient(145deg, rgba(243, 197, 121, 0.12), rgba(255, 244, 227, 0.028)),
    rgba(8, 7, 6, 0.72);
}

.booking-page .slot-button {
  display: inline-grid;
  place-items: center;
  min-height: 52px;
  padding: 0.65rem 0.75rem;
  border-radius: 999px;
}

.booking-page .auth-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(100%, 560px);
  padding: 0.34rem;
  border-radius: 26px;
}

.booking-page .auth-tabs button {
  display: inline-grid;
  place-items: center;
  min-height: 46px;
  border-radius: 999px;
  font-weight: 800;
}

.booking-page .form-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.booking-page .field-label {
  color: rgba(246, 236, 221, 0.82);
  font-size: 0.88rem;
  font-weight: 700;
}

.booking-page input,
.booking-page textarea {
  min-height: 52px;
  border-color: rgba(255, 244, 227, 0.16);
  background:
    linear-gradient(145deg, rgba(255, 244, 227, 0.045), rgba(255, 244, 227, 0.012)),
    rgba(5, 5, 4, 0.68);
  color-scheme: dark;
}

.booking-page textarea {
  min-height: 100px;
}

.booking-page .booking-form .button-primary,
.booking-page .booking-form .button-secondary {
  width: min(100%, 280px);
}

@media (max-width: 820px) {
  .booking-page .booking-section .section-heading,
  .booking-page .booking-choice-grid-two,
  .booking-page .service-picker,
  .booking-page .booking-panel-split,
  .booking-page .form-grid {
    grid-template-columns: 1fr;
  }

  .booking-page .booking-workspace {
    padding: 0.55rem;
    border-radius: 30px;
  }

  .booking-page .booking-panel {
    border-radius: 24px;
  }

  .booking-page .barber-grid {
    grid-template-columns: 1fr;
  }

  .booking-page .barber-card {
    grid-template-columns: 64px minmax(0, 1fr);
    padding: 0.65rem;
  }

  .booking-page .barber-card img {
    width: 64px;
    height: 74px;
    border-radius: 15px;
  }

  .booking-page .service-pill {
    min-height: 0;
  }

  .booking-page .slot-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .booking-page .auth-tabs {
    grid-template-columns: 1fr;
    border-radius: 24px;
  }

  .booking-page .booking-form .button-primary,
  .booking-page .booking-form .button-secondary {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .booking-page .booking-panel-heading h3 {
    font-size: clamp(1.55rem, 9vw, 2.1rem);
  }

  .booking-page .slot-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .booking-page .service-pill {
    grid-template-columns: 1fr;
  }

  .booking-page .service-pill em {
    grid-column: 1;
    grid-row: auto;
    justify-self: start;
  }
}
