:root {
  --black: #050505;
  --ink: #17130f;
  --white: #fffaf1;
  --paper: #f5efe4;
  --muted: #b8ad9d;
  --gold: #c9a55a;
  --gold-soft: #efd89a;
  --line: rgba(201, 165, 90, .28);
  --shadow: 0 24px 80px rgba(0, 0, 0, .28);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  line-height: 1.65;
}
img { width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(18px, 4vw, 56px);
  color: white;
  transition: background .35s ease, border-color .35s ease, padding .35s ease;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.site-header.scrolled, .site-header.solid {
  background: rgba(5,5,5,.92);
  border-color: var(--line);
  backdrop-filter: blur(18px);
  padding-block: 12px;
}
.brand { display: flex; align-items: center; gap: 12px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.brand-mark {
  width: 58px; height: 58px; display: grid; place-items: center;
}
.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(201, 165, 90, .22));
}
.site-nav { display: flex; align-items: center; gap: 26px; font-size: 13px; letter-spacing: .08em; text-transform: uppercase; }
.site-nav a { opacity: .9; }
.nav-cta, .btn {
  border: 1px solid var(--gold);
  padding: 12px 18px;
  color: var(--gold-soft);
  background: rgba(201,165,90,.08);
}
.nav-toggle { display: none; width: 42px; height: 42px; background: transparent; border: 1px solid var(--line); }
.nav-toggle span { display: block; height: 1px; background: white; margin: 7px 8px; }

.fullscreen { min-height: 100vh; }
.hero { position: relative; display: grid; align-items: center; overflow: hidden; color: white; background: var(--black); }
.hero-media { position: absolute; inset: 0; height: 100%; object-fit: cover; opacity: .76; transform: scale(1.02); }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.84), rgba(0,0,0,.38) 50%, rgba(0,0,0,.62)); }
.hero-content { position: relative; z-index: 2; width: min(760px, calc(100% - 36px)); margin-left: clamp(18px, 7vw, 96px); padding-top: 80px; }
.eyebrow {
  color: var(--gold-soft);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-weight: 700;
  font-size: 12px;
}
.dark-text { color: #9a752c; }
h1, h2, h3 { font-family: var(--serif); line-height: .95; margin: 0; letter-spacing: 0; }
h1 { font-size: clamp(58px, 11vw, 138px); max-width: 860px; }
h2 { font-size: clamp(38px, 6vw, 78px); }
h3 { font-size: 31px; }
.hero-copy { max-width: 620px; color: rgba(255,255,255,.82); font-size: clamp(17px, 2vw, 22px); }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 32px; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; transition: transform .25s ease, background .25s ease; }
.btn:hover, .nav-cta:hover { transform: translateY(-2px); background: rgba(201,165,90,.18); }
.btn.primary { color: var(--black); background: linear-gradient(135deg, var(--gold-soft), var(--gold)); font-weight: 800; }
.btn.ghost { color: white; border-color: rgba(255,255,255,.45); }
.hero-strip {
  position: absolute; left: clamp(18px, 7vw, 96px); right: clamp(18px, 7vw, 96px); bottom: 22px;
  z-index: 2; display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid rgba(255,255,255,.2); background: rgba(0,0,0,.32); backdrop-filter: blur(12px);
}
.hero-strip span { padding: 16px; border-right: 1px solid rgba(255,255,255,.16); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.82); }
.hero-strip span:last-child { border-right: 0; }

.section { padding: clamp(70px, 9vw, 132px) clamp(18px, 5vw, 76px); }
.dark { color: white; background: var(--black); }
.about-luxury {
  display: grid;
  grid-template-columns: minmax(280px, .92fr) minmax(0, 1.08fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: center;
  padding: clamp(76px, 10vw, 140px) clamp(18px, 5vw, 76px);
  color: white;
  background:
    radial-gradient(circle at 12% 18%, rgba(201, 165, 90, .15), transparent 32%),
    linear-gradient(135deg, #050505 0%, #100d09 52%, #050505 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.about-media {
  position: relative;
  border: 1px solid rgba(201, 165, 90, .38);
  border-radius: 22px;
  padding: 10px;
  background: linear-gradient(145deg, rgba(239, 216, 154, .16), rgba(255, 255, 255, .03));
  box-shadow: var(--shadow);
}
.about-media::before {
  content: "";
  position: absolute;
  inset: 22px -18px -18px 22px;
  z-index: 0;
  border: 1px solid rgba(201, 165, 90, .26);
  border-radius: 22px;
}
.about-media img {
  position: relative;
  z-index: 1;
  min-height: 620px;
  object-fit: cover;
  border-radius: 16px;
  filter: saturate(.92) contrast(1.04);
  transition: transform .7s ease, filter .7s ease;
}
.about-media:hover img {
  transform: scale(1.025);
  filter: saturate(1.02) contrast(1.08);
}
.about-content {
  font-family: "Poppins", var(--sans);
}
.about-label {
  margin: 0 0 14px;
  color: var(--gold-soft);
  font-family: "Poppins", var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.about-content h2 {
  max-width: 760px;
  color: #fff8e8;
  font-family: "Playfair Display", var(--serif);
  font-size: clamp(38px, 5.4vw, 76px);
  line-height: 1;
}
.about-copy {
  display: grid;
  gap: 16px;
  margin-top: 28px;
  color: rgba(255, 250, 241, .78);
  font-size: 15.5px;
  line-height: 1.86;
}
.about-copy p { margin: 0; }
.about-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 32px;
}
.about-features article {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 74px;
  padding: 18px;
  border: 1px solid rgba(201, 165, 90, .34);
  border-radius: 14px;
  background: rgba(255, 255, 255, .045);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06);
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.about-features article:hover {
  transform: translateY(-3px);
  border-color: rgba(239, 216, 154, .62);
  background: rgba(201, 165, 90, .1);
}
.about-features span {
  color: var(--gold-soft);
  font-size: 18px;
  line-height: 1;
}
.about-features strong {
  color: #fff8e8;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.about-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  margin-top: 34px;
  padding: 13px 22px;
  border: 1px solid var(--gold);
  color: var(--black);
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  font-family: "Poppins", var(--sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: transform .25s ease, box-shadow .25s ease;
}
.about-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(201, 165, 90, .18);
}
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 38px; }
.section-head h2 { max-width: 860px; }
.text-link { color: var(--gold-soft); border-bottom: 1px solid currentColor; padding-bottom: 5px; font-weight: 700; }
.dark-link { color: #7b5b22; }

.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service-card { min-height: 270px; padding: 34px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: linear-gradient(160deg, rgba(255,255,255,.055), rgba(255,255,255,.01)); }
.service-card span { color: var(--gold); font-size: 13px; letter-spacing: .18em; }
.service-card p, .team-card p, .plan p, blockquote { color: rgba(255,255,255,.72); }
.luxury-services {
  background:
    radial-gradient(circle at 88% 10%, rgba(212, 175, 55, .16), transparent 30%),
    linear-gradient(145deg, #050505 0%, #130f0a 48%, #050505 100%);
}
.services-intro {
  max-width: 980px;
  margin: 0 auto 46px;
  text-align: center;
  font-family: "Poppins", var(--sans);
}
.services-intro .eyebrow {
  color: var(--gold-soft);
}
.services-intro h2 {
  color: #fff8e8;
  font-family: "Playfair Display", var(--serif);
  font-size: clamp(38px, 5.8vw, 78px);
}
.services-intro p:not(.eyebrow) {
  max-width: 760px;
  margin: 24px auto 0;
  color: rgba(255, 250, 241, .76);
  font-size: 16px;
  line-height: 1.85;
}
.services-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}
.luxury-service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 420px;
  border: 1px solid rgba(212, 175, 55, .34);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .025)),
    linear-gradient(145deg, rgba(212, 175, 55, .06), transparent);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 54px rgba(0, 0, 0, .22);
  overflow: hidden;
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease, background .28s ease;
}
.luxury-service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, .68);
  box-shadow: 0 26px 70px rgba(0, 0, 0, .34);
}
.service-card-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  padding: 30px 30px 0;
  font-family: "Poppins", var(--sans);
}
.service-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(212, 175, 55, .52);
  border-radius: 50%;
  color: #d4af37;
  background: rgba(212, 175, 55, .08);
  transition: transform .28s ease, background .28s ease;
}
.service-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.luxury-service-card:hover .service-icon {
  transform: scale(1.06);
  background: rgba(212, 175, 55, .16);
}
.luxury-service-card small {
  display: block;
  margin-bottom: 8px;
  color: #d4af37;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.luxury-service-card strong {
  display: block;
  color: #fff8e8;
  font-family: "Playfair Display", var(--serif);
  font-size: clamp(25px, 3vw, 34px);
  line-height: 1.04;
}
.service-panel {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  margin: 24px 30px 30px;
  padding-top: 24px;
  border-top: 1px solid rgba(212, 175, 55, .42);
  overflow: hidden;
  transition: max-height .45s ease;
}
.luxury-services .service-panel {
  max-height: 360px;
}
.luxury-services .service-panel::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 72px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(13, 11, 9, 0), rgba(13, 11, 9, .92));
  opacity: 1;
  transition: opacity .25s ease;
}
.service-groups {
  display: grid;
  gap: 20px;
  opacity: .9;
  transition: opacity .4s ease;
}
.service-group h4 {
  margin: 0 0 11px;
  color: #f5dda1;
  font-family: "Playfair Display", var(--serif);
  font-size: 20px;
  line-height: 1.15;
}
.service-panel ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  color: rgba(255, 250, 241, .8);
  font-family: "Poppins", var(--sans);
  font-size: 14px;
  line-height: 1.48;
  list-style: none;
}
.service-panel li {
  position: relative;
  padding-left: 18px;
}
.service-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .7em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d4af37;
  box-shadow: 0 0 0 5px rgba(212, 175, 55, .09);
}
.service-toggle {
  width: calc(100% - 60px);
  min-height: 46px;
  margin: auto 30px 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(212, 175, 55, .5);
  border-radius: 999px;
  color: #f5dda1;
  background: rgba(212, 175, 55, .08);
  font-family: "Poppins", var(--sans);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: transform .25s ease, background .25s ease, border-color .25s ease, color .25s ease;
}
.service-toggle:hover {
  transform: translateY(-2px);
  border-color: rgba(212, 175, 55, .78);
  color: #050505;
  background: #d4af37;
}
.services-cta {
  display: flex;
  justify-content: center;
  margin-top: 42px;
}
.services-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 26px;
  border-radius: 999px;
  color: #050505;
  background: #d4af37;
  font-family: "Poppins", var(--sans);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  box-shadow: 0 18px 44px rgba(212, 175, 55, .22);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.services-cta a:hover {
  transform: translateY(-3px);
  background: #e8c95a;
  box-shadow: 0 24px 58px rgba(212, 175, 55, .32);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 170px;
  grid-auto-flow: dense;
  gap: 16px;
}
.gallery figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  background: var(--black);
  box-shadow: var(--shadow);
  border: 1px solid rgba(201, 165, 90, .18);
  border-radius: 8px;
}
.gallery-hero { grid-column: span 6; grid-row: span 2; }
.gallery-wide, .gallery-video { grid-column: span 6; grid-row: span 2; }
.gallery-tall { grid-column: span 3; grid-row: span 2; }
.gallery-tile { grid-column: span 3; grid-row: span 1; }
.gallery img, .gallery video { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.gallery figure:hover img, .gallery figure:hover video { transform: scale(1.05); }

.membership { color: white; background: linear-gradient(135deg, #050505, #19140d); }
.membership-groups { display: grid; gap: 40px; }
.membership-group h3 {
  margin-bottom: 18px;
  color: #fff8e8;
  font-size: clamp(32px, 4vw, 52px);
}
.plans { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; align-items: stretch; }
.plan {
  min-height: 300px;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 34px;
  background: linear-gradient(145deg, rgba(255,255,255,.065), rgba(255,255,255,.02));
  box-shadow: 0 18px 54px rgba(0, 0, 0, .22);
  position: relative;
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}
.plan:hover {
  transform: translateY(-4px);
  border-color: rgba(239, 216, 154, .58);
  box-shadow: 0 26px 70px rgba(0, 0, 0, .32);
}
.plan.featured { background: #fff7e7; color: var(--ink); }
.plan.featured p, .plan.featured li { color: #5e554b; }
.plan-tier {
  display: block;
  max-width: 72%;
  color: var(--gold-soft);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  line-height: 1.35;
  text-transform: uppercase;
}
.plan.featured .plan-tier { color: #7b5b22; }
.price {
  margin: 20px 0 18px;
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 800;
  line-height: 1;
  color: var(--gold-soft);
}
.plan.featured .price { color: #7b5b22; }
.plan ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.plan li {
  position: relative;
  padding-left: 18px;
  color: rgba(255,255,255,.72);
}
.plan li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}
.plan a { display: inline-block; margin-top: 22px; color: var(--gold-soft); border-bottom: 1px solid currentColor; font-weight: 800; }
.plan.featured a { color: #7b5b22; }
.badge { position: absolute; top: 22px; right: 22px; font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: #7b5b22; }

.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.location-card {
  min-height: 430px;
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 34px; color: white; background: linear-gradient(rgba(0,0,0,.32), rgba(0,0,0,.75)), url("assets/hero-salon.png") center/cover;
}
.location-card:nth-child(2) { background-image: linear-gradient(rgba(0,0,0,.28), rgba(0,0,0,.76)), url("assets/spa-suite.png"); }
.location-card p { color: var(--gold-soft); letter-spacing: .14em; text-transform: uppercase; font-size: 12px; }
.location-card span { max-width: 460px; color: rgba(255,255,255,.8); }
.location-card a { color: var(--gold-soft); font-weight: 800; }

.team-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.quotes { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.team-card { min-height: 230px; border: 1px solid var(--line); padding: 26px; background: rgba(255,255,255,.04); transition: transform .28s ease, border-color .28s ease, background .28s ease; }
.team-card:hover { transform: translateY(-4px); border-color: rgba(239, 216, 154, .58); background: rgba(255,255,255,.065); }
.avatar { width: 86px; height: 86px; display: grid; place-items: center; border: 1px solid var(--gold); color: var(--gold-soft); font-family: var(--serif); font-size: 31px; margin-bottom: 28px; }
.quotes { grid-template-columns: repeat(3, 1fr); }
.testimonials {
  color: white;
  background:
    radial-gradient(circle at 10% 16%, rgba(201, 165, 90, .14), transparent 30%),
    linear-gradient(135deg, #050505, #120e09);
  overflow: hidden;
}
.testimonials .section-head h2 { color: #fff8e8; }
.testimonial-carousel {
  width: 100%;
  overflow: hidden;
  padding: 8px 0 10px;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}
.testimonial-track {
  display: flex;
  width: max-content;
  gap: 18px;
  animation: testimonial-marquee 42s linear infinite;
}
.testimonial-carousel:hover .testimonial-track {
  animation-play-state: paused;
}
.testimonial-card {
  flex: 0 0 calc((100vw - (clamp(18px, 5vw, 76px) * 2) - 36px) / 3);
  min-height: 300px;
  max-width: 460px;
  padding: 30px;
  border: 1px solid rgba(201, 165, 90, .42);
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(255,255,255,.07), rgba(255,255,255,.025));
  box-shadow: 0 22px 64px rgba(0, 0, 0, .28);
}
.stars {
  color: #d4af37;
  font-size: 18px;
  letter-spacing: .08em;
}
.testimonial-card h3 {
  margin-top: 20px;
  color: #fff8e8;
  font-size: 31px;
}
.testimonial-card p {
  margin: 16px 0 0;
  color: rgba(255,255,255,.76);
  font-family: "Poppins", var(--sans);
  font-size: 15px;
  line-height: 1.78;
}
@keyframes testimonial-marquee {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}
blockquote { margin: 0; padding: 30px; background: #fff8eb; border-left: 3px solid var(--gold); color: #4a4238; font-family: var(--serif); font-size: 26px; line-height: 1.25; }
cite { display: block; margin-top: 24px; font-family: var(--sans); font-size: 13px; font-style: normal; color: #7b5b22; letter-spacing: .1em; text-transform: uppercase; }

.appointment-section {
  padding: clamp(70px, 9vw, 132px) clamp(18px, 5vw, 76px);
  color: white;
  background:
    radial-gradient(circle at 16% 16%, rgba(212, 175, 55, .16), transparent 30%),
    linear-gradient(135deg, #050505 0%, #171008 55%, #050505 100%);
  border-top: 1px solid var(--line);
}
.appointment-shell {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(32px, 6vw, 82px);
  align-items: center;
}
.appointment-copy h2 {
  max-width: 680px;
  color: #fff8e8;
  font-family: "Playfair Display", var(--serif);
  font-size: clamp(44px, 6.5vw, 88px);
}
.appointment-copy > p:not(.eyebrow) {
  margin: 20px 0 0;
  color: var(--gold-soft);
  font-family: "Poppins", var(--sans);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 700;
}
.appointment-notes {
  display: grid;
  gap: 14px;
  margin-top: 34px;
  color: rgba(255,255,255,.76);
  font-family: "Poppins", var(--sans);
  font-size: 15px;
}
.appointment-notes span { border-left: 1px solid var(--gold); padding-left: 14px; }
.appointment-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(212, 175, 55, .38);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.025));
  box-shadow: 0 26px 80px rgba(0, 0, 0, .34);
  backdrop-filter: blur(16px);
}
.appointment-form label {
  display: grid;
  gap: 8px;
  color: #fff8e8;
  font-family: "Poppins", var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.appointment-form input,
.appointment-form select {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(212, 175, 55, .28);
  border-radius: 999px;
  padding: 0 18px;
  color: white;
  background: rgba(0, 0, 0, .28);
  font: 500 14px "Poppins", var(--sans);
  outline: none;
  transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}
.appointment-form select { appearance: auto; }
.appointment-form input::placeholder { color: rgba(255,255,255,.42); }
.appointment-form input:focus,
.appointment-form select:focus {
  border-color: #d4af37;
  background: rgba(0, 0, 0, .4);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, .12);
}
.appointment-submit,
.appointment-whatsapp {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-family: "Poppins", var(--sans);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.appointment-submit {
  grid-column: 1 / -1;
  border: 0;
  color: #050505;
  background: #d4af37;
  box-shadow: 0 18px 44px rgba(212, 175, 55, .24);
  cursor: pointer;
}
.appointment-whatsapp {
  grid-column: 1 / -1;
  border: 1px solid rgba(212, 175, 55, .44);
  color: var(--gold-soft);
  background: rgba(255,255,255,.035);
}
.appointment-submit:hover,
.appointment-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 58px rgba(212, 175, 55, .26);
}

.cta-band { display: flex; align-items: center; justify-content: space-between; gap: 26px; padding: clamp(48px, 7vw, 88px) clamp(18px, 5vw, 76px); background: var(--black); color: white; border-top: 1px solid var(--line); }
.cta-band h2 { max-width: 900px; }
.footer { display: flex; justify-content: space-between; gap: 24px; padding: 34px clamp(18px, 5vw, 76px); background: #0a0908; color: white; border-top: 1px solid var(--line); }
.footer p { color: var(--muted); margin: 4px 0 0; }
.footer div:last-child { display: flex; gap: 18px; flex-wrap: wrap; color: var(--gold-soft); }
.whatsapp-float {
  position: fixed; right: 18px; bottom: 18px; z-index: 30; width: 58px; height: 58px; border-radius: 50%;
  display: grid; place-items: center; background: #25d366; color: #061b0d; font-weight: 900; box-shadow: var(--shadow);
}

.page-main { padding-top: 82px; }
.page-hero { min-height: 70vh; display: grid; align-content: center; padding: clamp(70px, 11vw, 140px) clamp(18px, 5vw, 76px); color: white; background: linear-gradient(90deg, rgba(0,0,0,.88), rgba(0,0,0,.5)), url("assets/hero-salon.png") center/cover; }
.page-hero h1 { max-width: 960px; font-size: clamp(52px, 9vw, 112px); }
.page-hero p:not(.eyebrow) { max-width: 650px; color: rgba(255,255,255,.78); font-size: 19px; }
.service-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.service-list article { background: #fff8eb; border: 1px solid var(--line); padding: 34px; }
.service-list p { color: #5e554b; }
.service-list a { color: #7b5b22; font-weight: 800; border-bottom: 1px solid currentColor; }
.hotel-pages { display: grid; gap: 18px; }
.hotel-panel { min-height: 560px; display: grid; align-items: end; padding: 34px; background: linear-gradient(rgba(255,250,241,.24), rgba(255,250,241,.96)), url("assets/hero-salon.png") center/cover; }
.hotel-panel.ramada { background-image: linear-gradient(rgba(255,250,241,.18), rgba(255,250,241,.96)), url("assets/spa-suite.png"); }
.hotel-panel div { max-width: 720px; }
.hotel-panel ul { padding-left: 20px; color: #544a40; }

.service-detail-hero {
  min-height: 76vh;
  display: grid;
  align-content: end;
  padding: clamp(92px, 12vw, 150px) clamp(18px, 5vw, 76px) clamp(46px, 7vw, 88px);
  color: white;
  background:
    linear-gradient(90deg, rgba(0,0,0,.9), rgba(0,0,0,.58), rgba(0,0,0,.82)),
    url("assets/gallery/gallery-18.jpg") center/cover;
}
.service-detail-hero.skin { background-image: linear-gradient(90deg, rgba(0,0,0,.9), rgba(0,0,0,.58), rgba(0,0,0,.82)), url("assets/gallery/gallery-21.jpg"); }
.service-detail-hero.beauty { background-image: linear-gradient(90deg, rgba(0,0,0,.9), rgba(0,0,0,.58), rgba(0,0,0,.82)), url("assets/gallery/gallery-17.jpg"); }
.service-detail-hero.spa { background-image: linear-gradient(90deg, rgba(0,0,0,.9), rgba(0,0,0,.58), rgba(0,0,0,.82)), url("assets/gallery/gallery-09.jpg"); }
.service-detail-hero.body { background-image: linear-gradient(90deg, rgba(0,0,0,.9), rgba(0,0,0,.58), rgba(0,0,0,.82)), url("assets/gallery/gallery-20.jpg"); }
.service-detail-hero.nails { background-image: linear-gradient(90deg, rgba(0,0,0,.9), rgba(0,0,0,.58), rgba(0,0,0,.82)), url("assets/gallery/gallery-06.jpg"); }
.service-detail-hero > div { max-width: 980px; }
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 22px;
  color: rgba(255,255,255,.72);
  font-family: "Poppins", var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.breadcrumb a { color: #f5dda1; }
.service-detail-hero h1 {
  max-width: 980px;
  color: #fff8e8;
  font-size: clamp(54px, 8vw, 118px);
}
.service-detail-hero p:not(.eyebrow) {
  max-width: 680px;
  margin-top: 22px;
  color: rgba(255,255,255,.78);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.8;
}
.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}
.detail-actions .btn { padding-inline: 24px; }
.service-detail-section {
  color: white;
  background:
    radial-gradient(circle at 10% 10%, rgba(212,175,55,.12), transparent 28%),
    linear-gradient(135deg, #050505, #16110a 56%, #050505);
}
.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.service-detail-card {
  min-height: 100%;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(212, 175, 55, .28);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.025));
  box-shadow: 0 22px 60px rgba(0,0,0,.26);
}
.service-detail-card h2 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  color: #fff8e8;
  font-size: clamp(28px, 3vw, 40px);
}
.service-detail-card h2 span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(212, 175, 55, .48);
  border-radius: 50%;
  color: #d4af37;
  background: rgba(212, 175, 55, .08);
  font-family: "Poppins", var(--sans);
  font-size: 17px;
}
.service-detail-card ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  margin: 0;
  padding: 0;
  color: rgba(255,250,241,.8);
  font-family: "Poppins", var(--sans);
  font-size: 14px;
  line-height: 1.55;
  list-style: none;
}
.service-detail-card li {
  position: relative;
  padding-left: 18px;
}
.service-detail-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .7em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d4af37;
  box-shadow: 0 0 0 5px rgba(212, 175, 55, .09);
}

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 960px) {
  .nav-toggle { display: block; }
  .site-nav {
    position: fixed; top: 72px; right: 14px; left: 14px; display: none; flex-direction: column; align-items: stretch;
    padding: 22px; background: rgba(5,5,5,.96); border: 1px solid var(--line);
  }
  .site-nav.open { display: flex; }
  .about-luxury { grid-template-columns: 1fr; }
  .about-media img { min-height: 460px; }
  .appointment-shell { grid-template-columns: 1fr; }
  .services-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-detail-grid { grid-template-columns: 1fr; }
  .testimonial-card { flex-basis: calc((100vw - 64px) / 2); }
  .service-grid, .plans, .location-grid, .team-grid, .quotes, .service-list { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: 260px; }
  .gallery-hero, .gallery-wide, .gallery-video { grid-column: span 2; grid-row: span 2; }
  .gallery-tall, .gallery-tile { grid-column: span 1; grid-row: span 1; }
  .hero-strip { grid-template-columns: 1fr 1fr; }
  .plan.featured { transform: none; }
}

@media (max-width: 640px) {
  .site-header { padding-inline: 14px; }
  .brand span:last-child { font-size: 12px; }
  .brand-mark { width: 46px; height: 46px; }
  .hero-content { margin-inline: 18px; width: auto; }
  .hero-copy { font-size: 16px; }
  .hero-strip { position: relative; left: auto; right: auto; bottom: auto; margin: 26px 18px 18px; grid-template-columns: 1fr; align-self: end; }
  .hero { align-content: center; padding-top: 80px; }
  .about-luxury { padding-block: 64px; }
  .about-media { border-radius: 18px; padding: 8px; }
  .about-media::before { display: none; }
  .about-media img { min-height: 340px; border-radius: 12px; }
  .about-copy { font-size: 14.5px; line-height: 1.78; }
  .about-features { grid-template-columns: 1fr; }
  .about-features article { min-height: 68px; }
  .services-intro { text-align: left; }
  .services-intro p:not(.eyebrow) { margin-inline: 0; }
  .services-card-grid { grid-template-columns: 1fr; }
  .luxury-service-card { min-height: auto; }
  .service-card-head { gap: 14px; padding: 24px 22px 0; }
  .service-icon { width: 48px; height: 48px; }
  .service-icon svg { width: 23px; height: 23px; }
  .luxury-service-card strong { font-size: 25px; }
  .service-panel { margin: 22px 22px 26px; padding-top: 22px; }
  .service-panel ul {
    font-size: 14px;
  }
  .services-cta { justify-content: flex-start; }
  .services-cta a {
    width: 100%;
    text-align: center;
  }
  .testimonial-carousel { mask-image: linear-gradient(90deg, transparent, black 5%, black 95%, transparent); }
  .testimonial-card {
    flex-basis: calc(100vw - 36px);
    min-height: 330px;
    padding: 26px;
  }
  .appointment-form { grid-template-columns: 1fr; border-radius: 18px; }
  .appointment-form input,
  .appointment-form select { border-radius: 16px; }
  .appointment-notes { font-size: 14px; }
  .section-head, .cta-band, .footer { flex-direction: column; align-items: flex-start; }
  .service-grid, .plans, .location-grid, .team-grid, .quotes, .service-list, .gallery { grid-template-columns: 1fr; }
  .gallery { grid-auto-rows: auto; }
  .gallery figure, .gallery-hero, .gallery-wide, .gallery-tall, .gallery-tile, .gallery-video {
    min-height: 280px;
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 4 / 3;
  }
  .gallery-video { aspect-ratio: 16 / 9; }
  .service-detail-hero { min-height: 68vh; }
  .detail-actions { flex-direction: column; align-items: stretch; }
  .service-detail-card ul { grid-template-columns: 1fr; }
  h3 { font-size: 28px; }
}
