@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Inter:wght@400;500;600;700;800&display=swap');

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

html { height: 100%; scroll-behavior: smooth; }

body {
  font-family: Inter, system-ui, sans-serif;
  background: #FFF7EF;
  color: #0B1D3A;
  min-height: 100%;
  padding-bottom: 56px;
}

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

/* ── HEADER ── */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 52px;
  background: rgba(255,247,239,.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(11,29,58,.06);
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 1px;
  flex-shrink: 0;
}

.logo-img {
  height: 64px;
  width: auto;
  display: block;
}

.logo-text {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 19px;
  line-height: 1.25;
  color: #0B1D3A;
  font-weight: 400;
  letter-spacing: 0.01em;
}

/* Nav */
.nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 14px;
  font-weight: 500;
  color: #0B1D3A;
}

.nav a { transition: color .15s; }
.nav a:hover,
.nav a.active { color: #FF6B7A; }

/* Order button */
.btn-order {
  background: #FF6B7A;
  color: #fff;
  font-size: 13.5px;
  font-weight: 700;
  padding: 11px 22px;
  border-radius: 999px;
  white-space: nowrap;
  transition: background .15s, transform .15s;
  flex-shrink: 0;
}
.btn-order:hover { background: #e0546a; transform: translateY(-1px); }

.nav-order-mobile { display: none; }

/* ── Ticker / announcement bar ── */
.ticker-wrap {
  width: 100%;
  overflow: hidden;
  background: #FF6B7A;
  padding: 7px 0;
  position: relative;
  z-index: 99;
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker-scroll 28s linear infinite;
}

.ticker-item {
  white-space: nowrap;
  padding: 0 56px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .04em;
  color: #fff;
  text-transform: uppercase;
}

@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (max-width: 1024px) {
  .ticker-item { font-size: 10px; padding: 0 36px; }
  .ticker-wrap { padding: 5px 0; }
}

@media (max-width: 768px) {
  .ticker-item { font-size: 9px; padding: 0 24px; }
  .ticker-wrap { padding: 4px 0; }
}

/* Hamburger */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-shrink: 0;
}
.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 24px; height: 2px;
  background: #0B1D3A;
  border-radius: 2px;
  position: relative;
  transition: background .15s;
}
.menu-toggle span::before,
.menu-toggle span::after { content: ""; position: absolute; left: 0; }
.menu-toggle span::before { top: -7px; }
.menu-toggle span::after  { top:  7px; }

/* ── HERO ── */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 560px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 32px 48px 52px;
  max-width: 44%;
  background: linear-gradient(
    to right,
    rgba(255,247,239,.9) 55%,
    rgba(255,247,239,0) 100%
  );
}

.eyebrow {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .22em;
  color: #FF6B7A;
  margin-bottom: 20px;
  text-transform: uppercase;
}

h1 {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(28px, 3vw, 48px);
  font-weight: 400;
  line-height: 1.12;
  color: #0B1D3A;
  margin-bottom: 18px;
}

h1 em { font-style: italic; color: #FF6B7A; }

.hero-body {
  font-size: 15.5px;
  line-height: 1.78;
  color: #3d5068;
  margin-bottom: 32px;
  max-width: 340px;
  font-weight: 400;
}

.hero-btns {
  display: flex;
  gap: 12px;
  margin-bottom: 36px;
  align-items: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: #FF6B7A;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 13px 26px;
  border-radius: 999px;
  transition: background .15s, transform .15s;
}
.btn-primary:hover { background: #e0546a; transform: translateY(-2px); }

.btn-ghost {
  background: transparent;
  color: #0B1D3A;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 999px;
  border: 1.5px solid rgba(11,29,58,.25);
  transition: border-color .15s, transform .15s;
}
.btn-ghost:hover { border-color: #0B1D3A; transform: translateY(-2px); }

/* Badges */
.hero-badges {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 10px;
}

.badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(11,29,58,.08);
  border-radius: 14px;
  padding: 10px 16px;
  backdrop-filter: blur(6px);
}

.badge-icon {
  font-size: 22px;
  line-height: 1;
  flex-shrink: 0;
}

.badge-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.badge-text strong {
  font-size: 12px;
  font-weight: 700;
  color: #0B1D3A;
}

.badge-text span {
  font-size: 11px;
  line-height: 1.4;
  color: #5a6a7a;
}

/* ── TABLET + MOBILE (iPad and below) ── */
@media (max-width: 1024px) {
  .header { padding: 12px 32px; }
  .logo-img { height: 52px; }
  .logo-text { font-size: 16px; }

  .nav {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(255,247,239,.97);
    backdrop-filter: blur(8px);
    padding: 20px;
    gap: 18px;
    z-index: 20;
    border-bottom: 1px solid rgba(11,29,58,.08);
    box-shadow: 0 8px 24px rgba(11,29,58,.08);
  }
  .nav.open { display: flex; }
  .nav a { font-size: 15px; font-weight: 500; }
  .nav-order-mobile {
    display: inline-block;
    margin-top: 4px;
    padding: 10px 20px;
    background: #FF6B7A;
    color: #fff !important;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    align-self: stretch;
  }

  .menu-toggle { display: block; }
  .btn-order   { display: none; }

  .hero-content {
    max-width: 55%;
    padding: 86px 0 48px 32px;
  }
}

/* ── MOBILE ── */
@media (max-width: 768px) {
  .header { padding: 14px 20px; }

  .logo-img { height: 44px; }
  .logo-text { font-size: 13px; }

  .hero { height: 100svh; min-height: 600px; }
  .hero-bg { object-position: 65% center; }

  .hero-content {
    max-width: 100%;
    padding: 80px 20px 40px;
    justify-content: center;
    background: linear-gradient(
      to right,
      rgba(255,247,239,.92) 40%,
      rgba(255,247,239,.6) 70%,
      rgba(255,247,239,0) 100%
    );
  }

  h1 { font-size: clamp(24px, 7vw, 36px); }
  .hero-body { font-size: 14px; max-width: 300px; }
  .hero-btns { margin-bottom: 24px; }
  .hero-badges { gap: 8px; }
  .badge { padding: 8px 12px; }
  .badge-text span { display: none; }
}

/* ── SMALL MOBILE ── */
@media (max-width: 420px) {
  .hero-badges { gap: 6px; }
  .badge-text span { display: block; }
}

/* ════════════════════════════════════════════════
   SCROLL REVEAL
════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ════════════════════════════════════════════════
   SECTION SHARED
════════════════════════════════════════════════ */
.section-intro {
  text-align: center;
  padding: 100px 24px 72px;
  max-width: 680px;
  margin: 0 auto;
}

.section-eye {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: #FF6B7A;
  margin-bottom: 20px;
}
.section-eye--light { color: #FF6B7A; }

.section-h2 {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 400;
  line-height: 1.1;
  color: #0B1D3A;
  margin-bottom: 18px;
}
.section-h2--light { color: #FFF7EF; }

.section-lead {
  font-size: 17px;
  line-height: 1.7;
  color: #5a6a7a;
}
.section-lead--light { color: #8a9ab0; }

/* ════════════════════════════════════════════════
   MENU SECTION — Flavours + Add-Ons
════════════════════════════════════════════════ */
.menu-block {
  padding: 28px 52px;
  background: #FFF7EF;
}

.menu-block--dark {
  background: #0B1D3A;
}

.menu-block-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 20px;
}

.menu-block-header .section-eye { margin-bottom: 8px; }
.menu-block-header .section-h2  { font-size: clamp(20px, 2.4vw, 34px); line-height: 1.15; margin-bottom: 0; }

.btn-addons {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #FF6B7A;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: 999px;
  white-space: nowrap;
  transition: background .15s, transform .15s;
  flex-shrink: 0;
}
.btn-addons:hover { background: #e0546a; transform: translateY(-2px); }

/* ── Flavours shelf ── */
.flavours-shelf {
  display: grid;
  grid-template-columns: repeat(5, minmax(160px, 1fr));
  gap: 20px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 4px;
}
.flavours-shelf::-webkit-scrollbar { display: none; }

.shelf-card {
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(11,29,58,.07);
  border-radius: 20px;
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease;
}
.shelf-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(11,29,58,.12);
}

.shelf-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.shelf-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.shelf-card:hover .shelf-img img { transform: scale(1.05); }

.shelf-card h3 {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 15px;
  font-weight: 400;
  color: #0B1D3A;
  margin: 10px 12px 4px;
}
.shelf-card p {
  font-size: 11.5px;
  line-height: 1.45;
  color: #5a6a7a;
  margin: 0 12px 12px;
}

/* ── Add-ons shelf ── */
.addons-shelf {
  display: grid;
  grid-template-columns: repeat(8, minmax(100px, 1fr));
  gap: 14px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 4px;
}
.addons-shelf::-webkit-scrollbar { display: none; }

.addon-card {
  background: rgba(255,247,239,.06);
  border: 1px solid rgba(255,247,239,.1);
  border-radius: 14px;
  overflow: hidden;
  text-align: center;
  padding-bottom: 10px;
  transition: transform .35s ease, background .35s ease;
}
.addon-card:hover {
  background: rgba(255,247,239,.14);
  transform: translateY(-6px);
}

.addon-img {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
}
.addon-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.addon-card:hover .addon-img img { transform: scale(1.07); }

.addon-tag {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #FF6B7A;
  margin: 8px 0 3px;
}
.addon-card h4 {
  font-size: 12px;
  font-weight: 600;
  color: #FFF7EF;
}

/* ── Responsive: menu section ── */
@media (max-width: 1024px) {
  .menu-block { padding: 24px 32px; }
  .menu-block-header { margin-bottom: 16px; }
  .flavours-shelf { grid-template-columns: repeat(5, minmax(130px, 1fr)); gap: 12px; }
  .addons-shelf   { grid-template-columns: repeat(8, minmax(80px,  1fr)); gap: 8px; }
}

@media (max-width: 768px) {
  .menu-block { padding: 20px 16px; }
  .menu-block-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
  }
  .flavours-shelf { grid-template-columns: repeat(5, minmax(120px, 1fr)); gap: 8px; }
  .addons-shelf   { grid-template-columns: repeat(8, minmax(72px,  1fr)); gap: 6px; }
}

/* ════════════════════════════════════════════════
   CATERING SECTION
════════════════════════════════════════════════ */
.section-catering {
  background: #0B1D3A;
  padding: 80px 52px;
}

.catering-inner {
  display: flex;
  align-items: flex-start;
  gap: 72px;
  max-width: 1200px;
  margin: 0 auto;
}

.catering-copy {
  flex: 1;
  min-width: 0;
}

.catering-lead {
  font-size: 15px;
  line-height: 1.78;
  color: rgba(255,247,239,.7);
  margin: 20px 0 24px;
  max-width: 580px;
}

.catering-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.catering-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,247,239,.75);
}

.catering-list li::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: #FF6B7A;
  color: #fff;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}

.catering-tagline {
  font-size: 13.5px;
  font-style: italic;
  color: rgba(255,247,239,.5);
  margin-bottom: 32px;
}

.btn-catering {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #FF6B7A;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 999px;
  transition: background .15s, transform .15s;
}
.btn-catering:hover { background: #e0546a; transform: translateY(-2px); }

.catering-qr {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 28px;
  background: rgba(255,247,239,.06);
  border: 1px solid rgba(255,247,239,.12);
  border-radius: 24px;
}

.qr-label {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,247,239,.55);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .12em;
  max-width: 180px;
  line-height: 1.5;
}

.qr-img {
  width: 200px;
  height: 200px;
  border-radius: 12px;
  background: #fff;
  padding: 8px;
}

.qr-url {
  font-size: 11px;
  color: rgba(255,247,239,.35);
  font-family: monospace;
  text-align: center;
  word-break: break-all;
}

/* ════════════════════════════════════════════════
   ABOUT SECTION
════════════════════════════════════════════════ */
.section-about {
  background: #FFF7EF;
  padding: 80px 52px;
  text-align: center;
}

.about-inner {
  max-width: 720px;
  margin: 0 auto;
}

.about-badge {
  width: 88px;
  height: 88px;
  margin: 0 auto 20px;
  display: block;
}

.about-body {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 28px 0 36px;
  text-align: left;
}

.about-body p {
  font-size: 15.5px;
  line-height: 1.85;
  color: #4a5a6a;
}

/* ════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════ */
.footer {
  position: sticky;
  bottom: 0;
  z-index: 90;
  background: rgba(11,29,58,.98);
  backdrop-filter: blur(10px);
  padding: 14px 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 24px;
  border-top: 1px solid rgba(255,247,239,.06);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-logo {
  height: 28px;
  width: auto;
}

.footer-name {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 14px;
  line-height: 1.2;
  color: #FFF7EF;
}

.footer-info {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11.5px;
  color: rgba(255,247,239,.4);
  flex-wrap: wrap;
}

.footer-info a {
  color: rgba(255,247,239,.6);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color .15s;
}
.footer-info a:hover { color: #FF6B7A; }

.footer-sep { opacity: .3; }

/* ── Responsive: catering + about + footer ── */
@media (max-width: 1024px) {
  .section-catering { padding: 60px 32px; }
  .catering-inner   { gap: 48px; }
  .section-about    { padding: 60px 32px; }
  .footer {
    padding: 5px 12px;
    gap: 2px 10px;
    justify-content: center;
    text-align: center;
  }
  .footer-logo { height: 14px; }
  .footer-name { font-size: 9px; }
  .footer-info { font-size: 8px; gap: 6px; }
  .footer-sep  { display: none; }
}

@media (max-width: 768px) {
  .section-catering { padding: 48px 20px; }
  .catering-inner   { flex-direction: column; gap: 36px; }
  .catering-qr      { width: 100%; }
  .qr-img           { width: 160px; height: 160px; }
  .section-about    { padding: 48px 20px; }
  .about-body p     { font-size: 14.5px; }
}
