/* =============================================
   SELF-HOSTED FONTS - Cormorant Garamond & Jost
   ============================================= */

@font-face {
  font-family: 'Cormorant Garamond';
  src: url('../fonts/cormorant-garamond-v21-latin-300.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap; /* optional reduces CLS */
}
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('../fonts/cormorant-garamond-v21-latin-300italic.woff2') format('woff2');
  font-weight: 300;
  font-style: italic;
  font-display: swap; /* optional reduces CLS */
}
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('../fonts/cormorant-garamond-v21-latin-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap; /* optional reduces CLS */
}
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('../fonts/cormorant-garamond-v21-latin-italic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap; /* optional reduces CLS */
}
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('../fonts/cormorant-garamond-v21-latin-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap; /* optional reduces CLS */
}
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('../fonts/cormorant-garamond-v21-latin-600italic.woff2') format('woff2');
  font-weight: 600;
  font-style: italic;
  font-display: swap; /* optional reduces CLS */
}
@font-face {
  font-family: 'Jost';
  src: url('../fonts/jost-v20-latin-300.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap; /* optional reduces CLS */
}
@font-face {
  font-family: 'Jost';
  src: url('../fonts/jost-v20-latin-300italic.woff2') format('woff2');
  font-weight: 300;
  font-style: italic;
  font-display: swap; /* optional reduces CLS */
}
@font-face {
  font-family: 'Jost';
  src: url('../fonts/jost-v20-latin-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap; /* optional reduces CLS */
}
@font-face {
  font-family: 'Jost';
  src: url('../fonts/jost-v20-latin-italic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap; /* optional reduces CLS */
}
@font-face {
  font-family: 'Jost';
  src: url('../fonts/jost-v20-latin-500.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap; /* optional reduces CLS */
}
@font-face {
  font-family: 'Jost';
  src: url('../fonts/jost-v20-latin-500italic.woff2') format('woff2');
  font-weight: 500;
  font-style: italic;
  font-display: swap; /* optional reduces CLS */
}

/* =============================================
   CSS CUSTOM PROPERTIES
   ============================================= */

/* ── Accessibility: skip to main content link ─────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--terracotta);
  color: #fff;
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 1rem;
}

:root {
  --cream: #FAF8F3;
  --warm-white: #FFFEF9;
  --blush: #F0E8E4;
  --terracotta: #8B1A2B;   /* burgundy � from logo */
  --terra-light: #B84C5A;  /* lighter burgundy */
  --earth: #5C1020;        /* deep burgundy */
  --dark: #2A1018;         /* very dark burgundy-black */
  --mid: #5C3040;          /* darkened for contrast ratio */          /* muted rose-grey */
  --border: #E0D0D2;       /* warm pinkish border */
  --gold: #C9A86C;         /* keep gold accent */
}

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Jost', sans-serif;
  background: var(--cream);
  color: var(--dark);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--terracotta); text-decoration: none; }
a:hover { text-decoration: underline; }

/* =============================================
   TYPOGRAPHY
   ============================================= */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  line-height: 1.1;
}
h1 { font-size: clamp(2.8rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.25rem; font-weight: 400; }
em { font-style: italic; color: var(--terracotta); }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* =============================================
   NAVIGATION
   ============================================= */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(250, 248, 243, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 3rem; height: 68px;
}
.site-nav .nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.site-nav .nav-logo img {
  height: 40px;
  width: auto;
  display: block;
  object-fit: contain;
}
.site-nav .nav-logo:hover { opacity: 0.85; text-decoration: none; }
.site-nav .nav-menu {
  display: flex; gap: 2rem; list-style: none;
}
.site-nav .nav-menu a {
  font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--mid); text-decoration: none; transition: color 0.2s;
}
.site-nav .nav-menu a:hover,
.site-nav .nav-menu .current-menu-item a { color: var(--terracotta); }
.site-nav .nav-book {
  background: var(--terracotta); color: #fff;
  padding: 0.5rem 1.25rem; font-size: 0.75rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none; transition: background 0.2s;
}
.site-nav .nav-book:hover { background: var(--earth); text-decoration: none; }

/* =============================================
   SHARED SECTION STYLES
   ============================================= */
.section-inner { max-width: 980px; margin: 0 auto; padding: 0 2rem; }
.section-label {
  font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--terracotta); margin-bottom: 0.75rem; display: block;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 300;
  color: var(--dark); margin-bottom: 1.5rem; line-height: 1.1;
}

/* =============================================
   STRIP / DIVIDER
   ============================================= */
.strip {
  background: var(--blush);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 2rem; text-align: center;
}
.strip-inner {
  max-width: 780px; margin: 0 auto;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; font-style: italic;
  color: var(--earth); letter-spacing: 0.02em; line-height: 1.6;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn-primary {
  background: var(--terracotta); color: #fff;
  padding: 0.8rem 2rem; font-size: 0.78rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none; display: inline-block;
  transition: background 0.2s; border: none; cursor: pointer;
  font-family: 'Jost', sans-serif;
}
.btn-primary:hover { background: var(--earth); text-decoration: none; color: #fff; }
.btn-outline {
  border: 1px solid var(--terracotta); color: var(--terracotta);
  padding: 0.8rem 2rem; font-size: 0.78rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none; display: inline-block; transition: all 0.2s;
}
.btn-outline:hover { background: var(--terracotta); color: #fff; text-decoration: none; }
.btn-white {
  background: #fff; color: var(--terracotta);
  padding: 0.7rem 1.5rem; font-size: 0.75rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none; display: inline-block; transition: opacity 0.2s;
}
.btn-white:hover { opacity: 0.9; text-decoration: none; }
.btn-outline-light {
  border: 1px solid rgba(255,255,255,0.25); color: rgba(255,255,255,0.7);
  padding: 0.8rem 2rem; font-size: 0.78rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none; display: inline-block; transition: all 0.2s;
}
.btn-outline-light:hover { border-color: rgba(255,255,255,0.5); color: #fff; text-decoration: none; }

/* =============================================
   PHOSPHOR ICONS
   ============================================= */
.ph-light, .ph, .ph-bold, .ph-fill { font-style: normal; line-height: 1; }
.info-card-icon i,
.value-icon i,
.offer-icon i { color: var(--terracotta); }
.info-card-icon i { font-size: 1.6rem; }
.value-icon i { font-size: 1.5rem; }
.offer-icon i { font-size: 1.8rem; }
.team-avatar i { font-size: 2rem; color: var(--mid); }

/* =============================================
   INFO CARDS
   ============================================= */
.info-card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  padding: 2rem;
}
.info-card-icon { font-size: 1.5rem; margin-bottom: 1rem; display: block; }
.info-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem; font-weight: 400;
  color: var(--dark); margin-bottom: 0.75rem;
}
.info-card p, .info-card address {
  font-size: 0.85rem; line-height: 1.8;
  color: var(--mid); font-style: normal;
}
.info-card a { color: var(--terracotta); text-decoration: none; }
.info-card a:hover { text-decoration: underline; }
.hours-row {
  display: flex; justify-content: space-between;
  font-size: 0.83rem; padding: 0.22rem 0;
  border-bottom: 1px solid var(--border);
}
.hours-row:last-child { border: none; }
.day { color: var(--dark); }
.time { color: var(--mid); }

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 3rem 2rem 2rem;
}
.footer-inner {
  max-width: 980px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 3rem;
}
.footer-brand .logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; letter-spacing: 0.18em;
  color: #fff; margin-bottom: 0.75rem; display: block;
}
.footer-brand p { font-size: 0.82rem; color: rgba(255,255,255,0.45); line-height: 1.7; }
.footer-col h4 {
  font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(255,255,255,0.4); margin-bottom: 1rem;
  font-family: 'Jost', sans-serif; font-weight: 400;
}
.footer-col address, .footer-col p {
  font-size: 0.85rem; color: rgba(255,255,255,0.6);
  font-style: normal; line-height: 1.85;
}
.footer-col a { color: rgba(255,255,255,0.6); text-decoration: none; display: block; }
.footer-col a:hover { color: var(--terra-light); }
.footer-bottom {
  max-width: 980px; margin: 2.5rem auto 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.75rem; color: rgba(255,255,255,0.3);
}
.social-links { display: flex; gap: 1.5rem; }
.social-links a {
  color: rgba(255,255,255,0.4); text-decoration: none;
  font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase;
}
.social-links a:hover { color: var(--terra-light); }

/* =============================================
   FIVE STAR RESERVATIONS PLUGIN OVERRIDES
   ============================================= */
#restaurant-reservations,
.rtb-booking-form {
  background: var(--warm-white) !important;
  border: 1px solid var(--border) !important;
  padding: 2.5rem !important;
  font-family: 'Jost', sans-serif !important;
}
.rtb-booking-form label {
  font-size: 0.67rem !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
  color: var(--mid) !important;
  font-family: 'Jost', sans-serif !important;
  font-weight: 400 !important;
}
.rtb-booking-form input,
.rtb-booking-form select,
.rtb-booking-form textarea {
  background: var(--cream) !important;
  border: 1px solid var(--border) !important;
  padding: 0.7rem 0.9rem !important;
  font-size: 0.88rem !important;
  font-family: 'Jost', sans-serif !important;
  font-weight: 300 !important;
  color: var(--dark) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  transition: border-color 0.2s !important;
  width: 100% !important;
}
.rtb-booking-form input:focus,
.rtb-booking-form select:focus,
.rtb-booking-form textarea:focus {
  outline: none !important;
  border-color: var(--terracotta) !important;
  box-shadow: none !important;
}
.rtb-booking-form .rtb-submit,
.rtb-booking-form input[type="submit"],
.rtb-booking-form button[type="submit"] {
  background: var(--terracotta) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 0.9rem 2rem !important;
  font-size: 0.78rem !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  font-family: 'Jost', sans-serif !important;
  cursor: pointer !important;
  transition: background 0.2s !important;
  box-shadow: none !important;
  width: 100% !important;
}
.rtb-booking-form .rtb-submit:hover,
.rtb-booking-form input[type="submit"]:hover,
.rtb-booking-form button[type="submit"]:hover {
  background: var(--earth) !important;
}
.rtb-booking-form .rtb-message,
.rtb-booking-form .rtb-success {
  background: var(--blush) !important;
  border-left: 3px solid var(--terracotta) !important;
  padding: 1rem 1.25rem !important;
  font-size: 0.85rem !important;
  color: var(--dark) !important;
  border-radius: 0 !important;
}
.rtb-booking-form h2,
.rtb-booking-form h3 {
  font-family: 'Cormorant Garamond', serif !important;
  font-weight: 300 !important;
  color: var(--dark) !important;
}

/* =============================================
   RESPONSIVE
   ============================================= */
/* -- Hamburger button ------------------------------------------- */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 200;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--dark);
  transition: all 0.3s ease;
  transform-origin: center;
}
/* Animate to X when open */
.nav-toggle.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 768px) {
  .site-nav { padding: 0 1.25rem; }
  .nav-toggle { display: flex; }
  .site-nav .nav-menu {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(250,248,243,0.98);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 1rem 0 1.5rem;
    z-index: 99;
    list-style: none;
  }
  .site-nav .nav-menu.is-open { display: flex; }
  .site-nav .nav-menu li { width: 100%; text-align: center; }
  .site-nav .nav-menu a {
    display: block;
    padding: 0.85rem 2rem;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    color: var(--dark);
    border-bottom: 1px solid var(--border);
  }
  .site-nav .nav-menu li:last-child a { border-bottom: none; }
  .site-nav .nav-menu a:hover { color: var(--terracotta); }
  .site-nav .nav-logo img { height: 32px; } /* slightly smaller on mobile */
  .site-nav .nav-book { font-size: 0.68rem; padding: 0.4rem 0.9rem; }
  .footer-inner { grid-template-columns: 1fr; }
}

/* =============================================
   HERO � BACKGROUND IMAGE
   ============================================= */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 110px 2rem 5rem;
  position: relative;
  overflow: hidden;

  /* Warm dark overlay keeps text readable over any photo */
  background-image:
    linear-gradient(
      to bottom,
      rgba(42, 31, 26, 0.45) 0%,
      rgba(42, 31, 26, 0.30) 50%,
      rgba(42, 31, 26, 0.55) 100%
    ),
    /* Default: Le Marche landscape � replace URL with your own image */
    url('https://images.unsplash.com/photo-1667834741700-aafd0a03a633?w=1920&q=80&auto=format&fit=crop');

  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
  background-attachment: fixed; /* subtle parallax effect */
}

/* Remove the decorative circles � they clash with a photo */
.hero::before,
.hero::after { display: none; }

/* Adjust text colours for image background */
.hero-eyebrow  { color: rgba(255, 255, 255, 0.75); }
.hero h1       { color: #fff; }
.hero h1 em    { color: var(--terra-light); }
.hero-sub      { color: rgba(255, 255, 255, 0.75); }
.hero-poet     { color: rgba(255, 255, 255, 0.80); border-left-color: var(--terra-light); }
.hero-poet cite { color: rgba(255, 255, 255, 0.55); }
.hero-meta     { color: rgba(255, 255, 255, 0.55); }
.scroll-hint   { color: rgba(255, 255, 255, 0.5); }
.scroll-hint span { background: rgba(255, 255, 255, 0.3); }

/* Shorter hero variant for utility pages (booking, policy, menu) */
.hero--short {
  min-height: 44vh;
  background-attachment: scroll; /* attachment:fixed can look odd on short heroes */
}

/* -- Per-page image overrides ----------------------------------
   Add these body classes to each page template via body_class()
   or assign them in functions.php, then override the URL here.
   ----------------------------------------------------------- */

/* Home � rolling hills of Le Marche */
.page-template-front-page .hero {
  background-image:
    linear-gradient(to bottom, rgba(42,31,26,0.45) 0%, rgba(42,31,26,0.30) 50%, rgba(42,31,26,0.55) 100%),
    url('https://images.unsplash.com/photo-1667834741700-aafd0a03a633?w=1920&q=80&auto=format&fit=crop');
}

/* Menu page � food / table setting */
.page-template-page-menu .hero {
  background-image:
    linear-gradient(to bottom, rgba(42,31,26,0.50) 0%, rgba(42,31,26,0.35) 50%, rgba(42,31,26,0.55) 100%),
    url('https://images.unsplash.com/photo-1555396273-367ea4eb4db5?w=1920&q=80&auto=format&fit=crop');
  background-position: center 55%;
}

/* Booking page � restaurant interior */
.page-template-page-booking .hero {
  background-image:
    linear-gradient(to bottom, rgba(42,31,26,0.50) 0%, rgba(42,31,26,0.35) 50%, rgba(42,31,26,0.55) 100%),
    url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?w=1920&q=80&auto=format&fit=crop');
  background-position: center 60%;
}

/* Parties page � candlelit dinner */
.page-template-page-parties .hero {
  background-image:
    linear-gradient(to bottom, rgba(42,31,26,0.50) 0%, rgba(42,31,26,0.35) 50%, rgba(42,31,26,0.60) 100%),
    url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?w=1920&q=80&auto=format&fit=crop');
  background-position: center 50%;
}

/* Le Marche page � Adriatic coast / countryside */
.page-template-page-le-marche .hero {
  background-image:
    linear-gradient(to bottom, rgba(42,31,26,0.40) 0%, rgba(42,31,26,0.25) 50%, rgba(42,31,26,0.50) 100%),
    url('https://images.unsplash.com/photo-1667834741700-aafd0a03a633?w=1920&q=80&auto=format&fit=crop');
  background-position: center 35%;
}

/* Privacy & Service Charge � subtle, minimal */
.page-template-page-privacy .hero,
.page-template-page-service-charge .hero {
  min-height: 38vh;
  background-image:
    linear-gradient(to bottom, rgba(42,31,26,0.55) 0%, rgba(42,31,26,0.45) 100%),
    url('https://images.unsplash.com/photo-1667834741700-aafd0a03a633?w=1920&q=80&auto=format&fit=crop');
  background-attachment: scroll;
}

/* -- Swap with your own hosted images --------------------------
   Once you have uploaded your own photos to WordPress Media Library,
   replace each url(...) above with the WordPress attachment URL, e.g.:
   url('<?php echo get_template_directory_uri(); ?>/images/hero-home.jpg')
   ----------------------------------------------------------- */

/* Responsive � disable fixed attachment on mobile (performance) */
@media (max-width: 768px) {
  .hero { background-attachment: scroll; }
}

/* =============================================
   HERO � all pages
   ============================================= */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 110px 2rem 5rem;
  position: relative; overflow: hidden;
  background-image:
    linear-gradient(to bottom, rgba(42,31,26,0.45) 0%, rgba(42,31,26,0.30) 50%, rgba(42,31,26,0.55) 100%),
    url('https://rossodisera.co.uk/wp-content/uploads/imgs-web/Tiramisu_caffe_w1920_sm.webp'); /* default � overridden per page below */
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.hero::before, .hero::after { display: none; }
.hero-eyebrow { font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.75); margin-bottom: 1.5rem; }
.hero h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.8rem,6vw,5rem); font-weight: 300; line-height: 1.05; color: #fff; margin-bottom: 1rem; }
.hero h1 em { font-style: italic; color: var(--terra-light); }
.hero-sub { font-size: 0.92rem; color: rgba(255,255,255,0.75); max-width: 500px; margin: 0 auto 2.5rem; line-height: 1.85; }
.hero-ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-meta { font-size: 0.75rem; color: rgba(255,255,255,0.55); margin-top: 1rem; }
.hero-poet { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.05rem; color: rgba(255,255,255,0.80); margin-top: 1.5rem; border-left: 2px solid var(--terra-light); padding-left: 1.25rem; text-align: left; max-width: 480px; }
.hero-poet cite { display: block; font-size: 0.72rem; font-style: normal; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-top: 0.5rem; }
.scroll-hint { margin-top: 4rem; font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.5); display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
.scroll-hint span { width: 1px; height: 40px; background: rgba(255,255,255,0.3); display: block; animation: drop 2s ease-in-out infinite; }
@keyframes drop { 0%,100%{opacity:0;transform:scaleY(0) translateY(-100%)} 50%{opacity:1;transform:scaleY(1) translateY(0)} }

/* Per-page hero images � using data-hero attribute set in each template */
.hero[data-hero="home"] {
  background-image: linear-gradient(to bottom, rgba(42,31,26,0.45) 0%, rgba(42,31,26,0.30) 50%, rgba(42,31,26,0.55) 100%), 
url('https://rossodisera.co.uk/wp-content/uploads/imgs-web/Tiramisu_caffe_w1920_sm.webp');
  background-position: center 40%;
}
.hero[data-hero="menu"] {
  background-image: linear-gradient(to bottom, rgba(42,31,26,0.50) 0%, rgba(42,31,26,0.35) 50%, rgba(42,31,26,0.55) 100%), 
url('https://rossodisera.co.uk/wp-content/uploads/imgs-web/tovagleitta_g-nologo_w1920.webp');
  background-position: center 55%; min-height: 55vh;
}
.hero[data-hero="booking"] {
  background-image: linear-gradient(to bottom, rgba(42,31,26,0.50) 0%, rgba(42,31,26,0.35) 50%, rgba(42,31,26,0.55) 100%), 
url('https://rossodisera.co.uk/wp-content/uploads/imgs-web/pasta_tagliatelle_parmigiano_w1920_sm.webp');
  background-position: center 60%; min-height: 44vh;
}
.hero[data-hero="parties"] {
  background-image: linear-gradient(to bottom, rgba(42,31,26,0.50) 0%, rgba(42,31,26,0.35) 50%, rgba(42,31,26,0.60) 100%), 
url('https://rossodisera.co.uk/wp-content/uploads/imgs-web/hands_glasses_w1920.webp');
  min-height: 65vh;
}
.hero[data-hero="le-marche"] {
  background-image: linear-gradient(to bottom, rgba(42,31,26,0.40) 0%, rgba(42,31,26,0.25) 50%, rgba(42,31,26,0.50) 100%), 
  url('https://rossodisera.co.uk/wp-content/uploads/imgs-web/thatistheway_w1920_sm.webp');
  background-position: center 35%; min-height: 80vh;
}
.hero[data-hero="policy"] {
  min-height: 38vh; background-attachment: scroll;
  background-image: linear-gradient(to bottom, rgba(42,31,26,0.55) 0%, rgba(42,31,26,0.45) 100%), 
url('https://rossodisera.co.uk/wp-content/uploads/imgs-web/tovagleitta_y-nologo_w1920.webp');
  background-position: center 40%;
}

/* =============================================
   HOME PAGE
   ============================================= */
.about { background: var(--warm-white); padding: 5rem 2rem; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; max-width: 980px; margin: 0 auto; }
.about-text p { font-size: 0.95rem; line-height: 1.85; color: var(--mid); margin-bottom: 1rem; }
.about-text p strong { color: var(--dark); font-weight: 500; }
.about-badges { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-top: 2rem; }
.badge { border: 1px solid var(--border); padding: 0.4rem 0.9rem; font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mid); }
.about-image-stack { position: relative; height: 420px; }
.img-frame { position: absolute; background: var(--blush); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; }
.img-frame-1 { width: 72%; height: 80%; top: 0; right: 0; }
.img-frame-2 { width: 55%; height: 55%; bottom: 0; left: 0; }
.img-placeholder { font-family: 'Cormorant Garamond', serif; font-size: 0.8rem; font-style: italic; color: var(--mid); text-align: center; padding: 1rem; }
.img-emoji { font-size: 2.5rem; display: block; margin-bottom: 0.5rem; }

.menu-section { background: var(--blush); padding: 5rem 2rem; }
.menu-section .section-inner { max-width: 980px; margin: 0 auto; }
.menu-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 1.5rem; margin-top: 2.5rem; }
.menu-card { background: var(--warm-white); border: 1px solid var(--border); padding: 1.75rem; }
.menu-card-cat { font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--terracotta); margin-bottom: 0.5rem; }
.menu-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; font-weight: 400; color: var(--dark); margin-bottom: 0.5rem; }
.menu-card p { font-size: 0.82rem; color: var(--mid); line-height: 1.6; }
.set-menu-banner { background: var(--terracotta); color: #fff; padding: 2rem; margin-top: 2.5rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.set-menu-banner h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 300; font-style: italic; }
.set-menu-banner p { font-size: 0.85rem; opacity: 0.85; margin-top: 0.25rem; }

#info { padding: 5rem 2rem; background: var(--cream); }
#info .section-inner { max-width: 980px; margin: 0 auto; }
.info-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; margin-top: 2.5rem; }

.team-section { background: var(--warm-white); padding: 5rem 2rem; }
.team-section .section-inner { max-width: 980px; margin: 0 auto; }
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; margin-top: 2.5rem; }
.team-card { text-align: center; padding: 1.5rem; }
.team-avatar { width: 80px; height: 80px; border-radius: 50%; background: var(--blush); border: 1px solid var(--border); margin: 0 auto 1rem; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; }
.team-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 400; color: var(--dark); margin-bottom: 0.2rem; }
.team-card .role { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--terracotta); margin-bottom: 0.75rem; }
.team-card p { font-size: 0.83rem; color: var(--mid); line-height: 1.65; }

.book-section { background: var(--dark); padding: 5rem 2rem; }
.book-section .section-inner { max-width: 980px; margin: 0 auto; }
.book-section .section-label { color: var(--terra-light); }
.book-section .section-title { color: #fff; }
.book-section .section-title em { color: var(--terra-light); }
.book-note { font-size: 0.8rem; color: rgba(255,255,255,0.4); line-height: 1.7; margin-top: 1.5rem; }
.book-note a { color: var(--terra-light); text-decoration: none; }
.plugin-notice { background: var(--blush); border: 1px solid var(--border); padding: 1.5rem 2rem; font-size: 0.88rem; color: var(--mid); line-height: 1.8; }
.plugin-notice a { color: var(--terracotta); }

/* =============================================
   BOOKING PAGE
   ============================================= */
.booking-page-wrap { background: var(--cream); padding: 0 0 5rem; }
.main-wrap { max-width: 980px; margin: 0 auto; padding: 4rem 2rem; display: grid; grid-template-columns: 1fr 380px; gap: 4rem; align-items: start; }
.form-panel { background: var(--warm-white); border: 1px solid var(--border); padding: 2.5rem; }
.form-panel-title { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 300; color: var(--dark); margin-bottom: 0.25rem; }
.form-panel-title em { font-style: italic; color: var(--terracotta); }
.form-subtitle { font-size: 0.78rem; color: var(--mid); margin-bottom: 2rem; }
.form-note { font-size: 0.74rem; color: var(--mid); margin-top: 1rem; line-height: 1.7; text-align: center; }
.sidebar { display: flex; flex-direction: column; gap: 1.5rem; }
.set-card { background: var(--terracotta); color: #fff; padding: 1.75rem; }
.set-card .set-label { font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase; opacity: 0.75; margin-bottom: 0.6rem; display: block; }
.set-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 300; font-style: italic; margin-bottom: 0.5rem; }
.set-card p { font-size: 0.83rem; opacity: 0.85; line-height: 1.65; }
.set-prices { display: flex; gap: 1.5rem; margin: 1rem 0 1.25rem; }
.set-price .amount { font-family: 'Cormorant Garamond', serif; font-size: 1.75rem; font-weight: 300; }
.set-price .courses { font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.7; }
.btn-menu { display: block; text-align: center; background: #fff; color: var(--terracotta); padding: 0.65rem; font-size: 0.73rem; letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none; }
.info-card-label { font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--terracotta); margin-bottom: 0.75rem; display: block; }
.note-card { border: 1px solid var(--border); padding: 1.5rem; background: var(--blush); }
.note-card p { font-size: 0.82rem; line-height: 1.8; color: var(--mid); }
.note-card p + p { margin-top: 0.75rem; }
.note-card strong { color: var(--dark); font-weight: 500; }
.cancel-section { background: var(--blush); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 3rem 2rem; }
.cancel-inner { max-width: 980px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.cancel-text .section-label { color: var(--terracotta); }
.cancel-text h2 { font-family: 'Cormorant Garamond', serif; font-size: 1.7rem; font-weight: 300; color: var(--dark); margin-bottom: 0.5rem; }
.cancel-text h2 em { font-style: italic; color: var(--terracotta); }
.cancel-text p { font-size: 0.84rem; color: var(--mid); line-height: 1.75; }
.cancel-form { background: var(--warm-white); border: 1px solid var(--border); padding: 2rem; display: flex; flex-direction: column; gap: 1rem; }

/* =============================================
   MENU PAGE
   ============================================= */
.hours-bar { background: var(--warm-white); border-bottom: 1px solid var(--border); padding: 2rem; }
.hours-inner { max-width: 980px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.hours-label { font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--terracotta); margin-bottom: 0.75rem; display: block; }
.hours-note { font-size: 0.78rem; color: var(--mid); margin-top: 0.75rem; font-style: italic; }
.address-block p { font-size: 0.87rem; line-height: 1.8; color: var(--mid); }
.address-block a { color: var(--terracotta); text-decoration: none; }
.set-banner { background: var(--terracotta); color: #fff; padding: 2.5rem 2rem; }
.set-inner { max-width: 980px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.set-info h2 { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 300; font-style: italic; margin-bottom: 0.4rem; }
.set-info p { font-size: 0.88rem; opacity: 0.85; line-height: 1.6; }
.set-courses { display: flex; gap: 1.5rem; margin-top: 0.75rem; }
.set-course { text-align: center; }
.set-course .price { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 300; }
.set-course .label { font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.7; }
.set-dishes-section { background: var(--blush); padding: 3rem 2rem; }
.set-dishes-inner { max-width: 980px; margin: 0 auto; }
.set-dishes-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; margin-top: 1.5rem; }
.set-dish { background: var(--warm-white); border: 1px solid var(--border); padding: 1.25rem; }
.set-dish .cat { font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--terracotta); margin-bottom: 0.3rem; }
.set-dish h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; font-weight: 400; color: var(--dark); margin-bottom: 0.3rem; }
.set-dish p { font-size: 0.78rem; color: var(--mid); line-height: 1.5; }
.menu-section-wrapper { padding: 4rem 2rem; }
.menu-section-wrapper:nth-child(odd) { background: var(--warm-white); }
.menu-section-wrapper:nth-child(even) { background: var(--cream); }
.menu-inner { max-width: 980px; margin: 0 auto; }
.menu-section-head { display: flex; align-items: baseline; justify-content: space-between; border-bottom: 1px solid var(--border); padding-bottom: 1rem; margin-bottom: 2rem; }
.menu-section-head h2 { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 300; color: var(--dark); }
.menu-section-head h2 em { font-style: italic; color: var(--terracotta); }
.menu-section-head .subtitle { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--mid); }
.menu-items { display: flex; flex-direction: column; }
.menu-item { display: grid; grid-template-columns: 1fr auto; gap: 1.5rem; align-items: baseline; padding: 0.9rem 0; border-bottom: 1px solid var(--border); }
.menu-item:last-child { border: none; }
.item-name { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-weight: 400; color: var(--dark); margin-bottom: 0.15rem; }
.item-desc { font-size: 0.8rem; color: var(--mid); line-height: 1.5; margin-bottom: 0.15rem; }
.item-story { font-size: 0.75rem; color: var(--terra-light); font-style: italic; line-height: 1.4; }
.item-tags { display: flex; gap: 0.35rem; margin-top: 0.3rem; flex-wrap: wrap; }
.tag { font-size: 0.6rem; letter-spacing: 0.08em; text-transform: uppercase; border: 1px solid var(--border); padding: 0.1rem 0.4rem; color: var(--mid); }
.tag.vegan { border-color: #8AAB7A; color: #4d7a3c; }
.tag.veg { border-color: #A0B884; color: #4d7a3c; }
.tag.gf { border-color: #C9A86C; color: #7a5c1e; }
.item-price { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: var(--terracotta); white-space: nowrap; font-style: italic; }
.allergen-key { background: var(--blush); padding: 2rem; border-top: 1px solid var(--border); }
.allergen-inner { max-width: 980px; margin: 0 auto; }
.allergen-label { font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--mid); margin-bottom: 0.75rem; display: block; }
.allergen-grid { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.allergen-pill { font-size: 0.7rem; color: var(--mid); border: 1px solid var(--border); padding: 0.2rem 0.6rem; background: var(--warm-white); }
.book-cta { background: var(--dark); padding: 4rem 2rem; }
.book-inner { max-width: 980px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.book-text .label { font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--terra-light); margin-bottom: 0.5rem; }
.book-text h2 { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 300; color: #fff; }
.book-text h2 em { font-style: italic; color: var(--terra-light); }
.book-text .book-note { font-size: 0.8rem; color: rgba(255,255,255,0.4); margin-top: 1rem; line-height: 1.7; }
.book-text .book-note a { color: var(--terra-light); text-decoration: none; }
.book-actions { display: flex; flex-direction: column; gap: 0.75rem; align-items: flex-end; }

/* =============================================
   LE MARCHE PAGE
   ============================================= */
.values { background: var(--warm-white); padding: 5rem 2rem; }
.values .section-inner { max-width: 980px; margin: 0 auto; }
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; margin-top: 2.5rem; }
.value-card { padding: 2rem; border: 1px solid var(--border); }
.value-icon { width: 48px; height: 48px; border-radius: 50%; background: var(--blush); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 1.25rem; }
.value-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 400; color: var(--dark); margin-bottom: 0.5rem; }
.value-card p { font-size: 0.85rem; line-height: 1.75; color: var(--mid); }
.landscape-banner { background: var(--blush); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 4rem 2rem; text-align: center; }
.landscape-banner h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.8rem,4vw,2.8rem); font-weight: 300; color: var(--dark); font-style: italic; margin-bottom: 1rem; }
.landscape-banner p { font-size: 0.92rem; line-height: 1.85; color: var(--mid); max-width: 680px; margin: 0 auto; }
.producers-intro { background: var(--warm-white); padding: 5rem 2rem; }
.producers-intro .section-inner { max-width: 980px; margin: 0 auto; }
.producers-intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.producers-intro-text p { font-size: 0.93rem; line-height: 1.85; color: var(--mid); margin-bottom: 1rem; }
.producers-intro-text p strong { color: var(--dark); font-weight: 500; }
.producers-intro-visual { background: var(--blush); border: 1px solid var(--border); padding: 2.5rem; display: flex; flex-direction: column; gap: 1rem; }
.mini-tag { display: inline-block; border: 1px solid var(--border); padding: 0.35rem 0.75rem; font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mid); background: var(--warm-white); }
.producers { background: var(--cream); padding: 5rem 2rem; }
.producers .section-inner { max-width: 980px; margin: 0 auto; }
.producers-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; margin-top: 2.5rem; }
.producer-card { background: var(--warm-white); border: 1px solid var(--border); padding: 1.75rem; }
.producer-card-cat { font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--terracotta); margin-bottom: 0.4rem; }
.producer-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 400; color: var(--dark); margin-bottom: 0.6rem; }
.producer-card p { font-size: 0.83rem; line-height: 1.7; color: var(--mid); }
.wines-feature { background: var(--blush); padding: 5rem 2rem; }
.wines-inner { max-width: 980px; margin: 0 auto; }
.wines-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 2.5rem; gap: 2rem; flex-wrap: wrap; }
.wines-list { display: grid; grid-template-columns: repeat(auto-fit,minmax(180px,1fr)); gap: 1rem; }
.winery-pill { background: var(--warm-white); border: 1px solid var(--border); padding: 1rem 1.25rem; }
.winery-pill .name { font-family: 'Cormorant Garamond', serif; font-size: 1rem; font-weight: 400; color: var(--dark); }
.winery-pill .region { font-size: 0.72rem; color: var(--mid); margin-top: 0.2rem; }
.cta-section { background: var(--dark); padding: 5rem 2rem; }
.cta-section .section-inner { max-width: 980px; margin: 0 auto; }
.cta-section .section-label { color: var(--terra-light); }
.cta-section .section-title { color: #fff; }
.cta-section .section-title em { color: var(--terra-light); }
.cta-section p { font-size: 0.9rem; color: rgba(255,255,255,0.55); line-height: 1.8; max-width: 520px; margin-bottom: 2.5rem; }
.cta-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

/* =============================================
   PARTIES PAGE
   ============================================= */
.offers { background: var(--warm-white); padding: 5rem 2rem; }
.offers .section-inner { max-width: 980px; margin: 0 auto; }
.offers-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 2.5rem; }
.offer-card { border: 1px solid var(--border); padding: 2rem; }
.offer-icon { font-size: 1.6rem; margin-bottom: 1rem; display: block; }
.offer-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 400; color: var(--dark); margin-bottom: 0.5rem; }
.offer-card p { font-size: 0.84rem; line-height: 1.75; color: var(--mid); }
.menus-banner { background: var(--terracotta); color: #fff; padding: 3rem 2rem; }
.menus-inner { max-width: 980px; margin: 0 auto; }
.menus-banner .section-label { color: rgba(255,255,255,0.65); }
.menus-banner .section-title { color: #fff; }
.menus-banner .section-title em { color: rgba(255,255,255,0.75); }
.menus-banner p { font-size: 0.9rem; opacity: 0.85; line-height: 1.75; max-width: 560px; margin-bottom: 2rem; }
.menus-types { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; margin-bottom: 2rem; }
.menu-type { background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2); padding: 1.25rem 1.5rem; }
.menu-type h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-weight: 400; font-style: italic; margin-bottom: 0.35rem; color: #fff; }
.menu-type p { font-size: 0.78rem; opacity: 0.8; line-height: 1.5; }
.menus-note { font-size: 0.82rem; opacity: 0.7; font-style: italic; }
.location-section { padding: 5rem 2rem; background: var(--cream); }
.location-grid { max-width: 980px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.loc-tag { font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--terracotta); margin-bottom: 0.6rem; display: block; }
.location-info h2 { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 300; color: var(--dark); margin-bottom: 0.4rem; line-height: 1.1; }
.location-info h2 em { font-style: italic; color: var(--terracotta); }
.location-info .address { font-size: 0.83rem; color: var(--mid); margin-bottom: 1.5rem; }
.location-info .address a { color: var(--terracotta); text-decoration: none; }
.location-info p { font-size: 0.88rem; line-height: 1.8; color: var(--mid); margin-bottom: 1.25rem; }
.rooms-grid { display: flex; flex-direction: column; gap: 0.6rem; margin: 1.5rem 0; }
.room-row { display: flex; justify-content: space-between; align-items: baseline; padding: 0.55rem 0.9rem; background: var(--blush); border: 1px solid var(--border); }
.room-name { font-size: 0.85rem; color: var(--dark); font-style: italic; font-family: 'Cormorant Garamond', serif; }
.room-cap { font-size: 0.72rem; letter-spacing: 0.08em; color: var(--terracotta); }
.party-menus { margin-top: 1.5rem; }
.party-menus-label { font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--mid); margin-bottom: 0.75rem; display: block; }
.menu-links { display: flex; flex-direction: column; gap: 0.5rem; }
.menu-link { display: flex; align-items: center; justify-content: space-between; padding: 0.65rem 1rem; border: 1px solid var(--border); background: var(--warm-white); text-decoration: none; transition: border-color 0.2s, background 0.2s; }
.menu-link:hover { border-color: var(--terracotta); background: var(--blush); }
.menu-link .ml-name { font-size: 0.83rem; color: var(--dark); }
.menu-link .ml-arrow { font-size: 0.72rem; color: var(--terracotta); letter-spacing: 0.08em; text-transform: uppercase; }
.location-visual { display: flex; flex-direction: column; gap: 1rem; }
.loc-img-frame { background: var(--blush); border: 1px solid var(--border); height: 220px; display: flex; align-items: center; justify-content: center; }
.placeholder { text-align: center; font-family: 'Cormorant Garamond', serif; font-style: italic; color: var(--mid); font-size: 0.85rem; }
.contact-card { background: var(--warm-white); border: 1px solid var(--border); padding: 1.25rem 1.5rem; }
.contact-card p { font-size: 0.83rem; line-height: 1.8; color: var(--mid); }
.contact-card a { color: var(--terracotta); text-decoration: none; }
.contact-card strong { color: var(--dark); font-weight: 500; }
.enquiry-section { background: var(--dark); padding: 5rem 2rem; }
.enquiry-inner { max-width: 980px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.enquiry-text .label { font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--terra-light); margin-bottom: 0.5rem; display: block; }
.enquiry-text h2 { font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; font-weight: 300; color: #fff; line-height: 1.1; margin-bottom: 1rem; }
.enquiry-text h2 em { font-style: italic; color: var(--terra-light); }
.enquiry-text p { font-size: 0.88rem; color: rgba(255,255,255,0.5); line-height: 1.8; }
.enquiry-form-wrap { font-size: 0.88rem; color: rgba(255,255,255,0.6); line-height: 1.75; }

/* =============================================
   POLICY PAGES
   ============================================= */
.content-wrap { max-width: 760px; margin: 0 auto; padding: 5rem 2rem 6rem; }
.toc { background: var(--blush); border: 1px solid var(--border); padding: 1.75rem 2rem; margin-bottom: 3rem; }
.toc-label { font-size: 0.67rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--terracotta); margin-bottom: 0.9rem; display: block; }
.toc-list { list-style: none; display: flex; flex-direction: column; gap: 0.4rem; }
.toc-list a { font-size: 0.84rem; color: var(--mid); text-decoration: none; transition: color 0.2s; }
.toc-list a:hover { color: var(--terracotta); }
.toc-list a::before { content: '? '; font-size: 0.7rem; color: var(--terra-light); }
.policy-section { margin-bottom: 2.5rem; }
.policy-section h2 { font-family: 'Cormorant Garamond', serif; font-size: 1.45rem; font-weight: 300; color: var(--dark); margin-bottom: 1rem; padding-bottom: 0.6rem; border-bottom: 1px solid var(--border); }
.policy-section h2 em { font-style: italic; color: var(--terracotta); }
.policy-section h3 { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--dark); margin: 1.25rem 0 0.5rem; font-weight: 500; }
.policy-section p { font-size: 0.9rem; line-height: 1.9; color: var(--mid); margin-bottom: 0.85rem; }
.policy-section p strong { color: var(--dark); font-weight: 500; }
.policy-section a { color: var(--terracotta); text-decoration: none; }
.policy-section ul { margin: 0.5rem 0 0.85rem 1.25rem; }
.policy-section ul li { font-size: 0.88rem; line-height: 1.8; color: var(--mid); padding: 0.1rem 0; }
.data-table { width: 100%; border-collapse: collapse; margin: 1rem 0 0.85rem; font-size: 0.84rem; }
.data-table th { text-align: left; font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--terracotta); border-bottom: 1px solid var(--border); padding: 0.5rem 0.75rem 0.5rem 0; }
.data-table td { vertical-align: top; padding: 0.6rem 0.75rem 0.6rem 0; border-bottom: 1px solid rgba(226,217,206,0.5); color: var(--mid); line-height: 1.6; }
.data-table td:first-child { font-weight: 500; color: var(--dark); white-space: nowrap; }
.data-table tr:last-child td { border: none; }
.owner-card { background: var(--warm-white); border: 1px solid var(--border); padding: 1.75rem 2rem; margin: 1rem 0; }
.owner-card p { font-size: 0.88rem; line-height: 1.85; color: var(--mid); }
.owner-card p strong { color: var(--dark); font-weight: 500; display: block; margin-bottom: 0.25rem; }
.owner-card a { color: var(--terracotta); text-decoration: none; }
.update-note { font-size: 0.75rem; color: var(--mid); font-style: italic; margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--border); }
.policy-card { background: var(--warm-white); border: 1px solid var(--border); padding: 3rem 3.5rem; margin-bottom: 2rem; }
.policy-card h2 { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 300; color: var(--dark); margin-bottom: 1.5rem; padding-bottom: 0.75rem; border-bottom: 1px solid var(--border); }
.policy-card h2 em { font-style: italic; color: var(--terracotta); }
.policy-card p { font-size: 0.92rem; line-height: 1.9; color: var(--mid); margin-bottom: 1rem; }
.policy-card p strong { color: var(--dark); font-weight: 500; }
.policy-card a { color: var(--terracotta); text-decoration: none; }
.highlight-box { background: var(--blush); border-left: 3px solid var(--terracotta); padding: 1.5rem 2rem; margin: 1.5rem 0; }
.highlight-box p { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-style: italic; color: var(--earth); line-height: 1.65; margin: 0; }
.law-tag { display: inline-block; font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; border: 1px solid var(--border); padding: 0.25rem 0.7rem; color: var(--mid); margin-bottom: 1.25rem; }
.back-links { display: flex; gap: 1.5rem; flex-wrap: wrap; margin-top: 2.5rem; }
.back-link { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mid); text-decoration: none; border-bottom: 1px solid var(--border); padding-bottom: 0.15rem; transition: color 0.2s, border-color 0.2s; }
.back-link:hover { color: var(--terracotta); border-color: var(--terracotta); }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 768px) {
  .about-grid, .info-grid, .team-grid, .values-grid, .offers-grid,
  .menus-types, .set-dishes-grid, .producers-intro-grid, .producers-grid,
  .location-grid, .enquiry-inner, .cancel-inner, .hours-inner,
  .main-wrap { grid-template-columns: 1fr; gap: 2rem; }
  .about-image-stack { height: 260px; }
  .hero { background-attachment: scroll; }
  .book-inner { flex-direction: column; }
  .book-actions { align-items: flex-start; }
  .set-inner { flex-direction: column; }
  .policy-card { padding: 2rem 1.5rem; }
}
/* =============================================
   BOOKING PAGE LAYOUT & RTB FORM
   ============================================= */

/* Switch to single column so the form takes full width */
.booking-page-wrap {
  background: var(--cream);
  padding: 3rem 2rem 5rem;
}

.main-wrap {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 3rem;
  align-items: start;
  padding: 0;
}

/* Form panel � no padding, let the form breathe naturally */
.form-panel {
  background: var(--warm-white);
  border: 1px solid var(--border);
  padding: 0;
  overflow: hidden;
}

.form-panel .form-panel-title,
.form-panel .form-subtitle {
  padding: 1.5rem 1.5rem 0;
}

/* -- RTB wrapper ------------------------------------------------ */
/* Make the plugin container fill the panel completely */
.rtb-booking-form {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

/* Inner form wrapper */
.rtb-booking-form-form {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 1rem 0 !important;
  box-sizing: border-box !important;
}

/* Each fieldset (Book a table, Contact Details, etc.) */
.rtb-booking-form fieldset {
  width: 90% !important;
  max-width: 90% !important;
  margin: 0 auto 1.25rem auto !important;
  padding: 1.25rem !important;
  box-sizing: border-box !important;
  border: 1px solid var(--border) !important;
  border-radius: 0 !important;
  background: var(--cream) !important;
}

/* Fieldset legend */
.rtb-booking-form fieldset legend {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 1rem !important;
  font-weight: 400 !important;
  color: var(--dark) !important;
  padding: 0 0.5rem !important;
  letter-spacing: 0.04em !important;
}

/* Labels */
.rtb-booking-form label {
  display: block !important;
  font-size: 0.67rem !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
  color: var(--mid) !important;
  font-family: 'Jost', sans-serif !important;
  font-weight: 400 !important;
  margin-bottom: 0.35rem !important;
  margin-top: 0.75rem !important;
}

/* All inputs, selects, textareas � 100% of their fieldset */
.rtb-booking-form input[type="text"],
.rtb-booking-form input[type="email"],
.rtb-booking-form input[type="tel"],
.rtb-booking-form input[type="date"],
.rtb-booking-form input[type="number"],
.rtb-booking-form select,
.rtb-booking-form textarea {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
  padding: 0.75rem 0.9rem !important;
  font-size: 0.9rem !important;
  font-family: 'Jost', sans-serif !important;
  font-weight: 300 !important;
  color: var(--dark) !important;
  background: var(--warm-white) !important;
  border: 1px solid var(--border) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  -webkit-appearance: none !important;
  appearance: none !important;
  transition: border-color 0.2s !important;
}

.rtb-booking-form input:focus,
.rtb-booking-form select:focus,
.rtb-booking-form textarea:focus {
  outline: none !important;
  border-color: var(--terracotta) !important;
  box-shadow: none !important;
}

/* Submit button */
.rtb-booking-form input[type="submit"],
.rtb-booking-form button[type="submit"],
.rtb-booking-form .rtb-submit {
  display: block !important;
  width: 90% !important;
  margin: 1rem auto 1.5rem auto !important;
  background: var(--terracotta) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 0.95rem !important;
  font-size: 0.78rem !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  font-family: 'Jost', sans-serif !important;
  font-weight: 400 !important;
  cursor: pointer !important;
  transition: background 0.2s !important;
  box-shadow: none !important;
}

.rtb-booking-form input[type="submit"]:hover,
.rtb-booking-form button[type="submit"]:hover,
.rtb-booking-form .rtb-submit:hover {
  background: var(--earth) !important;
}

/* Success / error messages */
.rtb-booking-form .rtb-message,
.rtb-booking-form .rtb-success,
.rtb-booking-form .rtb-error {
  width: 90% !important;
  margin: 0 auto 1rem auto !important;
  background: var(--blush) !important;
  border-left: 3px solid var(--terracotta) !important;
  border-radius: 0 !important;
  padding: 1rem 1.25rem !important;
  font-size: 0.85rem !important;
  color: var(--dark) !important;
  box-shadow: none !important;
  box-sizing: border-box !important;
}

.rtb-booking-form label[for="rtb-consent-statement"],
.rtb-booking-form label[for="rtb-consent-statement"] a {
  font-size: 0.75rem !important;
  line-height: 1.6 !important;
  color: var(--mid) !important;
}

/* Responsive � stack on mobile */
@media (max-width: 768px) {
  .main-wrap {
    grid-template-columns: 1fr;
  }
  .rtb-booking-form fieldset,
  .rtb-booking-form input[type="submit"],
  .rtb-booking-form button[type="submit"],
  .rtb-booking-form .rtb-message {
    width: 95% !important;
  }
}

/* ── Password protected page form ─────────────────────────────── */
.post-password-form {
  margin-top: 1rem;
}
.post-password-form p {
  font-size: 0.88rem;
  color: var(--mid);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}
.post-password-form label {
  display: block;
  font-size: 0.67rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 0.4rem;
}
.post-password-form input[type="password"] {
  display: block;
  width: 100%;
  max-width: 360px;
  background: var(--cream);
  border: 1px solid var(--border);
  padding: 0.75rem 0.9rem;
  font-size: 0.9rem;
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  color: var(--dark);
  border-radius: 0;
  margin-bottom: 1rem;
  transition: border-color 0.2s;
}
.post-password-form input[type="password"]:focus {
  outline: none;
  border-color: var(--terracotta);
}
.post-password-form input[type="submit"] {
  background: var(--terracotta);
  color: #fff;
  border: none;
  padding: 0.8rem 2rem;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: 'Jost', sans-serif;
  cursor: pointer;
  transition: background 0.2s;
  border-radius: 0;
}
.post-password-form input[type="submit"]:hover {
  background: var(--earth);
}
