:root {
  --ink: #10100f;
  --ink-2: #171716;
  --pearl: #f5f0e7;
  --paper: #fffaf2;
  --stone: #cfc3b2;
  --muted: #93887b;
  --bronze: #b78554;
  --bronze-2: #d2a675;
  --jade: #315e56;
  --garnet: #8b3f45;
  --line: rgba(245, 240, 231, .14);
  --line-dark: rgba(16, 16, 15, .14);
  --shadow: 0 24px 70px rgba(0, 0, 0, .34);
  --radius: 8px;
  --header-h: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--pearl);
  font-family: "IBM Plex Sans Arabic", "Segoe UI", Tahoma, Arial, sans-serif;
  font-size: 15px;
  overflow-x: hidden;
  text-rendering: geometricPrecision;
}

body.menu-open {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(49, 94, 86, .18), transparent 34%, rgba(139, 63, 69, .14)),
    linear-gradient(180deg, #10100f 0%, #181715 52%, #10100f 100%);
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  color: inherit;
}

::selection {
  background: var(--bronze);
  color: var(--ink);
}

:focus-visible {
  outline: 2px solid var(--bronze-2);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  inset-inline-start: 18px;
  top: 12px;
  z-index: 1000;
  translate: 0 -160%;
  background: var(--paper);
  color: var(--ink);
  padding: 12px 16px;
  border-radius: var(--radius);
  font-weight: 700;
}

.skip-link:focus {
  translate: 0;
}

.shell {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  min-height: var(--header-h);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  background: rgba(16, 16, 15, .68);
  backdrop-filter: blur(22px);
  transition: background .25s ease, border-color .25s ease;
}

.site-header.is-scrolled {
  background: rgba(16, 16, 15, .92);
  border-color: rgba(183, 133, 84, .24);
}

.nav-shell {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  direction: rtl;
  min-width: max-content;
}

.brand-lockup img {
  width: 46px;
  height: 46px;
}

.brand-lockup strong {
  display: block;
  color: var(--pearl);
  font-family: "Amiri", Georgia, serif;
  font-size: 21px;
  line-height: 1;
  letter-spacing: 0;
}

.brand-lockup small {
  display: block;
  margin-top: 3px;
  color: var(--stone);
  direction: ltr;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .035);
}

.main-nav a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 13px;
  border-radius: 999px;
  color: var(--stone);
  font-size: 13px;
  transition: color .2s ease, background .2s ease;
}

.main-nav a:hover,
.main-nav a.is-active {
  color: var(--ink);
  background: var(--pearl);
}

.button {
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 12px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  transition: transform .2s ease, border-color .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
}

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

.button-light {
  background: var(--pearl);
  color: var(--ink);
  border-color: var(--pearl);
}

.button-light:hover {
  box-shadow: 0 18px 42px rgba(245, 240, 231, .16);
}

.button-bronze {
  background: var(--bronze);
  color: var(--ink);
  border-color: var(--bronze);
}

.button-ghost {
  color: var(--pearl);
  border-color: var(--line);
  background: rgba(255, 255, 255, .035);
}

.button-dark {
  background: var(--ink);
  color: var(--pearl);
  border-color: var(--ink);
}

.button-line-dark {
  color: var(--ink);
  border-color: var(--line-dark);
  background: transparent;
}

.icon-button {
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  background: rgba(255, 255, 255, .04);
  cursor: pointer;
}

.menu-toggle {
  display: none;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: var(--pearl);
  border-radius: 999px;
  transition: rotate .2s ease, translate .2s ease;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  rotate: 45deg;
  translate: 0 4px;
}

.menu-toggle[aria-expanded="true"] span:last-child {
  rotate: -45deg;
  translate: 0 -4px;
}

.mobile-menu {
  display: none;
}

.hero {
  min-height: 92svh;
  position: relative;
  display: flex;
  align-items: end;
  overflow: hidden;
  padding: calc(var(--header-h) + 54px) 0 42px;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: #171716;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 34%;
  filter: saturate(.72) contrast(1.05);
  transform: scale(1.02);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(16, 16, 15, .12), rgba(16, 16, 15, .62) 46%, rgba(16, 16, 15, .92)),
    linear-gradient(180deg, rgba(16, 16, 15, .06) 0%, rgba(16, 16, 15, .36) 42%, rgba(16, 16, 15, .96) 100%);
}

.hero-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: end;
  gap: 34px;
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--bronze-2);
  direction: ltr;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  color: var(--paper);
  font-family: "Amiri", Georgia, serif;
  font-size: 92px;
  line-height: .9;
  letter-spacing: 0;
}

.hero-name {
  margin: 4px 0 0;
  color: var(--stone);
  direction: ltr;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 31px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero-lead {
  max-width: 630px;
  margin: 24px 0 28px;
  color: #eee5d8;
  font-size: 18px;
  line-height: 1.9;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-signal {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .06);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.hero-signal div {
  min-height: 100px;
  padding: 18px;
  background: rgba(16, 16, 15, .54);
}

.hero-signal span,
.queue-stats span,
.booking-receipt span,
.summary-box span {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.hero-signal strong,
.queue-stats strong {
  display: block;
  margin-top: 7px;
  direction: ltr;
  color: var(--pearl);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  line-height: 1;
}

.intro-band {
  border-block: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(49, 94, 86, .22), rgba(255, 255, 255, .035), rgba(139, 63, 69, .2));
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.intro-item {
  min-height: 178px;
  padding: 28px 26px;
  border-inline-start: 1px solid var(--line);
}

.intro-item:first-child {
  border-inline-start: 0;
}

.intro-item span {
  color: var(--bronze-2);
  direction: ltr;
  font-family: Georgia, "Times New Roman", serif;
}

.intro-item strong {
  display: block;
  margin-top: 12px;
  color: var(--paper);
  font-size: 21px;
}

.intro-item p {
  margin: 8px 0 0;
  color: var(--stone);
  line-height: 1.75;
}

.section {
  padding: 96px 0;
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-head h2,
.booking-title h2,
.queue-copy h2,
.contact-copy h2,
.modal-panel h2 {
  margin: 0;
  color: var(--paper);
  font-family: "Amiri", Georgia, serif;
  font-size: 52px;
  line-height: 1.05;
  letter-spacing: 0;
}

.section-head p:last-child,
.queue-copy > p,
.contact-copy > p {
  margin: 16px 0 0;
  color: var(--stone);
  font-size: 16px;
  line-height: 1.9;
}

.brand-system {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 14px;
}

.brand-system article,
.service-card,
.booking-flow,
.booking-visual,
.queue-copy,
.queue-code,
.membership-card,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .052);
}

.brand-system article {
  padding: 26px;
}

.brand-signature {
  min-height: 390px;
  display: grid;
  grid-template-columns: 150px 1fr;
  align-items: center;
  gap: 28px;
  background:
    linear-gradient(135deg, rgba(183, 133, 84, .17), rgba(49, 94, 86, .11)),
    rgba(255, 255, 255, .052);
}

.brand-signature img {
  width: 150px;
  height: 150px;
}

.brand-system h3 {
  margin: 0 0 12px;
  color: var(--paper);
  font-family: "Amiri", Georgia, serif;
  font-size: 31px;
  line-height: 1.15;
}

.brand-system p,
.brand-system li {
  color: var(--stone);
  line-height: 1.85;
}

.tone-panel ul {
  margin: 0;
  padding: 0 20px 0 0;
}

.palette-panel,
.typography-panel {
  grid-column: span 1;
}

.swatches {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}

.swatch {
  min-height: 132px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: start;
  cursor: pointer;
  background:
    linear-gradient(180deg, transparent, rgba(0, 0, 0, .28)),
    var(--swatch);
}

.swatch:nth-child(2) {
  color: var(--ink);
}

.swatch span {
  font-weight: 800;
}

.swatch small {
  direction: ltr;
  margin-top: 4px;
  font-family: Georgia, "Times New Roman", serif;
}

.type-sample {
  min-height: 180px;
  display: grid;
  align-content: center;
  border-top: 1px solid var(--line);
  margin-top: 18px;
  padding-top: 18px;
}

.type-sample span {
  display: block;
  color: var(--paper);
  font-family: "Amiri", Georgia, serif;
  font-size: 60px;
  line-height: .95;
}

.type-sample small {
  display: block;
  margin-top: 10px;
  color: var(--stone);
  font-size: 16px;
}

.visual-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, .025), rgba(49, 94, 86, .12));
}

.ritual-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.ritual-card {
  position: relative;
  min-height: 440px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 8px;
  padding: 20px;
  background: #151514;
  cursor: pointer;
  text-align: right;
}

.ritual-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.72) contrast(1.04);
  transition: transform .55s ease, filter .3s ease;
}

.ritual-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(16, 16, 15, .04), rgba(16, 16, 15, .88));
}

.ritual-card > *:not(img) {
  position: relative;
  z-index: 2;
}

.ritual-card:hover img {
  transform: scale(1.06);
  filter: saturate(.96) contrast(1.04);
}

.ritual-card span {
  direction: ltr;
  color: var(--bronze-2);
  font-family: Georgia, "Times New Roman", serif;
}

.ritual-card strong {
  direction: ltr;
  color: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  text-align: right;
}

.ritual-card small {
  color: var(--stone);
  font-size: 14px;
}

.filter-bar {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 12px;
  margin-bottom: 10px;
  scrollbar-width: thin;
}

.filter-chip {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 17px;
  color: var(--stone);
  background: rgba(255, 255, 255, .035);
  cursor: pointer;
  white-space: nowrap;
}

.filter-chip.active {
  color: var(--ink);
  background: var(--pearl);
  border-color: var(--pearl);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.service-card {
  min-height: 230px;
  padding: 20px;
  display: grid;
  align-content: space-between;
  text-align: right;
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.service-card:hover,
.service-card.selected {
  transform: translateY(-3px);
  border-color: rgba(183, 133, 84, .72);
  background: rgba(183, 133, 84, .12);
}

.service-card small {
  color: var(--bronze-2);
  direction: ltr;
  font-family: Georgia, "Times New Roman", serif;
  text-transform: uppercase;
}

.service-card h3 {
  margin: 12px 0 8px;
  color: var(--paper);
  font-size: 20px;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.service-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 18px;
  direction: ltr;
  color: var(--stone);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
}

.booking-section {
  background:
    linear-gradient(90deg, rgba(183, 133, 84, .12), transparent 42%, rgba(49, 94, 86, .17)),
    #121211;
}

.booking-layout {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 16px;
  align-items: start;
}

.booking-visual {
  min-height: 690px;
  position: sticky;
  top: calc(var(--header-h) + 18px);
  overflow: hidden;
  background: #191817;
}

.booking-visual img {
  width: 100%;
  height: 690px;
  object-fit: cover;
  filter: saturate(.78) contrast(1.04);
}

.booking-receipt {
  position: absolute;
  inset-inline: 18px;
  bottom: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(16, 16, 15, .78);
  backdrop-filter: blur(18px);
  padding: 18px;
}

.booking-receipt strong {
  display: block;
  margin-top: 7px;
  direction: ltr;
  color: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
}

.booking-receipt small {
  display: block;
  margin-top: 5px;
  direction: ltr;
  color: var(--bronze-2);
  font-family: Georgia, "Times New Roman", serif;
}

.booking-flow {
  padding: 26px;
  background: rgba(255, 255, 255, .065);
  box-shadow: var(--shadow);
  transition: transform .32s ease, border-color .32s ease, box-shadow .32s ease;
}

.booking-flow.step-pop {
  animation: bookingStepPop .42s ease;
}

.booking-title h2 {
  font-size: 44px;
}

.step-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin: 22px 0 24px;
}

.step-track span {
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .13);
  transition: background .28s ease, transform .28s ease, opacity .28s ease;
}

.step-track span.active {
  background: var(--bronze);
  transform: scaleY(1.18);
}

.booking-step {
  display: none;
}

.booking-step.active {
  display: block;
  animation: stepIn .36s cubic-bezier(.2, .8, .2, 1);
}

.booking-step h3 {
  margin: 0 0 16px;
  color: var(--paper);
  font-size: 21px;
}

.choice-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 9px;
}

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

.choice-card {
  min-height: 82px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  background: rgba(16, 16, 15, .28);
  cursor: pointer;
  text-align: right;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

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

.choice-card.active {
  border-color: rgba(183, 133, 84, .8);
  background: rgba(183, 133, 84, .15);
}

.choice-card.online-choice {
  position: relative;
}

.choice-card.online-choice::after {
  content: "2x";
  position: absolute;
  top: 12px;
  inset-inline-end: 12px;
  min-width: 34px;
  min-height: 24px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(49, 94, 86, .9);
  color: var(--paper);
  direction: ltr;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
  font-weight: 800;
}

.choice-card.split-pay::after {
  content: "Pay";
  background: rgba(139, 63, 69, .88);
}

.choice-card strong {
  display: block;
  color: var(--paper);
  font-size: 16px;
}

.choice-card span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  line-height: 1.45;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.field {
  display: grid;
  gap: 8px;
}

.field span {
  color: var(--stone);
  font-size: 12px;
}

.field input,
.field select {
  width: 100%;
  min-height: 56px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 14px;
  background: rgba(16, 16, 15, .42);
  color: var(--paper);
  outline: none;
}

.field input:focus,
.field select:focus {
  border-color: var(--bronze);
}

.online-perks {
  margin-bottom: 14px;
  border: 1px solid rgba(49, 94, 86, .55);
  border-radius: var(--radius);
  padding: 16px;
  background:
    linear-gradient(90deg, rgba(49, 94, 86, .28), rgba(183, 133, 84, .1)),
    rgba(255, 255, 255, .035);
}

.online-perks div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.online-perks span,
.points-box span {
  color: var(--muted);
  font-size: 12px;
}

.online-perks strong {
  color: var(--paper);
  font-size: 16px;
}

.online-perks p {
  margin: 9px 0 0;
  color: var(--stone);
  line-height: 1.65;
}

.summary-box {
  min-height: 82px;
  margin-top: 14px;
  border: 1px solid rgba(183, 133, 84, .46);
  border-radius: var(--radius);
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  background: rgba(183, 133, 84, .13);
}

.summary-box strong {
  direction: ltr;
  color: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  white-space: nowrap;
}

.points-box {
  min-height: 90px;
  margin-top: 10px;
  border: 1px solid rgba(245, 240, 231, .14);
  border-radius: var(--radius);
  padding: 16px;
  background: rgba(16, 16, 15, .32);
}

.points-box strong {
  display: block;
  margin-top: 6px;
  color: var(--bronze-2);
  direction: ltr;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
}

.points-box small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.55;
}

.booking-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  margin-top: 18px;
}

#submitBooking {
  display: none;
  grid-column: span 2;
}

.queue-section {
  background: linear-gradient(180deg, rgba(49, 94, 86, .13), rgba(255, 255, 255, .025));
}

.queue-layout {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 16px;
  align-items: stretch;
}

.queue-copy {
  padding: 34px;
}

.queue-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  margin: 28px 0 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.queue-stats div {
  min-height: 104px;
  padding: 17px;
  background: rgba(16, 16, 15, .62);
}

.queue-meter {
  height: 9px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, .12);
  margin-bottom: 22px;
}

.queue-meter span {
  display: block;
  width: 52%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--jade), var(--bronze));
  transition: width .35s ease;
}

.queue-code {
  min-height: 430px;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(16, 16, 15, .94), rgba(16, 16, 15, .64)),
    url("grooming-6.jpeg") center/cover;
}

.queue-code::before {
  content: "";
  width: 248px;
  height: 248px;
  border: 16px solid var(--paper);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, var(--ink) 13px, transparent 13px) 0 0/34px 34px,
    linear-gradient(var(--ink) 13px, transparent 13px) 0 0/34px 34px,
    var(--paper);
  box-shadow: 0 22px 70px rgba(0, 0, 0, .4);
}

.queue-code strong {
  position: absolute;
  width: 88px;
  height: 88px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--bronze-2);
  direction: ltr;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
}

.queue-code span {
  position: absolute;
  width: 36px;
  height: 36px;
  border: 1px solid var(--bronze);
}

.queue-code span:nth-child(1) {
  top: 42px;
  inset-inline-start: 42px;
}

.queue-code span:nth-child(2) {
  top: 42px;
  inset-inline-end: 42px;
}

.queue-code span:nth-child(3) {
  bottom: 42px;
  inset-inline-start: 42px;
}

.queue-code span:nth-child(4) {
  bottom: 42px;
  inset-inline-end: 42px;
}

.membership-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.rewards-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, .025), rgba(139, 63, 69, .12));
}

.reward-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.reward-card {
  min-height: 220px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  background: rgba(255, 255, 255, .052);
}

.reward-card span {
  direction: ltr;
  color: var(--bronze-2);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 42px;
  line-height: 1;
}

.reward-card strong {
  display: block;
  margin-top: 18px;
  color: var(--paper);
  font-size: 21px;
}

.reward-card p {
  margin: 10px 0 0;
  color: var(--stone);
  line-height: 1.75;
}

.membership-card {
  min-height: 260px;
  padding: 24px;
  display: grid;
  justify-items: start;
  align-content: space-between;
  text-align: right;
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.membership-card:hover,
.membership-card.active {
  transform: translateY(-3px);
  border-color: rgba(183, 133, 84, .76);
  background: rgba(183, 133, 84, .12);
}

.membership-card span {
  direction: ltr;
  color: var(--stone);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
}

.membership-card strong {
  direction: ltr;
  color: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 58px;
  line-height: .9;
}

.membership-card small {
  color: var(--muted);
  font-size: 14px;
}

.membership-note {
  margin: 20px 0 0;
  color: var(--stone);
  font-size: 16px;
  line-height: 1.7;
}

.gallery-section {
  background: #11100f;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr .85fr;
  gap: 12px;
}

.gallery-item {
  min-height: 300px;
  border: 0;
  border-radius: var(--radius);
  overflow: hidden;
  padding: 0;
  background: #171716;
  cursor: zoom-in;
}

.gallery-item.large {
  grid-row: span 2;
  min-height: 612px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(.32) saturate(.82) contrast(1.05);
  transition: transform .45s ease, filter .25s ease;
}

.gallery-item:hover img {
  transform: scale(1.045);
  filter: grayscale(0) saturate(.98) contrast(1.04);
}

.faq-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 28px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  padding: 20px;
}

.faq-list summary {
  color: var(--paper);
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
}

.faq-list p {
  margin: 14px 0 0;
  color: var(--stone);
  line-height: 1.8;
}

.contact-section {
  padding-bottom: 110px;
}

.contact-layout {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 16px;
  align-items: stretch;
  padding: 22px;
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
}

.contact-copy {
  padding: 18px;
}

.contact-copy .eyebrow {
  color: var(--jade);
}

.contact-copy h2 {
  color: var(--ink);
}

.contact-copy > p {
  color: #504b44;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.map-frame {
  min-height: 360px;
  overflow: hidden;
  border-radius: var(--radius);
  background: #ddd;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: inherit;
  border: 0;
  filter: grayscale(1) contrast(.94);
}

.site-footer {
  padding: 38px 0;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-grid p {
  max-width: 430px;
  margin: 0;
  color: var(--muted);
  direction: ltr;
  line-height: 1.6;
  text-align: center;
}

.bottom-nav {
  display: none;
}

.whatsapp-fab {
  position: fixed;
  inset-inline-end: 18px;
  bottom: 18px;
  z-index: 70;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #25d366;
  color: #06140a;
  direction: ltr;
  font-weight: 900;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .36);
}

.modal,
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0, 0, 0, .76);
}

.modal.show,
.lightbox.show {
  display: flex;
}

.modal-panel {
  position: relative;
  width: min(460px, 100%);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  padding: 30px;
  text-align: center;
  box-shadow: var(--shadow);
}

.modal-panel .eyebrow {
  color: var(--jade);
}

.modal-panel h2 {
  color: var(--ink);
  font-size: 36px;
}

.modal-panel p:not(.eyebrow) {
  margin: 10px 0 22px;
  color: #504b44;
  line-height: 1.85;
}

.modal-close {
  position: absolute;
  top: 14px;
  inset-inline-end: 14px;
  color: inherit;
  border-color: rgba(16, 16, 15, .18);
}

.lightbox img {
  max-width: min(920px, 100%);
  max-height: 86svh;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.lightbox .modal-close {
  color: var(--pearl);
  border-color: var(--line);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
  transition: opacity .55s ease, transform .55s ease;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes stepIn {
  from {
    opacity: 0;
    transform: translateY(12px) scale(.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes bookingStepPop {
  0% {
    transform: translateY(0);
    box-shadow: var(--shadow);
  }
  45% {
    transform: translateY(-4px);
    box-shadow: 0 28px 78px rgba(183, 133, 84, .18);
  }
  100% {
    transform: translateY(0);
    box-shadow: var(--shadow);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1100px) {
  .main-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-grid;
  }

  .mobile-menu {
    position: fixed;
    inset: var(--header-h) 0 auto;
    display: grid;
    gap: 2px;
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    background: rgba(16, 16, 15, .96);
    border-bottom: 1px solid var(--line);
    transition: max-height .25s ease, padding .25s ease;
  }

  .mobile-menu.open {
    max-height: 420px;
    padding: 12px 20px 20px;
  }

  .mobile-menu a {
    min-height: 48px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
    color: var(--stone);
  }

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

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

  .brand-system,
  .booking-layout,
  .queue-layout,
  .faq-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .booking-visual {
    position: relative;
    top: auto;
    min-height: 560px;
  }

  .booking-visual img {
    height: 560px;
  }
}

@media (max-width: 760px) {
  :root {
    --header-h: 72px;
  }

  .shell {
    width: min(450px, calc(100% - 28px));
  }

  .site-header {
    min-height: calc(var(--header-h) + env(safe-area-inset-top));
    padding-top: env(safe-area-inset-top);
  }

  .nav-shell {
    min-height: var(--header-h);
  }

  .brand-lockup img {
    width: 42px;
    height: 42px;
  }

  .brand-lockup strong {
    font-size: 20px;
  }

  .brand-lockup small {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    min-height: 90svh;
    padding: calc(var(--header-h) + env(safe-area-inset-top) + 34px) 0 34px;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(16, 16, 15, .18), rgba(16, 16, 15, .48) 34%, rgba(16, 16, 15, .96)),
      linear-gradient(90deg, rgba(16, 16, 15, .15), rgba(16, 16, 15, .72));
  }

  .hero-media img {
    object-position: center top;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .hero h1 {
    font-size: 60px;
  }

  .hero-name {
    font-size: 18px;
  }

  .hero-lead {
    font-size: 15px;
    line-height: 1.85;
  }

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

  .hero-signal {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-signal div {
    min-height: 82px;
    padding: 13px;
  }

  .hero-signal strong {
    font-size: 18px;
  }

  .hero-signal span {
    font-size: 10px;
  }

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

  .intro-item,
  .intro-item:first-child {
    min-height: 150px;
    border-inline-start: 0;
    border-top: 1px solid var(--line);
    padding: 24px 0;
  }

  .intro-item:first-child {
    border-top: 0;
  }

  .section {
    padding: 72px 0;
  }

  .section-head h2,
  .queue-copy h2,
  .contact-copy h2 {
    font-size: 36px;
  }

  .section-head p:last-child,
  .queue-copy > p,
  .contact-copy > p {
    font-size: 15px;
  }

  .brand-system {
    gap: 10px;
  }

  .brand-signature {
    min-height: auto;
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .brand-signature img {
    width: 112px;
    height: 112px;
  }

  .brand-system article {
    padding: 20px;
  }

  .brand-system h3 {
    font-size: 27px;
  }

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

  .swatch {
    min-height: 118px;
  }

  .type-sample span {
    font-size: 45px;
  }

  .ritual-grid {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 12px;
    scroll-snap-type: x mandatory;
  }

  .ritual-card {
    min-width: 78%;
    min-height: 410px;
    scroll-snap-align: start;
  }

  .service-grid,
  .membership-grid,
  .reward-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 190px;
  }

  .booking-flow {
    padding: 20px;
  }

  .booking-title h2 {
    font-size: 34px;
  }

  .booking-visual {
    min-height: 480px;
  }

  .booking-visual img {
    height: 480px;
  }

  .choice-list.two-columns,
  .form-grid,
  .queue-stats {
    grid-template-columns: 1fr;
  }

  .online-perks div {
    display: grid;
    gap: 5px;
  }

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

  #submitBooking {
    grid-column: auto;
  }

  .queue-copy {
    padding: 22px;
  }

  .queue-code {
    min-height: 350px;
  }

  .queue-code::before {
    width: 216px;
    height: 216px;
  }

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

  .gallery-item,
  .gallery-item.large {
    min-height: 230px;
    grid-row: auto;
  }

  .gallery-item.large {
    grid-column: span 2;
    min-height: 390px;
  }

  .contact-section {
    padding-bottom: 110px;
  }

  .contact-layout {
    padding: 12px;
  }

  .map-frame {
    min-height: 310px;
  }

  .footer-grid {
    flex-direction: column;
    text-align: center;
  }

  .bottom-nav {
    position: fixed;
    inset: auto 0 0;
    z-index: 75;
    min-height: calc(68px + env(safe-area-inset-bottom));
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
    padding: 9px 12px calc(9px + env(safe-area-inset-bottom));
    border-top: 1px solid var(--line);
    background: rgba(16, 16, 15, .92);
    backdrop-filter: blur(18px);
  }

  .bottom-nav a {
    min-height: 48px;
    display: grid;
    place-items: center;
    align-content: center;
    color: var(--stone);
    border-radius: var(--radius);
    line-height: 1.1;
  }

  .bottom-nav a.is-active {
    color: var(--ink);
    background: var(--pearl);
  }

  .bottom-nav span {
    font-size: 16px;
  }

  .bottom-nav small {
    font-size: 10px;
  }

  .whatsapp-fab {
    bottom: calc(82px + env(safe-area-inset-bottom));
  }
}

@media (max-width: 390px) {
  .hero h1 {
    font-size: 54px;
  }

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

  .ritual-card {
    min-width: 84%;
  }

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

  .gallery-item.large {
    grid-column: auto;
    min-height: 330px;
  }
}
