/* ============================================================
   DESIGN SYSTEM — Voce del Mare
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* Accessibility / SEO: visually hidden but readable by screen readers and crawlers */
.sr-only{position:absolute!important;width:1px!important;height:1px!important;padding:0!important;margin:-1px!important;overflow:hidden!important;clip:rect(0,0,0,0)!important;white-space:nowrap!important;border:0!important;}

/* Core Web Vitals — aspect ratios per prevenire CLS su immagini senza dimensioni esplicite */
img{max-width:100%;height:auto;}
.story-left img,.plateaux-card-img img,.location-left img,.booking-bg img{aspect-ratio:4/5;}
.g-scroll-item img,.sc-img-frame img,.testi-photo img{aspect-ratio:4/5;}
.g-scroll-item.tall img{aspect-ratio:3/5;}

/* Breadcrumb visibili */
.breadcrumb{padding:24px 8vw 0;font-size:11px;font-family:var(--ff-sans);color:var(--slate);letter-spacing:1.5px;text-transform:uppercase;}
.breadcrumb ol{list-style:none;display:flex;flex-wrap:wrap;gap:8px;padding:0;margin:0;}
.breadcrumb li{display:flex;align-items:center;gap:8px;}
.breadcrumb li+li::before{content:"›";color:var(--gold);font-size:14px;}
.breadcrumb a{color:var(--slate);text-decoration:none;transition:color .2s;}
.breadcrumb a:hover{color:var(--gold-dark);}
.breadcrumb [aria-current="page"]{color:var(--navy);font-weight:600;}

:root {
  --navy:       #001c58;
  --navy-deep:  #000b28;
  --navy-mid:   #002575;
  --slate:      #697388;
  --slate-light:#a8b0c0;
  --cream:      #f5f4f1;
  --cream-off:  #ede9e3;
  --cream-light:#faf9f7;
  --gold:       #b8966a;
  --gold-bright:#c8a87a;
  --gold-pale:  #e8d5b8;
  --gold-dark:  #8a6840;
  --white:      #ffffff;
  --text-dark:  #1a1a2e;
  --text-body:  #3a3a4a;
  --ff-serif:   'Cormorant Garamond', Georgia, serif;
  --ff-sans:    'Mulish', -apple-system, sans-serif;
  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out:cubic-bezier(0.87, 0, 0.13, 1);
}

html { scroll-behavior: smooth; overflow-x: hidden; font-size: 16px; }

body {
  font-family: var(--ff-sans);
  color: var(--text-body);
  background: var(--cream-light);
  overflow-x: hidden;
  cursor: none;
}

::selection { background: var(--gold); color: var(--white); }

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a   { text-decoration: none; color: inherit; }

/* ============================================================
   CUSTOM CURSOR
   ============================================================ */
.cursor {
  position: fixed; top: 0; left: 0;
  width: 10px; height: 10px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%,-50%);
  transition: width 0.2s, height 0.2s, background 0.2s;
  mix-blend-mode: multiply;
}

.cursor-ring {
  position: fixed; top: 0; left: 0;
  width: 44px; height: 44px;
  border: 1px solid rgba(184,150,106,0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%,-50%);
  transition: width 0.4s var(--ease-out), height 0.4s var(--ease-out), opacity 0.3s;
}

body:has(a:hover) .cursor      { width: 18px; height: 18px; }
body:has(a:hover) .cursor-ring { width: 60px; height: 60px; opacity: 0.4; }

/* ============================================================
   LOADING SCREEN
   ============================================================ */
#loader {
  position: fixed; inset: 0;
  background: var(--navy-deep);
  z-index: 9000;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  transition: opacity 0.8s var(--ease-out), visibility 0.8s;
}

#loader.hidden { opacity: 0; visibility: hidden; }

.loader-logo {
  font-family: var(--ff-serif);
  font-size: 48px; color: var(--white);
  letter-spacing: 8px; text-transform: uppercase;
  font-weight: 300; opacity: 0;
  animation: loaderFadeIn 0.8s var(--ease-out) 0.3s forwards;
}

.loader-sub {
  font-size: 10px; letter-spacing: 6px;
  color: var(--gold); text-transform: uppercase;
  margin-top: 12px; opacity: 0;
  animation: loaderFadeIn 0.8s var(--ease-out) 0.6s forwards;
}

.loader-bar {
  width: 200px; height: 1px;
  background: rgba(255,255,255,0.1);
  margin-top: 40px; overflow: hidden;
  opacity: 0;
  animation: loaderFadeIn 0.5s ease 0.8s forwards;
}

.loader-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
  width: 0;
  animation: loaderBarFill 1.5s var(--ease-out) 1s forwards;
}

@keyframes loaderFadeIn { to { opacity: 1; } }
@keyframes loaderBarFill { to { width: 100%; } }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 500; height: 100px;
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 0 70px;
  transition: height 0.5s var(--ease-out), background 0.5s, box-shadow 0.5s;
}

.site-header.scrolled {
  height: 72px;
  background: rgba(250,249,247,0.97);
  backdrop-filter: blur(24px) saturate(180%);
  box-shadow: 0 1px 0 rgba(0,28,88,0.08);
}

/* inner page header: always cream bg */
.site-header.inner-page {
  background: rgba(250,249,247,0.97);
  backdrop-filter: blur(24px) saturate(180%);
  box-shadow: 0 1px 0 rgba(0,28,88,0.08);
}
.site-header.inner-page .header-logo img { filter: none; }
.site-header.inner-page .header-nav li a { color: var(--navy); }

.header-logo {
  height: 46px; flex-shrink: 0;
  transition: height 0.5s;
}

.header-logo img {
  height: 100%; width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: filter 0.5s;
}

.site-header.scrolled .header-logo img { filter: none; }
.site-header.scrolled .header-logo { height: 36px; }

.header-nav {
  display: flex; gap: 44px;
  list-style: none; align-items: center;
}

.header-nav li { position: relative; }

.header-nav li a {
  font-size: 10.5px; font-weight: 600;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  position: relative; transition: color 0.3s;
}

.site-header.scrolled .header-nav li a { color: var(--navy); }

.header-nav li a::after {
  content: ''; position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.35s var(--ease-out);
}

.header-nav li a:hover::after { width: 100%; }

/* dropdown */
.nav-dropdown {
  display: none; position: absolute;
  top: 100%; left: -16px;
  background: var(--white);
  box-shadow: 0 12px 40px rgba(0,28,88,0.12);
  min-width: 220px; padding: 16px 0;
  z-index: 100;
}

.header-nav li:hover .nav-dropdown { display: block; }

.nav-dropdown a {
  display: block; padding: 10px 24px;
  font-size: 11px; font-weight: 500;
  letter-spacing: 1px; color: var(--slate) !important;
}

.nav-dropdown a::after { display: none !important; }
.nav-dropdown a:hover { color: var(--navy) !important; background: var(--cream-light); }

.header-book-btn {
  font-family: var(--ff-sans);
  font-size: 10px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--white) !important;
  background: var(--gold);
  padding: 12px 26px;
  transition: background 0.3s, transform 0.2s !important;
}

.header-book-btn:hover { background: var(--gold-dark); transform: translateY(-1px); }
.header-book-btn::after { display: none !important; }

/* Menu dropdown — only on desktop (hover is sticky on touch devices) */
@media (min-width: 769px) {
  .menu-dropdown-wrap:hover .menu-dropdown,
  .menu-dropdown:hover { display: block !important; }

  /* Invisible hover-bridge above the dropdown so the cursor can cross
     the gap between the "Menù" link and the first dropdown item
     without losing :hover. */
  .menu-dropdown::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: -24px;
    height: 24px;
    background: transparent;
  }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100svh;
  min-height: 700px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://indesignstudio.b-cdn.net/IMG_4699.jpg');
  background-size: cover;
  background-position: center 20%;
  will-change: transform;
  animation: heroDrift 25s ease-in-out infinite alternate;
}

@keyframes heroDrift {
  0%   { transform: scale(1.12) translateY(0); }
  100% { transform: scale(1.18) translateY(-3%); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,11,40,0.3)  0%,
    rgba(0,11,40,0.15) 40%,
    rgba(0,11,40,0.65) 75%,
    rgba(0,11,40,0.92) 100%
  );
}

.hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 70px 90px;
  max-width: 1400px;
  width: 100%;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-pale);
  margin-bottom: 24px;
  animation: slideUp 1s var(--ease-out) 2.4s both;
}

.hero-label::before {
  content: '';
  display: block;
  width: 32px; height: 1px;
  background: var(--gold);
}

.hero-title {
  font-family: var(--ff-serif);
  font-size: clamp(64px, 9vw, 148px);
  font-weight: 300;
  color: var(--white);
  line-height: 0.88;
  letter-spacing: -1px;
  overflow: hidden;
}

.hero-title .line {
  display: block;
  animation: maskReveal 1.2s var(--ease-out) both;
}

.hero-title .line:nth-child(1) { animation-delay: 2.6s; }
.hero-title .line:nth-child(2) { animation-delay: 2.8s; }

.hero-tagline {
  font-family: var(--ff-serif);
  font-weight: 300;
  font-style: italic;
  color: var(--gold-pale);
  font-size: clamp(40px, 5.6vw, 92px);
  line-height: 0.88;
  letter-spacing: 4px;
  margin-top: 12px;
  animation: slideUp 1s var(--ease-out) both;
  animation-delay: 3s;
}

@keyframes maskReveal {
  from { transform: translateY(110%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

@keyframes slideUp {
  from { transform: translateY(20px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-top: 48px;
  animation: slideUp 1s var(--ease-out) 3.2s both;
}

.hero-desc {
  font-family: var(--ff-serif);
  font-size: clamp(15px, 1.5vw, 19px);
  font-style: italic;
  color: rgba(255,255,255,0.55);
  max-width: 420px;
  line-height: 1.7;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
  flex-shrink: 0;
}

.hero-cta-ring {
  width: 56px; height: 56px;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.4s var(--ease-out);
  flex-shrink: 0;
}

.hero-cta:hover .hero-cta-ring {
  background: var(--gold);
  border-color: var(--gold);
  transform: rotate(45deg);
}

.hero-scroll-indicator {
  position: absolute;
  right: 70px;
  bottom: 90px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  animation: fadeIn 1s ease 3.5s both;
}

.hero-scroll-indicator span {
  font-size: 8px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  writing-mode: vertical-lr;
  transform: rotate(180deg);
}

.hero-scroll-line {
  width: 1px;
  height: 70px;
  background: linear-gradient(to top, transparent, rgba(255,255,255,0.3));
  animation: scrollBounce 2.5s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%,100% { transform: scaleY(1) translateY(0); opacity: 0.4; }
  50%      { transform: scaleY(0.6) translateY(8px); opacity: 1; }
}

/* ============================================================
   REOPENING BAND
   ============================================================ */
.reopen-band {
  background: var(--gold);
  padding: 18px 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  overflow: hidden;
  position: relative;
}

.reopen-band::before,
.reopen-band::after {
  content: '\25C6';
  font-size: 7px;
  color: rgba(255,255,255,0.5);
}

.reopen-band-text {
  font-family: var(--ff-serif);
  font-size: 18px;
  font-style: italic;
  color: var(--white);
  letter-spacing: 1px;
  text-align: center;
}

.reopen-band-text strong {
  font-style: normal;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 12px;
  font-family: var(--ff-sans);
}

/* ============================================================
   OPEN SECTION
   ============================================================ */
.open-section {
  background: var(--navy-deep);
  padding: 140px 70px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.open-section::before {
  content: '';
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%,-50%);
  width: 900px; height: 900px;
  border-radius: 50%;
  border: 1px solid rgba(184,150,106,0.06);
  pointer-events: none;
}

.open-section::after {
  content: '';
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%,-50%);
  width: 600px; height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(184,150,106,0.1);
  pointer-events: none;
}

.cd-arc-sm {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%,-50%);
  width: 300px; height: 300px;
  border-radius: 50%;
  border: 1px solid rgba(184,150,106,0.18);
  pointer-events: none;
}

.cd-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.cd-star {
  position: absolute;
  width: 2px; height: 2px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: starTwinkle var(--dur, 4s) var(--delay, 0s) ease-in-out infinite;
}

@keyframes starTwinkle {
  0%,100% { opacity: 0; transform: scale(0.5); }
  50%      { opacity: 0.7; transform: scale(1.5); }
}

.cd-eyebrow {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 28px;
  position: relative;
  z-index: 2;
}

.cd-eyebrow::before, .cd-eyebrow::after {
  content: '';
  display: block;
  width: 50px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.cd-eyebrow::after { transform: scaleX(-1); }

.cd-title {
  font-family: var(--ff-serif);
  font-size: clamp(44px, 6vw, 88px);
  font-weight: 300;
  color: var(--white);
  letter-spacing: 3px;
  line-height: 1;
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
}

.cd-title em { font-style: italic; color: var(--gold-pale); }

.cd-subtitle {
  font-family: var(--ff-serif);
  font-size: 18px;
  font-style: italic;
  color: rgba(255,255,255,0.35);
  margin-bottom: 70px;
  position: relative;
  z-index: 2;
}

.cd-date-pill {
  display: inline-block;
  border: 1px solid rgba(184,150,106,0.3);
  padding: 10px 36px;
  margin-bottom: 70px;
  position: relative;
  z-index: 2;
}

.cd-date-pill span {
  font-family: var(--ff-serif);
  font-size: clamp(20px, 3vw, 36px);
  font-weight: 500;
  color: var(--gold-pale);
  letter-spacing: 6px;
  text-transform: uppercase;
}

.cd-cta {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 18px 44px;
  overflow: hidden;
  transition: border-color 0.3s;
}

.cd-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease-out);
}

.cd-cta:hover::before    { transform: scaleX(1); }
.cd-cta:hover            { border-color: var(--gold); }
.cd-cta span             { position: relative; z-index: 1; }
.cd-cta svg              { position: relative; z-index: 1; transition: transform 0.3s; }
.cd-cta:hover svg        { transform: translateX(5px); }

.open-pillars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin: 0 auto 60px;
  flex-wrap: wrap;
}

.open-pillar { text-align: center; }

.open-pillar-num {
  font-family: var(--ff-serif);
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 300;
  color: var(--white);
  line-height: 1;
}

.open-pillar-lbl {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 10px;
  min-height: 14px;
}

.open-pillar-sep {
  font-family: var(--ff-serif);
  font-size: 40px;
  color: rgba(184,150,106,0.3);
  margin-bottom: 14px;
}

.open-pillar-div {
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, transparent, rgba(184,150,106,0.3), transparent);
  margin: 0 16px;
}

.open-notice {
  font-family: var(--ff-serif);
  font-size: clamp(15px, 1.6vw, 20px);
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
  margin-bottom: 50px;
  position: relative;
  z-index: 2;
}

.open-notice strong {
  color: var(--gold-pale);
  font-weight: 500;
}

/* ============================================================
   STORY SECTION
   ============================================================ */
.story-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.story-left {
  position: relative;
  overflow: hidden;
  min-height: 700px;
}

.story-left img { transition: transform 0.9s var(--ease-out); }
.story-left:hover img { transform: scale(1.05); }

.story-left-badge {
  position: absolute;
  bottom: 50px; right: -1px;
  background: var(--gold);
  padding: 28px 36px;
  z-index: 2;
}

.story-left-badge p {
  font-family: var(--ff-serif);
  font-size: 13px;
  font-style: italic;
  color: var(--white);
  line-height: 1.6;
  max-width: 200px;
}

.story-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 90px;
  background: var(--cream-light);
}

.story-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 50px;
}

.story-feat {
  padding: 28px 24px;
  border: 1px solid rgba(0,28,88,0.07);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.story-feat:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 40px rgba(184,150,106,0.1);
}

.story-feat-icon {
  width: 48px; height: 48px;
  margin-bottom: 16px;
  object-fit: contain;
  color: var(--gold-dark);
  opacity: 0.85;
  display: block;
}

.story-feat-title {
  font-family: var(--ff-serif);
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 4px;
}

.story-feat-sub {
  font-size: 11px;
  color: var(--slate-light);
  letter-spacing: 0.5px;
}

/* ============================================================
   SHOWCASE (interactive)
   ============================================================ */
.showcase-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 90vh;
}

.showcase-side-list {
  background: var(--navy-deep);
  padding: 90px 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.showcase-eyebrow {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 50px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.showcase-eyebrow::before { content: ''; display: block; width: 30px; height: 1px; background: var(--gold); }

.sc-item {
  padding: 30px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.sc-item:first-of-type { border-top: 1px solid rgba(255,255,255,0.05); }

.sc-item::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: var(--gold);
  transform: scaleY(0);
  transition: transform 0.35s var(--ease-out);
}

.sc-item.active::before { transform: scaleY(1); }

.sc-num {
  font-size: 9px;
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 6px;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.3s, transform 0.3s;
}

.sc-item.active .sc-num  { opacity: 1; transform: translateX(0); }
.sc-item:hover .sc-num   { opacity: 1; transform: translateX(0); }

.sc-name {
  font-family: var(--ff-serif);
  font-size: clamp(24px, 3vw, 42px);
  color: rgba(255,255,255,0.3);
  font-weight: 300;
  transition: color 0.4s, transform 0.35s var(--ease-out), padding-left 0.35s var(--ease-out);
  padding-left: 0;
}

.sc-item.active .sc-name,
.sc-item:hover .sc-name {
  color: var(--white);
  padding-left: 16px;
}

.showcase-side-img {
  position: relative;
  overflow: hidden;
}

.sc-img-frame {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s var(--ease-out);
}

.sc-img-frame.active { opacity: 1; }
.sc-img-frame img { filter: brightness(0.78) saturate(1.1); }

.sc-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,11,40,0.85) 0%, transparent 55%);
}

.sc-img-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 50px;
}

.sc-img-caption h3 {
  font-family: var(--ff-serif);
  font-size: 40px;
  color: var(--white);
  font-weight: 300;
  margin-bottom: 8px;
}

.sc-img-caption p {
  font-size: 13px;
  font-style: italic;
  color: rgba(255,255,255,0.55);
}

/* ============================================================
   SECTION UTILITIES
   ============================================================ */
.section-eyebrow {
  display: inline-flex; align-items: center;
  gap: 12px; font-size: 9.5px;
  font-weight: 700; letter-spacing: 4px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 20px;
}

.section-eyebrow::before {
  content: ''; display: block;
  width: 28px; height: 1px;
  background: var(--gold);
}

.section-h {
  font-family: var(--ff-serif);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 300; line-height: 1;
  color: var(--navy);
}

.section-h em { font-style: italic; color: var(--slate); }

.section-p {
  font-size: 14.5px; line-height: 2;
  color: var(--slate); font-weight: 300;
}

/* ============================================================
   PAGE HERO (subpages)
   ============================================================ */
.page-hero {
  position: relative; height: 50vh;
  min-height: 360px; display: flex;
  align-items: flex-end; overflow: hidden;
}

.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
}

.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,11,40,0.3) 0%,
    rgba(0,11,40,0.6) 60%,
    rgba(0,11,40,0.9) 100%
  );
}

.page-hero-noise {
  position: absolute; inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px;
  pointer-events: none;
}

.page-hero-content {
  position: relative; z-index: 2;
  padding: 0 70px 60px;
  max-width: 1400px; width: 100%;
}

.page-hero-label {
  display: inline-flex; align-items: center;
  gap: 14px; font-size: 10px;
  font-weight: 600; letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-pale); margin-bottom: 16px;
}

.page-hero-label::before {
  content: ''; display: block;
  width: 32px; height: 1px;
  background: var(--gold);
}

.page-hero-title {
  font-family: var(--ff-serif);
  font-size: clamp(48px, 7vw, 100px);
  font-weight: 300; color: var(--white);
  line-height: 0.95;
}

.page-hero-title em {
  font-style: italic;
  color: var(--gold-pale);
  font-size: 0.65em;
}

/* ============================================================
   FOOTER
   ============================================================ */
/* ---- Footer ---- */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.5);
  padding: 0;
  position: relative;
  overflow: hidden;
}

/* Decorative background circles */
.footer-deco {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
.footer-deco::before {
  content: '';
  position: absolute;
  top: -180px; right: -120px;
  width: 500px; height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(184,150,106,0.06);
}
.footer-deco::after {
  content: '';
  position: absolute;
  bottom: -200px; left: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.03);
}

/* CTA band */
.footer-cta {
  position: relative;
  padding: 70px 70px;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-cta-title {
  font-family: var(--ff-serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 12px;
}
.footer-cta-title em { font-style: italic; color: var(--gold-pale); }
.footer-cta-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.35);
  margin-bottom: 32px;
  letter-spacing: 0.3px;
}
.footer-cta-btns {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; flex-wrap: wrap;
}
.footer-cta-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 38px;
  font-size: 10px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  border-radius: 4px;
  transition: all 0.35s var(--ease-out);
}
.footer-cta-btn.primary {
  background: var(--gold);
  color: var(--white);
}
.footer-cta-btn.primary:hover {
  background: var(--gold-bright);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(184,150,106,0.3);
}
.footer-cta-btn.secondary {
  background: transparent;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.12);
}
.footer-cta-btn.secondary:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
  transform: translateY(-2px);
}
.footer-cta-btn svg { width: 16px; height: 16px; }

/* Main footer grid */
.footer-main {
  position: relative;
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1.3fr;
  gap: 60px;
  padding: 70px 70px 60px;
}

.footer-brand img {
  height: 44px; width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.85; margin-bottom: 24px;
}

.footer-brand-text {
  font-family: var(--ff-serif);
  font-size: 15px; font-style: italic;
  color: rgba(255,255,255,0.28);
  line-height: 1.9; max-width: 300px;
  margin-bottom: 32px;
}

.footer-socials { display: flex; gap: 12px; }

.f-social {
  width: 42px; height: 42px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex; align-items: center;
  justify-content: center;
  transition: all 0.35s var(--ease-out); flex-shrink: 0;
}

.f-social svg { width: 16px; height: 16px; fill: rgba(255,255,255,0.4); transition: fill 0.3s; }
.f-social:hover { background: var(--gold); border-color: var(--gold); transform: translateY(-3px); box-shadow: 0 8px 20px rgba(184,150,106,0.25); }
.f-social:hover svg { fill: white; }

.footer-col-title {
  font-size: 9px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 26px;
  display: flex; align-items: center; gap: 10px;
}
.footer-col-title::after {
  content: '';
  flex: 1; height: 1px;
  background: rgba(184,150,106,0.15);
  max-width: 40px;
}

.footer-link {
  display: block; font-size: 13.5px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
  transition: color 0.3s, padding-left 0.3s;
}
.footer-link:hover { color: var(--white); padding-left: 8px; }

.footer-info {
  font-size: 13.5px;
  color: rgba(255,255,255,0.4);
  line-height: 2.1;
}
.footer-info a {
  color: rgba(255,255,255,0.4);
  transition: color 0.3s;
}
.footer-info a:hover { color: var(--gold); }

/* Contact items with icons */
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 14px;
  margin-bottom: 22px;
}
.footer-contact-icon {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px;
}
.footer-contact-icon svg { width: 14px; height: 14px; stroke: var(--gold); fill: none; }
.footer-contact-label {
  font-size: 9px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 4px;
}
.footer-contact-value {
  font-size: 13.5px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
}
.footer-contact-value a { color: rgba(255,255,255,0.45); transition: color 0.3s; }
.footer-contact-value a:hover { color: var(--gold); }

/* Bottom bar */
.footer-bottom-bar {
  position: relative;
  display: flex; justify-content: space-between;
  align-items: center;
  padding: 28px 70px;
  border-top: 1px solid rgba(255,255,255,0.05);
  font-size: 11px;
  color: rgba(255,255,255,0.18);
}
.footer-bottom-bar a {
  color: rgba(255,255,255,0.18);
  transition: color 0.3s;
}
.footer-bottom-bar a:hover { color: rgba(255,255,255,0.5); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-back-top {
  position: absolute;
  left: 50%; transform: translateX(-50%) translateY(-50%);
  top: 0;
  width: 40px; height: 40px;
  background: var(--navy-deep);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
}
.footer-back-top:hover { background: var(--gold); border-color: var(--gold); transform: translateX(-50%) translateY(-55%); }
.footer-back-top svg { width: 16px; height: 16px; stroke: rgba(255,255,255,0.5); }
.footer-back-top:hover svg { stroke: var(--white); }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal, .r-left, .r-right {
  opacity: 0;
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

.reveal  { transform: translateY(36px); }
.r-left  { transform: translateX(-36px); }
.r-right { transform: translateX(36px); }

.reveal.in, .r-left.in, .r-right.in { opacity: 1; transform: none; }

.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; }
.d5 { transition-delay: 0.5s; }
.d6 { transition-delay: 0.6s; }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ============================================================
   MENU SECTION
   ============================================================ */
.menu-section {
  background: var(--cream-off);
  padding: 120px 0 100px;
}

/* Homepage variant — has hero banner */
.menu-section--home {
  padding: 0;
  overflow: hidden;
  background: var(--cream-off);
}

.menu-hero {
  position: relative;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.menu-hero-bg {
  position: absolute; inset: 0;
  background-image: url('https://indesignstudio.b-cdn.net/fotoVoceMare/IMG_0375.jpg');
  background-size: cover;
  background-position: center 40%;
  filter: brightness(0.7) saturate(1.1);
}

.menu-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,11,40,0.35) 0%, rgba(0,11,40,0.5) 50%, rgba(0,11,40,0.8) 100%);
}

.menu-hero-content {
  position: relative; z-index: 2;
  text-align: center;
  padding: 0 24px;
}

.menu-hero-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.menu-hero-eyebrow span {
  display: block;
  width: 40px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.menu-hero-eyebrow span:last-child { transform: scaleX(-1); }

.menu-hero-title {
  font-family: var(--ff-serif);
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 300;
  color: var(--white);
  line-height: 1;
  letter-spacing: 4px;
  margin-bottom: 20px;
}

.menu-hero-quote {
  font-family: var(--ff-serif);
  font-size: clamp(14px, 1.5vw, 18px);
  font-style: italic;
  color: rgba(255,255,255,0.45);
  max-width: 420px;
  margin: 0 auto;
  line-height: 1.7;
}

.menu-body {
  padding: 0 70px 100px;
  background: var(--cream-off);
  position: relative;
  z-index: 2;
}

.menu-tabs-wrap {
  position: relative;
  margin-top: -28px;
  z-index: 3;
  background: var(--cream-off);
  padding-top: 0;
}

.menu-section--home .menu-tabs {
  max-width: 1200px;
  margin: 0 auto;
  box-shadow: 0 8px 40px rgba(0,28,88,0.08);
}

.menu-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 70px;
}

.menu-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
  gap: 40px;
}

.menu-header-left { flex: 1; }

.menu-header-divider {
  width: 60px; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-top: 20px;
}

.menu-header-right {
  flex: 0 0 320px;
  text-align: right;
}

.menu-header-right p {
  font-family: var(--ff-serif);
  font-size: 16px;
  font-style: italic;
  color: var(--slate-light);
  line-height: 1.8;
}

/* Mobile category select */
.menu-select-wrap {
  display: none;
  position: relative;
  margin-bottom: 40px;
}

.menu-select {
  display: block;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: #ffffff;
  border: 2px solid var(--gold);
  border-radius: 0;
  padding: 18px 50px 18px 24px;
  font-family: var(--ff-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--navy);
  cursor: pointer;
  position: relative;
  z-index: 10;
  opacity: 1;
  -webkit-border-radius: 0;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.menu-select:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 4px 20px rgba(0,28,88,0.12);
}

.menu-select-arrow {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px; height: 20px;
  color: var(--gold);
  pointer-events: none;
  z-index: 11;
}

/* Tab Nav - Desktop */
.menu-tabs {
  display: flex;
  gap: 0;
  background: var(--white);
  box-shadow: 0 4px 30px rgba(0,28,88,0.06);
  overflow-x: auto;
  scrollbar-width: none;
  margin-bottom: 0;
}
.menu-tabs::-webkit-scrollbar { display: none; }

.menu-tab {
  flex: 1;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--slate-light);
  padding: 22px 16px;
  border: none;
  background: none;
  cursor: pointer;
  position: relative;
  white-space: nowrap;
  transition: color 0.3s, background 0.3s;
  font-family: var(--ff-sans);
  text-align: center;
}

.menu-tab::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.35s var(--ease-out);
}

.menu-tab.active { color: var(--navy); background: rgba(184,150,106,0.04); }
.menu-tab.active::after { transform: scaleX(1); }
.menu-tab:hover { color: var(--navy); background: rgba(0,28,88,0.02); }

/* Panel heading */
.menu-panel-heading {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 10px;
}

.menu-panel-title {
  font-family: var(--ff-serif);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 300;
  color: var(--navy);
  white-space: nowrap;
}

.menu-panel-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(0,28,88,0.12), transparent);
}

/* Panel */
.menu-panel {
  display: none;
  padding-top: 50px;
  animation: panelIn 0.5s var(--ease-out);
}

.menu-panel.active { display: block; }

@keyframes panelIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Menu items */
.menu-items-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.menu-item {
  position: relative;
  transition: background 0.3s;
}

.menu-item-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 32px;
  border-bottom: 1px solid rgba(0,28,88,0.06);
  position: relative;
  transition: padding-left 0.3s var(--ease-out);
}

.menu-item:nth-child(odd) .menu-item-inner {
  border-right: 1px solid rgba(0,28,88,0.06);
}

.menu-item-inner::before {
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: 3px; height: 0;
  background: var(--gold);
  transition: height 0.4s var(--ease-out);
}

.menu-item:hover .menu-item-inner::before { height: 100%; }
.menu-item:hover .menu-item-inner { padding-left: 40px; background: rgba(184,150,106,0.03); }

.menu-item-body { flex: 1; }

.menu-item-name {
  font-family: var(--ff-serif);
  font-size: clamp(19px, 2vw, 24px);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 8px;
}

.menu-item-producer {
  font-size: 0.65em;
  font-style: italic;
  color: var(--slate-light);
  font-weight: 300;
}

.menu-item-desc {
  font-size: 13px;
  color: var(--slate-light);
  font-style: italic;
  line-height: 1.7;
  max-width: 380px;
}

.menu-item-price {
  font-family: var(--ff-serif);
  font-size: 24px;
  color: var(--gold-dark);
  font-weight: 500;
  flex-shrink: 0;
  white-space: nowrap;
}

.price-unit {
  font-size: 13px;
  color: var(--slate-light);
  font-weight: 400;
}

/* Featured item */
.menu-item.featured {
  grid-column: 1 / -1;
}

.menu-item.featured .menu-item-inner {
  padding: 36px 40px;
  border: 1px solid rgba(184,150,106,0.2);
  border-bottom: 1px solid rgba(184,150,106,0.2);
  background: linear-gradient(135deg, rgba(184,150,106,0.05) 0%, rgba(255,255,255,0.5) 60%);
}

.menu-item.featured .menu-item-name {
  font-size: clamp(22px, 2.5vw, 30px);
}

.menu-badge {
  display: inline-block;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--white);
  background: var(--gold);
  padding: 4px 12px;
  margin-bottom: 12px;
}

.menu-note {
  font-size: 12px;
  color: var(--slate-light);
  font-style: italic;
  margin-top: 40px;
  text-align: center;
  padding-bottom: 10px;
}

/* Oyster Grid */
.oyster-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-bottom: 50px;
}

.oyster-item {
  padding: 32px;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 170px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s, transform 0.3s;
}

.oyster-item::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(184,150,106,0.12) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s;
}

.oyster-item:hover { background: var(--navy-mid); }
.oyster-item:hover::before { opacity: 1; }

.oyster-item-top {}

.oyster-name {
  font-family: var(--ff-serif);
  font-size: 22px;
  color: var(--white);
  font-weight: 300;
  line-height: 1.2;
}

.oyster-origin {
  font-size: 10.5px;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.35);
  margin-top: 8px;
  font-style: italic;
}

.oyster-price {
  font-family: var(--ff-serif);
  font-size: 30px;
  color: var(--gold);
  font-weight: 300;
  margin-top: 20px;
}

/* Plateaux section */
.plateaux-section-label {
  font-family: var(--ff-serif);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 300;
  color: var(--navy);
  text-align: center;
  margin-bottom: 24px;
}

.plateaux-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-bottom: 40px;
}

.plateaux-card {
  position: relative;
  overflow: hidden;
  min-height: 340px;
  background: var(--navy-deep);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 44px;
}

.plateaux-card--alt {
  background: var(--navy-mid);
}

.plateaux-card-img {
  position: absolute; inset: 0;
  opacity: 0.25;
  transition: opacity 0.5s, transform 0.7s var(--ease-out);
}

.plateaux-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.plateaux-card:hover .plateaux-card-img {
  opacity: 0.4;
  transform: scale(1.05);
}

.plateaux-card-body { position: relative; z-index: 2; }

.plateaux-card-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.plateaux-card-name {
  font-family: var(--ff-serif);
  font-size: clamp(28px, 3vw, 38px);
  color: var(--white);
  font-weight: 300;
  line-height: 1;
  margin-bottom: 16px;
}

.plateaux-card-desc {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  font-style: italic;
  line-height: 1.9;
  margin-bottom: 20px;
  max-width: 340px;
}

.plateaux-card-price {
  font-family: var(--ff-serif);
  font-size: 44px;
  color: var(--gold-pale);
  font-weight: 300;
}

/* ============================================================
   BOOKING / FORM
   ============================================================ */
/* ---- Booking Section ---- */
.booking-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 700px;
}

/* Left: background image side */
.booking-bg {
  position: relative;
  overflow: hidden;
}
.booking-bg img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.35) saturate(0.8);
}
.booking-bg-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,11,40,0.7) 0%, rgba(0,28,88,0.4) 100%);
}

.booking-bg-content {
  position: relative; z-index: 2;
  padding: 80px 70px;
  display: flex; flex-direction: column;
  justify-content: center;
  height: 100%;
}

.booking-bg-eyebrow {
  font-size: 10px; font-weight: 700;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex; align-items: center; gap: 14px;
}
.booking-bg-eyebrow::after {
  content: ''; width: 40px; height: 1px;
  background: rgba(184,150,106,0.4);
}

.booking-bg-title {
  font-family: var(--ff-serif);
  font-size: clamp(38px, 4vw, 56px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}
.booking-bg-title em { font-style: italic; color: var(--gold-pale); }

.booking-bg-text {
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  line-height: 1.9;
  max-width: 400px;
  margin-bottom: 40px;
}

.booking-bg-details {
  display: flex; flex-direction: column; gap: 20px;
  margin-bottom: 40px;
}

.booking-bg-detail {
  display: flex; align-items: center; gap: 16px;
}
.booking-bg-detail svg { stroke: var(--gold); flex-shrink: 0; opacity: 0.7; }
.booking-bg-detail-label {
  display: block;
  font-size: 9px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 2px;
}
.booking-bg-detail-value {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
}

.booking-bg-quote {
  font-family: var(--ff-serif);
  font-size: 16px; font-style: italic;
  color: rgba(255,255,255,0.3);
  padding-left: 20px;
  border-left: 2px solid rgba(184,150,106,0.3);
  line-height: 1.7;
}

/* Right: form side */
.booking-form-wrap {
  background: var(--white);
  padding: 60px 56px;
  display: flex; flex-direction: column;
  justify-content: center;
}

.booking-form-header { margin-bottom: 36px; }

.booking-form-icon {
  width: 56px; height: 56px;
  border: 1px solid rgba(0,28,88,0.06);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  background: var(--cream-light);
}

.booking-form-title {
  font-family: var(--ff-serif);
  font-size: 36px; color: var(--navy);
  margin-bottom: 8px; font-weight: 300;
}

.booking-form-sub {
  font-size: 13px; color: var(--slate-light);
  letter-spacing: 0.3px;
}

.fg { margin-bottom: 22px; }

.fg-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.fg label {
  display: block; font-size: 9.5px;
  font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--slate);
  margin-bottom: 10px;
}

.fg input, .fg textarea, .fg select {
  width: 100%; border: none;
  border-bottom: 1px solid rgba(0,28,88,0.1);
  padding: 12px 0; font-family: var(--ff-sans);
  font-size: 14px; color: var(--text-dark);
  background: transparent; outline: none;
  transition: border-color 0.35s;
  -webkit-appearance: none;
  appearance: none;
}

.fg input:focus, .fg textarea:focus, .fg select:focus {
  border-color: var(--gold);
}
.fg textarea { resize: none; min-height: 80px; }

.fg input[type="date"] {
  color: var(--text-dark);
}
.fg input[type="date"]::-webkit-calendar-picker-indicator {
  opacity: 0.4;
  cursor: pointer;
}

.form-check {
  display: flex; align-items: flex-start;
  gap: 12px; margin: 16px 0 28px;
}

.form-check input {
  width: 16px; height: 16px;
  margin-top: 2px; accent-color: var(--gold);
  flex-shrink: 0;
  cursor: pointer;
}

.form-check label {
  font-size: 12px; color: var(--slate);
  line-height: 1.6; text-transform: none;
  letter-spacing: 0; font-weight: 300;
}
.form-check label a {
  color: var(--gold-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.3s;
}
.form-check label a:hover { color: var(--gold); }

.btn-submit {
  width: 100%; padding: 18px 28px;
  border: none; background: var(--navy);
  color: var(--white); font-family: var(--ff-sans);
  font-size: 10px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  cursor: pointer; position: relative;
  overflow: hidden; transition: background 0.3s;
  display: flex; align-items: center;
  justify-content: center; gap: 10px;
  border-radius: 4px;
}

.btn-submit::before {
  content: ''; position: absolute; inset: 0;
  background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.45s var(--ease-out);
  border-radius: 4px;
}

.btn-submit:hover::before { transform: scaleX(1); }
.btn-submit span { position: relative; z-index: 1; }
.btn-submit svg { position: relative; z-index: 1; transition: transform 0.3s; }
.btn-submit:hover svg { transform: translateX(4px); }

.booking-form-alt {
  text-align: center;
  margin-top: 24px;
  font-size: 12px;
  color: var(--slate-light);
}
.booking-form-alt a {
  color: var(--gold-dark);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.3s;
}
.booking-form-alt a:hover { color: var(--gold); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi-section { padding: 130px 70px; background: var(--cream-light); }
.testi-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 70px; }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.testi-card { background: var(--white); padding: 0; position: relative; overflow: hidden; transition: transform 0.45s var(--ease-out), box-shadow 0.45s; }
.testi-card:hover { transform: translateY(-8px); box-shadow: 0 28px 80px rgba(0,28,88,0.1); }
.testi-photo { height: 220px; overflow: hidden; }
.testi-photo img { transition: transform 0.7s var(--ease-out); }
.testi-card:hover .testi-photo img { transform: scale(1.06); }
.testi-body { padding: 36px 32px 40px; }

.testi-stars { display: flex; gap: 3px; margin-bottom: 16px; }
.star { width: 10px; height: 10px; background: var(--gold); clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%); }

.testi-text { font-family: var(--ff-serif); font-size: 16px; font-style: italic; color: var(--slate); line-height: 1.85; margin-bottom: 24px; }
.testi-author { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--navy); }
.testi-date { font-size: 10px; color: var(--gold); margin-top: 4px; }

/* ============================================================
   STATS
   ============================================================ */
.stats-section { display: grid; grid-template-columns: repeat(3, 1fr); background: var(--navy); }
.stat-block { padding: 90px 50px; text-align: center; border-right: 1px solid rgba(255,255,255,0.05); position: relative; overflow: hidden; }
.stat-block:last-child { border-right: none; }
.stat-block::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 0; height: 2px; background: var(--gold); transition: width 0.6s var(--ease-out); }
.stat-block:hover::after { width: 60%; }
.stat-num { font-family: var(--ff-serif); font-size: clamp(64px, 7vw, 110px); font-weight: 300; color: var(--white); line-height: 1; display: block; }
.stat-suffix { font-size: 0.45em; color: var(--gold); vertical-align: super; }
.stat-lbl { font-size: 9.5px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-top: 16px; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-section { padding: 0; overflow: hidden; background: var(--cream-light); }

/* Horizontal scroll container */
.gallery-scroll-wrap { position: relative; padding: 0 0 0 70px; }

.gallery-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x proximity;
  padding: 20px 70px 40px 0;
  -ms-overflow-style: none;
  scrollbar-width: none;
  cursor: grab;
  -webkit-overflow-scrolling: touch;
}
.gallery-scroll:not(.dragging) { scroll-behavior: smooth; }
.gallery-scroll.dragging { cursor: grabbing; scroll-snap-type: none; scroll-behavior: auto; }
.gallery-scroll::-webkit-scrollbar { display: none; }

/* Gallery items */
.g-scroll-item {
  flex: 0 0 380px;
  height: 460px;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: var(--navy-deep);
  scroll-snap-align: start;
  transition: flex 0.5s var(--ease-out);
}
.g-scroll-item.tall { height: 460px; margin-top: 0; }

.g-scroll-item img {
  transition: transform 0.8s var(--ease-out), filter 0.6s;
  filter: brightness(0.85) saturate(0.9);
}
.g-scroll-item:hover img {
  transform: scale(1.08);
  filter: brightness(0.95) saturate(1.1);
}

.g-scroll-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,11,40,0.55) 0%, rgba(0,11,40,0.1) 40%, transparent 70%);
  transition: opacity 0.4s;
}

.g-scroll-caption {
  position: absolute;
  bottom: 28px; left: 28px;
  font-family: var(--ff-serif);
  font-size: 22px; font-weight: 300;
  color: var(--white);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s, transform 0.5s var(--ease-out);
  z-index: 2;
}
.g-scroll-item:hover .g-scroll-caption { opacity: 1; transform: translateY(0); }

/* Navigation arrows */
.gallery-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(0,28,88,0.12);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.35s var(--ease-out);
  box-shadow: 0 4px 20px rgba(0,28,88,0.08);
}
.gallery-arrow:hover {
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 8px 30px rgba(184,150,106,0.3);
}
.gallery-arrow svg { width: 20px; height: 20px; stroke: var(--navy); transition: stroke 0.3s; }
.gallery-arrow:hover svg { stroke: var(--white); }
.gallery-arrow-left { left: 30px; }
.gallery-arrow-right { right: 30px; }

/* Progress bar */
.gallery-progress {
  width: 200px; height: 2px;
  background: rgba(0,28,88,0.08);
  margin: 0 auto;
  border-radius: 2px;
  overflow: hidden;
}
.gallery-progress-bar {
  height: 100%;
  width: 30%;
  background: var(--gold);
  border-radius: 2px;
  transition: width 0.15s;
}

/* Scroll hint */
.gallery-hint {
  display: flex; align-items: center; justify-content: center;
  gap: 10px;
  padding: 24px 0 50px;
  font-size: 11px; font-weight: 600;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--slate-light);
}
.gallery-hint svg { animation: hintSlide 2s ease-in-out infinite; }
@keyframes hintSlide { 0%,100% { transform: translateX(0); opacity: 1; } 50% { transform: translateX(6px); opacity: 0.5; } }

/* ============================================================
   QUOTE
   ============================================================ */
.quote-band { background: var(--cream-off); padding: 130px 70px; position: relative; overflow: hidden; text-align: center; }
.quote-band::before { content: '\201C'; position: absolute; font-family: var(--ff-serif); font-size: 500px; line-height: 0.7; color: rgba(0,28,88,0.04); top: 0; left: 50%; transform: translateX(-50%); pointer-events: none; user-select: none; }
.quote-inner { max-width: 900px; margin: 0 auto; position: relative; z-index: 1; }
.quote-body { font-family: var(--ff-serif); font-size: clamp(22px, 3.5vw, 46px); font-weight: 300; font-style: italic; color: var(--navy); line-height: 1.45; margin-bottom: 36px; }
.quote-body strong { font-style: normal; color: var(--gold-dark); font-weight: 500; }
.quote-sig { display: flex; align-items: center; justify-content: center; gap: 16px; font-size: 10px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); }
.quote-sig::before, .quote-sig::after { content: '——'; opacity: 0.5; }

/* ============================================================
   LOCATION / VIDEO
   ============================================================ */
.location-section { display: grid; grid-template-columns: 1fr 1fr; min-height: 600px; }
.location-left { position: relative; overflow: hidden; cursor: pointer; }
.location-left img { transition: transform 0.8s var(--ease-out); }
.location-left:hover img { transform: scale(1.05); }
.location-left-overlay { position: absolute; inset: 0; background: rgba(0,11,40,0.4); display: flex; align-items: center; justify-content: center; transition: background 0.4s; }
.location-left:hover .location-left-overlay { background: rgba(0,11,40,0.3); }
.play-circle { width: 80px; height: 80px; border: 2px solid rgba(255,255,255,0.6); border-radius: 50%; display: flex; align-items: center; justify-content: center; position: relative; transition: transform 0.4s, border-color 0.3s, background 0.3s; }
.play-circle::before { content: ''; position: absolute; inset: -10px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.2); animation: playAura 2.5s ease-in-out infinite; }
@keyframes playAura { 0%,100% { transform: scale(1); opacity: 0.5; } 50% { transform: scale(1.12); opacity: 0.15; } }
.location-left:hover .play-circle { background: var(--gold); border-color: var(--gold); transform: scale(1.1); }
.play-triangle { width: 0; height: 0; border-top: 11px solid transparent; border-bottom: 11px solid transparent; border-left: 18px solid white; margin-left: 4px; }
.location-right { background: var(--navy); padding: 80px 70px; display: flex; flex-direction: column; justify-content: center; }
.location-title { font-family: var(--ff-serif); font-size: clamp(38px, 4vw, 60px); font-weight: 300; color: var(--white); line-height: 1; margin-bottom: 30px; }
.location-title em { font-style: italic; color: var(--gold-pale); }
.location-detail { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 24px; }
.location-detail-icon { width: 2px; height: 40px; background: var(--gold); flex-shrink: 0; margin-top: 4px; }
.location-detail-text p:first-child { font-size: 9.5px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.location-detail-text p:last-child { font-family: var(--ff-serif); font-size: 20px; color: rgba(255,255,255,0.8); line-height: 1.5; }

/* ============================================================
   BLOG LISTING
   ============================================================ */
/* Blog Grid Header */
.blog-grid-section { padding: 100px 70px; background: var(--cream-light); }
.blog-grid-header { text-align: center; max-width: 680px; margin: 0 auto 70px; }
.blog-grid-header-label { font-size: 10px; font-weight: 700; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; display: flex; align-items: center; justify-content: center; gap: 16px; }
.blog-grid-header-label::before,
.blog-grid-header-label::after { content: ''; width: 40px; height: 1px; background: var(--gold-pale); }
.blog-grid-header-title { font-family: var(--ff-serif); font-size: 44px; font-weight: 300; color: var(--navy); line-height: 1.2; margin-bottom: 16px; }
.blog-grid-header-sub { font-size: 14px; color: var(--slate); line-height: 1.8; }

/* Blog Grid */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; max-width: 1400px; margin: 0 auto; }

/* Featured Card (first) */
.blog-card.featured { grid-column: 1 / -1; display: grid; grid-template-columns: 1.1fr 1fr; }
.blog-card.featured .blog-card-img { height: 100%; min-height: 420px; }
.blog-card.featured .blog-card-body { padding: 50px 50px; display: flex; flex-direction: column; justify-content: center; }
.blog-card.featured .blog-card-title { font-size: 34px; margin-bottom: 18px; }
.blog-card.featured .blog-card-excerpt { font-size: 14.5px; margin-bottom: 28px; }
.blog-card.featured .blog-card-date { margin-bottom: 16px; }

/* Regular Cards */
.blog-card { background: var(--white); overflow: hidden; border-radius: 6px; transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out); box-shadow: 0 4px 24px rgba(0,28,88,0.04); }
.blog-card:hover { transform: translateY(-10px); box-shadow: 0 32px 80px rgba(0,28,88,0.1); }
.blog-card-img { height: 260px; overflow: hidden; position: relative; }
.blog-card-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,28,88,0.08) 0%, transparent 50%); pointer-events: none; }
.blog-card-img img { transition: transform 0.7s var(--ease-out); }
.blog-card:hover .blog-card-img img { transform: scale(1.08); }
.blog-card-body { padding: 30px 32px 34px; }
.blog-card-date { font-size: 10px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; display: flex; align-items: center; gap: 12px; }
.blog-card-date::after { content: ''; flex: 1; height: 1px; background: var(--gold-pale); max-width: 50px; }
.blog-card-title { font-family: var(--ff-serif); font-size: 24px; font-weight: 400; color: var(--navy); line-height: 1.3; margin-bottom: 14px; transition: color 0.3s; }
.blog-card:hover .blog-card-title { color: var(--gold-dark); }
.blog-card-excerpt { font-size: 13.5px; color: var(--slate); line-height: 1.85; margin-bottom: 24px; }
.blog-card-link { font-size: 10px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); display: inline-flex; align-items: center; gap: 8px; transition: gap 0.3s var(--ease-out), color 0.3s; }
.blog-card:hover .blog-card-link { color: var(--gold-dark); gap: 14px; }
.blog-card-link::after { content: '→'; transition: transform 0.3s; }
.blog-card:hover .blog-card-link::after { transform: translateX(4px); }

/* ============================================================
   BLOG POST SINGLE
   ============================================================ */
.blog-post-section { padding: 80px 70px 100px; background: var(--cream-light); }
.blog-post-inner { max-width: 780px; margin: 0 auto; position: relative; }

/* Decorative side line */
.blog-post-inner::before {
  content: '';
  position: absolute;
  left: -60px; top: 0; bottom: 80px;
  width: 1px;
  background: linear-gradient(to bottom, var(--gold-pale), transparent);
  display: none;
}
@media (min-width: 1100px) {
  .blog-post-inner::before { display: block; }
}

.blog-post-meta {
  display: flex; align-items: center; gap: 20px; margin-bottom: 36px;
  padding-bottom: 28px; border-bottom: 1px solid rgba(0,28,88,0.06);
}
.blog-post-meta-date { font-size: 10px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); }
.blog-post-meta-cat { font-size: 10px; font-weight: 600; letter-spacing: 1.5px; color: var(--slate-light); text-transform: uppercase; background: var(--cream-off); padding: 5px 14px; border-radius: 3px; }
.blog-post-meta-sep { width: 30px; height: 1px; background: var(--gold); }
.blog-post-meta-reading { font-size: 11px; color: var(--slate-light); margin-left: auto; letter-spacing: 0.5px; }

.blog-post-featured-img {
  margin-bottom: 56px; overflow: hidden;
  max-height: 520px; border-radius: 6px;
  position: relative;
}
.blog-post-featured-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,28,88,0.06) 0%, transparent 40%);
  pointer-events: none;
}

/* Drop cap */
.blog-post-content > p:first-of-type::first-letter {
  font-family: var(--ff-serif);
  font-size: 3.6em;
  float: left;
  line-height: 0.8;
  margin: 6px 14px 0 0;
  color: var(--navy);
  font-weight: 500;
}

.blog-post-content h2 {
  font-family: var(--ff-serif);
  font-size: 30px; font-weight: 400;
  color: var(--navy); margin: 56px 0 22px;
  line-height: 1.25;
  position: relative;
  padding-left: 22px;
}
.blog-post-content h2::before {
  content: '';
  position: absolute; left: 0; top: 6px;
  width: 3px; height: 24px;
  background: var(--gold);
  border-radius: 2px;
}

.blog-post-content p {
  font-size: 15.5px; line-height: 2;
  color: var(--text-body); margin-bottom: 22px;
}

.blog-post-content blockquote {
  border-left: 3px solid var(--gold);
  padding: 28px 36px; margin: 48px 0;
  background: var(--cream-off);
  border-radius: 0 6px 6px 0;
  position: relative;
}
.blog-post-content blockquote::before {
  content: '\201C';
  font-family: var(--ff-serif);
  font-size: 80px;
  color: var(--gold-pale);
  position: absolute;
  top: -10px; left: 20px;
  line-height: 1;
  pointer-events: none;
}

.blog-post-content blockquote p {
  font-family: var(--ff-serif);
  font-size: 21px; font-style: italic;
  color: var(--navy); line-height: 1.65;
  margin-bottom: 0;
  position: relative;
}

/* Divider between article and back link */
.blog-post-divider {
  width: 60px; height: 1px;
  background: var(--gold-pale);
  margin: 60px 0 0;
}

.blog-post-back {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 10px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--gold); margin-top: 32px;
  padding: 14px 0;
  transition: gap 0.3s var(--ease-out), color 0.3s;
}
.blog-post-back:hover { color: var(--gold-dark); gap: 18px; }
.blog-post-back::before { content: '←'; }

/* Related Posts */
.blog-related { padding: 80px 70px 100px; background: var(--cream); }
.blog-related-header { text-align: center; margin-bottom: 50px; }
.blog-related-label { font-size: 10px; font-weight: 700; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.blog-related-title { font-family: var(--ff-serif); font-size: 36px; font-weight: 300; color: var(--navy); }
.blog-related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; max-width: 1200px; margin: 0 auto; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid { padding: 100px 70px; background: var(--cream-light); }
.contact-inner { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: start; }

.contact-info-block { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 32px; }
.contact-info-icon { width: 2px; height: 40px; background: var(--gold); flex-shrink: 0; margin-top: 4px; }
.contact-info-label { font-size: 9.5px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.contact-info-value { font-family: var(--ff-serif); font-size: 20px; color: var(--navy); line-height: 1.5; }
.contact-info-value a { color: var(--navy); transition: color 0.3s; }
.contact-info-value a:hover { color: var(--gold); }

.contact-socials { display: flex; gap: 12px; margin-top: 40px; }
.contact-social { width: 48px; height: 48px; border: 1px solid rgba(0,28,88,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: all 0.3s; }
.contact-social svg { width: 18px; height: 18px; fill: var(--navy); transition: fill 0.3s; }
.contact-social:hover { background: var(--gold); border-color: var(--gold); }
.contact-social:hover svg { fill: white; }

/* ============================================================
   HAMBURGER MENU (MOBILE)
   ============================================================ */
.hamburger {
  display: none;
  background: none; border: none;
  cursor: pointer; padding: 8px;
  z-index: 601;
}

.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: rgba(255,255,255,0.85);
  margin: 5px 0;
  transition: transform 0.35s var(--ease-out), opacity 0.25s, background 0.3s;
}

.site-header.scrolled .hamburger span,
.site-header.inner-page .hamburger span { background: var(--navy); }

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); background: var(--white); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); background: var(--white); }

.mobile-menu {
  position: fixed; top: 0; left: 0;
  width: 100vw; height: 100vh; height: 100dvh;
  background: var(--navy-deep);
  z-index: 550;
  display: flex; align-items: center;
  justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity 0.45s var(--ease-out), visibility 0.45s;
}

.mobile-menu.open { opacity: 1; visibility: visible; }

.mobile-menu-close {
  position: absolute; top: 28px; right: 20px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.25);
  cursor: pointer;
  color: var(--white); font-size: 32px; line-height: 1;
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  transition: background 0.3s, transform 0.3s;
  z-index: 600;
  -webkit-tap-highlight-color: transparent;
}
.mobile-menu-close:hover,
.mobile-menu-close:active { background: rgba(255,255,255,0.2); transform: rotate(90deg); }

.mobile-menu-inner { text-align: center; }

.mobile-menu-link {
  display: block;
  font-family: var(--ff-serif);
  font-size: 36px; font-weight: 300;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
  transition: color 0.3s, transform 0.3s;
}

.mobile-menu-link.active,
.mobile-menu-link:hover { color: var(--white); transform: translateX(6px); }

.mobile-menu-cta {
  display: inline-block;
  margin-top: 30px;
  font-size: 10px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--white);
  background: var(--gold);
  padding: 16px 40px;
  transition: background 0.3s;
}

.mobile-menu-cta:hover { background: var(--gold-dark); }

.mobile-menu-info {
  margin-top: 40px;
  font-family: var(--ff-serif);
  font-size: 14px; font-style: italic;
  color: rgba(255,255,255,0.3);
  line-height: 1.8;
}

.mobile-menu-info a {
  display: block; margin-top: 12px;
  color: var(--gold); font-style: normal;
  font-family: var(--ff-sans);
  font-size: 16px; font-weight: 600;
  letter-spacing: 1px;
}

/* ============================================================
   GALLERY HEADER + CAPTIONS
   ============================================================ */
.gallery-header {
  padding: 100px 70px 50px;
  background: var(--cream-light);
}


/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 100px; left: 30px;
  width: 44px; height: 44px;
  background: var(--navy);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex; align-items: center;
  justify-content: center;
  z-index: 400; cursor: pointer;
  opacity: 0; visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s, background 0.3s;
}

.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--gold); border-color: var(--gold); }
.back-to-top svg { width: 18px; height: 18px; stroke: var(--white); }

/* ============================================================
   SECTION DIVIDERS
   ============================================================ */
.section-divider {
  text-align: center;
  padding: 50px 0;
  background: var(--cream-light);
  position: relative;
}

.section-divider::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 200px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184,150,106,0.3), transparent);
}

.divider-diamond {
  display: inline-block;
  font-size: 8px;
  color: var(--gold);
  position: relative;
  z-index: 1;
  background: var(--cream-light);
  padding: 0 16px;
}

.quote-band::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 60px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* Menu full link */
.menu-full-link {
  text-align: center;
  margin-top: 60px;
}

.menu-full-link .cd-cta {
  color: var(--navy);
  border-color: rgba(0,28,88,0.15);
}

.menu-full-link .cd-cta svg { stroke: var(--navy); }
.menu-full-link .cd-cta:hover { color: var(--white); border-color: var(--gold); }
.menu-full-link .cd-cta:hover svg { stroke: var(--white); }

/* ============================================================
   PRIVACY PAGE
   ============================================================ */
.privacy-section { padding: 80px 70px 100px; background: var(--cream-light); }
.privacy-inner { max-width: 800px; margin: 0 auto; }

.privacy-updated {
  font-size: 11px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--slate-light);
  margin-bottom: 50px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(0,28,88,0.06);
}

.privacy-block { margin-bottom: 40px; }

.privacy-block h2 {
  font-family: var(--ff-serif);
  font-size: 28px; font-weight: 400;
  color: var(--navy);
  margin-bottom: 18px; line-height: 1.3;
  padding-left: 20px; position: relative;
}
.privacy-block h2::before {
  content: ''; position: absolute; left: 0; top: 6px;
  width: 3px; height: 22px;
  background: var(--gold); border-radius: 2px;
}

.privacy-block h3 {
  font-family: var(--ff-sans);
  font-size: 14px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  color: var(--navy); margin: 28px 0 12px;
}

.privacy-block p {
  font-size: 15px; line-height: 2;
  color: var(--text-body); margin-bottom: 14px;
}

.privacy-block a {
  color: var(--gold-dark); text-decoration: underline;
  text-underline-offset: 3px; transition: color 0.3s;
}
.privacy-block a:hover { color: var(--gold); }

.privacy-block ul { list-style: none; padding: 0; margin: 0 0 16px; }
.privacy-block ul li {
  font-size: 15px; line-height: 2;
  color: var(--text-body); padding-left: 22px;
  position: relative; margin-bottom: 6px;
}
.privacy-block ul li::before {
  content: ''; position: absolute; left: 0; top: 13px;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold-pale);
}

.privacy-info-box {
  background: var(--cream-off); padding: 24px 28px;
  border-radius: 6px; font-size: 15px; line-height: 2;
  color: var(--text-body); border-left: 3px solid var(--gold);
  margin-top: 12px;
}
.privacy-info-box strong { color: var(--navy); }

.privacy-divider {
  width: 80px; height: 1px;
  background: linear-gradient(90deg, var(--gold-pale), transparent);
  margin: 60px 0;
}

/* ============================================================
   COOKIE CONSENT — Banner + Preferences Modal (GDPR compliant)
   ============================================================ */
body.cookie-lock { overflow: hidden; }

.cookie-banner {
  position: fixed; bottom: 20px; left: 20px; right: 20px;
  z-index: 9000; background: var(--navy-deep);
  border: 1px solid rgba(184,150,106,0.18);
  border-radius: 14px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
  transform: translateY(calc(100% + 40px));
  opacity: 0;
  transition: transform 0.55s var(--ease-out), opacity 0.4s var(--ease-out);
  max-width: 1180px; margin: 0 auto;
}
.cookie-banner.visible { transform: translateY(0); opacity: 1; }

.cookie-banner-inner {
  display: grid; grid-template-columns: minmax(0,1fr) auto;
  gap: 36px; padding: 26px 32px; align-items: center;
}

.cookie-banner-title {
  font-family: var(--ff-serif); font-weight: 500;
  font-size: 22px; line-height: 1.15; color: var(--white);
  margin: 0 0 8px; letter-spacing: 0.2px;
}
.cookie-banner-text p {
  margin: 0; font-size: 13.5px; line-height: 1.7;
  color: rgba(255,255,255,0.72);
}
.cookie-banner-text a {
  color: var(--gold-bright); text-decoration: none;
  border-bottom: 1px solid rgba(184,150,106,0.4);
  padding-bottom: 1px; transition: border-color .2s ease;
}
.cookie-banner-text a:hover { border-bottom-color: var(--gold-bright); }

.cookie-banner-actions {
  display: flex; gap: 10px; flex-wrap: wrap; justify-content: flex-end;
}

/* Shared button styles — equal visual prominence for accept/reject */
.cookie-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 22px; font-size: 11px; font-weight: 700;
  letter-spacing: 1.8px; text-transform: uppercase;
  border-radius: 999px; border: 1px solid transparent; cursor: pointer;
  font-family: var(--ff-sans); line-height: 1;
  transition: background .22s ease, color .22s ease, border-color .22s ease, transform .18s ease, box-shadow .22s ease;
  min-height: 42px;
}
.cookie-btn-primary { background: var(--gold); color: var(--white); border-color: var(--gold); }
.cookie-btn-primary:hover { background: var(--gold-bright); border-color: var(--gold-bright);
  transform: translateY(-1px); box-shadow: 0 8px 22px rgba(184,150,106,0.32); }
.cookie-btn-outline { background: transparent; color: var(--white);
  border-color: rgba(255,255,255,0.28); }
.cookie-btn-outline:hover { background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.55); }
.cookie-btn-ghost { background: transparent; color: rgba(255,255,255,0.72);
  border-color: transparent; padding: 12px 14px; }
.cookie-btn-ghost:hover { color: var(--white); }

/* ------ Preferences modal ------ */
.cookie-prefs {
  position: fixed; inset: 0; z-index: 9500;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .3s var(--ease-out);
  padding: 24px;
}
.cookie-prefs.visible { opacity: 1; pointer-events: auto; }
.cookie-prefs-backdrop {
  position: absolute; inset: 0; background: rgba(0,11,40,0.65);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.cookie-prefs-dialog {
  position: relative; background: var(--white);
  width: 100%; max-width: 640px; max-height: 88vh;
  border-radius: 16px; overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: 0 30px 80px rgba(0,11,40,0.35);
  transform: translateY(18px) scale(0.98);
  transition: transform .35s var(--ease-out);
}
.cookie-prefs.visible .cookie-prefs-dialog { transform: translateY(0) scale(1); }

.cookie-prefs-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 28px; border-bottom: 1px solid rgba(0,28,88,0.08);
  flex-shrink: 0;
}
.cookie-prefs-head h2 {
  font-family: var(--ff-serif); font-weight: 500; font-size: 26px;
  color: var(--navy); margin: 0; line-height: 1.1;
}
.cookie-prefs-close {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(0,28,88,0.05); border: none; cursor: pointer;
  color: var(--navy); display: grid; place-items: center;
  transition: background .2s ease;
}
.cookie-prefs-close:hover { background: rgba(0,28,88,0.1); }
.cookie-prefs-close svg { width: 16px; height: 16px; }

.cookie-prefs-intro {
  padding: 20px 28px 16px; border-bottom: 1px solid rgba(0,28,88,0.06);
  flex-shrink: 0;
}
.cookie-prefs-intro p {
  margin: 0; color: var(--text-body); font-size: 14px; line-height: 1.7;
}
.cookie-prefs-intro a {
  color: var(--gold-dark); text-decoration: none;
  border-bottom: 1px solid rgba(138,104,64,0.3); padding-bottom: 1px;
}
.cookie-prefs-intro a:hover { border-bottom-color: var(--gold-dark); }

.cookie-prefs-list {
  padding: 8px 28px; overflow-y: auto; flex: 1;
}
.cookie-prefs-row {
  padding: 20px 0; border-bottom: 1px solid rgba(0,28,88,0.06);
}
.cookie-prefs-row:last-child { border-bottom: none; }
.cookie-prefs-row-head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; margin-bottom: 6px;
}
.cookie-prefs-row-title { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.cookie-prefs-row-title h3 {
  font-family: var(--ff-serif); font-weight: 500; font-size: 18px;
  color: var(--navy); margin: 0; line-height: 1.2;
}
.cookie-prefs-badge {
  display: inline-flex; padding: 3px 10px; border-radius: 999px;
  background: rgba(184,150,106,0.12); color: var(--gold-dark);
  font-size: 10px; font-weight: 700; letter-spacing: 1.2px;
  text-transform: uppercase;
}
.cookie-prefs-row p {
  margin: 0; color: var(--text-body); font-size: 13.5px; line-height: 1.65;
}

/* Toggle switch */
.cookie-toggle { position: relative; display: inline-block; width: 44px; height: 24px; flex: none; }
.cookie-toggle input { opacity: 0; width: 0; height: 0; }
.cookie-toggle-slider {
  position: absolute; inset: 0; background: rgba(0,28,88,0.2);
  border-radius: 999px; cursor: pointer;
  transition: background .25s ease;
}
.cookie-toggle-slider::before {
  content: ""; position: absolute; top: 3px; left: 3px;
  width: 18px; height: 18px; background: var(--white);
  border-radius: 50%; transition: transform .25s ease;
  box-shadow: 0 1px 3px rgba(0,0,0,0.25);
}
.cookie-toggle input:checked + .cookie-toggle-slider { background: var(--gold); }
.cookie-toggle input:checked + .cookie-toggle-slider::before { transform: translateX(20px); }
.cookie-toggle input:disabled + .cookie-toggle-slider { background: var(--gold); opacity: .5; cursor: not-allowed; }
.cookie-toggle input:focus-visible + .cookie-toggle-slider { outline: 2px solid var(--gold-dark); outline-offset: 2px; }

.cookie-prefs-actions {
  padding: 20px 28px; border-top: 1px solid rgba(0,28,88,0.08);
  display: flex; gap: 10px; justify-content: flex-end; flex-wrap: wrap;
  background: var(--cream-light);
  flex-shrink: 0;
}
/* Re-skin buttons for light modal context */
.cookie-prefs-dialog .cookie-btn-outline {
  color: var(--navy); border-color: rgba(0,28,88,0.2);
}
.cookie-prefs-dialog .cookie-btn-outline:hover {
  background: rgba(0,28,88,0.04); border-color: var(--navy);
}

.cookie-manage-sep { color: inherit; opacity: .55; }

@media (max-width: 860px) {
  .cookie-banner { left: 12px; right: 12px; bottom: 12px; border-radius: 12px; }
  .cookie-banner-inner { grid-template-columns: 1fr; padding: 22px 22px; gap: 18px; }
  .cookie-banner-actions { justify-content: stretch; }
  .cookie-banner-actions .cookie-btn { flex: 1 1 auto; }
  .cookie-banner-title { font-size: 20px; }
  .cookie-prefs-head h2 { font-size: 22px; }
  .cookie-prefs-intro, .cookie-prefs-list, .cookie-prefs-actions,
  .cookie-prefs-head { padding-left: 20px; padding-right: 20px; }
  .cookie-prefs-actions { justify-content: stretch; }
  .cookie-prefs-actions .cookie-btn { flex: 1 1 auto; }
}
@media (max-width: 480px) {
  .cookie-btn-ghost { order: 3; flex-basis: 100%; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
  .footer-main { grid-template-columns: 1fr 1fr; gap: 40px; }
  .menu-items-grid { grid-template-columns: 1fr; }
  .menu-item:nth-child(odd) .menu-item-inner { border-right: none; }
  .blog-card.featured { grid-template-columns: 1fr; }
  .blog-card.featured .blog-card-img { min-height: 300px; }
  .blog-card.featured .blog-card-body { padding: 36px; }
  .blog-card.featured .blog-card-title { font-size: 28px; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-related-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-inner { grid-template-columns: 1fr; gap: 60px; }
}

@media (max-width: 1024px) {
  .story-section { grid-template-columns: 1fr; }
  .story-right { padding: 70px 50px; }
  .showcase-section { grid-template-columns: 1fr; }
  .showcase-side-img { height: 500px; position: relative; }
  .sc-img-frame { position: absolute; inset: 0; }
  .testi-grid { grid-template-columns: 1fr 1fr; }
  .location-section { grid-template-columns: 1fr; }
  .booking-section { grid-template-columns: 1fr; }
  .booking-bg { min-height: 500px; }
  .booking-bg-content { padding: 60px 50px; }
  .oyster-grid { grid-template-columns: 1fr 1fr; }
  .plateaux-grid { grid-template-columns: 1fr; }
  .stats-section { grid-template-columns: 1fr; }
  .stat-block { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.05); }
}

@media (max-width: 768px) {
  .privacy-section { padding: 60px 24px 80px; }
  .privacy-block h2 { font-size: 24px; }
  body { cursor: auto; }
  .cursor, .cursor-ring { display: none; }
  .loader-logo { font-size: 28px; letter-spacing: 4px; text-align: center; padding: 0 16px; }
  .loader-sub { letter-spacing: 4px; text-align: center; }
  .site-header { padding: 0 24px; }
  .header-nav { display: none; }
  .hamburger { display: block; }
  .gallery-header { padding: 60px 24px 30px; }
  .back-to-top { bottom: 80px; left: 20px; width: 38px; height: 38px; }
  .hero-content { padding: 0 24px 80px; }
  .hero-scroll-indicator { right: 24px; }
  .hero-meta { flex-direction: column; gap: 24px; }
  .open-section { padding: 100px 24px; }
  .open-pillar-div { display: none; }
  .open-pillar-num { font-size: 44px; }
  .reopen-band { flex-direction: column; gap: 6px; padding: 18px 24px; }
  .story-features { grid-template-columns: 1fr; }
  .showcase-side-list { padding: 60px 24px; }
  .page-hero-content { padding: 0 24px 40px; }
  .page-hero { min-height: 300px; }
  .menu-section { padding: 60px 0 60px; }
  .menu-section--home { padding: 0; }
  .menu-body { padding: 0 24px 60px; }
  .menu-hero { height: 280px; }
  .menu-tabs-wrap { margin-top: -20px; }
  .menu-section--home .menu-tabs { display: flex; flex-wrap: nowrap; }
  .menu-section--home .menu-tab { padding: 14px 14px; font-size: 8px; letter-spacing: 1.5px; flex: 0 0 auto; }
  .menu-container { padding: 0 20px; }
  .menu-header { flex-direction: column; align-items: flex-start; gap: 16px; margin-bottom: 36px; }
  .menu-header-right { flex: none; text-align: left; }
  .menu-header-right p { font-size: 14px; }
  .menu-tabs { display: none; }
  .menu-select-wrap { display: block; }
  .menu-panel { padding-top: 32px; }
  .menu-panel-heading { margin-bottom: 6px; }
  .menu-panel-title { font-size: 22px; }
  .menu-items-grid { grid-template-columns: 1fr; }
  .menu-item-inner { padding: 22px 16px; gap: 16px; }
  .menu-item:nth-child(odd) .menu-item-inner { border-right: none; }
  .menu-item:hover .menu-item-inner { padding-left: 24px; }
  .menu-item.featured .menu-item-inner { padding: 24px 20px; }
  .menu-item-name { font-size: 18px; }
  .menu-item-desc { font-size: 12.5px; }
  .menu-item-price { font-size: 20px; }
  .oyster-grid { grid-template-columns: 1fr 1fr; }
  .oyster-item { min-height: 140px; padding: 24px; }
  .oyster-name { font-size: 18px; }
  .oyster-price { font-size: 24px; }
  .plateaux-grid { grid-template-columns: 1fr; }
  .plateaux-card { min-height: 280px; padding: 30px; }
  .plateaux-card-name { font-size: 28px; }
  .plateaux-card-price { font-size: 34px; }
  .plateaux-section-label { font-size: 20px; }
  .testi-section { padding: 80px 24px; }
  .testi-header { flex-direction: column; gap: 12px; }
  .testi-grid { grid-template-columns: 1fr; }
  .footer-cta { padding: 50px 24px; }
  .footer-main { grid-template-columns: 1fr; gap: 36px; padding: 50px 24px 40px; }
  .footer-bottom-bar { flex-direction: column; gap: 12px; padding: 24px 24px; text-align: center; }
  .footer-bottom-links { justify-content: center; }
  .footer-cta-btns { flex-direction: column; }
  .footer-cta-btn { width: 100%; justify-content: center; }
  .booking-bg-content { padding: 50px 24px; }
  .booking-bg-title { font-size: 36px; }
  .booking-form-wrap { padding: 40px 24px; }
  .booking-form-icon { width: 48px; height: 48px; }
  .booking-form-title { font-size: 30px; }
  .location-right { padding: 60px 24px; }
  .fg-row { grid-template-columns: 1fr; }
  .oyster-grid { grid-template-columns: 1fr; }
  .gallery-scroll-wrap { padding-left: 24px; }
  .gallery-scroll { padding-right: 24px; }
  .g-scroll-item { flex: 0 0 300px; height: 380px; }
  .g-scroll-item.tall { height: 380px; margin-top: 0; }
  .gallery-arrow { display: none; }
  .gallery-hint { padding: 20px 0 40px; }
  .quote-band { padding: 90px 24px; }
  .blog-grid-section { padding: 80px 24px; }
  .blog-grid-header-title { font-size: 32px; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-post-section { padding: 60px 24px 80px; }
  .blog-related { padding: 60px 24px 80px; }
  .blog-related-grid { grid-template-columns: 1fr; }
  .blog-post-content h2 { font-size: 26px; }
  .contact-grid { padding: 80px 24px; }
  .site-footer { padding: 0; }
}

@media (max-width: 480px) {
  .oyster-grid { grid-template-columns: 1fr; }
  .oyster-item { min-height: auto; padding: 20px; flex-direction: row; align-items: center; justify-content: space-between; }
  .oyster-price { margin-top: 0; font-size: 22px; }
  .menu-item-inner { flex-direction: column; gap: 10px; }
  .menu-item-price { align-self: flex-start; }
}

/* ============================================================
   AI CHATBOT
   ============================================================ */
#vdm-chat {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9500;
  font-family: var(--ff-sans);
  display: block !important;
  visibility: visible !important;
  pointer-events: auto;
}

/* ── FAB Toggle ─────────────────────────────────────────────── */
.vdm-fab {
  width: 62px; height: 62px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, var(--navy) 0%, #002a7a 100%);
  color: var(--gold);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(0,11,40,0.4), 0 2px 8px rgba(0,0,0,0.15);
  transition: transform 0.35s cubic-bezier(.34,1.56,.64,1), background 0.3s, box-shadow 0.3s;
  position: relative;
  z-index: 9510;
}

.vdm-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 44px rgba(0,11,40,0.5), 0 4px 12px rgba(0,0,0,0.2);
}

.vdm-fab svg { width: 26px; height: 26px; }
.vdm-fab-ico { pointer-events: none; }

.vdm-fab .vdm-ico-chat { display: block; }
.vdm-fab .vdm-ico-x { display: none; }
#vdm-chat.open .vdm-fab .vdm-ico-chat { display: none; }
#vdm-chat.open .vdm-fab .vdm-ico-x { display: block; width: 22px; height: 22px; }
#vdm-chat.open .vdm-fab {
  background: linear-gradient(135deg, var(--gold) 0%, #c9a96e 100%);
  color: var(--white);
}

/* Ping pulse */
.vdm-fab-ping {
  position: absolute; inset: -5px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  opacity: 0;
  animation: vdmPing 3s ease-in-out infinite;
  pointer-events: none;
}

#vdm-chat.open .vdm-fab-ping { display: none; }

@keyframes vdmPing {
  0%, 100% { opacity: 0; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

/* ── Chat Window ────────────────────────────────────────────── */
.vdm-window {
  position: absolute;
  bottom: 78px;
  right: 0;
  width: 400px;
  max-height: 600px;
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 25px 80px rgba(0,11,40,0.22), 0 0 0 1px rgba(0,28,88,0.05);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px) scale(0.96);
  transform-origin: bottom right;
  transition: opacity 0.4s cubic-bezier(.16,1,.3,1), transform 0.4s cubic-bezier(.16,1,.3,1), visibility 0.4s;
}

#vdm-chat.open .vdm-window {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

/* ── Header ─────────────────────────────────────────────────── */
.vdm-head {
  background: linear-gradient(135deg, var(--navy) 0%, #001040 100%);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}

.vdm-head-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.vdm-head-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(184,150,106,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  border: 1.5px solid rgba(184,150,106,0.25);
}

.vdm-head-avatar img {
  width: 28px; height: 28px;
  object-fit: contain;
}

.vdm-head-name {
  font-family: var(--ff-serif);
  font-size: 18px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.3px;
}

.vdm-head-sub {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 2px;
}

.vdm-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #4ade80;
  display: inline-block;
  animation: vdmDotPulse 2s ease-in-out infinite;
}

@keyframes vdmDotPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.vdm-head-close {
  width: 34px; height: 34px;
  border: none;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, color 0.3s;
}

.vdm-head-close:hover { background: rgba(255,255,255,0.18); color: var(--white); }
.vdm-head-close svg { width: 16px; height: 16px; }

/* ── Messages Body ──────────────────────────────────────────── */
.vdm-body {
  flex: 1;
  overflow-y: auto;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 320px;
  max-height: 400px;
  background: linear-gradient(180deg, #faf9f7 0%, #ffffff 100%);
}

.vdm-body::-webkit-scrollbar { width: 4px; }
.vdm-body::-webkit-scrollbar-track { background: transparent; }
.vdm-body::-webkit-scrollbar-thumb { background: rgba(0,28,88,0.1); border-radius: 4px; }

/* ── Welcome ────────────────────────────────────────────────── */
.vdm-welcome {
  text-align: center;
  padding: 12px 0 8px;
}

.vdm-welcome-wave {
  font-size: 36px;
  margin-bottom: 12px;
  animation: vdmWave 2s ease-in-out 1;
}

@keyframes vdmWave {
  0%, 100% { transform: rotate(0); }
  20% { transform: rotate(20deg); }
  40% { transform: rotate(-10deg); }
  60% { transform: rotate(14deg); }
  80% { transform: rotate(-4deg); }
}

.vdm-welcome-t {
  font-family: var(--ff-serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--navy);
  margin: 0 0 8px;
}

.vdm-welcome-p {
  font-size: 13px;
  color: var(--slate);
  line-height: 1.65;
  margin: 0;
  max-width: 300px;
  margin-inline: auto;
}

/* ── Suggestion Chips ───────────────────────────────────────── */
.vdm-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  transition: opacity 0.3s;
}

.vdm-chips button {
  font-family: var(--ff-sans);
  font-size: 12px;
  font-weight: 600;
  color: var(--navy);
  background: #ffffff;
  border: 1px solid rgba(0,28,88,0.1);
  padding: 9px 16px;
  border-radius: 22px;
  cursor: pointer;
  transition: all 0.25s;
  white-space: nowrap;
}

.vdm-chips button:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,28,88,0.15);
}

/* ── Message Bubbles ────────────────────────────────────────── */
.vdm-msg {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  animation: vdmMsgIn 0.35s cubic-bezier(.16,1,.3,1);
}

@keyframes vdmMsgIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.vdm-msg-user {
  flex-direction: row-reverse;
}

.vdm-ai-ava {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  margin-top: 2px;
}

.vdm-ai-ava img {
  width: 20px; height: 20px;
  object-fit: contain;
}

.vdm-bubble {
  padding: 12px 16px;
  border-radius: 18px;
  font-size: 13.5px;
  line-height: 1.65;
  max-width: 78%;
  word-wrap: break-word;
}

.vdm-msg-ai .vdm-bubble {
  background: #ffffff;
  color: var(--text-body);
  border: 1px solid rgba(0,28,88,0.06);
  border-bottom-left-radius: 6px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}

.vdm-msg-user .vdm-bubble {
  background: linear-gradient(135deg, var(--navy), #002266);
  color: var(--white);
  border-bottom-right-radius: 6px;
  box-shadow: 0 2px 10px rgba(0,28,88,0.15);
  margin-left: auto;
}

/* ── Streaming Cursor ───────────────────────────────────────── */
.vdm-cursor-blink {
  display: inline-block;
  width: 2px;
  height: 1em;
  background: var(--gold);
  margin-left: 2px;
  vertical-align: text-bottom;
  animation: vdmBlink 0.8s step-end infinite;
}

@keyframes vdmBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.vdm-stream-text strong { color: var(--navy); }
.vdm-stream-text a { color: var(--gold); font-weight: 600; text-decoration: none; }
.vdm-stream-text a:hover { text-decoration: underline; }

/* ── Typing Dots ────────────────────────────────────────────── */
.vdm-dots {
  display: flex;
  gap: 5px;
  padding: 4px 0;
  align-items: center;
}

.vdm-dots i {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(0,28,88,0.2);
  display: block;
  animation: vdmTyping 1.4s ease-in-out infinite;
}

.vdm-dots i:nth-child(2) { animation-delay: 0.2s; }
.vdm-dots i:nth-child(3) { animation-delay: 0.4s; }

@keyframes vdmTyping {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-6px); opacity: 1; }
}

/* ── Input Bar ──────────────────────────────────────────────── */
.vdm-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 18px;
  border-top: 1px solid rgba(0,28,88,0.06);
  background: #ffffff;
  flex-shrink: 0;
}

.vdm-input {
  flex: 1;
  border: 1.5px solid rgba(0,28,88,0.1);
  border-radius: 24px;
  padding: 12px 18px;
  font-family: var(--ff-sans);
  font-size: 14px;
  color: var(--navy);
  background: #faf9f7;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.vdm-input::placeholder { color: rgba(0,28,88,0.3); }

.vdm-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,150,106,0.12);
  background: #ffffff;
}

.vdm-send {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, var(--navy), #002266);
  color: var(--gold);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s;
}

.vdm-send:hover {
  background: linear-gradient(135deg, var(--gold), #c9a96e);
  color: var(--white);
  transform: scale(1.08);
  box-shadow: 0 4px 16px rgba(184,150,106,0.3);
}

.vdm-send svg { width: 18px; height: 18px; }

/* ── Mobile Scroll Lock ─────────────────────────────────────── */
body.vdm-noscroll {
  overflow: hidden;
  touch-action: none;
  -webkit-overflow-scrolling: none;
}

/* ── Mobile Fullscreen ──────────────────────────────────────── */
@media (max-width: 768px) {
  #vdm-chat { bottom: 20px; right: 20px; z-index: 99999; }

  .vdm-fab { width: 58px; height: 58px; }
  .vdm-fab svg { width: 24px; height: 24px; }

  #vdm-chat.open .vdm-fab { display: none; }

  .vdm-window {
    position: fixed;
    inset: 0;
    width: 100%;
    max-height: 100%;
    height: 100%;
    border-radius: 0;
    transform: translateY(100%);
    transform-origin: bottom center;
  }

  #vdm-chat.open .vdm-window {
    transform: translateY(0);
  }

  .vdm-body {
    min-height: 0;
    max-height: none;
    flex: 1;
  }

  .vdm-head {
    border-radius: 0;
    padding: 16px 20px;
    padding-top: max(16px, env(safe-area-inset-top));
  }

  .vdm-bar {
    padding-bottom: max(16px, env(safe-area-inset-bottom));
  }
}

/* ============================================================
   BLOG — MAGAZINE LAYOUT (v2)
   ============================================================ */
.blog-intro { max-width: 760px; margin: 0 auto; padding: 90px 70px 36px; text-align: center; background: var(--cream-light); }
.blog-intro-label { font-size: 10px; font-weight: 700; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; display: inline-flex; align-items: center; justify-content: center; gap: 16px; }
.blog-intro-label::before, .blog-intro-label::after { content: ''; width: 40px; height: 1px; background: var(--gold-pale); }
.blog-intro-title { font-family: var(--ff-serif); font-size: 52px; font-weight: 300; color: var(--navy); line-height: 1.12; margin-bottom: 22px; }
.blog-intro-title em { font-style: italic; color: var(--gold-dark); font-weight: 400; }
.blog-intro-sub { font-size: 15px; color: var(--slate); line-height: 1.9; max-width: 620px; margin: 0 auto; }

/* Category filter chips */
.blog-filters-wrap { background: var(--cream-light); padding: 0 70px 10px; }
.blog-filters { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; max-width: 900px; margin: 0 auto; }
.blog-filter-chip { font-family: inherit; font-size: 10.5px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; padding: 12px 22px; border: 1px solid var(--gold-pale); background: transparent; color: var(--navy); border-radius: 30px; cursor: pointer; transition: all 0.35s var(--ease-out); }
.blog-filter-chip:hover { border-color: var(--gold); color: var(--gold-dark); }
.blog-filter-chip.active { background: var(--navy); border-color: var(--navy); color: var(--cream-light); }

/* Outer section container */
.blog-magazine { background: var(--cream-light); padding: 50px 0 100px; }

/* Hero featured article */
.blog-hero-feature { max-width: 1400px; margin: 0 auto 56px; padding: 0 70px; }
.blog-hero-feature-inner { position: relative; display: block; overflow: hidden; border-radius: 8px; box-shadow: 0 22px 70px rgba(0,28,88,0.14); aspect-ratio: 16 / 8; }
.blog-hero-feature-inner img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--ease-out); }
.blog-hero-feature-inner:hover img { transform: scale(1.06); }
.blog-hero-feature-inner::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,20,60,0.92) 0%, rgba(0,20,60,0.45) 45%, rgba(0,20,60,0.1) 75%, transparent 100%); }
.blog-hero-feature-content { position: absolute; left: 0; right: 0; bottom: 0; padding: 60px 64px 52px; color: var(--cream-light); z-index: 2; max-width: 760px; }
.blog-hero-feature-tag { display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); padding: 6px 14px; border: 1px solid var(--gold); border-radius: 3px; margin-bottom: 22px; background: rgba(0,0,0,0.15); backdrop-filter: blur(4px); }
.blog-hero-feature-title { font-family: var(--ff-serif); font-size: 54px; font-weight: 300; line-height: 1.08; margin-bottom: 18px; color: #fff; }
.blog-hero-feature-excerpt { font-size: 15px; line-height: 1.75; opacity: 0.92; margin-bottom: 22px; max-width: 580px; }
.blog-hero-feature-meta { display: flex; align-items: center; gap: 14px; font-size: 10.5px; letter-spacing: 2px; text-transform: uppercase; opacity: 0.85; }
.blog-hero-feature-meta .dot { width: 3px; height: 3px; background: var(--gold); border-radius: 50%; }
.blog-hero-feature-cta { display: inline-flex; align-items: center; gap: 10px; margin-top: 26px; font-size: 11px; letter-spacing: 3px; text-transform: uppercase; font-weight: 700; color: var(--gold); transition: gap 0.35s var(--ease-out), color 0.3s; }
.blog-hero-feature-inner:hover .blog-hero-feature-cta { gap: 18px; color: #fff; }
.blog-hero-feature-cta::after { content: '→'; font-size: 14px; }

/* Duo grid — 2 large side by side */
.blog-duo { max-width: 1400px; margin: 0 auto 30px; padding: 0 70px; display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.blog-duo .blog-card-img { height: 340px; }
.blog-duo .blog-card-title { font-size: 28px; }

/* Section rule (divider with label) */
.blog-section-rule { max-width: 1400px; margin: 56px auto 36px; padding: 0 70px; display: flex; align-items: center; gap: 22px; }
.blog-section-rule-line { flex: 1; height: 1px; background: var(--gold-pale); }
.blog-section-rule-label { font-size: 10px; font-weight: 700; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); white-space: nowrap; }

/* Grid of articles */
.blog-grid-v2 { max-width: 1400px; margin: 0 auto; padding: 0 70px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.blog-grid-v2 .blog-card-img { height: 250px; }

/* Card enhancements */
.blog-card-img { position: relative; }
.blog-card-cat { position: absolute; top: 16px; left: 16px; z-index: 2; background: rgba(250,249,247,0.95); color: var(--navy); font-size: 9px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 7px 12px; border-radius: 3px; backdrop-filter: blur(8px); }
.blog-card-meta-row { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; flex-wrap: wrap; }
.blog-card-meta-row .blog-card-date { margin-bottom: 0; flex: 0 0 auto; }
.blog-card-meta-row .blog-card-date::after { display: none; }
.blog-card-reading { font-size: 10px; color: var(--slate-light); letter-spacing: 1.5px; text-transform: uppercase; display: inline-flex; align-items: center; gap: 6px; }
.blog-card-reading::before { content: ''; width: 4px; height: 4px; background: var(--gold); border-radius: 50%; }

/* Newsletter band */
.blog-newsletter { background: var(--navy); color: var(--cream-light); padding: 100px 70px; position: relative; overflow: hidden; }
.blog-newsletter::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 20% 30%, rgba(203,165,93,0.18), transparent 60%), radial-gradient(circle at 80% 70%, rgba(203,165,93,0.1), transparent 55%); pointer-events: none; }
.blog-newsletter-inner { position: relative; max-width: 680px; margin: 0 auto; text-align: center; z-index: 2; }
.blog-newsletter-label { font-size: 10px; font-weight: 700; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; display: inline-flex; align-items: center; gap: 16px; }
.blog-newsletter-label::before, .blog-newsletter-label::after { content: ''; width: 40px; height: 1px; background: rgba(203,165,93,0.5); }
.blog-newsletter-title { font-family: var(--ff-serif); font-size: 40px; font-weight: 300; color: #fff; line-height: 1.2; margin-bottom: 16px; }
.blog-newsletter-title em { font-style: italic; color: var(--gold); }
.blog-newsletter-sub { font-size: 14px; line-height: 1.85; opacity: 0.82; margin-bottom: 34px; max-width: 520px; margin-left: auto; margin-right: auto; }
.blog-newsletter-form { display: flex; gap: 10px; max-width: 500px; margin: 0 auto; }
.blog-newsletter-input { flex: 1; padding: 16px 22px; border: 1px solid rgba(250,249,247,0.22); background: rgba(250,249,247,0.04); color: var(--cream-light); font-family: inherit; font-size: 13px; border-radius: 3px; letter-spacing: 0.3px; transition: border-color 0.3s, background 0.3s; }
.blog-newsletter-input::placeholder { color: rgba(250,249,247,0.45); }
.blog-newsletter-input:focus { outline: none; border-color: var(--gold); background: rgba(250,249,247,0.07); }
.blog-newsletter-btn { padding: 16px 28px; background: var(--gold); border: 1px solid var(--gold); color: var(--navy); font-family: inherit; font-size: 10.5px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; cursor: pointer; border-radius: 3px; transition: all 0.3s var(--ease-out); white-space: nowrap; }
.blog-newsletter-btn:hover { background: var(--gold-dark); border-color: var(--gold-dark); color: #fff; }
.blog-newsletter-note { font-size: 10.5px; opacity: 0.55; margin-top: 20px; letter-spacing: 0.5px; }

/* Hidden state for filter animation */
.blog-card.hidden { display: none; }
.blog-hero-feature.hidden, .blog-duo.hidden, .blog-section-rule.hidden { display: none; }

/* Responsive */
@media (max-width: 1024px) {
  .blog-hero-feature-title { font-size: 42px; }
  .blog-hero-feature-content { padding: 48px 44px 42px; }
  .blog-grid-v2 { grid-template-columns: repeat(2, 1fr); }
  .blog-duo .blog-card-title { font-size: 24px; }
}
@media (max-width: 760px) {
  .blog-intro { padding: 60px 24px 30px; }
  .blog-intro-title { font-size: 34px; }
  .blog-intro-sub { font-size: 14px; }
  .blog-filters-wrap { padding: 0 24px 6px; }
  .blog-filter-chip { padding: 10px 16px; font-size: 10px; letter-spacing: 2px; }
  .blog-magazine { padding: 30px 0 70px; }
  .blog-hero-feature { padding: 0 24px; margin-bottom: 36px; }
  .blog-hero-feature-inner { aspect-ratio: 3 / 4; }
  .blog-hero-feature-content { padding: 36px 26px 30px; }
  .blog-hero-feature-tag { margin-bottom: 16px; }
  .blog-hero-feature-title { font-size: 28px; }
  .blog-hero-feature-excerpt { font-size: 13.5px; margin-bottom: 16px; }
  .blog-duo { padding: 0 24px; grid-template-columns: 1fr; gap: 24px; }
  .blog-duo .blog-card-img { height: 240px; }
  .blog-section-rule { padding: 0 24px; margin: 30px auto 24px; }
  .blog-grid-v2 { padding: 0 24px; grid-template-columns: 1fr; gap: 26px; }
  .blog-newsletter { padding: 70px 24px; }
  .blog-newsletter-title { font-size: 28px; }
  .blog-newsletter-form { flex-direction: column; }
  .blog-newsletter-btn { padding: 14px 20px; }
}

/* ============================================================
   EDITORIAL ENHANCE LAYER — tipografia, atmosfera, dettagli
   ============================================================ */
:root {
  --shadow-warm-sm: 0 4px 14px rgba(60, 40, 20, 0.08);
  --shadow-warm-md: 0 12px 40px rgba(60, 40, 20, 0.12);
  --shadow-warm-lg: 0 24px 70px rgba(60, 40, 20, 0.18);
  --shadow-gold:    0 12px 40px rgba(184, 150, 106, 0.25);
  --noise-bg: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.6'/%3E%3C/svg%3E");
}

/* Typography polish */
body { font-feature-settings: "kern" 1, "liga" 1; }
.hero-title, .cd-title, .section-h, .menu-hero-title, .page-hero-title,
.footer-cta-title, .menu-panel-title, .sc-img-caption h3, .story-feat-title,
.blog-intro-title {
  letter-spacing: -0.018em;
  font-feature-settings: "kern" 1, "liga" 1, "dlig" 1;
}
.open-pillar-num, .cd-date-pill span { font-variant-numeric: oldstyle-nums; }

/* Global warm noise overlay */
body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image: var(--noise-bg);
  background-size: 180px;
  opacity: 0.025;
  mix-blend-mode: multiply;
}

/* Ensure content is above body noise (body::before z-index: 1).
   Do NOT override position of elements that rely on fixed/absolute positioning
   (header, loader, overlays, sticky CTAs, chatbot). */
.hero, main, section, footer { position: relative; z-index: 2; }

/* Warm crema gradient for light surfaces */
.story-right {
  background: linear-gradient(180deg, var(--cream-light) 0%, var(--cream-off) 100%) !important;
}

/* Unified image colour treatment */
.hero-bg,
.page-hero-bg,
.menu-hero-bg {
  filter: saturate(0.92) contrast(1.04) brightness(0.98);
}
.story-left img,
.sc-img-frame img,
.showcase-side-img img {
  filter: saturate(0.92) contrast(1.04);
}

/* Duotone overlay hero */
.hero::after,
.menu-hero::after,
.page-hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,28,88,0.18) 0%, rgba(184,150,106,0.12) 100%);
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 1;
}

/* Scroll progress bar */
.scroll-progress {
  position: fixed; top: 0; left: 0;
  height: 2px; width: 0;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-bright));
  z-index: 10000;
  transition: width 0.08s linear;
  pointer-events: none;
}

/* Decorative divider with wave symbol */
.deco-divider {
  display: flex; align-items: center; justify-content: center;
  gap: 24px;
  padding: 60px 70px;
  color: var(--gold);
  background: transparent;
}
.deco-divider::before,
.deco-divider::after {
  content: ""; flex: 1; max-width: 160px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184,150,106,0.5), transparent);
}
.deco-divider svg { width: 26px; height: 26px; opacity: 0.75; }

@media (max-width: 768px) {
  .deco-divider { padding: 40px 24px; gap: 18px; }
  .deco-divider svg { width: 22px; height: 22px; }
}

/* Section numbering */
.section-num {
  font-family: var(--ff-sans);
  font-size: 10px; font-weight: 700;
  letter-spacing: 4px;
  color: var(--gold);
  display: block;
  margin-bottom: 14px;
}
.section-num::before {
  content: attr(data-num);
  margin-right: 12px;
}

/* Double-frame card variant */
.frame-double {
  position: relative;
  padding: 32px;
  background: var(--white);
}
.frame-double::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(184,150,106,0.4);
  pointer-events: none;
}

/* Hover lift on cards */
.menu-item {
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), background 0.3s;
}
.menu-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
  background: var(--white);
  z-index: 2;
}
.story-feat {
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), border-color 0.3s;
}
.story-feat:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

/* Arch clip-path */
.clip-arch {
  clip-path: path("M 0 100% L 0 30% Q 0 0 30% 0 L 70% 0 Q 100% 0 100% 30% L 100% 100% Z");
  -webkit-clip-path: path("M 0 100% L 0 30% Q 0 0 30% 0 L 70% 0 Q 100% 0 100% 30% L 100% 100% Z");
}

/* Monogram watermark */
.monogram-watermark {
  position: absolute;
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: clamp(200px, 30vw, 420px);
  font-weight: 300;
  color: rgba(184,150,106,0.06);
  pointer-events: none;
  user-select: none;
  line-height: 0.8;
  z-index: 0;
}

/* Editorial asymmetric grid utilities */
.grid-2-3 { display: grid; grid-template-columns: 2fr 3fr; gap: 60px; }
.grid-3-2 { display: grid; grid-template-columns: 3fr 2fr; gap: 60px; }
@media (max-width: 900px) {
  .grid-2-3, .grid-3-2 { grid-template-columns: 1fr; gap: 40px; }
}

/* Sticky caption */
.sticky-caption { position: sticky; top: 120px; align-self: start; }

/* Signature */
.signature {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
  font-size: 28px;
  letter-spacing: 1px;
  transform: rotate(-2deg);
  display: inline-block;
}

/* Line illustrations */
.line-illus {
  display: inline-block;
  width: 48px; height: 48px;
  color: var(--gold);
  opacity: 0.8;
}
.line-illus svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 1.2; }

/* Mobile sticky CTA */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  left: 16px; right: 16px; bottom: 16px;
  background: var(--gold);
  color: var(--white) !important;
  padding: 16px;
  font-family: var(--ff-sans);
  font-size: 11px; font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-align: center;
  border-radius: 2px;
  box-shadow: var(--shadow-warm-lg);
  z-index: 400;
  transition: transform 0.3s var(--ease-out), opacity 0.3s;
}
.mobile-sticky-cta.hidden {
  transform: translateY(140%);
  opacity: 0;
  pointer-events: none;
}
@media (max-width: 768px) {
  .mobile-sticky-cta { display: block; }
}

/* Mobile menu fullscreen serif upgrade */
@media (max-width: 768px) {
  .mobile-menu-link {
    font-family: var(--ff-serif) !important;
    font-size: 38px !important;
    font-weight: 300 !important;
    letter-spacing: -0.01em !important;
    text-transform: none !important;
  }
  .mobile-menu-link:nth-child(even) {
    font-style: italic;
    color: var(--gold-pale) !important;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .hero-bg { animation: none; }
  body::before { display: none; }
  .scroll-progress { transition: none; }
}

/* ============================================================
   MENU · LAYOUT RIORGANIZZATO (sidebar + macro sections)
   ============================================================ */

/* All panels always visible (override tab show/hide) */
.menu-panel.always-visible {
  display: block;
  padding-top: 28px;
  animation: none;
  scroll-margin-top: 120px;
}

/* Layout: sticky sidebar + content */
.menu-layout-grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 64px;
  align-items: start;
}

/* Sidebar */
.menu-sidebar {
  position: sticky;
  top: 120px;
  align-self: start;
  padding: 4px 0;
}

.menu-sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.menu-sidebar-group {
  display: flex;
  flex-direction: column;
}

.menu-sidebar-group-title {
  font-family: var(--ff-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold-dark);
  padding: 0 18px 10px;
}

.menu-sidebar-link {
  display: block;
  padding: 9px 18px;
  font-family: var(--ff-sans);
  font-size: 12.5px;
  letter-spacing: 0.3px;
  color: var(--slate-light);
  text-decoration: none;
  border-left: 2px solid rgba(0,28,88,0.08);
  transition: color 0.25s, border-color 0.25s, background 0.25s;
  cursor: pointer;
}

.menu-sidebar-link:hover {
  color: var(--navy);
  background: rgba(0,28,88,0.02);
}

.menu-sidebar-link.active {
  color: var(--navy);
  border-left-color: var(--gold);
  font-weight: 600;
}

/* Macro section wrapper */
.menu-macro {
  margin-bottom: 40px;
}

.menu-macro + .menu-macro {
  margin-top: 56px;
  padding-top: 48px;
  border-top: 1px solid rgba(0,28,88,0.08);
}

.menu-macro-heading {
  text-align: center;
  padding: 8px 0 8px;
  margin-bottom: 12px;
}

.menu-macro-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-sans);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.menu-macro-eyebrow .macro-num { display: none; }

.menu-macro-eyebrow .macro-line {
  display: inline-block;
  width: 32px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.menu-macro-title {
  font-family: var(--ff-serif);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 300;
  color: var(--navy);
  line-height: 1;
  letter-spacing: 1.5px;
  margin: 0;
}

.menu-macro-title em {
  font-style: italic;
  color: var(--gold-dark);
  font-weight: 400;
}

.menu-macro-sub {
  font-family: var(--ff-serif);
  font-size: 14px;
  font-style: italic;
  color: var(--slate-light);
  margin-top: 10px;
  line-height: 1.6;
}

/* Tablet: collapse sidebar, keep select non-sticky to avoid header overlap */
@media (max-width: 1024px) {
  .menu-layout-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .menu-sidebar { display: none; }
  .menu-select-wrap { display: block; }
}

/* Mobile */
@media (max-width: 760px) {
  .menu-macro { margin-bottom: 24px; }
  .menu-macro + .menu-macro {
    margin-top: 32px;
    padding-top: 28px;
  }
  .menu-macro-heading { padding: 0; margin-bottom: 6px; }
  .menu-macro-title { font-size: clamp(30px, 9vw, 42px); letter-spacing: 1px; }
  .menu-macro-sub { font-size: 13px; margin-top: 8px; padding: 0 6px; }
  .menu-panel.always-visible { padding-top: 20px; }
}

/* ============================================================
   MENU · DISH CARDS — editorial refined
   ============================================================ */

/* Panel heading: more elegant divider */
.menu-panel.always-visible .menu-panel-heading {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 4px;
  padding-bottom: 0;
}
.menu-panel.always-visible .menu-panel-title {
  font-family: var(--ff-serif);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 400;
  font-style: italic;
  color: var(--navy);
  letter-spacing: 0.5px;
}
.menu-panel.always-visible .menu-panel-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(184,150,106,0.35), transparent);
}

/* Items grid: clean 2-col with generous column gap, no vertical borders */
.menu-content .menu-items-grid {
  grid-template-columns: 1fr 1fr;
  column-gap: 72px;
  row-gap: 0;
  padding-top: 8px;
}

.menu-content .menu-item:nth-child(odd) .menu-item-inner {
  border-right: none;
}

/* Item row: name+price on one line (baseline), description below */
.menu-content .menu-item-inner {
  padding: 22px 0;
  gap: 24px;
  align-items: baseline;
  border-bottom: 1px solid rgba(0,28,88,0.08);
  background: transparent;
  transition: none;
}

/* Remove gold ::before sliver and hover padding gimmick */
.menu-content .menu-item-inner::before { display: none; }
.menu-content .menu-item:hover .menu-item-inner {
  padding-left: 0;
  background: transparent;
}
.menu-content .menu-item:hover .menu-item-name {
  color: var(--gold-dark);
  transition: color 0.25s ease;
}

/* Typography: tighter, more confident */
.menu-content .menu-item-name {
  font-family: var(--ff-serif);
  font-size: clamp(18px, 1.5vw, 22px);
  font-weight: 500;
  color: var(--navy);
  letter-spacing: 0.2px;
  line-height: 1.25;
  margin-bottom: 8px;
  transition: color 0.25s ease;
}

.menu-content .menu-item-producer {
  font-size: 0.6em;
  font-style: italic;
  font-weight: 300;
  color: var(--slate-light);
  letter-spacing: 0.3px;
}

.menu-content .menu-item-desc {
  font-family: var(--ff-serif);
  font-size: 13.5px;
  font-style: italic;
  color: var(--slate-light);
  line-height: 1.65;
  max-width: 40ch;
  margin: 0;
}

.menu-content .menu-item-price {
  font-family: var(--ff-serif);
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 500;
  font-style: normal;
  color: var(--gold-dark);
  letter-spacing: 0.3px;
  white-space: nowrap;
  align-self: flex-start;
  padding-top: 2px;
}
.menu-content .menu-item-price .price-unit {
  font-size: 11px;
  font-weight: 400;
  font-style: italic;
  color: var(--slate-light);
  letter-spacing: 1px;
}

/* Featured (Signature / Firma del Chef): elegant gold accent */
.menu-content .menu-item.featured .menu-item-inner {
  padding: 28px 28px;
  margin: 4px 0;
  background: linear-gradient(180deg, rgba(184,150,106,0.05) 0%, rgba(255,255,255,0) 100%);
  border: 1px solid rgba(184,150,106,0.18);
  border-left: 3px solid var(--gold);
  border-bottom: 1px solid rgba(184,150,106,0.18);
}
.menu-content .menu-item.featured .menu-item-name {
  font-size: clamp(21px, 2vw, 26px);
  font-weight: 400;
}

/* Badge: understated uppercase label */
.menu-content .menu-item .menu-badge {
  background: transparent;
  color: var(--gold-dark);
  padding: 0;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 3px;
  margin-bottom: 10px;
  position: relative;
  padding-left: 22px;
}
.menu-content .menu-item .menu-badge::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 14px; height: 1px;
  background: var(--gold);
}

/* Menu note footer (disponibilità del pescato) */
.menu-content .menu-note {
  font-family: var(--ff-serif);
  font-size: 12.5px;
  font-style: italic;
  color: var(--slate-light);
  text-align: left;
  margin-top: 20px;
  padding-top: 0;
  border-top: none;
  letter-spacing: 0.3px;
}

/* Collapse to single column when sidebar is gone */
@media (max-width: 1024px) {
  .menu-content .menu-items-grid {
    grid-template-columns: 1fr;
    column-gap: 0;
  }
  .menu-content .menu-item-inner { padding: 20px 0; }
  .menu-content .menu-item.featured .menu-item-inner { padding: 24px 22px; }
}

@media (max-width: 760px) {
  .menu-content .menu-item-inner {
    padding: 18px 0;
    gap: 16px;
    flex-direction: row;
    align-items: baseline;
  }
  .menu-content .menu-item-name { font-size: 17px; margin-bottom: 6px; }
  .menu-content .menu-item-desc { font-size: 12.5px; line-height: 1.55; }
  .menu-content .menu-item-price { font-size: 18px; align-self: flex-start; }
  .menu-content .menu-item.featured .menu-item-inner { padding: 22px 18px; }
}

/* ============================================================
   OYSTER BAR · editorial refined
   ============================================================ */
.menu-content .oyster-grid {
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin: 16px 0 32px;
  background: transparent;
  border-top: 1px solid rgba(0,28,88,0.1);
}

.menu-content .oyster-item {
  background: transparent;
  min-height: auto;
  padding: 18px 4px 18px 4px;
  border-bottom: 1px solid rgba(0,28,88,0.08);
  flex-direction: row;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  overflow: visible;
  transition: color 0.25s ease;
}

.menu-content .oyster-item::before { display: none; }
.menu-content .oyster-item:hover { background: transparent; }
.menu-content .oyster-item:hover .oyster-name { color: var(--gold-dark); }

.menu-content .oyster-item:nth-child(odd) {
  padding-right: 28px;
  border-right: 1px solid rgba(0,28,88,0.08);
}
.menu-content .oyster-item:nth-child(even) { padding-left: 28px; }

.menu-content .oyster-item-top { flex: 1; }

.menu-content .oyster-name {
  font-family: var(--ff-serif);
  font-size: 19px;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.25;
  letter-spacing: 0.2px;
  transition: color 0.25s ease;
}

.menu-content .oyster-origin {
  font-family: var(--ff-serif);
  font-size: 12px;
  font-style: italic;
  letter-spacing: 0.5px;
  color: var(--slate-light);
  margin-top: 4px;
  text-transform: none;
}

.menu-content .oyster-price {
  font-family: var(--ff-serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--gold-dark);
  margin-top: 0;
  letter-spacing: 0.3px;
  align-self: baseline;
  white-space: nowrap;
}

/* Plateaux section label */
.menu-content .plateaux-section-label {
  font-family: var(--ff-serif);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 400;
  font-style: italic;
  color: var(--navy);
  text-align: left;
  margin: 40px 0 16px;
  letter-spacing: 0.3px;
  position: relative;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(184,150,106,0.25);
}

/* Plateaux cards: keep showcase feel, more premium */
.menu-content .plateaux-grid {
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}

.menu-content .plateaux-card {
  min-height: 320px;
  padding: 36px 32px;
  border: 1px solid rgba(255,255,255,0.04);
}

.menu-content .plateaux-card-label {
  font-family: var(--ff-sans);
  font-size: 9px;
  letter-spacing: 3.5px;
  color: var(--gold);
  margin-bottom: 14px;
}

.menu-content .plateaux-card-name {
  font-family: var(--ff-serif);
  font-size: clamp(26px, 2.8vw, 34px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.5px;
}

.menu-content .plateaux-card-desc {
  font-family: var(--ff-serif);
  font-size: 12.5px;
  font-style: italic;
  line-height: 1.75;
  color: rgba(255,255,255,0.55);
  margin-bottom: 18px;
}

.menu-content .plateaux-card-price {
  font-size: clamp(32px, 3.2vw, 40px);
  font-weight: 300;
  color: var(--gold-pale);
  letter-spacing: 0.5px;
}

@media (max-width: 1024px) {
  .menu-content .oyster-grid { grid-template-columns: 1fr; }
  .menu-content .oyster-item:nth-child(odd) {
    padding-right: 4px;
    border-right: none;
  }
  .menu-content .oyster-item:nth-child(even) { padding-left: 4px; }
  .menu-content .plateaux-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .menu-content .oyster-item { padding: 16px 4px; }
  .menu-content .oyster-name { font-size: 17px; }
  .menu-content .oyster-price { font-size: 18px; }
  .menu-content .plateaux-section-label { margin-top: 32px; }
  .menu-content .plateaux-card { min-height: 260px; padding: 28px 22px; }
}

/* ============================================================
   LANGUAGE SWITCHER — integrated into navbar
   ============================================================ */
.nav-lang {
  position: relative;
  margin-left: 4px;
}

.nav-lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 12px 7px 14px;
  font-family: var(--ff-sans);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--navy);
  background: transparent;
  border: 1px solid rgba(0,28,88,0.14);
  border-radius: 2px;
  cursor: pointer;
  line-height: 1;
  transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.site-header:not(.inner-page):not(.scrolled) .nav-lang-toggle {
  color: rgba(255,255,255,0.85);
  border-color: rgba(255,255,255,0.25);
}
.nav-lang-toggle:hover,
.nav-lang.is-open .nav-lang-toggle {
  color: var(--gold-dark);
  border-color: var(--gold);
  background: rgba(184,150,106,0.06);
}
.site-header:not(.inner-page):not(.scrolled) .nav-lang-toggle:hover,
.site-header:not(.inner-page):not(.scrolled) .nav-lang.is-open .nav-lang-toggle {
  color: var(--white);
  border-color: var(--gold);
  background: rgba(184,150,106,0.12);
}

.nav-lang-chev {
  width: 9px; height: 6px;
  transition: transform 0.3s var(--ease-out);
  flex-shrink: 0;
}
.nav-lang.is-open .nav-lang-chev {
  transform: rotate(180deg);
}

.nav-lang-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 170px;
  padding: 6px 0;
  margin: 0;
  list-style: none;
  background: rgba(250,249,247,0.98);
  backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(0,28,88,0.07);
  box-shadow: 0 12px 36px rgba(0,28,88,0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.25s var(--ease-out), visibility 0.25s, transform 0.25s var(--ease-out);
  z-index: 600;
}
.nav-lang.is-open .nav-lang-menu,
.nav-lang:hover .nav-lang-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-lang-menu li { margin: 0; }

.nav-lang-menu a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 20px;
  font-family: var(--ff-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--navy);
  white-space: nowrap;
  transition: color 0.25s ease, background 0.25s ease;
}
.nav-lang-menu a::after { display: none; }
.nav-lang-menu a:hover {
  color: var(--gold-dark);
  background: rgba(184,150,106,0.06);
}
.nav-lang-menu a.is-current {
  color: var(--gold-dark);
  background: rgba(184,150,106,0.04);
}

.nav-lang-code {
  display: inline-block;
  min-width: 22px;
  font-family: var(--ff-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0;
  color: var(--gold);
  opacity: 0.85;
}
.nav-lang-menu a.is-current .nav-lang-code { opacity: 1; }

/* Mobile: hide desktop dropdown; show inline row in mobile overlay */
@media (max-width: 768px) {
  .nav-lang { display: none; }
}

.mobile-menu-langs {
  display: none;
  justify-content: center;
  gap: 6px;
  margin: 32px auto 0;
  padding: 6px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 2px;
  width: fit-content;
}
.mobile-menu-langs a {
  display: inline-block;
  padding: 8px 18px;
  font-family: var(--ff-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  transition: color 0.25s ease, background 0.25s ease;
  border-radius: 2px;
}
.mobile-menu-langs a:hover { color: var(--white); }
.mobile-menu-langs a.is-current {
  color: var(--navy);
  background: var(--gold);
}

@media (max-width: 768px) {
  .mobile-menu-langs { display: inline-flex; }
}

/* ============================================================
   MENU 2026 — ALLERGENI · CONTORNI · BEVANDE · INFO
   ============================================================ */

/* Allergen icons under each dish */
.menu-allergens {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px;
  margin-top: 12px;
}
.menu-allergens img {
  width: 22px;
  height: 22px;
  display: block;
  flex: none;
}

/* Oyster item: price + allergen row */
.oyster-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
}
.oyster-bottom .oyster-price { margin-top: 0; }
.oyster-bottom .menu-allergens { margin-top: 0; }

/* Plateaux cards (dark): allergens above the price */
.plateaux-card-body .menu-allergens {
  margin-top: 0;
  margin-bottom: 18px;
}

/* Panel sub-note (es. orario insalate) */
.menu-subnote {
  font-family: var(--ff-serif);
  font-size: 14px;
  font-style: italic;
  color: var(--gold-dark);
  margin: 2px 0 -6px;
}

/* Simple list (Contorni · Bibite) */
.simple-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 56px;
  margin-bottom: 10px;
}
.simple-item {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px;
  padding: 16px 4px;
  border-bottom: 1px solid rgba(0,28,88,0.07);
}
.simple-item-name {
  font-family: var(--ff-serif);
  font-size: 19px;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 0 8px;
}
.simple-item-note {
  flex-basis: 100%;
  font-family: var(--ff-sans);
  font-size: 11px;
  font-style: italic;
  color: var(--slate-light);
  margin-top: -2px;
}
.simple-item-allergens {
  display: inline-flex;
}
.simple-item-allergens img {
  width: 18px;
  height: 18px;
  display: block;
}
.simple-item-leader {
  flex: 1;
  min-width: 16px;
  align-self: stretch;
  border-bottom: 1px dotted rgba(0,28,88,0.28);
  transform: translateY(-4px);
}
.simple-item-price {
  font-family: var(--ff-serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--gold-dark);
  white-space: nowrap;
}

/* Birra alla spina */
.beer-grid { margin-top: 2px; }
.beer-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px 24px;
  padding: 22px 4px;
  border-bottom: 1px solid rgba(0,28,88,0.07);
}
.beer-name {
  font-family: var(--ff-serif);
  font-size: 22px;
  color: var(--navy);
}
.beer-prices {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
}
.beer-price {
  font-family: var(--ff-serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--gold-dark);
  white-space: nowrap;
}
.beer-price em {
  font-style: italic;
  font-size: 13px;
  font-weight: 400;
  color: var(--slate-light);
  margin-right: 5px;
}

/* Info & allergeni block */
.menu-info {
  margin-top: 84px;
  padding-top: 56px;
  border-top: 1px solid rgba(0,28,88,0.1);
}
.menu-info-quote {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 42px;
}
.menu-info-quote p {
  font-family: var(--ff-serif);
  font-size: 16px;
  font-style: italic;
  color: var(--text-body);
  line-height: 1.7;
}
.menu-info-quote p:first-child {
  font-size: 21px;
  color: var(--navy);
  margin-bottom: 10px;
}
.menu-info-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-bottom: 58px;
}
.menu-info-card {
  flex: 1 1 300px;
  max-width: 440px;
  background: var(--cream-off);
  padding: 24px 28px;
  text-align: center;
}
.menu-info-card-label {
  font-family: var(--ff-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 9px;
}
.menu-info-card-value {
  font-family: var(--ff-serif);
  font-size: 17px;
  color: var(--navy);
  line-height: 1.5;
}
.allergen-legend-wrap { text-align: center; }
.allergen-legend-title {
  font-family: var(--ff-serif);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 300;
  color: var(--navy);
  margin-bottom: 30px;
}
.allergen-legend {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 22px 12px;
  margin-bottom: 30px;
}
.allergen-legend-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.allergen-legend-item img {
  width: 40px;
  height: 40px;
}
.allergen-legend-item span {
  font-family: var(--ff-sans);
  font-size: 11px;
  letter-spacing: 0.3px;
  color: var(--text-body);
}
.allergen-legend-note {
  max-width: 780px;
  margin: 0 auto;
  font-family: var(--ff-sans);
  font-size: 12px;
  font-style: italic;
  color: var(--slate-light);
  line-height: 1.7;
}

@media (max-width: 900px) {
  .allergen-legend { grid-template-columns: repeat(5, 1fr); }
}
@media (max-width: 760px) {
  .simple-grid { grid-template-columns: 1fr; gap: 0; }
  .allergen-legend { grid-template-columns: repeat(3, 1fr); gap: 18px 10px; }
  .menu-info { margin-top: 52px; padding-top: 38px; }
  .menu-info-quote p:first-child { font-size: 19px; }
  .beer-name { font-size: 20px; }
  .menu-allergens img { width: 20px; height: 20px; }
}
@media (max-width: 420px) {
  .allergen-legend { grid-template-columns: repeat(2, 1fr); }
}
