/* ═══════════════════════════════════════════════════════════
   KREŠO — Taxi · Excursions · Offers   ·  Light Mediterranean
   ═══════════════════════════════════════════════════════════ */

:root {
  /* ── Palette ─────────────────────────────────────────────── */
  --bg:           #fbf6ec;           /* warm sunlit cream */
  --bg-soft:      #f3eadb;           /* deeper wheat */
  --bg-card:      #ffffff;
  --bg-deep:      #e9dcc4;

  --text:         #1c2733;           /* deep slate */
  --text-dim:     #475569;
  --text-faint:   #6b7280;
  --text-soft:    #93a1b1;

  --accent:       #c8633a;           /* terracotta — Dalmatian roof */
  --accent-bright:#db7a4d;
  --accent-dark:  #a14d2c;
  --accent-dim:   rgba(200, 99, 58, 0.78);
  --accent-faint: rgba(200, 99, 58, 0.28);
  --accent-bg:    rgba(200, 99, 58, 0.07);

  --blue:         #1e5a8a;           /* Adriatic deep blue */
  --blue-bright:  #2a7ab8;
  --blue-dim:     rgba(30, 90, 138, 0.85);
  --blue-faint:   rgba(30, 90, 138, 0.20);
  --blue-bg:      rgba(30, 90, 138, 0.07);

  --warm:         #e0a039;           /* sun-amber */

  --border:        rgba(28, 39, 51, 0.10);
  --border-strong: rgba(28, 39, 51, 0.18);

  --nav-bg:        rgba(251, 246, 236, 0.88);
  --nav-bg-scroll: rgba(251, 246, 236, 0.96);

  --shadow-sm: 0 1px 3px rgba(28, 39, 51, 0.06), 0 1px 2px rgba(28, 39, 51, 0.04);
  --shadow-md: 0 4px 12px rgba(28, 39, 51, 0.08), 0 2px 4px rgba(28, 39, 51, 0.04);
  --shadow-lg: 0 12px 28px rgba(28, 39, 51, 0.10), 0 4px 8px rgba(28, 39, 51, 0.05);

  /* Backwards-compatible aliases used by Discover Split components */
  --gold:         var(--accent);
  --gold-bright:  var(--accent-bright);
  --gold-dim:     var(--accent-dim);
  --gold-faint:   var(--accent-faint);
  --gold-bg:      var(--accent-bg);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', 'Helvetica Neue', sans-serif;
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  overflow-x: clip;
}

img { max-width: 100%; display: block; height: auto; }
a { color: var(--accent); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--accent-bright); }

/* ─── Typography ─── */
.brand-display {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.05;
  color: var(--text);
}
.eyebrow {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent);
  font-size: 0.78rem;
}
.section-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.005em;
  line-height: 1.15;
  font-size: clamp(1.7rem, 3.8vw, 2.8rem);
}
.section-sub {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  letter-spacing: 0.02em;
  color: var(--text-dim);
  margin-top: 0.7rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.body-text {
  font-size: clamp(1rem, 1.2vw, 1.08rem);
  color: var(--text-dim);
  line-height: 1.75;
}
.gold-em { color: var(--accent); font-weight: 600; }
.warm-em { color: var(--blue); font-weight: 600; }
.italic { font-family: 'Cormorant Garamond', Georgia, serif; font-style: italic; font-size: 1.08em; }

/* ─── Divider ─── */
.divider {
  width: 56px; height: 2px;
  background: var(--accent);
  border-radius: 2px;
  margin: 1rem auto;
}
.ornament {
  font-size: 0.9rem;
  letter-spacing: 0.6em;
  color: var(--accent-dim);
  text-align: center;
  margin: 0.6rem 0;
}

/* ─── Layout ─── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section { padding: clamp(3rem, 6vw, 5rem) 0; }
.section-tight { padding: clamp(2rem, 4vw, 3rem) 0; }
.text-center { text-align: center; }

/* ─── Navigation ─── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0.85rem 0;
  background: var(--nav-bg);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.nav.scrolled { box-shadow: var(--shadow-sm); background: var(--nav-bg-scroll); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.nav-brand {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--text);
  font-size: 1.4rem;
}
.nav-brand:hover { color: var(--accent); }
.nav-brand small {
  display: block;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  letter-spacing: 0.18em;
  font-size: 0.62rem;
  color: var(--accent);
  margin-top: 1px;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-family: 'Inter', sans-serif;
  color: var(--text-dim);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  position: relative;
  padding: 0.4rem 0;
}
.nav-links a:hover { color: var(--text); }
.nav-links a.active { color: var(--accent); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1.1rem !important;
  border: 1.5px solid var(--accent) !important;
  border-radius: 999px;
  color: var(--accent) !important;
  font-weight: 600 !important;
  transition: background 0.2s, color 0.2s;
}
.nav-cta:hover { background: var(--accent); color: #fff !important; }
.nav-cta::after { display: none !important; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.6rem;
  cursor: pointer;
  padding: 0.4rem 0.6rem;
  min-width: 48px;
  min-height: 48px;
  line-height: 1;
  border-radius: 6px;
  transition: background 0.2s;
}
.nav-toggle:active { background: rgba(28, 39, 51, 0.08); }

/* ─── Hero ─── */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 8rem 1.5rem 4rem;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 20% 10%, rgba(200, 99, 58, 0.10) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 90%, rgba(30, 90, 138, 0.08) 0%, transparent 50%),
    var(--bg);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.16;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(251, 246, 236, 0.4) 0%, var(--bg) 100%);
}
.hero-content { position: relative; z-index: 1; max-width: 900px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--border);
  color: var(--text-dim);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  margin-bottom: 1.4rem;
  box-shadow: var(--shadow-sm);
}
.hero-badge .dot {
  width: 7px; height: 7px;
  background: #2bbb6c;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(43, 187, 108, 0.18);
}
.hero h1 {
  font-size: clamp(3rem, 9vw, 6.2rem);
  margin: 0.5rem 0 1.2rem;
}
.hero .accent-tag {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  color: var(--accent);
  font-size: clamp(1.2rem, 2.4vw, 1.7rem);
  display: block;
  margin-top: 0.5rem;
}
.hero-tagline {
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
  color: var(--text-dim);
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.65;
}
.hero-cta-row {
  display: flex;
  gap: 0.7rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 0.8rem;
}
.hero-meta {
  margin-top: 2.6rem;
  display: flex;
  gap: 1.6rem;
  justify-content: center;
  flex-wrap: wrap;
  color: var(--text-faint);
  font-size: 0.85rem;
}
.hero-meta span { display: inline-flex; align-items: center; gap: 0.4rem; }
.hero-meta .ico { color: var(--accent); font-size: 1rem; }

/* ─── Page header (inner pages) ─── */
.page-head {
  padding: 8rem 1.5rem 3.5rem;
  text-align: center;
  position: relative;
  background: linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--border);
}
.page-head h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  color: var(--text);
  font-weight: 700;
  letter-spacing: 0.005em;
}
.page-head .eyebrow { display: block; margin-bottom: 0.9rem; }
.page-head p { color: var(--text-dim); margin-top: 1rem; max-width: 640px; margin-left: auto; margin-right: auto; }

/* ─── Cards ─── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem 1.6rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  text-align: left;
  box-shadow: var(--shadow-sm);
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-faint);
}
.card-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.12rem;
  color: var(--text);
  margin-bottom: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.005em;
}
.card-body { color: var(--text-dim); font-size: 0.98rem; line-height: 1.65; }

/* ─── Service cards (icon + title + line) ─── */
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.service {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.6rem 1.4rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.service:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--accent-faint); }
.service-ico {
  width: 52px; height: 52px;
  margin: 0 auto 0.9rem;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--accent-bg);
  color: var(--accent);
  font-size: 1.4rem;
}
.service-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1rem;
  color: var(--text);
  font-weight: 700;
  margin-bottom: 0.35rem;
}
.service-desc { color: var(--text-dim); font-size: 0.9rem; line-height: 1.5; }

/* ─── Offer cards (excursions) ─── */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.offer {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: var(--shadow-sm);
}
.offer:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.offer-photo {
  position: relative;
  aspect-ratio: 16 / 10;
  background:
    linear-gradient(135deg, rgba(200, 99, 58, 0.18) 0%, rgba(30, 90, 138, 0.22) 100%),
    var(--bg-deep);
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 0.9rem;
}
.offer-photo::before {
  content: 'Photo coming soon';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: rgba(28, 39, 51, 0.35);
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  pointer-events: none;
}
.offer-photo img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.offer-photo img + .offer-photo::before { display: none; }
.offer-tag {
  position: relative;
  z-index: 1;
  padding: 0.3rem 0.7rem;
  background: rgba(255, 255, 255, 0.95);
  color: var(--text);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}
.offer-tag.popular { background: var(--accent); color: #fff; }
.offer-body { padding: 1.1rem 1.3rem 1.3rem; flex: 1; display: flex; flex-direction: column; }
.offer-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.18rem;
  color: var(--text);
  font-weight: 700;
  margin-bottom: 0.3rem;
}
.offer-desc {
  color: var(--text-dim);
  font-size: 0.92rem;
  line-height: 1.55;
  flex: 1;
}
.offer-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
  padding-top: 0.9rem;
  border-top: 1px solid var(--border);
}
.offer-price {
  font-family: 'Playfair Display', serif;
  color: var(--accent);
  font-size: 1rem;
  font-weight: 700;
}
.offer-price small {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  color: var(--text-faint);
  font-size: 0.74rem;
  margin-left: 0.2rem;
  letter-spacing: 0.04em;
}
.offer-duration {
  font-size: 0.82rem;
  color: var(--text-faint);
  letter-spacing: 0.04em;
}

/* ─── "Why Krešo" feature row ─── */
.feature-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.feature {
  text-align: center;
  padding: 1.4rem 1.2rem;
}
.feature-ico {
  width: 56px; height: 56px;
  margin: 0 auto 0.9rem;
  display: flex; align-items: center; justify-content: center;
  border-radius: 14px;
  background: var(--blue-bg);
  color: var(--blue);
  font-size: 1.5rem;
}
.feature-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.15rem;
  color: var(--text);
  font-weight: 700;
  margin-bottom: 0.35rem;
}
.feature p { color: var(--text-dim); font-size: 0.95rem; line-height: 1.6; }

/* ─── CTA block ─── */
.cta-block {
  background:
    radial-gradient(ellipse at 20% 0%, rgba(200, 99, 58, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 100% 100%, rgba(30, 90, 138, 0.10) 0%, transparent 55%),
    var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: clamp(2.4rem, 5vw, 3.6rem) 2rem;
  text-align: center;
}

/* ─── Grids (legacy used by Discover Split) ─── */
.grid { display: grid; gap: 1.2rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ─── Item list (legacy) ─── */
.item-list { display: flex; flex-direction: column; }
.item {
  display: flex;
  gap: 1.1rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--border);
}
.item:last-child { border-bottom: none; }
.item-icon {
  font-size: 0.95rem;
  color: var(--accent);
  min-width: 2.2rem;
  text-align: center;
  margin-top: 4px;
  flex-shrink: 0;
}
.item-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.06rem;
  color: var(--text);
  margin-bottom: 0.3rem;
  font-weight: 700;
}
.item-desc { color: var(--text-dim); font-size: 0.98rem; line-height: 1.65; }

/* ─── Hero entrance animation ─── */
@keyframes hero-rise {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-content > * { animation: hero-rise 0.9s cubic-bezier(0.16, 1, 0.3, 1) both; }
.hero-content > *:nth-child(1) { animation-delay: 0.05s; }
.hero-content > *:nth-child(2) { animation-delay: 0.20s; }
.hero-content > *:nth-child(3) { animation-delay: 0.35s; }
.hero-content > *:nth-child(4) { animation-delay: 0.50s; }
.hero-content > *:nth-child(5) { animation-delay: 0.65s; }
.hero-content > *:nth-child(6) { animation-delay: 0.80s; }

@media (prefers-reduced-motion: reduce) {
  .hero-content > * { animation: none !important; }
}

/* ─── Reveal on scroll ─── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ─── Leaflet map (light theme) ─── */
.leaflet-map {
  height: 460px; width: 100%;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  max-width: 980px;
  margin: 0 auto;
  background: var(--bg-soft);
  box-shadow: var(--shadow-sm);
}
.pm-oblivion {
  width: 22px; height: 22px;
  background: var(--blue);
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(30, 90, 138, 0.30), 0 2px 8px rgba(0,0,0,0.25);
}
.pm-parking {
  width: 30px; height: 30px;
  background: #fff;
  border: 2px solid var(--accent);
  border-radius: 50%;
  color: var(--accent);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 15px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}
.leaflet-popup-content-wrapper {
  background: #fff;
  color: var(--text-dim);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: var(--shadow-md);
}
.leaflet-popup-tip { background: #fff; }
.leaflet-popup-content {
  margin: 12px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  line-height: 1.55;
}
.leaflet-popup-content strong {
  font-family: 'Playfair Display', serif;
  color: var(--text);
  font-size: 14px;
  display: block;
  margin-bottom: 4px;
  letter-spacing: 0.005em;
}
.leaflet-popup-content a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid var(--accent-faint);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.leaflet-container a.leaflet-popup-close-button { color: var(--text-faint); }
.leaflet-container a.leaflet-popup-close-button:hover { color: var(--accent); }
.leaflet-control-attribution { background: rgba(255,255,255, 0.85) !important; color: var(--text-faint) !important; font-size: 10px !important; }
.leaflet-control-attribution a { color: var(--accent-dim) !important; }
.pm-legend {
  text-align: center;
  font-family: 'Inter', sans-serif;
  color: var(--text-dim);
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  margin: 1.4rem 0 1.6rem;
}
.pm-legend .swatch {
  display: inline-block;
  width: 12px; height: 12px;
  border-radius: 50%;
  vertical-align: middle;
  margin: 0 0.4rem 0 1rem;
}
.pm-legend .swatch.gold { background: var(--blue); border: 2px solid #fff; box-shadow: 0 0 0 1px var(--border); }
.pm-legend .swatch.parking { background: #fff; border: 2px solid var(--accent); }

/* ─── Sticky sub-navigation ─── */
.subnav {
  position: sticky;
  top: 64px;
  z-index: 50;
  background: var(--nav-bg-scroll);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  padding: 0.5rem 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.subnav::-webkit-scrollbar { display: none; }
.subnav-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 0 2rem;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  white-space: nowrap;
}
.subnav a {
  color: var(--text-dim);
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 0.45rem 0.7rem;
  position: relative;
  flex: 0 0 auto;
}
.subnav a:hover { color: var(--text); }
.subnav a.active { color: var(--accent); }
.subnav a.active::after {
  content: '';
  position: absolute;
  left: 0.7rem; right: 0.7rem; bottom: -2px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}
[data-spy] { scroll-margin-top: 130px; }

/* ─── Dish card (light) ─── */
.dish-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: var(--shadow-sm);
}
.dish-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.dish-photo {
  display: block;
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--bg-soft);
  cursor: pointer;
}
.dish-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.dish-photo::after {
  content: '↗  TasteAtlas';
  position: absolute;
  top: 10px; right: 12px;
  color: #fff;
  background: rgba(28, 39, 51, 0.78);
  padding: 4px 9px;
  border-radius: 4px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  z-index: 2;
}
.dish-card:hover .dish-photo::after { opacity: 1; }
.dish-card:hover .dish-photo img { transform: scale(1.05); }
.dish-body { padding: 1.05rem 1.25rem 1.25rem; flex: 1; }
.dish-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--text);
  font-weight: 700;
  margin-bottom: 0.45rem;
}
.dish-body p {
  color: var(--text-dim);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* ─── Photo Gallery / Lightbox ─── */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.6rem;
  margin-top: 1.8rem;
}
.gallery-item {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  background: var(--bg-soft);
  border: 1px solid var(--border);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, opacity 0.3s ease;
}
.gallery-item:hover img { transform: scale(1.04); opacity: 0.92; }

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(15, 22, 32, 0.94);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 4px;
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  font-size: 1.2rem;
  width: 48px; height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s;
  display: flex; align-items: center; justify-content: center;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.5);
}
.lightbox-close { top: 1.5rem; right: 1.5rem; }
.lightbox-prev  { left: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox-next  { right: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox-counter {
  position: absolute;
  bottom: 1.5rem; left: 50%; transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.7);
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  border: 1.5px solid var(--accent);
  color: var(--accent);
  background: transparent;
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
  cursor: pointer;
  transition: all 0.2s ease;
  border-radius: 999px;
  white-space: nowrap;
}
.btn:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-solid {
  background: var(--accent);
  color: #fff;
}
.btn-solid:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}
.btn-blue {
  border-color: var(--blue);
  color: var(--blue);
}
.btn-blue:hover {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}
.btn-blue.btn-solid {
  background: var(--blue);
  color: #fff;
}
.btn-blue.btn-solid:hover {
  background: #163f60;
  border-color: #163f60;
}
.btn-lg { padding: 1rem 1.9rem; font-size: 1rem; }

/* ─── Footer ─── */
.footer {
  border-top: 1px solid var(--border);
  background: var(--bg-soft);
  padding: 3rem 1.5rem 2rem;
  margin-top: 4rem;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2.5rem;
}
.footer-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--text);
  font-weight: 700;
}
.footer-tagline {
  color: var(--text-dim);
  margin-top: 0.3rem;
  font-size: 0.92rem;
}
.footer-h {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 0.45rem; }
.footer a, .footer p { color: var(--text-dim); font-size: 0.92rem; }
.footer a:hover { color: var(--accent); }
.footer-bottom {
  max-width: 1200px;
  margin: 2.4rem auto 0;
  padding-top: 1.4rem;
  border-top: 1px solid var(--border);
  text-align: center;
  color: var(--text-faint);
  font-size: 0.82rem;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 1000px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .offer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .gallery { grid-template-columns: repeat(3, 1fr); }
  .feature-row { grid-template-columns: 1fr; gap: 1rem; }
}

@media (max-width: 720px) {
  .nav-cta { display: none; }
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed;
    top: 64px; left: 0; right: 0;
    bottom: 0;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0;
    background: rgba(251, 246, 236, 0.985);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    padding: 1.2rem 0 2rem;
    z-index: 99;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transform: translateY(-100%);
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.32s ease, visibility 0s linear 0.32s;
  }
  .nav-links.open {
    transform: translateY(0);
    visibility: visible;
    pointer-events: auto;
    transition: transform 0.32s ease, visibility 0s linear 0s;
  }
  .nav-links li { width: 100%; margin: 0.4rem 0; }
  .nav-links a {
    display: block;
    padding: 1.4rem 1.6rem;
    margin: 0 1rem;
    font-size: 1.15rem;
    text-align: center;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--bg-card);
    color: var(--text);
    touch-action: manipulation;
    transition: background 0.18s, color 0.18s, border-color 0.18s, transform 0.1s;
    box-shadow: var(--shadow-sm);
  }
  .nav-links a:active {
    background: var(--accent-bg);
    border-color: var(--accent);
    color: var(--accent);
    transform: scale(0.98);
  }
  .nav-links a.active {
    color: var(--accent);
    border-color: var(--accent);
    background: var(--accent-bg);
  }
  .nav-links a.active::after { display: none; }

  body.menu-open { overflow: hidden; }
  .nav-backdrop { display: none; }

  .grid-2, .grid-3, .grid-4, .service-grid, .offer-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); gap: 0.4rem; }
  .hero { min-height: 80vh; padding: 6.5rem 1.5rem 3rem; }
  .page-head { padding: 6.5rem 1.5rem 2.6rem; }
  .lightbox { padding: 1rem; }
  .lightbox-prev, .lightbox-next { width: 40px; height: 40px; font-size: 1rem; }
  .lightbox-prev { left: 0.6rem; }
  .lightbox-next { right: 0.6rem; }
  .lightbox-close { top: 0.8rem; right: 0.8rem; width: 40px; height: 40px; }
}
