:root {
  --ivory: #f7f3ea;
  --cream: #efe6d8;
  --sand: #dccdb8;
  --taupe: #b9a48a;
  --bronze: #8a7354;
  --bronze-deep: #6e5a40;
  --ink: #171310;
  --espresso: #2a241e;
  --muted: #6d6359;
  --line: rgba(23, 19, 16, 0.1);
  --line-strong: rgba(23, 19, 16, 0.18);
  --white: #fffcf7;
  --card: #fffdf8;
  --shadow: 0 18px 50px rgba(23, 19, 16, 0.1);
  --shadow-soft: 0 10px 30px rgba(23, 19, 16, 0.07);
  --radius: 28px;
  --radius-lg: 36px;
  --radius-pill: 999px;
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Outfit", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 148px;
}

body {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font-family: inherit;
}

.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 80;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.wrap {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bronze);
  font-weight: 400;
}

.serif {
  font-family: var(--serif);
}

h1,
h2,
.display {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.08;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 0 24px;
  border: 0;
  border-radius: var(--radius-pill);
  background: var(--ink);
  color: var(--white);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: 0.35s var(--ease);
}

.btn:hover {
  background: var(--bronze-deep);
}

.btn.ghost {
  background: transparent;
  color: var(--ink);
  box-shadow: inset 0 0 0 1px var(--line-strong);
}

.btn.ghost:hover {
  background: var(--ink);
  color: var(--white);
  box-shadow: none;
}

.btn.gold {
  background: var(--bronze-deep);
  color: var(--white);
}

.btn.gold:hover {
  background: var(--ink);
}

.btn.light {
  background: var(--white);
  color: var(--ink);
}

.btn.light:hover {
  background: var(--cream);
}

.btn-sm {
  min-height: 42px;
  padding: 0 18px;
  font-size: 13px;
}

.btn span[aria-hidden] {
  font-size: 14px;
  line-height: 1;
}

/* Split header — full stacked logo at center */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 8px 40px 10px;
  background: transparent;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.nav.scrolled {
  background: rgba(247, 243, 234, 0.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 var(--line);
}

.nav-shell {
  position: relative;
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  column-gap: 8px;
}

.nav-logo {
  grid-column: 2;
  grid-row: 1;
  z-index: 2;
  display: grid;
  place-items: center;
  justify-self: center;
  padding: 0 18px;
}

.nav-logo img {
  height: 128px;
  width: auto;
  max-width: none;
  display: block;
  transition: height 0.4s var(--ease);
}

.nav.scrolled .nav-logo img {
  height: 104px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  position: relative;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.04em;
  padding: 0 4px 8px;
}

.nav-links::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: rgba(255, 252, 247, 0.42);
}

.nav.scrolled .nav-links::after {
  background: rgba(23, 19, 16, 0.16);
}

.nav-links-left {
  grid-column: 1;
  grid-row: 1;
  justify-self: stretch;
  justify-content: flex-end;
}

.nav-links-right {
  grid-column: 3;
  grid-row: 1;
  justify-self: stretch;
  justify-content: flex-start;
}

.nav-links a {
  position: relative;
  color: var(--white);
  padding: 4px 0;
  transition: color 0.3s var(--ease);
}

.nav:not(.scrolled) .nav-links a {
  text-shadow: 0 1px 14px rgba(17, 13, 10, 0.4);
}

.nav.scrolled .nav-links a {
  color: var(--espresso);
}

.nav-links a:hover,
.nav-links a.active {
  color: #e8d5b8;
}

.nav.scrolled .nav-links a:hover,
.nav.scrolled .nav-links a.active {
  color: var(--bronze-deep);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: var(--radius-pill);
  background: var(--cream);
  cursor: pointer;
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
  z-index: 3;
  position: relative;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  position: absolute;
  left: 13px;
  width: 18px;
  height: 1.5px;
  background: var(--ink);
  border-radius: 2px;
}

.menu-toggle span {
  top: 21px;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
}

.menu-toggle span::before {
  top: -6px;
}

.menu-toggle span::after {
  top: 6px;
}

.btn.ghost-light {
  background: transparent;
  color: var(--white);
  box-shadow: inset 0 0 0 1px rgba(255, 252, 247, 0.55);
  padding-right: 8px;
}

.btn.ghost-light:hover {
  background: rgba(255, 252, 247, 0.12);
  box-shadow: inset 0 0 0 1px rgba(255, 252, 247, 0.9);
}

.btn-orb {
  width: 34px;
  height: 34px;
  margin-left: 8px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--white);
  color: var(--ink);
  font-size: 14px;
}

.eyebrow.light {
  color: rgba(255, 252, 247, 0.82);
}

/* Hero — full-bleed photo */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 0;
  overflow: hidden;
  color: var(--white);
}

.hero-slides,
.hero-slide,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-slide {
  opacity: 0;
  transition: opacity 0.9s var(--ease);
}

.hero-slide.is-active {
  opacity: 1;
  z-index: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.hero-shade {
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(17, 13, 10, 0.72) 0%, rgba(17, 13, 10, 0.28) 52%, rgba(17, 13, 10, 0.4) 100%),
    linear-gradient(180deg, rgba(17, 13, 10, 0.18) 0%, transparent 28%, rgba(17, 13, 10, 0.45) 100%);
}

.hero-inner {
  position: relative;
  z-index: 3;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 168px 0 168px;
}

.hero-copy {
  max-width: 640px;
}

.hero-copy h1 {
  font-size: clamp(52px, 7vw, 92px);
  margin: 16px 0 18px;
  color: var(--white);
  max-width: 12ch;
}

.hero-copy h1 em {
  font-style: italic;
  font-weight: 400;
  color: #e8d5b8;
}

.hero-copy p {
  max-width: 46ch;
  color: rgba(255, 252, 247, 0.82);
  font-size: 17px;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 44px;
}

.hero-avatars {
  display: flex;
}

.hero-avatars img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid rgba(255, 252, 247, 0.95);
  margin-left: -12px;
}

.hero-avatars img:first-child {
  margin-left: 0;
}

.hero-proof strong {
  display: block;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.15;
}

.hero-proof span {
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 252, 247, 0.7);
}

.hero-glass {
  position: absolute;
  z-index: 4;
  right: max(28px, calc((100vw - 1180px) / 2));
  bottom: 132px;
  width: min(400px, calc(100% - 48px));
  display: grid;
  grid-template-columns: 92px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border-radius: 24px;
  background: rgba(255, 252, 247, 0.14);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 252, 247, 0.28);
  box-shadow: 0 18px 40px rgba(17, 13, 10, 0.22);
}

.hero-glass img {
  width: 92px;
  height: 92px;
  object-fit: cover;
  border-radius: 18px;
}

.hero-glass span {
  display: block;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 252, 247, 0.7);
  margin-bottom: 6px;
}

.hero-glass p {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.3;
  color: var(--white);
}

.hero-glass-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hero-prev,
.hero-next {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 252, 247, 0.35);
  border-radius: 50%;
  background: rgba(255, 252, 247, 0.12);
  color: var(--white);
  cursor: pointer;
}

.hero-next {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}

.hero-dots {
  position: absolute;
  z-index: 4;
  right: 22px;
  top: 48%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 252, 247, 0.35);
  cursor: pointer;
}

.hero-dot.is-active {
  height: 22px;
  border-radius: 8px;
  background: var(--white);
}

.hero-curve {
  position: absolute;
  z-index: 5;
  left: 10px;
  right: 10px;
  bottom: -1px;
  height: 108px;
  display: flex;
  align-items: center;
  background: var(--ivory);
  border-radius: 80px 80px 0 0;
}

.marquee {
  width: 100%;
  overflow: hidden;
  padding: 0;
  background: transparent;
  border-radius: 0;
}

.marquee-track {
  display: flex;
  gap: 40px;
  width: max-content;
  animation: drift 32s linear infinite;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--espresso);
}

@keyframes drift {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes drift {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Sections */
section {
  padding: 96px 0;
}

section.hero {
  padding: 0;
  min-height: 100vh;
  overflow: hidden;
}

.section-head {
  text-align: center;
  margin-bottom: 56px;
}

.section-head h2 {
  font-size: clamp(36px, 5vw, 64px);
  margin-top: 14px;
}

.section-head p {
  margin: 16px auto 0;
  max-width: 52ch;
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 56px;
  align-items: center;
}

.split img,
.split-visual img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.split-copy h2 {
  font-size: clamp(36px, 4.6vw, 58px);
  margin: 14px 0 18px;
}

.split-copy p {
  color: var(--muted);
  margin-bottom: 16px;
}

.note {
  font-size: 13px;
  color: var(--bronze-deep);
  letter-spacing: 0.04em;
  margin-top: 18px;
}

.feature-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.feature {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: start;
  padding: 18px 18px 18px 16px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
}

.feature-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--cream);
  font-family: var(--serif);
  font-size: 14px;
  color: var(--bronze-deep);
}

.feature h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 4px;
}

.feature p {
  color: var(--muted);
  font-size: 14px;
  margin: 0;
}

.feature-go {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--white);
  font-size: 14px;
  align-self: center;
}

/* Services */
.services {
  padding-top: 24px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 22px;
}

.service-grid.four {
  grid-template-columns: repeat(4, 1fr);
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: transparent;
  border: 0;
  padding: 0;
  min-height: 0;
  overflow: visible;
  transition: 0.4s var(--ease);
}

.service-card:hover {
  transform: translateY(-6px);
}

.service-photo {
  height: 240px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.service-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-photo img[src*="service-nails"] {
  object-position: center 28%;
}

.service-photo img[src*="service-wax"] {
  object-position: center 42%;
}

.service-panel {
  position: relative;
  z-index: 1;
  margin: -48px 14px 0;
  padding: 28px 22px 24px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service-card h3 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 6px;
}

.service-meta {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.08em;
  margin: 0;
}

.service-panel .tariff {
  margin: 18px 0 20px;
  padding: 0;
  border: 0;
}

.service-panel .tariff-sum {
  white-space: nowrap;
  font-size: clamp(32px, 2.6vw, 42px);
}

.service-panel .btn {
  width: 100%;
}

.tariff {
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.tariff-kicker {
  display: block;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 4px;
}

.tariff-sum {
  font-family: var(--serif);
  font-size: clamp(36px, 3.2vw, 48px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 0.95;
  color: var(--ink);
  margin: 0;
}

.tariff-sum span {
  display: inline-block;
  margin-right: 8px;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.28em;
  vertical-align: super;
  color: var(--bronze);
  position: relative;
  top: -0.55em;
}

.tariff-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.tariff-pair .tariff-sum {
  font-size: clamp(40px, 3.8vw, 54px);
}

.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  position: relative;
  z-index: 1;
}

.btn-text:hover {
  color: var(--bronze-deep);
}

.service-card .btn {
  position: relative;
  z-index: 1;
}

/* Signature */
.signature {
  width: min(1280px, calc(100% - 48px));
  margin: 24px auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  min-height: 640px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.signature-copy {
  padding: 72px 64px;
  background: var(--espresso);
  color: var(--ivory);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.signature-copy .eyebrow {
  color: var(--taupe);
}

.signature-copy h2 {
  font-size: clamp(36px, 4.8vw, 62px);
  margin: 16px 0 18px;
}

.signature-copy p {
  color: rgba(244, 239, 230, 0.72);
  max-width: 48ch;
}

.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 28px 0 36px;
}

.pills span {
  border: 1px solid rgba(244, 239, 230, 0.22);
  border-radius: var(--radius-pill);
  padding: 8px 14px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.signature-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 12px;
}

.gallery-grid a {
  position: relative;
  overflow: hidden;
  display: block;
  border-radius: 22px;
}

.gallery-grid a:nth-child(1),
.gallery-grid a:nth-child(6) {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.gallery-grid a:hover img {
  transform: scale(1.06);
}

.gallery-grid .play,
.gallery-grid .tag {
  position: absolute;
  color: var(--white);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 10px;
}

.gallery-grid .play {
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(23, 19, 16, 0.18);
}

.gallery-grid .play i {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.gallery-cta {
  text-align: center;
  margin-top: 36px;
}

/* Reviews */
.reviews {
  background: transparent;
}

.review-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 22px;
}

.review-feature img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.quotes {
  display: grid;
  gap: 14px;
}

.quote {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-soft);
}

.quote p {
  font-family: var(--serif);
  font-size: 26px;
  line-height: 1.38;
  font-style: italic;
  font-weight: 400;
}

.quote span {
  display: block;
  margin-top: 16px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Visit */
.visit-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
}

.hours {
  display: grid;
  gap: 0;
  margin-top: 28px;
}

.hours div {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
  font-size: 15px;
}

.hours span {
  color: var(--muted);
}

.map-panel {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-soft);
}

.map-panel h3 {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 500;
}

/* Footer */
footer {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--ivory);
  margin: 24px 20px 20px;
  padding: 72px 0 28px;
  border-radius: var(--radius-lg);
}

.footer-word {
  position: absolute;
  left: 50%;
  bottom: -18px;
  transform: translateX(-50%);
  font-family: var(--serif);
  font-size: clamp(64px, 14vw, 180px);
  line-height: 0.8;
  color: rgba(244, 239, 230, 0.06);
  pointer-events: none;
  white-space: nowrap;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(244, 239, 230, 0.12);
}

.footer-brand img {
  height: 88px;
  background: var(--ivory);
  padding: 6px;
  border-radius: 18px;
}

.footer-brand p {
  margin-top: 18px;
  color: rgba(244, 239, 230, 0.62);
  max-width: 36ch;
}

footer h4 {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 16px;
}

footer ul {
  list-style: none;
}

footer li,
footer a {
  color: rgba(244, 239, 230, 0.78);
  margin-bottom: 8px;
  display: block;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 22px;
  font-size: 12px;
  color: rgba(244, 239, 230, 0.45);
}

/* Booking */
.page-hero {
  padding: 168px 0 40px;
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(42px, 6vw, 78px);
  margin-top: 12px;
}

.booking-layout {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 28px;
  align-items: start;
  padding-bottom: 96px;
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
  padding: 8px;
  background: var(--cream);
  border-radius: var(--radius-pill);
}

.tab {
  border: 0;
  background: transparent;
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  color: var(--muted);
}

.tab.active {
  background: var(--ink);
  color: var(--ivory);
}

.menu-block {
  display: none;
}

.menu-block.active {
  display: block;
}

.menu-group {
  margin-bottom: 28px;
}

.menu-group h3 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 8px;
}

.menu-item {
  display: block;
  padding: 22px 24px;
  margin-bottom: 12px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
}

.menu-item h4 {
  font-size: 16px;
  font-weight: 400;
}

.menu-item p {
  font-size: 13px;
  color: var(--muted);
  margin: 6px 0 14px;
  max-width: 62ch;
}

.price {
  font-family: var(--serif);
  font-size: 20px;
  white-space: nowrap;
}

.choose {
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-pill);
  background: transparent;
  font-size: 12px;
  letter-spacing: 0.04em;
  cursor: pointer;
}

.choose:hover,
.choose.selected {
  background: var(--ink);
  color: var(--ivory);
  border-color: var(--ink);
}

.booking-card {
  position: sticky;
  top: 112px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
}

.booking-card h3 {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 8px;
}

.form-row {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.form-row.two {
  grid-template-columns: 1fr 1fr;
}

label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

input,
select,
textarea {
  width: 100%;
  border: 0;
  border-radius: 14px;
  background: var(--ivory);
  padding: 12px 14px;
  color: var(--ink);
  outline: none;
  font-size: 15px;
}

textarea {
  min-height: 88px;
  resize: vertical;
}

.selected-service {
  margin: 8px 0 4px;
  font-family: var(--serif);
  font-size: 18px;
}

.form-note {
  font-size: 12px;
  color: var(--muted);
  margin: 12px 0 18px;
}

.success {
  display: none;
  padding: 14px;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 14px;
  font-size: 14px;
  margin-bottom: 12px;
}

.success.show {
  display: block;
}

.disclaimer {
  font-size: 12px;
  color: var(--muted);
  margin-top: 28px;
}

.copper {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  background: var(--card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.copper img {
  width: 100%;
  height: 100%;
  min-height: 640px;
  object-fit: cover;
}

.copper-copy {
  padding: 72px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.copper-copy h2 {
  font-size: clamp(36px, 4.6vw, 58px);
  margin: 14px 0 20px;
}

.copper-copy p {
  color: var(--muted);
  margin-bottom: 14px;
}

.copper-points {
  list-style: none;
  margin-top: 28px;
}

.copper-points li {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 16px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.copper-points strong {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bronze-deep);
  padding-top: 4px;
}

.cadence {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.cadence-list {
  list-style: none;
  background: var(--card);
  border-radius: var(--radius);
  padding: 8px 28px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.cadence-list li {
  display: flex;
  align-items: baseline;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  font-size: 18px;
}

.cadence-list li:last-child {
  border-bottom: 0;
}

.cadence-list span {
  font-family: var(--serif);
  font-size: 15px;
  color: var(--bronze);
  min-width: 28px;
}

.pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.booking-layout .pkg-grid {
  grid-template-columns: 1fr;
}

.pkg-card {
  border: 1px solid var(--line);
  background: var(--card);
  border-radius: var(--radius);
  padding: 32px 28px;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-soft);
}

.pkg-card.featured {
  background: var(--espresso);
  color: var(--ivory);
  border-color: transparent;
}

.pkg-card.featured p {
  color: rgba(244, 239, 230, 0.72);
}

.pkg-card.featured .tariff-kicker {
  color: var(--taupe);
}

.pkg-card.featured .tariff-sum {
  color: var(--ivory);
}

.pkg-card.featured .tariff-sum span {
  color: var(--taupe);
}

.pkg-card.featured .tariff-pair {
  border-color: rgba(244, 239, 230, 0.18);
}

.tariff-on-dark {
  margin-top: 28px;
  padding-top: 0;
  border: 0;
  max-width: 20ch;
}

.tariff-on-dark .tariff-kicker {
  color: var(--taupe);
}

.tariff-on-dark .tariff-sum {
  color: var(--ivory);
  font-size: clamp(52px, 5vw, 72px);
}

.tariff-on-dark .tariff-sum span {
  color: var(--taupe);
}

.pkg-card .eyebrow {
  justify-content: flex-start;
}

.pkg-card h3 {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 500;
  margin: 18px 0 10px;
}

.pkg-card p {
  color: var(--muted);
  font-size: 14.5px;
  flex: 1;
}

.pkg-tiers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 24px;
}

.pkg-tier {
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  background: transparent;
  padding: 14px 10px;
  text-align: left;
  cursor: pointer;
  color: inherit;
}

.pkg-card.featured .pkg-tier {
  border-color: rgba(244, 239, 230, 0.22);
  color: var(--ivory);
}

.pkg-tier:hover,
.pkg-tier.selected {
  background: var(--ink);
  color: var(--ivory);
  border-color: var(--ink);
}

.pkg-card.featured .pkg-tier:hover,
.pkg-card.featured .pkg-tier.selected {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}

.pkg-tier b {
  display: block;
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
}

.pkg-tier b::before {
  content: "AED ";
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.22em;
  vertical-align: super;
  margin-right: 4px;
  opacity: 0.7;
}

.pkg-tier small {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  letter-spacing: 0.08em;
  opacity: 0.75;
}

.menu-kicker {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bronze);
  margin: -4px 0 18px;
}

.menu-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: baseline;
}

.menu-head h4 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
}

.durations {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.addons {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.addons label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0;
  letter-spacing: 0.04em;
  text-transform: none;
  font-size: 13px;
  color: var(--ink);
  cursor: pointer;
}

.addons input {
  width: auto;
}

@media (max-width: 1200px) {
  .service-grid.four {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 1100px) {
  .nav {
    padding: 6px 16px 8px;
  }

  .nav-logo img,
  .nav.scrolled .nav-logo img {
    height: 88px;
  }

  .nav-links {
    display: none;
  }

  .nav.open .nav-shell {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    background: rgba(255, 252, 247, 0.98);
    border-radius: 24px;
    padding: 8px 18px 22px;
    box-shadow: var(--shadow);
  }

  .nav.open .nav-logo {
    width: 100%;
    padding: 0;
    order: -1;
  }

  .nav.open .nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    width: 100%;
    padding: 10px 0 4px;
  }

  .nav.open .nav-links::after {
    display: none;
  }

  .nav.open .nav-links a {
    color: var(--espresso);
  }

  .nav.open .nav-links a.active,
  .nav.open .nav-links a:hover {
    color: var(--bronze-deep);
  }

  .menu-toggle {
    display: block;
    position: absolute;
    top: 18px;
    right: 8px;
  }
}

@media (max-width: 980px) {
  .service-photo {
    height: 280px;
  }

  .split,
  .signature,
  .review-grid,
  .visit-grid,
  .booking-layout,
  .footer-grid,
  .service-grid,
  .service-grid.four,
  .copper,
  .cadence,
  .pkg-grid {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    padding: 120px 0 220px;
    align-items: flex-end;
  }

  .hero-copy h1 {
    font-size: clamp(40px, 11vw, 58px);
  }

  .hero-glass {
    right: 16px;
    left: 16px;
    width: auto;
    bottom: 122px;
    grid-template-columns: 72px 1fr auto;
  }

  .hero-glass img {
    width: 72px;
    height: 72px;
  }

  .hero-dots {
    right: 12px;
    top: 42%;
  }

  .hero-curve {
    height: 88px;
    border-radius: 48px 48px 0 0;
    left: 8px;
    right: 8px;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 180px;
  }

  .gallery-grid a:nth-child(1),
  .gallery-grid a:nth-child(6) {
    grid-column: span 2;
    grid-row: span 1;
  }

  .signature-copy,
  .copper-copy {
    padding: 40px 24px;
  }

  .copper img {
    min-height: 360px;
  }

  .booking-card {
    position: static;
  }

  .split img,
  .split-visual img,
  .review-feature img {
    height: 380px;
  }

  .tabs {
    border-radius: 22px;
  }

  footer {
    margin: 16px 12px 12px;
  }
}

@media (max-width: 640px) {
  .wrap {
    width: min(100% - 32px, 1180px);
  }

  .form-row.two,
  .hero-actions {
    grid-template-columns: 1fr;
    display: grid;
  }

  .hero-glass {
    grid-template-columns: 64px 1fr;
  }

  .hero-glass-nav {
    grid-column: 1 / -1;
    flex-direction: row;
    justify-content: flex-end;
  }
}
