/* =============================================
   ANG RESTAURANT — Main Stylesheet
   Fonts: Cormorant Garamond (display) + DM Sans (body)
   Bootstrap 5.3 + Custom
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500&display=swap');

/* ---- CSS Variables ---- */
:root {
  --clr-bg:        #f9f6f1;
  --clr-white:     #ffffff;
  --clr-dark:      #18160e;
  --clr-darker:    #0f0e09;
  --clr-cream:     #f4ede0;
  --clr-gold:      #c8973a;
  --clr-gold-lt:   #d9a84e;
  --clr-text:      #2a2620;
  --clr-muted:     #847d74;
  --clr-border:    #e6dfd5;
  /* cuisine accent colours */
  --clr-austrian:  #7c5cbf;
  --clr-italian:   #16a06b;
  --clr-american:  #d94040;
  --clr-romanian:  #d98a1c;
  --clr-vegan:     #6aad29;

  --ff-display: 'Cormorant Garamond', Georgia, serif;
  --ff-body:    'DM Sans', system-ui, sans-serif;

  --topbar-h:  40px;
  --nav-h:     72px;
  --radius:    4px;
  --shadow-sm: 0 2px 14px rgba(0,0,0,.07);
  --shadow-md: 0 8px 36px rgba(0,0,0,.12);
  --trans:     .28s ease;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--ff-body);
  color: var(--clr-text);
  background: var(--clr-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1,h2,h3,h4,h5,h6 { font-family: var(--ff-display); letter-spacing: .02em; }
a { color: var(--clr-gold); text-decoration: none; transition: color var(--trans); }
a:hover { color: var(--clr-gold-lt); }
img { max-width: 100%; display: block; }

/* =============================================
   TOPBAR
   ============================================= */
.site-topbar {
  background: var(--clr-darker);
  height: var(--topbar-h);
  display: flex;
  align-items: center;
  font-size: 12.5px;
  color: rgba(255,255,255,.55);
  letter-spacing: .055em;
  position: relative;
  z-index: 1030;
}
.site-topbar a {
  color: rgba(255,255,255,.55);
  transition: color var(--trans);
}
.site-topbar a:hover { color: var(--clr-gold); }
.topbar-sep { margin: 0 10px; opacity: .3; }
.topbar-highlight { color: var(--clr-gold); font-weight: 500; }
.topbar-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  font-size: 13px;
  transition: all var(--trans);
}
.topbar-social a:hover {
  border-color: var(--clr-gold);
  color: var(--clr-gold);
}

/* =============================================
   NAVBAR
   ============================================= */
.site-navbar {
  height: var(--nav-h);
  background: var(--clr-white);
  border-bottom: 1px solid var(--clr-border);
  transition: background var(--trans), box-shadow var(--trans), border-color var(--trans);
  position: sticky;
  top: 0;
  z-index: 1020;
}
.site-navbar.is-transparent {
  background: transparent;
  border-bottom-color: rgba(255,255,255,.1);
}
.site-navbar.is-scrolled {
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-sm);
  border-bottom-color: transparent;
}

/* -----------------------------------------------
   HOMEPAGE OVERLAY: navbar + topbar become fixed
   so the hero slides underneath them
   ----------------------------------------------- */
.home-page .site-topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1040;
}
.home-page .site-navbar {
  position: fixed;
  top: var(--topbar-h);
  left: 0;
  right: 0;
  z-index: 1030;
}
/* Hero must fill the full viewport from the very top */
.home-page .hero {
  min-height: 100vh;
  /* push content down so it isn't hidden behind topbar + navbar */
  padding-top: calc(var(--topbar-h) + var(--nav-h) + 40px);
}

/* Brand */
.navbar-brand-text {
  font-family: var(--ff-display);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--clr-dark);
  transition: color var(--trans);
  line-height: 1;
}
.navbar-brand-text span { color: var(--clr-gold); }

/* Overlay state (homepage, before scroll) → white text */
.site-navbar.is-transparent .navbar-brand-text { color: var(--clr-white); }

/* Nav links */
.navbar-nav .nav-link {
  font-family: var(--ff-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--clr-text) !important;
  padding: 8px 18px !important;
  position: relative;
  transition: color var(--trans);
}
.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 18px; right: 18px;
  height: 1px;
  background: var(--clr-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--trans);
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active { color: var(--clr-gold) !important; }
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after { transform: scaleX(1); }

/* Overlay (homepage, before scroll) → white links */
.site-navbar.is-transparent .navbar-nav .nav-link { color: rgba(255,255,255,.82) !important; }
.site-navbar.is-transparent .navbar-nav .nav-link:hover { color: var(--clr-gold-lt) !important; }

/* Once scrolled → always dark text, regardless of is-transparent */
.site-navbar.is-transparent.is-scrolled .navbar-brand-text { color: var(--clr-dark) !important; }
.site-navbar.is-transparent.is-scrolled .navbar-nav .nav-link { color: var(--clr-text) !important; }
.site-navbar.is-transparent.is-scrolled .navbar-nav .nav-link:hover { color: var(--clr-gold) !important; }

/* Toggler */
.navbar-toggler { border: none; padding: 6px; }
.navbar-toggler:focus { box-shadow: none; }
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%232a2620' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.site-navbar.is-transparent .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,.85)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.site-navbar.is-transparent.is-scrolled .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%232a2620' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Scrolled on homepage → restore gold reserve button */
.site-navbar.is-transparent.is-scrolled .btn-reserve {
  background: var(--clr-gold) !important;
  border-color: var(--clr-gold) !important;
  color: #fff !important;
}
.site-navbar.is-transparent.is-scrolled .btn-reserve:hover {
  background: transparent !important;
  color: var(--clr-gold) !important;
}

/* Reserve button */
.btn-reserve {
  font-family: var(--ff-body);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 9px 22px;
  background: var(--clr-gold);
  color: #fff !important;
  border: 2px solid var(--clr-gold);
  border-radius: var(--radius);
  transition: all var(--trans);
  white-space: nowrap;
}
.btn-reserve:hover {
  background: transparent;
  color: var(--clr-gold) !important;
}
.site-navbar.is-transparent .btn-reserve {
  background: transparent;
  border-color: rgba(255,255,255,.4);
  color: rgba(255,255,255,.85) !important;
}
.site-navbar.is-transparent .btn-reserve:hover {
  border-color: var(--clr-gold);
  color: var(--clr-gold) !important;
}
.site-navbar.is-scrolled .btn-reserve {
  background: var(--clr-gold);
  border-color: var(--clr-gold);
  color: #fff !important;
}
.site-navbar.is-scrolled .btn-reserve:hover {
  background: transparent;
  color: var(--clr-gold) !important;
}

/* =============================================
   BUTTONS (global)
   ============================================= */
.btn-gold {
  display: inline-block;
  font-family: var(--ff-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 14px 36px;
  background: var(--clr-gold);
  color: #fff;
  border: 2px solid var(--clr-gold);
  border-radius: var(--radius);
  transition: all var(--trans);
  cursor: pointer;
}
.btn-gold:hover { background: transparent; color: var(--clr-gold); }

.btn-outline-gold {
  display: inline-block;
  font-family: var(--ff-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 14px 36px;
  background: transparent;
  color: var(--clr-gold);
  border: 2px solid var(--clr-gold);
  border-radius: var(--radius);
  transition: all var(--trans);
  cursor: pointer;
}
.btn-outline-gold:hover { background: var(--clr-gold); color: #fff; }

.btn-outline-white {
  display: inline-block;
  font-family: var(--ff-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 14px 36px;
  background: transparent;
  color: rgba(255,255,255,.8);
  border: 2px solid rgba(255,255,255,.3);
  border-radius: var(--radius);
  transition: all var(--trans);
  cursor: pointer;
}
.btn-outline-white:hover {
  border-color: var(--clr-gold);
  color: var(--clr-gold);
}

/* =============================================
   SECTION UTILITIES
   ============================================= */
.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--ff-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: 14px;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--clr-gold);
  flex-shrink: 0;
}
.section-title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--clr-dark);
  margin-bottom: 20px;
}
.section-subtitle {
  font-size: 16.5px;
  line-height: 1.78;
  color: var(--clr-muted);
  font-weight: 300;
  max-width: 560px;
  margin-bottom: 0;
}

/* =============================================
   HOME — HERO
   ============================================= */
.hero {
  min-height: 100vh;
  background: var(--clr-darker);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 15% 50%, rgba(200,151,58,.13) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 80% 15%, rgba(200,151,58,.07) 0%, transparent 60%),
    repeating-linear-gradient(
      -45deg,
      transparent, transparent 64px,
      rgba(255,255,255,.014) 64px, rgba(255,255,255,.014) 65px
    );
}
.hero-content { position: relative; z-index: 2; }
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: 28px;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 44px;
  height: 1px;
  background: var(--clr-gold);
}
.hero-title {
  font-family: var(--ff-display);
  font-size: clamp(3.2rem, 7.5vw, 7rem);
  font-weight: 600;
  color: var(--clr-white);
  line-height: 1.03;
  letter-spacing: .01em;
  margin-bottom: 28px;
}
.hero-title em {
  font-style: italic;
  color: var(--clr-gold);
}
.hero-desc {
  font-size: 17px;
  line-height: 1.8;
  color: rgba(255,255,255,.52);
  font-weight: 300;
  max-width: 480px;
  margin-bottom: 52px;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---- Hero media (floating dish image) ---- */
.hero-media-col {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-media {
  position: relative;
  width: min(400px, 90%);
  aspect-ratio: 1;
  animation: hero-float 5s ease-in-out infinite;
}
@keyframes hero-float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-22px); }
}
/* Glow ring behind image */
.hero-media::before {
  content: '';
  position: absolute;
  inset: -28px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,151,58,.28) 0%, transparent 68%);
  animation: hero-glow 5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes hero-glow {
  0%, 100% { opacity: .65; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.07); }
}
/* Decorative orbit ring */
.hero-media::after {
  content: '';
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  border: 1px solid rgba(200,151,58,.2);
  pointer-events: none;
}
/* The circular frame */
.hero-media-frame {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(200,151,58,.22);
  background: var(--clr-dark);
  position: relative;
}
/* Placeholder gradient shown when no real image is placed */
.hero-media-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 38% 32%, rgba(200,151,58,.18) 0%, transparent 55%),
    radial-gradient(circle at 70% 70%, rgba(200,151,58,.08) 0%, transparent 45%),
    var(--clr-dark);
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Ccircle cx='100' cy='100' r='62' fill='none' stroke='%23c8973a' stroke-width='1' opacity='.18'/%3E%3Ccircle cx='100' cy='100' r='48' fill='none' stroke='%23c8973a' stroke-width='.6' opacity='.1'/%3E%3Cellipse cx='100' cy='88' rx='32' ry='10' fill='%23c8973a' opacity='.06'/%3E%3Crect x='84' y='60' width='32' height='56' rx='16' fill='%23c8973a' opacity='.07'/%3E%3Ccircle cx='100' cy='56' r='10' fill='%23c8973a' opacity='.09'/%3E%3Cline x1='68' y1='124' x2='132' y2='124' stroke='%23c8973a' stroke-width='1.2' opacity='.15' stroke-linecap='round'/%3E%3C/svg%3E"),
    radial-gradient(circle at 38% 32%, rgba(200,151,58,.18) 0%, transparent 55%),
    var(--clr-dark);
  background-repeat: no-repeat;
  background-size: 55%, cover, cover;
  background-position: center, center, center;
}
.hero-media-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50%;
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.28);
  animation: hint-bounce 2.4s ease-in-out infinite;
}
.hero-scroll-hint::after {
  content: '';
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,.28), transparent);
}
@keyframes hint-bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(9px); }
}

/* =============================================
   HOME — CUISINE STRIP
   ============================================= */
.cuisine-strip {
  background: var(--clr-dark);
  overflow: hidden;
}
.cuisine-strip-item {
  display: flex;
  align-items: stretch;
  gap: 0;
  padding: 0;
  border-right: 1px solid rgba(255,255,255,.07);
  min-height: 96px;
  transition: background var(--trans);
  cursor: default;
}
.cuisine-strip-item:last-child { border-right: none; }
.cuisine-strip-item:hover { background: rgba(200,151,58,.07); }
/* Full-height image block flush left */
.cs-img {
  width: 90px;
  flex-shrink: 0;
  overflow: hidden;
  background: var(--clr-darker);
  position: relative;
  border-right: 1px solid rgba(255,255,255,.06);
}
.cs-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.cuisine-strip-item:hover .cs-img img { transform: scale(1.08); }
/* Placeholder gradient when no real image */
.cs-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 40%, rgba(200,151,58,.22), rgba(15,14,9,.9) 70%);
  pointer-events: none;
}
/* Text block */
.cs-text {
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cs-name {
  font-family: var(--ff-display);
  font-size: 19px;
  font-weight: 500;
  color: var(--clr-white);
  line-height: 1.1;
  margin: 0 0 2px;
}
.cs-tag {
  font-size: 10.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin: 0;
}

/* =============================================
   HOME — MENU TEASER MINI CARDS
   ============================================= */
.mtc {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 2px;
  overflow: hidden;
  height: 100%;
  transition: border-color var(--trans);
}
.mtc:hover { border-color: rgba(200,151,58,.35); }
/* Image on top */
.mtc-img {
  width: 100%;
  height: 118px;
  overflow: hidden;
  position: relative;
  background: rgba(200,151,58,.06);
}
.mtc-img img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .4s ease;
}
.mtc:hover .mtc-img img { transform: scale(1.07); }

/* Body */
.mtc-body { padding: 13px 16px 16px; }
.mtc-name {
  font-family: var(--ff-display);
  font-size: 16px;
  color: #fff;
  font-weight: 600;
  margin-bottom: 4px;
  line-height: 1.2;
}
.mtc-desc {
  font-size: 12px;
  color: rgba(255,255,255,.4);
  line-height: 1.5;
  margin-bottom: 9px;
}
.mtc-price {
  font-family: var(--ff-display);
  font-size: 24px;
  color: var(--clr-gold);
  font-weight: 600;
}

/* =============================================
   HOME — CTA BAND (light, phone number)
   ============================================= */
.home-cta-band {
  padding: 80px 0;
  background: var(--clr-cream);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
}
.hcb-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: 14px;
}
.hcb-label::before { content:''; width:32px; height:1px; background:var(--clr-gold); flex-shrink:0; }
.hcb-title {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
  font-weight: 600;
  color: var(--clr-dark);
  line-height: 1.15;
  margin-bottom: 0;
}
.hcb-phone {
  display: block;
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--clr-dark);
  letter-spacing: .01em;
  text-decoration: none;
  line-height: 1;
  margin-bottom: 8px;
  transition: color var(--trans);
}
.hcb-phone:hover { color: var(--clr-gold); }
.hcb-or {
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--clr-muted);
  margin-bottom: 18px;
}
@media (max-width: 991.98px) {
  .home-cta-band .text-lg-end { text-align: left !important; margin-top: 32px; }
}

/* =============================================
   HOME — FEATURES / WHY US
   ============================================= */
.why-us {
  padding: 100px 0;
  background: var(--clr-bg);
}
.why-card {
  background: var(--clr-white);
  padding: 40px 32px;
  height: 100%;
  position: relative;
  transition: transform var(--trans), box-shadow var(--trans);
}
.why-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--clr-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--trans);
}
.why-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.why-card:hover::after { transform: scaleX(1); }
.why-num {
  font-family: var(--ff-display);
  font-size: 56px;
  font-weight: 700;
  color: rgba(200,151,58,.14);
  line-height: 1;
  margin-bottom: 16px;
}
.why-title {
  font-family: var(--ff-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--clr-dark);
  margin-bottom: 12px;
}
.why-text {
  font-size: 15px;
  line-height: 1.72;
  color: var(--clr-muted);
  font-weight: 300;
  margin: 0;
}

/* =============================================
   HOME — MENU TEASER
   ============================================= */
.menu-teaser {
  padding: 100px 0;
  background: var(--clr-dark);
  position: relative;
  overflow: hidden;
}
.menu-teaser::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(200,151,58,.09), transparent 65%);
}
.menu-teaser .section-title { color: var(--clr-white); }
.menu-teaser .section-subtitle { color: rgba(255,255,255,.44); }
.menu-teaser .section-label { color: var(--clr-gold); }
.menu-teaser .section-label::before { background: var(--clr-gold); }

/* =============================================
   HOME — PULL QUOTE
   ============================================= */
.pull-quote {
  padding: 84px 0;
  background: var(--clr-cream);
  text-align: center;
}
.pull-quote-text {
  font-family: var(--ff-display);
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  font-style: italic;
  color: var(--clr-dark);
  line-height: 1.38;
  max-width: 820px;
  margin: 0 auto 20px;
}
.pull-quote-author {
  font-size: 11px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin: 0;
}

/* =============================================
   PAGE HERO (inner pages)
   ============================================= */
.page-hero {
  padding: 120px 0 72px;
  background: var(--clr-dark);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 25% 50%, rgba(200,151,58,.1), transparent 65%),
    repeating-linear-gradient(
      -45deg,
      transparent, transparent 64px,
      rgba(255,255,255,.012) 64px, rgba(255,255,255,.012) 65px
    );
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero-title {
  font-family: var(--ff-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 600;
  color: var(--clr-white);
  line-height: 1.08;
  margin-bottom: 14px;
}
.page-hero-sub {
  font-size: 15px;
  color: rgba(255,255,255,.44);
  letter-spacing: .06em;
  margin: 0;
}
/* breadcrumb */
nav.ph-breadcrumb { margin-bottom: 22px; }
.ph-breadcrumb ol { justify-content: center; }
.ph-breadcrumb .breadcrumb-item,
.ph-breadcrumb .breadcrumb-item a {
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.38);
  text-decoration: none;
  transition: color var(--trans);
}
.ph-breadcrumb .breadcrumb-item a:hover { color: var(--clr-gold); }
.ph-breadcrumb .breadcrumb-item.active { color: var(--clr-gold); }
.ph-breadcrumb .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.2); }

/* =============================================
   ABOUT — STORY
   ============================================= */
.about-story { padding: 100px 0; background: var(--clr-bg); }
.story-body {
  font-size: 17px;
  line-height: 1.88;
  color: var(--clr-muted);
  font-weight: 300;
}
.story-body p:first-of-type::first-letter {
  font-family: var(--ff-display);
  font-size: 4.4em;
  font-weight: 700;
  color: var(--clr-gold);
  float: left;
  line-height: .78;
  padding-right: 10px;
  padding-top: 10px;
}

/* restaurant image band (replaces stats row) */
.restaurant-img-band {
  width: 100%;
  height: 420px;
  overflow: hidden;
  position: relative;
  background: var(--clr-cream);
}
/* Gradient overlay — dark edges fade toward the centre */
.restaurant-img-band::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right,  rgba(15,14,9,.85) 0%, transparent 32%, transparent 68%, rgba(15,14,9,.85) 100%),
    linear-gradient(to bottom, rgba(15,14,9,.55) 0%, transparent 40%, transparent 60%, rgba(15,14,9,.55) 100%),
    rgba(15,14,9,.5);;
  pointer-events: none;
  z-index: 1;
}
.restaurant-img-band img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 767.98px) {
  .restaurant-img-band { height: 260px; }
}

/* cuisine cards */
.cuisines-section { padding: 100px 0; background: var(--clr-bg); }
.cuisine-card {
  background: var(--clr-white);
  padding: 30px 30px 30px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: transform var(--trans), box-shadow var(--trans);
}
.cuisine-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
}
/* Single accent colour per cuisine — clean, no flag stripes */
.cuisine-card.austrian::before { background: var(--clr-austrian); }
.cuisine-card.italian::before  { background: var(--clr-italian); }
.cuisine-card.american::before { background: var(--clr-american); }
.cuisine-card.romanian::before { background: var(--clr-romanian); }
.cuisine-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }

/* Header: flag emoji left, title+origin right */
.cc-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.cc-emoji {
  font-size: 42px;
  line-height: 1;
  flex-shrink: 0;
}
.cc-emoji svg, .menu-cat-heading svg {
  border-radius: var(--radius);
}
.filter-btn svg {border-radius: 2px;}

svg {
  fill: currentColor;
}

.cc-header-text { display: flex; flex-direction: column; }
.cc-title {
  font-family: var(--ff-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--clr-dark);
  margin-bottom: 1px;
  line-height: 1.15;
}
.cc-origin {
  display: block;
  font-size: 10.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: 0;
}
.cc-desc {
  font-size: 15px;
  line-height: 1.72;
  color: var(--clr-muted);
  font-weight: 300;
  margin-bottom: 20px;
}
.cc-dishes {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding-top: 18px;
  border-top: 1px solid var(--clr-border);
}
.dish-pill {
  font-size: 11px;
  padding: 4px 11px;
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: 20px;
  color: var(--clr-muted);
}

/* =============================================
   MENU PAGE
   ============================================= */
.menu-section { padding: 80px 0; background: var(--clr-bg); }

/* filter bar */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 52px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--clr-border);
}
.filter-btn {
  font-family: var(--ff-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: 8px 20px;
  background: var(--clr-white);
  color: var(--clr-muted);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--trans);
  line-height: 1.4;
}
.filter-btn:hover { border-color: var(--clr-gold); color: var(--clr-gold); }
.filter-btn.is-active { background: var(--clr-gold); border-color: var(--clr-gold); color: #fff; }
.filter-btn[data-filter="vegan"].is-active { background: var(--clr-vegan); border-color: var(--clr-vegan); }

/* category heading */
.menu-cat-heading {
  font-family: var(--ff-display);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--clr-dark);
  /* margin-bottom: 28px; */
  padding-bottom: 14px;
  /* border-bottom: 1px solid var(--clr-border); */
  display: flex;
  align-items: center;
  gap: 14px;
}
.menu-cat-heading::after { content: ''; flex: 1; height: 1px; background: var(--clr-border); }

/* menu item card */
.menu-item-card {
  background: var(--clr-white);
  display: flex;
  flex-direction: row;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: box-shadow var(--trans);
  border-radius: 8px;
}
/* cuisine accent line on top */
.menu-item-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--trans);
  z-index: 2;
}
.menu-item-card[data-cuisine="austrian"]::after { background: var(--clr-austrian); }
.menu-item-card[data-cuisine="italian"]::after  { background: var(--clr-italian); }
.menu-item-card[data-cuisine="american"]::after { background: var(--clr-american); }
.menu-item-card[data-cuisine="romanian"]::after { background: var(--clr-romanian); }
.menu-item-card:hover { box-shadow: var(--shadow-md); }
.menu-item-card:hover::after { transform: scaleX(1); }

/* ---- Image placeholder ---- */
.mic-img {
  width: 50%;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  background: var(--clr-cream);
  /* ensures the column fills the full card height */
  align-self: stretch;
}

/* Real image (when supplied) — sits above the ::before placeholder */
.mic-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .52s ease;
}
/* Hover: zoom the placeholder layer OR the real image */
.menu-item-card:hover .mic-img::before { transform: scale(1.06); }
.menu-item-card:hover .mic-img img     { transform: scale(1.06); }

/* ---- Body (text) ---- */
.mic-body {
  flex: 1;
  min-width: 0;
  padding: 22px 22px 18px;
  display: flex;
  flex-direction: column;
}
.mic-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.mic-name {
  font-family: var(--ff-display);
  font-size: 19px;
  font-weight: 600;
  color: var(--clr-dark);
  line-height: 1.2;
}
.mic-price {
  font-family: var(--ff-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--clr-gold);
  white-space: nowrap;
}
.mic-desc {
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--clr-muted);
  font-weight: 300;
  margin-bottom: 10px;
}
/* Icon + text aligned: text wraps AFTER icon, never below it */
.mic-ingredients {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-size: 12px;
  color: var(--clr-muted);
  font-style: italic;
  opacity: .72;
  margin-bottom: 12px;
  margin-top: auto; /* push to bottom of flex column */
}
.mic-ingredients i {
  flex-shrink: 0;
  margin-top: 2px;
  font-style: normal;
  font-size: 13px;
}
.mic-ingredients span { line-height: 1.6; }
.mic-tags { display: flex; flex-wrap: wrap; gap: 5px; }
.mic-tag {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 20px;
}
.mic-tag-austrian { background: rgba(124,92,191,.12); color: var(--clr-austrian); }
.mic-tag-italian  { background: rgba(22,160,107,.12);  color: var(--clr-italian); }
.mic-tag-american { background: rgba(217,64,64,.12);   color: var(--clr-american); }
.mic-tag-romanian { background: rgba(217,138,28,.12);  color: var(--clr-romanian); }
.mic-tag-vegan    { background: rgba(106,173,41,.12);  color: var(--clr-vegan); }

/* filter transition */
.menu-cat-block { transition: opacity .3s ease; }
.menu-item-wrap { transition: opacity .28s ease, transform .28s ease; }
.menu-item-wrap.hidden {
  display: none;
}
.menu-cat-block.empty { display: none; }

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-section { padding: 80px 0; background: var(--clr-bg); }

.contact-info-card {
  background: var(--clr-white);
  padding: 38px 34px;
  height: 100%;
}
.contact-info-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid var(--clr-border);
}
.contact-info-item:first-child { padding-top: 0; }
.contact-info-item:last-child  { border-bottom: none; padding-bottom: 0; }
.cii-icon {
  width: 42px;
  height: 42px;
  background: rgba(200,151,58,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  font-size: 19px;
  color: var(--clr-gold);
  flex-shrink: 0;
}
.cii-label {
  display: block;
  font-size: 10.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: 3px;
}
.cii-value {
  font-family: var(--ff-display);
  font-size: 17px;
  font-weight: 500;
  color: var(--clr-dark);
  margin: 0;
  line-height: 1.45;
}

.contact-form-card {
  background: var(--clr-white);
  padding: 38px 34px;
}
.form-label-up {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--clr-muted);
  margin-bottom: 7px;
  display: block;
}
.form-ctrl {
  width: 100%;
  font-family: var(--ff-body);
  font-size: 15px;
  color: var(--clr-text);
  background: var(--clr-bg);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 11px 15px;
  transition: border-color var(--trans), box-shadow var(--trans);
  outline: none;
}
.form-ctrl:focus {
  border-color: var(--clr-gold);
  box-shadow: 0 0 0 3px rgba(200,151,58,.12);
  background: var(--clr-white);
}
textarea.form-ctrl { resize: vertical; min-height: 130px; }

.map-wrap {
  border-radius: 2px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.map-wrap iframe {
  display: block;
  width: 100%;
  height: 400px;
  border: 0;
  filter: grayscale(25%) contrast(1.05);
}

.form-msg {
  display: none;
  margin-top: 14px;
  padding: 13px 18px;
  border-radius: var(--radius);
  font-size: 14px;
}
.form-msg.success {
  background: rgba(106,173,41,.1);
  border: 1px solid rgba(106,173,41,.3);
  color: #4a7c1f;
}
.form-msg.error {
  background: rgba(217,64,64,.1);
  border: 1px solid rgba(217,64,64,.3);
  color: #b52222;
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--clr-darker);
  padding: 76px 0 32px;
}
.footer-brand {
  font-family: var(--ff-display);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--clr-white);
  margin-bottom: 14px;
  line-height: 1;
}
.footer-brand span { color: var(--clr-gold); }
.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,.38);
  line-height: 1.72;
  font-weight: 300;
  max-width: 270px;
  margin-bottom: 0;
}
.footer-heading {
  font-size: 10.5px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: 20px;
  font-weight: 500;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 9px; }
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,.45);
  transition: color var(--trans);
}
.footer-links a:hover { color: var(--clr-gold); }
.footer-contact-item {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  font-size: 13.5px;
  color: rgba(255,255,255,.45);
  font-weight: 300;
  line-height: 1.55;
  margin-bottom: 12px;
}
.footer-contact-item i { font-size: 14px; color: var(--clr-gold); flex-shrink: 0; margin-top: 2px; }
.footer-hours {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  padding: 18px 20px;
  border-radius: 2px;
}
.fh-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255,255,255,.42);
  padding: 5px 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.fh-row:last-child { border-bottom: none; }
.fh-row .fh-day { color: rgba(255,255,255,.7); }
.footer-divider { border-color: rgba(255,255,255,.07); margin: 52px 0 26px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12px;
  color: rgba(255,255,255,.28);
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  color: rgba(255,255,255,.4);
  font-size: 14px;
  margin-left: 6px;
  transition: all var(--trans);
}
.footer-social a:hover {
  border-color: var(--clr-gold);
  color: var(--clr-gold);
}

/* =============================================
   SCROLL REVEAL
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-d1 { transition-delay: .08s; }
.reveal-d2 { transition-delay: .16s; }
.reveal-d3 { transition-delay: .24s; }
.reveal-d4 { transition-delay: .32s; }

/* =============================================
   RESPONSIVE
   ============================================= */
/* =============================================
   HOME — POLAROID GALLERY (infinite scroll)
   ============================================= */
.gallery-section {
  padding: 90px 0 80px;
  background: var(--clr-dark);
  overflow: hidden;
  position: relative;
}
.gallery-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 100%, rgba(200,151,58,.07), transparent 65%);
  pointer-events: none;
}
.gallery-section .section-label { justify-content: center; }
.gallery-section .section-title  { color: var(--clr-white); text-align: center; }

/* Strip wrapper — clips overflow + adds fade edges */
.gallery-strip {
  position: relative;
  overflow: hidden;
  /* fade left & right edges */
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
  padding: 24px 0 32px; /* room for polaroid shadow + tilt */
}
/* The moving track — contains items × 2 for seamless loop */
.gallery-track {
  display: flex;
  gap: 28px;
  width: max-content;
  animation: gallery-scroll 36s linear infinite;
}
.gallery-strip:hover .gallery-track { animation-play-state: paused; }
@keyframes gallery-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Individual item wrapper */
.gallery-item {
  flex-shrink: 0;
  position: relative;
}

/* Polaroid card */
.polaroid {
  background: var(--clr-white);
  padding: 9px 9px 42px;
  box-shadow: 0 6px 28px rgba(0,0,0,.35), 0 1px 4px rgba(0,0,0,.2);
  border-radius: 8px;
  transition: transform .35s ease, box-shadow .35s ease, z-index 0s;
  cursor: default;
  position: relative;
  z-index: 1;
}
.gallery-item:hover .polaroid {
  transform: rotate(0deg) scale(1.05) translateY(-6px) !important;
  box-shadow: 0 20px 56px rgba(0,0,0,.5);
  z-index: 10;
}

/* Alternating tilt via nth-child (6 unique, then repeat) */
.gallery-item:nth-child(6n+1) .polaroid { transform: rotate(-3.2deg); }
.gallery-item:nth-child(6n+2) .polaroid { transform: rotate(2.1deg); }
.gallery-item:nth-child(6n+3) .polaroid { transform: rotate(-1.4deg); }
.gallery-item:nth-child(6n+4) .polaroid { transform: rotate(3.5deg); }
.gallery-item:nth-child(6n+5) .polaroid { transform: rotate(-2.6deg); }
.gallery-item:nth-child(6n+6) .polaroid { transform: rotate(1.2deg); }

/* Image area inside polaroid */
.polaroid-img {
  width: 200px;
  height: 220px;
  overflow: hidden;
  background: var(--clr-cream);
  position: relative;
}
.polaroid-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.gallery-item:hover .polaroid-img img { transform: scale(1.06); }

/* Placeholder tints per position (visible until real photos added) */
.gallery-item:nth-child(6n+1) .polaroid-img { background: #e8d5b7; }
.gallery-item:nth-child(6n+2) .polaroid-img { background: #d4c4a8; }
.gallery-item:nth-child(6n+3) .polaroid-img { background: #c8b89a; }
.gallery-item:nth-child(6n+4) .polaroid-img { background: #ddd0bc; }
.gallery-item:nth-child(6n+5) .polaroid-img { background: #e2d3be; }
.gallery-item:nth-child(6n+6) .polaroid-img { background: #cfc0a7; }

/* Caption in white space below */
.polaroid-cap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-size: 14px;
  font-style: italic;
  color: var(--clr-muted);
  letter-spacing: .04em;
  padding-bottom: 4px;
}

/* =============================================
   MOBILE OFFCANVAS DRAWER
   ============================================= */
.site-offcanvas {
  width: 300px !important;
  background: var(--clr-darker);
  border-right: 1px solid rgba(255,255,255,.07);
}

/* Header: brand + close btn */
.site-offcanvas .offcanvas-header {
  padding: 22px 24px 18px;
  border-bottom: 1px solid rgba(255,255,255,.07);
  align-items: center;
}
.oc-brand {
  font-family: var(--ff-display);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--clr-white);
  line-height: 1;
  text-decoration: none;
}
.oc-brand span { color: var(--clr-gold); }

/* Close button */
.site-offcanvas .btn-close {
  filter: invert(1) grayscale(1) brightness(1.8);
  opacity: .5;
  transition: opacity var(--trans);
}
.site-offcanvas .btn-close:hover { opacity: 1; }

/* Body */
.site-offcanvas .offcanvas-body {
  padding: 10px 0 28px;
  display: flex;
  flex-direction: column;
}

/* Nav links inside drawer */
.site-offcanvas .navbar-nav { flex-direction: column; flex: 1; }
.site-offcanvas .nav-item { border-bottom: 1px solid rgba(255,255,255,.05); }
.site-offcanvas .nav-link {
  font-family: var(--ff-body) !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  letter-spacing: .2em !important;
  text-transform: uppercase !important;
  color: rgba(255,255,255,.6) !important;
  padding: 16px 24px !important;
  transition: color var(--trans), background var(--trans) !important;
  position: relative;
}
.site-offcanvas .nav-link::after { display: none !important; }
.site-offcanvas .nav-link:hover,
.site-offcanvas .nav-link.active {
  color: var(--clr-gold) !important;
  background: rgba(200,151,58,.06);
}
/* Gold left-border on active link */
.site-offcanvas .nav-link.active::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: var(--clr-gold);
}

/* Drawer footer: CTA + contact info */
.oc-footer {
  margin-top: auto;
  padding: 24px 24px 0;
  border-top: 1px solid rgba(255,255,255,.07);
}
.oc-footer .btn-gold {
  width: 100%;
  text-align: center;
  padding: 12px 24px;
  font-size: 11.5px;
  display: block;
  margin-bottom: 22px;
}
.oc-contact {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.oc-contact a,
.oc-contact span {
  font-size: 12.5px;
  color: rgba(255,255,255,.32);
  text-decoration: none;
  transition: color var(--trans);
  display: flex;
  align-items: center;
  gap: 8px;
}
.oc-contact a:hover { color: var(--clr-gold); }
.oc-contact i { color: var(--clr-gold); font-size: 13px; flex-shrink: 0; }


/* Bootstrap offcanvas backdrop — keep it dark but see-through */
.offcanvas-backdrop.show {
  opacity: 1;
}

.offcanvas-backdrop {
  background: rgba(15,14,9,.72) !important;
  backdrop-filter: blur(2px);
}

@media (max-width: 991.98px) {
  .hero-arc { display: none; }
  .hero-media-col { display: none !important; }
  .cuisine-strip-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.07); }
  .stat-block { border-right: none; border-bottom: 1px solid var(--clr-border); }
  .stat-block:last-child { border-bottom: none; }
}

@media (max-width: 767.98px) {
  .topbar-hide-mobile { display: none !important; }
  .why-us, .about-story, .cuisines-section { padding: 64px 0; }
  .menu-teaser, .pull-quote { padding: 64px 0; }
  .gallery-section { padding: 64px 0 56px; }
  .menu-section, .contact-section { padding: 60px 0; }
  .site-footer { padding: 56px 0 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .menu-item-card { flex-direction: column; }
  .mic-img { width: 100%; height: 128px; align-self: auto; }
  .mic-body { padding: 16px 18px 14px; }
  .contact-form-card, .contact-info-card { padding: 26px 22px; }
  .map-wrap iframe { height: 300px; }
  /* Smaller polaroids on mobile */
  .polaroid-img { width: 150px; height: 165px; }
  .gallery-track { gap: 18px; }
  /* Founder photo: keep inside Bootstrap container on small screens */
  .founder-photo { right: 0 !important; }
}

@media (max-width: 575.98px) {
  .hero-title { font-size: 2.8rem; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn-gold, .hero-cta .btn-outline-white { width: 100%; text-align: center; }
  .cuisine-strip-item { padding: 18px 24px; }
}
