/* ==========================================================================
   TSILIKOS — style.css
   Mobile-first | Mediterranean aesthetic | Argostoli, Kefalonia
   ========================================================================== */

/* ── CUSTOM PROPERTIES ─────────────────────────────────────────────────── */
:root {
  /* Colours */
  --c-terracotta:       #C4552A;
  --c-terracotta-dark:  #9E3D1A;
  --c-terracotta-light: #D9714A;
  --c-cream:            #F7F0E3;
  --c-cream-dark:       #EDE3CF;
  --c-off-white:        #FAF6EE;
  --c-blue:             #1B5E8A;
  --c-blue-light:       #2C7BA8;
  --c-blue-dark:        #0F3D5C;
  --c-olive:            #6B7A45;
  --c-gold:             #D4A843;
  --c-gold-light:       #E8C068;
  --c-charcoal:         #2B1F14;
  --c-charcoal-mid:     #5A4032;
  --c-charcoal-light:   #8C6E5A;
  --c-white:            #FFFFFF;
  --c-ink-black:        #1A0D07;

  /* Typography */
  --f-display: 'Cinzel', Georgia, serif;
  --f-heading: 'Playfair Display', Georgia, serif;
  --f-body:    'Lato', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --sp-xs:  0.5rem;
  --sp-sm:  1rem;
  --sp-md:  1.75rem;
  --sp-lg:  3rem;
  --sp-xl:  5rem;
  --sp-2xl: 8rem;

  /* Radii */
  --r-sm: 4px;
  --r-md: 10px;
  --r-lg: 18px;
  --r-xl: 28px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(43, 31, 20, 0.10);
  --shadow-md: 0 6px 24px rgba(43, 31, 20, 0.16);
  --shadow-lg: 0 12px 48px rgba(43, 31, 20, 0.22);

  /* Transitions */
  --t: 0.3s ease;
  --t-slow: 0.6s ease;

  /* Container */
  --container: 1120px;
}

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

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

body {
  font-family: var(--f-body);
  background-color: var(--c-off-white);
  color: var(--c-charcoal);
  line-height: 1.75;
  overflow-x: hidden;
}

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

ul, ol { list-style: none; }

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

button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ── TYPOGRAPHY ─────────────────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--f-heading);
  line-height: 1.2;
  color: var(--c-charcoal);
}

h1 { font-size: clamp(2.4rem, 7vw, 5.2rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3rem);   }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.55rem); }
h4 { font-size: 0.8rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

strong { font-weight: 700; color: var(--c-terracotta); }
em { font-style: italic; }

/* ── LAYOUT UTILITIES ───────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1.25rem;
}

.section { padding-block: var(--sp-xl); }

.section-label {
  font-family: var(--f-display);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--c-terracotta);
  margin-bottom: var(--sp-sm);
}

.section-title { margin-bottom: var(--sp-md); }

.section-intro {
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: var(--sp-lg);
  color: var(--c-charcoal-mid);
  font-size: 1.05rem;
}

.text-center { text-align: center; }

/* ── BUTTONS ────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2.2rem;
  border-radius: var(--r-sm);
  font-family: var(--f-display);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: all var(--t);
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--c-terracotta);
  color: var(--c-white);
  border-color: var(--c-terracotta);
}

.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--c-terracotta-dark);
  border-color: var(--c-terracotta-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--c-white);
  border-color: rgba(255, 255, 255, 0.55);
}

.btn-outline:hover, .btn-outline:focus-visible {
  background: rgba(255, 255, 255, 0.14);
  border-color: var(--c-white);
  transform: translateY(-2px);
}

.btn-wolt {
  background: #009DE0;
  color: var(--c-white);
  border-color: #009DE0;
  gap: 0.4rem;
}

.btn-wolt:hover, .btn-wolt:focus-visible {
  background: #007DB3;
  border-color: #007DB3;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 157, 224, 0.4);
}

.wolt-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* ── SECTION DIVIDER ────────────────────────────────────────────────────── */
.section-divider {
  text-align: center;
  padding-block: var(--sp-md);
  background: var(--c-cream-dark);
}

.divider-ornament {
  font-size: 0.9rem;
  letter-spacing: 0.5em;
  color: var(--c-gold);
}

/* ── FADE-IN ANIMATION ──────────────────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ════════════════════════════════════════════════════════════════════════
   HEADER / NAV
   ════════════════════════════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 1000;
  padding-block: 1rem;
  transition: background var(--t), box-shadow var(--t), padding var(--t);
  background: transparent;
}

.site-header.scrolled {
  background: rgba(26, 13, 7, 0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
  padding-block: 0.7rem;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

/* Logo */
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 3px;
}

.logo-greek {
  font-family: var(--f-display);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--c-white);
}

.logo-since {
  font-family: var(--f-body);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-gold);
}

/* Nav links – desktop */
.nav-links {
  display: none;
  gap: 2.2rem;
}

.nav-links a {
  font-family: var(--f-display);
  font-size: 0.7rem;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  transition: color var(--t);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--c-gold);
  transition: width var(--t);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--c-white);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* Hamburger toggle */
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  z-index: 1001;
  order: 2; /* sits after lang-switcher visually on mobile */
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--c-white);
  transition: all var(--t);
  transform-origin: center;
  border-radius: 1px;
}

.nav-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile nav overlay */
.nav-links.open {
  display: flex;
  flex-direction: column;
  position: fixed;
  inset: 0;
  background: rgba(26, 13, 7, 0.98);
  justify-content: center;
  align-items: center;
  gap: 3rem;
  z-index: 1000;
}

.nav-links.open a {
  font-size: 1.3rem;
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.85);
}

.nav-links.open a:hover {
  color: var(--c-gold-light);
}

/* Desktop breakpoint */
@media (min-width: 768px) {
  .nav-links { display: flex; }
  .nav-toggle { display: none; }
}

/* ── LANGUAGE SWITCHER ──────────────────────────────────────────────────── */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-shrink: 0;
  margin-left: auto; /* push to the right on desktop, stays before hamburger on mobile */
}

.lang-btn {
  font-family: var(--f-display);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
  background: transparent;
  border: 1px solid transparent;
  border-radius: var(--r-sm);
  padding: 0.3rem 0.5rem;
  cursor: pointer;
  transition: all var(--t);
  line-height: 1;
}

.lang-btn:hover {
  color: var(--c-white);
  border-color: rgba(255, 255, 255, 0.25);
}

.lang-btn.active {
  color: var(--c-gold-light);
  border-color: rgba(212, 168, 67, 0.45);
  background: rgba(212, 168, 67, 0.08);
}

/* Separator dots between buttons */
.lang-btn + .lang-btn {
  position: relative;
}

.lang-btn + .lang-btn::before {
  content: '/';
  position: absolute;
  left: -5px;
  color: rgba(255, 255, 255, 0.18);
  font-size: 0.55rem;
  pointer-events: none;
}

/* ════════════════════════════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;

  /* Multi-stop gradient: dark volcanic earth → terracotta fire → burnt gold → Ionian blue */
  background:
    linear-gradient(
      165deg,
      #130600   0%,
      #2E0F04  10%,
      #5C2210  22%,
      #9E3D1A  35%,
      #C4552A  46%,
      #D4703F  53%,
      #9A7018  62%,
      #3D6A8A  74%,
      #1B5E8A  84%,
      #0A2E45  93%,
      #060F1A 100%
    );
}

/* Subtle grain overlay for texture */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='grain'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23grain)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
}

/* Wave cut at the bottom */
.hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 90px;
  background: var(--c-off-white);
  clip-path: ellipse(55% 100% at 50% 100%);
  z-index: 3;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 5, 2, 0.28);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--c-white);
  padding: 7rem 1.5rem 5rem;
  max-width: 820px;
}

.hero-badge {
  display: inline-block;
  font-family: var(--f-display);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--c-gold-light);
  border: 1px solid rgba(212, 168, 67, 0.4);
  padding: 0.4rem 1.3rem;
  border-radius: 2px;
  margin-bottom: var(--sp-md);
  animation: fadeDown 1s ease 0.2s both;
}

.hero-title {
  margin-bottom: var(--sp-md);
  line-height: 0.9;
  animation: fadeDown 1s ease 0.4s both;
}

.hero-title-greek {
  display: block;
  font-family: var(--f-display);
  font-size: clamp(3.2rem, 13vw, 8rem);
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--c-white);
  text-shadow:
    0 2px 0 rgba(0, 0, 0, 0.2),
    0 4px 30px rgba(0, 0, 0, 0.45);
}

.hero-tagline {
  font-family: var(--f-heading);
  font-size: clamp(1.05rem, 2.8vw, 1.5rem);
  font-weight: 400;
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.55;
  margin-bottom: var(--sp-sm);
  animation: fadeDown 1s ease 0.6s both;
}

.hero-tagline strong {
  color: var(--c-gold-light);
  font-style: normal;
}

.hero-sub {
  font-size: 0.97rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 500px;
  margin-inline: auto;
  margin-bottom: var(--sp-lg);
  line-height: 1.75;
  animation: fadeDown 1s ease 0.75s both;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--sp-lg);
  animation: fadeDown 1s ease 0.9s both;
}

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

/* ════════════════════════════════════════════════════════════════════════
   ABOUT
   ════════════════════════════════════════════════════════════════════════ */
.about { background: var(--c-off-white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-lg);
  align-items: start;
}

@media (min-width: 800px) {
  .about-grid {
    grid-template-columns: 1.45fr 1fr;
    gap: var(--sp-xl);
  }
}

.about-text p {
  font-size: 1.05rem;
  color: var(--c-charcoal-mid);
  margin-bottom: 1.3rem;
}

.about-text em  { color: var(--c-terracotta); }

.about-sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
}

/* Year card */
.about-stat-card {
  background: var(--c-terracotta);
  color: var(--c-white);
  border-radius: var(--r-lg);
  padding: var(--sp-lg);
  text-align: center;
  box-shadow: var(--shadow-md);
}

.stat-year {
  font-family: var(--f-display);
  font-size: clamp(4rem, 10vw, 5.5rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--c-white);
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.25);
}

.stat-label {
  font-family: var(--f-display);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 0.4rem;
}

/* Fact cards */
.about-fact {
  display: flex;
  gap: var(--sp-sm);
  align-items: flex-start;
  padding: var(--sp-sm) var(--sp-md);
  background: var(--c-cream);
  border-radius: var(--r-md);
  border-left: 3px solid var(--c-gold);
}

.fact-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 1px; }

.fact-text strong {
  display: block;
  font-size: 0.9rem;
  color: var(--c-charcoal);
  margin-bottom: 0.2rem;
}

.fact-text p {
  font-size: 0.83rem;
  color: var(--c-charcoal-mid);
  margin: 0;
  line-height: 1.5;
}

/* ════════════════════════════════════════════════════════════════════════
   MENU
   ════════════════════════════════════════════════════════════════════════ */
.menu { background: var(--c-cream); }

.menu-disclaimer {
  font-size: 0.82em;
  color: var(--c-charcoal-light);
  display: block;
  margin-top: 0.3rem;
}

.menu-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-md);
}

@media (min-width: 640px) {
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
}

.menu-category {
  background: var(--c-off-white);
  border-radius: var(--r-lg);
  padding: var(--sp-md) var(--sp-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(196, 85, 42, 0.09);
}

.menu-cat-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-bottom: var(--sp-sm);
  margin-bottom: var(--sp-md);
  border-bottom: 2px solid var(--c-cream-dark);
}

.menu-cat-icon { font-size: 1.5rem; }

.menu-cat-header h3 {
  font-family: var(--f-display);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  color: var(--c-terracotta);
  font-weight: 600;
}

.menu-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.menu-item-info { flex: 1; }

.item-name {
  display: block;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--c-charcoal);
  margin-bottom: 2px;
}

.item-desc {
  display: block;
  font-size: 0.78rem;
  color: var(--c-charcoal-light);
  line-height: 1.45;
}

.item-price {
  font-family: var(--f-display);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--c-terracotta);
  white-space: nowrap;
  padding-top: 2px;
  flex-shrink: 0;
}

.menu-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--c-charcoal-light);
  font-style: italic;
  margin-top: var(--sp-lg);
  padding: 0.75rem 1.25rem;
  background: rgba(196, 85, 42, 0.06);
  border-radius: var(--r-sm);
  max-width: 600px;
  margin-inline: auto;
}

/* ════════════════════════════════════════════════════════════════════════
   GALLERY
   ════════════════════════════════════════════════════════════════════════ */
.gallery { background: var(--c-charcoal); }

.gallery .section-label    { color: var(--c-gold); }
.gallery .section-title    { color: var(--c-white); }
.gallery .section-intro    { color: rgba(255, 255, 255, 0.55); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 210px;
  }

  /* Tall card: 1 col wide, 2 rows tall — fills the left column cleanly */
  .gallery-item--large {
    grid-column: span 1;
    grid-row: span 2;
  }

  /* Banner card: full width across all 3 columns */
  .gallery-item--wide {
    grid-column: 1 / -1;
  }
}

.gallery-item {
  border-radius: var(--r-md);
  overflow: hidden;
}

.gallery-placeholder {
  width: 100%;
  height: 100%;
  min-height: 155px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  text-align: center;
  border-radius: var(--r-md);
  border: 1px solid rgba(255, 255, 255, 0.07);
  transition: transform var(--t), background var(--t);
  cursor: default;
}

.gallery-placeholder:hover {
  transform: scale(1.03);
}

/* Individual placeholder colour themes */
.gp--fire   { background: linear-gradient(145deg, rgba(158, 61, 26, 0.55), rgba(196, 85, 42, 0.25)); }
.gp--wrap   { background: linear-gradient(145deg, rgba(212, 168, 67, 0.35), rgba(196, 85, 42, 0.20)); }
.gp--city   { background: linear-gradient(145deg, rgba(27,  94, 138, 0.45), rgba(15,  61, 92, 0.30)); }
.gp--olive  { background: linear-gradient(145deg, rgba(107, 122, 69, 0.45), rgba(68,  80, 35, 0.30)); }
.gp--family { background: linear-gradient(145deg, rgba(196, 85, 42, 0.30), rgba(212, 168, 67, 0.20)); }
.gp--sea    { background: linear-gradient(145deg, rgba(27,  94, 138, 0.40), rgba(44, 123, 168, 0.20)); }

.gp-icon  { font-size: 2.4rem; margin-bottom: 0.6rem; }

.gp-label {
  font-family: var(--f-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--c-white);
  margin-bottom: 0.3rem;
}

.gp-sub {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.48);
  line-height: 1.45;
}

/* ════════════════════════════════════════════════════════════════════════
   LOCATION & HOURS
   ════════════════════════════════════════════════════════════════════════ */
.location { background: var(--c-off-white); }

.location-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-md);
}

@media (min-width: 800px) {
  .location-grid { grid-template-columns: 1.2fr 1fr; }
}

/* Location card */
.location-card {
  background: var(--c-white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.location-map-placeholder {
  min-height: 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--sp-md);
  background:
    repeating-linear-gradient(
      45deg,
      rgba(255,255,255,0.07) 0px,
      rgba(255,255,255,0.07) 1px,
      transparent 1px,
      transparent 14px
    ),
    linear-gradient(160deg, #a8cdd8, #7bafc0, #5291ab, #2c7ba8);
  gap: 0.6rem;
}

/* Animated pin */
.map-pin-anim {
  position: relative;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.map-pin-icon {
  font-size: 2.4rem;
  position: relative;
  z-index: 1;
  animation: pinBounce 2.4s ease-in-out infinite;
}

.map-pin-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  animation: pulse 2.4s ease-in-out infinite;
}

@keyframes pinBounce {
  0%, 100% { transform: translateY(0);   }
  50%       { transform: translateY(-7px); }
}

@keyframes pulse {
  0%, 100% { transform: scale(0.8); opacity: 0.3; }
  50%       { transform: scale(1.4); opacity: 0;   }
}

.map-address-text {
  color: var(--c-blue-dark);
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.55;
  margin: 0;
}

.map-link {
  display: inline-block;
  font-family: var(--f-display);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  color: var(--c-blue-dark);
  background: rgba(255, 255, 255, 0.7);
  padding: 0.4rem 1.1rem;
  border-radius: var(--r-sm);
  transition: all var(--t);
  margin-top: 0.3rem;
}

.map-link:hover {
  background: var(--c-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.location-details {
  padding: var(--sp-md);
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
}

.location-detail-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.detail-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }

.location-detail-item strong {
  display: block;
  font-size: 0.82rem;
  color: var(--c-charcoal);
  margin-bottom: 3px;
}

.location-detail-item p {
  font-size: 0.9rem;
  color: var(--c-charcoal-mid);
  margin: 0;
  line-height: 1.55;
}

.location-detail-item p em {
  color: var(--c-charcoal-light);
  font-size: 0.85em;
}

.location-detail-item a {
  color: var(--c-blue);
  font-weight: 700;
}

.location-detail-item a:hover { text-decoration: underline; }

/* Hours card */
.hours-card {
  background: var(--c-charcoal);
  border-radius: var(--r-lg);
  padding: var(--sp-md) var(--sp-lg);
  color: var(--c-white);
  box-shadow: var(--shadow-md);
}

.hours-title {
  font-family: var(--f-display);
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  color: var(--c-gold);
  margin-bottom: 0.4rem;
}

.hours-note {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.38);
  font-style: italic;
  margin-bottom: var(--sp-md);
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: var(--sp-md);
}

.hours-table td {
  padding: 0.65rem 0;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.hours-table td:first-child {
  color: rgba(255, 255, 255, 0.65);
  padding-right: 1rem;
}

.hours-table td:last-child {
  text-align: right;
  font-weight: 700;
  font-family: var(--f-display);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: var(--c-gold-light);
}

.hours-table tr:last-child td { border-bottom: none; }

.hours-season-note {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: var(--sp-md);
  padding-bottom: var(--sp-md);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.location-extras {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.extra-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.extra-icon { font-size: 1rem; }

/* Wolt delivery CTA inside hours card */
.wolt-delivery-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  margin-top: var(--sp-md);
  padding: 0.9rem 1.5rem;
  background: #009DE0;
  border-radius: var(--r-md);
  text-align: center;
  transition: all var(--t);
  text-decoration: none;
}

.wolt-delivery-btn:hover {
  background: #007DB3;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0, 157, 224, 0.45);
}

.wolt-delivery-label {
  font-family: var(--f-display);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-white);
  font-weight: 600;
}

.wolt-delivery-sub {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.75);
}

/* ════════════════════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--c-ink-black);
  color: rgba(255, 255, 255, 0.65);
  padding-block: var(--sp-xl) var(--sp-md);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-lg);
  padding-bottom: var(--sp-lg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

@media (min-width: 640px) {
  .footer-inner { grid-template-columns: 1.4fr 1fr 1fr; }
}

.footer-logo {
  font-family: var(--f-display);
  font-size: 1.2rem;
  letter-spacing: 0.12em;
  color: var(--c-white);
  margin-bottom: 0.5rem;
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--c-gold);
  margin-bottom: 0.4rem;
}

.footer-address {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.38);
  margin: 0;
}

.footer-nav h4,
.footer-contact h4 {
  font-family: var(--f-display);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 0.85rem;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.footer-nav a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.58);
  transition: color var(--t);
}

.footer-nav a:hover { color: var(--c-white); }

.footer-contact p {
  font-size: 0.88rem;
  margin-bottom: 0.4rem;
}

.footer-contact a {
  color: var(--c-gold-light);
}

.footer-contact a:hover { text-decoration: underline; }

.footer-social-note {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.28);
  font-style: italic;
  margin-top: 0.5rem;
}

.footer-bottom {
  padding-top: var(--sp-md);
  text-align: center;
}

.footer-bottom p {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.25);
  margin: 0;
}

/* ════════════════════════════════════════════════════════════════════════
   RESPONSIVE TWEAKS
   ════════════════════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 260px; justify-content: center; }
  .hours-card { padding: var(--sp-md); }
}

@media (min-width: 1024px) {
  .section { padding-block: var(--sp-2xl); }
}

/* ════════════════════════════════════════════════════════════════════════
   MENU — DEALS STRIP
   ════════════════════════════════════════════════════════════════════════ */
.deals-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin-bottom: var(--sp-md);
}

@media (min-width: 600px) {
  .deals-strip { grid-template-columns: repeat(2, 1fr); }
}

.deal-card {
  background: linear-gradient(135deg, var(--c-terracotta), var(--c-terracotta-dark));
  border-radius: var(--r-md);
  padding: var(--sp-sm) var(--sp-md);
  color: var(--c-white);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.deal-badge {
  font-family: var(--f-display);
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-gold-light);
}

.deal-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--c-white);
  line-height: 1.35;
}

.deal-prices {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
}

.deal-price-now {
  font-family: var(--f-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--c-white);
}

.deal-price-was {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: line-through;
}

/* ════════════════════════════════════════════════════════════════════════
   MENU — TABS
   ════════════════════════════════════════════════════════════════════════ */
.menu-tabs-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  margin-bottom: var(--sp-md);
  padding-bottom: 2px; /* prevents border-bottom clip */
}

.menu-tabs-wrap::-webkit-scrollbar { display: none; }

.menu-tabs {
  display: flex;
  gap: 0.4rem;
  min-width: max-content;
  border-bottom: 2px solid var(--c-cream-dark);
  padding-bottom: 0;
}

.menu-tab {
  font-family: var(--f-display);
  font-size: 0.63rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.6rem 1.1rem;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  border-radius: var(--r-sm) var(--r-sm) 0 0;
  color: var(--c-charcoal-light);
  background: transparent;
  cursor: pointer;
  transition: all var(--t);
  white-space: nowrap;
}

.menu-tab:hover {
  color: var(--c-terracotta);
  background: rgba(196, 85, 42, 0.05);
}

.menu-tab.active {
  color: var(--c-terracotta);
  border-bottom-color: var(--c-terracotta);
  background: rgba(196, 85, 42, 0.06);
  font-weight: 700;
}

/* ════════════════════════════════════════════════════════════════════════
   MENU — PANELS & CARDS
   ════════════════════════════════════════════════════════════════════════ */
.menu-panel {
  animation: panelFadeIn 0.3s ease both;
}

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

.menu-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin-bottom: var(--sp-md);
}

@media (min-width: 560px) {
  .menu-cards { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  .menu-cards { grid-template-columns: repeat(3, 1fr); }
}

.menu-card {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  background: var(--c-off-white);
  border-radius: var(--r-md);
  padding: 0.75rem;
  border: 1px solid rgba(196, 85, 42, 0.08);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--t), transform var(--t);
}

.menu-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.menu-card-visual {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}

/* Visual colour variants */
.mvi--pork    { background: linear-gradient(135deg, rgba(196, 85, 42, 0.22), rgba(158, 61, 26, 0.12)); }
.mvi--chicken { background: linear-gradient(135deg, rgba(212, 168, 67, 0.32), rgba(200, 140, 20, 0.16)); }
.mvi--mixed   { background: linear-gradient(135deg, rgba(90, 64, 50, 0.22),  rgba(140, 110, 90, 0.12)); }
.mvi--salad   { background: linear-gradient(135deg, rgba(107, 122, 69, 0.28), rgba(70, 95, 30, 0.15)); }
.mvi--sauce   { background: linear-gradient(135deg, rgba(212, 168, 67, 0.22), rgba(196, 85, 42, 0.10)); }
.mvi--drink   { background: linear-gradient(135deg, rgba(27, 94, 138, 0.24),  rgba(15, 61, 92, 0.12)); }
.mvi--beer    { background: linear-gradient(135deg, rgba(212, 140, 30, 0.32), rgba(160, 100, 10, 0.16)); }
.mvi--starter { background: linear-gradient(135deg, rgba(107, 122, 69, 0.22), rgba(212, 168, 67, 0.14)); }
.mvi--brand   { background: #f8f8f8; border: 1px solid rgba(0,0,0,0.08); overflow: hidden; }
.mvi--brand img { width: 100%; height: 100%; object-fit: contain; padding: 4px; }

.menu-card-body { flex: 1; min-width: 0; }

.menu-card-name-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 0.25rem;
}

.menu-card-name {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--c-charcoal);
  line-height: 1.3;
  margin: 0;
}

.menu-card-desc {
  font-size: 0.75rem;
  color: var(--c-charcoal-light);
  line-height: 1.45;
  margin-bottom: 0.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.menu-card-price {
  font-family: var(--f-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--c-terracotta);
  margin: 0;
}

/* Popular badge */
.popular-badge {
  display: inline-block;
  font-family: var(--f-display);
  font-size: 0.5rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--c-gold);
  color: var(--c-charcoal);
  padding: 2px 6px;
  border-radius: 2px;
  font-weight: 700;
  flex-shrink: 0;
}

/* Age notice (beer panel) */
.age-notice {
  font-size: 0.78rem;
  color: var(--c-charcoal-mid);
  margin-bottom: var(--sp-sm);
  padding: 0.5rem 0.75rem;
  background: rgba(196, 85, 42, 0.07);
  border-radius: var(--r-sm);
  border-left: 3px solid var(--c-terracotta);
}
