.brand{
  display:flex;
  flex-direction:column;
  gap:.12rem;
  min-width: 180px;
}
.brand-title{
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.28rem;
  letter-spacing:.3px;
  color: rgba(244,242,238,.96);
}
.brand-title::after{
  content:"";
  display:inline-block;
  width: .55em;
  height: .55em;
  margin-left: .35em;
  border-radius: 999px;
  background: radial-gradient(circle at 35% 35%, rgba(255,255,255,.55), rgba(199,164,106,.85));
  box-shadow: 0 0 0 1px rgba(199,164,106,.18);
  transform: translateY(-.08em);
}
.brand-sub{
  color: rgba(244,242,238,.78);
  font-family: var(--sans);
  font-size:.80rem;
  letter-spacing:.16em;
  text-transform: uppercase;
}

.icon-btn{
  width: 42px;
  height: 42px;
  display:inline-grid;
  place-items:center;
  border-radius:999px;
  border:1px solid rgba(244,242,238,.14);
  background: rgba(255,255,255,.02);
  color: rgba(244,242,238,.92);
  text-decoration:none !important;
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
}
.icon-btn:hover{
  background: rgba(255,255,255,.06);
  border-color: rgba(199,164,106,.35);
}
.icon-btn:active{ transform: translateY(1px); }
.icon-btn--ghost{
  background: rgba(16,16,18,.14);
  border-color: rgba(244,242,238,.12);
}

main{
  position:relative;
  z-index:1;
  background: var(--bg);
}

.hero--pinned,
.hero--fullbleed{
  position: fixed;
  inset: 0;
  height: 100svh;
  height: 100vh;
  padding: 0;
  overflow: hidden;
  z-index: 0;
}

.hero-stage{
  position: relative;
  height: 100%;
  min-height: 100%;
  display: grid;
  align-items: end;
}

.hero-bg{
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-bg img{
  width:100%;
  height:100%;
  object-fit:cover;
  transform: scale(1.02);
  filter: saturate(1.02) contrast(1.04);
}
.hero-bg-base{ opacity: 1; }
.hero-bg-fusion{
  opacity: .55;
  mix-blend-mode: screen;
  filter: saturate(1.06) contrast(1.08) blur(.2px);
  transform: scale(1.05);
  mask-image: radial-gradient(780px 520px at 72% 46%, rgba(0,0,0,.95), rgba(0,0,0,0) 62%);
  -webkit-mask-image: radial-gradient(780px 520px at 72% 46%, rgba(0,0,0,.95), rgba(0,0,0,0) 62%);
}
.hero-scrim{
  position:absolute;
  inset:0;
  background:
    radial-gradient(900px 520px at 18% 15%, rgba(199,164,106,.18), transparent 56%),
    linear-gradient(180deg, rgba(16,16,18,.16) 0%, rgba(16,16,18,.78) 62%, rgba(16,16,18,.92) 100%);
}

.hero-content{
  position:relative;
  z-index:1;
  padding: calc(5.0rem + var(--header-h)) 0 2.3rem;
  max-width: 980px;
}

.hero-unpin{
  height: 100svh;
  height: 100vh;
}

.hero-brand{
  display:flex;
  flex-direction:column;
  gap:.25rem;
  margin-bottom: .95rem;
}
.hero-brand-name{
  font-family: var(--serif);
  font-size: clamp(2.35rem, 4vw, 3.35rem);
  line-height: 1.00;
  font-weight: 700;
  letter-spacing: .25px;
}
.hero-brand-sub{
  color: rgba(199,164,106,.92);
  font-family: var(--sans);
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-size: .78rem;
}

.hero-quote{
  margin:0 0 1.2rem;
  font-size: clamp(1.12rem, 1.6vw, 1.40rem);
  line-height: 1.35;
  color: rgba(244,242,238,.92);
  max-width: 60ch;
  padding-left: .9rem;
  border-left: 1px solid rgba(199,164,106,.52);
}

.hero-actions{
  display:flex;
  gap:.6rem;
  flex-wrap:wrap;
  align-items:center;
}
.hero-actions-social{
  display:none;
  gap:.45rem;
  align-items:center;
  margin-top: .9rem;
}

.section{
  position: relative;
  padding: 3.4rem 0;
  background: var(--bg);
}

.section-alt{
  position: relative;
  background: #121214;
  border-top:1px solid rgba(244,242,238,.06);
  border-bottom:1px solid rgba(244,242,238,.06);
}

.section-head{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:1rem;
  margin-bottom:1.25rem;
}
.section-head h2{
  margin:0;
  font-size:1.95rem;
  font-weight: 650;
}
.section-head p{ margin:0; }

.grid-2{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:1.2rem;
  align-items:start;
}
.grid-2--media{
  gap: clamp(1rem, 2.6vw, 2rem);
  align-items:center;
}

.copy-block h2{
  margin:0 0 .55rem;
  font-size: 2.0rem;
  font-weight: 650;
}
.copy-block p{ margin:.55rem 0 0; }

.card{
  background: rgba(255,255,255,.020);
  border:1px solid rgba(244,242,238,.10);
  border-radius: var(--radius);
  padding:1.05rem 1.05rem;
  box-shadow: 0 0 0 rgba(0,0,0,0);
  transition: background .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.card:hover{
  background: rgba(255,255,255,.028);
  border-color: rgba(199,164,106,.22);
  box-shadow: var(--shadow-soft);
}
.card h3{
  margin:0;
  font-size:1.18rem;
  font-weight: 700;
}
.card p{ margin:.45rem 0 0; color: rgba(244,242,238,.90); }

.card--feature{
  padding: 1.15rem 1.15rem;
  margin-top: .95rem;
}

.checklist{
  margin:.75rem 0 0;
  padding:0;
  list-style:none;
  display:grid;
  gap:.55rem;
}
.checklist li{
  display:flex;
  align-items:flex-start;
  gap:.6rem;
  padding: .35rem 0;
  border-radius: 0;
  border: none;
  background: transparent;
}
.checklist li .icon{
  width: 1.1rem;
  height: 1.1rem;
  color: rgba(199,164,106,.95);
  margin-top: .06rem;
  flex: 0 0 auto;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.28));
}

.cta-row{
  display:flex;
  gap:.6rem;
  flex-wrap:wrap;
  margin-top: 1.05rem;
  align-items:center;
}
.cta-row--center{
  justify-content:center;
}

.gallery{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:.85rem;
  margin-top: 1.2rem;
}
.gallery--wide{
  grid-template-columns: repeat(3, 1fr);
}
.gallery--single{
  grid-template-columns: 1fr;
  max-width: 520px;
}

.thumb{
  padding:0;
  border:1px solid rgba(244,242,238,.12);
  border-radius: var(--radius2);
  overflow:hidden;
  background: rgba(255,255,255,.02);
  cursor:pointer;
  box-shadow: 0 12px 28px rgba(0,0,0,.24);
}
.thumb img{
  width:100%;
  aspect-ratio: 4/3;
  object-fit:cover;
  transition: transform .32s ease, filter .32s ease;
  filter: saturate(1.02) contrast(1.02);
}
.thumb:hover img{ transform: scale(1.035); }

.brand-strip{
  margin-top: 1.15rem;
  display:flex;
  gap: clamp(.9rem, 2.4vw, 1.6rem);
  align-items:center;
  justify-content:center;
  flex-wrap:wrap;
  padding: .25rem 0 0;
}
.brand-strip img{
  height: 44px;
  width: auto;
  opacity: .90;
  filter: saturate(1.02) contrast(1.06);
}
.brand-strip img:hover{
  opacity: 1;
}

.media-frame{
  border-radius: var(--radius2);
  overflow:hidden;
  border:1px solid rgba(244,242,238,.12);
  box-shadow: var(--shadow);
  background: rgba(0,0,0,.12);
}
.media-frame--soft{
  box-shadow: 0 18px 50px rgba(0,0,0,.34);
}
.media-frame img{
  width:100%;
  height:auto;
  aspect-ratio: 4 / 3;
  object-fit:cover;
}
.media-video{
  overflow:hidden;
}
.media-video video{
  width: 100%;
  height: 100%;
  display:block;
  object-fit: cover;
}
.media-video--portrait{
  aspect-ratio: 480 / 560;
  max-width: 480px;
  width: 100%;
  margin-left: auto;
}
.media-video--portrait video{
  aspect-ratio: 480 / 560;
}

.media-stack{
  display:grid;
  gap: .9rem;
}

.headspa-second{
  margin-top: 1.75rem;
}

.team-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:.95rem;
}
.person{
  display:grid;
  gap:.85rem;
  background: rgba(255,255,255,.020);
  border:1px solid rgba(244,242,238,.10);
  border-radius: var(--radius2);
  padding:1.05rem;
  transition: background .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.person:hover{
  background: rgba(255,255,255,.028);
  border-color: rgba(199,164,106,.20);
  box-shadow: var(--shadow-soft);
}
.avatar{
  width:100%;
  aspect-ratio: 4 / 5;
  object-fit:cover;
  border-radius: calc(var(--radius2) - 10px);
  border:1px solid rgba(244,242,238,.12);
  filter: saturate(1.02) contrast(1.03);
}

.person-body{
  display:grid;
  gap:.75rem;
}
.person-meta{
  display:grid;
  gap:.25rem;
  min-height: 4.1rem;
}
.person-meta h3{
  margin:0;
  font-family: var(--serif);
  font-weight: 700;
  line-height: 1.05;
}
.role{
  margin:0;
  color: var(--muted);
  font-family: var(--sans);
  font-weight:700;
  font-size:.95rem;
}
.person-desc p{
  margin:0;
  color: rgba(244,242,238,.90);
}

.accordion details{
  background: transparent;
  border:1px solid rgba(244,242,238,.10);
  border-radius: var(--radius);
  padding:.15rem .95rem;
  margin-bottom:.65rem;
}
.accordion summary{
  cursor:pointer;
  padding:.8rem 0;
  font-weight: 700;
  list-style:none;
  font-family: var(--sans);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: .75rem;
}
.accordion summary::-webkit-details-marker{ display:none; }

.acc-ico{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(199,164,106,.30);
  background: rgba(199,164,106,.06);
  color: rgba(199,164,106,.95);
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.accordion details[open] .acc-ico{
  transform: rotate(180deg);
  border-color: rgba(199,164,106,.48);
  background: rgba(199,164,106,.10);
}

.price-list{ padding: .45rem 0 .85rem; }
.price-subhead{
  margin-top: .85rem;
  padding-top: .85rem;
  border-top:1px solid rgba(244,242,238,.10);
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: .08px;
}
.price-row{
  display:flex;
  justify-content:space-between;
  gap:1rem;
  padding:.42rem 0;
  border-bottom:1px solid rgba(244,242,238,.08);
}
.price-row:last-child{ border-bottom:none; }

.fineprint{
  margin-top: .7rem;
  color: rgba(244,242,238,.78);
  font-size: .92rem;
}

.gift-card{
  margin-top: 1rem;
  border-color: rgba(199,164,106,.22);
}
.gift-card h3{
  display:flex;
  align-items:center;
  gap:.5rem;
}

.contact-grid{
  display:grid;
  grid-template-columns: 1fr 1fr 1.25fr;
  gap: 1rem;
  align-items: stretch;
}
.contact-card, .hours-card{
  border-radius: var(--radius2);
}
.contact-line{
  display:flex;
  align-items:flex-start;
  gap:.55rem;
  margin:.6rem 0;
}
.contact-line a{ font-weight: 700; }
.contact-actions{
  display:flex;
  gap:.6rem;
  flex-wrap:wrap;
  margin-top:.9rem;
}
.social-icons{
  display:flex;
  gap:.55rem;
  margin-top:1rem;
  align-items:center;
}

.hours{ width:100%; border-collapse:collapse; }
.hours td{
  padding:.44rem 0;
  border-bottom:1px solid rgba(244,242,238,.08);
}
.hours tr:last-child td{ border-bottom:none; }
.hours td:last-child{ text-align:right; color: rgba(244,242,238,.92); font-weight:700; }

.map-card{
  background: rgba(255,255,255,.020);
  border:1px solid rgba(244,242,238,.10);
  border-radius: var(--radius2);
  overflow:hidden;
  box-shadow: 0 10px 28px rgba(0,0,0,.18);
}
.map-card--tall{
  display:flex;
  flex-direction:column;
}
.map-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
  padding: .95rem 1.05rem;
  border-bottom:1px solid rgba(244,242,238,.08);
}
.map-head h3{
  margin:0;
  font-family: var(--serif);
  font-weight: 700;
}
.map-link{
  display:inline-flex;
  align-items:center;
  gap:.45rem;
  color: rgba(199,164,106,.92);
  font-family: var(--sans);
  font-weight: 700;
}
.map-link:hover{ text-decoration:none; color: var(--text); }
.map-frame{
  flex: 1 1 auto;
  min-height: 320px;
  aspect-ratio: 16/10;
  background: rgba(0,0,0,.18);
}
.map-frame iframe{
  width:100%;
  height:100%;
  border:0;
}

.sticky-actions{
  position:fixed;
  right: 16px;
  bottom: 16px;
  display:flex;
  flex-direction:column;
  gap:.55rem;
  z-index:70;

  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
}
.sticky-actions.is-visible{
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.lightbox{
  position:fixed;
  inset:0;
  display:none;
  z-index:100;
}
.lightbox.is-open{
  display:grid;
  place-items:center;
}
.lightbox-backdrop{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.74);
  backdrop-filter: blur(10px);
}
.lightbox-dialog{
  position:relative;
  width:min(1200px, calc(100% - 2rem));
  height: min(92vh, 900px);
  display:grid;
  grid-template-columns: 56px 1fr 56px;
  align-items:center;
  gap:.6rem;
  padding:0;
  background: transparent;
  border: none;
  box-shadow: none;
  z-index:1;
}
.lightbox-figure{
  margin:0;
  height:100%;
  display:grid;
  place-items:center;
}
.lightbox-figure img{
  width:auto;
  max-width: 100%;
  max-height: 92vh;
  object-fit: contain;
  border: none;
  background: transparent;
  border-radius: 0;
}
.lightbox-close{
  position:absolute;
  top: .4rem;
  right:.2rem;
  width:42px;
  height:42px;
  border-radius:999px;
  border:1px solid rgba(244,242,238,.14);
  background: rgba(16,16,18,.55);
  backdrop-filter: blur(10px);
  color:var(--text);
  font-size:1.5rem;
  cursor:pointer;
}
.lightbox-close:hover{ background: rgba(255,255,255,.08); }

.lightbox-nav{
  width:46px;
  height:46px;
  border-radius:999px;
  border:1px solid rgba(244,242,238,.14);
  background: rgba(16,16,18,.55);
  backdrop-filter: blur(10px);
  color:var(--text);
  font-size:2rem;
  line-height:1;
  cursor:pointer;
}
.lightbox-nav:hover{ background: rgba(255,255,255,.08); }
