﻿:root {
  --mauve: #ede0e0;
  --mauve2: #e2d0d0;
  --mauve3: #d4bcbc;
  --rose: #9e4c4c;
  --rose2: #b86666;
  --dark: #1a0a0a;
  --mid: #4a2222;
  --muted: #7a4a4a;
  --off: #f8f0f0;
  --line: rgba(26, 10, 10, 0.1);
  --linedark: rgba(26, 10, 10, 0.18);
  --ink-rgb: 26, 10, 10;
  --on-accent: #fff;
  --feature: #1a0a0a;
  --on-feature: #f8f0f0;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  overflow-x: hidden;
}

body {
  background: var(--mauve);
  color: var(--dark);
  font-family: "Jost", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
}

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

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

button {
  font: inherit;
}

.wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 40px;
}

.top-nav {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
  width: 100%;
  background: rgba(237, 224, 224, 0.97);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1160px;
  height: 70px;
  margin: 0 auto;
  padding: 0 40px;
}

.logo,
.foot-logo {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.45rem;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}

.logo em,
.foot-logo em {
  color: var(--rose);
  font-style: normal;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  color: var(--mid);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.nav-links a:hover,
footer a:hover,
.gal-link:hover {
  color: var(--rose);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--linedark);
  background: var(--off);
  cursor: pointer;
}

.nav-toggle-icon {
  position: relative;
  width: 18px;
  height: 2px;
  background: var(--dark);
}

.nav-toggle-icon::before,
.nav-toggle-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--dark);
  transition: transform 0.2s ease, top 0.2s ease, opacity 0.2s ease;
}

.nav-toggle-icon::before {
  top: -6px;
}

.nav-toggle-icon::after {
  top: 6px;
}

.nav-mobile {
  display: none;
}

.nav-backdrop {
  display: none;
}

body.nav-open .nav-toggle-icon {
  background: transparent;
}

body.nav-open .nav-toggle-icon::before {
  top: 0;
  transform: rotate(45deg);
}

body.nav-open .nav-toggle-icon::after {
  top: 0;
  transform: rotate(-45deg);
}

.language-toggle {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--linedark);
  background: var(--off);
}

.lang-button {
  min-width: 36px;
  min-height: 34px;
  border: 0;
  background: transparent;
  color: var(--mid);
  cursor: pointer;
  font-size: 0.74rem;
  font-weight: 800;
}

.lang-button.is-active {
  background: var(--rose);
  color: var(--on-accent);
}

.nav-cta,
.loc-cta,
.btn-mauve {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 26px;
  background: var(--dark);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  transition: 0.2s ease;
}

.nav-cta:hover,
.loc-cta:hover {
  background: var(--rose2);
}

.hours-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 70px;
  padding: 14px 40px;
  background: var(--rose);
  color: #fff;
}

.hb-item {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
}

.hb-item span {
  margin-left: 6px;
  opacity: 0.72;
  font-weight: 500;
}

.hb-divider {
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.3);
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 92vh;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(105deg, rgba(var(--ink-rgb), 0.84), rgba(var(--ink-rgb), 0.58) 55%, rgba(var(--ink-rgb), 0.26));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 82px 40px;
  color: #fff;
}

.hero-tag,
.sec-tag,
.loc-num,
footer h4 {
  color: var(--rose);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero-tag {
  margin-bottom: 24px;
  color: var(--mauve3);
}

.hero h1,
.disp,
.rev-rating,
.svc-name,
.svc-price,
.loc-city,
.loc-book-title,
.cta-inner h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  line-height: 1.02;
}

.hero h1 {
  max-width: 900px;
  margin-bottom: 24px;
  color: #fff;
  font-size: 6.6rem;
  overflow-wrap: normal;
  word-break: normal;
}

.hero-mission {
  max-width: 540px;
  margin: -22px 0 36px;
}

.hero-mission-toggle {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  list-style: none;
  cursor: pointer;
  color: #fff;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-mission-toggle::-webkit-details-marker {
  display: none;
}

.hero-mission-toggle::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
  margin-top: -3px;
}

.hero-mission[open] .hero-mission-toggle::after {
  transform: rotate(-135deg);
  margin-top: 2px;
}

.hero-mission[open] .hmt-open {
  display: none;
}

.hero-mission:not([open]) .hmt-close {
  display: none;
}

.hero-mission:not([open]) .hero-mission-body {
  display: none;
}

.hero-mission-body {
  margin-top: 16px;
}

.hero-mission-body p {
  color: color-mix(in srgb, #fff 88%, transparent);
  font-size: 0.98rem;
  line-height: 1.75;
}

.hero-mission-body p + p {
  margin-top: 12px;
}

.hero-desc {
  max-width: 540px;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.12rem;
  line-height: 1.8;
}

.hero-btns,
.cta-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn-light,
.btn-ghost-light,
.btn-ghost-dim {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 38px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.btn-light {
  background: var(--mauve);
  color: var(--dark);
}

.btn-light:hover {
  background: #fff;
}

.btn-ghost-light {
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: #fff;
}

.btn-ghost-light:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  margin-top: 64px;
}

.hero-stat {
  min-width: 150px;
  padding: 20px 30px;
  text-align: center;
  background: rgba(237, 224, 224, 0.12);
  border: 1px solid rgba(237, 224, 224, 0.22);
  backdrop-filter: blur(8px);
}

.hero-stat strong {
  display: block;
  color: #fff;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.55rem;
  line-height: 1;
}

.hero-stat span {
  display: block;
  margin-top: 6px;
  color: rgba(237, 224, 224, 0.68);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.section {
  padding: 110px 0;
}

.services,
.gallery,
.location {
  background: var(--off);
}

.reviews {
  background: var(--mauve);
}

.svc-top,
.gal-top,
.rev-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  margin-bottom: 56px;
}

.rev-top {
  align-items: flex-start;
}

.review-shell {
  display: grid;
  grid-template-columns: 246px minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}

.review-rail {
  display: grid;
  gap: 10px;
  align-content: start;
}

.review-rail-item {
  display: block;
  padding: 22px 20px;
  border: 1px solid var(--linedark);
  background: rgba(255, 255, 255, 0.4);
  color: var(--dark);
  text-decoration: none;
}

.review-rail-item span {
  display: block;
  color: var(--mid);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.review-rail-item strong {
  display: block;
  margin-top: 10px;
  color: var(--dark);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.05;
}

.review-rail-item small {
  display: block;
  margin-top: 10px;
  color: var(--mid);
  font-size: 0.84rem;
  line-height: 1.5;
}

.review-rail-item.is-active {
  background: var(--dark);
}

.review-rail-item.is-active span,
.review-rail-item.is-active strong,
.review-rail-item.is-active small {
  color: #fff;
}

.review-rail-item:hover {
  border-color: var(--rose);
}

.svc-top p {
  max-width: 420px;
  color: var(--mid);
  font-size: 1rem;
  line-height: 1.8;
}

.disp {
  margin-top: 16px;
  color: var(--dark);
  font-size: 4.5rem;
}

.svc-list {
  border-top: 2px solid var(--dark);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  column-gap: 52px;
}

.svc-row {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 15px 8px;
  border-bottom: 1px solid var(--linedark);
  transition: 0.15s ease;
}

.svc-row:hover {
  background: var(--mauve);
}

.svc-num {
  color: var(--rose);
  font-size: 0.78rem;
  font-weight: 800;
}

.svc-name {
  color: var(--dark);
  font-size: 1.3rem;
}

.svc-desc {
  color: var(--mid);
  font-size: 0.95rem;
  line-height: 1.65;
}

.svc-price {
  color: var(--dark);
  font-size: 1.15rem;
  text-align: right;
  white-space: nowrap;
}

.svc-price span,
.svc-price small {
  display: block;
}

.svc-price small {
  margin-top: 2px;
  color: var(--muted);
  font-family: "Jost", sans-serif;
  font-size: 0.78rem;
}

#experience {
  background: var(--off);
  padding: 102px 0 112px;
}

.experience-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  margin-bottom: 24px;
}

.experience-head p {
  max-width: 420px;
  color: var(--mid);
  font-size: 1rem;
  line-height: 1.8;
}

.vid4-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2px;
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
  background: var(--dark);
}

.vid4-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--dark);
}

.vid4-wrap video {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  filter: brightness(0.64) saturate(0.9);
}

.vid4-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(var(--ink-rgb), 0.88), rgba(var(--ink-rgb), 0.18), rgba(var(--ink-rgb), 0.08));
}

.vid4-label {
  position: absolute;
  left: 24px;
  bottom: 26px;
  z-index: 2;
}

.vid4-label strong {
  display: block;
  color: #fff;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1;
}

.vid4-label span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.gal-link {
  color: var(--mid);
  border-bottom: 1px solid var(--linedark);
  padding-bottom: 3px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.gal-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  grid-auto-rows: 280px;
  gap: 4px;
}

.tile {
  position: relative;
  overflow: hidden;
  background: var(--mauve2);
}

.tile:first-child {
  grid-row: span 2;
}

.tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) brightness(0.97);
  transition: 0.45s ease;
}

.tile:hover img {
  transform: scale(1.04);
  filter: saturate(1.05) brightness(1);
}

.tile-tag {
  position: absolute;
  left: 14px;
  bottom: 14px;
  max-width: calc(100% - 28px);
  padding: 8px 14px;
  background: color-mix(in srgb, var(--off) 92%, transparent);
  color: var(--dark);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.rev-rating {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  min-width: 220px;
  padding: 24px 26px;
  border: 1px solid var(--linedark);
  background: rgba(255, 255, 255, 0.35);
  color: var(--rose);
  font-size: 2.55rem;
  font-weight: 700;
  line-height: 0.95;
}

.rev-rating span {
  margin-top: 0;
  color: var(--mid);
  font-family: "Jost", sans-serif;
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.yelp-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 26px;
  padding: 36px;
  border: 1px solid var(--linedark);
  background: rgba(255, 255, 255, 0.32);
}

.yelp-card-head {
  max-width: 58ch;
}

.yelp-kicker {
  color: var(--mid);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.yelp-title {
  margin-top: 14px;
  color: var(--dark);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.8rem;
  font-weight: 500;
  line-height: 1;
}

.yelp-copy {
  margin-top: 16px;
  color: var(--mid);
  line-height: 1.8;
}

.yelp-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 46px;
  gap: 0;
}

.yelp-highlight {
  padding: 0 28px;
  text-align: center;
}

.yelp-highlight + .yelp-highlight {
  border-left: 2px solid rgba(48, 31, 31, 0.18);
}

.yelp-stars {
  color: var(--rose);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.28em;
}

.yelp-quote {
  max-width: 26ch;
  margin: 18px auto 0;
  color: var(--dark);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.55rem;
  font-style: italic;
  font-weight: 500;
  line-height: 1.35;
}

.yelp-attrib {
  margin-top: 24px;
  color: var(--mid);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.reviews-intro {
  max-width: 52ch;
  margin-top: 16px;
  color: var(--mid);
  line-height: 1.8;
}

.review-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  background: var(--dark);
  color: #fff;
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.review-note {
  margin: 0;
  color: var(--mid);
  line-height: 1.7;
}

.loc-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 3px;
  margin-top: 48px;
  background: var(--linedark);
}

.loc-block {
  min-height: 420px;
  padding: 52px 44px;
  background: var(--off);
}

.loc-block.accent {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
  background: var(--mauve);
}

.loc-city {
  margin-top: 18px;
  color: var(--dark);
  font-size: 2.5rem;
}

.loc-state {
  margin: 4px 0 24px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.loc-addr,
.loc-block p {
  color: var(--mid);
  font-size: 1rem;
  line-height: 1.9;
}

.loc-addr b {
  color: var(--dark);
  font-size: 1.1rem;
}

.loc-hrs {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--linedark);
}

.loc-hr {
  display: grid;
  grid-template-columns: minmax(82px, 0.4fr) minmax(0, 1fr);
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
}

.loc-hr b {
  color: var(--dark);
}

.loc-hr span {
  color: var(--mid);
}

.loc-cta {
  width: fit-content;
  margin-top: 28px;
}

.loc-book-title {
  color: var(--dark);
  font-size: 2.2rem;
}

.cta-band {
  background: var(--feature);
  padding: 110px 0;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 40px;
}

.cta-inner h2 {
  max-width: 700px;
  color: var(--on-feature);
  font-size: 5rem;
}

.btn-mauve {
  background: var(--on-feature);
  color: var(--feature);
  white-space: nowrap;
}

.btn-mauve:hover {
  background: var(--rose);
  color: var(--on-accent);
}

.btn-ghost-dim {
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.66);
}

.btn-ghost-dim:hover {
  border-color: var(--on-feature);
  color: var(--on-feature);
}

footer {
  padding: 64px 0 40px;
  background: var(--mauve2);
  border-top: 1px solid var(--linedark);
}

.foot-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--linedark);
}

.foot-desc {
  max-width: 340px;
  margin-top: 14px;
  color: var(--mid);
  line-height: 1.8;
}

footer h4 {
  margin-bottom: 18px;
  color: var(--dark);
}

footer ul {
  list-style: none;
}

footer li {
  margin-bottom: 10px;
}

footer a {
  color: var(--mid);
}

.foot-bottom {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 0.85rem;
}

.template-modern {
  --mauve: #171718;
  --mauve2: #111113;
  --mauve3: #2a2a2d;
  --rose: #c9aa72;
  --rose2: #d8bd87;
  --dark: #111113;
  --mid: #47423c;
  --muted: #756f65;
  --off: #f4f1ed;
  --line: rgba(17, 17, 19, 0.12);
  --linedark: rgba(17, 17, 19, 0.24);
  background: var(--off);
}

.template-modern .top-nav {
  background: rgba(17, 17, 19, 0.96);
  border-color: rgba(255, 255, 255, 0.08);
}

.template-modern .logo,
.template-modern .nav-links,
.template-modern footer h4 {
  color: #fff;
}

.template-modern .logo em,
.template-modern .sec-tag,
.template-modern .loc-num,
.template-modern .rev-rating,
.template-modern .svc-num {
  color: var(--rose);
}

.template-modern .language-toggle {
  background: #242426;
  border-color: rgba(255, 255, 255, 0.18);
}

.template-modern .lang-button {
  color: #fff;
}

.template-modern .lang-button.is-active,
.template-modern .nav-cta,
.template-modern .loc-cta {
  background: var(--rose);
  color: #171718;
}

.template-modern .hours-bar {
  background: #c9aa72;
  color: #151515;
}

.template-modern .hero-overlay {
  background: linear-gradient(100deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.58) 56%, rgba(0, 0, 0, 0.16));
}

.template-modern .hero h1 {
  max-width: 840px;
  font-family: "Jost", sans-serif;
  font-size: 5.4rem;
  font-weight: 800;
  line-height: 0.96;
  text-transform: uppercase;
}

.template-modern .btn-light {
  background: var(--rose);
  color: #171718;
}

.template-modern .btn-ghost-light {
  border-color: rgba(255, 255, 255, 0.68);
}

.template-modern .services,
.template-modern .reviews {
  background: #151516;
  color: #fff;
}

.template-modern .services .disp,
.template-modern .reviews .disp,
.template-modern .services .svc-name,
.template-modern .services .svc-price {
  color: #fff;
}

.template-modern .svc-top p,
.template-modern .svc-desc,
.template-modern .svc-price small,
.template-modern .yelp-copy {
  color: rgba(255, 255, 255, 0.68);
}

.template-modern .svc-list {
  border-color: var(--rose);
}

.template-modern .svc-row {
  border-color: rgba(255, 255, 255, 0.16);
}

.template-modern .svc-row:hover {
  background: rgba(255, 255, 255, 0.06);
}

.template-modern .yelp-card {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.template-modern .yelp-kicker,
.template-modern .yelp-copy,
.template-modern .review-note {
  color: rgba(255, 255, 255, 0.72);
}

.template-modern .yelp-title,
.template-modern .review-rail-item strong {
  color: #fff;
}

.template-modern .review-rail-item {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
}

.template-modern .vid4-grid {
  gap: 12px;
  padding: 18px;
  background: #111113;
}

.template-modern .vid4-wrap {
  min-height: 640px;
}

.template-modern .gallery,
.template-modern .location {
  background: var(--off);
}

.template-spa {
  --mauve: #e8eee7;
  --mauve2: #d8e1d6;
  --mauve3: #c6d3c1;
  --rose: #6f8f7a;
  --rose2: #86a68e;
  --dark: #19362c;
  --mid: #44584e;
  --muted: #718076;
  --off: #fbfaf5;
  --line: rgba(25, 54, 44, 0.12);
  --linedark: rgba(25, 54, 44, 0.2);
  background: var(--off);
}

.template-spa .top-nav,
.template-spa .hours-bar {
  background: color-mix(in srgb, var(--off) 94%, transparent);
  color: var(--dark);
}

.template-spa .hours-bar {
  border-bottom: 1px solid var(--line);
}

.template-spa .hb-divider {
  background: var(--linedark);
}

.template-spa .hero {
  min-height: 84vh;
}

.template-spa .hero-overlay {
  /* Light left-side scrim for text legibility; fades to near-clear so the hero video stays clean & sharp */
  background: linear-gradient(100deg, rgba(var(--ink-rgb), 0.5), rgba(var(--ink-rgb), 0.2) 55%, rgba(var(--ink-rgb), 0.04));
}

.template-spa .hero h1 {
  max-width: 820px;
  font-size: 5.6rem;
}

.template-spa .hero-tag,
.template-spa .hero-stat span {
  color: rgba(255, 255, 255, 0.76);
}

.template-spa .btn-light,
.template-spa .nav-cta,
.template-spa .loc-cta {
  background: var(--rose);
  color: var(--on-accent);
}

.template-spa .services,
.template-spa .gallery,
.template-spa .location {
  background: var(--off);
}

.template-spa .reviews,
.template-spa footer {
  background: var(--mauve);
}

.template-spa .svc-row:hover,
.template-spa .loc-block.accent {
  background: var(--mauve);
}

.template-spa .vid4-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 8px 18px 12px;
  background: var(--off);
}

.template-spa .vid4-wrap,
.template-spa .vid4-wrap video {
  min-height: 0;
  aspect-ratio: 16 / 9;
}

.template-spa .vid4-wrap,
.template-spa .tile,
.template-spa .rev,
.template-spa .loc-block {
  border-radius: 8px;
}

.template-gallery {
  --mauve: #f1e8ee;
  --mauve2: #dfcad8;
  --mauve3: #cf9eb8;
  --rose: #bd406e;
  --rose2: #f06f94;
  --dark: #24131c;
  --mid: #563345;
  --muted: #866a77;
  --off: #fff8fb;
  --line: rgba(36, 19, 28, 0.12);
  --linedark: rgba(36, 19, 28, 0.2);
}

.template-gallery .top-nav {
  background: rgba(255, 248, 251, 0.96);
}

.template-gallery .hours-bar {
  background: var(--dark);
}

.template-gallery .hero {
  min-height: 88vh;
}

.template-gallery .hero-overlay {
  background: linear-gradient(110deg, rgba(36, 19, 28, 0.86), rgba(189, 64, 110, 0.42) 58%, rgba(36, 19, 28, 0.16));
}

.template-gallery .hero h1 {
  max-width: 760px;
  font-size: 5.9rem;
}

.template-gallery .btn-light,
.template-gallery .nav-cta,
.template-gallery .loc-cta {
  background: var(--rose);
  color: #fff;
}

.template-gallery .gallery {
  padding-top: 72px;
  background: var(--dark);
  color: #fff;
}

.template-gallery .gallery .disp,
.template-gallery .gallery .gal-link {
  color: #fff;
}

.template-gallery .gal-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 240px;
}

.template-gallery .tile:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

.template-gallery .tile:nth-child(6) {
  grid-row: auto;
}

.template-gallery .reviews {
  background: var(--off);
}

.template-gallery .yelp-card {
  background: #fff;
  border: 1px solid var(--line);
}

.template-gallery .vid4-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.template-gallery .vid4-wrap {
  min-height: 560px;
}

/* Nav: iPad landscape (~1024px) keeps the desktop nav; mobile nav engages below 1024px */
@media (max-width: 1023px) {
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-mobile {
    position: fixed;
    top: 70px;
    left: 0;
    z-index: 240;
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 100%;
    padding: 14px 16px 16px;
    background: rgba(248, 240, 240, 0.98);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(16px);
  }

  .nav-mobile a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 12px;
    border: 1px solid var(--line);
    background: #fff;
    color: var(--dark);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.78rem;
    letter-spacing: 0.02em;
  }

  .nav-mobile a:hover {
    border-color: var(--linedark);
    color: var(--rose);
  }

  .nav-mobile .nav-mobile-cta {
    background: var(--dark);
    color: #fff;
    border-color: transparent;
  }

  .nav-mobile .nav-mobile-cta:hover {
    background: var(--rose);
    color: #fff;
  }

  .nav-backdrop {
    position: fixed;
    inset: 0;
    z-index: 230;
    display: block;
    background: rgba(26, 10, 10, 0.35);
  }

  body.nav-open {
    overflow: hidden;
  }
}

@media (max-width: 1060px) {
  .hero h1 {
    font-size: 4.8rem;
  }

  .svc-row {
    grid-template-columns: 44px 1fr auto;
    gap: 18px;
  }

  .svc-desc {
    display: none;
  }

  .experience-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .experience-head p {
    max-width: none;
  }

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

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

  .vid4-wrap,
  .vid4-wrap video {
    min-height: 0;
  }
  .loc-grid,
  .foot-top {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 700px) {
  .nav-inner {
    width: 100%;
    max-width: 390px;
    margin: 0;
    height: 66px;
    padding: 0 16px;
    gap: 8px;
  }

  .top-nav {
    overflow: hidden;
  }

  .nav-mobile {
    top: 66px;
  }

  .logo {
    max-width: 210px;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 1.25rem;
  }

  .logo em {
    display: none;
  }

  .language-toggle {
    flex: 0 0 auto;
  }

  .lang-button {
    min-width: 32px;
    min-height: 32px;
  }

  .nav-cta {
    display: none;
  }

  .hours-bar {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 8px;
    margin-top: 66px;
    padding: 12px 16px;
  }

  .hb-divider {
    display: none;
  }

  .hb-item {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    white-space: normal;
    font-size: 0.76rem;
  }

  .wrap,
  .hero-content,
  .cta-inner {
    padding-right: 20px;
    padding-left: 20px;
  }

  .hero-content {
    max-width: 390px;
    margin: 0;
  }

  .hero {
    min-height: 760px;
  }

  .hero-content {
    padding-top: 40px;
    padding-bottom: 32px;
  }

  .hero-tag {
    margin-bottom: 16px;
  }

  .hero-mission {
    margin: -10px 0 20px;
  }

  .hero h1 {
    max-width: 18ch;
    font-size: 2.4rem;
    line-height: 0.99;
    margin-bottom: 14px;
    text-wrap: balance;
  }

  .template-modern .hero h1 {
    max-width: 12ch;
    font-size: 2.35rem;
    line-height: 1;
  }

  .template-spa .hero h1,
  .template-gallery .hero h1 {
    max-width: 16ch;
    font-size: 2.5rem;
    line-height: 1.04;
  }

  .hero-desc {
    max-width: 34ch;
    margin-bottom: 18px;
    font-size: 0.95rem;
    line-height: 1.62;
  }

  .hero-btns,
  .cta-btns {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .btn-light,
  .btn-ghost-light,
  .btn-mauve,
  .btn-ghost-dim {
    width: 100%;
    min-height: 50px;
    padding: 0 18px;
    text-align: center;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px;
    margin-top: 20px;
  }

  .hero-stat {
    min-width: 0;
    padding: 12px 8px;
  }

  .hero-stat strong {
    font-size: 1.8rem;
  }

  .section {
    padding: 76px 0;
  }

  .svc-top,
  .gal-top,
  .rev-top,
  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .disp,
  .cta-inner h2 {
    font-size: 3rem;
  }

  .svc-row {
    grid-template-columns: 34px minmax(0, 1fr) auto;
    gap: 12px;
    padding: 24px 0;
  }

  .svc-row:hover {
    margin: 0;
    padding-right: 0;
    padding-left: 0;
  }

  .svc-name {
    font-size: 1.5rem;
  }

  .svc-price {
    font-size: 1.45rem;
  }
  .vid4-grid,
  .gal-grid,
  .review-shell {
    grid-template-columns: 1fr;
  }

  .template-gallery .vid4-grid,
  .template-gallery .gal-grid,
  .template-spa .vid4-grid {
    grid-template-columns: 1fr;
  }

  .vid4-wrap,
  .vid4-wrap video {
    min-height: 0;
  }

  .gal-grid {
    grid-auto-rows: 240px;
  }

  .tile:first-child,
  .tile:nth-child(6) {
    grid-row: auto;
  }

  .rev-rating {
    min-width: 0;
    width: 100%;
    font-size: 2.1rem;
  }

  .yelp-card {
    padding: 24px 20px;
  }

  .yelp-title {
    font-size: 2.25rem;
  }

  .yelp-highlights {
    grid-template-columns: 1fr;
  }

  .yelp-highlight {
    padding: 18px 0;
    text-align: center;
  }

  .yelp-highlight + .yelp-highlight {
    border-left: 0;
    border-top: 2px solid rgba(48, 31, 31, 0.18);
  }

  .yelp-quote {
    max-width: none;
    margin-right: 0;
    margin-left: 0;
    font-size: 1.35rem;
  }

  .review-shell {
    grid-template-columns: 1fr;
  }

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

  .review-rail-item {
    padding: 18px 14px;
  }

  .review-rail-item strong {
    font-size: 1.45rem;
  }

  .loc-block {
    min-height: 0;
    padding: 36px 22px;
  }

  .loc-city {
    font-size: 2.1rem;
  }

  .loc-hr {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .cta-band {
    padding: 80px 0;
  }

  .foot-bottom {
    flex-direction: column;
  }
}

@media (max-width: 390px) {
  .hero h1 {
    max-width: 19ch;
    font-size: 2.05rem;
    line-height: 0.96;
    margin-bottom: 12px;
    text-wrap: balance;
  }

  .template-modern .hero h1 {
    max-width: 12ch;
    font-size: 2.25rem;
  }

  .template-spa .hero h1,
  .template-gallery .hero h1 {
    max-width: 19ch;
    font-size: 2.15rem;
  }

  .hero-stats {
    display: none;
  }

  .hero-stat strong {
    font-size: 1.55rem;
  }

  .svc-row {
    grid-template-columns: 30px minmax(0, 1fr);
  }

  .svc-price {
    grid-column: 2;
    text-align: left;
  }
}



/* Luxury editorial reviews section */
.luxury-reviews {
  background: var(--mauve);
  padding: 92px 0 108px;
}

.luxury-reviews .wrap {
  max-width: 1040px;
}

.luxury-reviews-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 44px;
  margin-bottom: 64px;
}

.luxury-reviews-title {
  margin: 0;
  color: var(--dark);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(4.4rem, 8vw, 6.2rem);
  font-weight: 500;
  line-height: 0.88;
  letter-spacing: -0.055em;
}

.luxury-reviews-title em {
  color: var(--rose);
  font-style: italic;
  font-weight: 500;
}

.luxury-reviews-score {
  min-width: 210px;
  padding-top: 8px;
  text-align: left;
}

.luxury-reviews-score strong {
  display: block;
  color: var(--rose);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: 0.02em;
}

.luxury-reviews-score span {
  display: block;
  margin-top: 8px;
  color: var(--dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.luxury-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.luxury-review-item {
  min-height: 312px;
  padding: 50px 36px 42px;
}

.luxury-review-item + .luxury-review-item {
  border-left: 3px solid var(--linedark);
}

.luxury-stars {
  color: var(--rose);
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.luxury-review-quote {
  margin: 30px 0 0;
  color: var(--dark);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.32rem;
  font-style: italic;
  font-weight: 500;
  line-height: 1.62;
}

.luxury-review-quote::before {
  content: "\201C";
}

.luxury-review-quote::after {
  content: "\201D";
}

.luxury-review-author {
  margin-top: 26px;
  color: var(--dark);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

@media (max-width: 1060px) {
  .luxury-reviews .wrap {
    max-width: 860px;
  }

  .luxury-review-item {
    padding-right: 28px;
    padding-left: 28px;
  }
}

@media (max-width: 700px) {
  .luxury-reviews {
    padding: 78px 0 84px;
  }

  .luxury-reviews-top {
    flex-direction: column;
    gap: 24px;
    margin-bottom: 28px;
  }

  .luxury-reviews-title {
    font-size: 4.1rem;
  }

  .luxury-reviews-score {
    min-width: 0;
    padding-top: 0;
  }

  .luxury-reviews-score strong {
    font-size: 2.7rem;
  }

  .luxury-reviews-grid {
    grid-template-columns: 1fr;
  }

  .luxury-review-item {
    min-height: 0;
    padding: 34px 0;
  }

  .luxury-review-item + .luxury-review-item {
    border-left: 0;
    border-top: 2px solid var(--linedark);
  }

  .luxury-review-quote {
    margin-top: 22px;
    font-size: 1.25rem;
  }
}

/* Mobile autoplay hardening */
.hero-video,
.vid4-wrap video {
  pointer-events: none;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.hero-video::-webkit-media-controls,
.vid4-wrap video::-webkit-media-controls,
.hero-video::-webkit-media-controls-start-playback-button,
.vid4-wrap video::-webkit-media-controls-start-playback-button,
.hero-video::-webkit-media-controls-play-button,
.vid4-wrap video::-webkit-media-controls-play-button,
.hero-video::-webkit-media-controls-overlay-play-button,
.vid4-wrap video::-webkit-media-controls-overlay-play-button {
  display: none !important;
  opacity: 0 !important;
  -webkit-appearance: none !important;
}

@media (max-width: 700px) {
  .hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }

  .vid4-grid {
    gap: 1px;
  }

  .vid4-wrap {
    aspect-ratio: 9 / 14;
  }

  .vid4-wrap video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

/* V6 mobile header clean reset: keep the original hero/video build, only fix mobile nav behavior */
.nav-mobile[hidden],
.nav-backdrop[hidden],
body:not(.nav-open) .nav-mobile,
body:not(.nav-open) .nav-backdrop {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

@media (max-width: 700px) {
  .top-nav {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 1000 !important;
    background: var(--off) !important;
    border-bottom: 1px solid var(--line) !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    overflow: visible !important;
    pointer-events: auto !important;
  }

  .nav-inner {
    height: 70px !important;
    max-width: none !important;
    width: 100% !important;
    padding: 0 16px !important;
    margin: 0 !important;
    background: var(--off) !important;
    position: relative !important;
    z-index: 1002 !important;
  }

  .logo {
    font-size: 1.32rem !important;
    max-width: 175px !important;
    color: var(--dark) !important;
    pointer-events: auto !important;
  }

  .nav-actions,
  .language-toggle,
  .lang-button,
  .nav-toggle {
    pointer-events: auto !important;
    touch-action: manipulation !important;
    -webkit-tap-highlight-color: transparent !important;
  }

  .nav-actions {
    gap: 10px !important;
  }

  .language-toggle {
    background: var(--off) !important;
    border: 1px solid var(--linedark) !important;
  }

  .lang-button {
    min-width: 38px !important;
    min-height: 38px !important;
  }

  .nav-toggle {
    display: inline-flex !important;
    width: 44px !important;
    height: 44px !important;
    background: var(--off) !important;
    border: 1px solid var(--linedark) !important;
    position: relative !important;
    z-index: 1003 !important;
  }

  body.nav-open .nav-mobile {
    display: flex !important;
    visibility: visible !important;
    pointer-events: auto !important;
    position: fixed !important;
    top: 70px !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 1001 !important;
    width: 100% !important;
    padding: 14px 16px 18px !important;
    background: var(--off) !important;
    border-bottom: 1px solid var(--line) !important;
    box-shadow: 0 16px 30px rgba(20, 32, 28, 0.12) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  body.nav-open .nav-backdrop {
    display: block !important;
    visibility: visible !important;
    pointer-events: auto !important;
    position: fixed !important;
    top: 70px !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    z-index: 999 !important;
    background: transparent !important;
  }

  .hours-bar {
    margin-top: 70px !important;
  }
}

/* ============================================================
   Active palette — Blossom's sunset (default, always on)
   ============================================================ */
body[data-palette="sunset"] {
  --off: #fde6db;
  --mauve: #fad1ce;
  --mauve2: #f6c0bf;
  --mauve3: #f0a9b2;
  --dark: #42202f;
  --mid: #6e4253;
  --muted: #9d7281;
  --rose: #e0738f;
  --rose2: #f3c14e;
  --on-accent: #3a1c28;
  --feature: #2f1622;
  --on-feature: #fff1ea;
  --line: rgba(66, 32, 47, 0.12);
  --linedark: rgba(66, 32, 47, 0.22);
  --ink-rgb: 66, 32, 47;
}

/* ============================================================
   Services: no pricing — show a category tag instead
   ============================================================ */
.svc-price span {
  display: none;
}

.svc-price small {
  display: inline-block;
  margin-top: 0;
  padding: 6px 13px;
  border: 1px solid var(--linedark);
  border-radius: 999px;
  color: var(--mid);
  font-family: "Jost", sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ============================================================
   Specials & Perks
   ============================================================ */
.specials {
  background: var(--mauve);
}

.perks-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 16px;
}

.perk-card {
  padding: 32px 26px;
  background: var(--off);
  border: 1px solid var(--linedark);
  border-radius: 12px;
}

.perk-eyebrow {
  color: var(--rose);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.perk-title {
  margin: 14px 0 12px;
  color: var(--dark);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.95rem;
  font-weight: 500;
  line-height: 1.04;
}

.perk-desc {
  color: var(--mid);
  font-size: 0.95rem;
  line-height: 1.6;
}

.stamp-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 40px;
  padding: 38px 42px;
  background: var(--feature);
  border-radius: 14px;
}

.stamp-card .perk-eyebrow {
  color: var(--rose2);
}

.stamp-title {
  margin: 12px 0 14px;
  color: var(--on-feature);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1.02;
  font-variant-numeric: lining-nums;
  font-feature-settings: "lnum" 1;
}

.stamp-card .perk-desc {
  max-width: 46ch;
  color: color-mix(in srgb, var(--on-feature) 76%, transparent);
}

.stamp-dots {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.stamp {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1.5px dashed color-mix(in srgb, var(--on-feature) 42%, transparent);
  color: color-mix(in srgb, var(--on-feature) 55%, transparent);
  font-size: 0.85rem;
  font-weight: 700;
}

.stamp.is-filled {
  border-style: solid;
  border-color: var(--rose);
  background: var(--rose);
  color: var(--on-accent);
}

.stamp.stamp-free {
  border-style: solid;
  border-color: var(--rose2);
  color: var(--rose2);
  font-size: 0.85rem;
}

@media (max-width: 1060px) {
  .perks-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .stamp-card {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 30px 24px;
  }

  .stamp {
    width: 46px;
    height: 46px;
  }
}

/* ============================================================
   Signup band (demo)
   ============================================================ */
.signup-band {
  background: var(--feature);
}

.signup-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: 52px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 40px;
}

.signup-copy .sec-tag {
  color: var(--rose2);
}

.signup-copy .disp {
  color: var(--on-feature);
  font-size: 3.3rem;
}

.signup-copy p {
  max-width: 46ch;
  margin-top: 16px;
  color: color-mix(in srgb, var(--on-feature) 76%, transparent);
  line-height: 1.8;
}

.signup-action {
  width: 100%;
  min-width: 0;
}

.signup-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.signup-field {
  display: grid;
  gap: 6px;
}

.signup-label {
  color: color-mix(in srgb, var(--on-feature) 80%, transparent);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.signup-input {
  width: 100%;
  min-height: 54px;
  padding: 0 18px;
  border: 1px solid color-mix(in srgb, var(--on-feature) 38%, transparent);
  border-radius: 8px;
  background: color-mix(in srgb, var(--on-feature) 8%, transparent);
  color: var(--on-feature);
  font: inherit;
}

.signup-input::placeholder {
  color: color-mix(in srgb, var(--on-feature) 52%, transparent);
}

.signup-input:focus {
  outline: 2px solid var(--rose);
  outline-offset: 1px;
}

.signup-input.is-invalid {
  border-color: #f0a3a3;
  background: color-mix(in srgb, #f0a3a3 14%, transparent);
}

.signup-consent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  margin-top: 2px;
  cursor: pointer;
}

.signup-consent-box {
  width: 22px;
  height: 22px;
  margin: 2px 0 0;
  accent-color: var(--rose);
  flex: none;
  cursor: pointer;
}

.signup-consent-text {
  color: color-mix(in srgb, var(--on-feature) 72%, transparent);
  font-size: 0.8rem;
  line-height: 1.6;
}

.signup-btn {
  width: 100%;
  min-height: 56px;
  padding: 0 32px;
  border: 0;
  border-radius: 8px;
  background: var(--rose);
  color: var(--on-accent);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease;
}

.signup-btn:hover {
  background: var(--rose2);
}

.signup-btn.is-loading,
.signup-btn[disabled] {
  opacity: 0.6;
  cursor: progress;
}

.signup-status {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.55;
}

.signup-status[data-tone="error"] {
  color: #ffb4b4;
}

.signup-status[data-tone="info"] {
  color: color-mix(in srgb, var(--on-feature) 74%, transparent);
}

.signup-fineprint {
  margin: 0;
  color: color-mix(in srgb, var(--on-feature) 50%, transparent);
  font-size: 0.72rem;
  line-height: 1.55;
}

.signup-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  font-size: 0.74rem;
  color: color-mix(in srgb, var(--on-feature) 50%, transparent);
}

.signup-legal-links a {
  color: color-mix(in srgb, var(--on-feature) 74%, transparent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.signup-legal-links a:hover {
  color: var(--on-feature);
}

.signup-success {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 30px;
  border: 1px solid color-mix(in srgb, var(--on-feature) 22%, transparent);
  border-radius: 12px;
  background: color-mix(in srgb, var(--on-feature) 6%, transparent);
}

.signup-success-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.signup-success-title {
  color: var(--on-feature);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.9rem;
  font-weight: 600;
  line-height: 1.2;
}

.signup-success-text {
  color: color-mix(in srgb, var(--on-feature) 78%, transparent);
  line-height: 1.7;
}

/* The [hidden] attribute must win over the display rules above so the form,
   success panel, and status toggle correctly. */
.signup-form[hidden],
.signup-action[hidden],
.signup-success[hidden],
.signup-success-block[hidden],
.signup-status[hidden] {
  display: none;
}

/* Location map + Google reviews */
.loc-map {
  margin-top: 28px;
  overflow: hidden;
  border: 1px solid var(--linedark);
  border-radius: 12px;
}

.loc-map iframe {
  display: block;
  width: 100%;
  height: 380px;
  border: 0;
}

.loc-map-facade {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 260px;
  padding: 40px;
  background: var(--mauve);
  color: var(--dark);
  text-align: center;
}

.loc-map-pin {
  font-size: 2.2rem;
  line-height: 1;
}

.loc-map-facade-title {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.loc-map-facade-sub {
  color: var(--mid);
  font-size: 0.9rem;
}

.loc-reviews {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  min-height: 50px;
  padding: 0 28px;
  border: 1px solid var(--linedark);
  border-radius: 8px;
  color: var(--dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.loc-reviews:hover {
  border-color: var(--rose);
  color: var(--rose);
}

.luxury-reviews-link {
  display: inline-block;
  margin-top: 14px;
  padding-bottom: 3px;
  border-bottom: 1px solid var(--linedark);
  color: var(--rose);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.luxury-reviews-link:hover {
  border-color: var(--rose);
}

@media (max-width: 860px) {
  .signup-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 560px) {
  .signup-form {
    grid-template-columns: 1fr;
  }
}

/* Keep three language buttons fitting on small phones */
@media (max-width: 400px) {
  .lang-button {
    min-width: 30px !important;
    padding: 0 5px;
  }

  .logo {
    max-width: 120px !important;
  }
}

/* Local SEO intro + footer QR */
.loc-intro {
  max-width: 60ch;
  margin-top: 16px;
  color: var(--mid);
  font-size: 1.02rem;
  line-height: 1.8;
}

.foot-qr {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
}

.foot-qr img {
  width: 104px;
  height: 104px;
  padding: 6px;
  border: 1px solid var(--linedark);
  border-radius: 8px;
  background: #fff;
}

.foot-qr-cap {
  max-width: 14ch;
  color: var(--mid);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Signup incentive badge */
.signup-perk {
  display: inline-block;
  margin-top: 18px;
  padding: 9px 16px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--rose) 26%, transparent);
  color: var(--on-feature);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

/* Footer social icons */
.foot-social {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}

.foot-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--linedark);
  color: var(--dark);
  transition: 0.2s ease;
}

.foot-social-link:hover {
  background: var(--rose);
  border-color: var(--rose);
  color: var(--on-accent);
}

/* Map view-mode buttons */
.loc-map-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

.loc-map-btn {
  min-height: 44px;
  padding: 0 22px;
  border: 1px solid var(--linedark);
  border-radius: 8px;
  background: transparent;
  color: var(--dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.2s ease;
}

.loc-map-btn.is-primary {
  background: var(--dark);
  color: var(--off);
  border-color: var(--dark);
}

.loc-map-btn:hover {
  border-color: var(--rose);
  color: var(--rose);
}

.loc-map-btn.is-primary:hover {
  background: var(--rose);
  border-color: var(--rose);
  color: var(--on-accent);
}

/* Top bar social icons */
.hb-social {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.hb-social a {
  display: inline-flex;
  color: currentColor;
  opacity: 0.82;
  transition: opacity 0.2s ease;
}

.hb-social a:hover {
  opacity: 1;
}

/* Gallery "follow" social block */
.gal-follow {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.gal-follow-label {
  color: var(--mid);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.social-links {
  display: inline-flex;
  gap: 10px;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--linedark);
  color: var(--dark);
  transition: 0.2s ease;
}

.social-icon:hover {
  background: var(--rose);
  border-color: var(--rose);
  color: var(--on-accent);
}

@media (max-width: 700px) {
  .gal-follow {
    align-items: flex-start;
  }
}

/* Legal pages (privacy.html, sms-terms.html) */
.legal-page {
  background: var(--off);
  color: var(--dark);
  min-height: 100vh;
}

.legal-bar {
  border-bottom: 1px solid var(--line);
  background: var(--feature);
}

.legal-bar .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.legal-bar .logo {
  color: var(--on-feature);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.5rem;
  font-weight: 600;
}

.legal-bar .logo em {
  color: var(--rose2);
  font-style: italic;
}

.legal-back {
  color: color-mix(in srgb, var(--on-feature) 78%, transparent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.legal-back:hover {
  color: var(--on-feature);
}

.legal-main {
  max-width: 760px;
  margin: 0 auto;
  padding: 64px 40px 96px;
}

.legal-eyebrow {
  color: var(--rose);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.legal-main h1 {
  margin-top: 10px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.8rem;
  font-weight: 600;
  line-height: 1.1;
}

.legal-updated {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.86rem;
}

.legal-main h2 {
  margin-top: 40px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.7rem;
  font-weight: 600;
}

.legal-main p,
.legal-main li {
  margin-top: 14px;
  color: var(--mid);
  font-size: 1rem;
  line-height: 1.8;
}

.legal-main ul {
  margin-top: 8px;
  padding-left: 22px;
}

.legal-main a {
  color: var(--rose);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-main strong {
  color: var(--dark);
}

@media (max-width: 560px) {
  .legal-main {
    padding: 44px 22px 72px;
  }

  .legal-main h1 {
    font-size: 2.2rem;
  }
}

/* ============================================================
   Mission statement (collapsible)
   ============================================================ */
.section.mission {
  padding: 60px 0 10px;
}

.mission-card {
  max-width: 820px;
  margin: 0 auto;
  border: 1px solid var(--linedark);
  border-radius: 16px;
  background: var(--off);
}

.mission-summary {
  list-style: none;
  cursor: pointer;
  display: grid;
  gap: 7px;
  justify-items: center;
  padding: 26px 28px;
  text-align: center;
}

.mission-summary::-webkit-details-marker {
  display: none;
}

.mission-summary:focus-visible {
  outline: 2px solid var(--rose);
  outline-offset: 3px;
  border-radius: 14px;
}

.mission-eyebrow {
  color: var(--rose);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.mission-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.7rem, 4.4vw, 2.3rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--dark);
}

.mission-sub {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.mission-toggle {
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--rose);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mission-toggle::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
  margin-top: -3px;
}

.mission-card[open] .mission-toggle::after {
  transform: rotate(-135deg);
  margin-top: 2px;
}

.mission-card[open] .mission-toggle-open {
  display: none;
}

.mission-card:not([open]) .mission-toggle-close {
  display: none;
}

.mission-body {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 28px 30px;
  text-align: center;
}

.mission-body p {
  color: var(--mid);
  font-size: 1.02rem;
  line-height: 1.85;
}

.mission-body p + p {
  margin-top: 16px;
}

/* ============================================================
   Promo / stat cards (specials section)
   ============================================================ */
.promo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 16px;
}

.promo-grid--soon {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 0;
}

.promo-soon-head {
  margin: 32px 0 14px;
}

.promo-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 28px 24px;
  background: var(--off);
  border: 1px solid var(--linedark);
  border-radius: 14px;
}

.promo-value {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.6rem;
  font-weight: 600;
  line-height: 1;
  color: var(--rose);
}

.promo-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.12;
  color: var(--dark);
}

.promo-text {
  color: var(--mid);
  font-size: 0.92rem;
  line-height: 1.6;
}

.promo-meta {
  margin-top: auto;
  padding-top: 10px;
  color: var(--rose);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.promo-card.is-soon {
  background: color-mix(in srgb, var(--off) 68%, var(--mauve));
  border-style: dashed;
}

.promo-card.is-soon .promo-value {
  font-size: 1.7rem;
  color: var(--muted);
}

.promo-badge {
  align-self: flex-start;
  padding: 4px 12px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--rose) 16%, transparent);
  color: var(--rose);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Live/dated promo badge (e.g. Father's Day week) */
.promo-badge--live {
  background: var(--rose);
  color: var(--on-accent);
}

@media (max-width: 1060px) {
  .promo-grid,
  .promo-grid--soon {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .promo-grid,
  .promo-grid--soon {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   Birthday field (signup form, on dark band)
   ============================================================ */
.signup-bday {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.signup-bday-select {
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, currentColor 50%),
    linear-gradient(135deg, currentColor 50%, transparent 50%);
  background-position: calc(100% - 19px) center, calc(100% - 14px) center;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 36px;
}

/* Readable option list when the dropdown opens (light text would vanish on white) */
.signup-bday-select option {
  color: #1a0a0a;
}

/* ============================================================
   Media "window" cards (experience section)
   ============================================================ */
#experience {
  padding: 84px 0 92px;
}

.experience-head.is-centered {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  max-width: 700px;
  margin: 0 auto 38px;
  text-align: center;
}

.experience-head.is-centered .sec-tag {
  letter-spacing: 0.16em;
}

.experience-head.is-centered .media-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  max-width: 18ch;
}

.experience-head.is-centered p {
  max-width: 52ch;
  margin: 0 auto;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  max-width: 980px;
  margin: 0 auto;
}

.media-card {
  margin: 0;
}

.media-card-frame {
  padding: 10px;
  background: var(--off);
  border: 1px solid var(--linedark);
  border-radius: 14px;
  box-shadow: 0 20px 44px -30px rgba(var(--ink-rgb), 0.55);
}

.media-card-window {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 8px;
  background: var(--dark);
}

.media-card-window video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.03);
}

.media-card-cap {
  margin-top: 14px;
  text-align: center;
}

.media-card-cap strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.1;
  color: var(--dark);
}

.media-card-cap span {
  display: block;
  margin-top: 5px;
  color: var(--rose);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

@media (max-width: 680px) {
  #experience {
    padding: 60px 0 64px;
  }

  .media-grid {
    grid-template-columns: 1fr;
    gap: 22px;
    max-width: 460px;
  }
}

/* ============================================================
   Storefront / map facade polish
   ============================================================ */
.loc-map-facade {
  gap: 14px;
  min-height: 300px;
  background: linear-gradient(180deg, var(--off), var(--mauve));
}

.loc-map-facade-title {
  font-size: 1.1rem;
}
