:root {
  --bg: #f9f6f5;
  --accent: #564040;
  --text: #7b7b7b;
  --deep: #2d2525;
  --line: rgba(86, 64, 64, 0.25);
  --shadow: 0 32px 70px rgba(66, 51, 51, 0.12);
  --soft-shadow: 0 10px 28px rgba(66, 51, 51, 0.12);
  --glass: rgba(255, 255, 255, 0.7);
  --border-soft: rgba(86, 64, 64, 0.14);
  --radius-card: 18px;
}

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

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top, #fbf9f8 0%, #f4efee 45%, #f1ecea 100%);
  line-height: 1.6;
  letter-spacing: 0.01em;
  scroll-behavior: smooth;
  position: relative;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

body::before {
  background-image:
    radial-gradient(circle at 8% 18%, rgba(86, 64, 64, 0.08), transparent 38%),
    radial-gradient(circle at 88% 12%, rgba(86, 64, 64, 0.06), transparent 35%),
    radial-gradient(circle at 12% 78%, rgba(86, 64, 64, 0.05), transparent 40%),
    radial-gradient(circle at 92% 72%, rgba(86, 64, 64, 0.07), transparent 36%);
}

body::after {
  background-image:
    linear-gradient(120deg, rgba(86, 64, 64, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(86, 64, 64, 0.06) 1px, transparent 1px),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='140' height='140'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='.45'/></svg>");
  background-size: 180px 180px, 240px 240px, 140px 140px;
  opacity: 0.14;
}

main,
header,
footer {
  position: relative;
  z-index: 1;
}

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

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

.container {
  width: min(1200px, 90vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  background: rgba(249, 246, 245, 0.9);
  backdrop-filter: blur(12px);
  z-index: 10;
  border-bottom: 1px solid rgba(86, 64, 64, 0.08);
}

.site-header::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(86, 64, 64, 0.25), transparent);
  opacity: 0.6;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}

.valentine-page .header-inner {
  justify-content: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--accent);
  font-family: "Cinzel", serif;
  letter-spacing: 0.08em;
}

.logo-image {
  height: 48px;
  width: auto;
  display: block;
}

.logo-mark {
  border: 1px solid var(--accent);
  padding: 8px 10px;
  font-size: 12px;
}

.logo-text small {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text);
}

.nav {
  display: flex;
  gap: 28px;
  align-items: center;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.nav a,
.nav-link {
  position: relative;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(86, 64, 64, 0.5), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}

.nav a:hover::after {
  transform: scaleX(1);
}

.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  min-width: 220px;
  padding: 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(86, 64, 64, 0.16);
  box-shadow: var(--soft-shadow);
  display: grid;
  gap: 10px;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 20;
}

.nav-dropdown-menu::before {
  content: "";
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  height: 14px;
}

.nav-dropdown-menu a {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-cta {
  padding: 10px 20px;
  border: 1px solid var(--accent);
  color: var(--accent);
  transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

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

/* ── Language switcher ── */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: 6px;
  padding-left: 14px;
  border-left: 1px solid rgba(86, 64, 64, 0.12);
}

.lang-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 6px;
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
  transition: opacity 0.2s ease;
  opacity: 0.45;
  padding: 0;
}

.lang-btn:hover { opacity: 0.8; background: rgba(86, 64, 64, 0.05); }
.lang-btn.active { opacity: 1; background: rgba(86, 64, 64, 0.08); }

.lang-mobile {
  display: flex;
  gap: 6px;
  padding: 16px 0 8px;
  justify-content: center;
}

.lang-mobile .lang-btn {
  width: 40px;
  height: 40px;
  font-size: 20px;
  border: 1px solid rgba(86, 64, 64, 0.1);
  border-radius: 8px;
}

.lang-mobile .lang-btn.active {
  border-color: var(--accent);
  background: rgba(139, 111, 71, 0.08);
}

.hero {
  position: relative;
  padding: 110px 0 190px;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

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

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(246, 241, 240, 0.92), rgba(246, 241, 240, 0.55));
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.1rem, 3.2vw, 3.2rem);
  color: var(--deep);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin: 14px 0 18px;
}

.eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: var(--accent);
}

.script {
  font-family: "Great Vibes", cursive;
  font-size: 2.4rem;
  color: var(--accent);
  margin: 0 0 18px;
}

.lead {
  max-width: 420px;
  font-size: 16px;
}

.hero-actions {
  margin-top: 24px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-title {
  opacity: 0;
  transform: translateY(16px);
  animation: heroFade 1.2s ease forwards;
}

.hero-cta {
  opacity: 0;
  transform: translateY(12px);
  animation: heroFade 1.2s ease forwards;
  animation-delay: 0.25s;
}

.hero-overlay {
  position: relative;
  left: 0;
  bottom: auto;
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 18px 22px;
  background: rgba(249, 246, 245, 0.9);
  border: 1px solid rgba(86, 64, 64, 0.16);
  border-radius: 14px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
  max-width: min(620px, 90vw);
  z-index: 2;
}

.hero-overlay span {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--accent);
  margin-bottom: 6px;
}

.hero-overlay strong {
  display: block;
  color: var(--deep);
  font-weight: 500;
  font-size: 13px;
}

.btn {
  padding: 12px 28px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  border: 1px solid var(--accent);
  transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
  border-radius: 999px;
  position: relative;
  overflow: hidden;
}

.btn.primary {
  background: var(--accent);
  color: #fff;
}

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

.btn.ghost:hover {
  background: var(--accent);
  color: #fff;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: translateX(-120%);
  transition: transform 0.6s ease;
}

.btn:hover::after {
  transform: translateX(120%);
}

.hero-media {
  position: relative;
  min-height: 420px;
}

.image-frame {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
}

.image-frame img {
  display: block;
  width: 100%;
  height: auto;
}

.image-frame::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  pointer-events: none;
  opacity: 0.5;
}

.image-frame.square::after,
.image-frame.wide::after,
.image-frame.large::after {
  border-color: rgba(255, 255, 255, 0.25);
}

.image-frame.large img {
  height: 460px;
  width: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.02);
}

.image-frame.floating {
  position: absolute;
  width: 200px;
  right: -10px;
  bottom: -20px;
  border: 8px solid var(--bg);
  box-shadow: var(--soft-shadow);
}

.chi-siamo-hero .hero-grid {
  grid-template-columns: 1fr 1.4fr;
}

.chi-siamo-hero .image-frame.large img {
  height: 520px;
  object-position: center 20%;
}

.image-frame.square img,
.image-frame.wide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-frame.square {
  width: min(420px, 90vw);
  height: min(420px, 90vw);
  margin: 0 auto;
}

.story-media {
  display: flex;
  justify-content: center;
}

.image-frame.wide img {
  height: 360px;
}

.hero-lines {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: space-evenly;
  pointer-events: none;
}

.hero-lines span {
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent,
    var(--line),
    transparent
  );
  opacity: 0.35;
  animation: lineGlow 6s ease-in-out infinite;
  transform-origin: center;
}

.hero-lines span:nth-child(2) {
  animation-delay: 1.2s;
}

.hero-lines span:nth-child(3) {
  animation-delay: 2.4s;
}

.hero-lines {
  transform: translateY(var(--line-shift, 0px));
  transition: transform 0.4s ease;
}

.section {
  padding: 120px 0;
  position: relative;
  contain: layout style;
  content-visibility: auto;
  contain-intrinsic-size: auto 800px;
}

.section::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 42px;
  width: min(120px, 30vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(86, 64, 64, 0.2), transparent);
  transform: translateX(-50%);
  opacity: 0.8;
}

.section::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 38px;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(86, 64, 64, 0.35);
  box-shadow: 0 0 0 6px rgba(86, 64, 64, 0.05);
  transform: translateX(-50%);
}

.section h2 {
  font-family: "Cinzel", serif;
  letter-spacing: 0.48em;
  text-transform: uppercase;
  font-size: 1.9rem;
  color: var(--deep);
  margin-bottom: 10px;
  position: relative;
}

.section h2::after {
  content: "";
  display: block;
  width: 90px;
  height: 1px;
  margin-top: 12px;
  background: linear-gradient(90deg, transparent, rgba(86, 64, 64, 0.35), transparent);
}

.subtitle {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  color: var(--accent);
  letter-spacing: 0.08em;
  margin-bottom: 24px;
  position: relative;
  padding-left: 18px;
  font-size: 1.05rem;
}

.section-iconline {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: -10px 0 26px;
  color: var(--accent);
}

.icon-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.icon-label svg {
  width: 20px;
  height: 20px;
}

.section-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  width: min(680px, 88vw);
  margin: 0 auto;
  padding: 22px 0;
  color: rgba(86, 64, 64, 0.5);
}

.section-divider > span {
  flex: 1;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(86, 64, 64, 0.35),
    transparent
  );
}

.section-divider .divider-icon {
  flex: 0;
  width: 40px;
  height: 16px;
  display: grid;
  place-items: center;
}

.section-divider .divider-icon svg {
  width: 40px;
  height: 12px;
}

.subtitle::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(86, 64, 64, 0.35);
  transform: translateY(-50%);
}

.story-grid,
.experience-grid {
  display: grid;
  gap: 60px;
  align-items: start;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.menu-grid {
  display: grid;
  gap: 60px;
  align-items: center;
  grid-template-columns: 1fr 1fr;
}

@media (max-width: 768px) {
  .menu-grid {
    grid-template-columns: 1fr;
  }

  .menu-image {
    order: -1;
  }
}

.story {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), #f4efee);
}

.signature {
  margin-top: 30px;
  padding-left: 20px;
  border-left: 1px solid var(--line);
}

.signature span {
  display: block;
  font-family: "Cinzel", serif;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--accent);
}

.signature em {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  color: var(--deep);
}

.menu {
  background: linear-gradient(180deg, #f6f1f0, #f4efee);
}

.menu-hero .hero-media .image-frame.large img {
  height: 440px;
}

.contact-hero .hero-media .image-frame.large img {
  height: 460px;
}

.contact-section {
  background: #f9f6f5;
}

.contact-grid {
  display: grid;
  gap: 60px;
  align-items: center;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.contact-card {
  padding: 32px;
  border-radius: var(--radius-card);
  border: 1px solid rgba(86, 64, 64, 0.16);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--soft-shadow);
  display: grid;
  gap: 18px;
}

.contact-list {
  display: grid;
  gap: 14px;
}

.contact-item span {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--accent);
  margin-bottom: 6px;
}

.contact-item strong,
.contact-item a {
  color: var(--deep);
  font-weight: 500;
}

.hours-list {
  display: grid;
  gap: 10px;
}

.hours-list strong {
  display: block;
  color: var(--deep);
  font-weight: 500;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-media {
  display: grid;
  gap: 18px;
}

.contact-media .image-frame img {
  height: 520px;
  width: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.05);
}

.contact-note {
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid rgba(86, 64, 64, 0.14);
  background: rgba(249, 246, 245, 0.85);
}

.contact-reservation {
  background: linear-gradient(180deg, #f6f1f0, #f4efee);
}

.reservation-grid {
  display: grid;
  gap: 60px;
  align-items: center;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.reservation-card {
  padding: 36px;
  border-radius: var(--radius-card);
  border: 1px solid rgba(86, 64, 64, 0.18);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
}

.reservation-card .subtitle {
  margin-bottom: 0;
}

.reservation-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

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

.image-mosaic .image-frame {
  height: 220px;
}

.image-mosaic .image-frame.tall {
  height: 320px;
  grid-row: span 2;
}

.image-mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.05);
}

.blog-page {
  background: #f9f6f5;
}

.blog-page-header {
  display: grid;
  gap: 24px;
  align-items: center;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-bottom: 36px;
}

.blog-page-lead {
  max-width: 560px;
}

.blog-page-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.blog-page-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-card);
  border: 1px solid rgba(86, 64, 64, 0.14);
  box-shadow: var(--soft-shadow);
  overflow: hidden;
  display: grid;
}

.blog-page-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.05);
}

.blog-page-card-content {
  padding: 22px 24px;
  display: grid;
  gap: 12px;
}

.blog-page-card-meta {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--accent);
}

.blog-page-card h3 {
  margin: 0;
  color: var(--deep);
}

.blog-page-card p {
  margin: 0;
  color: var(--text);
}

.article-hero .hero-media .image-frame.large img {
  height: 460px;
}

.article-body {
  background: #f9f6f5;
}

.article-grid {
  display: grid;
  gap: 60px;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 320px);
  align-items: start;
}

.article-content {
  display: grid;
  gap: 20px;
}

.article-content h2 {
  margin: 12px 0 0;
}

.article-highlight {
  padding: 20px 22px;
  border-radius: 16px;
  border: 1px solid rgba(86, 64, 64, 0.16);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--soft-shadow);
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  color: var(--deep);
}

.article-side {
  position: sticky;
  top: 120px;
  display: grid;
  gap: 18px;
}

.article-card {
  padding: 18px 20px;
  border-radius: 14px;
  border: 1px solid rgba(86, 64, 64, 0.16);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--soft-shadow);
  display: grid;
  gap: 10px;
}

.article-card span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--accent);
}

.article-card strong {
  color: var(--deep);
  font-weight: 500;
}

.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.article-tags span {
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(86, 64, 64, 0.18);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--accent);
  background: rgba(255, 255, 255, 0.7);
}

.article-footer {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 960px) {
  .article-grid {
    grid-template-columns: 1fr;
  }

  .article-side {
    position: static;
  }
}

.menu-page {
  background: #f9f6f5;
}

.menu-page.alt {
  background: linear-gradient(180deg, #f6f1f0, #f4efee);
}

.menu-page-grid {
  display: grid;
  gap: 60px;
  align-items: center;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.menu-page-grid.reverse {
  direction: rtl;
}

.menu-page-grid.reverse > * {
  direction: ltr;
}

.menu-page-portrait img {
  height: 520px;
  width: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.05);
}

.menu-page-content {
  display: grid;
  gap: 16px;
}

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

.menu-list li {
  display: grid;
  gap: 6px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(86, 64, 64, 0.12);
}

.menu-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.menu-list span {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  color: var(--deep);
}

.menu-list em {
  font-style: normal;
  font-family: "Cinzel", serif;
  letter-spacing: 0.18em;
  color: var(--accent);
  justify-self: start;
}

.menu-list small {
  color: var(--text);
  font-size: 13px;
}

.menu-degustazione {
  background: linear-gradient(180deg, #f9f6f5, #f3eeec);
}

.menu-degustazione-card {
  display: grid;
  gap: 36px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: start;
  padding: 40px;
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(86, 64, 64, 0.16);
  box-shadow: var(--soft-shadow);
}

.menu-list.condensed li {
  padding-bottom: 10px;
}

.allergeni {
  background: #f9f6f5;
}

.allergeni-text {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  font-size: 13px;
  letter-spacing: 0.08em;
}

.wine-hero .hero-media .image-frame.large img {
  height: 460px;
}

.wine-index {
  background: linear-gradient(180deg, #f9f6f5, #f3eeec);
}

.wine-index-header {
  display: grid;
  gap: 24px;
  align-items: center;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.wine-index-note {
  padding: 18px 20px;
  border-radius: 16px;
  border: 1px solid rgba(86, 64, 64, 0.16);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--soft-shadow);
  display: grid;
  gap: 6px;
}

.wine-index-note span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.26em;
  color: var(--accent);
}

.wine-index-note strong {
  color: var(--deep);
  font-weight: 500;
}

.wine-index-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.wine-index-links a {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(86, 64, 64, 0.14);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  background: rgba(255, 255, 255, 0.75);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.wine-index-links a:hover {
  transform: translateY(-1px);
  box-shadow: var(--soft-shadow);
}

.wine-index-groups {
  margin-top: 24px;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.wine-index-group {
  padding: 22px;
  border-radius: 20px;
  border: 1px solid rgba(86, 64, 64, 0.12);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 14px 36px rgba(66, 51, 51, 0.08);
  display: grid;
  gap: 14px;
  text-align: center;
  align-content: start;
}

.wine-index-group > span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.26em;
  color: var(--deep);
  font-weight: 500;
}

.wine-index-group .wine-index-links {
  margin-top: 0;
  justify-content: center;
}

.wine-category {
  background: #f9f6f5;
}

.wine-category.alt {
  background: linear-gradient(180deg, #f6f1f0, #f4efee);
}

.wine-category-grid {
  display: grid;
  gap: 40px;
  align-items: start;
  grid-template-columns: 1fr;
}

.wine-category-text {
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  gap: 16px 40px;
}

.wine-category-text h2 {
  width: 100%;
}

.wine-category-text .subtitle {
  width: 100%;
  margin-top: -10px;
}

.wine-category-text > p:not(.subtitle) {
  flex: 1;
  min-width: 200px;
}

.wine-category-note {
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid rgba(86, 64, 64, 0.16);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--soft-shadow);
  display: grid;
  gap: 6px;
}

.wine-category-note span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--accent);
}

.wine-category-note strong {
  color: var(--deep);
  font-weight: 500;
}

.wine-category-list {
  columns: 3;
  column-gap: 16px;
}

.wine-category-list .wine-item {
  break-inside: avoid;
  margin-bottom: 12px;
}

.wine-category-list .wine-subcategory {
  column-span: all;
}

.wine-back {
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--deep);
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(86, 64, 64, 0.18);
  background: rgba(255, 255, 255, 0.85);
  transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

.wine-back:hover {
  background: rgba(86, 64, 64, 0.08);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(66, 51, 51, 0.1);
}

.wine-back::before {
  content: "↑";
  font-size: 12px;
}

.wine-item {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(86, 64, 64, 0.14);
  background: rgba(255, 255, 255, 0.85);
}

.wine-item strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  color: var(--deep);
}

.wine-item span {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin-top: 4px;
}

.wine-item em {
  font-style: normal;
  font-family: "Cinzel", serif;
  letter-spacing: 0.16em;
  color: var(--accent);
  white-space: nowrap;
}

.wine-disclaimer {
  background: linear-gradient(180deg, #f9f6f5, #f1ecea);
}

.wine-disclaimer-card {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 24px 30px;
  border-radius: 18px;
  border: 1px solid rgba(86, 64, 64, 0.16);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--soft-shadow);
  display: grid;
  gap: 10px;
}

.wine-disclaimer-card span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--accent);
}

.tasting-full {
  position: relative;
  width: 100%;
  min-height: clamp(520px, 60vw, 720px);
  background-size: cover;
  background-position: center;
  overflow: hidden;
  border-top: 1px solid rgba(86, 64, 64, 0.12);
  border-bottom: 1px solid rgba(86, 64, 64, 0.12);
}

.tasting-full::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(31, 24, 24, 0.82), rgba(31, 24, 24, 0.12));
}

.tasting-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 36px;
  align-items: center;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  padding: clamp(40px, 8vw, 90px) 0;
}

.tasting-copy {
  max-width: 560px;
  display: grid;
  gap: 16px;
  color: #fff;
}

.tasting-cta .tasting-copy h2 {
  color: #fff;
  margin: 0;
}

.tasting-cta .eyebrow {
  color: rgba(255, 255, 255, 0.75);
}

.tasting-cta .lead {
  color: rgba(255, 255, 255, 0.82);
  max-width: 480px;
}

.tasting-cta .cta-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tasting-cta .cta-badges span {
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.08);
}

.tasting-cta .cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.tasting-cta .btn {
  border-color: #fff;
}

.tasting-cta .btn.primary {
  background: #fff;
  color: var(--deep);
}

.tasting-cta .btn.ghost {
  color: #fff;
}

.tasting-panel {
  background: rgba(255, 255, 255, 0.96);
  border-radius: 22px;
  padding: 36px;
  border: 1px solid rgba(86, 64, 64, 0.18);
  box-shadow: 0 50px 120px rgba(45, 37, 37, 0.28);
  display: grid;
  gap: 24px;
}

.tasting-price span {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--accent);
  margin-bottom: 8px;
}

.tasting-price strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.6rem;
  color: var(--deep);
  margin-bottom: 6px;
}

.tasting-price p {
  margin: 0;
  font-size: 14px;
}

.tasting-steps {
  display: grid;
  gap: 14px;
}

.tasting-step {
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(86, 64, 64, 0.14);
  background: rgba(249, 246, 245, 0.8);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.tasting-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--soft-shadow);
}

.step-title {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--accent);
  margin-bottom: 6px;
}

.tasting-step p {
  margin: 0;
  color: var(--deep);
}

.tasting-meta {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.tasting-meta span {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--accent);
  margin-bottom: 6px;
}

.tasting-meta strong {
  color: var(--deep);
  font-weight: 500;
}

.menu-title p {
  max-width: 420px;
}

.menu-highlights {
  display: grid;
  gap: 10px;
  margin: 18px 0 24px;
}

.menu-highlight {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
}

.highlight-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 1px solid rgba(86, 64, 64, 0.4);
  box-shadow: 0 0 0 4px rgba(86, 64, 64, 0.08);
}

.map-section {
  background: linear-gradient(180deg, #f9f6f5, #f1ecea);
  padding: 0;
}

.contact-map-section {
  background: linear-gradient(180deg, #f9f6f5, #f1ecea);
  padding: clamp(60px, 8vw, 100px) 0;
}

.contact-map-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.contact-map-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  color: var(--deep);
  margin: 8px 0 4px;
  font-weight: 400;
}

.contact-map-desc {
  color: var(--body);
  font-size: 14px;
  max-width: 480px;
  margin: 0;
}

.contact-map-section .footer-map-iframe-wrap iframe {
  height: 450px;
}

.map-details {
  display: grid;
  gap: 14px;
}

.map-details span {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.26em;
  color: var(--accent);
  margin-bottom: 6px;
}

.map-details strong {
  color: var(--deep);
  font-weight: 500;
}

.map-visual {
  position: relative;
  min-height: clamp(520px, 60vw, 720px);
  border-radius: 0;
  overflow: hidden;
  background-color: #efe7e5;
  box-shadow: var(--shadow);
  border-top: 1px solid rgba(86, 64, 64, 0.12);
  border-bottom: 1px solid rgba(86, 64, 64, 0.12);
  padding: 80px 0;
}

.map-embed {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  z-index: 0;
  filter: grayscale(0.35) contrast(1.02) saturate(0.85);
  pointer-events: none;
}

.map-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(18, 14, 14, 0.55), rgba(18, 14, 14, 0.05));
  z-index: 1;
}

.map-card {
  position: absolute;
  left: 8%;
  top: 50%;
  transform: translateY(-50%);
  width: min(460px, calc(100% - 48px));
  padding: 28px;
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(86, 64, 64, 0.18);
  box-shadow: 0 32px 70px rgba(66, 51, 51, 0.2);
  display: grid;
  gap: 12px;
  z-index: 2;
  backdrop-filter: blur(6px);
  max-height: calc(100% - 160px);
  overflow: auto;
  box-sizing: border-box;
}

.map-section .map-card {
  left: auto;
  right: clamp(20px, 6vw, 90px);
}

.map-section .map-card-large {
  left: auto;
  right: clamp(20px, 6vw, 90px);
}

.map-section-home .map-card {
  left: 50%;
  right: auto;
  transform: translate(-50%, -50%);
}

.map-photo {
  width: 100%;
  height: 160px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(66, 51, 51, 0.2);
}

.map-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.map-badge {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--accent);
}

.map-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  color: var(--deep);
  margin: 0;
}

.map-card p {
  margin: 0;
}

.map-subtitle {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  color: var(--accent);
}

.map-desc {
  color: var(--deep);
}

.map-meta {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
}

.map-meta span {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--accent);
  margin-bottom: 6px;
}

.map-meta strong {
  color: var(--deep);
  font-weight: 500;
}

.blog {
  background: linear-gradient(180deg, #f9f6f5, #f3eeec);
}

.blog-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.blog-lead {
  max-width: 520px;
  margin: 0;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-slider {
  overflow: hidden;
  position: relative;
  padding-bottom: 12px;
}

.blog-track {
  display: flex;
  gap: 24px;
  min-width: 100%;
}

.blog-track.is-animated {
  width: max-content;
  animation: blogScroll 48s linear infinite;
  will-change: transform;
}

.blog-slider:hover .blog-track,
.blog-slider:focus-within .blog-track {
  animation-play-state: paused;
}

.blog-card {
  background: rgba(255, 255, 255, 0.92);
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid rgba(86, 64, 64, 0.12);
  box-shadow: var(--soft-shadow);
  display: grid;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.blog-image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.blog-content {
  padding: 22px 22px 26px;
  display: grid;
  gap: 12px;
}

.blog-meta {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--accent);
}

.blog-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  color: var(--deep);
  margin: 0;
}

.blog-card p {
  margin: 0;
}

.blog-link {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 11px;
  color: var(--accent);
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 40px 90px rgba(66, 51, 51, 0.2);
}

@keyframes blogScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-1 * var(--blog-scroll-distance, 0px)));
  }
}

.awards {
  background: linear-gradient(180deg, #f9f6f5, #f3eeec);
}

.awards-header {
  display: grid;
  gap: 16px;
  margin-bottom: 28px;
}

.awards-lead {
  max-width: 520px;
  margin: 0;
}

.awards-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.about-intro {
  background: linear-gradient(180deg, #f9f6f5, #f3eeec);
}

.about-grid {
  display: grid;
  gap: 48px;
  align-items: center;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.about-text {
  display: grid;
  gap: 16px;
}

.about-highlights {
  display: grid;
  gap: 12px;
  margin-top: 8px;
}

.about-highlights div {
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(86, 64, 64, 0.14);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--soft-shadow);
  display: grid;
  gap: 6px;
}

.about-highlights span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--accent);
}

.about-highlights strong {
  color: var(--deep);
  font-weight: 500;
}

.about-mosaic {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 160px;
}

.about-mosaic .image-frame {
  height: 100%;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-mosaic .image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-mosaic .tall {
  grid-row: span 2;
}

.about-mosaic .wide {
  grid-column: span 2;
}

.about-stats {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  margin-top: 36px;
}

.about-stat {
  padding: 18px 20px;
  border-radius: 16px;
  border: 1px solid rgba(86, 64, 64, 0.14);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--soft-shadow);
  display: grid;
  gap: 6px;
  text-align: center;
}

.about-stat span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--accent);
}

.about-stat strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  color: var(--deep);
}

.about-stat p {
  margin: 0;
}

.team-bios {
  background: #f9f6f5;
}

.team-bios-header {
  max-width: 620px;
  display: grid;
  gap: 12px;
  margin-bottom: 28px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.team-card {
  text-align: center;
  display: grid;
  gap: 10px;
}

.team-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid rgba(86, 64, 64, 0.1);
  box-shadow: var(--soft-shadow);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.team-card:hover img {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(66, 51, 51, 0.18);
}

.team-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
  color: var(--deep);
  margin: 4px 0 0;
}

.team-role {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--accent);
}

.project {
  background: linear-gradient(180deg, #f6f1f0, #f3eeec);
}

.project-grid {
  display: grid;
  gap: 50px;
  align-items: center;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.project-text p {
  max-width: 460px;
}

.award-card {
  padding: 22px 24px;
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(86, 64, 64, 0.12);
  box-shadow: var(--soft-shadow);
  display: grid;
  gap: 8px;
}

.award-logo {
  width: 64px;
  height: 64px;
  color: var(--accent);
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(86, 64, 64, 0.18);
  background: rgba(249, 246, 245, 0.8);
  box-shadow: inset 0 0 0 6px rgba(86, 64, 64, 0.04);
  overflow: hidden;
}

.award-logo svg {
  width: 40px;
  height: 40px;
}

.award-logo img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.award-card span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--accent);
}

.award-card strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  color: var(--deep);
}

.award-card p {
  margin: 0;
  font-size: 13px;
}

.booking-page {
  background: linear-gradient(180deg, #f9f6f5, #f1ecea);
}

.booking-page.section {
  padding: 88px 0;
}

.booking-shell {
  display: grid;
  gap: 24px;
}

.booking-layout {
  display: grid;
  gap: 20px;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  align-items: start;
}

.booking-panel {
  display: grid;
  gap: 14px;
}

.booking-aside {
  display: grid;
  gap: 12px;
}

.booking-photo {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(86, 64, 64, 0.14);
  box-shadow: var(--shadow);
  min-height: 220px;
}

.booking-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.booking-info-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 18px;
  padding: 18px;
  border: 1px solid rgba(86, 64, 64, 0.14);
  box-shadow: var(--shadow);
  display: grid;
  gap: 10px;
}

.booking-highlights {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
  color: var(--text);
}

.booking-highlights li {
  position: relative;
  padding-left: 18px;
}

.booking-highlights li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
}

.booking-contact {
  display: grid;
  gap: 6px;
  font-weight: 500;
}

.booking-contact a {
  color: var(--deep);
  text-decoration: none;
}

.booking-hours {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
  color: var(--text);
  font-size: 14px;
}

.booking-header {
  display: grid;
  gap: 10px;
  max-width: 720px;
}

.booking-progress {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--accent);
}

.booking-step {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(86, 64, 64, 0.18);
  background: rgba(255, 255, 255, 0.7);
}

.booking-step.is-active {
  background: rgba(86, 64, 64, 0.12);
  color: var(--deep);
  border-color: rgba(86, 64, 64, 0.32);
}

.booking-card {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 20px;
  padding: 26px;
  border: 1px solid rgba(86, 64, 64, 0.16);
  box-shadow: var(--shadow);
}

.booking-slide {
  display: none;
  gap: 18px;
}

.booking-slide.is-active {
  display: grid;
}

.booking-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.booking-note {
  margin: 0;
  color: var(--text);
}

.booking-helper {
  margin: 0;
  font-size: 14px;
  color: var(--deep);
}

.booking-helper.subtle {
  color: var(--text);
  font-size: 13px;
}

.booking-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.booking-summary {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.booking-recap {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  padding: 18px;
  border-radius: 16px;
  border: 1px solid rgba(86, 64, 64, 0.12);
  background: rgba(255, 255, 255, 0.8);
}

.booking-recap div {
  display: grid;
  gap: 6px;
}

.booking-recap span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
}

.booking-recap strong {
  color: var(--deep);
  font-weight: 500;
}

.link {
  color: var(--accent);
  text-decoration: underline;
}

.valentine-hero {
  position: relative;
  padding: 140px 0;
  color: #fff;
  background-image: url("https://indesignstudio.b-cdn.net/fotoBoschet/Veranda%20.jpg");
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.valentine-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(66, 36, 48, 0.82),
    rgba(66, 36, 48, 0.45)
  );
}

.valentine-glow {
  position: absolute;
  inset: -20%;
  background: radial-gradient(
      circle at 20% 20%,
      rgba(255, 220, 232, 0.45),
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 10%,
      rgba(255, 200, 214, 0.3),
      transparent 55%
    ),
    radial-gradient(
      circle at 70% 80%,
      rgba(255, 214, 224, 0.2),
      transparent 60%
    );
  animation: glowShift 18s ease-in-out infinite;
}

.valentine-hearts {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.valentine-hearts span {
  position: absolute;
  width: 18px;
  height: 18px;
  background: rgba(255, 214, 224, 0.8);
  transform: rotate(45deg);
  border-radius: 2px;
  animation: floatHeart 12s linear infinite;
  filter: blur(0.2px);
}

.valentine-hearts span::before,
.valentine-hearts span::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(255, 214, 224, 0.8);
}

.valentine-hearts span::before {
  left: -9px;
  top: 0;
}

.valentine-hearts span::after {
  left: 0;
  top: -9px;
}

.valentine-hearts span:nth-child(1) {
  left: 8%;
  animation-duration: 14s;
  animation-delay: -2s;
}

.valentine-hearts span:nth-child(2) {
  left: 22%;
  animation-duration: 16s;
  animation-delay: -6s;
  opacity: 0.6;
}

.valentine-hearts span:nth-child(3) {
  left: 35%;
  animation-duration: 13s;
  animation-delay: -4s;
  opacity: 0.75;
}

.valentine-hearts span:nth-child(4) {
  left: 48%;
  animation-duration: 18s;
  animation-delay: -8s;
  opacity: 0.55;
}

.valentine-hearts span:nth-child(5) {
  left: 62%;
  animation-duration: 15s;
  animation-delay: -3s;
  opacity: 0.7;
}

.valentine-hearts span:nth-child(6) {
  left: 74%;
  animation-duration: 19s;
  animation-delay: -10s;
  opacity: 0.5;
}

.valentine-hearts span:nth-child(7) {
  left: 86%;
  animation-duration: 17s;
  animation-delay: -5s;
  opacity: 0.65;
}

.valentine-hearts span:nth-child(8) {
  left: 92%;
  animation-duration: 20s;
  animation-delay: -12s;
  opacity: 0.45;
}

.valentine-hero-content {
  position: relative;
  display: grid;
  gap: 18px;
  max-width: 680px;
}

.valentine-page .eyebrow {
  color: #8a4154;
}

.valentine-page p,
.valentine-page li,
.valentine-page .subtitle,
.valentine-page .lead {
  color: #4a343b;
}

.valentine-page h1,
.valentine-page h2,
.valentine-page h3,
.valentine-page strong {
  color: #2f1f25;
}

.valentine-divider {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  padding: 22px 0 0;
  background: #fdf5f7;
}

.valentine-divider span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 184, 206, 0.7);
  box-shadow: 0 0 0 6px rgba(255, 184, 206, 0.15);
  animation: pulseDot 2.8s ease-in-out infinite;
}

.valentine-divider span:nth-child(2) {
  animation-delay: 0.4s;
}

.valentine-divider span:nth-child(3) {
  animation-delay: 0.8s;
}

.valentine-title {
  position: relative;
}

.valentine-title::after {
  content: "♥";
  display: inline-block;
  margin-left: 10px;
  color: rgba(255, 192, 210, 0.9);
  font-size: 1.2rem;
}

.valentine-hero .eyebrow,
.valentine-hero .script,
.valentine-hero .lead {
  color: rgba(255, 255, 255, 0.92);
}

.valentine-hero h1 {
  color: #fff;
}

.valentine-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.valentine-hero-note {
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

.valentine-section {
  position: relative;
}

.valentine-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(
      rgba(255, 210, 224, 0.18) 1px,
      transparent 1px
    ),
    radial-gradient(rgba(255, 210, 224, 0.12) 1px, transparent 1px);
  background-size: 120px 120px, 180px 180px;
  background-position: 20px 20px, 60px 80px;
  opacity: 0.4;
}

.valentine-animate {
  animation: fadeUp 1s ease both;
}

.valentine-hero .valentine-animate:nth-child(1) {
  animation-delay: 0.1s;
}

.valentine-hero .valentine-animate:nth-child(2) {
  animation-delay: 0.2s;
}

.valentine-hero .valentine-animate:nth-child(3) {
  animation-delay: 0.3s;
}

.valentine-hero .valentine-animate:nth-child(4) {
  animation-delay: 0.4s;
}

.valentine-hero .valentine-animate:nth-child(5) {
  animation-delay: 0.5s;
}

.valentine-hero .valentine-animate:nth-child(6) {
  animation-delay: 0.6s;
}

.valentine-card {
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
  position: relative;
}

.valentine-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 170, 196, 0.5);
  box-shadow: 0 26px 70px rgba(130, 74, 92, 0.22);
}

.valentine-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255, 205, 220, 0.35);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.valentine-card:hover::after {
  opacity: 1;
}

.valentine-menu {
  background: linear-gradient(180deg, #fff6f8, #f6eef1);
}

.valentine-menu-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: minmax(0, 1.7fr) minmax(0, 1fr);
  align-items: start;
}

.valentine-menu-content {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 22px;
  padding: 28px;
  border: 1px solid rgba(86, 64, 64, 0.12);
  box-shadow: var(--shadow);
}

.valentine-menu-note {
  margin: 0;
  color: #4a343b;
}

.valentine-menu-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 12px 0 20px;
}

.valentine-menu-badge {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 225, 235, 0.7);
  border: 1px solid rgba(255, 190, 210, 0.35);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #7c3b4b;
}

.valentine-course-list {
  display: grid;
  gap: 14px;
}

.valentine-course {
  display: grid;
  gap: 8px;
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid rgba(86, 64, 64, 0.08);
  background: rgba(255, 255, 255, 0.88);
  position: relative;
}

.valentine-course::before {
  content: "♥";
  position: absolute;
  left: 14px;
  top: 14px;
  color: rgba(255, 170, 196, 0.8);
  font-size: 12px;
}

.valentine-course div {
  padding-left: 18px;
}

.valentine-course h3 {
  margin: 0 0 6px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  color: var(--deep);
}

.valentine-course p {
  margin: 0;
}

.valentine-wine {
  font-size: 13px;
  color: #7c3b4b;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 230, 238, 0.7);
  border-radius: 999px;
  padding: 6px 12px;
  width: fit-content;
}

.valentine-menu-aside {
  display: grid;
  gap: 18px;
}

.valentine-price {
  padding: 22px;
  border-radius: 18px;
  border: 1px solid rgba(86, 64, 64, 0.14);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow);
  text-align: center;
}

.valentine-price h3 {
  margin: 6px 0;
  font-size: 2rem;
  color: var(--deep);
}

.valentine-price.alt {
  background: rgba(255, 247, 250, 0.95);
}

.valentine-cta-card {
  padding: 24px;
  border-radius: 18px;
  border: 1px solid rgba(86, 64, 64, 0.14);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
  display: grid;
  gap: 12px;
}

.valentine-gallery {
  padding-top: 60px;
  background: linear-gradient(180deg, #fff, #fdf5f7);
}

.valentine-gallery-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.valentine-gallery .image-frame {
  height: 240px;
}

.valentine-gallery .image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.valentine-philosophy {
  background: #fff;
}

.valentine-philosophy-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr;
  align-items: center;
}

.valentine-philosophy-text {
  display: grid;
  gap: 14px;
}

.valentine-philosophy-hero {
  width: 100%;
  margin-top: 18px;
}

.valentine-philosophy-hero img {
  width: 100%;
  height: min(520px, 70vh);
  object-fit: cover;
  display: block;
}

.valentine-reviews {
  background: linear-gradient(180deg, #fff6f8, #f6eef1);
}

.valentine-reviews-grid {
  display: grid;
  gap: 26px;
}

.valentine-reviews-header {
  display: grid;
  gap: 10px;
}

.valentine-reviews-cards {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.valentine-review-card {
  padding: 22px;
  border-radius: 16px;
  border: 1px solid rgba(86, 64, 64, 0.14);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(255, 244, 247, 0.92));
  box-shadow: var(--shadow);
  display: grid;
  gap: 12px;
}

.valentine-review-card p {
  color: #3f2b32;
}

.review-rating {
  font-size: 14px;
  letter-spacing: 0.2em;
  color: #b14b64;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: rgba(255, 214, 224, 0.6);
  color: var(--deep);
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.review-author strong {
  display: block;
  font-size: 14px;
  color: var(--deep);
}

.review-author small {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
}

.valentine-location {
  background: #fff;
}

.valentine-location-grid {
  display: grid;
  gap: 26px;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  align-items: center;
}

.valentine-location-map {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(86, 64, 64, 0.14);
  box-shadow: var(--shadow);
  min-height: 320px;
}

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

.valentine-location-info {
  display: grid;
  gap: 14px;
}

.valentine-location-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
  color: #4a343b;
}

.valentine-cta {
  background: linear-gradient(120deg, rgba(255, 214, 224, 0.5), rgba(255, 255, 255, 0.9));
}

.valentine-cta-content {
  text-align: center;
  display: grid;
  gap: 16px;
  justify-items: center;
}

.valentine-form {
  background: linear-gradient(180deg, #fff, #fdf3f6);
}

.valentine-form-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  align-items: start;
}

.valentine-form-intro {
  display: grid;
  gap: 14px;
}

.valentine-form-card {
  padding: 26px;
  border-radius: 20px;
  border: 1px solid rgba(86, 64, 64, 0.14);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow);
  position: relative;
}

.valentine-form-fields {
  display: grid;
  gap: 14px;
}

.valentine-form-fields .btn {
  width: 100%;
  text-align: center;
}

.valentine-form-fields input,
.valentine-form-fields select,
.valentine-form-fields textarea {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(86, 64, 64, 0.18);
  border-radius: 12px;
  padding: 12px 14px;
  font-family: "Inter", sans-serif;
}

.valentine-form-fields input:focus,
.valentine-form-fields select:focus,
.valentine-form-fields textarea:focus {
  outline: none;
  border-color: rgba(255, 170, 196, 0.6);
  box-shadow: 0 0 0 3px rgba(255, 210, 224, 0.25);
}

.event-hero {
  position: relative;
  padding: 140px 0;
  color: #fff;
  background-image: url("https://indesignstudio.b-cdn.net/fotoBoschet/Veranda%20.jpg");
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.event-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(32, 25, 25, 0.78),
    rgba(32, 25, 25, 0.35)
  );
}

.event-hero-content {
  position: relative;
  display: grid;
  gap: 16px;
  max-width: 680px;
}

.event-hero .eyebrow,
.event-hero .script,
.event-hero .lead {
  color: rgba(255, 255, 255, 0.9);
}

.event-hero h1 {
  color: #fff;
}

.event-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.event-hero-note {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

.event-menu {
  background: #f6f1f0;
}

.event-menu-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  align-items: start;
}

.event-menu-content {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 22px;
  padding: 28px;
  border: 1px solid rgba(86, 64, 64, 0.12);
  box-shadow: var(--shadow);
}

.event-menu-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 12px 0 20px;
}

.event-badge {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(230, 214, 214, 0.6);
  border: 1px solid rgba(86, 64, 64, 0.2);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #5a3a3a;
}

.event-course-list {
  display: grid;
  gap: 14px;
}

.event-course {
  display: grid;
  gap: 8px;
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid rgba(86, 64, 64, 0.08);
  background: rgba(255, 255, 255, 0.9);
}

.event-course h3 {
  margin: 0 0 6px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
  color: #2f1f25;
}

.event-menu-aside {
  display: grid;
  gap: 18px;
}

.event-price-card {
  padding: 22px;
  border-radius: 18px;
  border: 1px solid rgba(86, 64, 64, 0.14);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow);
  text-align: center;
}

.event-price-card h3 {
  margin: 6px 0;
  font-size: 2rem;
  color: #2f1f25;
}

.event-price-card.alt {
  background: rgba(255, 247, 245, 0.95);
}

.event-cta-card {
  padding: 24px;
  border-radius: 18px;
  border: 1px solid rgba(86, 64, 64, 0.14);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow);
  display: grid;
  gap: 12px;
}

.event-gallery {
  background: #fff;
}

.event-gallery-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.event-reviews {
  background: linear-gradient(180deg, #f8f3f2, #efe7e5);
}

.event-reviews-grid {
  display: grid;
  gap: 26px;
}

.event-reviews-cards {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.event-review-card {
  padding: 22px;
  border-radius: 16px;
  border: 1px solid rgba(86, 64, 64, 0.14);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
  display: grid;
  gap: 10px;
}

.event-rating {
  font-size: 14px;
  letter-spacing: 0.2em;
  color: #a66666;
}

.event-review-author {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #7a5353;
}

.event-form {
  background: #f6f1f0;
}

.event-form-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  align-items: start;
}

.event-form-card {
  padding: 26px;
  border-radius: 20px;
  border: 1px solid rgba(86, 64, 64, 0.14);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}

.event-form-fields {
  display: grid;
  gap: 14px;
}

.event-form-fields .btn {
  width: 100%;
  text-align: center;
}

.event-form-fields input,
.event-form-fields select {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(86, 64, 64, 0.18);
  border-radius: 12px;
  padding: 12px 14px;
  font-family: "Inter", sans-serif;
}

.event-form-fields input:focus,
.event-form-fields select:focus {
  outline: none;
  border-color: rgba(138, 95, 95, 0.6);
  box-shadow: 0 0 0 3px rgba(210, 196, 196, 0.25);
}

.event-form-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
  color: #4a343b;
}

.wine-subcategory {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
  color: var(--accent);
  margin: 28px 0 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(86, 64, 64, 0.12);
  letter-spacing: 0.08em;
}

.wine-subcategory:first-child {
  margin-top: 0;
}

.wine-category-list .wine-subcategory + .wine-item {
  margin-top: 0;
}

.wine-index-sublinks {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 6px;
}

.wine-index-sublinks a {
  font-size: 12px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(246, 241, 240, 0.8);
  border: 1px solid rgba(86, 64, 64, 0.1);
  color: var(--text);
  text-decoration: none;
  transition: color 0.3s ease, background-color 0.3s ease;
}

.wine-index-sublinks a:hover {
  background: rgba(86, 64, 64, 0.1);
  color: var(--deep);
}

.newsletter-duo {
  background: linear-gradient(180deg, #fff, #f6f1f0);
}

.newsletter-duo-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: stretch;
}

.newsletter-card-item {
  padding: 26px;
  border-radius: 20px;
  border: 1px solid rgba(86, 64, 64, 0.14);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
  display: grid;
  gap: 12px;
}

.newsletter-card-item.alt {
  background: rgba(255, 247, 245, 0.95);
}

.newsletter-form {
  display: grid;
  gap: 12px;
}

.newsletter-form input {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(86, 64, 64, 0.18);
  border-radius: 12px;
  padding: 12px 14px;
  font-family: "Inter", sans-serif;
}

.newsletter-form input:focus {
  outline: none;
  border-color: rgba(138, 95, 95, 0.6);
  box-shadow: 0 0 0 3px rgba(210, 196, 196, 0.25);
}

.newsletter-duo-footer {
  margin-top: 24px;
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: center;
  padding: 22px 26px;
  border-radius: 20px;
  border: 1px solid rgba(86, 64, 64, 0.12);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.newsletter-reviews span {
  display: block;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #7a5353;
}

@media (max-width: 900px) {
  .event-menu-grid,
  .event-form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .event-hero {
    padding: 110px 0;
  }

  .event-hero-actions .btn {
    width: 100%;
    text-align: center;
  }
}

/* ═══════════════════════════════════════════════════════════════
   Ferie / Vacation Page
   ═══════════════════════════════════════════════════════════════ */

/* ── Hero ── */
.ferie-hero {
  position: relative;
  padding: 170px 0 130px;
  color: #fff;
  background-image: url("https://indesignstudio.b-cdn.net/fotoBoschet/Veranda%20.jpg");
  background-size: cover;
  background-position: center;
  overflow: hidden;
  text-align: center;
}

.ferie-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(22, 18, 18, 0.86),
    rgba(40, 32, 30, 0.55)
  );
}

.ferie-hero-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 50% 80%,
    rgba(180, 140, 110, 0.2),
    transparent 60%
  );
  animation: glowShift 8s ease-in-out infinite;
  pointer-events: none;
}

.ferie-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.ferie-particles span {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  animation: ferieFloat 12s ease-in-out infinite;
}

.ferie-particles span:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 14s; }
.ferie-particles span:nth-child(2) { left: 25%; animation-delay: 2s; animation-duration: 11s; }
.ferie-particles span:nth-child(3) { left: 40%; animation-delay: 4s; animation-duration: 16s; }
.ferie-particles span:nth-child(4) { left: 55%; animation-delay: 1s; animation-duration: 13s; }
.ferie-particles span:nth-child(5) { left: 70%; animation-delay: 3s; animation-duration: 15s; }
.ferie-particles span:nth-child(6) { left: 85%; animation-delay: 5s; animation-duration: 12s; }
.ferie-particles span:nth-child(7) { left: 15%; animation-delay: 6s; animation-duration: 17s; }
.ferie-particles span:nth-child(8) { left: 65%; animation-delay: 7s; animation-duration: 10s; }

@keyframes ferieFloat {
  0%   { transform: translateY(110vh); opacity: 0; }
  10%  { opacity: 0.7; }
  90%  { opacity: 0.7; }
  100% { transform: translateY(-20vh); opacity: 0; }
}

.ferie-hero-content {
  position: relative;
  display: grid;
  gap: 16px;
  max-width: 720px;
  margin: 0 auto;
  justify-items: center;
}

.ferie-hero .eyebrow,
.ferie-hero .script,
.ferie-hero .lead {
  color: rgba(255, 255, 255, 0.88);
}

.ferie-hero h1 {
  color: #fff;
  font-size: clamp(2.6rem, 7vw, 4.2rem);
  line-height: 1.1;
}

.ferie-hero .script {
  font-family: "Great Vibes", cursive;
  font-size: clamp(1.4rem, 3.5vw, 2rem);
}

.ferie-hero .lead {
  max-width: 540px;
}

.ferie-hero .lead strong {
  color: #fff;
}

.ferie-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.ferie-hero-note {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

/* ── Countdown ── */
.ferie-countdown {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  margin: 20px 0 12px;
}

.ferie-countdown-unit {
  display: grid;
  gap: 6px;
  justify-items: center;
  min-width: 78px;
  padding: 18px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  transition: transform 0.3s ease;
}

.ferie-countdown-unit:hover {
  transform: translateY(-2px);
}

.ferie-countdown-sep {
  font-family: "Cinzel", serif;
  font-size: 1.6rem;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1;
  margin-bottom: 16px;
}

.ferie-countdown-number {
  font-family: "Cinzel", serif;
  font-size: clamp(1.8rem, 4.5vw, 2.6rem);
  font-weight: 600;
  line-height: 1;
  color: #fff;
}

.ferie-countdown-label {
  font-family: "Inter", sans-serif;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.ferie-countdown-done {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  color: #fff;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

/* ── Divider ── */
.ferie-divider {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 32px 0;
}

.ferie-divider span {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #a68a7b;
  opacity: 0.7;
  animation: pulseDot 2.5s ease infinite;
}

.ferie-divider span:nth-child(2) { animation-delay: 0.4s; }
.ferie-divider span:nth-child(3) { animation-delay: 0.8s; }

/* ── Stats / Social Proof ── */
.ferie-stats {
  background: #fff;
  padding-top: 40px;
  padding-bottom: 40px;
}

.ferie-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.ferie-stat strong {
  display: block;
  font-family: "Cinzel", serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600;
  color: var(--deep, #2d2525);
  line-height: 1.2;
}

.ferie-stat span {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text, #7b7b7b);
}

/* ── Inline CTA Banner ── */
.ferie-inline-cta {
  background: var(--deep, #2d2525);
  padding: 24px 0;
}

.ferie-inline-cta-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.ferie-inline-cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.15rem;
}

.ferie-inline-cta .btn.primary {
  flex-shrink: 0;
}

/* ── Anticipation / Why wait ── */
.ferie-anticipation {
  background: linear-gradient(180deg, #f9f6f5, #f3eeec);
}

.ferie-anticipation-grid {
  display: grid;
  gap: 36px;
}

.ferie-anticipation-header {
  text-align: center;
}

.ferie-anticipation-cards {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.ferie-card {
  padding: 32px 26px;
  border-radius: 18px;
  border: 1px solid rgba(86, 64, 64, 0.1);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: var(--shadow);
  display: grid;
  gap: 12px;
  text-align: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.ferie-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 80px rgba(66, 51, 51, 0.18);
  border-color: rgba(166, 138, 123, 0.3);
}

.ferie-card-icon {
  color: #a68a7b;
  line-height: 1;
  display: flex;
  justify-content: center;
}

.ferie-card h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
  color: #2f1f25;
}

.ferie-card p {
  margin: 0;
  color: #5a4a4a;
  font-size: 0.95rem;
  line-height: 1.65;
}

/* ── Fixed Parallax (no JS, pure CSS) ── */
.ferie-parallax-fixed {
  position: relative;
  height: clamp(320px, 50vw, 520px);
  overflow: hidden;
  display: grid;
  place-items: end center;
  padding-bottom: 32px;
}

.ferie-parallax-bg {
  position: absolute;
  inset: -60px 0;
  background-size: cover;
  background-position: center 25%;
  background-attachment: fixed;
  filter: saturate(0.95) contrast(1.05);
}

@supports (-webkit-touch-callout: none) {
  /* iOS doesn't support background-attachment: fixed, fallback to static */
  .ferie-parallax-bg {
    background-attachment: scroll;
    inset: 0;
  }
}

.ferie-parallax-content {
  position: relative;
  z-index: 1;
  background: rgba(249, 246, 245, 0.75);
  padding: 18px 34px;
  border: 1px solid rgba(86, 64, 64, 0.2);
  backdrop-filter: blur(6px);
  font-family: "Cinzel", serif;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--deep, #2d2525);
}

.ferie-parallax-content p {
  margin: 0;
}

/* ── Signature Dishes ── */
.ferie-signatures {
  background: linear-gradient(180deg, #f3eeec, #f6f1f0);
  text-align: center;
}

.ferie-signature-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  margin-top: 32px;
}

.ferie-signature-card {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(86, 64, 64, 0.1);
  background: #fff;
  box-shadow: var(--shadow);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.ferie-signature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 80px rgba(66, 51, 51, 0.18);
}

.ferie-signature-card .image-frame {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.ferie-signature-card .image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.ferie-signature-card:hover .image-frame img {
  transform: scale(1.05);
}

.ferie-signature-text {
  padding: 20px 22px;
  text-align: left;
}

.ferie-signature-text h3 {
  margin: 0 0 6px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  color: #2f1f25;
}

.ferie-signature-text p {
  margin: 0;
  color: #6a5a5a;
  font-size: 0.92rem;
  line-height: 1.5;
}

/* ── Reviews (Enhanced) ── */
.ferie-reviews {
  background: linear-gradient(180deg, #f8f3f2, #f0eae8);
}

.ferie-reviews-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.ferie-reviews-score {
  text-align: center;
  padding: 22px 28px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(86, 64, 64, 0.1);
  box-shadow: var(--soft-shadow);
  flex-shrink: 0;
}

.ferie-score-label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text, #7b7b7b);
  margin-bottom: 4px;
}

.ferie-reviews-score strong {
  display: block;
  font-family: "Cinzel", serif;
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--deep, #2d2525);
  line-height: 1.1;
}

.ferie-score-stars {
  display: block;
  font-size: 16px;
  letter-spacing: 0.12em;
  color: #a68a7b;
  margin: 4px 0;
}

.ferie-reviews-score small {
  font-size: 11px;
  color: var(--text, #7b7b7b);
}

/* Carousel */
.ferie-carousel-wrapper {
  padding: 0 0 24px;
}

.ferie-carousel {
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
}

.ferie-carousel-track {
  display: flex;
  gap: 20px;
  padding: 8px 0 8px max(20px, calc((100vw - 1200px) / 2 + 20px));
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: grab;
}

.ferie-carousel-track:active {
  cursor: grabbing;
}

.ferie-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}

.ferie-carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(86, 64, 64, 0.18);
  background: rgba(255, 255, 255, 0.96);
  color: var(--deep, #2d2525);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}

.ferie-carousel-btn:hover {
  background: var(--deep, #2d2525);
  color: #fff;
  border-color: var(--deep, #2d2525);
  transform: scale(1.05);
}

.ferie-carousel-dots {
  display: flex;
  gap: 8px;
}

.ferie-carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(86, 64, 64, 0.2);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, transform 0.3s;
}

.ferie-carousel-dot.active {
  background: var(--accent, #564040);
  transform: scale(1.3);
}

.ferie-review-card {
  flex: 0 0 360px;
  padding: 28px;
  border-radius: 18px;
  border: 1px solid rgba(86, 64, 64, 0.1);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
  display: grid;
  gap: 12px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.ferie-review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 60px rgba(66, 51, 51, 0.16);
}

.ferie-review-card .review-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ferie-review-card .review-stars {
  font-size: 14px;
  letter-spacing: 0.12em;
  color: #a68a7b;
}

.ferie-review-card .review-date {
  font-size: 11px;
  color: var(--text, #7b7b7b);
  letter-spacing: 0.1em;
}

.ferie-review-card h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  color: #2f1f25;
}

.ferie-review-card p {
  margin: 0;
  color: #5a4a4a;
  line-height: 1.6;
  font-size: 0.94rem;
}

.ferie-review-card .review-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 8px;
  border-top: 1px solid rgba(86, 64, 64, 0.08);
}

.ferie-review-card .review-name {
  font-weight: 500;
  font-size: 13px;
  color: #2f1f25;
}

.ferie-review-card .review-tag {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text, #7b7b7b);
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(166, 138, 123, 0.1);
}

/* ── Full-width CTA ── */
.ferie-fullcta {
  background: linear-gradient(
    135deg,
    rgba(45, 37, 37, 1),
    rgba(70, 55, 50, 1)
  );
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.ferie-fullcta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 50% 120%,
    rgba(166, 138, 123, 0.15),
    transparent 60%
  );
  pointer-events: none;
}

.ferie-fullcta-content {
  position: relative;
  display: grid;
  gap: 18px;
  justify-items: center;
  max-width: 600px;
  margin: 0 auto;
}

.ferie-fullcta h2 {
  color: #fff;
  margin: 0;
}

.ferie-fullcta .lead {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

/* ── Email form section ── */
.ferie-form {
  background: linear-gradient(180deg, #f3eeec, #ece5e2);
}

.ferie-form-grid {
  display: grid;
  gap: 36px;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  align-items: start;
}

.ferie-form-card {
  padding: 32px;
  border-radius: 22px;
  border: 1px solid rgba(86, 64, 64, 0.12);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 32px 80px rgba(66, 51, 51, 0.14);
  position: sticky;
  top: 100px;
}

.ferie-form-header {
  text-align: center;
  margin-bottom: 4px;
}

.ferie-form-header h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  color: #2f1f25;
}

.ferie-form-header p {
  margin: 4px 0 0;
  font-size: 13px;
  color: var(--text, #7b7b7b);
}

.ferie-email-form {
  display: grid;
  gap: 16px;
}

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

.ferie-field span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--accent, #564040);
  font-family: "Inter", sans-serif;
}

.ferie-field input {
  background: rgba(249, 246, 245, 0.8);
  border: 1px solid rgba(86, 64, 64, 0.16);
  border-radius: 12px;
  padding: 15px 16px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: var(--deep, #2d2525);
  transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
}

.ferie-field input:focus {
  outline: none;
  background: #fff;
  border-color: rgba(166, 138, 123, 0.6);
  box-shadow: 0 0 0 3px rgba(166, 138, 123, 0.15);
}

.ferie-form-note {
  margin: 0;
  font-size: 12px;
  color: #8a7a7a;
  text-align: center;
  font-style: italic;
}

.ferie-form-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.ferie-form-benefits li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #4a3a3a;
  font-size: 0.95rem;
}

.ferie-form-benefits svg {
  flex-shrink: 0;
  color: #a68a7b;
}

.ferie-form-trust {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px solid rgba(86, 64, 64, 0.1);
}

.ferie-form-trust span {
  font-size: 14px;
  letter-spacing: 0.1em;
  color: #a68a7b;
}

.ferie-form-trust small {
  font-size: 12px;
  color: var(--text, #7b7b7b);
}

/* ── Success state ── */
.ferie-success {
  text-align: center;
  padding: 24px 0;
  display: grid;
  gap: 14px;
  justify-items: center;
}

.ferie-success-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(166, 138, 123, 0.12);
  color: #7a6050;
  font-size: 1.8rem;
  font-weight: 600;
}

.ferie-success h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  color: #2f1f25;
}

.ferie-success p {
  margin: 0;
  color: #5a4a4a;
  max-width: 340px;
  line-height: 1.6;
}

/* ── Location ── */
.ferie-location {
  background: #f9f6f5;
}

.ferie-location-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  align-items: start;
}

.ferie-location-map {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(86, 64, 64, 0.1);
  box-shadow: var(--shadow);
}

.ferie-location-map iframe {
  width: 100%;
  height: 360px;
  display: block;
}

.ferie-location-info {
  display: grid;
  gap: 14px;
}

.ferie-location-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
  color: #4a3a3a;
}

/* ── Privacy page ── */
.privacy-content {
  max-width: 780px;
  margin: 0 auto;
  padding-top: 40px;
  padding-bottom: 80px;
}

.privacy-content h1 {
  margin-bottom: 8px;
}

.privacy-updated {
  font-size: 13px;
  color: var(--accent);
  margin-bottom: 40px;
}

.privacy-content h2 {
  margin-top: 48px;
  margin-bottom: 12px;
  font-size: 1.3rem;
}

.privacy-content h3 {
  margin-top: 28px;
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.privacy-content h4 {
  margin-top: 20px;
  margin-bottom: 6px;
  font-size: 0.95rem;
  font-weight: 600;
}

.privacy-content p,
.privacy-content ul {
  line-height: 1.75;
  color: var(--body);
}

.privacy-content ul {
  padding-left: 20px;
  display: grid;
  gap: 6px;
}

.privacy-content a {
  color: var(--deep);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.privacy-table-wrap {
  overflow-x: auto;
  margin: 12px 0 20px;
}

.privacy-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.privacy-table th,
.privacy-table td {
  text-align: left;
  padding: 10px 14px;
  border-bottom: 1px solid rgba(86, 64, 64, 0.12);
}

.privacy-table th {
  font-weight: 600;
  color: var(--deep);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.privacy-table code {
  font-size: 13px;
  background: rgba(86, 64, 64, 0.06);
  padding: 2px 6px;
  border-radius: 4px;
}

/* ── Cookie Banner ── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(32, 25, 25, 0.96);
  backdrop-filter: blur(12px);
  color: #f5f0ed;
  padding: 20px 24px;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.is-visible {
  transform: translateY(0);
}

.cookie-banner-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-banner-text {
  flex: 1;
  min-width: 280px;
  font-size: 14px;
  line-height: 1.6;
}

.cookie-banner-text a {
  color: #f5f0ed;
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

.cookie-btn {
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: opacity 0.2s;
  font-family: inherit;
  letter-spacing: 0.02em;
}

.cookie-btn:hover {
  opacity: 0.85;
}

.cookie-btn-accept {
  background: #f5f0ed;
  color: var(--deep);
}

.cookie-btn-reject {
  background: transparent;
  color: #f5f0ed;
  border: 1px solid rgba(245, 240, 237, 0.3);
}

/* ── Form privacy checkbox ── */
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 12px;
}

.form-check input[type="checkbox"] {
  margin-top: 4px;
  accent-color: var(--deep);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  cursor: pointer;
}

.form-check label {
  font-size: 13px;
  line-height: 1.5;
  color: var(--body);
  cursor: pointer;
}

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

/* ── Responsive ── */
@media (max-width: 900px) {
  .ferie-form-grid,
  .ferie-location-grid {
    grid-template-columns: 1fr;
  }

  .ferie-form-card {
    position: static;
  }

  .ferie-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ferie-reviews-header {
    flex-direction: column;
    align-items: stretch;
  }

  .ferie-reviews-score {
    text-align: center;
  }
}

@media (max-width: 700px) {
  .ferie-hero {
    padding: 130px 0 100px;
  }

  .ferie-countdown {
    gap: 6px;
  }

  .ferie-countdown-unit {
    min-width: 64px;
    padding: 14px 8px;
  }

  .ferie-countdown-sep {
    font-size: 1.2rem;
  }

  .ferie-hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .ferie-hero-actions .btn {
    width: 100%;
    text-align: center;
  }

  .ferie-fullcta {
    padding: 60px 0;
  }

  .ferie-review-card {
    flex: 0 0 300px;
  }

  .ferie-inline-cta-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 400px) {
  .ferie-countdown-unit {
    min-width: 54px;
    padding: 10px 6px;
  }

  .ferie-countdown-number {
    font-size: 1.4rem;
  }

  .ferie-countdown-sep {
    display: none;
  }

  .ferie-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@keyframes glowShift {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.9;
  }
  50% {
    transform: translateY(-3%);
    opacity: 0.7;
  }
}

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

@keyframes pulseDot {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.3);
    opacity: 1;
  }
}

@keyframes floatHeart {
  0% {
    transform: translateY(120%) rotate(45deg);
    opacity: 0;
  }
  20% {
    opacity: 0.8;
  }
  100% {
    transform: translateY(-140%) rotate(45deg);
    opacity: 0;
  }
}

.booking-summary div {
  padding: 16px 18px;
  border-radius: 12px;
  border: 1px solid rgba(86, 64, 64, 0.14);
  background: rgba(249, 246, 245, 0.9);
  display: grid;
  gap: 6px;
}

.booking-summary span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--accent);
}

.booking-summary strong {
  color: var(--deep);
  font-weight: 500;
}

.booking-summary p {
  margin: 0;
  font-size: 13px;
}

.newsletter {
  background: linear-gradient(180deg, #f7f2f1, #f1ecea);
}

.newsletter-card {
  display: grid;
  gap: 32px;
  align-items: center;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  padding: 40px;
  border-radius: 22px;
  border: 1px solid rgba(86, 64, 64, 0.14);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.newsletter-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(86, 64, 64, 0.12), transparent 55%);
  pointer-events: none;
}

.newsletter-text {
  position: relative;
  display: grid;
  gap: 12px;
}

.newsletter-lead {
  margin: 0;
  max-width: 460px;
}

.newsletter-form {
  position: relative;
  display: grid;
  gap: 16px;
  background: rgba(249, 246, 245, 0.7);
  padding: 24px;
  border-radius: 16px;
  border: 1px solid rgba(86, 64, 64, 0.12);
}

.newsletter-form .field {
  display: grid;
  gap: 8px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.26em;
  color: var(--accent);
}

.newsletter-form input {
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(86, 64, 64, 0.2);
  background: rgba(255, 255, 255, 0.9);
  font-family: "Inter", sans-serif;
  color: var(--deep);
}

.video-feature {
  padding: 0;
}

.video-frame {
  position: relative;
  width: 100%;
  min-height: clamp(360px, 50vw, 640px);
  overflow: hidden;
  border-top: 1px solid rgba(86, 64, 64, 0.12);
  border-bottom: 1px solid rgba(86, 64, 64, 0.12);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.video-cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: saturate(0.92) contrast(1.08);
  transform: scale(1.08);
}

.video-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(16, 12, 12, 0.82), rgba(16, 12, 12, 0.25));
  z-index: 1;
}

.video-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 70%, rgba(0, 0, 0, 0.35), transparent 55%);
  z-index: 1;
}

.video-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 96px;
  height: 96px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(4px);
  display: grid;
  place-items: center;
  z-index: 2;
  cursor: pointer;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.video-play span {
  width: 0;
  height: 0;
  border-left: 18px solid #fff;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  margin-left: 6px;
}

.video-play::before {
  content: "";
  position: absolute;
  inset: -12px;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.4);
  opacity: 0.6;
}

.video-play:hover {
  transform: translate(-50%, -50%) scale(1.06);
  box-shadow: 0 30px 70px rgba(45, 37, 37, 0.4);
}

.video-caption {
  position: absolute;
  left: 8%;
  bottom: 12%;
  z-index: 2;
  color: #fff;
  max-width: 460px;
  display: grid;
  gap: 12px;
  padding: 24px 26px;
  border-radius: 14px;
  background: rgba(10, 8, 8, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 40px 90px rgba(10, 8, 8, 0.55);
  backdrop-filter: blur(8px);
}

.video-caption .eyebrow {
  color: rgba(255, 255, 255, 0.9);
}

.video-caption .subtitle {
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 0;
}

.video-caption h2,
.video-caption p {
  color: #fff;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.65);
}

.reviews {
  background: linear-gradient(180deg, #f9f6f5, #f1ecea);
  overflow: hidden;
}

.reviews-header {
  display: grid;
  gap: 36px;
  align-items: center;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-bottom: 40px;
}

.reviews-lead {
  max-width: 520px;
  margin: 0;
}

.reviews-score {
  padding: 24px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(86, 64, 64, 0.12);
  box-shadow: var(--soft-shadow);
  text-align: center;
}

.score-label {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--accent);
  margin-bottom: 8px;
}

.reviews-score strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  color: var(--deep);
}

.score-stars {
  display: block;
  color: var(--accent);
  letter-spacing: 0.2em;
  margin-bottom: 6px;
}

.reviews-score small {
  font-size: 12px;
}

.reviews-slider {
  position: relative;
  margin-top: 24px;
  overflow: hidden;
  padding: 12px 0 6px;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.reviews-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: reviewScroll 38s linear infinite;
  padding: 14px 0;
  will-change: transform;
  contain: layout;
}

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

.review-card {
  width: min(320px, 78vw);
  background: rgba(255, 255, 255, 0.88);
  border-radius: 16px;
  padding: 28px;
  border: 1px solid rgba(86, 64, 64, 0.12);
  box-shadow: var(--soft-shadow);
  display: grid;
  gap: 14px;
  transition: transform 0.5s ease, box-shadow 0.5s ease, border-color 0.5s ease;
}

.review-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  color: var(--deep);
  margin: 0;
}

.review-card p {
  margin: 0;
}

.review-top {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--accent);
}

.review-stars {
  letter-spacing: 0.3em;
}

.review-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  gap: 12px;
}

.review-name {
  color: var(--deep);
  font-weight: 500;
}

.review-tag {
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(86, 64, 64, 0.2);
  background: rgba(249, 246, 245, 0.9);
}

.review-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 40px 90px rgba(66, 51, 51, 0.2);
  border-color: rgba(86, 64, 64, 0.3);
}

.review-card:hover .review-stars {
  color: var(--deep);
}

.menu-image .image-frame {
  border-radius: 14px;
  overflow: hidden;
  width: 100%;
}

.menu-image .image-frame img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .menu-image .image-frame img {
    height: 260px;
  }
}

.section.menu-highlight {
  background: linear-gradient(180deg, #f9f6f5, #f6f1f0);
}

.menu-highlight-grid {
  display: grid;
  gap: 60px;
  align-items: center;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.menu-highlight-text {
  display: grid;
  gap: 18px;
}

.menu-highlight-media {
  display: grid;
  gap: 20px;
}

.menu-highlight-text p {
  max-width: 460px;
}

.menu-highlight-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.menu-highlight-badges span {
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(86, 64, 64, 0.18);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--accent);
  background: rgba(255, 255, 255, 0.7);
}

.menu-highlight-note {
  margin: 6px 0 8px;
  padding: 22px 26px;
  border-radius: var(--radius-card);
  border: 1px solid rgba(86, 64, 64, 0.18);
  background: rgba(255, 255, 255, 0.85);
  box-shadow: var(--soft-shadow);
  display: grid;
  gap: 10px;
}

.menu-highlight-note div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}

.menu-highlight-note span {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--accent);
}

.menu-highlight-note strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.4rem;
  color: var(--deep);
}

.menu-highlight-note p {
  margin: 0;
  font-size: 14px;
}

.menu-highlight-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.menu-highlight-panel {
  display: grid;
  gap: 24px;
  align-content: start;
}

.menu-highlight-hero {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.menu-highlight-hero img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.menu-highlight-hero-label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(249, 246, 245, 0.9);
  border: 1px solid rgba(86, 64, 64, 0.2);
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 11px;
  color: var(--accent);
}

.menu-highlight-hero:hover img {
  transform: scale(1.04);
}

.menu-highlight-list {
  background: #fff;
  border-radius: var(--radius-card);
  padding: 32px;
  border: 1px solid rgba(86, 64, 64, 0.1);
  box-shadow: var(--shadow);
  display: grid;
  gap: 28px;
}

.menu-group h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  color: var(--deep);
  margin: 0 0 12px;
}

.menu-group ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.menu-group li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(86, 64, 64, 0.1);
}

.menu-group li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.menu-group .dish-name {
  color: var(--deep);
  font-weight: 500;
  display: block;
}

.dish-desc {
  display: block;
  font-size: 12px;
  color: var(--text);
}

.menu-group em {
  font-style: normal;
  font-family: "Cinzel", serif;
  letter-spacing: 0.12em;
  color: var(--accent);
}

.menu-highlight-extra {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.extra-card {
  padding: 18px 20px;
  border-radius: var(--radius-card);
  border: 1px solid rgba(86, 64, 64, 0.18);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: var(--soft-shadow);
}

.extra-card span {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--accent);
  margin-bottom: 6px;
}

.extra-card strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  color: var(--deep);
  margin-bottom: 6px;
}

.extra-card p {
  margin: 0;
  font-size: 13px;
}

.extra-card.light {
  background: linear-gradient(160deg, #fff, #f7f1f0);
}

.experience-card,
.reservation-card,
.menu-highlight-list,
.menu-highlight-note,
.review-card,
.tasting-panel,
.dolci-card,
.map-card,
.extra-card,
.signature-card {
  position: relative;
}

.experience-card::before,
.reservation-card::before,
.menu-highlight-list::before,
.menu-highlight-note::before,
.review-card::before,
.tasting-panel::before,
.dolci-card::before,
.map-card::before,
.extra-card::before,
.signature-card::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: inherit;
  border: 1px solid rgba(86, 64, 64, 0.12);
  opacity: 0.5;
  pointer-events: none;
}

.wine {
  background: linear-gradient(180deg, #f6f1f0, #f9f6f5);
}

.wine-grid {
  display: grid;
  gap: 60px;
  align-items: center;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.wine-media {
  position: relative;
  display: grid;
  gap: 18px;
}

.wine-main img {
  height: 520px;
  width: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.03);
}

.wine-overlay {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  padding: 18px 20px;
  background: rgba(249, 246, 245, 0.88);
  border: 1px solid rgba(86, 64, 64, 0.2);
  border-radius: 12px;
  box-shadow: var(--soft-shadow);
}

.wine-overlay span {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--accent);
  margin-bottom: 6px;
}

.wine-overlay strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  color: var(--deep);
  margin-bottom: 6px;
}

.wine-overlay p {
  margin: 0;
  font-size: 14px;
}

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

.wine-thumb img {
  height: 180px;
  width: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.05);
}

.wine-text p {
  max-width: 460px;
}

.wine-notes {
  display: grid;
  gap: 18px;
  margin: 28px 0 32px;
}

.wine-notes span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--accent);
}

.wine-notes strong {
  display: block;
  color: var(--deep);
  font-weight: 500;
}

.wine-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}

.wine-badges span {
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(86, 64, 64, 0.18);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--accent);
  background: rgba(255, 255, 255, 0.7);
}

.wine-card {
  margin-top: 22px;
  padding: 18px 22px;
  border-radius: 16px;
  border: 1px solid rgba(86, 64, 64, 0.18);
  background: rgba(255, 255, 255, 0.85);
  box-shadow: var(--soft-shadow);
  display: grid;
  gap: 8px;
}

.wine-card span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--accent);
}

.wine-card strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  color: var(--deep);
}

.wine-card p {
  margin: 0;
  font-size: 14px;
}

.wine-list {
  margin-top: 18px;
  display: grid;
  gap: 12px;
}

.wine-list div {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(86, 64, 64, 0.14);
  background: rgba(249, 246, 245, 0.8);
}

.wine-list span {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--accent);
  margin-bottom: 6px;
}

.wine-list strong {
  color: var(--deep);
  font-weight: 500;
}

.experience {
  background: linear-gradient(180deg, #f9f6f5, #f1ecea);
}

.details {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.details span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
}

.details strong {
  display: block;
  color: var(--deep);
  font-weight: 500;
}

.experience-text {
  display: grid;
  gap: 18px;
}

.experience-panel {
  display: grid;
  gap: 14px;
  margin-top: 8px;
}

.experience-shot img {
  height: 220px;
  width: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.05);
}

.experience-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.experience-tags span {
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(86, 64, 64, 0.18);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--accent);
  background: rgba(255, 255, 255, 0.7);
}

.experience-note {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  color: var(--deep);
}

.experience-card {
  background: #fff;
  padding: 36px;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow);
  border: 1px solid rgba(86, 64, 64, 0.1);
}

.experience-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  color: var(--deep);
  margin-bottom: 20px;
}

.experience-cards {
  background: linear-gradient(180deg, #f9f6f5, #f3eeec);
}

.experience-cards-header {
  display: grid;
  gap: 40px;
  align-items: center;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  margin-bottom: 40px;
}

.experience-cards-text {
  display: grid;
  gap: 16px;
}

.experience-lead {
  max-width: 520px;
  margin: 0;
}

.experience-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.experience-highlights span {
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(86, 64, 64, 0.18);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--accent);
  background: rgba(255, 255, 255, 0.7);
}

.experience-cards-media {
  position: relative;
  display: grid;
  gap: 18px;
}

.experience-photo img {
  height: 320px;
  width: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.05);
}

.experience-float-card {
  position: absolute;
  right: 18px;
  bottom: -18px;
  background: rgba(255, 255, 255, 0.96);
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid rgba(86, 64, 64, 0.18);
  box-shadow: var(--soft-shadow);
  max-width: 240px;
}

.experience-float-card span {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.26em;
  color: var(--accent);
  margin-bottom: 6px;
}

.experience-float-card strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  color: var(--deep);
  margin-bottom: 4px;
}

.experience-float-card p {
  margin: 0;
  font-size: 13px;
}

.experience-card-grid {
  display: grid;
  gap: 24px;
  margin-top: 36px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.experience-card-item {
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  border: 1px solid rgba(86, 64, 64, 0.12);
  box-shadow: var(--soft-shadow);
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
  display: grid;
  gap: 12px;
}

.experience-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(86, 64, 64, 0.18);
  display: grid;
  place-items: center;
  color: var(--accent);
  background: rgba(249, 246, 245, 0.9);
}

.experience-card-icon svg {
  width: 26px;
  height: 26px;
}

.experience-card-item h3 {
  margin: 0 0 12px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  color: var(--deep);
}

.experience-card-item p {
  margin: 0 0 18px;
}

.experience-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: -6px;
}

.experience-meta span {
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(86, 64, 64, 0.18);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--accent);
  background: rgba(249, 246, 245, 0.8);
}

.card-link {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--accent);
}

.experience-card-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 35px 80px rgba(66, 51, 51, 0.2);
  border-color: rgba(86, 64, 64, 0.25);
}

.reservation-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.96), #f8f3f1);
  border: 1px solid rgba(86, 64, 64, 0.18);
  box-shadow: 0 32px 70px rgba(66, 51, 51, 0.16);
}

.reservation-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(86, 64, 64, 0.12), transparent 55%);
  pointer-events: none;
}

.reservation-head {
  position: relative;
  display: grid;
  gap: 12px;
  margin-bottom: 26px;
}

.reservation-eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--accent);
}

.reservation-sub {
  margin: 0;
  max-width: 420px;
}

.reservation-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.reservation-highlights span {
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(86, 64, 64, 0.18);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--accent);
  background: rgba(255, 255, 255, 0.7);
}

.reservation-form {
  position: relative;
  display: grid;
  gap: 18px;
}

.reservation-form .form-row {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.reservation-form .field {
  display: grid;
  gap: 8px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.26em;
  color: var(--accent);
}

.reservation-form input,
.reservation-form select,
.reservation-form textarea {
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(86, 64, 64, 0.2);
  background: rgba(255, 255, 255, 0.9);
  font-family: "Inter", sans-serif;
  color: var(--deep);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.reservation-form textarea {
  resize: vertical;
}

.reservation-form input:focus,
.reservation-form select:focus,
.reservation-form textarea:focus {
  outline: none;
  border-color: rgba(86, 64, 64, 0.5);
  box-shadow: 0 14px 30px rgba(66, 51, 51, 0.15);
  transform: translateY(-1px);
}

.reservation-form input::placeholder,
.reservation-form textarea::placeholder {
  color: rgba(86, 64, 64, 0.45);
}

.consent {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
}

.consent input {
  width: 16px;
  height: 16px;
  accent-color: var(--accent);
}

.reservation-submit {
  width: 100%;
  text-align: center;
  padding: 14px 28px;
}

form {
  display: grid;
  gap: 18px;
}

label {
  display: grid;
  gap: 8px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
}

input,
select {
  padding: 12px 14px;
  border: 1px solid rgba(86, 64, 64, 0.2);
  background: transparent;
  font-family: "Inter", sans-serif;
  color: var(--deep);
}

.fineprint {
  font-size: 12px;
  margin-top: 8px;
}

.site-footer {
  padding: 80px 0 40px;
  border-top: 1px solid rgba(86, 64, 64, 0.12);
  background: linear-gradient(180deg, rgba(249, 246, 245, 0.6), #f3eeec);
}

.footer-grid {
  display: grid;
  gap: 60px;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(86, 64, 64, 0.08);
}

.footer-brand {
  display: grid;
  gap: 16px;
}

.footer-eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.36em;
  color: var(--accent);
}

.footer-brand h4 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  color: var(--deep);
  margin: 0;
}

.footer-brand p {
  margin: 0;
  max-width: 360px;
}

.footer-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-columns {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.footer-col {
  display: grid;
  gap: 10px;
  font-size: 14px;
}

.footer-col span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.26em;
  color: var(--accent);
}

.footer-col p {
  margin: 0;
  color: var(--deep);
}

.footer-col a {
  color: var(--deep);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 12px;
}

.footer-social {
  display: grid;
  gap: 8px;
}

.footer-map-wide {
  width: 100%;
  padding: 0 clamp(24px, 5vw, 80px);
  padding-bottom: 48px;
  box-sizing: border-box;
}

.footer-map-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.footer-map-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.26em;
  color: var(--accent);
  font-weight: 500;
}

.footer-map-link {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--deep);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-map-link:hover {
  color: var(--accent);
}

.footer-map-iframe-wrap {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(86, 64, 64, 0.1);
  box-shadow: 0 4px 24px rgba(86, 64, 64, 0.08);
}

.footer-map-iframe-wrap iframe {
  display: block;
  width: 100%;
  height: 380px;
  border: 0;
  filter: grayscale(0.15) contrast(1.05);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding-top: 28px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--accent);
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 11px;
  color: var(--accent);
}

.footer-links a {
  color: var(--accent);
}

.image-frame:hover {
  transform: translateY(calc(var(--parallax-offset, 0px) - 6px))
    scale(var(--parallax-scale, 1.02));
  box-shadow: 0 50px 100px rgba(66, 51, 51, 0.18);
}

.atelier {
  background: #f7f2f1;
}

.atelier-grid {
  display: grid;
  gap: 60px;
  align-items: center;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.atelier-text p {
  max-width: 440px;
}

.atelier-details {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--accent);
}

.atelier-media {
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  align-items: stretch;
}

.atelier-main {
  height: 100%;
}

.atelier-main img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.atelier-stack {
  display: grid;
  gap: 24px;
  align-content: center;
}

.atelier-stack .image-frame {
  height: 220px;
}

.atelier-stack .image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.atelier-stack .image-frame:first-child {
  margin-top: 18px;
}

.atelier-stack .image-frame:last-child {
  margin-top: -10px;
}

.team-section {
  background: linear-gradient(180deg, #f6f1f0, #f1ecea);
}

.team-grid,
.project-grid {
  display: grid;
  gap: 60px;
  align-items: center;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.team-text p,
.project-text p {
  max-width: 460px;
}

.team-quote {
  margin-top: 20px;
  padding: 18px 20px;
  border-radius: 14px;
  border: 1px solid rgba(86, 64, 64, 0.14);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: var(--soft-shadow);
}

.team-quote p {
  margin: 0 0 10px;
  font-style: italic;
  color: var(--deep);
}

.team-quote strong {
  font-family: "Cormorant Garamond", serif;
  color: var(--deep);
  font-size: 1.2rem;
}

.project-section {
  background: #f9f6f5;
}

.chefs-table {
  background: linear-gradient(180deg, #f6f1f0, #f9f6f5);
}

.chefs-table-grid {
  display: grid;
  gap: 60px;
  align-items: center;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.chefs-table-text p {
  max-width: 460px;
}

.chefs-table-media .image-frame img {
  height: 520px;
  width: 100%;
  object-fit: cover;
  object-position: center top;
}

.signatures {
  background: #f9f6f5;
}

.signature-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-top: 32px;
}

.signature-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--soft-shadow);
  border: 1px solid rgba(86, 64, 64, 0.1);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.signature-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.signature-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  color: var(--deep);
  margin: 18px 20px 8px;
}

.signature-card p {
  margin: 0 20px 22px;
}

.signature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 40px 90px rgba(66, 51, 51, 0.2);
}

.ingredienti {
  background: #f7f2f1;
}

.ingredienti-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 32px;
}

.ingredienti-item {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--soft-shadow);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.ingredienti-item img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.ingredienti-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px rgba(66, 51, 51, 0.2);
}

.dolci {
  background: linear-gradient(180deg, #f6f1f0, #f1ecea);
}

.dolci-grid {
  display: grid;
  gap: 60px;
  align-items: center;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.dolci-text p {
  max-width: 420px;
}

.dolci-text {
  display: grid;
  gap: 18px;
}

.dolci-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.dolci-badges span {
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(86, 64, 64, 0.18);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--accent);
  background: rgba(255, 255, 255, 0.7);
}

.dolci-note {
  padding: 18px 22px;
  border-radius: 16px;
  border: 1px solid rgba(86, 64, 64, 0.18);
  background: rgba(255, 255, 255, 0.85);
  box-shadow: var(--soft-shadow);
  display: grid;
  gap: 10px;
}

.dolci-note div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}

.dolci-note span {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--accent);
}

.dolci-note strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
  color: var(--deep);
}

.dolci-note p {
  margin: 0;
  font-size: 14px;
}

.dolci-points {
  display: grid;
  gap: 12px;
}

.dolci-points div {
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(86, 64, 64, 0.14);
  background: rgba(249, 246, 245, 0.8);
}

.dolci-points span {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--accent);
  margin-bottom: 6px;
}

.dolci-points strong {
  color: var(--deep);
  font-weight: 500;
}

.dolci-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.dolci-media {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.dolci-media .image-frame {
  height: 380px;
}

.dolci-media .image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dolci-hero {
  height: 480px;
}

.dolci-hero img {
  height: 100%;
}

.dolci-stack {
  display: grid;
  gap: 14px;
}

.dolci-stack .image-frame {
  height: 220px;
}

.dolci-card {
  padding: 18px 20px;
  border-radius: var(--radius-card);
  border: 1px solid rgba(86, 64, 64, 0.18);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--soft-shadow);
  display: grid;
  gap: 10px;
}

.dolci-card span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--accent);
}

.dolci-card p {
  margin: 0;
  color: var(--deep);
}

.dolci-card strong {
  font-family: "Cormorant Garamond", serif;
  color: var(--deep);
  font-size: 1.1rem;
}

.gallery {
  background: #f6f1f0;
}

.gallery-lead {
  max-width: 620px;
  margin: 0;
}

.gallery-marquee {
  overflow: hidden;
  margin-top: 40px;
  position: relative;
}

.gallery-marquee::before,
.gallery-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  pointer-events: none;
  z-index: 2;
}

.gallery-marquee::before {
  left: 0;
  background: linear-gradient(90deg, #f6f1f0, rgba(246, 241, 240, 0));
}

.gallery-marquee::after {
  right: 0;
  background: linear-gradient(270deg, #f6f1f0, rgba(246, 241, 240, 0));
}

.gallery-marquee.reverse {
  margin-top: 18px;
}

.gallery-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: galleryScroll 38s linear infinite;
  padding: 10px 0;
  will-change: transform;
  contain: layout;
}

.gallery-marquee.reverse .gallery-track {
  animation-direction: reverse;
  animation-duration: 44s;
}

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

.gallery-item {
  border: none;
  padding: 0;
  background: transparent;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--soft-shadow);
  cursor: pointer;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.gallery-item img {
  width: 320px;
  height: 220px;
  object-fit: cover;
  display: block;
  filter: saturate(0.95) contrast(1.02);
  transition: transform 0.6s ease;
}

.gallery-item:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 50px 100px rgba(66, 51, 51, 0.2);
}

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

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(30, 22, 22, 0.84);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  z-index: 999;
  padding: 40px 18px;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-image {
  max-width: min(1040px, 92vw);
  max-height: 82vh;
  border-radius: 18px;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.35);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: transform 0.3s ease, background 0.3s ease;
}

.lightbox-close:hover {
  transform: scale(1.05);
  background: rgba(255, 255, 255, 0.2);
}

.parallax-section {
  position: relative;
  height: clamp(280px, 45vw, 520px);
  background-size: cover;
  background-position: center 25%;
  background-repeat: no-repeat;
  display: grid;
  place-items: center;
  margin: 0;
  will-change: transform;
  contain: layout style;
  overflow: hidden;
  transition: background-position 0.2s ease-out;
  filter: saturate(0.95) contrast(1.05);
}

.parallax-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 30% 20%,
    rgba(255, 255, 255, 0.15),
    transparent 55%
  );
  opacity: 0.7;
  pointer-events: none;
}

.parallax-overlay {
  background: rgba(249, 246, 245, 0.72);
  padding: 18px 34px;
  border: 1px solid rgba(86, 64, 64, 0.2);
  backdrop-filter: blur(6px);
  font-family: "Cinzel", serif;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--deep);
}

.parallax-overlay p {
  margin: 0;
}

.parallax-bottom {
  place-items: end center;
  padding-bottom: 28px;
}

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

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--delay, 0s);
  will-change: opacity, transform;
}

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

.parallax {
  transform: translateY(var(--parallax-offset, 0px));
  transition: transform 0.5s ease-out;
}

.parallax-card {
  will-change: transform;
}

.micro-card {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: transform, opacity;
  position: relative;
}

.micro-card::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: inherit;
  border: 1px solid rgba(86, 64, 64, 0.12);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.8s ease;
}

.micro-card.is-active {
  opacity: 1;
  transform: translateY(0);
  will-change: auto;
}

.micro-card.is-active::after {
  opacity: 1;
}

@keyframes lineGlow {
  0% {
    opacity: 0.15;
    transform: scaleY(0.8);
  }
  50% {
    opacity: 0.6;
    transform: scaleY(1.08);
  }
  100% {
    opacity: 0.2;
    transform: scaleY(0.85);
  }
}

@keyframes galleryScroll {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

@keyframes microGlow {
  0% {
    box-shadow: 0 14px 36px rgba(66, 51, 51, 0.1);
  }
  50% {
    box-shadow: 0 22px 58px rgba(66, 51, 51, 0.18);
  }
  100% {
    box-shadow: 0 14px 36px rgba(66, 51, 51, 0.1);
  }
}

@keyframes microHalo {
  0% {
    opacity: 0.25;
    box-shadow: 0 0 0 rgba(86, 64, 64, 0);
  }
  50% {
    opacity: 0.6;
    box-shadow: 0 0 26px rgba(86, 64, 64, 0.12);
  }
  100% {
    opacity: 0.3;
    box-shadow: 0 0 0 rgba(86, 64, 64, 0);
  }
}

@keyframes reviewScroll {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

@keyframes heroFade {
  0% {
    opacity: 0;
    transform: translateY(16px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.blog-page-card,
.article-card,
.contact-card,
.award-card,
.wine-item {
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.blog-page-card:hover,
.article-card:hover,
.contact-card:hover,
.award-card:hover,
.wine-item:hover {
  transform: translateY(-6px);
  border-color: rgba(86, 64, 64, 0.26);
  box-shadow: 0 26px 70px rgba(66, 51, 51, 0.2);
}

.blog-page-card img,
.contact-media .image-frame img,
.article-hero .hero-media img {
  transition: transform 0.8s ease, filter 0.8s ease;
}

.blog-page-card:hover img,
.contact-media .image-frame:hover img {
  transform: scale(1.03);
  filter: saturate(1) contrast(1.06);
}

.article-hero .image-frame:hover img {
  transform: scale(1.02);
}

.article-content {
  max-width: 720px;
}

.article-highlight {
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.95), rgba(249, 246, 245, 0.85));
  border-color: rgba(86, 64, 64, 0.2);
}

.contact-item a {
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, color 0.3s ease;
}

.contact-item a:hover {
  color: var(--accent);
  border-color: rgba(86, 64, 64, 0.35);
}

.team-bio .image-frame img,
.project .image-frame img {
  filter: saturate(0.95) contrast(1.05);
}

.team-text p,
.project-text p,
.awards-lead {
  color: var(--text);
}

.wine-index-links a {
  box-shadow: 0 12px 26px rgba(66, 51, 51, 0.08);
}

.wine-index-links a:hover {
  box-shadow: 0 18px 40px rgba(66, 51, 51, 0.16);
}

.menu-list li {
  transition: border-color 0.3s ease;
}

.menu-list li:hover {
  border-color: rgba(86, 64, 64, 0.3);
}

.blog-page {
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.7), transparent 60%),
    #f9f6f5;
}

.article-body {
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.7), transparent 60%),
    #f9f6f5;
}

.contact-section {
  background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.7), transparent 60%),
    #f9f6f5;
}

/* ── Mobile nav toggle ── */
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  z-index: 101;
  flex-shrink: 0;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.nav-toggle:hover {
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 4px 20px rgba(66, 51, 51, 0.1);
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 18px;
  height: 1px;
  background: var(--accent);
  transition: transform 0.4s cubic-bezier(0.77, 0, 0.18, 1);
}

.nav-toggle span {
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 1px;
}

.nav-toggle span::before {
  top: -5px;
  width: 12px;
}

.nav-toggle span::after {
  top: 5px;
  width: 15px;
}

/* active (X) state */
.nav-toggle.is-active {
  background: transparent;
}

.nav-toggle.is-active span {
  background: transparent;
}

.nav-toggle.is-active span::before {
  top: 0;
  width: 18px;
  transform: rotate(45deg);
  background: var(--deep);
}

.nav-toggle.is-active span::after {
  top: 0;
  width: 18px;
  transform: rotate(-45deg);
  background: var(--deep);
}

/* mobile nav overlay */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  background: linear-gradient(180deg, #faf7f6 0%, #f4efee 50%, #ede6e4 100%);
  backdrop-filter: blur(24px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.nav-mobile.is-open {
  opacity: 1;
  pointer-events: auto;
}

.nav-mobile-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: 1px solid rgba(86, 64, 64, 0.15);
  border-radius: 50%;
  font-size: 1.4rem;
  color: var(--accent);
  cursor: pointer;
  transition: background-color 0.3s ease;
  line-height: 1;
}

.nav-mobile-close:hover {
  background: rgba(86, 64, 64, 0.06);
  border-color: rgba(86, 64, 64, 0.3);
  transform: rotate(90deg);
}

.nav-mobile a {
  display: block;
  padding: 15px 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--deep);
  text-decoration: none;
  text-align: center;
  transition: color 0.25s ease, letter-spacing 0.25s ease;
  position: relative;
}

.nav-mobile a:hover {
  color: var(--accent);
  letter-spacing: 0.2em;
}

.nav-mobile .nav-mobile-cta {
  margin-top: 28px;
  padding: 14px 40px;
  border: 1px solid var(--accent);
  border-radius: 999px;
  font-family: "Cinzel", serif;
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  color: var(--accent);
  transition: color 0.3s ease, background-color 0.3s ease;
}

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

.nav-mobile-divider {
  width: 24px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(86, 64, 64, 0.2), transparent);
  margin: 2px auto;
}

@media (max-width: 900px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .nav {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-mobile {
    display: flex;
  }

  .hero-media {
    min-height: auto;
  }

  .image-frame.floating {
    position: relative;
    width: 70%;
    margin: 20px auto 0;
    right: auto;
    bottom: auto;
  }

  .hero-overlay {
    position: relative;
    bottom: auto;
    margin-top: 28px;
    margin-bottom: 32px;
    grid-template-columns: 1fr;
  }

  .chefs-table-media .image-frame img {
    height: 420px;
  }

  .map-card iframe {
    height: 200px;
  }

  .atelier-media {
    grid-template-columns: 1fr;
  }

  .atelier-main img {
    min-height: 360px;
  }

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

  .atelier-stack .image-frame {
    height: 200px;
    margin-top: 0;
  }

  .wine-main img {
    height: 380px;
  }

  .reservation-card {
    padding: 28px;
  }

  .booking-layout {
    grid-template-columns: 1fr;
  }

  .valentine-menu-grid {
    grid-template-columns: 1fr;
  }

  .valentine-philosophy-grid,
  .valentine-location-grid {
    grid-template-columns: 1fr;
  }

  .valentine-form-grid {
    grid-template-columns: 1fr;
  }

  .map-card {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    margin: 24px auto;
  }

  .map-section-home .map-card {
    position: relative;
    left: auto;
    right: auto;
    transform: none;
    margin: 24px auto;
  }

  .menu-highlight-grid {
    grid-template-columns: 1fr;
  }

  .wine-category-list {
    columns: 2;
  }
}

@media (max-width: 700px) {
  .valentine-hero {
    padding: 110px 0;
  }

  .valentine-hero-actions .btn {
    width: 100%;
    text-align: center;
  }

  .valentine-divider {
    padding-top: 12px;
  }

  .reviews-score {
    text-align: left;
  }

  .review-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .menu-highlight-note div {
    flex-direction: column;
    align-items: flex-start;
  }

  .menu-highlight-actions .btn {
    width: 100%;
    text-align: center;
  }

  .tasting-cta .cta-actions .btn {
    width: 100%;
    text-align: center;
  }

  .dolci-note div {
    flex-direction: column;
    align-items: flex-start;
  }

  .dolci-actions .btn {
    width: 100%;
    text-align: center;
  }

  .footer-cta .btn {
    width: 100%;
    text-align: center;
  }

  .map-card .btn {
    width: 100%;
    text-align: center;
  }

  .video-caption {
    left: 6%;
    right: 6%;
    bottom: 10%;
  }

  .video-play {
    width: 76px;
    height: 76px;
  }

  .section {
    padding: 60px 0;
  }

  .hero {
    padding: 80px 0 100px;
  }

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

  .map-visual {
    min-height: auto;
    padding: 30px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .map-visual .map-embed {
    position: relative;
    height: 250px;
    inset: auto;
  }

  .map-visual::before {
    display: none;
  }

  .map-card {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    width: calc(100% - 32px);
    margin: 20px auto 0;
    max-height: none;
  }

  .map-section-home .map-card {
    position: relative;
    left: auto;
    right: auto;
    transform: none;
    margin: 0 auto;
  }

  .tasting-full {
    min-height: auto;
    padding: 40px 16px;
  }

  .tasting-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .tasting-panel {
    width: 100%;
  }

  .tasting-meta {
    grid-template-columns: 1fr;
  }

  .parallax-section {
    height: 260px;
  }

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

  .chefs-table-grid {
    grid-template-columns: 1fr;
  }

  .chefs-table-media .image-frame img {
    height: 380px;
  }

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

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

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

  .experience-cards-header {
    grid-template-columns: 1fr;
  }

  .experience-card-grid {
    grid-template-columns: 1fr;
  }

  .experience-photo img {
    height: 220px;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

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

  .blog-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  .blog-header .btn {
    width: 100%;
    text-align: center;
  }

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

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

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

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

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

  .map-details {
    grid-template-columns: 1fr;
  }

  .map-meta {
    grid-template-columns: 1fr;
  }

  .newsletter-card {
    padding: 28px;
  }

  .newsletter-form .btn {
    width: 100%;
    text-align: center;
  }

  .booking-card {
    padding: 20px;
  }

  .booking-actions .btn {
    width: 100%;
    text-align: center;
  }

  .wine-category-list {
    columns: 1;
  }

  .section {
    padding: 40px 0;
  }

  .hero {
    padding: 70px 0 40px;
  }

  .hero-text h1 {
    font-size: 1.8rem;
    letter-spacing: 0.08em;
  }

  .section h2 {
    font-size: 1.4rem;
    letter-spacing: 0.12em;
    word-break: break-word;
  }

  .script {
    font-size: 1.5rem;
    margin: 0 0 10px;
  }

  .lead {
    font-size: 14px;
  }

  .eyebrow {
    font-size: 10px;
    letter-spacing: 0.2em;
  }

  .hero-grid {
    gap: 20px;
  }

  .hero-actions {
    margin-top: 16px;
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
    text-align: center;
  }

  .hero-overlay {
    margin-top: 16px;
    padding: 16px;
    gap: 10px;
  }

  .hero-overlay strong {
    font-size: 12px;
  }

  .hero-lines {
    display: none;
  }

  .image-frame.floating {
    display: none;
  }

  h2 {
    font-size: 1.6rem;
  }

  .subtitle {
    font-size: 13px;
  }

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

  .container {
    padding: 0 16px;
  }

  .map-visual {
    padding: 20px 0;
  }

  .map-card {
    padding: 20px;
  }

  .map-photo {
    height: 120px;
  }

  .map-card h3 {
    font-size: 1.3rem;
  }

  .tasting-full {
    padding: 30px 12px;
  }

  .tasting-copy h2 {
    font-size: 1.6rem;
  }

  .tasting-price strong {
    font-size: 1.6rem;
  }

  .experience-card {
    padding: 24px;
  }

  .chefs-table-media .image-frame img {
    height: 340px;
  }

  .signature-card img {
    height: 180px;
  }

  .blog-image img {
    height: 240px;
  }

  .parallax-section {
    height: 220px;
  }

  .footer-grid {
    gap: 30px;
  }

  .footer-map-iframe-wrap iframe {
    height: 280px;
  }

  .footer-map-wide {
    padding: 0 20px;
    padding-bottom: 36px;
  }

  .contact-map-section .footer-map-iframe-wrap iframe {
    height: 300px;
  }

  .contact-map-header {
    align-items: flex-start;
  }

  .contact-map-header .btn {
    width: 100%;
    text-align: center;
  }

  .wine-hero .hero-text h1 {
    font-size: 1.6rem;
  }

  .menu-hero .hero-text h1 {
    font-size: 1.6rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .valentine-hearts span,
  .valentine-glow,
  .valentine-animate,
  .valentine-divider span {
    animation: none !important;
  }

  .reviews-track {
    animation: none;
  }

  .blog-track {
    animation: none;
  }

  .blog-slider {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .hero-title,
  .hero-cta {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

/* ════════════════════════
   WINE FAVORITES
   ════════════════════════ */

.wine-item-info {
  flex: 1;
  min-width: 0;
}

.wine-item-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.wine-fav-btn {
  background: none;
  border: none;
  color: #c9bfb2;
  cursor: pointer;
  padding: 4px;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: color 0.2s ease, transform 0.15s ease;
}

.wine-fav-btn:hover {
  color: #c0392b;
  transform: scale(1.18);
}

.wine-fav-btn.is-fav {
  color: #c0392b;
}

/* FAB */
.wine-fav-fab {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 200;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, #8b6f47, #6b5535);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(139, 111, 71, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.wine-fav-fab:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(139, 111, 71, 0.45);
}

.wine-fav-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 22px;
  height: 22px;
  border-radius: 11px;
  background: #c0392b;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
  font-family: "Inter", sans-serif;
}

/* Panel */
.wine-fav-panel {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 380px;
  max-width: 90vw;
  background: #fff;
  z-index: 300;
  box-shadow: 8px 0 30px rgba(0,0,0,0.12);
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.wine-fav-panel.open {
  transform: translateX(0);
}

.wine-fav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.3);
  z-index: 299;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.wine-fav-panel.open ~ .wine-fav-overlay {
  opacity: 1;
  pointer-events: auto;
}

.wine-fav-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid #ebe7e1;
}

.wine-fav-panel-header h3 {
  font-family: "Cinzel", serif;
  font-size: 18px;
  font-weight: 400;
  color: #2c2520;
  letter-spacing: 0.02em;
}

.wine-fav-panel-close {
  background: none;
  border: none;
  font-size: 28px;
  color: #8c8279;
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
  transition: color 0.2s;
}

.wine-fav-panel-close:hover {
  color: #2c2520;
}

.wine-fav-list {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px;
}

.wine-fav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid #f0ece6;
  position: relative;
}

.wine-fav-item:last-child {
  border-bottom: none;
}

.wine-fav-item div {
  flex: 1;
  min-width: 0;
}

.wine-fav-item strong {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #2c2520;
  margin-bottom: 2px;
}

.wine-fav-item span {
  display: block;
  font-size: 12px;
  color: #8c8279;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.wine-fav-item em {
  font-style: normal;
  font-weight: 600;
  color: #8b6f47;
  font-size: 14px;
  white-space: nowrap;
}

.wine-fav-remove {
  background: none;
  border: none;
  color: #c0392b;
  font-size: 22px;
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
  opacity: 0.5;
  transition: opacity 0.2s;
  flex-shrink: 0;
}

.wine-fav-remove:hover {
  opacity: 1;
}

.wine-fav-empty {
  text-align: center;
  padding: 40px 16px;
  color: #8c8279;
  font-size: 14px;
}

@media (max-width: 600px) {
  .wine-fav-fab {
    bottom: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
  }

  .wine-fav-panel {
    width: 100vw;
    max-width: 100vw;
  }
}
