/* ===== Delfino — Restoran i Pizzeria, Lovran ===== */

:root {
  --ink: #1e1a14;
  --ink-2: #2a251d;
  --ink-3: #3a3229;
  --gold: #c8a97a;
  --gold-soft: #e3c998;
  --gold-dark: #a8874e;
  --cream: #f6ece0;
  --paper: #fbf7f0;
  --muted: #7a6f5e;
  --line: rgba(200, 169, 122, 0.25);
  --serif: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  --sans: "Poppins", "Jost", "Helvetica Neue", Arial, sans-serif;
  --radius: 2px;
  --max: 1240px;
  --gutter: clamp(20px, 4vw, 60px);
  --ease: cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; margin: 0; padding: 0; overflow-x: hidden; scroll-padding-top: 60px; }
body { overflow-x: hidden;
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold-dark); text-decoration: none; transition: color .2s; }
a:hover { color: var(--ink); }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: 0;
  margin: 0 0 0.5em;
  line-height: 1.12;
  color: var(--ink);
}
h1 { font-size: clamp(2.6rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.4rem); }
h3 { font-size: clamp(1.4rem, 2.2vw, 1.9rem); }
p  { margin: 0 0 1em; }

.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 18px;
}
.section--dark .eyebrow { color: var(--gold); }

.container { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  color: var(--gold-dark);
  background: transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all .3s var(--ease);
}
.btn:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.btn--solid { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.btn--solid:hover { background: var(--gold-dark); border-color: var(--gold-dark); color: #fff; }
.btn--light { border-color: #fff; color: #fff; }
.btn--light:hover { background: #fff; color: var(--ink); }

/* ===== Sticky reservation CTA ===== */
.sticky-cta {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 90;
  padding: 14px 26px;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
  display: inline-flex; align-items: center; gap: 10px;
  transition: transform .3s var(--ease), box-shadow .3s;
}
.sticky-cta:hover { background: var(--gold-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 14px 36px rgba(0,0,0,.3); }
@media (max-width: 540px) { .sticky-cta { right: 14px; bottom: 14px; padding: 12px 20px; font-size: 10px; } }

/* ===== Nav ===== */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background .4s, box-shadow .4s;
  background: transparent;
}
.nav.scrolled {
  background: rgba(30, 26, 20, 0.96);
  box-shadow: 0 2px 30px rgba(0,0,0,.35);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px var(--gutter);
  max-width: var(--max);
  margin: 0 auto;
}
.brand {
  font-family: var(--serif);
  color: var(--gold);
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 6px;
  text-transform: uppercase;
  text-decoration: none;
  position: relative;
  padding-bottom: 14px;
}
.brand::after {
  content: "Lovran • Opatija Riviera";
  position: absolute;
  /* offset by half the letter-spacing (6px / 2 = 3px) so the subtitle aligns
     visually with DELFINO, which is shifted left by trailing letter-spacing */
  left: calc(50% - 3px);
  bottom: 0;
  transform: translateX(-50%);
  font-family: var(--sans);
  font-size: 8px;
  font-weight: 400;
  letter-spacing: 2px;
  color: rgba(255,255,255,.55);
  text-transform: uppercase;
  white-space: nowrap;
}
.nav__links {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__links a {
  color: #fff;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  position: relative;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px;
  width: 0; height: 1px; background: var(--gold);
  transition: width .3s var(--ease);
}
.nav__links a:hover { color: var(--gold); }
.nav__links a:hover::after { width: 100%; }

/* Dropdown */
.nav__links li { position: relative; }
.nav__links li.has-dropdown > a::before {
  content: "▾";
  font-size: 9px;
  margin-left: 6px;
  color: var(--gold);
  vertical-align: middle;
}
.nav__dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: rgba(30, 26, 20, 0.98);
  border: 1px solid var(--line);
  border-radius: 2px;
  min-width: 200px;
  padding: 10px 0;
  margin-top: 14px;
  list-style: none;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s var(--ease), transform .25s var(--ease);
  box-shadow: 0 18px 40px rgba(0,0,0,.35);
  z-index: 10;
}
/* Invisible bridge between parent <li> and dropdown so hover doesn't drop */
.nav__links li.has-dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  height: 24px;
}
.nav__links li.has-dropdown:hover .nav__dropdown,
.nav__links li.has-dropdown:focus-within .nav__dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav__dropdown li { display: block; }
.nav__dropdown a {
  display: block;
  padding: 10px 22px;
  color: #fff;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  white-space: nowrap;
}
.nav__dropdown a::after { display: none; }
.nav__dropdown a:hover { background: var(--gold); color: var(--ink); }
.nav__cta { display: flex; gap: 10px; align-items: center; }
.nav__cta .btn { padding: 10px 18px; font-size: 10px; }
.nav__lang {
  color: #fff;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-left: 10px;
}
.nav__lang a { color: rgba(255,255,255,.55); margin: 0 4px; }
.nav__lang a.active, .nav__lang a:hover { color: var(--gold); }
.nav__toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
}
@media (max-width: 1080px) { .nav__links { gap: 22px; } .nav__links a { font-size: 10px; letter-spacing: 2px; } }
@media (max-width: 900px) {
  .nav__links, .nav__lang { display: none; }
  .nav__toggle { display: block; }
  .nav.open { background: rgba(30,26,20,.98); }
  .nav.open .nav__links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(30,26,20,.98);
    padding: 20px var(--gutter);
    gap: 18px;
  }
  .nav.open .nav__lang {
    display: block;
    padding: 10px var(--gutter) 20px;
    background: rgba(30,26,20,.98);
    position: absolute;
    top: calc(100% + 250px); left: 0; right: 0;
  }
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  background: #000;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background-image: url('../images/headers/steak-salad.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(0.45);
  transform: scale(1.05);
  animation: zoomOut 14s ease-out forwards;
}
@keyframes zoomOut { to { transform: scale(1); } }
.hero__inner {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding: 120px var(--gutter) 80px;
}
.hero__eyebrow { color: var(--gold); }
.hero h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(3rem, 7vw, 5.6rem);
  color: #fff;
  letter-spacing: 1px;
  margin-bottom: 18px;
}
.hero h1 em { font-style: italic; color: var(--gold-soft); font-weight: 400; }
.hero__sub {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-style: italic;
  margin-bottom: 8px;
  color: rgba(255,255,255,.9);
}
.hero__loc {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 40px;
}
.hero__ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero__scroll {
  position: absolute;
  bottom: 30px; left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.5);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  animation: bobble 2.2s ease-in-out infinite;
}
@keyframes bobble { 0%,100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 6px); } }

/* Hero wave decoration */
.hero .wave-motif { position: absolute; width: 320px; opacity: .35; pointer-events: none; }
.hero .wave-motif--tr { top: 10%; right: -40px; transform: rotate(15deg); }
.hero .wave-motif--bl { bottom: 15%; left: -40px; transform: rotate(-15deg) scaleX(-1); }

/* ===== Decorative motifs (SVG) ===== */
.wave-motif, .wave-divider {
  position: absolute !important;
  pointer-events: none;
  color: var(--gold);
  z-index: 1;
}

/* Wave motif — small, bleeds from edges similar to dolphins */
svg.wave-motif {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.2px;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
  opacity: 0.45;
}
svg.wave-motif.bleed-l { left: 0; width: 220px; height: 60px; transform: translateX(-70px); }
svg.wave-motif.bleed-r { right: 0; width: 220px; height: 60px; transform: scaleX(-1) translateX(-70px); }

.section--dark svg.wave-motif { opacity: 0.55; }
.section--cream svg.wave-motif { opacity: 0.45; }
.cta-band svg.wave-motif { opacity: 0.4; }
.hero svg.wave-motif { opacity: 0.55; }

/* Divider — inline, centered */
svg.wave-divider.divider-inline {
  position: relative !important;
  display: block;
  margin: 40px auto;
  width: 260px;
  height: 30px;
  color: var(--gold);
  opacity: 0.75;
}

/* Dolphin — outline only, bleeds off edges */
svg.dolphin-motif {
  position: absolute !important;
  pointer-events: none;
  color: var(--gold);
  z-index: 1;
  opacity: 0.6;
  fill: none;
  stroke: currentColor;
  stroke-width: 0.35;
  stroke-linejoin: round;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
}
svg.dolphin-motif path { stroke-width: 1.6px !important; }

/* Edge-bleed positions: most of the dolphin is inside the viewport, with
   just a small portion bleeding past the border. Snout points INTO the page. */
svg.dolphin-motif.bleed-l { left: 0; width: 220px; transform: scaleX(-1) translateX(70px); }
svg.dolphin-motif.bleed-r { right: 0; width: 220px; transform: translateX(70px); }
svg.dolphin-motif.bleed-l-lg { left: 0; width: 360px; transform: scaleX(-1) translateX(110px); }
svg.dolphin-motif.bleed-r-lg { right: 0; width: 360px; transform: translateX(110px); }

/* Vertical placement modifiers */
svg.dolphin-motif.y-10 { top: 10%; }
svg.dolphin-motif.y-25 { top: 25%; }
svg.dolphin-motif.y-40 { top: 40%; }
svg.dolphin-motif.y-55 { top: 55%; }
svg.dolphin-motif.y-70 { top: 70%; }
svg.dolphin-motif.y-85 { top: 85%; }

/* Rotations (compound transforms keep the correct facing direction) */
svg.dolphin-motif.bleed-l.rot-a { transform: scaleX(-1) translateX(70px) rotate(-12deg); }
svg.dolphin-motif.bleed-l.rot-b { transform: scaleX(-1) translateX(70px) rotate(15deg); }
svg.dolphin-motif.bleed-r.rot-a { transform: translateX(70px) rotate(12deg); }
svg.dolphin-motif.bleed-r.rot-b { transform: translateX(70px) rotate(-15deg); }

/* Mid / centered (kept for CTA band) */
svg.dolphin-motif.dolphin-motif--center { top: 50%; left: 50%; transform: translate(-50%,-50%); width: 520px; opacity: 0.12; }

/* Opacity tuning per section bg */
.section--dark svg.dolphin-motif { opacity: 0.55; }
.section--cream svg.dolphin-motif { opacity: 0.5; }
.cta-band svg.dolphin-motif { opacity: 0.35; }
.hero svg.dolphin-motif { opacity: 0.55; }
.offers svg.dolphin-motif,
.section svg.dolphin-motif { opacity: 0.5; }

/* Containers need overflow hidden for bleed — but avoid clipping on Opatija/hero etc. which already have it */
section, header.hero, header.page-hero { position: relative; }
.hero, .section, .offers, .cta-band, .section--cream, .section--dark, .contact__info { overflow: hidden; }

/* ===== Sections ===== */
.section { padding: clamp(80px, 11vw, 150px) 0; position: relative; overflow: hidden; }
.section--dark { background: var(--ink); color: #fff; }
.section--dark h1, .section--dark h2, .section--dark h3 { color: #fff; }
.section--cream { background: var(--cream); }
.section__head { text-align: center; max-width: 760px; margin: 0 auto 70px; position: relative; z-index: 3; }
.section__head h2 { margin-bottom: 20px; }
.section__head p { color: var(--muted); font-size: 1.1rem; }
.section--dark .section__head p { color: rgba(255,255,255,.75); }

.divider {
  width: 50px; height: 1px;
  background: var(--gold);
  margin: 0 auto 26px;
  position: relative;
}
.divider::before, .divider::after {
  content: ""; position: absolute; top: 50%; width: 6px; height: 6px;
  background: var(--gold); border-radius: 50%;
  transform: translateY(-50%);
}
.divider::before { left: -14px; }
.divider::after { right: -14px; }

/* ===== About / Photo grid ===== */
.about__text { max-width: 740px; margin: 0 auto 60px; text-align: center; position: relative; z-index: 3; }
.about__text p { font-size: 1.05rem; color: var(--ink-2); }
.about__text p:first-of-type {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--ink);
  line-height: 1.4;
}
.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  position: relative;
  z-index: 2;
}
.photo-grid a {
  display: block;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: 0 6px 20px rgba(0,0,0,.08);
}
.photo-grid img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.photo-grid a:hover img { transform: scale(1.07); }
@media (max-width: 720px) { .photo-grid { grid-template-columns: repeat(2, 1fr); } }

/* ===== Offer blocks ===== */
.offers { padding: clamp(60px, 9vw, 120px) 0; background: var(--paper); position: relative; scroll-margin-top: 20px; }
.offer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-flow: dense;
  gap: 0;
  align-items: center;
  max-width: 1360px;
  margin: 0 auto;
  padding: 50px var(--gutter);
  position: relative;
}
.offer__img, .offer__body { grid-row: 1; }
.offer__img {
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
  border-radius: 2px;
  box-shadow: 0 20px 60px rgba(0,0,0,.18);
  position: relative;
  z-index: 1;
}
.offer__body {
  background: #fff;
  padding: clamp(32px, 5vw, 60px);
  box-shadow: 0 20px 50px rgba(0,0,0,.1);
  position: relative;
  z-index: 2;
  border-radius: 2px;
}
.offer__body .eyebrow { margin-bottom: 12px; }
.offer__body h3 { margin-bottom: 18px; }
.offer__body p { color: var(--muted); font-size: 1.02rem; margin-bottom: 26px; }

/* Odd offers: image LEFT, text RIGHT overlapping */
.offer:nth-of-type(odd) .offer__img { grid-column: 1; }
.offer:nth-of-type(odd) .offer__body { grid-column: 2; margin-left: -60px; }

/* Even offers: image RIGHT, text LEFT overlapping */
.offer:nth-of-type(even) .offer__img { grid-column: 2; }
.offer:nth-of-type(even) .offer__body { grid-column: 1; margin-right: -60px; }

/* Gold variant for 4th offer (wine) */
.offer--gold .offer__body { background: var(--gold); color: var(--ink); }
.offer--gold .offer__body p,
.offer--gold .offer__body .eyebrow { color: var(--ink-2); }
.offer--gold .offer__body .btn { border-color: var(--ink); color: var(--ink); }
.offer--gold .offer__body .btn:hover { background: var(--ink); color: var(--gold); border-color: var(--ink); }

@media (max-width: 900px) {
  .offer { grid-template-columns: 1fr; gap: 0; padding: 30px var(--gutter); }
  .offer:nth-of-type(odd) .offer__img,
  .offer:nth-of-type(even) .offer__img { grid-column: 1; }
  .offer:nth-of-type(odd) .offer__body,
  .offer:nth-of-type(even) .offer__body { grid-column: 1; margin: -40px var(--gutter) 0; }
  .offer__img { aspect-ratio: 4/3; }
}

/* ===== Opatija directions ===== */
.directions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  position: relative;
  z-index: 3;
}
.direction {
  text-align: center;
  padding: 48px 30px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.02);
  transition: background .3s var(--ease), transform .3s var(--ease), border-color .3s;
  border-radius: 2px;
}
.direction:hover {
  background: rgba(200, 169, 122, 0.1);
  transform: translateY(-6px);
  border-color: var(--gold);
}
.direction__icon {
  font-size: 2.4rem;
  color: var(--gold);
  margin-bottom: 20px;
  display: inline-block;
  transition: transform .4s var(--ease);
}
.direction:hover .direction__icon { transform: scale(1.15) rotate(-6deg); }
.direction h3 { color: var(--gold); font-size: 1.3rem; margin-bottom: 14px; }
.direction p { color: rgba(255,255,255,.78); font-size: 0.97rem; margin: 0; line-height: 1.6; }
@media (max-width: 820px) { .directions { grid-template-columns: 1fr; } }

/* Wave decorations on dark sections */
.section--dark .wave-motif--tr { top: 40px; right: -80px; width: 420px; transform: rotate(10deg); }
.section--dark .wave-motif--bl { bottom: 60px; left: -80px; width: 420px; transform: rotate(-8deg) scaleX(-1); }
.section--dark .wave-motif--mid { top: 50%; left: 50%; width: 1100px; transform: translate(-50%, -50%); opacity: .08; }

/* ===== Reviews ===== */
.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.review {
  padding: 42px 32px;
  background: #fff;
  border-top: 2px solid var(--gold);
  box-shadow: 0 4px 30px rgba(0,0,0,.06);
  transition: transform .3s var(--ease), box-shadow .3s;
}
.review:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,.1); }
.review__stars { color: var(--gold); letter-spacing: 3px; margin-bottom: 18px; font-size: 14px; }
.review__text { font-family: var(--serif); font-style: italic; font-size: 1.15rem; color: var(--ink); margin-bottom: 22px; line-height: 1.5; }
.review__author { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); }
@media (max-width: 820px) { .reviews { grid-template-columns: 1fr; } }

/* ===== Reservation CTA band ===== */
.cta-band {
  background: url('../images/dishes/ambient3.jpg') center/cover no-repeat fixed;
  position: relative;
  color: #fff;
  text-align: center;
  padding: clamp(100px, 14vw, 180px) var(--gutter);
  overflow: hidden;
}
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background: rgba(30,26,20,.78);
}
.cta-band > * { position: relative; z-index: 2; }
.cta-band h2 { color: #fff; margin-bottom: 14px; }
.cta-band h2 em { color: var(--gold); font-style: italic; }
.cta-band p { font-family: var(--serif); font-style: italic; font-size: 1.3rem; margin-bottom: 30px; color: rgba(255,255,255,.85); }
.cta-band .phone {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--gold);
  display: block;
  margin-bottom: 24px;
  letter-spacing: 2px;
}

/* ===== FAQ ===== */
.faq { max-width: 820px; margin: 0 auto; }
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
  transition: border-color .3s;
}
.faq details[open] { border-color: var(--gold); }
.faq summary {
  cursor: pointer;
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--ink);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 0;
  transition: color .2s;
}
.faq summary:hover { color: var(--gold-dark); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-size: 1.8rem;
  color: var(--gold);
  transition: transform .3s var(--ease);
  line-height: 1;
}
.faq details[open] summary::after { content: "−"; }
.faq details p {
  padding: 14px 0 4px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

/* ===== Contact ===== */
.contact { display: grid; grid-template-columns: 1fr 1.2fr; gap: 0; }
.contact__info { padding: clamp(50px, 8vw, 110px); background: var(--ink); color: #fff; position: relative; overflow: hidden; }
.contact__info > * { position: relative; z-index: 2; }
.contact__info h2 { color: #fff; }
.contact__info p, .contact__info a { color: rgba(255,255,255,.85); font-size: 1rem; }
.contact__info a:hover { color: var(--gold); }
.contact__info .label {
  display: block;
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 28px;
  margin-bottom: 6px;
  font-weight: 500;
}
.contact__info .wave-motif { width: 500px; right: -120px; bottom: -80px; opacity: .15; }
.contact__map iframe {
  width: 100%; height: 100%; min-height: 460px;
  border: 0; display: block;
  filter: grayscale(0.3);
}
@media (max-width: 820px) {
  .contact { grid-template-columns: 1fr; }
  .contact__map iframe { min-height: 380px; }
}

/* ===== Footer ===== */
.footer {
  background: #13100b;
  color: rgba(255,255,255,.65);
  padding: 60px var(--gutter) 30px;
  text-align: center;
  font-size: 0.9rem;
}
.footer a { color: rgba(255,255,255,.8); }
.footer a:hover { color: var(--gold); }
.footer__brand {
  font-family: var(--serif);
  color: var(--gold);
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: 8px;
  text-transform: uppercase;
  display: inline-block;
  /* cancel trailing letter-spacing so the brand centers visually */
  margin-right: -8px;
  margin-bottom: 6px;
}
.footer__tag {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.footer__social { margin: 24px 0; }
.footer__social a { margin: 0 10px; font-size: 1.4rem; transition: transform .2s; display: inline-block; }
.footer__social a:hover { transform: translateY(-3px); }
.footer__copy { margin-top: 30px; font-size: 0.78rem; color: rgba(255,255,255,.4); letter-spacing: 1px; }

/* ===== Reveal animations =====
   Default: visible. Only hidden when <html class="js-anim"> is set
   AND the element hasn't received the .in class yet. This means if JS
   fails or is delayed, content is visible rather than stuck at opacity 0. */
[data-reveal] {
  transition: opacity .9s var(--ease), transform .9s var(--ease);
  transition-delay: var(--delay, 0s);
  will-change: opacity, transform;
}
html.js-anim [data-reveal]:not(.in)                     { opacity: 0; }
html.js-anim [data-reveal="up"]:not(.in)                { transform: translateY(40px); }
html.js-anim [data-reveal="down"]:not(.in)              { transform: translateY(-40px); }
html.js-anim [data-reveal="left"]:not(.in)              { transform: translateX(-50px); }
html.js-anim [data-reveal="right"]:not(.in)             { transform: translateX(50px); }
html.js-anim [data-reveal="scale"]:not(.in)             { transform: scale(0.94); }
[data-reveal].in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal], .hero__bg, .hero__scroll { animation: none !important; transition: none !important; opacity: 1 !important; transform: none !important; }
}

/* ===== Interior page hero ===== */
.page-hero {
  position: relative;
  min-height: 62vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  background: #000;
  overflow: hidden;
  padding-top: 80px;
}
.page-hero__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.45);
  transform: scale(1.05);
  animation: zoomOut 14s ease-out forwards;
}
.page-hero__inner { position: relative; z-index: 2; max-width: 820px; padding: 60px var(--gutter) 40px; }
.page-hero h1 {
  color: #fff;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 500;
  margin-bottom: 16px;
}
.page-hero p {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  color: rgba(255,255,255,.85);
  margin: 0;
}
.page-hero .wave-motif { color: var(--gold); opacity: .35; }
.page-hero .wave-motif--tr { top: 12%; right: -50px; width: 320px; transform: rotate(10deg); }
.page-hero .wave-motif--bl { bottom: 12%; left: -50px; width: 320px; transform: rotate(-10deg) scaleX(-1); }

/* Breadcrumb */
.crumb {
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: inline-block;
}
.crumb a { color: var(--gold); opacity: .7; }
.crumb a:hover { opacity: 1; }
.crumb .sep { margin: 0 10px; opacity: .5; }

/* ===== Gallery grid ===== */
/* Masonry gallery — natural aspect ratios, scattered layout */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery figure {
  margin: 0;
  overflow: hidden;
  position: relative;
  border-radius: 2px;
  box-shadow: 0 6px 20px rgba(0,0,0,.08);
  cursor: zoom-in;
}
/* Gallery items: visible by default, JS adds animation */
.gallery figure.gallery-item {
  opacity: 1;
  transform: none;
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.gallery figure.gallery-item.gallery-hidden {
  opacity: 0;
  transform: translateY(25px);
}
.gallery img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
}
.gallery figure:hover img { transform: scale(1.05); transition: transform 0.5s ease; }
.gallery figure::after { display: none; }
@media (max-width: 820px) { .gallery { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .gallery { grid-template-columns: 1fr; } }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(10, 8, 6, 0.95);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
  cursor: zoom-out;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 88vh; object-fit: contain; box-shadow: 0 20px 60px rgba(0,0,0,.6); }
.lightbox__close {
  position: absolute; top: 20px; right: 24px;
  background: none; border: none;
  color: #fff; font-size: 28px;
  cursor: pointer;
}

/* ===== Menu page ===== */
.menu-category { padding: clamp(50px, 7vw, 90px) 0; }
.menu-category:nth-child(even) { background: var(--cream); }
.menu-category__head { text-align: center; max-width: 720px; margin: 0 auto 60px; }
.menu-category__head h2 { margin-bottom: 14px; }
.menu-category__head p { color: var(--muted); font-style: italic; font-family: var(--serif); }

.menu-list { max-width: 860px; margin: 0 auto; }
.menu-item {
  padding: 22px 0;
  border-bottom: 1px dashed var(--line);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px 24px;
  align-items: baseline;
}
.menu-item:last-child { border-bottom: none; }
.menu-item__name {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--ink);
  margin: 0;
}
.menu-item__price {
  font-family: var(--sans);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--gold-dark);
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.menu-item__desc {
  grid-column: 1 / -1;
  font-size: 0.95rem;
  color: var(--muted);
  margin: 4px 0 0;
  font-style: italic;
  line-height: 1.5;
}
.menu-item__tags {
  grid-column: 1 / -1;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 6px;
}

/* Menu nav (category tabs) */
.menu-nav {
  position: sticky;
  top: 70px;
  z-index: 50;
  background: rgba(251, 247, 240, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
}
.menu-nav ul {
  display: flex;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0 var(--gutter);
  justify-content: center;
  flex-wrap: wrap;
  max-width: var(--max);
  margin: 0 auto;
}
.menu-nav a {
  display: inline-block;
  padding: 8px 16px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-2);
  border: 1px solid transparent;
  border-radius: 999px;
  transition: all .25s;
}
.menu-nav a:hover { background: var(--gold); color: var(--ink); }

/* ===== Delivery info block ===== */
.delivery-info {
  background: var(--ink);
  color: #fff;
  padding: clamp(50px, 8vw, 80px) 0;
  position: relative;
  overflow: hidden;
}
.delivery-info .wave-motif--mid { top: 50%; left: 50%; transform: translate(-50%, -50%); width: 1200px; opacity: .08; color: var(--gold); }
.delivery-info__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
  position: relative;
  z-index: 2;
}
.delivery-info__item h3 {
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.delivery-info__item p { color: rgba(255,255,255,.85); margin: 0; font-size: 1rem; }
.delivery-info__icon { font-size: 2rem; color: var(--gold); margin-bottom: 14px; }
@media (max-width: 820px) { .delivery-info__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .delivery-info__grid { grid-template-columns: 1fr; } }

