:root {
  --dream-catcher: #e6ebea;
  --veronese-peach: #eac0a8;
  --bon-voyage: #8caeb7;
  --toasted-nut: #c48767;
  --oiled-teak: #6b5a50;
  --shoe-wax: #2d2c2a;
  --ink: var(--shoe-wax);
  --ink-soft: var(--oiled-teak);
  --cocoa: var(--oiled-teak);
  --taupe: var(--oiled-teak);
  --muted: var(--oiled-teak);
  --cream: var(--dream-catcher);
  --ivory: #f8faf9;
  --sand: var(--veronese-peach);
  --sand-deep: var(--toasted-nut);
  --gold: var(--toasted-nut);
  --white: #ffffff;
  --success: var(--bon-voyage);
  --line: rgba(45, 44, 42, 0.14);
  --line-light: rgba(255, 255, 255, 0.24);
  --shadow-sm: 0 12px 32px rgba(45, 44, 42, 0.09);
  --shadow-md: 0 24px 70px rgba(45, 44, 42, 0.14);
  --shadow-lg: 0 42px 110px rgba(45, 44, 42, 0.22);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --container: min(1180px, calc(100% - 48px));
  --serif: "EB Garamond", "Iowan Old Style", Baskerville, Georgia, "Times New Roman", serif;
  --sans: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --transition: 220ms cubic-bezier(.2, .75, .25, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--cream);
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 10% 5%, rgba(255,255,255,.55), transparent 30%),
    var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

img {
  height: auto;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

button {
  color: inherit;
}

::selection {
  background: var(--cocoa);
  color: var(--ivory);
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

[hidden] {
  display: none !important;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 118px 0;
}

.section--compact {
  padding: 82px 0;
}

.section--ivory {
  background: var(--ivory);
}

.section--dark {
  overflow: hidden;
  background: var(--ink);
  color: var(--ivory);
}

.section--sand {
  background: #ead8ce;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  gap: 44px;
  align-items: end;
  margin-bottom: 54px;
}

.section-head--stack {
  display: block;
  max-width: 760px;
}

.section-head--center {
  display: block;
  max-width: 820px;
  margin-inline: auto;
  text-align: center;
}

.section-head p {
  margin: 0;
  color: var(--muted);
}

.section--dark .section-head p,
.section--dark .text-muted {
  color: rgba(248, 250, 249, 0.68);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  margin: 0 0 20px;
  color: var(--cocoa);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 30px;
  height: 1px;
  background: currentColor;
  content: "";
  opacity: .6;
}

.eyebrow--light {
  color: #eac0a8;
}

.eyebrow--no-line::before {
  display: none;
}

.display-title,
.section-title,
.card-title,
.quote-text,
.modal-title {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -.045em;
  line-height: .98;
}

.display-title {
  margin: 0;
  max-width: 720px;
  font-size: clamp(4.25rem, 7vw, 7.4rem);
}

.display-title em,
.section-title em {
  color: var(--cocoa);
  font-weight: 500;
}

.section-title {
  margin: 0;
  font-size: clamp(3.2rem, 5.4vw, 5.7rem);
}

.section-title--small {
  font-size: clamp(2.7rem, 4.6vw, 4.4rem);
}

.lead {
  max-width: 650px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1.06rem, 1.4vw, 1.22rem);
  line-height: 1.8;
}

.text-muted {
  color: var(--muted);
}

.small-note {
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.65;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  padding: 11px 16px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--ivory);
  transition: transform var(--transition);
}

.skip-link:focus {
  transform: translateY(0);
}

/* Top bar and navigation */
.topbar {
  position: relative;
  z-index: 80;
  height: 30px;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: rgba(255, 255, 255, .78);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  z-index: 70;
  top: 0;
  height: 88px;
  border-bottom: 1px solid transparent;
  background: rgba(230, 235, 234, .92);
  backdrop-filter: blur(18px);
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(248, 250, 249, .94);
  box-shadow: 0 10px 28px rgba(45, 44, 42, .06);
}

.header-inner {
  width: var(--container);
  height: 100%;
  display: grid;
  grid-template-columns: 265px 1fr 130px;
  gap: 22px;
  align-items: center;
  margin-inline: auto;
}

.brand {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  line-height: 0;
}

.brand-logo {
  width: 188px;
  height: auto;
  flex: 0 0 auto;
  filter: drop-shadow(0 10px 18px rgba(45, 44, 42, .14));
}

.brand-copy {
  display: grid;
  line-height: 1;
}

.brand-name {
  font-family: var(--serif);
  font-size: 1.65rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.brand-tagline {
  margin-top: 7px;
  font-size: .57rem;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
}

.desktop-nav {
  justify-self: center;
}

.desktop-nav ul {
  display: flex;
  align-items: center;
  gap: 32px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.desktop-nav a {
  position: relative;
  padding: 12px 0;
  color: #6b5a50;
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--ink);
  content: "";
  transition: transform var(--transition);
}

.desktop-nav a:hover,
.desktop-nav a[aria-current="page"] {
  color: var(--ink);
}

.desktop-nav a:hover::after,
.desktop-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-action {
  justify-self: end;
}

.nav-toggle {
  width: 48px;
  height: 48px;
  display: none;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(248, 250, 249, .8);
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  width: 17px;
  height: 1px;
  display: block;
  background: var(--ink);
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle span {
  position: relative;
}

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

.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { transform: translateY(-6px) rotate(-45deg); }

.mobile-nav {
  position: fixed;
  z-index: 65;
  inset: 30px 0 0;
  transform: translateX(100%);
  background: var(--ivory);
  opacity: 0;
  visibility: hidden;
  transition: transform 360ms cubic-bezier(.2,.8,.2,1), opacity 260ms ease, visibility 260ms ease;
}

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

.mobile-nav-inner {
  width: min(100% - 40px, 520px);
  display: flex;
  min-height: calc(100dvh - 30px);
  flex-direction: column;
  justify-content: center;
  margin-inline: auto;
  padding: 110px 0 50px;
}

.mobile-nav ul {
  display: grid;
  gap: 13px;
  margin: 0 0 36px;
  padding: 0;
  list-style: none;
}

.mobile-nav li {
  border-bottom: 1px solid var(--line);
}

.mobile-nav a {
  display: flex;
  justify-content: space-between;
  padding: 14px 0 18px;
  font-family: var(--serif);
  font-size: clamp(2rem, 10vw, 3.5rem);
  line-height: 1;
}

.mobile-nav a::after {
  content: "↗";
  color: var(--gold);
  font-family: var(--sans);
  font-size: 1rem;
}

.mobile-nav .nav-meta {
  margin-top: 34px;
  color: var(--muted);
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* Buttons */
.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .11em;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform var(--transition), background var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.button--dark {
  background: var(--ink);
  color: var(--ivory);
}

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

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

.button--ghost-light {
  border-color: rgba(255,255,255,.42);
  color: var(--ivory);
}

.button--ghost-light:hover {
  border-color: var(--ivory);
  background: var(--ivory);
  color: var(--ink);
}

.button--small {
  min-height: 44px;
  padding: 13px 19px;
}

.button--wide {
  width: 100%;
}

.button svg,
.link-arrow svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.link-arrow span {
  transition: transform var(--transition);
}

.link-arrow:hover span {
  transform: translateX(4px);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

/* Home hero */
.home-hero {
  position: relative;
  min-height: calc(100svh - 118px);
  overflow: hidden;
  padding: 88px 0 92px;
}

.home-hero::before {
  position: absolute;
  top: 18%;
  right: -12%;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(140, 174, 183, .15);
  border-radius: 50%;
  content: "";
}

.home-hero::after {
  position: absolute;
  right: 4%;
  bottom: -22%;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: rgba(234, 192, 168, .48);
  content: "";
  filter: blur(.2px);
}

.home-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(440px, .95fr);
  gap: 48px;
  align-items: center;
}

.home-hero-copy {
  max-width: 640px;
}

.home-hero .display-title em {
  display: block;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 17px 28px;
  margin: 36px 0 0;
  padding: 0;
  color: #6b5a50;
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .07em;
  list-style: none;
  text-transform: uppercase;
}

.hero-facts li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.hero-facts li::before {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

.hero-collage {
  position: relative;
  min-height: 590px;
}

.hero-collage::before {
  position: absolute;
  top: 38px;
  left: 10px;
  width: 460px;
  height: 460px;
  border: 1px solid rgba(140, 174, 183, .18);
  border-radius: 50%;
  content: "";
}

.hero-collage::after {
  position: absolute;
  top: 95px;
  left: 82px;
  width: 360px;
  height: 440px;
  border-radius: 48% 48% 42% 42%;
  background: #eac0a8;
  content: "";
}

.collage-card {
  position: absolute;
  z-index: 2;
  overflow: hidden;
  border: 7px solid var(--ivory);
  border-radius: 24px;
  background: var(--sand);
  box-shadow: var(--shadow-md);
}

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

.collage-card--one {
  top: 22px;
  right: 24px;
  width: 270px;
  height: 330px;
  transform: rotate(2deg);
}

.collage-card--two {
  bottom: 20px;
  left: 24px;
  width: 250px;
  height: 320px;
  transform: rotate(-3deg);
}

.collage-card--three {
  right: 0;
  bottom: 45px;
  width: 210px;
  height: 250px;
  transform: rotate(4deg);
}

.rating-badge {
  position: absolute;
  z-index: 4;
  right: 132px;
  bottom: 235px;
  min-width: 190px;
  padding: 17px 19px;
  border-radius: 17px;
  background: rgba(45, 44, 42, .95);
  color: var(--ivory);
  box-shadow: var(--shadow-md);
}

.rating-badge strong {
  display: block;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
  line-height: 1;
}

.rating-badge span {
  display: block;
  margin-top: 7px;
  color: rgba(255,255,255,.65);
  font-size: .56rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

/* Page hero */
.page-hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--ink);
  color: var(--ivory);
}

.page-hero::before,
.page-hero::after {
  position: absolute;
  inset: 0;
  content: "";
}

.page-hero::before {
  z-index: 0;
  background-image: var(--hero-image);
  background-position: center;
  background-size: cover;
  filter: saturate(.82) contrast(.94);
}

.page-hero::after {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(45, 44, 42, .83) 0%, rgba(45, 44, 42, .66) 50%, rgba(45, 44, 42, .36) 100%),
    linear-gradient(0deg, rgba(45, 44, 42, .28), rgba(45, 44, 42, .18));
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero-copy {
  max-width: 780px;
  padding: 90px 0;
}

.page-hero .display-title {
  color: var(--ivory);
}

.page-hero .lead {
  color: rgba(248, 250, 249, .72);
}

.page-hero--gallery { --hero-image: url('../images/interior.jpg'); }
.page-hero--menu { --hero-image: url('../images/concept-coffee-hd.jpg'); }
.page-hero--services { --hero-image: url('../images/concept-entrance-hd.jpg'); }
.page-hero--reviews { --hero-image: url('../images/interior.jpg'); }
.page-hero--privacy { --hero-image: url('../images/concept-wall-logo-hd.jpg'); min-height: 420px; }

/* Experience cards */
.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.experience-card {
  position: relative;
  min-height: 500px;
  display: flex;
  overflow: hidden;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: var(--radius-md);
  background: var(--ink);
  color: var(--ivory);
  isolation: isolate;
}

.experience-card img {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(.2,.75,.25,1);
}

.experience-card::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(0deg, rgba(45, 44, 42, .92), rgba(45, 44, 42, .04) 65%);
  content: "";
}

.experience-card:hover img {
  transform: scale(1.045);
}

.experience-card-content {
  padding: 34px;
}

.experience-number {
  color: #eac0a8;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .18em;
}

.card-title {
  margin: 11px 0 12px;
  font-size: 2.55rem;
}

.experience-card p {
  margin: 0;
  color: rgba(248, 250, 249, .7);
  font-size: .91rem;
}

/* Split story */
.story-grid {
  display: grid;
  grid-template-columns: minmax(420px, .92fr) minmax(0, 1.08fr);
  gap: clamp(50px, 8vw, 110px);
  align-items: center;
}

.story-media {
  position: relative;
  min-height: 660px;
}

.story-media::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 70%;
  height: 88%;
  border: 1px solid rgba(140, 174, 183, .18);
  border-radius: 50% 50% 10px 10px;
  content: "";
}

.story-image-main,
.story-image-small {
  position: absolute;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.story-image-main {
  top: 42px;
  left: 0;
  width: 78%;
  height: 555px;
}

.story-image-small {
  right: 0;
  bottom: 0;
  width: 46%;
  height: 300px;
  border: 7px solid var(--cream);
}

.story-image-main img,
.story-image-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-copy p {
  color: var(--muted);
}

.story-list {
  display: grid;
  gap: 0;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.story-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 13px;
  align-items: start;
  padding: 17px 0;
  border-top: 1px solid var(--line);
}

.story-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.story-list strong {
  display: block;
  margin-bottom: 3px;
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 600;
  line-height: 1.2;
}

.story-list span {
  color: var(--muted);
  font-size: .87rem;
}

.story-icon {
  color: var(--gold);
  font-size: 1.1rem;
}

/* Menu teaser / cards */
.teaser-grid,
.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.menu-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--ivory);
  box-shadow: 0 10px 32px rgba(45, 44, 42, .04);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.menu-card:hover {
  transform: translateY(-5px);
  border-color: rgba(140, 174, 183, .27);
  box-shadow: var(--shadow-md);
}

.menu-card-media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--sand);
}

.menu-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms cubic-bezier(.2,.75,.25,1);
}

.menu-card:hover .menu-card-media img {
  transform: scale(1.04);
}

.menu-card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(248, 250, 249, .9);
  color: var(--ink);
  font-size: .56rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.menu-card-body {
  padding: 22px 22px 24px;
}

.menu-card-title {
  margin: 0;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: -.025em;
  line-height: 1.05;
}

.menu-card-description {
  min-height: 70px;
  margin: 13px 0 18px;
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.65;
}

.menu-card-action {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 0 0;
  border: 0;
  border-top: 1px solid var(--line);
  background: transparent;
  font-size: .63rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
}

.menu-card-action span:last-child {
  font-size: 1rem;
  transition: transform var(--transition);
}

.menu-card-action:hover span:last-child {
  transform: translateX(4px);
}

.price-menu { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:26px; margin-top:42px; }
.price-menu-section { padding:clamp(26px,4vw,42px); border:1px solid rgba(45,44,42,.12); border-radius:26px; background:rgba(255,255,255,.68); box-shadow:0 18px 50px rgba(45,44,42,.06); }
.price-menu-section--wide { grid-column:1 / -1; }
.price-menu-section h2 { margin:0 0 22px; color:var(--ink); font-family:var(--serif); font-size:clamp(2rem,4vw,3.25rem); font-weight:400; line-height:1; }
.price-list { display:grid; gap:0; }
.price-list--two-columns { grid-template-columns:repeat(2,minmax(0,1fr)); column-gap:clamp(28px,5vw,72px); }
.price-item { display:grid; grid-template-columns:minmax(0,1fr) auto; gap:18px; align-items:baseline; padding:13px 0; border-bottom:1px solid rgba(45,44,42,.12); color:var(--ink); }
.price-item span { font-size:1rem; line-height:1.45; }
.price-item span small { display:block; margin-top:2px; color:var(--ink-soft); font-size:.82rem; font-weight:400; }
.price-item strong { color:var(--toasted-nut); font-size:1rem; font-variant-numeric:tabular-nums; white-space:nowrap; }

.price-menu-section[hidden] { display:none; }
.section-heading { display:flex; align-items:baseline; justify-content:space-between; gap:18px; margin-bottom:24px; }
.section-heading h2 { margin-bottom:0; }
.provisional-label { color:var(--ink-soft); font-size:.72rem; font-weight:700; letter-spacing:.13em; text-transform:uppercase; }
.detail-list { display:grid; }
.detail-list--two-columns { grid-template-columns:repeat(2,minmax(0,1fr)); column-gap:clamp(28px,5vw,72px); }
.detail-item { padding:15px 0; border-bottom:1px solid rgba(45,44,42,.12); }
.detail-item h3,
.detail-item h4 { margin:0; color:var(--ink); font-family:var(--sans); font-size:1rem; font-weight:700; line-height:1.4; }
.detail-item p { margin:5px 0 0; color:var(--ink-soft); font-size:.9rem; line-height:1.55; }
.detail-item strong { display:block; margin-top:5px; color:var(--toasted-nut); font-size:1rem; font-variant-numeric:tabular-nums; }
.wine-regions { display:grid; grid-template-columns:1fr; gap:46px; }
.wine-region h3 { margin:0 0 10px; color:var(--toasted-nut); font-family:var(--serif); font-size:clamp(1.7rem,3vw,2.25rem); font-weight:400; }
.wine-region h3 small { font-family:var(--sans); font-size:.68rem; font-weight:700; letter-spacing:.12em; text-transform:uppercase; }
.wine-region--wide { grid-column:1 / -1; }

@media (max-width:760px) {
  .price-menu,
  .price-list--two-columns,
  .detail-list--two-columns,
  .wine-regions { grid-template-columns:1fr; }
  .price-menu-section--wide { grid-column:auto; }
  .wine-region--wide { grid-column:auto; }
  .section-heading { display:block; }
  .provisional-label { display:block; margin-top:9px; }
}

.menu-note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  margin-bottom: 38px;
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: rgba(248, 250, 249, .68);
}

.menu-note-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--ivory);
  font-family: var(--serif);
  font-size: 1.25rem;
}

.menu-note strong {
  display: block;
  margin-bottom: 3px;
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 600;
}

.menu-note p {
  margin: 0;
  color: var(--muted);
  font-size: .82rem;
}

/* Filter bar */
.filter-bar {
  position: sticky;
  z-index: 20;
  top: 102px;
  display: flex;
  overflow-x: auto;
  gap: 8px;
  margin: 0 0 45px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(248, 250, 249, .92);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(16px);
  scrollbar-width: none;
}

.filter-bar::-webkit-scrollbar { display: none; }

.filter-button {
  min-width: fit-content;
  padding: 13px 18px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #6b5a50;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}

.filter-button:hover,
.filter-button.is-active {
  background: var(--ink);
  color: var(--ivory);
}

.is-filtered-out {
  display: none !important;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-auto-flow: dense;
  grid-auto-rows: 12px;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}

.gallery-item {
  position: relative;
  grid-column: span 4;
  grid-row: span 31;
  overflow: hidden;
  border: 0;
  border-radius: 20px;
  background: var(--sand);
  cursor: zoom-in;
}

.gallery-item--wide {
  grid-column: span 8;
}

.gallery-item--tall {
  grid-row: span 46;
}

.gallery-item--short {
  grid-row: span 24;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  image-rendering: auto;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(.2,.75,.25,1), filter var(--transition);
}

.gallery-item::after {
  display: none;
}

.gallery-item-meta {
  display: none;
  position: absolute;
  z-index: 2;
  right: 20px;
  bottom: 18px;
  left: 20px;
  display: none;
  align-items: flex-end;
  justify-content: space-between;
  color: var(--ivory);
  text-align: left;
}

.gallery-item-meta strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 600;
  line-height: 1.05;
}

.gallery-item-meta span {
  display: block;
  margin-top: 5px;
  color: rgba(255,255,255,.66);
  font-size: .56rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.gallery-item-icon {
  width: 40px;
  height: 40px;
  display: grid !important;
  flex: 0 0 40px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.42);
  border-radius: 50%;
  color: var(--ivory) !important;
  font-size: 1rem !important;
}

.gallery-item:hover img {
  transform: scale(1.015);
  filter: saturate(1.05);
}

.gallery-item:hover::after {
  opacity: .9;
}

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

.service-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(248, 250, 249, .72);
  transition: transform var(--transition), background var(--transition), box-shadow var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  background: var(--ivory);
  box-shadow: var(--shadow-md);
}

.service-card-number {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 4rem;
  line-height: .8;
  opacity: .75;
}

.service-card h3 {
  max-width: 410px;
  margin: 62px 0 15px;
  font-family: var(--serif);
  font-size: 2.7rem;
  font-weight: 600;
  letter-spacing: -.035em;
  line-height: .98;
}

.service-card p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: .9rem;
}

.service-card-icon {
  position: absolute;
  top: 34px;
  right: 34px;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 1.25rem;
}

.event-feature {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--ink);
  color: var(--ivory);
}

.event-feature-media {
  min-height: 620px;
}

.event-feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 7vw, 90px);
}

.event-feature-copy p {
  color: rgba(248,250,249,.68);
}

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

.step-card {
  padding: 32px 30px;
  border-top: 1px solid var(--line);
}

.step-card span {
  color: var(--gold);
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .16em;
}

.step-card h3 {
  margin: 20px 0 10px;
  font-family: var(--serif);
  font-size: 2.15rem;
  font-weight: 600;
  line-height: 1.05;
}

.step-card p {
  margin: 0;
  color: var(--muted);
  font-size: .86rem;
}

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

.rating-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: center;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(248,250,249,.75);
}

.rating-score {
  font-family: var(--serif);
  font-size: 5.3rem;
  letter-spacing: -.05em;
  line-height: .8;
}

.rating-stars {
  margin-bottom: 6px;
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: .12em;
}

.rating-card strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 600;
}

.rating-card p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: .78rem;
}

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

.review-card {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--ivory);
  box-shadow: 0 10px 30px rgba(45,44,42,.035);
}

.review-card-stars {
  color: var(--gold);
  font-size: .82rem;
  letter-spacing: .12em;
}

.quote-text {
  margin: 30px 0;
  font-size: 2rem;
  line-height: 1.07;
}

.review-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.review-meta strong {
  display: block;
  font-size: .72rem;
  letter-spacing: .06em;
}

.review-meta span {
  color: var(--muted);
  font-size: .65rem;
}

.source-pill {
  padding: 7px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: .54rem !important;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

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

.theme-card {
  padding: 26px 24px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  background: rgba(255,255,255,.04);
}

.theme-card span {
  display: block;
  color: #eac0a8;
  font-family: var(--serif);
  font-size: 2.3rem;
  line-height: 1;
}

.theme-card strong {
  display: block;
  margin-top: 18px;
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 600;
}

.theme-card p {
  margin: 8px 0 0;
  color: rgba(248,250,249,.62);
  font-size: .78rem;
}

/* Location */
.location-panel {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--ivory);
  box-shadow: var(--shadow-sm);
}

.location-copy {
  padding: clamp(42px, 6vw, 76px);
}

.location-address {
  margin: 26px 0;
  font-family: var(--serif);
  font-size: 2.2rem;
  font-style: normal;
  line-height: 1.12;
}

.hours-list {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .77rem;
}

.hours-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.hours-list strong {
  color: var(--ink);
  font-weight: 600;
}

.location-media {
  position: relative;
  min-height: 560px;
  overflow: hidden;
}

.location-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.location-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(45,44,42,.55), transparent 50%);
  content: "";
}

.location-label {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 24px;
  left: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 16px;
  background: rgba(45,44,42,.72);
  color: var(--ivory);
  backdrop-filter: blur(12px);
}

.location-label strong {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
}

.location-label span {
  color: rgba(255,255,255,.64);
  font-size: .62rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

/* CTA band */
.cta-band {
  position: relative;
  overflow: hidden;
  padding: 96px 0;
  background: var(--cocoa);
  color: var(--ivory);
}

.cta-band::before,
.cta-band::after {
  position: absolute;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  content: "";
}

.cta-band::before {
  top: -220px;
  right: 8%;
  width: 540px;
  height: 540px;
}

.cta-band::after {
  bottom: -330px;
  left: -80px;
  width: 620px;
  height: 620px;
}

.cta-band-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}

.cta-band h2 {
  max-width: 780px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 500;
  letter-spacing: -.04em;
  line-height: .96;
}

.cta-band p {
  max-width: 700px;
  margin: 18px 0 0;
  color: rgba(248,250,249,.7);
}

/* FAQ */
.faq-list {
  max-width: 900px;
  margin-inline: auto;
}

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

.faq-list details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 24px 52px 24px 0;
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 600;
  line-height: 1.2;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 25px;
  right: 8px;
  content: "+";
  color: var(--gold);
  font-family: var(--sans);
  font-size: 1.2rem;
  font-weight: 400;
}

.faq-list details[open] summary::after { content: "−"; }

.faq-list details p {
  max-width: 760px;
  margin: -6px 0 26px;
  color: var(--muted);
  font-size: .9rem;
}

/* Footer */
.site-footer {
  background: #2d2c2a;
  color: var(--ivory);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.2fr .65fr .8fr .8fr;
  gap: 48px;
  padding: 78px 0 60px;
}

.footer-brand .brand {
  color: var(--ivory);
}

.footer-brand p {
  max-width: 330px;
  margin: 24px 0 0;
  color: rgba(248,250,249,.58);
  font-size: .82rem;
}

.footer-column h3 {
  margin: 4px 0 20px;
  color: #eac0a8;
  font-size: .61rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.footer-column ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-column a,
.footer-column p {
  margin: 0;
  color: rgba(248,250,249,.66);
  font-size: .78rem;
  line-height: 1.8;
  transition: color var(--transition);
}

.footer-column a:hover {
  color: var(--ivory);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0 26px;
  border-top: 1px solid rgba(255,255,255,.1);
  color: rgba(248,250,249,.4);
  font-size: .62rem;
  letter-spacing: .04em;
}

.footer-bottom-links {
  display: flex;
  gap: 18px;
}

/* Floating WhatsApp */
.floating-booking {
  position: fixed;
  z-index: 55;
  right: 22px;
  bottom: 22px;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 19px;
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  color: var(--ivory);
  box-shadow: 0 18px 40px rgba(45,44,42,.25);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform var(--transition), background var(--transition);
}

.floating-booking:hover {
  transform: translateY(-3px);
  background: var(--cocoa);
}

.floating-booking svg {
  width: 20px;
  height: 20px;
}

/* Modals */
.modal {
  position: fixed;
  z-index: 200;
  inset: 0;
  display: grid;
  overflow-y: auto;
  place-items: center;
  padding: 24px;
  background: rgba(45, 44, 42, .72);
  opacity: 0;
  backdrop-filter: blur(10px);
  transition: opacity 220ms ease;
}

.modal.is-open {
  opacity: 1;
}

.modal-dialog {
  position: relative;
  width: min(100%, 720px);
  max-height: calc(100dvh - 48px);
  overflow-y: auto;
  transform: translateY(18px) scale(.985);
  border-radius: 26px;
  background: var(--ivory);
  box-shadow: var(--shadow-lg);
  transition: transform 250ms cubic-bezier(.2,.75,.25,1);
}

.modal.is-open .modal-dialog {
  transform: translateY(0) scale(1);
}

.modal-dialog--wide {
  width: min(100%, 980px);
}

.modal-close {
  position: absolute;
  z-index: 5;
  top: 17px;
  right: 17px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(248,250,249,.9);
  color: var(--ink);
  font-size: 1.25rem;
  cursor: pointer;
  backdrop-filter: blur(8px);
}

.modal-content {
  padding: clamp(32px, 5vw, 56px);
}

.modal-title {
  margin: 0;
  font-size: clamp(2.7rem, 6vw, 4.8rem);
}

.modal-intro {
  margin: 18px 0 0;
  color: var(--muted);
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.form-field {
  display: grid;
  gap: 7px;
}

.form-field--full {
  grid-column: 1 / -1;
}

.form-field label {
  font-size: .63rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 50px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  outline: none;
  background: #f8faf9;
  color: var(--ink);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-field textarea {
  min-height: 104px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--cocoa);
  box-shadow: 0 0 0 3px rgba(140,174,183,.09);
}

.booking-form .button {
  grid-column: 1 / -1;
  margin-top: 6px;
}

.form-privacy {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: .68rem;
}

.lightbox-dialog {
  width: min(100%, 1100px);
  overflow: hidden;
  background: var(--ink);
  color: var(--ivory);
}

.lightbox-media {
  display: grid;
  max-height: 72dvh;
  place-items: center;
  background: #2d2c2a;
}

.lightbox-media img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 72dvh;
  image-rendering: auto;
  object-fit: contain;
}

.lightbox-caption {
  display: none;
  justify-content: space-between;
  gap: 30px;
  padding: 22px 28px 25px;
}

.lightbox-caption strong {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 600;
}

.lightbox-caption p {
  max-width: 580px;
  margin: 4px 0 0;
  color: rgba(248,250,249,.6);
  font-size: .78rem;
}

.menu-modal-layout {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  min-height: 610px;
}

.menu-modal-image {
  min-height: 610px;
  background: var(--sand);
}

.menu-modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-modal-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 6vw, 72px);
}

.menu-modal-copy .modal-title {
  font-size: clamp(3rem, 5vw, 5rem);
}

.menu-modal-copy p {
  color: var(--muted);
}

.menu-modal-note {
  margin-top: 26px !important;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: .73rem;
}

/* Privacy content */
.prose {
  max-width: 820px;
  margin-inline: auto;
}

.prose h2 {
  margin: 54px 0 12px;
  font-family: var(--serif);
  font-size: 2.6rem;
  font-weight: 600;
  line-height: 1.1;
}

.prose h3 {
  margin: 34px 0 8px;
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 600;
}

.prose p,
.prose li {
  color: var(--muted);
}

.prose a {
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 3px;
}

/* Reveal */
[data-reveal] {
  transform: translateY(24px);
  opacity: 0;
  transition: opacity 650ms ease, transform 650ms cubic-bezier(.2,.75,.25,1);
}

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

/* Responsive */
@media (max-width: 1120px) {
  :root { --container: min(100% - 40px, 1040px); }

  .header-inner {
    grid-template-columns: 220px 1fr 112px;
  }

  .desktop-nav ul { gap: 20px; }
  .desktop-nav a { font-size: .67rem; }

  .home-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(390px, .85fr);
  }

  .hero-collage {
    transform: scale(.92);
    transform-origin: center right;
  }

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

  .footer-main {
    grid-template-columns: 1.2fr repeat(3, .8fr);
    gap: 30px;
  }
}

@media (max-width: 920px) {
  :root { --container: min(100% - 36px, 820px); }

  .site-header { height: 80px; }
  .header-inner { grid-template-columns: 1fr auto; }
  .desktop-nav,
  .header-action,
  .brand-copy { display: none; }
  .brand-mark { width: 44px; height: 44px; flex-basis: 44px; }
  .nav-toggle { display: grid; }

  .home-hero {
    min-height: auto;
    padding: 74px 0 70px;
  }

  .home-hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .home-hero-copy { max-width: 760px; }
  .hero-collage {
    width: min(100%, 580px);
    min-height: 560px;
    justify-self: center;
    transform: none;
  }

  .section { padding: 92px 0; }
  .section--compact { padding: 70px 0; }
  .section-head { grid-template-columns: 1fr; gap: 22px; }

  .experience-grid { grid-template-columns: 1fr; }
  .experience-card { min-height: 520px; }

  .story-grid {
    grid-template-columns: 1fr;
    gap: 62px;
  }
  .story-media { width: min(100%, 680px); }

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

  .gallery-grid {
    grid-template-columns: repeat(8, 1fr);
  }
  .gallery-item { grid-column: span 4; }
  .gallery-item--wide { grid-column: span 8; }

  .event-feature { grid-template-columns: 1fr; }
  .event-feature-media { min-height: 480px; }

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

  .location-panel { grid-template-columns: 1fr; }
  .location-media { min-height: 450px; }

  .cta-band-inner { grid-template-columns: 1fr; }
  .cta-band-inner .button { justify-self: start; }

  .footer-main {
    grid-template-columns: 1.2fr 1fr 1fr;
  }
  .footer-brand { grid-column: 1 / -1; }

  .filter-bar { top: 91px; }
}

@media (max-width: 680px) {
  :root { --container: calc(100% - 24px); }

  body { font-size: 15px; }
  .topbar { font-size: .56rem; letter-spacing: .16em; }

  .display-title {
    font-size: clamp(3.4rem, 17vw, 5.4rem);
    line-height: .96;
  }

  .section-title {
    font-size: clamp(3rem, 14vw, 4.5rem);
  }

  .home-hero::before,
  .home-hero::after { display: none; }

  .home-hero {
    padding-top: 62px;
  }

  .home-hero .eyebrow { margin-bottom: 25px; }
  .home-hero .lead { margin-top: 25px; }
  .home-hero .button-row { display: grid; max-width: 260px; }
  .home-hero .button { width: 100%; }
  .hero-facts { gap: 15px 22px; margin-top: 38px; }

  .hero-collage {
    min-height: 470px;
    margin-top: 18px;
  }
  .hero-collage::before {
    top: 22px;
    left: 0;
    width: 330px;
    height: 330px;
  }
  .hero-collage::after {
    top: 66px;
    left: 50px;
    width: 260px;
    height: 350px;
  }
  .collage-card { border-width: 5px; border-radius: 18px; }
  .collage-card--one { top: 0; right: 6px; width: 210px; height: 260px; }
  .collage-card--two { bottom: 8px; left: 4px; width: 190px; height: 245px; }
  .collage-card--three { right: 0; bottom: 28px; width: 160px; height: 195px; }
  .rating-badge {
    right: 68px;
    bottom: 177px;
    min-width: 152px;
    padding: 14px 15px;
  }
  .rating-badge strong { font-size: 1.7rem; }

  .page-hero { min-height: 520px; }
  .page-hero-copy { padding: 76px 0; }
  .page-hero::after {
    background: linear-gradient(90deg, rgba(45,44,42,.86), rgba(45,44,42,.54));
  }

  .section { padding: 78px 0; }
  .section--compact { padding: 58px 0; }
  .section-head { margin-bottom: 38px; }

  .experience-card { min-height: 450px; }
  .experience-card-content { padding: 27px; }

  .story-media { min-height: 510px; }
  .story-image-main { width: 86%; height: 430px; }
  .story-image-small { width: 48%; height: 230px; }

  .teaser-grid,
  .menu-grid { grid-template-columns: 1fr; }
  .menu-card-media { aspect-ratio: 5 / 4; }
  .menu-card-description { min-height: auto; }

  .filter-bar {
    top: 86px;
    margin-inline: -4px;
    border-radius: 18px;
  }

  .gallery-grid {
    grid-auto-rows: auto;
    grid-template-columns: 1fr;
  }
  .gallery-item,
  .gallery-item--wide,
  .gallery-item--tall,
  .gallery-item--short {
    min-height: 360px;
    grid-column: auto;
    grid-row: auto;
  }
  .gallery-item--tall { min-height: 520px; }
  .gallery-item--short { min-height: 300px; }

  .services-grid,
  .steps-grid,
  .rating-grid,
  .review-grid,
  .review-themes {
    grid-template-columns: 1fr;
  }

  .service-card { min-height: 340px; padding: 28px; }
  .service-card h3 { margin-top: 58px; font-size: 2.4rem; }
  .service-card-icon { top: 28px; right: 28px; }

  .event-feature-media { min-height: 390px; }
  .event-feature-copy { padding: 42px 28px 48px; }

  .step-card { padding-inline: 0; }

  .rating-card { grid-template-columns: 1fr; gap: 20px; }
  .rating-score { font-size: 4.7rem; }
  .review-card { min-height: 300px; }

  .location-copy { padding: 40px 26px; }
  .location-media { min-height: 410px; }
  .location-label { display: block; }
  .location-label span { margin-top: 4px; }

  .cta-band { padding: 78px 0; }
  .cta-band-inner .button { width: 100%; }

  .footer-main { grid-template-columns: 1fr 1fr; gap: 38px 24px; padding-top: 64px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }

  .floating-booking {
    right: 12px;
    bottom: 12px;
    width: 52px;
    justify-content: center;
    padding: 0;
  }
  .floating-booking span { display: none; }

  .modal { padding: 10px; }
  .modal-dialog { max-height: calc(100dvh - 20px); border-radius: 21px; }
  .booking-form { grid-template-columns: 1fr; }
  .form-field--full,
  .booking-form .button,
  .form-privacy { grid-column: auto; }
  .menu-modal-layout { grid-template-columns: 1fr; }
  .menu-modal-image { min-height: 320px; max-height: 42dvh; }
  .menu-modal-copy { padding: 38px 26px 42px; }
  .lightbox-caption { display: none; }

  .faq-list summary { font-size: 1.45rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}


/* Nuova palette: Dream Catcher / Veronese Peach / Bon Voyage / Toasted Nut */
body {
  background:
    radial-gradient(circle at 8% 3%, rgba(255,255,255,.78), transparent 28%),
    radial-gradient(circle at 90% 9%, rgba(140,174,183,.18), transparent 25%),
    var(--cream);
}

::selection {
  background: var(--veronese-peach);
  color: var(--ink);
}

:focus-visible {
  outline-color: var(--bon-voyage);
}

.section--sand {
  background: linear-gradient(135deg, rgba(234,192,168,.34), rgba(230,235,234,.9));
}

.eyebrow {
  color: var(--oiled-teak);
}

.eyebrow--light {
  color: var(--veronese-peach);
}

.site-header {
  background: rgba(230,235,234,.9);
}

.site-header.is-scrolled {
  background: rgba(248,250,249,.95);
}

.desktop-nav a,
.hero-facts {
  color: var(--oiled-teak);
}

.nav-toggle,
.menu-card-badge,
.filter-bar,
.modal-close {
  background: rgba(248,250,249,.9);
}

.button--dark:hover,
.floating-booking:hover {
  border-color: var(--oiled-teak);
  background: var(--oiled-teak);
  color: var(--ivory);
}

.home-hero::before,
.hero-collage::before,
.story-media::before {
  border-color: rgba(140,174,183,.42);
}

.home-hero::after {
  background: rgba(234,192,168,.56);
}

.hero-collage::after {
  background: linear-gradient(160deg, rgba(234,192,168,.88), rgba(140,174,183,.34));
}

.hero-facts li::before {
  background: var(--toasted-nut);
}

.rating-badge {
  border: 1px solid rgba(234,192,168,.22);
  background: rgba(45,44,42,.96);
}

.page-hero::after {
  background:
    linear-gradient(90deg, rgba(45,44,42,.88) 0%, rgba(45,44,42,.68) 50%, rgba(45,44,42,.38) 100%),
    linear-gradient(0deg, rgba(45,44,42,.3), rgba(45,44,42,.18));
}

.experience-card::after {
  background: linear-gradient(0deg, rgba(45,44,42,.94), rgba(45,44,42,.04) 65%);
}

.experience-number,
.theme-card span,
.footer-column h3 {
  color: var(--veronese-peach);
}

.story-icon,
.service-card-number,
.step-card span,
.faq-list summary::after,
.mobile-nav a::after {
  color: var(--bon-voyage);
}

.menu-card:hover {
  border-color: rgba(140,174,183,.58);
}

.menu-card-badge {
  color: var(--ink);
}

.filter-button:hover,
.filter-button.is-active {
  background: var(--bon-voyage);
  color: var(--ink);
}

.service-card,
.rating-card {
  background: rgba(248,250,249,.74);
}

.review-card,
.location-panel,
.menu-card,
.modal-dialog {
  background: var(--ivory);
}

.cta-band {
  background: linear-gradient(118deg, var(--bon-voyage) 0%, var(--dream-catcher) 52%, var(--veronese-peach) 100%);
  color: var(--ink);
}

.cta-band p {
  color: rgba(45,44,42,.72);
}

.cta-band::before,
.cta-band::after {
  border-color: rgba(45,44,42,.13);
}

.cta-band .button--light {
  border-color: rgba(45,44,42,.12);
  background: rgba(248,250,249,.9);
  color: var(--ink);
}

.cta-band .button--light:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--ivory);
}

.site-footer {
  background: var(--shoe-wax);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--bon-voyage);
  box-shadow: 0 0 0 3px rgba(140,174,183,.18);
}

.modal {
  background: rgba(45,44,42,.76);
}

.lightbox-media {
  background: var(--shoe-wax);
}

@media (max-width: 680px) {
  .page-hero::after {
    background: linear-gradient(90deg, rgba(45,44,42,.9), rgba(45,44,42,.58));
  }
}

/* Gallery compatta: anteprime contenute per preservare la nitidezza */
body[data-page="gallery"] .gallery-grid {
  grid-auto-flow: row;
  grid-auto-rows: auto;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

body[data-page="gallery"] .gallery-item,
body[data-page="gallery"] .gallery-item--wide,
body[data-page="gallery"] .gallery-item--tall,
body[data-page="gallery"] .gallery-item--short {
  min-height: 0;
  aspect-ratio: 4 / 5;
  grid-column: auto;
  grid-row: auto;
  padding: 0;
  border-radius: 16px;
}

@media (max-width: 1120px) {
  body[data-page="gallery"] .gallery-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  body[data-page="gallery"] .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  body[data-page="gallery"] .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  body[data-page="gallery"] .gallery-item,
  body[data-page="gallery"] .gallery-item--wide,
  body[data-page="gallery"] .gallery-item--tall,
  body[data-page="gallery"] .gallery-item--short {
    min-height: 0;
    border-radius: 13px;
  }
}

/* Logo ufficiale e contenuti professionali del menù */
.footer-brand .brand-logo {
  width: 238px;
  filter: brightness(0) invert(1) drop-shadow(0 10px 18px rgba(0, 0, 0, .18));
}

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

.drink-category {
  min-height: 170px;
  padding: 22px;
  border: 1px solid rgba(45,44,42,.12);
  border-radius: 18px;
  background: rgba(230,235,234,.48);
}

.drink-category:nth-child(3n + 2) {
  background: rgba(234,192,168,.24);
}

.drink-category:nth-child(3n) {
  background: rgba(140,174,183,.2);
}

.drink-category__heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--line);
}

.drink-category h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 500;
  line-height: 1.1;
}

.drink-category__heading p,
.drink-category__items {
  color: var(--ink-soft);
  font-size: .79rem;
  line-height: 1.6;
}

.drink-category__heading p {
  margin: 5px 0 0;
}

.drink-category__heading strong {
  color: var(--toasted-nut);
  font-size: .86rem;
  white-space: nowrap;
}

.drink-category__items {
  margin: 14px 0 0;
}

.wine-title-row {
  align-items: flex-end;
  margin-bottom: 38px;
}

.wine-title-row .eyebrow {
  margin-bottom: 13px;
}

.wine-title-row > p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: var(--ink-soft);
  font-size: .78rem;
}

.wine-entry-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.wine-entry {
  padding: 20px;
  border: 1px solid rgba(45,44,42,.12);
  border-radius: 16px;
  background: rgba(248,250,249,.86);
}

.wine-entry--detailed {
  border-top: 3px solid var(--bon-voyage);
}

.wine-entry__heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: start;
}

.wine-entry__heading > div {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: start;
}

.wine-entry__heading h4 {
  margin: 1px 0 0;
  color: var(--ink);
  font-size: .96rem;
  line-height: 1.42;
}

.wine-entry__heading > strong {
  color: var(--toasted-nut);
  font-size: .92rem;
  white-space: nowrap;
}

.allergen-number {
  width: 25px;
  height: 25px;
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--ivory);
  font-size: .62rem;
  font-weight: 800;
}

.wine-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px 18px;
  margin: 18px 0 0;
  padding-top: 15px;
  border-top: 1px solid var(--line);
}

.wine-facts dt {
  color: var(--ink-soft);
  font-size: .56rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.wine-facts dd {
  margin: 2px 0 0;
  font-size: .78rem;
  line-height: 1.4;
}

.wine-notes {
  margin: 16px 0 0;
  padding: 13px 15px;
  border-left: 3px solid var(--veronese-peach);
  border-radius: 0 10px 10px 0;
  background: rgba(234,192,168,.18);
  color: var(--ink-soft);
  font-size: .81rem;
  line-height: 1.62;
}

.wine-by-glass {
  padding: 24px 28px;
  border-radius: 18px;
  background: var(--ink);
  color: var(--ivory);
}

.wine-by-glass h3 {
  margin: 0;
  color: var(--veronese-peach);
}

.wine-by-glass p {
  margin: 5px 0 0;
  color: rgba(248,250,249,.74);
  font-size: .86rem;
}

.allergen-section {
  overflow: hidden;
  border: 0;
  background: var(--ink);
  color: var(--ivory);
}

.price-menu-section.allergen-section h2 {
  color: var(--ivory);
}

.allergen-section__heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 430px);
  gap: 34px;
  align-items: end;
  margin-bottom: 26px;
}

.allergen-section__heading h2 {
  margin: 0;
}

.allergen-section__heading > p {
  margin: 0;
  color: rgba(248,250,249,.7);
  font-size: .86rem;
  line-height: 1.65;
}

.allergen-callout {
  padding: 22px 24px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 15px;
  background: rgba(255,255,255,.055);
}

.allergen-callout strong {
  font-family: var(--serif);
  font-size: 1.16rem;
  font-weight: 500;
}

.allergen-callout p {
  margin: 7px 0 0;
  color: rgba(248,250,249,.68);
  font-size: .8rem;
  line-height: 1.65;
}

.allergen-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 28px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  background: rgba(255,255,255,.12);
}

.allergen-grid article {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 15px;
  padding: 18px 20px;
  background: #353432;
}

.allergen-grid article > span,
.category-row span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--veronese-peach);
  color: var(--ink);
  font-size: .7rem;
  font-weight: 800;
}

.allergen-grid h3 {
  margin: 0;
  color: var(--ivory);
  font-family: var(--sans);
  font-size: .84rem;
  font-weight: 700;
}

.allergen-grid p {
  margin: 3px 0 0;
  color: rgba(248,250,249,.62);
  font-size: .73rem;
  line-height: 1.55;
}

.category-map {
  display: grid;
  grid-template-columns: minmax(240px, .8fr) minmax(0, 1.2fr);
  gap: 34px;
  margin-top: 28px;
  padding: 26px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
}

.category-map__intro h3 {
  margin: 0;
  color: var(--ivory);
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 500;
}

.category-map__intro > p:last-child {
  margin: 8px 0 0;
  color: rgba(248,250,249,.62);
  font-size: .77rem;
  line-height: 1.6;
}

.category-row {
  display: grid;
  grid-template-columns: minmax(120px, 1fr) minmax(0, 1.4fr);
  gap: 18px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.category-row:last-child {
  border-bottom: 0;
}

.category-row > strong {
  font-size: .78rem;
}

.category-row > div {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.category-row span {
  width: 25px;
  height: 25px;
  font-size: .61rem;
}

@media (max-width: 920px) {
  .brand-logo {
    width: 172px;
  }

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

@media (max-width: 680px) {
  .brand-logo {
    width: 148px;
  }

  .footer-brand .brand-logo {
    width: 210px;
  }

  .drink-category-grid,
  .allergen-grid,
  .allergen-section__heading,
  .category-map {
    grid-template-columns: 1fr;
  }

  .drink-category {
    min-height: 0;
  }

  .wine-entry {
    padding: 17px;
  }

  .wine-entry__heading {
    gap: 12px;
  }

  .wine-facts {
    grid-template-columns: 1fr;
  }

  .wine-entry-list {
    grid-template-columns: 1fr;
  }

  .category-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}
