/* ---------- Design tokens ---------- */
:root {
  --blue: #234bbd;
  --blue-dark: #152f7a;
  --blue-darker: #0b1130;
  --blue-tint: #eaf0ff;
  --blue-tint-2: #d7e2ff;
  --yellow: #ffc93c;
  --cream: #fffaf0;
  --ink: #0b1130;
  --white: #ffffff;
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --shadow: 0 12px 30px rgba(11, 17, 48, 0.12);
  --font-display: 'Fredoka', 'Baloo 2', sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
  margin: 0 0 0.4em;
  color: var(--blue-darker);
}

p { margin: 0 0 1em; }

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

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
}
.skip-link:focus {
  left: 16px;
  top: 16px;
  background: var(--white);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  z-index: 999;
}

.eyebrow {
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: var(--blue);
  margin-bottom: 0.6em;
}
.eyebrow-light { color: var(--yellow); }

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}
.section-head h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary { background: var(--blue); color: var(--white); box-shadow: var(--shadow); }
.btn-primary:hover { background: var(--blue-dark); }

.btn-outline { border-color: var(--blue); color: var(--blue); background: transparent; }
.btn-outline:hover { background: var(--blue-tint); }

.btn-light { background: var(--yellow); color: var(--blue-darker); }
.btn-light:hover { background: #ffd766; }

.btn-light-outline { border-color: rgba(255,255,255,0.6); color: var(--white); }
.btn-light-outline:hover { background: rgba(255,255,255,0.12); }

.btn-small { padding: 10px 20px; font-size: 0.9rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(11,17,48,0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 24px;
}

.logo-img { height: 30px; width: auto; }

.main-nav {
  display: flex;
  gap: 28px;
  font-weight: 600;
  font-size: 0.95rem;
}
.main-nav a { color: var(--blue-darker); opacity: 0.85; }
.main-nav a:hover { opacity: 1; color: var(--blue); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--blue-darker);
}
.lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
  color: inherit;
  opacity: 0.45;
  padding: 4px;
}
.lang-btn.active { opacity: 1; color: var(--blue); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--blue-darker);
  border-radius: 2px;
}

/* ---------- Hero ---------- */
.hero {
  padding: 64px 0 80px;
  background: linear-gradient(180deg, var(--blue-tint) 0%, var(--white) 100%);
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 48px;
}

.hero-copy h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  color: var(--blue);
}

.hero-sub {
  font-size: 1.15rem;
  max-width: 46ch;
  color: var(--blue-darker);
  opacity: 0.85;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}
.badge {
  background: var(--white);
  border: 2px solid var(--blue-tint-2);
  color: var(--blue-dark);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 8px 16px;
  border-radius: 999px;
}

.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-media {
  position: relative;
  justify-self: center;
}
.hero-photo {
  width: 100%;
  max-width: 420px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 6px solid var(--white);
}
.hero-mascot {
  position: absolute;
  bottom: -30px;
  left: -40px;
  width: 140px;
  filter: drop-shadow(0 8px 14px rgba(11,17,48,0.25));
}

/* ---------- Menu ---------- */
.menu { padding: 96px 0; }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}

.menu-card {
  background: var(--blue-tint);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  text-align: left;
  border: 2px solid transparent;
}
.menu-card.featured {
  background: var(--blue);
  color: var(--white);
}
.menu-card.featured h3,
.menu-card.featured .menu-build { color: var(--white); }
.menu-card.featured .menu-desc { color: rgba(255,255,255,0.85); }
.menu-card.featured .menu-tag { background: var(--yellow); color: var(--blue-darker); }

.menu-tag {
  display: inline-block;
  background: var(--blue-tint-2);
  color: var(--blue-dark);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.menu-card h3 {
  font-size: 1.5rem;
  color: var(--blue-darker);
}

.menu-build {
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 8px;
}

.menu-desc {
  font-size: 0.92rem;
  color: var(--blue-darker);
  opacity: 0.8;
  margin-bottom: 0;
}

.sides-banner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  background: var(--blue-darker);
  border-radius: var(--radius-lg);
  overflow: hidden;
  align-items: stretch;
}
.sides-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 260px;
}
.sides-copy {
  padding: 40px;
  color: var(--white);
  align-self: center;
}
.sides-copy h3 { color: var(--white); font-size: 1.6rem; }
.sides-copy p { color: rgba(255,255,255,0.82); }
.menu-note {
  font-size: 0.85rem;
  font-style: italic;
  opacity: 0.75;
  margin-bottom: 0;
}

/* ---------- About ---------- */
.about { padding: 96px 0; background: var(--cream); }

.about-inner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 56px;
  align-items: center;
}

.about-photo {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 6px solid var(--white);
}

.about-copy h2 { font-size: clamp(1.8rem, 4vw, 2.4rem); }

.about-stats {
  display: flex;
  gap: 36px;
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  flex-wrap: wrap;
}
.about-stats li { display: flex; flex-direction: column; }
.about-stats strong {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--blue);
}
.about-stats span {
  font-size: 0.85rem;
  opacity: 0.7;
  max-width: 14ch;
}

/* ---------- Gallery ---------- */
.gallery { padding: 96px 0; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
}
.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item.span-2 { grid-column: span 2; }

/* ---------- Location ---------- */
.location { padding: 96px 0; background: var(--blue-tint); }

.location-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: stretch;
}

.location-title, .location h2 { font-size: clamp(1.8rem, 4vw, 2.4rem); }

.info-block { margin-bottom: 28px; }
.info-block h3 {
  font-size: 1.1rem;
  color: var(--blue);
  margin-bottom: 8px;
}

.hours-table { border-collapse: collapse; margin-bottom: 12px; }
.hours-table td {
  padding: 6px 18px 6px 0;
  font-weight: 500;
}
.hours-table td:first-child { font-weight: 700; color: var(--blue-darker); }

.location-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 340px;
}
.location-map iframe {
  width: 100%;
  height: 100%;
  min-height: 340px;
  border: 0;
}

/* ---------- Order ---------- */
.order {
  padding: 90px 0;
  background: var(--blue);
  color: var(--white);
  text-align: center;
}
.order h2 { color: var(--white); font-size: clamp(1.8rem, 4vw, 2.6rem); }
.order p { max-width: 50ch; margin: 0 auto 32px; color: rgba(255,255,255,0.85); }
.order-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--blue-darker);
  color: rgba(255,255,255,0.85);
  padding: 64px 0 24px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-logo {
  height: 24px;
  margin-bottom: 14px;
  filter: brightness(0) invert(1);
}
.footer-col h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 12px;
}
.footer-col a:hover { color: var(--yellow); }
.footer-bottom {
  padding-top: 24px;
  font-size: 0.85rem;
  opacity: 0.6;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }

  .site-header.nav-open .main-nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 20px 24px;
    gap: 16px;
    box-shadow: var(--shadow);
  }

  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-copy { order: 2; }
  .hero-media { order: 1; }
  .hero-ctas, .hero-badges { justify-content: center; }
  .hero-mascot { display: none; }

  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .sides-banner { grid-template-columns: 1fr; }
  .sides-photo { min-height: 200px; }

  .about-inner { grid-template-columns: 1fr; }
  .about-stats { justify-content: center; text-align: center; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gallery-item.span-2 { grid-column: span 2; }

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

  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .menu-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .header-actions .btn-small { display: none; }
}
