@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;1,500&family=Montserrat:wght@400;500;600;700;800&display=swap");

/* ─── Design tokens ─────────────────────────────────────────── */
:root {
  --ink: #111c17;
  --ink-soft: #2a3d34;
  --muted: #5f6d66;
  --cream: #fffaf0;
  --paper: #fffdf8;
  --soft: #f7f3eb;
  --blush: #f6dfd4;
  --sage: #6f8974;
  --deep-sage: #243f31;
  --leaf: #315840;
  --gold: #c79a55;
  --champagne: #efd08c;
  --line: rgba(17, 28, 23, 0.1);
  --line-strong: rgba(17, 28, 23, 0.16);
  --shadow-sm: 0 8px 28px rgba(17, 28, 23, 0.07);
  --shadow: 0 18px 54px rgba(17, 28, 23, 0.1);
  --shadow-lg: 0 28px 80px rgba(17, 28, 23, 0.14);
  --radius: 10px;
  --radius-pill: 999px;
  --max: 1280px;
  --header-h: 88px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font-serif: "Cormorant Garamond", "Iowan Old Style", Georgia, serif;
  --font-sans: "Montserrat", "Avenir Next", Inter, ui-sans-serif, system-ui, sans-serif;
}

/* ─── Reset & base ──────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 14% 8%, rgba(246, 223, 212, 0.42), transparent 28%),
    radial-gradient(circle at 86% 14%, rgba(192, 219, 198, 0.38), transparent 30%),
    linear-gradient(180deg, var(--cream) 0%, var(--paper) 38%, #f0f5f0 100%);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.62;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::selection {
  background: rgba(199, 154, 85, 0.28);
  color: var(--ink);
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(199, 154, 85, 0.18);
}

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

button,
input,
summary {
  font: inherit;
  touch-action: manipulation;
}

/* ─── Announcement bar ──────────────────────────────────────── */
.announcement {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 6px 24px;
  min-height: 42px;
  padding: 9px 20px;
  background:
    linear-gradient(90deg, rgba(239, 208, 140, 0.12), transparent 18%, transparent 82%, rgba(239, 208, 140, 0.12)),
    linear-gradient(90deg, #08110d, #1a3828 50%, #08110d);
  border-bottom: 1px solid rgba(239, 208, 140, 0.28);
  box-shadow: inset 0 1px 0 rgba(255, 253, 248, 0.06);
  color: rgba(255, 253, 248, 0.96);
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.45;
  text-align: center;
}

.announcement p {
  margin: 0;
}

.announcement a {
  color: var(--champagne);
  text-decoration: underline;
  text-decoration-color: rgba(239, 208, 140, 0.45);
  text-underline-offset: 3px;
  transition: color 180ms ease, text-decoration-color 180ms ease;
}

.announcement a:hover {
  color: #fff;
  text-decoration-color: rgba(255, 253, 248, 0.85);
}

.announcement-contact {
  font-size: clamp(0.9rem, 1.35vw, 1rem);
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: none;
}

.announcement-contact a {
  color: #fff4dc;
  text-decoration-thickness: 2px;
}

.announcement-address {
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.03em;
  opacity: 1;
}

.announcement-note {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(239, 208, 140, 0.3);
  border-radius: var(--radius-pill);
  background: rgba(239, 208, 140, 0.1);
  color: rgba(255, 248, 235, 0.9);
  font-size: 0.76rem;
  font-weight: 650;
  letter-spacing: 0.02em;
  padding: 4px 12px;
}

/* ─── Header ────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(18px, 3vw, 40px);
  min-height: 78px;
  padding: 12px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(49, 88, 64, 0.1);
  background: rgba(255, 253, 248, 0.95);
  box-shadow: 0 8px 32px rgba(17, 28, 23, 0.05);
  backdrop-filter: blur(20px) saturate(1.15);
}

.site-header::after {
  position: absolute;
  right: clamp(18px, 4vw, 56px);
  bottom: 0;
  left: clamp(18px, 4vw, 56px);
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(199, 154, 85, 0.35), transparent);
  pointer-events: none;
}

.brand img {
  width: clamp(210px, 18vw, 285px);
  max-height: 72px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(17, 28, 23, 0.08));
  transition: transform 320ms var(--ease), filter 320ms ease;
}

.brand:hover img {
  filter: drop-shadow(0 12px 26px rgba(17, 28, 23, 0.12));
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
}

.main-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(8px, 1.4vw, 18px);
  align-items: center;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.main-nav > a,
.nav-dropdown summary {
  position: relative;
  padding: 9px 4px;
  transition: color 180ms ease, transform 180ms var(--ease);
}

.main-nav > a:hover,
.nav-dropdown summary:hover {
  color: var(--deep-sage);
  transform: translateY(-1px);
}

.main-nav a.active,
.nav-dropdown summary.active {
  color: var(--ink);
  font-weight: 800;
}

.main-nav > a::after,
.nav-dropdown summary::after {
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 1px;
  content: "";
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 200ms var(--ease);
}

.main-nav > a:hover::after,
.main-nav > a.active::after,
.nav-dropdown:hover summary::after,
.nav-dropdown[open] summary::after,
.nav-dropdown summary.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown summary {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  list-style: none;
}

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

.nav-dropdown summary::before {
  width: 5px;
  height: 5px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  content: "";
  transform: rotate(45deg) translateY(-1px);
  order: 2;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  z-index: 200;
  display: grid;
  width: max-content;
  min-width: 240px;
  max-width: min(340px, calc(100vw - 32px));
  max-height: min(68vh, 520px);
  overflow-y: auto;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.98);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 10px) scale(0.98);
  transition: opacity 200ms ease, transform 260ms var(--ease);
  backdrop-filter: blur(18px);
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu,
.nav-dropdown[open] .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0) scale(1);
}

.dropdown-menu a {
  display: block;
  border-radius: 8px;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0;
  padding: 10px 12px;
  text-transform: none;
  transition: background 180ms ease, color 180ms ease, padding-left 220ms var(--ease);
}

.dropdown-menu a:hover,
.dropdown-menu a:focus {
  background: linear-gradient(90deg, rgba(237, 244, 239, 0.96), rgba(244, 230, 203, 0.5));
  color: var(--deep-sage);
  padding-left: 18px;
}

/* Buttons */
.special-offer-button,
.primary-action,
.secondary-action,
.text-button,
.book-button {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  font-weight: 800;
  white-space: nowrap;
}

.special-offer-button,
.primary-action,
.book-button {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(164, 116, 46, 0.4);
  background: linear-gradient(135deg, #efd08c 0%, #c99647 52%, #b8843a 100%);
  color: var(--ink);
  padding: 0 18px;
  box-shadow: 0 12px 28px rgba(162, 116, 49, 0.2);
  transition: transform 260ms var(--ease), box-shadow 260ms ease, filter 220ms ease;
}

.special-offer-button::before,
.primary-action::before,
.secondary-action::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.38) 48%, transparent 60%);
  transform: translateX(-130%);
  transition: transform 720ms var(--ease);
}

.special-offer-button:hover,
.primary-action:hover,
.book-button:hover {
  filter: saturate(1.06);
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(162, 116, 49, 0.28);
}

.special-offer-button:hover::before,
.primary-action:hover::before,
.secondary-action:hover::before {
  transform: translateX(130%);
}

.secondary-action {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.82);
  color: var(--ink);
  padding: 0 22px;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(10px);
  transition: transform 260ms var(--ease), box-shadow 260ms ease, border-color 220ms ease;
}

.secondary-action:hover {
  border-color: rgba(199, 154, 85, 0.35);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.text-button {
  border: 0;
  background: transparent;
  color: var(--deep-sage);
  padding: 0;
  transition: color 180ms ease, transform 180ms var(--ease);
}

.text-button:hover {
  color: var(--gold);
  transform: translateX(4px);
}

.primary-action.outline {
  border: 1px solid rgba(36, 63, 49, 0.22);
  background: transparent;
  color: var(--deep-sage);
  box-shadow: none;
}

.primary-action.outline:hover {
  border-color: var(--gold);
  background: rgba(239, 208, 140, 0.12);
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}

/* ─── Typography helpers ────────────────────────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.eyebrow::before {
  display: inline-block;
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), rgba(199, 154, 85, 0.2));
  content: "";
}

h1,
h2,
h3 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.02;
}

/* ─── Homepage hero ─────────────────────────────────────────── */
.luxury-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 360px);
  grid-template-rows: 1fr auto;
  gap: 40px 56px;
  align-items: end;
  min-height: min(920px, calc(100svh - 36px));
  overflow: clip;
  isolation: isolate;
  color: var(--paper);
  padding: clamp(88px, 12vw, 130px) clamp(24px, 6vw, 88px) clamp(64px, 8vw, 96px);
}

.luxury-hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(6, 14, 10, 0.84) 0%, rgba(23, 52, 36, 0.52) 40%, rgba(153, 94, 69, 0.06) 100%),
    linear-gradient(0deg, rgba(6, 14, 10, 0.8) 0%, rgba(20, 45, 32, 0.16) 48%, rgba(255, 219, 158, 0.12) 100%);
}

.luxury-hero::after {
  position: absolute;
  inset: clamp(20px, 3.5vw, 36px);
  z-index: 0;
  content: "";
  border: 1px solid rgba(239, 208, 140, 0.18);
  border-radius: calc(var(--radius) + 4px);
  pointer-events: none;
}

.luxury-hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--deep-sage);
}

.luxury-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  filter: saturate(1.1) contrast(1.04) brightness(1.06);
  transform: scale(1.05);
  animation: hero-drift 18s var(--ease) both;
}

@keyframes hero-drift {
  from { transform: scale(1.1); }
  to { transform: scale(1.05); }
}

.luxury-hero-copy {
  position: relative;
  z-index: 1;
  grid-column: 1;
  grid-row: 1;
  max-width: 780px;
  animation: rise-in 900ms var(--ease) both;
}

.luxury-hero-copy .eyebrow {
  color: #ffe1a3;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
}

.luxury-hero-copy .eyebrow::before {
  background: linear-gradient(90deg, #ffe1a3, rgba(255, 225, 163, 0.15));
}

.luxury-hero h1 {
  margin: 0;
  color: #fffaf0;
  font-size: clamp(4rem, 8.2vw, 8rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 0.94;
  text-shadow: 0 8px 40px rgba(0, 0, 0, 0.38);
}

.luxury-hero h1 span {
  display: block;
}

.luxury-hero-copy > p:not(.eyebrow) {
  max-width: 580px;
  margin: 22px 0 0;
  color: rgba(255, 250, 240, 0.88);
  font-size: 1.06rem;
  line-height: 1.78;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.3);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.luxury-hero .primary-action {
  border-color: rgba(255, 224, 160, 0.6);
  background: linear-gradient(135deg, #ffe0a0 0%, #d9a451 48%, #c88a5f 100%);
}

.luxury-hero .secondary-action {
  border-color: rgba(255, 238, 198, 0.45);
  background: rgba(255, 247, 231, 0.14);
  color: var(--paper);
  backdrop-filter: blur(12px);
}

.luxury-hero-panel {
  position: relative;
  z-index: 1;
  grid-column: 2;
  grid-row: 1;
  display: grid;
  gap: 12px;
  align-self: end;
  width: 100%;
  max-width: 360px;
  border: 1px solid rgba(255, 218, 159, 0.28);
  border-radius: calc(var(--radius) + 2px);
  background: linear-gradient(155deg, rgba(8, 22, 16, 0.78), rgba(48, 36, 24, 0.52));
  padding: 28px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(20px);
  animation: rise-in 900ms var(--ease) 140ms both;
}

.luxury-hero-panel::before {
  position: absolute;
  top: 0;
  right: 24px;
  left: 24px;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--champagne), transparent);
  opacity: 0.6;
}

.panel-action {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  margin-top: 4px;
  border: 1px solid rgba(239, 208, 140, 0.35);
  border-radius: var(--radius-pill);
  background: rgba(239, 208, 140, 0.12);
  color: var(--champagne);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0 18px;
  transition: background 220ms ease, color 220ms ease, transform 220ms var(--ease);
}

.panel-action:hover {
  background: var(--champagne);
  color: var(--ink);
  transform: translateY(-1px);
}

.luxury-hero-panel span {
  color: var(--champagne);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.luxury-hero-panel strong {
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  font-weight: 500;
  line-height: 1.15;
}

.luxury-hero-panel p {
  margin: 0;
  color: rgba(255, 253, 248, 0.78);
  font-size: 0.9rem;
  line-height: 1.65;
}

/* ─── Sections ──────────────────────────────────────────────── */
.section {
  width: min(var(--max), calc(100% - 32px));
  margin: clamp(72px, 10vw, 108px) auto;
}

.section-heading {
  display: grid;
  gap: 8px;
  margin-bottom: 40px;
  text-align: center;
}

.section-heading .eyebrow {
  justify-self: center;
}

.section-heading .eyebrow::before,
.section-heading .eyebrow::after {
  width: 36px;
}

.section-heading .eyebrow::after {
  display: inline-block;
  height: 1px;
  background: linear-gradient(90deg, rgba(199, 154, 85, 0.2), var(--gold));
  content: "";
}

.section-heading h2 {
  margin: 0 auto;
  max-width: 820px;
  color: var(--ink);
  font-size: clamp(2.6rem, 5.2vw, 5rem);
}

.editorial-intro.section {
  margin-top: clamp(48px, 6vw, 72px);
}

.editorial-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.45fr);
  gap: clamp(32px, 6vw, 88px);
  align-items: center;
  margin-top: 0;
  border-top: 0;
  border-bottom: 0;
  padding: clamp(56px, 8vw, 88px) clamp(24px, 5vw, 48px);
  background:
    linear-gradient(115deg, rgba(255, 253, 248, 0.98), rgba(255, 242, 219, 0.42) 48%, rgba(233, 246, 238, 0.58));
  border-radius: calc(var(--radius) + 6px);
  box-shadow: var(--shadow-sm);
}

.editorial-intro-copy h2 {
  margin: 0;
  max-width: 760px;
  color: #183224;
  font-size: clamp(2.6rem, 5vw, 4.8rem);
}

.intro-lead {
  max-width: 620px;
  margin: 20px 0 0;
  color: var(--deep-sage);
  font-size: 1.08rem;
  font-weight: 500;
  line-height: 1.75;
}

.intro-aside {
  margin: 0;
  padding-left: clamp(0px, 3vw, 28px);
  border-left: 1px solid rgba(199, 154, 85, 0.35);
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.88;
}

/* Signature services */
.signature-services {
  margin-top: clamp(72px, 10vw, 120px);
}

.signature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 280px;
  gap: 18px;
}

.signature-card {
  position: relative;
  display: grid;
  overflow: hidden;
  min-height: 280px;
  align-items: end;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: calc(var(--radius) + 2px);
  background: var(--ink);
  color: var(--paper);
  box-shadow: var(--shadow);
  isolation: isolate;
  transition: transform 400ms var(--ease), box-shadow 400ms ease;
}

.signature-card::after {
  position: absolute;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 218, 159, 0.35);
  border-radius: 50%;
  background: rgba(255, 253, 248, 0.12);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 300ms ease, transform 300ms var(--ease);
  backdrop-filter: blur(8px);
  content: "→";
  color: var(--champagne);
  font-size: 1rem;
  line-height: 34px;
  text-align: center;
}

.signature-card:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.signature-card.large {
  grid-column: span 2;
  grid-row: span 2;
}

.signature-card::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(0deg, rgba(7, 16, 12, 0.82) 0%, rgba(7, 16, 12, 0.38) 48%, transparent 100%),
    linear-gradient(90deg, rgba(140, 87, 58, 0.16), transparent 72%);
}

.signature-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.06) contrast(1.02);
  transition: transform 800ms var(--ease), filter 300ms ease;
}

.signature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.signature-card:hover img {
  filter: saturate(1.1) contrast(1.04);
  transform: scale(1.06);
}

.signature-card > div {
  padding: 22px;
}

.signature-card span {
  color: #ffd889;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.signature-card h3 {
  max-width: 480px;
  margin: 8px 0 0;
  font-size: clamp(1.5rem, 2.2vw, 1.9rem);
}

.signature-card.large h3 {
  font-size: clamp(2rem, 3.5vw, 3rem);
}

.catalog-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

/* Boutique */
.boutique-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.58fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  margin-top: clamp(72px, 10vw, 120px);
  padding: clamp(72px, 8vw, 96px) max(18px, calc((100vw - var(--max)) / 2));
  background:
    linear-gradient(135deg, rgba(24, 59, 43, 0.98), rgba(45, 86, 67, 0.94) 52%, rgba(120, 82, 50, 0.82));
  color: var(--paper);
}

.boutique-copy h2 {
  margin: 0;
  font-size: clamp(2.4rem, 4.5vw, 4rem);
}

.boutique-copy p {
  max-width: 500px;
  margin: 20px 0 28px;
  color: rgba(255, 253, 248, 0.76);
  font-size: 1.02rem;
  line-height: 1.78;
}

.boutique-copy .eyebrow {
  color: #ffd889;
}

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

.boutique-product {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(244, 214, 157, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.08);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  transition: transform 360ms var(--ease), box-shadow 360ms ease;
}

.boutique-product:hover {
  transform: translateY(-5px);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.28);
}

.boutique-product img {
  width: 100%;
  aspect-ratio: 1 / 0.92;
  object-fit: contain;
  padding: 22px;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 231, 180, 0.24), transparent 36%),
    linear-gradient(135deg, var(--paper), #f4ead8);
  transition: transform 700ms var(--ease);
}

.boutique-product:hover img {
  transform: scale(1.04);
}

.boutique-product span {
  padding: 16px 20px;
  color: #ffd889;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Visit band */
.visit-band {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
  gap: clamp(28px, 5vw, 48px);
  align-items: center;
  overflow: hidden;
  padding: clamp(72px, 8vw, 96px) max(18px, calc((100vw - var(--max)) / 2));
  background:
    linear-gradient(135deg, rgba(20, 50, 36, 0.98), rgba(42, 82, 62, 0.94) 50%, rgba(118, 78, 48, 0.8));
  color: var(--paper);
}

.visit-band::before {
  position: absolute;
  inset: clamp(14px, 2.5vw, 24px);
  content: "";
  border: 1px solid rgba(239, 208, 140, 0.18);
  border-radius: var(--radius);
  pointer-events: none;
}

.visit-band > * {
  position: relative;
  z-index: 1;
}

.visit-band > div:first-child {
  max-width: 680px;
  padding-left: clamp(16px, 3vw, 28px);
  border-left: 2px solid rgba(239, 208, 140, 0.65);
}

.visit-band .eyebrow {
  color: var(--champagne);
}

.visit-band h2 {
  margin: 0;
  color: var(--paper);
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  text-shadow: 0 3px 20px rgba(0, 0, 0, 0.3);
}

.visit-band p:not(.eyebrow) {
  max-width: 560px;
  margin: 16px 0 0;
  color: rgba(255, 253, 248, 0.82);
  line-height: 1.75;
}

.hours-card {
  display: grid;
  gap: 12px;
  border: 1px solid rgba(239, 208, 140, 0.22);
  border-radius: var(--radius);
  background: rgba(7, 18, 13, 0.55);
  padding: 26px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
}

.hours-card span {
  color: var(--champagne);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hours-card strong {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  font-weight: 500;
  line-height: 1.1;
}

.hours-card a {
  position: relative;
  overflow: hidden;
  width: max-content;
  color: var(--champagne);
  font-size: 0.88rem;
  font-weight: 700;
  border-bottom: 1px solid rgba(239, 208, 140, 0.5);
  transition: color 180ms ease, transform 260ms var(--ease);
}

.hours-card a:hover {
  color: #fff;
  transform: translateY(-1px);
}

/* Reviews */
.reviews-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(240px, 0.62fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  overflow: hidden;
  padding: clamp(72px, 8vw, 96px) max(18px, calc((100vw - var(--max)) / 2));
  background:
    radial-gradient(circle at 10% 16%, rgba(246, 223, 212, 0.5), transparent 32%),
    radial-gradient(circle at 90% 10%, rgba(201, 224, 205, 0.45), transparent 34%),
    linear-gradient(135deg, var(--paper), #f7efe3 52%, #edf6ef);
  border-top: 1px solid rgba(49, 88, 64, 0.1);
}

.reviews-heading h2 {
  max-width: 520px;
  margin: 0;
  color: #183224;
  font-size: clamp(2.4rem, 4.8vw, 4.4rem);
}

.review-score {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  padding: 10px 16px;
  border: 1px solid rgba(199, 154, 85, 0.28);
  border-radius: var(--radius-pill);
  background: rgba(255, 253, 248, 0.75);
  box-shadow: var(--shadow-sm);
}

.review-score span,
.stars {
  color: #c8913e;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
}

.review-score strong {
  color: #183224;
  font-weight: 800;
}

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

.review-card {
  position: relative;
  display: grid;
  min-height: 240px;
  align-content: space-between;
  overflow: hidden;
  border: 1px solid rgba(49, 88, 64, 0.11);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.85);
  padding: 22px;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
  transition: transform 360ms var(--ease), box-shadow 360ms ease, border-color 260ms ease;
}

.review-card:hover {
  border-color: rgba(199, 154, 85, 0.28);
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.review-card p {
  margin: 18px 0;
  color: #44564a;
  font-size: 0.94rem;
  line-height: 1.78;
}

.review-card > span {
  color: #183224;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ─── Inner pages ───────────────────────────────────────────── */
.page-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.62fr);
  gap: clamp(18px, 3.5vw, 36px);
  align-items: center;
  overflow: hidden;
  width: min(var(--max), calc(100% - 32px));
  margin: clamp(20px, 3vw, 36px) auto 0;
  border: 1px solid rgba(49, 88, 64, 0.1);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.98), rgba(239, 246, 241, 0.88)),
    linear-gradient(90deg, rgba(199, 154, 85, 0.06), transparent);
  box-shadow: var(--shadow);
  padding: clamp(22px, 3.5vw, 40px);
}

.page-hero::before {
  position: absolute;
  inset: 10px;
  content: "";
  border: 1px solid rgba(199, 154, 85, 0.12);
  border-radius: calc(var(--radius) - 2px);
  pointer-events: none;
}

.page-hero-copy,
.page-hero-image {
  position: relative;
  z-index: 1;
}

.page-hero-copy h1 {
  margin: 0;
  max-width: 720px;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.06;
}

.page-hero-copy > p:not(.eyebrow) {
  max-width: 600px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: clamp(0.92rem, 1.2vw, 1.02rem);
  line-height: 1.65;
}

.page-hero-image {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.page-hero-image img {
  display: block;
  width: 100%;
  max-height: 280px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 800ms var(--ease);
}

.page-hero:hover .page-hero-image img {
  transform: scale(1.04);
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 0.88rem;
}

.breadcrumb a {
  color: var(--deep-sage);
  font-weight: 700;
}

.breadcrumb span::before {
  margin-right: 8px;
  color: var(--line-strong);
  content: "/";
}

/* Directory grid */
.directory-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.directory-card {
  display: grid;
  overflow: hidden;
  min-height: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.94);
  box-shadow: var(--shadow-sm);
  transition: transform 360ms var(--ease), box-shadow 360ms ease, border-color 260ms ease;
}

.directory-card:hover {
  border-color: rgba(199, 154, 85, 0.3);
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.directory-card img {
  width: 100%;
  aspect-ratio: 1 / 0.74;
  object-fit: cover;
  filter: saturate(0.96) contrast(1.02);
  transition: transform 700ms var(--ease), filter 260ms ease;
}

.directory-card:hover img {
  filter: saturate(1.04);
  transform: scale(1.05);
}

.directory-card div {
  display: grid;
  gap: 8px;
  padding: 20px;
}

.directory-card span {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.directory-card h3 {
  margin: 0;
  font-size: clamp(1.4rem, 2vw, 1.75rem);
}

.directory-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.68;
}

/* Service list */
.service-list {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-top: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.96);
  box-shadow: var(--shadow-sm);
}

.service-group-list {
  display: grid;
  gap: 28px;
}

.service-group h3 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 12px;
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 600;
}

.service-group h3::before {
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--gold);
  content: "";
}

.service-list-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px 16px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding: clamp(16px, 2.5vw, 22px) clamp(18px, 3vw, 28px);
  transition: background 220ms ease;
}

.service-list-item:last-child {
  border-bottom: 0;
}

.service-list-item:hover {
  background: linear-gradient(90deg, transparent, rgba(239, 208, 140, 0.08), transparent);
}

.service-list-item > div {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px 12px;
  align-items: flex-start;
  min-width: 0;
}

.service-code {
  display: inline-grid;
  flex: 0 0 auto;
  min-width: 46px;
  min-height: 30px;
  place-items: center;
  align-self: flex-start;
  margin-top: 2px;
  border: 1px solid rgba(36, 63, 49, 0.14);
  border-radius: var(--radius-pill);
  background: rgba(36, 63, 49, 0.08);
  color: var(--deep-sage);
  font-size: 0.76rem;
  font-weight: 800;
  padding: 0 10px;
}

.service-list-item h3 {
  flex: 1 1 auto;
  min-width: 0;
  margin: 0;
  font-size: clamp(1.05rem, 1.8vw, 1.55rem);
  line-height: 1.35;
  overflow-wrap: break-word;
}

.service-list-item strong {
  flex-shrink: 0;
  width: max-content;
  justify-self: end;
  align-self: center;
  color: var(--deep-sage);
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 1.8vw, 1.5rem);
  font-weight: 600;
  text-align: right;
  white-space: nowrap;
}

/* Shop products */
.shop-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.shop-product-card {
  position: relative;
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.96);
  box-shadow: var(--shadow-sm);
  transition: transform 360ms var(--ease), box-shadow 360ms ease, border-color 260ms ease;
}

.shop-product-card:hover {
  border-color: rgba(199, 154, 85, 0.28);
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.product-image {
  aspect-ratio: 1 / 0.92;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 14%, rgba(239, 208, 140, 0.16), transparent 34%),
    #f7f2e8;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 18px;
  transition: transform 600ms var(--ease);
}

.shop-product-card:hover .product-image img {
  transform: scale(1.04);
}

.product-copy {
  display: grid;
  min-height: 200px;
  grid-template-rows: auto auto 1fr auto;
  gap: 8px;
  padding: 18px;
}

.product-category {
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.product-copy h3 {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.32;
}

.product-copy p {
  display: -webkit-box;
  overflow: hidden;
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.65;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.product-footer {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  border-top: 1px solid var(--line);
  padding-top: 12px;
}

.product-footer strong {
  color: var(--deep-sage);
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
}

.product-footer span {
  font-size: 0.84rem;
  font-weight: 800;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.gallery-grid figure {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow-sm);
  transition: transform 360ms var(--ease), box-shadow 360ms ease;
}

.gallery-grid figure:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 1 / 0.9;
  object-fit: cover;
  transition: transform 700ms var(--ease);
}

.gallery-grid figure:hover img {
  transform: scale(1.05);
}

.gallery-grid figcaption {
  color: var(--muted);
  font-size: 0.86rem;
  padding: 12px 14px;
}

.gallery-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.gallery-strip img {
  width: 100%;
  height: clamp(220px, 30vw, 400px);
  object-fit: cover;
}

/* Info cards & misc */
.link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.info-card {
  display: grid;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.94);
  padding: clamp(20px, 3vw, 28px);
  box-shadow: var(--shadow-sm);
  transition: transform 360ms var(--ease), box-shadow 360ms ease;
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.info-card span {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.info-card h3 {
  margin: 0;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
}

.info-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.68;
}

.info-card > a,
.legacy-list a {
  width: max-content;
  color: var(--deep-sage);
  font-weight: 700;
  border-bottom: 1px solid rgba(199, 154, 85, 0.5);
  transition: color 180ms ease;
}

.info-card > a:hover,
.legacy-list a:hover {
  color: var(--gold);
}

.legacy-list {
  display: grid;
  gap: 8px;
}

.legacy-note,
.subdirectory-links a {
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: rgba(255, 253, 248, 0.8);
  box-shadow: var(--shadow-sm);
}

.legacy-note {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  width: max-content;
  max-width: 100%;
  margin: -4px 0 24px;
  padding: 12px 16px;
}

.legacy-note span,
.subdirectory-links span {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.subdirectory-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin: -4px 0 24px;
}

.subdirectory-links a {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  color: var(--deep-sage);
  font-size: 0.84rem;
  font-weight: 700;
  padding: 0 14px;
  transition: transform 220ms var(--ease), border-color 220ms ease;
}

.subdirectory-links a:hover {
  border-color: rgba(199, 154, 85, 0.35);
  transform: translateY(-1px);
}

.subchips {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
}

.subchips span {
  display: inline-grid;
  min-width: 42px;
  height: 32px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.82rem;
  font-weight: 800;
}

/* ─── Footer ────────────────────────────────────────────────── */
.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 1.15fr) minmax(140px, 0.38fr) minmax(200px, 0.55fr) minmax(170px, 0.42fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
  margin-top: clamp(48px, 6vw, 72px);
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(249, 246, 239, 0.94));
  padding: clamp(48px, 6vw, 64px) max(20px, calc((100vw - var(--max)) / 2)) clamp(40px, 5vw, 56px);
}

.footer-brand img,
.site-footer > div:first-child img {
  width: min(220px, 100%);
  height: auto;
}

.footer-brand p,
.site-footer > div:first-child p {
  max-width: 320px;
  margin: 12px 0 0;
  font-size: 0.92rem;
  line-height: 1.7;
}

.footer-hours {
  margin-top: 10px !important;
  font-size: 0.84rem !important;
  font-weight: 700;
}

.footer-label {
  display: block;
  margin-bottom: 10px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-contact p {
  margin: 0 0 10px;
  font-size: 0.9rem;
  line-height: 1.65;
}

.footer-contact a {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.8;
  transition: color 180ms ease;
}

.footer-contact a:hover {
  color: var(--gold);
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a {
  font-size: 0.88rem;
  font-weight: 700;
  transition: color 180ms ease, transform 180ms var(--ease);
}

.footer-links a:hover {
  transform: translateX(3px);
}

.app-links {
  display: grid;
  gap: 10px;
}

.app-links a {
  display: inline-grid;
  min-height: 42px;
  align-items: center;
}

.app-links img {
  width: auto;
  max-width: 150px;
  height: 38px;
  object-fit: contain;
}

/* ─── Sticky booking CTA ────────────────────────────────────── */
.book-cta {
  position: fixed;
  right: 16px;
  bottom: 16px;
  left: 16px;
  z-index: 90;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  max-width: 420px;
  margin: 0 auto;
  padding: 0;
}

.book-cta a {
  display: grid;
  min-height: 46px;
  place-items: center;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  box-shadow: 0 14px 40px rgba(17, 28, 23, 0.18);
  transition: transform 220ms var(--ease), box-shadow 220ms ease;
}

.book-cta a:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 48px rgba(17, 28, 23, 0.22);
}

.book-cta-call {
  background: linear-gradient(135deg, var(--deep-sage), var(--leaf));
  color: var(--paper);
}

.book-cta-offer {
  background: linear-gradient(135deg, #efd08c, #c99647);
  color: var(--ink);
}

/* Hide legacy mobile dock */
.mobile-dock {
  display: none !important;
}

/* ─── Animations ────────────────────────────────────────────── */
@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.editorial-intro,
.signature-services,
.boutique-section,
.visit-band,
.reviews-section,
.page-hero,
.directory-card,
.shop-product-card {
  animation: rise-in 720ms var(--ease) both;
}

@supports (animation-timeline: view()) {
  .editorial-intro,
  .signature-services,
  .boutique-section,
  .visit-band,
  .reviews-section,
  .page-hero {
    animation-timeline: view();
    animation-range: entry 6% cover 24%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* ─── Responsive ────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .luxury-hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    min-height: 720px;
  }

  .luxury-hero-panel {
    grid-column: 1;
    grid-row: 2;
    max-width: 100%;
  }

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

  .directory-grid,
  .shop-product-grid,
  .gallery-grid,
  .link-grid,
  .review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
  }

  .page-hero {
    grid-template-columns: 1fr;
  }

  .page-hero-image img {
    max-height: 220px;
    aspect-ratio: 16 / 10;
  }

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

  .boutique-section {
    grid-template-columns: 1fr;
  }

  .editorial-intro {
    grid-template-columns: 1fr;
  }

  .visit-band {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  body {
    padding-bottom: 72px;
  }

  .announcement {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    row-gap: 4px;
    column-gap: 0;
    padding: 8px 12px 9px;
    font-size: 0.78rem;
  }

  .announcement-contact {
    flex: 0 0 100%;
    font-size: 0.94rem;
    letter-spacing: 0.02em;
    line-height: 1.3;
  }

  .announcement-contact a {
    color: #fff;
    text-decoration: none;
  }

  .announcement-address {
    flex: 0 1 auto;
    font-size: 0.72rem;
    font-weight: 600;
    opacity: 0.92;
  }

  .announcement-note {
    flex: 0 1 auto;
    border: 0;
    border-radius: 0;
    background: none;
    box-shadow: none;
    color: var(--champagne);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0;
  }

  .announcement-note::before {
    margin: 0 7px;
    color: rgba(239, 208, 140, 0.55);
    content: "·";
  }

  .site-header {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 6px;
    padding: 10px 12px 10px;
  }

  .brand img {
    width: min(204px, 74vw);
    max-height: 58px;
  }

  .special-offer-button {
    display: none;
  }

  .site-header {
    gap: 6px;
    padding: 10px 12px 10px;
    overflow: visible;
  }

  .site-header::after {
    right: 12px;
    left: 12px;
  }

  /* Nav pills — dropdown overlays below bar (mobile pass below) */
  .main-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
    order: 3;
    width: 100%;
    gap: 6px;
    overflow: visible;
    font-size: 0.66rem;
  }

  .nav-dropdown {
    position: static;
  }

  .main-nav > a,
  .nav-dropdown summary {
    display: flex;
    min-height: 34px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(49, 88, 64, 0.12);
    border-radius: var(--radius-pill);
    background: rgba(255, 253, 248, 0.55);
    padding: 0 12px;
    text-align: center;
  }

  .main-nav > a::after,
  .nav-dropdown summary::after {
    display: none;
  }

  .main-nav > a.active,
  .nav-dropdown summary.active,
  .nav-dropdown[open] summary {
    border-color: rgba(199, 154, 85, 0.35);
    background: linear-gradient(135deg, rgba(255, 253, 248, 0.96), rgba(244, 230, 203, 0.65));
    color: var(--deep-sage);
  }

  .luxury-hero {
    min-height: 640px;
    padding: 64px 14px 36px;
  }

  .luxury-hero::after {
    inset: 10px;
  }

  .luxury-hero h1 {
    font-size: clamp(2.5rem, 11vw, 3.6rem);
    line-height: 1.02;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .signature-grid,
  .boutique-products {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .signature-card,
  .signature-card.large {
    grid-column: auto;
    grid-row: auto;
    min-height: 300px;
  }

  .directory-grid,
  .shop-product-grid,
  .gallery-grid,
  .link-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .service-list-item {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
  }

  .service-list-item strong {
    grid-column: 2;
    justify-self: end;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
    gap: 0 14px;
    align-items: start;
    padding-bottom: calc(92px + env(safe-area-inset-bottom, 0px));
  }

  .book-cta {
    display: grid;
  }

  .section {
    width: calc(100% - 24px);
    margin-top: 64px;
    margin-bottom: 64px;
  }

  .page-hero {
    width: calc(100% - 24px);
    padding: 18px 16px;
  }

  .page-hero::before {
    inset: 8px;
  }
}

@media (max-width: 420px) {
  .luxury-hero h1 {
    font-size: 2.35rem;
  }
}

/* ─── Trust strip ───────────────────────────────────────────── */
.trust-strip {
  position: relative;
  z-index: 2;
  margin-top: -32px;
  padding: 0 max(16px, calc((100vw - var(--max)) / 2));
}

.trust-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(199, 154, 85, 0.22);
  border-radius: calc(var(--radius) + 4px);
  background: rgba(255, 253, 248, 0.94);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(20px);
}

.trust-item {
  display: grid;
  gap: 6px;
  padding: clamp(22px, 3vw, 32px) clamp(16px, 2.5vw, 28px);
  border-right: 1px solid var(--line);
  text-align: center;
}

.trust-item:last-child {
  border-right: 0;
}

.trust-item strong {
  color: var(--deep-sage);
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 600;
  line-height: 1;
}

.trust-item span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ─── Grand page hero (inner pages) ─────────────────────────── */
.page-hero {
  width: min(calc(var(--max) + 80px), calc(100% - 28px));
  margin-top: clamp(24px, 4vw, 40px);
  padding: clamp(24px, 4vw, 44px);
  border-radius: calc(var(--radius) + 4px);
  box-shadow: var(--shadow-lg);
}

.page-hero-copy h1 {
  font-size: clamp(2.1rem, 4.2vw, 3.6rem);
  line-height: 1.06;
}

.page-hero-image {
  border-radius: calc(var(--radius) + 2px);
  box-shadow: 0 18px 48px rgba(17, 28, 23, 0.12);
}

.page-hero-image img {
  max-height: 260px;
  aspect-ratio: 16 / 10;
}

/* ─── Premium service list ──────────────────────────────────── */
.service-list {
  border-radius: calc(var(--radius) + 4px);
  box-shadow: var(--shadow);
}

.service-list-item {
  padding: clamp(18px, 2.8vw, 26px) clamp(22px, 3.5vw, 36px);
}

.service-list-item strong {
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: rgba(36, 63, 49, 0.06);
}

/* ─── Directory cards premium ───────────────────────────────── */
.directory-card {
  border-radius: calc(var(--radius) + 2px);
}

.directory-card div {
  padding: 24px;
}

.directory-card h3 {
  font-size: clamp(1.5rem, 2.2vw, 1.9rem);
}

/* ─── Dark premium footer ───────────────────────────────────── */
.site-footer {
  margin-top: 0;
  border-top: 0;
  background:
    linear-gradient(180deg, rgba(14, 26, 20, 0.98), rgba(20, 38, 28, 0.96));
  color: #fffaf0;
  padding-top: clamp(40px, 5vw, 52px);
  padding-bottom: clamp(36px, 4vw, 48px);
}

.site-footer::before {
  display: block;
  width: min(100px, 20vw);
  height: 2px;
  margin: 0 auto clamp(28px, 3.5vw, 36px);
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  content: "";
  grid-column: 1 / -1;
}

.site-footer .footer-brand img {
  display: inline-block;
  width: min(220px, 100%);
  padding: 12px 16px;
  border: 1px solid rgba(199, 154, 85, 0.12);
  border-radius: 12px;
  background: rgba(255, 253, 248, 0.98);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
  filter: none;
}

.site-footer .footer-brand p:not(.footer-hours) {
  color: #fffaf0;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.65;
}

.site-footer .footer-hours {
  color: var(--champagne) !important;
  font-size: 0.95rem !important;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.site-footer .footer-contact p {
  color: rgba(255, 250, 240, 0.92);
}

.site-footer .footer-label {
  color: var(--champagne);
}

.site-footer .footer-links a,
.site-footer .footer-contact a {
  color: #fffaf0;
}

.site-footer .footer-links a:hover,
.site-footer .footer-contact a:hover {
  color: var(--champagne);
}

.site-footer .app-links a {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  border-radius: 10px;
  background: rgba(255, 250, 240, 0.96);
  padding: 6px 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
}

@media (min-width: 761px) {
  .site-footer {
    gap: clamp(20px, 3vw, 36px);
    padding-top: clamp(32px, 3.5vw, 44px);
    padding-bottom: clamp(28px, 3vw, 40px);
  }

  .site-footer::before {
    margin-bottom: clamp(20px, 2.5vw, 28px);
  }

  .footer-brand p,
  .site-footer > div:first-child p {
    margin-top: 8px;
    line-height: 1.55;
  }

  .site-footer .footer-brand img {
    width: min(240px, 100%);
    padding: 14px 18px;
  }

  .footer-hours {
    margin-top: 6px !important;
  }

  .footer-label {
    margin-bottom: 8px;
  }

  .footer-links,
  .app-links {
    gap: 8px;
  }

  .footer-contact p {
    margin-bottom: 8px;
  }

  .footer-contact a {
    line-height: 1.55;
  }

  .app-links img {
    height: 34px;
  }
}

/* ─── Review cards quote mark ───────────────────────────────── */
.review-card::before {
  color: rgba(199, 154, 85, 0.35);
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 600;
  line-height: 1;
  content: """;
}

.review-card p {
  font-style: italic;
}

/* ─── Boutique & visit band polish ──────────────────────────── */
.boutique-section {
  margin-top: clamp(88px, 12vw, 140px);
}

.boutique-section::after {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(200px, 40vw);
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(239, 208, 140, 0.5), transparent);
  transform: translateX(-50%);
}

/* Homepage: connect dark bands + reviews without white gaps */
.boutique-section + .visit-band {
  margin-top: 0;
  padding-top: clamp(44px, 5vw, 60px);
  border-top: 1px solid rgba(239, 208, 140, 0.14);
}

.boutique-section:has(+ .visit-band) {
  padding-bottom: clamp(44px, 5vw, 60px);
}

.visit-band {
  margin-top: clamp(48px, 6vw, 72px);
}

.visit-band + .reviews-section {
  margin-top: 0;
}

.reviews-section {
  margin-top: clamp(48px, 6vw, 72px);
}

/* ─── Header scroll polish ──────────────────────────────────── */
.site-header {
  transition: box-shadow 320ms ease, background 320ms ease;
}

/* ─── Responsive additions ──────────────────────────────────── */
@media (max-width: 1100px) {
  .trust-strip-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-item:nth-child(2) {
    border-right: 0;
  }

  .trust-item:nth-child(1),
  .trust-item:nth-child(2) {
    border-bottom: 1px solid var(--line);
  }

  .intro-aside {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid rgba(199, 154, 85, 0.25);
    padding-top: 24px;
  }
}

@media (max-width: 760px) {
  .trust-strip {
    margin-top: -20px;
    padding: 0 12px;
  }

  .trust-strip-inner {
    grid-template-columns: 1fr 1fr;
  }

  .trust-item {
    padding: 18px 14px;
  }

  .trust-item:nth-child(2) {
    border-right: 0;
  }

  .trust-item:nth-child(3) {
    border-bottom: 1px solid var(--line);
  }

  .editorial-intro {
    padding: 32px 20px;
  }

  .section-heading h2 {
    font-size: clamp(2rem, 9vw, 2.8rem);
  }

  .site-footer::before {
    margin-bottom: 32px;
  }
}

@media (max-width: 420px) {
  .trust-strip-inner {
    grid-template-columns: 1fr;
  }

  .trust-item {
    border-right: 0 !important;
    border-bottom: 1px solid var(--line);
  }

  .trust-item:last-child {
    border-bottom: 0;
  }
}

/* ─── Mobile compatibility pass ─────────────────────────────── */
@media (max-width: 760px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
  }

  main,
  .luxury-hero,
  .trust-strip,
  .boutique-section,
  .visit-band,
  .reviews-section,
  .site-footer {
    max-width: 100vw;
  }

  /* Announcement: compact two-line stack on mobile */
  .announcement {
    row-gap: 4px;
    padding: 8px 12px 9px;
  }

  .announcement-contact {
    letter-spacing: 0.02em;
  }

  .announcement-address,
  .announcement-note {
    max-width: none;
    overflow-wrap: normal;
  }

  /* Header: hide duplicate CTA (sticky bar has it) */
  .special-offer-button {
    display: none;
  }

  .site-header {
    gap: 8px;
    padding: 8px 12px 10px;
  }

  .site-header::after {
    right: 12px;
    left: 12px;
  }

  .main-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    position: relative;
    order: 3;
    width: 100%;
    gap: 6px;
    overflow: visible;
    padding: 0 0 2px;
    font-size: 0.68rem;
    letter-spacing: 0.05em;
  }

  .main-nav > a,
  .nav-dropdown {
    flex: 0 0 auto;
  }

  .main-nav > a,
  .nav-dropdown summary {
    min-height: 34px;
    padding: 0 12px;
    white-space: nowrap;
    font-size: 0.68rem;
  }

  /* Keep pills in place; menu anchors to nav bar, not document flow */
  .nav-dropdown {
    position: static;
  }

  .nav-dropdown summary::before {
    width: 4px;
    height: 4px;
  }

  .dropdown-menu {
    position: absolute;
    top: calc(100% + 6px);
    right: 12px;
    left: 12px;
    z-index: 120;
    width: auto;
    min-width: 0;
    max-width: none;
    max-height: min(52vh, 400px);
    margin-top: 0;
    transform: none !important;
    opacity: 1;
    pointer-events: auto;
    display: grid;
    box-shadow: var(--shadow-lg);
  }

  .nav-dropdown:not([open]) .dropdown-menu {
    display: none;
  }

  .nav-dropdown:hover:not([open]) .dropdown-menu,
  .nav-dropdown:focus-within:not([open]) .dropdown-menu {
    display: none;
    opacity: 0;
    pointer-events: none;
  }

  .nav-dropdown[open] .dropdown-menu {
    display: grid;
    opacity: 1;
    pointer-events: auto;
  }

  .nav-dropdown[open] summary {
    border-color: rgba(199, 154, 85, 0.45);
    background: linear-gradient(135deg, rgba(255, 253, 248, 0.96), rgba(244, 230, 203, 0.72));
    color: var(--deep-sage);
  }

  .dropdown-menu a {
    min-height: 44px;
    display: flex;
    align-items: center;
    font-size: 0.84rem;
  }

  /* Hero: no horizontal bleed, comfortable padding */
  .luxury-hero {
    min-height: auto;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    gap: 20px;
    max-width: 100vw;
    padding: 56px 16px 28px;
  }

  .luxury-hero::after {
    inset: 8px;
  }

  .luxury-hero-media img {
    animation: none;
    transform: scale(1);
    object-position: 55% center;
  }

  .luxury-hero-copy {
    max-width: 100%;
  }

  .luxury-hero-copy .eyebrow {
    font-size: 0.68rem;
  }

  .luxury-hero h1 {
    font-size: clamp(2.35rem, 10.5vw, 3.2rem);
    line-height: 1;
    overflow-wrap: anywhere;
  }

  .luxury-hero-copy > p:not(.eyebrow) {
    max-width: 100%;
    font-size: 0.94rem;
    line-height: 1.65;
  }

  .hero-actions {
    gap: 10px;
    margin-top: 24px;
  }

  .hero-actions .primary-action,
  .hero-actions .secondary-action {
    width: 100%;
    min-height: 48px;
  }

  .luxury-hero-panel {
    grid-column: 1;
    grid-row: 2;
    max-width: 100%;
    padding: 20px;
  }

  .luxury-hero-panel strong {
    font-size: 1.35rem;
  }

  .panel-action {
    width: 100%;
    min-height: 44px;
  }

  /* Trust strip */
  .trust-strip {
    margin-top: -16px;
    padding: 0 12px;
  }

  .trust-item strong {
    font-size: clamp(1.35rem, 5vw, 1.75rem);
  }

  .trust-item span {
    font-size: 0.68rem;
    line-height: 1.35;
  }

  /* Sections */
  .editorial-intro.section {
    margin-top: 40px;
    padding: 28px 18px;
  }

  .editorial-intro-copy h2 {
    font-size: clamp(1.85rem, 8vw, 2.5rem);
  }

  .intro-lead {
    font-size: 0.96rem;
  }

  .intro-aside {
    font-size: 0.92rem;
    padding-top: 20px;
  }

  .section {
    width: calc(100% - 24px);
    margin-top: 56px;
    margin-bottom: 56px;
  }

  .section-heading {
    margin-bottom: 28px;
  }

  .section-heading h2 {
    font-size: clamp(1.85rem, 8.5vw, 2.6rem);
  }

  .signature-card {
    min-height: 280px;
  }

  .signature-card h3 {
    font-size: 1.45rem;
  }

  .signature-card.large h3 {
    font-size: 1.65rem;
  }

  .signature-card::after {
    opacity: 1;
    transform: translateY(0);
  }

  .catalog-actions .primary-action.outline {
    width: 100%;
    min-height: 48px;
  }

  /* Full-bleed bands */
  .boutique-section {
    margin-top: 56px;
    padding-top: 56px;
    padding-bottom: 56px;
    padding-right: 16px;
    padding-left: 16px;
  }

  .boutique-section + .visit-band {
    margin-top: 0;
    padding-top: 48px;
  }

  .boutique-section:has(+ .visit-band) {
    padding-bottom: 48px;
  }

  .visit-band {
    margin-top: 48px;
    padding-top: 56px;
    padding-bottom: 56px;
    padding-right: 16px;
    padding-left: 16px;
  }

  .visit-band + .reviews-section {
    margin-top: 0;
  }

  .reviews-section {
    margin-top: 48px;
    padding-top: 56px;
    padding-bottom: 56px;
    padding-right: 16px;
    padding-left: 16px;
  }

  .boutique-copy h2,
  .visit-band h2,
  .reviews-heading h2 {
    font-size: clamp(1.85rem, 8vw, 2.5rem);
  }

  .visit-band > div:first-child {
    padding-left: 14px;
  }

  .visit-band::before {
    inset: 10px;
  }

  /* Inner pages */
  .page-hero {
    width: calc(100% - 24px);
    margin-top: 16px;
    padding: 18px 16px;
    border-radius: var(--radius);
  }

  .page-hero::before {
    display: none;
  }

  .page-hero-copy h1 {
    font-size: clamp(1.85rem, 8vw, 2.35rem);
    line-height: 1.08;
    overflow-wrap: anywhere;
  }

  .page-hero-copy > p:not(.eyebrow) {
    margin-top: 10px;
    font-size: 0.88rem;
    line-height: 1.6;
  }

  .page-hero-image img {
    max-height: 200px;
    aspect-ratio: 16 / 9;
  }

  /* Service price list — keep code + name + price on one row */
  .service-list-item {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px 12px;
    align-items: center;
    padding: 14px 16px;
  }

  .service-list-item > div {
    gap: 10px;
    align-items: flex-start;
  }

  .service-code {
    min-width: 42px;
    min-height: 28px;
    font-size: 0.72rem;
  }

  .service-list-item h3 {
    font-size: 0.98rem;
    line-height: 1.35;
  }

  .service-list-item strong {
    justify-self: end;
    align-self: center;
    font-size: 1.02rem;
    padding: 4px 10px;
  }

  /* Reviews */
  .review-card {
    min-height: auto;
    padding: 18px;
  }

  .review-card::before {
    font-size: 2.5rem;
  }

  .review-card p {
    margin: 12px 0;
    font-size: 0.9rem;
  }

  /* Footer + sticky CTA clearance */
  body {
    padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px));
  }

  /* Footer clearance handled in mobile footer polish block */

  .book-cta {
    display: grid;
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    left: 12px;
    max-width: none;
  }

  .book-cta a {
    min-height: 48px;
    font-size: 0.78rem;
  }
}

@media (max-width: 380px) {
  .main-nav > a,
  .nav-dropdown summary {
    font-size: 0.62rem;
    padding: 0 10px;
  }

  .announcement-contact {
    font-size: 0.88rem;
  }

  .announcement-address,
  .announcement-note {
    font-size: 0.68rem;
  }

  .announcement-note::before {
    margin: 0 5px;
  }

  .luxury-hero h1 {
    font-size: 2.15rem;
  }
}

/* ─── Mobile hamburger navigation ───────────────────────────── */
@media (max-width: 760px) {
  body.nav-open {
    overflow: hidden;
  }

  body.nav-open::before {
    position: fixed;
    inset: 0;
    z-index: 90;
    background: rgba(8, 17, 13, 0.42);
    backdrop-filter: blur(2px);
    content: "";
  }

  .nav-toggle {
    grid-column: 3;
    justify-self: end;
    display: flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(49, 88, 64, 0.14);
    border-radius: 10px;
    background: rgba(255, 253, 248, 0.96);
    box-shadow: 0 4px 14px rgba(17, 28, 23, 0.06);
    cursor: pointer;
    transition: border-color 180ms ease, background 180ms ease;
  }

  .nav-toggle:hover,
  .nav-toggle:focus-visible {
    border-color: rgba(199, 154, 85, 0.45);
    background: #fff;
    outline: none;
  }

  .nav-toggle-icon {
    position: relative;
    display: block;
    width: 18px;
    height: 2px;
    background: var(--deep-sage);
    transition: background 200ms ease;
  }

  .nav-toggle-icon::before,
  .nav-toggle-icon::after {
    position: absolute;
    left: 0;
    width: 18px;
    height: 2px;
    background: var(--deep-sage);
    content: "";
    transition: transform 220ms var(--ease), top 220ms var(--ease);
  }

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

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

  .site-header.is-nav-open .nav-toggle-icon {
    background: transparent;
  }

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

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

  .site-header {
    display: grid;
    position: sticky;
    z-index: 100;
    grid-template-columns: 44px 1fr 44px;
    align-items: center;
    min-height: 72px;
    padding: 10px 12px;
    gap: 0;
  }

  .site-header,
  .site-header.is-nav-open {
    position: sticky;
  }

  .nav-toggle {
    position: static;
    grid-column: 3;
    justify-self: end;
    transform: none;
  }

  .brand {
    display: flex;
    grid-column: 2;
    grid-row: 1;
    justify-content: center;
    justify-self: center;
    width: auto;
  }

  .brand img {
    width: min(248px, 82vw);
    max-height: 72px;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    z-index: 105;
    grid-column: 1 / -1;
    display: none;
    flex-direction: column;
    align-items: stretch;
    order: unset;
    width: 100%;
    max-height: min(72dvh, 560px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 6px 12px 14px;
    border-bottom: 1px solid rgba(49, 88, 64, 0.1);
    background: rgba(255, 253, 248, 0.98);
    box-shadow: 0 18px 40px rgba(17, 28, 23, 0.12);
    gap: 0;
    font-size: 0.82rem;
    letter-spacing: 0.04em;
  }

  .site-header.is-nav-open .main-nav {
    display: flex;
  }

  .main-nav > a,
  .nav-dropdown summary {
    display: flex;
    width: 100%;
    min-height: 48px;
    align-items: center;
    justify-content: flex-start;
    border: 0;
    border-bottom: 1px solid rgba(49, 88, 64, 0.08);
    border-radius: 0;
    background: transparent;
    padding: 0 6px;
    font-size: 0.82rem;
    text-align: left;
    white-space: normal;
  }

  .main-nav > a:last-child,
  .nav-dropdown:last-of-type {
    border-bottom: 0;
  }

  .main-nav > a.active,
  .nav-dropdown summary.active,
  .nav-dropdown[open] summary {
    border-color: rgba(49, 88, 64, 0.08);
    background: linear-gradient(90deg, rgba(237, 244, 239, 0.7), rgba(244, 230, 203, 0.25));
    color: var(--deep-sage);
  }

  .nav-dropdown {
    position: static;
    width: 100%;
  }

  .nav-dropdown summary::before {
    margin-left: auto;
  }

  .dropdown-menu {
    position: static;
    top: auto;
    right: auto;
    left: auto;
    display: none;
    width: 100%;
    min-width: 0;
    max-width: none;
    max-height: none;
    margin-top: 0;
    padding: 0 0 8px 10px;
    transform: none !important;
    border: 0;
    border-radius: 0;
    background: rgba(237, 244, 239, 0.35);
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
  }

  .nav-dropdown[open] .dropdown-menu {
    display: grid;
  }

  .nav-dropdown:not([open]) .dropdown-menu {
    display: none;
  }

  .dropdown-menu a {
    min-height: 44px;
    padding: 10px 12px;
    font-size: 0.84rem;
  }
}

/* Final mobile navigation drawer fix */
.nav-toggle {
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(49, 88, 64, 0.16);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.9);
  color: var(--deep-sage);
  box-shadow: 0 12px 30px rgba(17, 28, 23, 0.08);
  cursor: pointer;
}

.nav-toggle-icon,
.nav-toggle-icon::before,
.nav-toggle-icon::after {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 220ms var(--ease-luxe), opacity 180ms ease;
}

.nav-toggle-icon {
  position: relative;
}

.nav-toggle-icon::before,
.nav-toggle-icon::after {
  position: absolute;
  left: 0;
  content: "";
}

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

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

.site-header.nav-open .nav-toggle-icon,
.site-header.is-nav-open .nav-toggle-icon {
  background: currentColor;
  transform: rotate(45deg);
}

.site-header.nav-open .nav-toggle-icon::before,
.site-header.is-nav-open .nav-toggle-icon::before {
  top: -6px;
  opacity: 0;
}

.site-header.nav-open .nav-toggle-icon::after,
.site-header.is-nav-open .nav-toggle-icon::after {
  top: 6px;
  transform: translateY(-6px) rotate(-90deg);
}

@media (min-width: 761px) {
  .nav-toggle {
    display: none;
  }
}

@media (max-width: 760px) {
  body.nav-open {
    position: fixed;
    right: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    touch-action: none;
  }

  .site-header {
    grid-template-columns: 48px minmax(0, 1fr) 48px;
    align-items: center;
    justify-items: stretch;
    gap: 8px 12px;
    overflow: visible;
    padding: 10px 12px;
  }

  .site-header.nav-open,
  .site-header.is-nav-open {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 900;
  }

  .nav-toggle {
    display: grid;
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
    order: unset;
  }

  .brand {
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
    min-width: 0;
    width: auto;
  }

  .brand img {
    width: min(240px, 70vw);
    max-height: 66px;
  }

  .site-header::before {
    display: block;
    grid-column: 3;
    grid-row: 1;
    width: 48px;
    height: 44px;
    content: "";
  }

  .special-offer-button {
    display: none;
  }

  .main-nav {
    position: fixed;
    top: calc(100% + 8px);
    right: 12px;
    left: 12px;
    z-index: 500;
    display: none;
    width: auto;
    max-height: min(72vh, 560px);
    overflow-y: auto;
    grid-column: auto;
    grid-template-columns: 1fr;
    flex-direction: unset;
    align-items: stretch;
    order: unset;
    gap: 8px;
    border: 1px solid rgba(49, 88, 64, 0.14);
    border-radius: 8px;
    background: rgba(255, 253, 248, 0.98);
    padding: 12px;
    box-shadow: 0 28px 80px rgba(17, 28, 23, 0.22);
    backdrop-filter: blur(20px) saturate(1.08);
  }

  .site-header.nav-open .main-nav,
  .site-header.is-nav-open .main-nav,
  .main-nav.is-open {
    top: calc(var(--mobile-header-height, 92px) + 8px);
    max-height: calc(100dvh - var(--mobile-header-height, 92px) - 24px);
  }

  .site-header.nav-open .main-nav,
  .site-header.is-nav-open .main-nav,
  .main-nav.is-open {
    display: grid;
    animation: mobile-menu-rise 180ms var(--ease-luxe) both;
  }

  @keyframes mobile-menu-rise {
    from {
      opacity: 0;
      transform: translateY(-6px) scale(0.985);
    }

    to {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
  }

  .main-nav > a,
  .nav-dropdown summary {
    display: flex;
    width: 100%;
    min-height: 46px;
    align-items: center;
    justify-content: space-between;
    border: 1px solid rgba(49, 88, 64, 0.12);
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(255, 253, 248, 0.98), rgba(247, 239, 227, 0.62));
    padding: 0 14px;
    color: var(--deep-sage);
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    text-align: left;
    text-transform: uppercase;
    white-space: normal;
    transform: none;
    box-shadow: none;
  }

  .main-nav > a:hover,
  .nav-dropdown summary:hover {
    transform: none;
  }

  .main-nav > a::after,
  .nav-dropdown summary::after {
    display: none;
  }

  .nav-dropdown {
    position: relative;
    width: 100%;
  }

  .nav-dropdown summary::before {
    flex: 0 0 auto;
    margin-left: 10px;
    transition: transform 180ms var(--ease-luxe);
  }

  .nav-dropdown[open] summary::before {
    transform: rotate(225deg) translate(-1px, -1px);
  }

  .dropdown-menu {
    position: static;
    display: none;
    width: 100%;
    min-width: 0;
    max-width: none;
    max-height: none;
    margin-top: 8px;
    overflow: visible;
    border: 1px solid rgba(49, 88, 64, 0.1);
    border-radius: 8px;
    background: rgba(250, 246, 237, 0.78);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
    opacity: 1;
    padding: 8px;
    pointer-events: auto;
    transform: none !important;
    backdrop-filter: none;
  }

  .nav-dropdown[open] .dropdown-menu {
    display: grid;
    gap: 4px;
  }

  .nav-dropdown:not([open]) .dropdown-menu {
    display: none;
  }

  .dropdown-menu a {
    min-height: 38px;
    border-radius: 7px;
    background: rgba(255, 253, 248, 0.66);
    padding: 9px 12px;
    color: #405247;
    font-size: 0.82rem;
    letter-spacing: 0;
    text-transform: none;
  }

  .dropdown-menu a:hover {
    background: rgba(239, 208, 140, 0.18);
    padding-left: 14px;
  }

  .announcement-note {
    display: block;
    max-width: 100%;
    overflow-wrap: anywhere;
    padding: 3px 8px;
    font-size: clamp(0.66rem, 2.7vw, 0.72rem);
    letter-spacing: 0;
    line-height: 1.35;
    white-space: normal;
  }

  .mobile-dock {
    display: none !important;
  }

  body.nav-open .book-cta {
    display: none !important;
  }

  .luxury-hero-copy,
  .luxury-hero-panel,
  .trust-strip,
  .trust-strip-inner,
  .editorial-intro,
  .editorial-intro-copy,
  .intro-aside {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .luxury-hero-copy > p:not(.eyebrow),
  .luxury-hero-panel p,
  .intro-lead,
  .intro-aside {
    overflow-wrap: anywhere;
    white-space: normal;
  }

  .announcement,
  .announcement p,
  .luxury-hero-copy,
  .luxury-hero-copy *,
  .luxury-hero-panel,
  .luxury-hero-panel *,
  .editorial-intro,
  .editorial-intro * {
    max-width: 100%;
    white-space: normal !important;
  }

  .announcement {
    flex-direction: column;
    gap: 3px;
  }

  .announcement p {
    width: 100%;
    min-width: 0;
  }

  .trust-strip {
    padding-right: 12px;
    padding-left: 12px;
  }

  .trust-strip-inner {
    grid-template-columns: 1fr !important;
  }

  .trust-item {
    border-right: 0 !important;
    border-bottom: 1px solid var(--line);
  }

  .trust-item:last-child {
    border-bottom: 0;
  }
}

/* ─── Mobile footer polish ──────────────────────────────────── */
@media (max-width: 760px) {
  .site-footer {
    grid-template-columns: 1fr 1fr;
    gap: 0 14px;
    align-items: start;
    padding: 28px 18px calc(92px + env(safe-area-inset-bottom, 0px));
  }

  .site-footer::before {
    grid-column: 1 / -1;
    margin-bottom: 18px;
  }

  .footer-brand {
    grid-column: 1 / -1;
    text-align: center;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(239, 208, 140, 0.16);
  }

  .site-footer .footer-brand img {
    display: inline-block;
    width: min(228px, 80vw);
    margin: 0 auto 12px;
    padding: 12px 18px;
  }

  .site-footer .footer-brand p:not(.footer-hours) {
    max-width: 22rem;
    margin-top: 0;
    margin-right: auto;
    margin-left: auto;
    color: rgba(255, 250, 240, 0.92);
    font-size: 0.86rem;
    font-weight: 500;
    line-height: 1.5;
  }

  .site-footer .footer-hours {
    margin-top: 6px !important;
    font-size: 0.84rem !important;
  }

  .footer-links,
  .footer-contact {
    padding-top: 16px;
    text-align: left;
  }

  .footer-links {
    padding-right: 10px;
    border-right: 1px solid rgba(239, 208, 140, 0.12);
  }

  .footer-contact {
    padding-left: 10px;
  }

  .footer-label {
    margin-bottom: 8px;
    font-size: 0.66rem;
    letter-spacing: 0.08em;
  }

  .footer-links {
    gap: 2px;
  }

  .footer-links a {
    display: flex;
    min-height: 36px;
    align-items: center;
    font-size: 0.84rem;
  }

  .footer-contact p {
    margin-bottom: 6px;
    font-size: 0.82rem;
    line-height: 1.55;
  }

  .footer-contact a {
    display: flex;
    min-height: 34px;
    align-items: center;
    font-size: 0.86rem;
    font-weight: 700;
  }

  .app-links {
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding-top: 16px;
    margin-top: 4px;
    border-top: 1px solid rgba(239, 208, 140, 0.16);
    text-align: left;
  }

  .app-links .footer-label {
    grid-column: 1 / -1;
    margin-bottom: 2px;
  }

  .app-links a {
    display: flex;
    width: 100%;
    min-width: 0;
    justify-content: center;
    margin: 0;
    padding: 8px 10px;
  }

  .app-links img {
    width: 100%;
    max-width: 100%;
    height: 36px;
    object-fit: contain;
  }
}
