/* ================================================================
   Paradise Catering – 낙원 떡집
   styles.css
   ================================================================ */

:root {
  /* Brand blue palette – refined to complement logo */
  --blue-900:   #0d1f5c;
  --blue-800:   #1340a8;
  --blue-700:   #1e52c8;   /* primary accent – brand royal blue */
  --blue-600:   #2563eb;
  --blue-100:   #dbeafe;
  --blue-50:    #eff6ff;

  /* Warm gold – Korean labels and headline highlights */
  --gold:       #c8962a;
  --gold-hover: #a87922;
  --gold-light: #f7edda;

  /* Warm cream neutrals */
  --bg:         #f7f4ee;
  --cream:      #f3f0e9;
  --surface:    #ffffff;
  --text:       #1a1610;
  --muted:      #5a5040;
  --subtle:     #9a8e80;

  /* Borders */
  --border:       #e4e0d6;
  --border-blue:  #c7d7f8;

  /* Shadows */
  --shadow-sm:  0 1px 4px  rgba(26, 21, 16, 0.06);
  --shadow-md:  0 4px 16px rgba(26, 21, 16, 0.10);
  --shadow-lg:  0 12px 40px rgba(30, 82, 200, 0.13);
  --shadow-xl:  0 24px 64px rgba(30, 82, 200, 0.18);

  /* Shape */
  --radius:     20px;
  --radius-sm:  14px;
  --radius-xs:  8px;
  --max-width:  1180px;

  /* Aliases */
  --accent:        var(--blue-700);
  --accent-hover:  var(--blue-800);
  --accent-light:  var(--blue-50);
  --soft-accent:   var(--blue-100);
}


/* ----------------------------------------------------------------
   Reset & Base
   ---------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", "Noto Sans KR", Arial, sans-serif;
  font-size: 1.063rem;  /* ~17px for accessibility */
  line-height: 1.72;
  color: var(--text);
  background-color: var(--bg);
}

img { max-width: 100%; display: block; }
a   { color: inherit; }

/* ----------------------------------------------------------------
   Layout
   ---------------------------------------------------------------- */
.container {
  width: min(var(--max-width), 100% - 2.5rem);
  margin-inline: auto;
}

.section { padding: 5rem 0; }

/* ----------------------------------------------------------------
   Skip link (accessibility)
   ---------------------------------------------------------------- */
.skip-link {
  position: absolute; left: -999px; top: auto;
  width: 1px; height: 1px; overflow: hidden;
}
.skip-link:focus {
  position: fixed; top: 1rem; left: 1rem;
  width: auto; height: auto;
  padding: 0.6rem 1rem;
  background: #111; color: #fff;
  font-weight: 700; border-radius: var(--radius-xs);
  z-index: 9999; outline: none;
}

/* ----------------------------------------------------------------
   Typography helpers
   ---------------------------------------------------------------- */
.section-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.85rem;
  background: var(--accent-light);
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 1px solid var(--border-blue);
  margin-bottom: 0.75rem;
}

.section-chip--white {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}

.section-header { margin-bottom: 2.5rem; }

.section-header h2 {
  font-size: clamp(1.85rem, 3vw, 2.55rem);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.025em;
  margin-bottom: 0.9rem;
}

.section-header p {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 620px;
  line-height: 1.7;
}

.section-header--center { text-align: center; }
.section-header--center p { margin-inline: auto; }

.section-korean {
  font-weight: 700;
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 0.5rem !important;
}

/* ----------------------------------------------------------------
   Buttons
   ---------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border-radius: 999px;
  border: 2px solid transparent;
  font-size: 0.94rem;
  font-weight: 700;
  text-decoration: none;
  padding: 0.75rem 1.4rem;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, border-color 0.18s,
              box-shadow 0.18s, transform 0.18s;
  white-space: nowrap;
  line-height: 1;
}

.btn:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 18px rgba(30, 82, 200, 0.28);
}
.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--accent-hover);
  box-shadow: 0 8px 28px rgba(30, 82, 200, 0.40);
}

.btn-secondary {
  background: var(--surface);
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: var(--shadow-sm);
}
.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: var(--accent);
  color: #fff;
}

.btn-ghost {
  color: var(--accent);
  font-size: 0.92rem;
  padding-inline: 0.5rem;
  border: none;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.btn-ghost:hover,
.btn-ghost:focus-visible {
  color: var(--accent-hover);
  transform: none;
}

.btn-outline-white {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}
.btn-outline-white:hover,
.btn-outline-white:focus-visible {
  background: rgba(255, 255, 255, 0.15);
}

.btn-header { font-size: 0.86rem; padding: 0.58rem 1.1rem; }

/* ----------------------------------------------------------------
   Hamburger button (hidden on desktop, shown on mobile)
   ---------------------------------------------------------------- */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.45rem;
  border-radius: var(--radius-xs);
  transition: background 0.2s;
  margin-left: auto;
}
.hamburger:hover { background: var(--accent-light); }
.hamburger:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

.hamburger span {
  display: block;
  width: 22px;
  height: 2.5px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.22s ease, opacity 0.22s ease;
}
.hamburger.is-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ----------------------------------------------------------------
   Language toggle
   ---------------------------------------------------------------- */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  background: transparent;
  border: 1.5px solid var(--border);
  border-radius: 999px;
  padding: 0.38rem 0.8rem;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  color: var(--muted);
  font-family: inherit;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  white-space: nowrap;
}
.lang-toggle:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.lang-sep { opacity: 0.35; margin-inline: 0.1rem; }

.lang-opt { transition: color 0.2s; }
.lang-opt.is-active { color: var(--accent); }

.lang-toggle.is-ko {
  border-color: var(--accent);
  background: var(--accent-light);
}

/* ----------------------------------------------------------------
   Header
   ---------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 200;
  background: #ffffff;
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 0.25rem 0;
  flex-wrap: wrap;
}

.brand { text-decoration: none; display: flex; align-items: center; flex-shrink: 0; }
.brand-logo {
  height: 110px;
  width: auto;
  max-width: 380px;
}

.main-nav { display: flex; gap: 0.2rem; align-items: center; }

.main-nav a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.93rem;
  color: var(--muted);
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  transition: color 0.15s, background 0.15s;
}
.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--accent);
  background: var(--accent-light);
  outline: none;
}

/* ----------------------------------------------------------------
   Hero
   ---------------------------------------------------------------- */
.hero {
  position: relative;
  padding: 4rem 0 3rem;
  overflow: hidden;
}

.hero-bg-orbs {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
.hero-bg-orbs::before,
.hero-bg-orbs::after {
  content: '';
  position: absolute;
  border-radius: 50%;
}
.hero-bg-orbs::before {
  width: 700px; height: 700px;
  top: -200px; right: -180px;
  background: radial-gradient(circle, rgba(30, 82, 200, 0.06) 0%, transparent 70%);
}
.hero-bg-orbs::after {
  width: 500px; height: 500px;
  bottom: -150px; left: -120px;
  background: radial-gradient(circle, rgba(30, 82, 200, 0.04) 0%, transparent 70%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 3rem;
  align-items: center;
}

.eyebrow-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.95rem;
  background: var(--accent-light);
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 1px solid var(--border-blue);
  margin-bottom: 1.1rem;
}

.hero h1 {
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  font-weight: 900;
  line-height: 1.07;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.h1-accent { color: var(--gold); }

.hero-korean {
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.9rem;
  letter-spacing: 0.01em;
}

.hero-lead {
  font-size: clamp(1rem, 1.7vw, 1.1rem);
  color: var(--muted);
  max-width: 480px;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.6rem;
  align-items: center;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.4rem;
}
.hero-trust span {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--muted);
}

/* ----------------------------------------------------------------
   Slideshow banner
   ---------------------------------------------------------------- */
.slideshow-section {
  line-height: 0; /* removes gap under inline elements */
}

.slideshow {
  position: relative;
  width: 100%;
  height: 520px;
  overflow: hidden;
  background: var(--blue-900);
}

/* Individual slides – stacked, fade in/out */
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.65s ease;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-end;
}

.slide.is-active { opacity: 1; }

/* Placeholder gradient backgrounds – replace with real photos later.
   Using background-image (not shorthand) so background-size/repeat from .slide stay active */
.slide--1 { background-image: linear-gradient(135deg, #0d3b8e 0%, #1e52c8 50%, #2563eb 100%); }
.slide--2 { background-image: linear-gradient(135deg, #0d2d6e 0%, #1340a8 50%, #1e52c8 100%); }
.slide--3 { background-image: linear-gradient(135deg, #14378a 0%, #1a4db8 50%, #2355c5 100%); }
.slide--4 { background-image: linear-gradient(135deg, #0b2660 0%, #1238a0 50%, #1e52c8 100%); }
.slide--5 { background-image: linear-gradient(135deg, #0f2d6e 0%, #163d9a 50%, #1952be 100%); }

/* Caption bar at bottom of each slide */
.slide-caption {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.1rem 1.75rem 1.25rem;
  background: linear-gradient(to top, rgba(10, 20, 60, 0.75) 0%, transparent 100%);
  line-height: 1;
}

.slide-emoji { font-size: 1.6rem; }

.slide-title {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.slide-korean {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.92rem;
  font-weight: 600;
}

/* Prev / Next arrow buttons */
.slideshow-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(6px);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  z-index: 10;
}

.slideshow-btn:hover {
  background: rgba(255, 255, 255, 0.32);
  transform: translateY(-50%) scale(1.08);
}

.slideshow-btn:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.slideshow-btn--prev { left: 1.25rem; }
.slideshow-btn--next { right: 1.25rem; }

/* Dot indicators */
.slideshow-dots {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.45rem;
  z-index: 10;
}

.slideshow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}

.slideshow-dot.is-active {
  background: #fff;
  transform: scale(1.3);
}

.slideshow-dot:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

/* ----------------------------------------------------------------
   Hero visual card + mini slideshow
   ---------------------------------------------------------------- */
.hero-visual { position: relative; }

.hero-visual-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}

.hero-slideshow {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.65s ease;
  background-image: linear-gradient(135deg, var(--blue-900), var(--blue-700)); /* fallback */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-slide.is-active { opacity: 1; }

/* Arrow buttons */
.hs-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s, transform 0.2s;
}
.hs-btn:hover { background: rgba(255, 255, 255, 0.4); transform: translateY(-50%) scale(1.08); }
.hs-btn:focus-visible { outline: 2px solid #fff; outline-offset: 2px; }
.hs-btn--prev { left: 0.75rem; }
.hs-btn--next { right: 0.75rem; }

/* Dot indicators */
.hs-dots {
  position: absolute;
  bottom: 0.8rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.4rem;
  z-index: 10;
}

.hs-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}
.hs-dot.is-active { background: #fff; transform: scale(1.3); }
.hs-dot:focus-visible { outline: 2px solid #fff; outline-offset: 2px; }

/* Slide caption bar */
.hs-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
  padding: 2rem 1rem 2.8rem; /* extra bottom padding keeps text above dots */
  background: linear-gradient(to top, rgba(5, 15, 50, 0.88) 0%, rgba(5, 15, 50, 0.4) 60%, transparent 100%);
  z-index: 4;
  pointer-events: none;
}

.hs-caption-korean {
  color: #fff;
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

.hs-caption-title {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

/* ----------------------------------------------------------------
   Featured Favorites
   ---------------------------------------------------------------- */
.featured { background: var(--surface); }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
}

.feat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow 0.22s, transform 0.22s;
}
.feat-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.feat-card-img {
  height: 200px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, #f0ece3 0%, #e6dfd4 100%);
}

.feat-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.3s ease;
}

.feat-card:hover .feat-card-img img {
  transform: scale(1.04);
}

.feat-card-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.85);
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  border: 1px dashed #c8b89a;
}

.feat-card-body { padding: 1.1rem 1.15rem 1.3rem; }

.feat-card-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gold);
  background: var(--gold-light);
  border: 1px solid #e8d4a8;
  padding: 0.18rem 0.6rem;
  border-radius: 999px;
  margin-bottom: 0.45rem;
  letter-spacing: 0.02em;
}

.feat-card-body h3 {
  font-size: 1.02rem;
  font-weight: 800;
  margin-bottom: 0.38rem;
  letter-spacing: -0.01em;
  color: var(--text);
}

.feat-card-body p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.58;
}

/* ----------------------------------------------------------------
   Catering
   ---------------------------------------------------------------- */
.catering-section {
  background: linear-gradient(148deg, var(--blue-900) 0%, var(--blue-800) 100%);
  color: #fff;
}

.catering-section .section-header h2 { color: #fff; }
.catering-section .section-header p  { color: rgba(255, 255, 255, 0.72); max-width: 640px; }

.note {
  padding: 0.8rem 1rem 0.8rem 1.1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-left: 3px solid rgba(255, 255, 255, 0.55);
  border-radius: var(--radius-xs);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 2rem;
  max-width: 680px;
}

.note--sm {
  background: var(--accent-light);
  border-color: var(--border-blue);
  border-left-color: var(--accent);
  color: var(--muted);
  margin-top: 1.25rem;
  margin-bottom: 0;
}

.catering-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-bottom: 2.25rem;
}

.catering-card {
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-sm);
  padding: 1.5rem 0.9rem 1.3rem;
  text-align: center;
  transition: background 0.2s, transform 0.2s, border-color 0.2s;
}
.catering-card:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
}

.catering-card-icon { font-size: 2.2rem; display: block; margin-bottom: 0.65rem; }

.catering-card h3 { font-size: 0.95rem; font-weight: 800; margin-bottom: 0.3rem; }

.catering-card p { font-size: 0.82rem; color: rgba(255, 255, 255, 0.6); margin: 0; }

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
}

.callout {
  margin-top: 1.6rem;
  padding: 1.15rem 1.3rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 700px;
}

/* ----------------------------------------------------------------
   Gallery
   ---------------------------------------------------------------- */
.gallery-section { background: var(--bg); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 220px 220px;
  gap: 1rem;
}

.gallery-item {
  background: linear-gradient(135deg, var(--blue-50), var(--blue-100));
  border: 1px solid var(--border-blue);
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--muted);
  transition: transform 0.22s, box-shadow 0.22s;
  overflow: hidden;
}
.gallery-item:hover {
  transform: scale(1.025);
  box-shadow: var(--shadow-md);
}

.gallery-item--large {
  grid-row: span 2;
  font-size: 1rem;
}

/* ----------------------------------------------------------------
   Location
   ---------------------------------------------------------------- */
.location-section { background: var(--cream); }

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 2rem;
  align-items: start;
}

.location-info-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 2.1rem;
  box-shadow: var(--shadow-md);
}

.info-list { display: grid; gap: 1.35rem; margin-bottom: 0.25rem; }

.info-item dt {
  display: flex;
  align-items: center;
  gap: 0.48rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.3rem;
}

.info-item dt svg { flex-shrink: 0; }

.info-item dd {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
  padding-left: 1.65rem;
}

.info-item a {
  color: var(--accent);
  font-weight: 800;
  font-size: 1.2rem;
  text-decoration: none;
}
.info-item a:hover,
.info-item a:focus-visible { text-decoration: underline; }

.hours-row {
  display: flex;
  justify-content: space-between;
  max-width: 260px;
  gap: 1rem;
  font-size: 0.94rem;
  margin-bottom: 0.25rem;
}

.closed { color: #dc2626; font-weight: 700; }

.map-placeholder {
  min-height: 400px;
  background: linear-gradient(135deg, var(--blue-50), var(--blue-100));
  border: 1.5px dashed var(--border-blue);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  color: var(--muted);
  text-align: center;
  padding: 2rem;
}
.map-placeholder p     { font-weight: 700; font-size: 1rem; margin: 0; }
.map-placeholder small { font-size: 0.82rem; opacity: 0.7; }

/* ----------------------------------------------------------------
   Footer
   ---------------------------------------------------------------- */
.site-footer {
  background: var(--blue-900);
  color: rgba(255, 255, 255, 0.82);
  padding: 2rem 0 1.75rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand-col p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 0;
  max-width: 230px;
  line-height: 1.6;
}

.footer-logo {
  height: 64px;
  width: auto;
  background: #fff;
  border-radius: var(--radius-xs);
  padding: 4px 10px;
  margin-bottom: 0.85rem;
  margin-top: 0.5rem;
}

.footer-top h3 {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 1rem;
}

/* ================================================================
   CATALOG PAGE
   catalog.html — shared styles via this file
   ================================================================ */

/* Page hero banner */
.catalog-page-hero {
  background: linear-gradient(135deg, var(--blue-900) 0%, var(--blue-700) 100%);
  padding: 4rem 0 3rem;
  text-align: center;
  color: #fff;
}
.catalog-page-hero h1 {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}
.catalog-page-hero p {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
}

/* Sticky pricing banner */
.catalog-pricing-banner {
  background: var(--gold);
  color: #fff;
  text-align: center;
  padding: 0.75rem 1rem;
  font-weight: 700;
  font-size: 0.95rem;
  position: sticky;
  top: 0;
  z-index: 200;
  letter-spacing: 0.01em;
}
.catalog-pricing-banner a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Tab navigation */
.catalog-tabs-nav {
  background: var(--surface);
  border-bottom: 2px solid var(--border);
  display: flex;
  justify-content: center;
  gap: 0;
  position: sticky;
  top: 2.75rem; /* below pricing banner */
  z-index: 190;
}
.catalog-tab-btn {
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--muted);
  cursor: pointer;
  transition: color 0.15s, border-color 0.15s;
  font-family: inherit;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}
.catalog-tab-btn:hover { color: var(--accent); }
.catalog-tab-btn.is-active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}
@media (max-width: 480px) {
  .catalog-tab-btn { padding: 0.85rem 1.1rem; font-size: 0.9rem; }
}

/* Section wrapper */
.catalog-section {
  padding: 3rem 0 4rem;
  background: var(--bg);
}
.catalog-section[hidden] { display: none; }

/* Section intro */
.catalog-section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.catalog-section-header h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 0.4rem;
}
.catalog-section-header p {
  color: var(--muted);
  font-size: 0.95rem;
}

/* Category group header */
.catalog-group {
  margin-bottom: 3rem;
}
.catalog-group-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.catalog-group-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border-blue);
}

/* Card grid */
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
}

/* Individual item card */
.catalog-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.1rem 1.2rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.18s, transform 0.18s;
}
.catalog-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.catalog-card-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.25rem;
  letter-spacing: -0.01em;
}
.catalog-card-en {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}
.catalog-card-ingredients {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.55;
}
.catalog-card-note {
  font-size: 0.8rem;
  color: var(--subtle);
  margin-top: 0.4rem;
  font-style: italic;
  line-height: 1.5;
}
.catalog-card-badges {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin-top: 0.6rem;
}
.catalog-badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  letter-spacing: 0.04em;
}
.catalog-badge--blue {
  background: var(--accent-light);
  color: var(--accent);
  border: 1px solid var(--border-blue);
}
.catalog-badge--gold {
  background: var(--gold-light);
  color: var(--gold-hover);
  border: 1px solid #e8d4a0;
}
.catalog-badge--size {
  background: var(--cream);
  color: var(--muted);
  border: 1px solid var(--border);
}

/* Footnotes at section bottom */
.catalog-footnote {
  margin-top: 2rem;
  padding: 1rem 1.25rem;
  background: var(--cream);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-xs) var(--radius-xs) 0;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
}

/* Back link */
.catalog-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.75);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 1.5rem;
  transition: color 0.15s;
}
.catalog-back-link:hover { color: #fff; }

.footer-links { list-style: none; display: grid; gap: 0.55rem; }

.footer-links a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.94rem;
  color: rgba(255, 255, 255, 0.72);
  transition: color 0.15s;
}
.footer-links a:hover,
.footer-links a:focus-visible { color: #fff; }

.footer-phone {
  display: block;
  color: #fff;
  font-weight: 800;
  font-size: 1.2rem;
  text-decoration: none;
  margin-bottom: 0.6rem;
}
.footer-phone:hover { text-decoration: underline; }

.footer-address {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
  padding-top: 1.5rem;
}

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

/* ================================================================
   Responsive – Tablet (≤ 980px)
   ================================================================ */
@media (max-width: 980px) {
  .hero { padding: 3.5rem 0 3rem; }

  .hero-grid,
  .location-grid { grid-template-columns: 1fr; }

  .hero-visual { order: -1; }
  .hero-slideshow { aspect-ratio: 3 / 2; }

  /* Shrink logo so it fits next to hamburger + Call Now */
  .brand-logo { height: 80px; }

  /* Show hamburger, collapse nav into dropdown */
  .hamburger { display: flex; }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(26, 21, 16, 0.12);
    flex-direction: column;
    align-items: stretch;
    padding: 0.5rem 1.25rem 1.25rem;
    gap: 0;
    display: none;
    z-index: 199;
    width: 100%;
  }

  .main-nav.is-open { display: flex; }

  .main-nav a {
    padding: 0.9rem 0.25rem;
    border-bottom: 1px solid var(--border);
    border-radius: 0;
    font-size: 1.05rem;
    color: var(--text);
    font-weight: 600;
  }

  .main-nav .lang-toggle {
    margin-top: 0.85rem;
    align-self: flex-start;
  }

  /* Keep header single row: logo | hamburger | Call Now */
  .header-inner { flex-wrap: nowrap; }
  .btn-header   { flex-shrink: 0; }

  .feature-grid  { grid-template-columns: repeat(2, 1fr); }
  .catering-grid { grid-template-columns: repeat(3, 1fr); }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .gallery-item--large { grid-row: span 1; min-height: 210px; }
  .gallery-item        { min-height: 210px; }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .footer-brand-col { grid-column: span 2; }
}

/* ================================================================
   Responsive – Mobile (≤ 640px)
   ================================================================ */
@media (max-width: 640px) {
  .container { width: min(var(--max-width), 100% - 1.5rem); }
  .section   { padding: 3.5rem 0; }

  .brand-logo { height: 64px; }

  .hero h1 { font-size: 2.1rem; }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  .hero-actions .btn { width: 100%; justify-content: center; }

  .slideshow { height: 280px; }
  .slide-title { font-size: 1.05rem; }

  .feature-grid,
  .catering-grid { grid-template-columns: 1fr; }

  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .gallery-item,
  .gallery-item--large { min-height: 190px; grid-row: span 1; }

  .location-info-panel { padding: 1.5rem; }

  .cta-row .btn { width: 100%; justify-content: center; }

  .footer-top { grid-template-columns: 1fr; gap: 1.75rem; }
  .footer-brand-col { grid-column: span 1; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

