/* =========================================================================
   Nicola's Ristorante v2 — global styles
   Plain CSS, no preprocessor. Mobile-first.
   ========================================================================= */

/* -----------------------------------------------------------------------
   Self-hosted webfonts — binaries live in css/fonts/
   ----------------------------------------------------------------------- */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/inter-latin-400-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("fonts/inter-latin-500-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("fonts/inter-latin-600-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("fonts/inter-latin-700-normal.woff2") format("woff2");
}

@font-face {
  font-family: "Playfair Display";
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url("fonts/playfair-display-latin-500-italic.woff2") format("woff2");
}
@font-face {
  font-family: "Playfair Display";
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url("fonts/playfair-display-latin-600-italic.woff2") format("woff2");
}
@font-face {
  font-family: "Playfair Display";
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url("fonts/playfair-display-latin-700-italic.woff2") format("woff2");
}

/* -----------------------------------------------------------------------
   Design tokens
   ----------------------------------------------------------------------- */
:root {
  /* Palette */
  --color-bg-burgundy:    #2e0d0d;
  --color-bg-burgundy-2:  #3a1212;
  --color-bg-panel:       #150707;
  --color-panel-border:   #3b1c1c;
  --color-header-bg:      #000000;

  --color-text-cream:     #e8dccc;
  --color-text-muted:     #b3a594;

  --color-accent-green:   #2e8b57;   /* Italian-flag-ish green for headings */
  --color-accent-green-2: #3fa66b;
  --color-accent-red:     #c8102e;   /* CTA / emphasis red */
  --color-accent-red-dk:  #7a0e1c;   /* darker red for the reservation chip */
  --color-accent-gold:    #d9b35c;   /* phone number gold */

  --color-tile-card:      #efe5d2;
  --color-tile-script:    #5a1414;

  /* Type */
  --font-serif: "Playfair Display", "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-sans:  "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Layout */
  --content-max: 1100px;
  --gutter: clamp(1rem, 3vw, 2rem);
  --header-h-mobile: 116px;
  --header-h-desktop: 138px;
  --radius: 4px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text-cream);
  background-color: var(--color-bg-burgundy);
  background-image: url("../images/bg_pattern.png");
  background-repeat: repeat;
  background-attachment: fixed;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1 0 auto;
  width: 100%;
}

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

a { color: var(--color-text-cream); text-decoration: underline; text-decoration-color: rgba(255,255,255,0.25); text-underline-offset: 3px; }
a:hover { text-decoration-color: currentColor; }

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

p { margin: 0 0 1.1em; }

/* Skip link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--color-accent-gold);
  color: #000;
  padding: 0.6rem 1rem;
  z-index: 1000;
  font-weight: 600;
}
.skip-link:focus { left: 1rem; top: 1rem; }

/* Screen-reader-only utility — visually hidden but exposed to AT */
.visually-hidden,
.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* main becomes focusable target for the skip link without joining the tab order */
main:focus { outline: none; }

/* -----------------------------------------------------------------------
   Header
   ----------------------------------------------------------------------- */
.site-header {
  background: var(--color-header-bg);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid #111;
}

.site-header__inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0.75rem var(--gutter);
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas:
    "logo  hamburger"
    "cta   cta"
    "nav   nav";
  align-items: center;
  gap: 0.5rem 1rem;
}

.site-header__logo {
  grid-area: logo;
  display: inline-block;
}
.site-header__logo img {
  width: 150px;
  height: auto;
}

.site-header__hamburger {
  grid-area: hamburger;
  background: transparent;
  border: 1px solid #444;
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
}
.site-header__hamburger:focus-visible {
  outline: 2px solid var(--color-accent-gold);
  outline-offset: 2px;
}
.site-header__hamburger-icon,
.site-header__hamburger-icon::before,
.site-header__hamburger-icon::after {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  position: relative;
  transition: transform 0.2s ease, opacity 0.2s ease, top 0.2s ease;
}
.site-header__hamburger-icon::before,
.site-header__hamburger-icon::after {
  content: "";
  position: absolute;
  left: 0;
}
.site-header__hamburger-icon::before { top: -7px; }
.site-header__hamburger-icon::after  { top:  7px; }

.site-header__hamburger[aria-expanded="true"] .site-header__hamburger-icon { background: transparent; }
.site-header__hamburger[aria-expanded="true"] .site-header__hamburger-icon::before { top: 0; transform: rotate(45deg); }
.site-header__hamburger[aria-expanded="true"] .site-header__hamburger-icon::after  { top: 0; transform: rotate(-45deg); }

/* Reservation CTA banner */
.reservation-cta {
  grid-area: cta;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.reservation-cta__button {
  display: inline-block;
  background: var(--color-accent-red-dk);
  color: #fff;
  padding: 0.55rem 0.9rem;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
}
.reservation-cta__button:hover { background: var(--color-accent-red); }
.reservation-cta__arrow {
  display: inline-block;
  margin-left: 0.3em;
  font-weight: 400;
}
.reservation-cta__or {
  color: #ccc;
  font-size: 0.78rem;
}
.reservation-cta__phone {
  color: var(--color-accent-gold);
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.reservation-cta__phone:hover { color: #f4d27d; }

/* Primary nav — mobile collapsed */
.site-nav {
  grid-area: nav;
  display: none;
}
.site-nav[data-open="true"] { display: block; }
.site-nav__list {
  list-style: none;
  margin: 0;
  padding: 0.75rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.site-nav__list a {
  display: block;
  padding: 0.7rem 0.5rem;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.85rem;
  font-weight: 500;
  border-top: 1px solid #1c1c1c;
}
.site-nav__list a:hover,
.site-nav__list a[aria-current="page"] {
  color: var(--color-accent-gold);
}

/* Desktop header */
@media (min-width: 760px) {
  .site-header__inner {
    grid-template-columns: auto 1fr;
    grid-template-areas:
      "logo cta"
      "logo nav";
    padding: 0.9rem var(--gutter) 0.5rem;
    gap: 0.4rem 1.5rem;
  }
  .site-header__hamburger { display: none; }
  .site-header__logo img { width: 200px; }

  .reservation-cta {
    justify-self: end;
    font-size: 0.9rem;
  }

  .site-nav { display: block !important; justify-self: end; }
  .site-nav__list {
    flex-direction: row;
    gap: 1.4rem;
    padding: 0;
  }
  .site-nav__list a {
    border-top: 0;
    padding: 0.4rem 0;
    font-size: 0.88rem;
  }
}

/* -----------------------------------------------------------------------
   Content panel (interior pages)
   ----------------------------------------------------------------------- */
.page {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: clamp(1rem, 3vw, 2rem) var(--gutter) 3rem;
}

.panel {
  background: var(--color-bg-panel);
  border: 1px solid var(--color-panel-border);
  border-radius: var(--radius);
  padding: clamp(1.25rem, 3.5vw, 2.5rem);
  box-shadow: 0 6px 24px rgba(0,0,0,0.3);
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--color-accent-green);
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 0.6em;
}
h1 { font-size: clamp(1.8rem, 4.5vw, 2.6rem); }
h2 { font-size: clamp(1.45rem, 3vw, 1.9rem); }
h3 { font-size: clamp(1.2rem, 2.4vw, 1.45rem); }

.heading-bright { color: var(--color-accent-green-2); }

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  color: var(--color-accent-gold);
  font-family: var(--font-sans);
  font-style: normal;
  margin-bottom: 0.5rem;
}

/* Emphasis utility — single red sentence on About, red CTA line */
.text-red {
  color: var(--color-accent-red);
  font-weight: 600;
}
.text-center { text-align: center; }
.cta-line {
  color: var(--color-accent-red);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  text-align: center;
  margin: 2rem 0 0;
}
.cta-line a { color: inherit; text-decoration: none; border-bottom: 1px solid currentColor; }

/* -----------------------------------------------------------------------
   Home — hero slideshow
   ----------------------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  background: #000;
  margin: 0 auto;
  max-width: var(--content-max);
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.hero__viewport {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  max-height: 70vh;
}
@media (min-width: 760px) {
  .hero__viewport { aspect-ratio: 16 / 9; }
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.hero__slide.is-active { opacity: 1; z-index: 1; }
.hero__slide img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero__slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0) 35%, rgba(0,0,0,0) 70%, rgba(0,0,0,0.35) 100%);
  pointer-events: none;
}

.hero__caption {
  position: absolute;
  top: clamp(1rem, 4vw, 2rem);
  right: clamp(1rem, 4vw, 2rem);
  z-index: 2;
  font-family: var(--font-serif);
  font-style: italic;
  color: #fff;
  font-size: clamp(1.4rem, 3.6vw, 2.4rem);
  line-height: 1.15;
  text-align: right;
  max-width: 70%;
  text-shadow: 0 2px 12px rgba(0,0,0,0.7);
}

.hero__controls {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
  z-index: 3;
  padding: 0 0.5rem;
}
.hero__btn {
  pointer-events: auto;
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 760px) {
  .hero__btn { width: 44px; height: 44px; font-size: 1.4rem; }
}
.hero__btn:hover { background: rgba(0,0,0,0.7); }

.hero__dots {
  position: absolute;
  bottom: 0.4rem;
  left: 0; right: 0;
  display: flex;
  justify-content: center;
  gap: 0.15rem;
  z-index: 3;
}
.hero__dot {
  appearance: none;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 8px;
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.hero__dot::before {
  content: "";
  display: block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  transition: background 0.2s ease, transform 0.2s ease;
}
.hero__dot:hover::before { background: rgba(255,255,255,0.85); }
.hero__dot[aria-current="true"]::before,
.hero__dot.is-active::before { background: #fff; transform: scale(1.15); }

/* Play/pause toggle — meets WCAG 2.2.2 for auto-advancing content */
.hero__playpause {
  position: absolute;
  bottom: 0.6rem;
  right: 0.6rem;
  z-index: 4;
  pointer-events: auto;
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.hero__playpause:hover { background: rgba(0,0,0,0.75); }
.hero__playpause svg { width: 14px; height: 14px; fill: currentColor; }

/* -----------------------------------------------------------------------
   Home — tile row
   ----------------------------------------------------------------------- */
.tiles {
  max-width: var(--content-max);
  margin: 1.5rem auto 0;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 760px) {
  .tiles { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
}

.tile {
  display: block;
  background: transparent;
  border: 0;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  border-radius: var(--radius);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.tile img {
  width: 100%;
  height: auto;
  display: block;
}
a.tile:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0,0,0,0.45);
}

/* -----------------------------------------------------------------------
   About page — bio block
   ----------------------------------------------------------------------- */
.welcome-eyebrow {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--color-accent-green);
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  margin: 0 0 1rem;
  text-align: center;
}

.bio p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.4em;
  text-align: left;
}

.bio .year {
  font-weight: 700;
  color: var(--color-accent-gold);
  letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums;
}

.signoff-divider {
  border: 0;
  border-top: 1px solid rgba(232, 220, 204, 0.22);
  width: 80px;
  margin: 2.5rem auto 1.5rem;
}

.pullquote {
  margin: 2rem 0;
  padding: 1.25rem 1.5rem;
  border-left: 3px solid var(--color-accent-green);
  background: rgba(46, 139, 87, 0.06);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  line-height: 1.55;
  color: var(--color-text-cream);
}

.signoff {
  text-align: center;
  margin-top: 2rem;
}
.signoff__ciao,
.signoff__name {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--color-accent-green);
  margin: 0.2em 0;
}
.signoff__ciao { font-size: clamp(1.4rem, 3vw, 1.8rem); }
.signoff__name { font-size: clamp(1.2rem, 2.4vw, 1.5rem); }

/* -----------------------------------------------------------------------
   Menu page — sticky sidebar layout
   ----------------------------------------------------------------------- */
.menu-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.menu-layout > * { min-width: 0; }
@media (min-width: 960px) {
  .menu-layout {
    grid-template-columns: 220px 1fr;
    gap: 2rem;
    align-items: start;
  }
}

.menu-sidebar {
  background: var(--color-bg-panel);
  border: 1px solid var(--color-panel-border);
  border-radius: var(--radius);
  padding: 0.5rem;
}
@media (min-width: 960px) {
  .menu-sidebar {
    position: sticky;
    top: calc(var(--header-h-desktop) + 1rem);
    padding: 1rem 0.75rem;
  }
}

.menu-sidebar__title {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--color-accent-green);
  font-size: 1.1rem;
  margin: 0 0 0.6rem;
  padding: 0 0.5rem;
  display: none;
}
@media (min-width: 960px) {
  .menu-sidebar__title { display: block; }
}

.menu-sidebar__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  gap: 0.4rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
@media (min-width: 960px) {
  .menu-sidebar__list {
    flex-direction: column;
    gap: 0.15rem;
    overflow: visible;
  }
}
.menu-sidebar__list a {
  display: inline-block;
  padding: 0.5rem 0.9rem;
  text-decoration: none;
  color: var(--color-text-cream);
  border-radius: 999px;
  white-space: nowrap;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  border: 1px solid transparent;
  background: rgba(255,255,255,0.04);
}
@media (min-width: 960px) {
  .menu-sidebar__list a {
    border-radius: var(--radius);
    background: transparent;
    padding: 0.5rem 0.75rem;
    font-size: 0.95rem;
  }
}
.menu-sidebar__list a:hover { color: var(--color-accent-green-2); }
.menu-sidebar__list a.is-active {
  color: var(--color-accent-green-2);
  background: rgba(46,139,87,0.1);
  border-color: rgba(46,139,87,0.4);
}

/* sticky mobile pill-row */
@media (max-width: 959px) {
  .menu-sidebar {
    position: sticky;
    top: var(--header-h-mobile);
    z-index: 50;
    background: rgba(21, 7, 7, 0.96);
    backdrop-filter: blur(4px);
  }
}

.menu-section {
  scroll-margin-top: calc(var(--header-h-mobile) + 64px);
}
@media (min-width: 960px) {
  .menu-section { scroll-margin-top: calc(var(--header-h-desktop) + 16px); }
}
.menu-section + .menu-section { margin-top: 2.5rem; }

.menu-section__title {
  text-align: center;
  font-size: clamp(1.6rem, 3.2vw, 2rem);
  margin-bottom: 1.25rem;
  border-bottom: 1px solid rgba(232, 220, 204, 0.12);
  padding-bottom: 0.5rem;
}

.menu-section__note {
  text-align: center;
  font-style: italic;
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.menu-items { list-style: none; padding: 0; margin: 0; }
.menu-item {
  text-align: center;
  margin-bottom: 1.5rem;
}
.menu-item__name {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--color-text-cream);
  font-size: 1.2rem;
  margin: 0 0 0.3em;
}
.menu-item__desc {
  color: var(--color-text-muted);
  font-size: 0.92rem;
  max-width: 56ch;
  margin: 0 auto;
  line-height: 1.55;
}

/* -----------------------------------------------------------------------
   Menu page — prices (currently hidden)
   Each .menu-item carries data-price="<number>". To display prices on
   the menu, add the class "show-prices" to <body> or to the
   <article class="panel"> wrapping the menu sections.
   ----------------------------------------------------------------------- */
.show-prices .menu-item[data-price]::after {
  content: " (" attr(data-price) ")";
  display: block;
  margin-top: 0.4em;
  color: var(--color-accent-gold);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.95rem;
}

/* Wine table */
.wine-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 760px;
}
.wine-list li {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas:
    "varietal price"
    "producer producer"
    "region   region";
  gap: 0.15rem 0.75rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(232, 220, 204, 0.08);
}
.wine-list .w-varietal { grid-area: varietal; color: var(--color-text-cream); font-family: var(--font-serif); font-style: italic; font-size: 1.02rem; }
.wine-list .w-producer { grid-area: producer; color: var(--color-text-cream); font-size: 0.92rem; }
.wine-list .w-region   { grid-area: region;   color: var(--color-text-muted); font-size: 0.85rem; font-style: italic; }
.wine-list .w-price    {
  grid-area: price;
  color: var(--color-accent-gold);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  text-align: right;
  font-size: 0.95rem;
  min-width: 3.5ch;
}
@media (min-width: 640px) {
  .wine-list li {
    grid-template-columns: 1.2fr 1.5fr 1.3fr auto;
    grid-template-areas: "varietal producer region price";
    gap: 0.75rem;
    align-items: baseline;
  }
  .wine-list .w-region { text-align: right; }
}

/* House Wines — inline dash-separated list with a single shared price */
.house-wines {
  text-align: center;
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--color-text-cream);
  font-size: 1.05rem;
  max-width: 60ch;
  margin: 0 auto 0.6rem;
  line-height: 1.7;
}
.house-wines__meta {
  text-align: center;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin: 0;
}
.house-wines__price {
  color: var(--color-accent-gold);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

/* Section-bottom footnote (e.g., "VP = vintage price...") */
.menu-section__footnote {
  text-align: center;
  font-style: italic;
  color: var(--color-text-muted);
  font-size: 0.85rem;
  margin: 1.25rem 0 0;
}

/* -----------------------------------------------------------------------
   Reservations
   ----------------------------------------------------------------------- */
.info-block {
  text-align: center;
  padding: 1rem 0;
}
.info-block__address { font-style: italic; font-family: var(--font-serif); font-size: 1.1rem; margin: 0 0 1rem; }
.info-block__phone {
  color: var(--color-accent-gold);
  text-decoration: none;
  letter-spacing: 0.02em;
}
.info-block__phone:hover { color: #f4d27d; }
.info-block__hours { margin: 1.75rem 0; color: var(--color-text-cream); font-size: 1.15rem; }
.info-block__hours strong { color: var(--color-accent-green); font-style: italic; font-family: var(--font-serif); font-weight: 500; display: block; font-size: 1.5rem; margin-bottom: 0.4rem; }
.info-block__hours-list { list-style: none; padding: 0; margin: 0; }
.info-block__hours-list li { margin: 0.1rem 0; }
.phone-button {
  display: inline-block;
  background: var(--color-accent-red-dk);
  color: #fff;
  padding: 0.9rem 1.4rem;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.95rem;
}
.phone-button:hover { background: var(--color-accent-red); }

.reservation-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 2rem;
}
.reservation-actions .phone-button {
  min-width: 240px;
  text-align: center;
}
.reservation-actions__arrow {
  display: inline-block;
  margin-left: 0.3em;
  font-weight: 400;
}
.reservation-actions__note {
  margin: 1.25rem 0 0;
  color: var(--color-text-muted);
  font-size: 0.85rem;
  letter-spacing: 0.03em;
}

/* -----------------------------------------------------------------------
   Special events
   ----------------------------------------------------------------------- */
.events-hero { text-align: center; text-transform: uppercase; letter-spacing: 0.04em; }

.events-section { margin-top: 2rem; }
.events-section__title { text-align: center; margin-bottom: 1rem; }
.events-section p {
  font-size: 1.15rem;
  line-height: 1.7;
}

.events-figure {
  margin: 1.5rem 0;
  border-radius: var(--radius);
  overflow: hidden;
}
.events-figure img { width: 100%; height: auto; }

.events-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: center;
  margin: 1.5rem 0;
}
@media (min-width: 760px) {
  .events-split { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .events-split .events-figure { margin: 0; order: 2; }
  .events-split__text { order: 1; }
}

/* -----------------------------------------------------------------------
   Contact
   ----------------------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 760px) {
  .contact-grid { grid-template-columns: 1fr 1fr; }
}

.contact-card h2 { font-size: 1.4rem; margin-top: 1.5rem; }
.contact-card h2:first-child { margin-top: 0; }
.contact-card__address {
  font-style: italic;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
}
.contact-card__phone {
  display: inline-block;
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--color-accent-gold);
  text-decoration: none;
  font-size: 1.5rem;
}
.contact-card__email a { color: var(--color-text-cream); }

.contact-map {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: 0;
  border-radius: var(--radius);
  display: block;
}

.contact-socials {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}
.contact-socials a { display: inline-flex; }
.contact-socials svg { width: 28px; height: 28px; }

/* -----------------------------------------------------------------------
   FAQ accordion — used on contact and special-events pages
   ----------------------------------------------------------------------- */
.faq {
  margin-top: 2.5rem;
  border-top: 1px solid rgba(232, 220, 204, 0.12);
  padding-top: 1.5rem;
}
.faq__title {
  text-align: center;
  margin-bottom: 1.25rem;
}
.faq__item {
  border-bottom: 1px solid rgba(232, 220, 204, 0.08);
}
.faq__question {
  cursor: pointer;
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--color-text-cream);
  font-size: 1.15rem;
  padding: 0.85rem 2rem 0.85rem 0;
  list-style: none;
  position: relative;
}
.faq__question::-webkit-details-marker { display: none; }
.faq__question::after {
  content: "+";
  position: absolute;
  right: 0.25rem;
  top: 50%;
  transform: translateY(-50%);
  font-style: normal;
  font-family: var(--font-sans);
  color: var(--color-accent-gold);
  font-size: 1.4rem;
  line-height: 1;
  transition: transform 0.2s ease;
}
.faq__item[open] .faq__question::after {
  content: "\2212"; /* en-dash style minus */
}
.faq__answer {
  color: var(--color-text-muted);
  font-size: 0.98rem;
  line-height: 1.65;
  padding: 0 0 1rem;
  margin: 0;
}

/* -----------------------------------------------------------------------
   Footer
   ----------------------------------------------------------------------- */
.site-footer {
  flex-shrink: 0;
  padding: 2rem var(--gutter) 1.5rem;
  text-align: center;
  font-size: 0.9rem;
  color: var(--color-text-cream);
  border-top: 1px solid rgba(255,255,255,0.04);
  background: rgba(0,0,0,0.18);
}
.site-footer__inner {
  max-width: var(--content-max);
  margin: 0 auto;
}
.site-footer__row { margin-bottom: 0.9rem; }
.site-footer__row:last-child { margin-bottom: 0; }

.site-footer__socials {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  vertical-align: middle;
}
.site-footer__socials span { color: var(--color-text-muted); }
.site-footer__socials a {
  color: var(--color-text-cream);
  display: inline-flex;
  align-items: center;
}
.site-footer__socials svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
  transition: color 0.15s;
}
.site-footer__socials a:hover { color: var(--color-accent-gold); }

.site-footer__address {
  color: var(--color-text-cream);
  font-size: 0.92rem;
  font-style: normal;
}
.site-footer__address a { color: inherit; text-decoration: none; border-bottom: 1px dotted rgba(232,220,204,0.4); }
.site-footer__address a:hover { color: var(--color-accent-gold); border-bottom-color: currentColor; }
.site-footer__icon { vertical-align: middle; margin-right: 0.4rem; }

.site-footer__copyright {
  color: var(--color-text-muted);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
}

/* Body-lock when mobile nav is open */
body.nav-open { overflow: hidden; }
