:root {
  --bg: #f3eee6;
  --bg-soft: #f9f5ef;
  --bg-strong: #e7ddcf;
  --text: #161310;
  --muted: #665c50;
  --line: rgba(22, 19, 16, 0.1);
  --line-strong: rgba(22, 19, 16, 0.18);
  --accent: #967041;
  --dark: #14110f;
  --dark-soft: #1d1814;
  --light: #fbf7f1;
  --panel: rgba(255, 252, 246, 0.82);
  --shadow-soft: 0 14px 34px rgba(23, 15, 9, 0.06);
  --shadow-strong: 0 22px 56px rgba(23, 15, 9, 0.1);
  --radius-lg: 22px;
  --radius-md: 14px;
  --content-width: min(1220px, calc(100vw - 52px));
  --wide-width: min(1410px, calc(100vw - 36px));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.72), transparent 32%),
    linear-gradient(180deg, #fbf8f2 0%, #f5efe6 54%, #eee4d7 100%);
  font-family: "Manrope", sans-serif;
}

body.menu-open {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 100% 180px;
  opacity: 0.1;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.page-shell {
  position: relative;
  min-height: 100vh;
  overflow: clip;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  width: var(--wide-width);
  margin: 0 auto;
  padding: 16px 0;
  transition: padding 280ms ease;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 7px -14px;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 999px;
  background: rgba(252, 248, 242, 0.56);
  box-shadow: 0 8px 22px rgba(34, 26, 19, 0.05);
  backdrop-filter: blur(18px);
  transition:
    inset 280ms ease,
    background-color 280ms ease,
    box-shadow 280ms ease,
    border-color 280ms ease;
}

.site-header.is-scrolled {
  padding: 10px 0;
}

.site-header.is-scrolled::before {
  inset: 3px -8px;
  background: rgba(252, 248, 242, 0.82);
  border-color: rgba(255, 255, 255, 0.62);
  box-shadow: 0 12px 28px rgba(34, 26, 19, 0.09);
}

.header-bar {
  display: grid;
  grid-template-columns: minmax(220px, 270px) 1fr auto auto;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 4px;
}

.brand-mark {
  display: inline-block;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.1rem;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.9;
  white-space: nowrap;
  transition: font-size 280ms ease, transform 280ms ease, letter-spacing 280ms ease;
}

.site-header.is-scrolled .brand-mark {
  font-size: 1.9rem;
  transform: translateY(-1px);
}

.site-nav {
  display: flex;
  justify-content: center;
  justify-self: center;
  gap: 34px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 220ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.site-nav-footer {
  display: none;
}

.header-meta {
  display: flex;
  align-items: center;
  gap: 18px;
}

.header-meta-line,
.header-phone {
  margin: 0;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}

.header-phone {
  color: var(--text);
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  transition: background-color 220ms ease, border-color 220ms ease;
}

.menu-toggle span {
  display: block;
  width: 16px;
  height: 1.5px;
  background: var(--text);
  transition: transform 220ms ease, opacity 220ms ease;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateX(4px);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateX(-4px);
}

.hero,
.section,
.intro-band,
.site-footer {
  position: relative;
}

.hero {
  width: 100%;
  margin: 0;
  padding: 14px 0 112px;
}

.hero::before {
  content: "BOUTIQUE";
  position: absolute;
  top: 96px;
  right: -48px;
  color: rgba(22, 19, 16, 0.024);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(10rem, 22vw, 20rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 0.8;
  pointer-events: none;
}

.hero-shell {
  --pointer-x: 0px;
  --pointer-y: 0px;
  --hero-shift: 0px;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.72fr) minmax(220px, 0.4fr);
  gap: clamp(22px, 2.2vw, 40px);
  align-items: stretch;
  width: var(--wide-width);
  min-height: calc(100svh - 96px);
  margin: 0 auto;
}

.hero-visual,
.hero-detail,
.experience-media,
.gallery-item {
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.hero-visual {
  position: relative;
  min-height: 780px;
  background: #e8ddcf;
}

.hero-visual::before,
.hero-detail::before,
.about-proof-card::before,
.review-card::before,
.location-map::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: inherit;
  pointer-events: none;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 11, 8, 0.02), transparent 28%),
    linear-gradient(90deg, rgba(15, 11, 8, 0.12), transparent 38%);
}

.hero-visual img,
.hero-detail img,
.experience-media img,
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-visual img {
  transform: translate3d(calc(var(--pointer-x) * 0.018), calc(var(--hero-shift) + (var(--pointer-y) * 0.018)), 0)
    scale(1.04);
  transition: transform 320ms ease-out;
}

.hero-visual-stamp {
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(16, 12, 9, 0.26);
  color: rgba(255, 248, 241, 0.94);
  backdrop-filter: blur(10px);
}

.hero-visual-stamp span:first-child {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero-visual-stamp span:last-child {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.22rem;
}

.hero-copy,
.hero-side {
  position: relative;
  align-self: center;
}

.hero-copy {
  padding: 56px 0 24px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.hero-kicker {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-copy h1,
.section-heading h2,
.experience-copy h2,
.booking-copy h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 0.96;
}

.hero-copy h1 {
  max-width: 7ch;
  font-size: clamp(4.6rem, 7.5vw, 8rem);
}

.hero-text,
.experience-copy p,
.service-row p,
.ritual-step p,
.gallery-item figcaption,
.booking-copy p,
.form-note {
  color: var(--muted);
  line-height: 1.72;
}

.hero-text {
  max-width: 24rem;
  margin: 28px 0 0;
  font-size: 0.96rem;
}

.hero-actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.form-privacy-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 22px;
  cursor: pointer;
}

.form-privacy-label input[type="checkbox"] {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--light);
  cursor: pointer;
}

.form-privacy-label span {
  font-size: 0.82rem;
  line-height: 1.6;
  color: rgba(251, 247, 241, 0.72);
}

.form-privacy-label a {
  color: var(--light);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  transition:
    transform 220ms ease,
    background-color 220ms ease,
    color 220ms ease,
    border-color 220ms ease,
    opacity 220ms ease;
}

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

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

.button-light {
  background: rgba(255, 255, 255, 0.22);
}

.hero-editorial {
  margin-top: 54px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.hero-editorial p {
  max-width: 21rem;
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.52rem;
  line-height: 1.2;
}

.hero-side {
  display: grid;
  gap: 26px;
  align-self: stretch;
  padding: 34px 0 18px;
}

.hero-detail {
  position: relative;
  min-height: 280px;
}

.hero-detail img {
  transform: translate3d(calc(var(--pointer-x) * -0.02), calc(var(--pointer-y) * -0.02), 0) scale(1.03);
  transition: transform 320ms ease-out;
}

.hero-highlights {
  display: grid;
  gap: 14px;
  padding-top: 4px;
}

.hero-highlights div {
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.hero-highlights dt,
.service-index,
.ritual-step span {
  color: var(--accent);
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
}

.hero-highlights dt {
  font-size: 1.3rem;
}

.hero-highlights dd {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

.hero-scroll {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-scroll::before {
  content: "";
  width: 44px;
  height: 1px;
  background: currentColor;
}

.intro-band,
.section,
.site-footer {
  width: var(--content-width);
  margin: 0 auto;
}

.intro-band {
  padding: 24px 0 104px;
  text-align: center;
}

.intro-band::before,
.intro-band::after {
  content: "";
  position: absolute;
  top: 30px;
  width: 18%;
  height: 1px;
  background: var(--line);
}

.intro-band::before {
  left: 0;
}

.intro-band::after {
  right: 0;
}

.intro-band-mark {
  margin: 0 0 20px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.intro-band > p:last-child {
  max-width: 46rem;
  margin: 0 auto;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: #2b241d;
  line-height: 1.28;
}

.manifest {
  padding-top: 0;
}

.manifest-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.74fr);
  gap: clamp(26px, 4vw, 56px);
  align-items: end;
  padding-bottom: 42px;
}

.manifest-copy h2 {
  max-width: 11ch;
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.4rem, 6vw, 6.1rem);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 0.96;
}

.manifest-notes {
  display: grid;
  gap: 24px;
}

.manifest-notes p {
  max-width: 28rem;
  margin: 0;
  color: var(--muted);
  line-height: 1.9;
}

.manifest-lines {
  display: grid;
  gap: 12px;
}

.manifest-lines span {
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.marquee {
  overflow: hidden;
  padding: 18px 0;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.marquee-track {
  display: flex;
  gap: 42px;
  width: max-content;
  animation: marqueeMove 34s linear infinite;
}

.marquee-track span {
  position: relative;
  padding-left: 22px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.44rem;
  color: #342c24;
  white-space: nowrap;
}

.marquee-track span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 8px;
  height: 8px;
  border: 1px solid rgba(171, 125, 69, 0.65);
  border-radius: 50%;
  transform: translateY(-50%);
}

.section {
  padding: 86px 0 132px;
}

.section-heading {
  display: grid;
  gap: 12px;
  padding-bottom: 34px;
}

.section-heading h2,
.experience-copy h2,
.booking-copy h2 {
  max-width: 12ch;
  font-size: clamp(3rem, 5vw, 5.1rem);
}

.section-subcopy {
  max-width: 30rem;
  margin: 6px 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.services-list {
  border-top: 1px solid var(--line-strong);
}

.service-row {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr) 220px;
  gap: 24px;
  align-items: start;
  padding: 44px 0;
  border-bottom: 1px solid var(--line);
  transition: border-color 220ms ease;
}

.service-index {
  font-size: 3.6rem;
  line-height: 1;
  opacity: 0.42;
}

.service-row h3,
.ritual-step h3 {
  margin: 0;
}

.service-row h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.28rem;
  font-weight: 600;
}

.service-row p {
  max-width: 44rem;
  margin: 10px 0 0;
}

.service-meta {
  align-self: start;
  padding-top: 10px;
  color: var(--muted);
  text-align: right;
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.experience {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(28px, 4vw, 58px);
  align-items: center;
}

.experience-copy {
  padding-right: 12px;
}

.experience-quote {
  margin: 22px 0 26px;
  color: var(--accent);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.9rem;
  line-height: 1.2;
}

.experience-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.experience-list li {
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.experience-media {
  min-height: 760px;
}

.about-shell,
.location-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: clamp(28px, 4vw, 58px);
  align-items: start;
}

.about-copy > p:not(.eyebrow),
.location-copy > p:not(.eyebrow) {
  max-width: 36rem;
}

.about-points {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}

.about-points article {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.about-points span,
.about-proof-label,
.review-author {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.about-points p,
.about-proof-list,
.review-text {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.about-proof {
  align-self: stretch;
}

.about-proof-card {
  position: relative;
  height: 100%;
  padding: 30px;
  border: 1px solid rgba(22, 19, 16, 0.1);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.28);
  box-shadow: none;
}

.about-proof-list {
  display: grid;
  gap: 14px;
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}

.about-proof-list li {
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.gallery-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(0, 0.78fr) minmax(0, 0.82fr);
  gap: 18px;
  align-items: start;
}

.gallery-item {
  position: relative;
  min-height: 520px;
}

.gallery-item-large {
  min-height: 760px;
}

.gallery-item:nth-child(2) {
  margin-top: 52px;
}

.gallery-item:nth-child(3) {
  margin-top: 108px;
}

.gallery-item img {
  transition: transform 420ms ease;
}

.gallery-item:hover img {
  transform: scale(1.03);
}

.gallery-item figcaption {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  margin: 0;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 18px;
  background: rgba(16, 12, 9, 0.42);
  color: rgba(255, 248, 241, 0.92);
  backdrop-filter: blur(14px);
}

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

.ritual-step {
  padding: 28px 20px 0 0;
  border-top: 1px solid var(--line-strong);
}

.ritual-step span {
  display: inline-block;
  font-size: 2.1rem;
}

.ritual-step h3 {
  margin-top: 14px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  font-weight: 600;
}

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

.review-card {
  position: relative;
  min-height: 100%;
  padding: 28px;
  border: 1px solid rgba(22, 19, 16, 0.1);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.18);
  box-shadow: none;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.review-avatar {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: hsl(var(--avatar-hue, 24), 38%, 62%);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.review-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.review-name {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
}

.review-google-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  color: var(--muted);
}

.review-stars {
  margin: 0 0 14px;
  color: #f5a623;
  font-size: 1rem;
  letter-spacing: 0.06em;
}

.review-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.55rem;
  line-height: 1.28;
  margin: 0;
}

.review-date {
  margin-top: 18px;
  margin-bottom: 0;
  font-size: 0.76rem;
  color: var(--muted);
}

/* ── Google My Business Badge ────────────────────────────────── */

.gmb-badge {
  margin-top: 42px;
}

.gmb-badge-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 22px 30px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(8px);
  max-width: 720px;
  margin: 0 auto;
}

.gmb-badge-rating {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.gmb-score {
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  color: var(--text);
}

.gmb-stars {
  margin: 0 0 2px;
  color: #f5a623;
  font-size: 1rem;
  letter-spacing: 0.06em;
}

.gmb-label {
  margin: 0;
  font-size: 0.75rem;
  color: var(--muted);
}

.gmb-badge-divider {
  width: 1px;
  height: 48px;
  background: var(--line-strong);
  flex-shrink: 0;
}

.gmb-badge-copy {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 0;
}

.gmb-google-icon {
  flex-shrink: 0;
}

.gmb-badge-copy p {
  margin: 0;
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.4;
}

.gmb-cta {
  flex-shrink: 0;
  font-size: 0.82rem;
  padding: 10px 20px;
}

@media (max-width: 600px) {
  .gmb-badge-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .gmb-badge-divider {
    width: 100%;
    height: 1px;
  }

  .gmb-cta {
    align-self: stretch;
    text-align: center;
  }
}

.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.location-map {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  min-height: 520px;
}

.location-map iframe {
  width: 100%;
  height: 100%;
  min-height: 520px;
  border: 0;
}

.map-consent-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 32px 24px;
  text-align: center;
  background: var(--bg-strong);
  border-radius: var(--radius-lg);
  transition: opacity 400ms ease, visibility 400ms ease;
}

.map-consent-overlay.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.map-consent-text {
  max-width: 28rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.booking {
  width: 100%;
  max-width: none;
  margin: 40px 0 0;
  padding: 118px 0;
  background:
    radial-gradient(circle at top right, rgba(171, 125, 69, 0.12), transparent 26%),
    linear-gradient(180deg, var(--dark-soft) 0%, var(--dark) 100%);
  color: var(--light);
}

.booking-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 58px);
  align-items: start;
  width: var(--content-width);
  margin: 0 auto;
}

.booking .eyebrow,
.booking-copy p,
.booking .form-note,
.booking .contact-block span {
  color: rgba(251, 247, 241, 0.72);
}

.contact-block {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 24px;
  margin-top: 36px;
}

.contact-block div {
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(251, 247, 241, 0.16);
}

.contact-block span {
  display: block;
  margin-bottom: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-block a,
.contact-block p {
  margin: 0;
  color: var(--light);
  font-size: 1.04rem;
  line-height: 1.5;
}

.booking-form {
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background: rgba(255, 251, 246, 0.94);
  color: var(--text);
  box-shadow: 0 26px 56px rgba(0, 0, 0, 0.2);
}

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

.booking-form label {
  display: grid;
  gap: 10px;
  font-size: 0.94rem;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid rgba(22, 19, 16, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--text);
  transition: border-color 220ms ease, box-shadow 220ms ease, background-color 220ms ease;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  outline: none;
  border-color: rgba(171, 125, 69, 0.7);
  box-shadow: 0 0 0 4px rgba(171, 125, 69, 0.12);
  background: #fff;
}

.booking-form textarea {
  resize: vertical;
  min-height: 140px;
  margin-top: 18px;
}

.booking-form .button-light {
  background: transparent;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 28px;
  padding: 26px 0 42px;
  color: var(--muted);
  font-size: 0.9rem;
}

.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 45;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.38), 0 4px 12px rgba(0, 0, 0, 0.14);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 28px 46px rgba(0, 0, 0, 0.28);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 760ms cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 760ms cubic-bezier(0.2, 0.7, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes marqueeMove {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 1180px) {
  .header-bar {
    grid-template-columns: minmax(210px, 246px) 1fr auto;
  }

  .header-meta-line {
    display: none;
  }

  .hero-shell {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.8fr);
  }

  .hero-side {
    grid-column: 1 / -1;
    grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr) auto;
    align-items: end;
    gap: 20px;
    padding-top: 0;
  }

  .hero-detail {
    min-height: 240px;
  }

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

  .gallery-item:nth-child(3) {
    margin-top: 0;
  }

  .manifest-shell,
  .about-shell,
  .location-shell,
  .experience,
  .booking-shell {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 860px) {
  :root {
    --content-width: min(100vw - 28px, 100%);
    --wide-width: min(100vw - 20px, 100%);
    --radius-lg: 26px;
  }

  .site-header {
    padding: 10px 0;
  }

  .site-header::before {
    inset: 4px -8px;
  }

  .header-bar {
    grid-template-columns: auto 1fr auto;
    gap: 12px;
  }

  .brand {
    padding-left: 2px;
  }

  .brand-mark,
  .site-header.is-scrolled .brand-mark {
    font-size: 1.42rem;
    line-height: 0.96;
  }

  .header-meta {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .site-nav {
    position: fixed;
    inset: 84px 14px auto 14px;
    display: grid;
    gap: 18px;
    justify-content: stretch;
    padding: 24px 22px 22px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 30px;
    background:
      linear-gradient(180deg, rgba(249, 244, 237, 0.98), rgba(244, 236, 225, 0.98)),
      rgba(249, 244, 237, 0.98);
    box-shadow: var(--shadow-strong);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-14px);
    transition:
      opacity 240ms ease,
      transform 240ms ease,
      visibility 240ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .site-nav a {
    padding-bottom: 14px;
    border-bottom: 1px solid var(--line);
    font-size: 0.9rem;
  }

  .site-nav a::after {
    display: none;
  }

  .site-nav-footer {
    display: grid;
    gap: 12px;
    padding-top: 12px;
  }

  .site-nav-caption,
  .site-nav-phone {
    margin: 0;
  }

  .site-nav-caption {
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
  }

  .site-nav-phone {
    font-family: "Cormorant Garamond", serif;
    font-size: 2rem;
    line-height: 1;
  }

  .hero {
    padding-bottom: 62px;
  }

  .hero::before {
    top: 112px;
    right: -8px;
    font-size: 6.4rem;
  }

  .hero-shell,
  .hero-side,
  .manifest-shell,
  .gallery-grid,
  .form-grid,
  .contact-block,
  .reviews-grid,
  .ritual-steps {
    grid-template-columns: 1fr;
  }

  .hero-shell {
    min-height: auto;
    gap: 18px;
  }

  .hero-visual {
    min-height: 490px;
  }

  .hero-visual-stamp {
    right: 16px;
    bottom: 16px;
    left: 16px;
  }

  .hero-copy {
    padding: 4px 0 0;
  }

  .hero-copy h1 {
    max-width: 8.4ch;
    font-size: clamp(3.5rem, 15vw, 5.2rem);
  }

  .hero-text {
    max-width: 100%;
  }

  .hero-editorial {
    margin-top: 28px;
    padding-top: 18px;
  }

  .hero-editorial p {
    font-size: 1.28rem;
  }

  .hero-side {
    gap: 14px;
    padding: 0;
  }

  .hero-detail,
  .experience-media,
  .gallery-item,
  .gallery-item-large {
    min-height: 460px;
  }

  .hero-highlights {
    gap: 8px;
  }

  .hero-scroll {
    margin-top: 8px;
  }

  .intro-band {
    padding: 18px 0 70px;
  }

  .intro-band::before,
  .intro-band::after {
    display: none;
  }

  .section {
    padding: 54px 0 92px;
  }

  .manifest {
    padding-top: 0;
  }

  .manifest-shell {
    gap: 18px;
    padding-bottom: 24px;
  }

  .manifest-copy h2 {
    max-width: 100%;
    font-size: clamp(2.8rem, 11vw, 4.2rem);
  }

  .marquee {
    padding: 14px 0;
  }

  .marquee-track {
    gap: 28px;
  }

  .marquee-track span {
    font-size: 1.34rem;
  }

  .section-heading {
    padding-bottom: 24px;
  }

  .section-heading h2,
  .experience-copy h2,
  .booking-copy h2 {
    max-width: 100%;
    font-size: clamp(2.7rem, 11vw, 4.1rem);
  }

  .service-row {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 28px 0;
  }

  .service-meta {
    text-align: left;
  }

  .experience-quote {
    margin: 18px 0 18px;
    font-size: 1.6rem;
  }

  .about-proof-card,
  .review-card {
    padding: 22px;
  }

  .review-text {
    font-size: 1.46rem;
  }

  .location-map,
  .location-map iframe {
    min-height: 360px;
  }

  .gallery-item:nth-child(2),
  .gallery-item:nth-child(3) {
    margin-top: 0;
  }

  .ritual-step {
    padding-right: 0;
  }

  .booking {
    margin-top: 10px;
    padding: 80px 0;
  }

  .contact-block {
    gap: 14px;
    margin-top: 28px;
  }

  .booking-form {
    padding: 22px;
    border-radius: 28px;
  }

  .site-footer {
    flex-direction: column;
    padding-top: 24px;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    width: 52px;
    height: 52px;
  }
}

/* ══════════════════════════════════════════════════════════════
   ANIMAZIONI AVANZATE
══════════════════════════════════════════════════════════════ */

/* ── Page Loader ──────────────────────────────────────────── */

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark);
  transition: opacity 600ms cubic-bezier(0.4, 0, 0.2, 1), visibility 600ms;
}

.page-loader.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.page-loader-brand {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--light);
  letter-spacing: -0.03em;
  margin: 0;
  animation: loader-text-in 900ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes loader-text-in {
  from { opacity: 0; transform: translateY(16px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* ── Scroll Progress Bar ──────────────────────────────────── */

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 100%;
  background: var(--accent);
  transform-origin: left center;
  transform: scaleX(0);
  z-index: 9500;
  pointer-events: none;
}

/* ── Custom Cursor ────────────────────────────────────────── */

.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9900;
  will-change: transform;
}

.cursor-dot {
  width: 6px;
  height: 6px;
  background: var(--text);
  transition: transform 80ms linear, width 300ms ease, height 300ms ease, opacity 300ms ease, background-color 300ms ease;
}

.cursor-ring {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(22, 19, 16, 0.38);
  transition: width 320ms cubic-bezier(0.16, 1, 0.3, 1), height 320ms cubic-bezier(0.16, 1, 0.3, 1), opacity 300ms ease, border-color 300ms ease;
}

body.cursor-hover .cursor-ring {
  width: 56px;
  height: 56px;
  border-color: rgba(22, 19, 16, 0.22);
}

body.cursor-hover .cursor-dot {
  width: 4px;
  height: 4px;
}

body.cursor-on-dark .cursor-dot {
  background: var(--light);
}

body.cursor-on-dark .cursor-ring {
  border-color: rgba(251, 247, 241, 0.4);
}

@media (hover: none), (pointer: coarse) {
  .cursor-dot,
  .cursor-ring {
    display: none;
  }
}

/* ── Split Text Reveal ────────────────────────────────────── */

.split-word {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
  margin-right: 0.22em;
}

.split-word:last-child {
  margin-right: 0;
}

.split-word-inner {
  display: inline-block;
  transform: translateY(110%);
  transition:
    transform 820ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: calc(var(--word-i, 0) * 60ms + var(--reveal-delay, 0ms));
}

.is-visible .split-word-inner {
  transform: translateY(0);
}

/* ── Reveal Variants ──────────────────────────────────────── */

.reveal[data-reveal="left"] {
  transform: translateX(-32px) translateY(0);
}

.reveal[data-reveal="right"] {
  transform: translateX(32px) translateY(0);
}

.reveal[data-reveal="scale"] {
  transform: scale(0.93) translateY(14px);
}

.reveal[data-reveal="left"].is-visible,
.reveal[data-reveal="right"].is-visible,
.reveal[data-reveal="scale"].is-visible {
  transform: translateX(0) translateY(0) scale(1);
}

/* ── Service Row Hover ────────────────────────────────────── */

.service-index {
  transition: transform 420ms cubic-bezier(0.16, 1, 0.3, 1), color 300ms ease, opacity 300ms ease;
}

.service-row:hover .service-index {
  transform: scale(1.1) translateX(4px);
  opacity: 0.9;
  color: var(--text);
}

.service-row {
  transition: border-color 280ms ease, background-color 280ms ease;
}

.service-row:hover {
  border-color: rgba(22, 19, 16, 0.28);
  background: rgba(255, 255, 255, 0.12);
}

.service-row h3 {
  transition: letter-spacing 360ms ease;
}

.service-row:hover h3 {
  letter-spacing: -0.03em;
}

/* ── Gallery Caption Slide ────────────────────────────────── */

.gallery-item figcaption {
  transform: translateY(10px);
  opacity: 0;
  transition:
    transform 380ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 340ms ease;
}

.gallery-item:hover figcaption {
  transform: translateY(0);
  opacity: 1;
}

.gallery-item img {
  transition: transform 560ms cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:hover img {
  transform: scale(1.06);
}

/* ── Review Card Hover ────────────────────────────────────── */

.review-card {
  transition:
    transform 420ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 420ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 280ms ease;
  transform-origin: center bottom;
}

.review-card:hover {
  transform: translateY(-6px) rotate(-0.4deg);
  box-shadow: var(--shadow-strong);
  border-color: rgba(22, 19, 16, 0.18);
}

/* ── Ritual Step Hover ────────────────────────────────────── */

.ritual-step {
  transition: border-color 280ms ease, padding-left 360ms cubic-bezier(0.16, 1, 0.3, 1);
}

.ritual-step:hover {
  border-color: var(--accent);
  padding-left: 8px;
}

.ritual-step span {
  transition: transform 360ms cubic-bezier(0.16, 1, 0.3, 1), color 280ms ease;
}

.ritual-step:hover span {
  transform: scale(1.12);
  color: var(--text);
}

/* ── About Points Hover ───────────────────────────────────── */

.about-points article {
  transition: padding-left 360ms cubic-bezier(0.16, 1, 0.3, 1), border-color 280ms ease;
}

.about-points article:hover {
  padding-left: 10px;
  border-color: rgba(22, 19, 16, 0.22);
}

/* ── WhatsApp Button Pulse ────────────────────────────────── */

.floating-whatsapp::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: inherit;
  background: rgba(37, 211, 102, 0.22);
  animation: whatsapp-pulse 2.6s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  pointer-events: none;
}

@keyframes whatsapp-pulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50%       { transform: scale(1.14); opacity: 0; }
}

/* ── Marquee Pause on Hover ───────────────────────────────── */

.marquee:hover .marquee-track {
  animation-play-state: paused;
}

/* ── Hero Highlights Lines ────────────────────────────────── */

.hero-highlights div {
  transition: border-color 300ms ease;
  overflow: hidden;
}

.hero-highlights div:hover {
  border-color: var(--accent);
}

/* ── Eyebrow Shimmer ──────────────────────────────────────── */

.eyebrow {
  background: linear-gradient(90deg, var(--muted) 0%, var(--accent) 50%, var(--muted) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: eyebrow-shimmer 5s linear infinite;
}

@keyframes eyebrow-shimmer {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}

/* ── GMB Score Counter ────────────────────────────────────── */

.gmb-score {
  transition: transform 300ms ease;
}

.gmb-badge-inner:hover .gmb-score {
  transform: scale(1.06);
}

/* ── Intro Band Lines Animate ─────────────────────────────── */

.intro-band::before,
.intro-band::after {
  transition: width 1200ms cubic-bezier(0.16, 1, 0.3, 1);
  width: 0%;
}

.intro-band.is-visible::before,
.intro-band.is-visible::after {
  width: 18%;
}

/* ── Section Heading Underline ────────────────────────────── */

.section-heading::after {
  content: "";
  display: block;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 900ms cubic-bezier(0.16, 1, 0.3, 1) 200ms;
}

.section-heading.is-visible::after {
  transform: scaleX(1);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }

  .hero-shell {
    --pointer-x: 0px !important;
    --pointer-y: 0px !important;
    --hero-shift: 0px !important;
  }

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

  .page-loader,
  .cursor-dot,
  .cursor-ring,
  .scroll-progress {
    display: none;
  }

  .split-word-inner {
    transform: none;
    transition: none;
  }

  .floating-whatsapp::before {
    animation: none;
  }

  .eyebrow {
    animation: none;
  }

  .marquee-track {
    animation-duration: 60s;
  }

  .intro-band::before,
  .intro-band::after {
    width: 18%;
    transition: none;
  }

  .section-heading::after {
    transform: scaleX(1);
    transition: none;
  }
}

/* ── Cookie Banner ─────────────────────────────────────────── */

.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9000;
  width: min(680px, calc(100vw - 32px));
  background: var(--dark);
  color: var(--light);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.28);
  padding: 22px 26px;
  animation: cookie-enter 0.38s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.cookie-banner[hidden] {
  display: none;
}

@keyframes cookie-enter {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

.cookie-banner-inner {
  display: flex;
  align-items: center;
  gap: 24px;
}

.cookie-banner-text {
  flex: 1;
  min-width: 0;
}

.cookie-banner-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 6px;
  color: var(--light);
}

.cookie-banner-text p:last-child {
  font-size: 0.78rem;
  line-height: 1.55;
  margin: 0;
  color: rgba(251, 247, 241, 0.72);
}

.cookie-banner-text a {
  color: var(--light);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-btn {
  white-space: nowrap;
  font-size: 0.82rem;
  padding: 10px 18px;
}

@media (max-width: 600px) {
  .cookie-banner-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  .cookie-banner-actions {
    justify-content: flex-end;
  }
}
