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

body {
  font-family: system-ui, -apple-system, Arial, sans-serif;
  background: #fff;
  color: #222;
}

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

/* ── HEADER ── */
.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 28px;
}

.logo a {
  text-decoration: none;
  color: #111;
  font-size: 18px;
  letter-spacing: 0.5px;
}

.logo-sub {
  font-size: 10px;
  letter-spacing: 2px;
  color: #888;
  margin-top: 2px;
}

/* Hamburger — hidden on desktop */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  padding: 4px 8px;
  color: #222;
  line-height: 1;
}

.navlinks {
  display: flex;
  gap: 24px;
  align-items: center;
}

.navlinks a {
  text-decoration: none;
  color: #222;
  font-size: 13px;
  letter-spacing: 0.5px;
}

.navlinks a.active {
  text-decoration: underline;
  text-underline-offset: 6px;
}

/* ── HERO ── */
.hero {
  height: 80vh;
  background-image: url("nougat.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* dark overlay so white text is always readable */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.32);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  padding: 0 28px;
}

.hero h1 {
  font-size: 52px;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: 1px;
}

.hero-sub {
  margin-top: 16px;
  font-size: 14px;
  letter-spacing: 3px;
  font-weight: 400;
  opacity: 0.85;
  text-transform: uppercase;
}

/* ── ORDER WINDOW ── */
.order-window {
  text-align: center;
  padding: 72px 24px 64px;
  border-bottom: 1px solid #eee;
}

.ow-label {
  font-size: 11px;
  letter-spacing: 5px;
  color: #aaa;
  margin-bottom: 18px;
}

.ow-status {
  font-size: 14px;
  color: #555;
  font-style: italic;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
}

.ow-countdown {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 32px;
}

.ow-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ow-unit span {
  font-size: 40px;
  font-weight: 300;
  color: #111;
  line-height: 1;
}

.ow-unit small {
  font-size: 10px;
  letter-spacing: 2px;
  color: #aaa;
  margin-top: 6px;
  text-transform: uppercase;
}

.ow-btn {
  display: inline-block;
  background: #111;
  color: #fff;
  text-decoration: none;
  padding: 14px 36px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
  transition: background 0.2s;
}

.ow-btn:hover {
  background: #333;
}

.ow-note {
  font-size: 11px;
  letter-spacing: 1px;
  color: #bbb;
  font-style: italic;
}

/* ── ABOUT ── */
.about {
  max-width: 760px;
  margin: 100px auto;
  padding: 0 24px;
  text-align: center;
  color: #555;
}

.about-title {
  font-size: 32px;
  font-style: italic;
  font-weight: 400;
  margin-bottom: 32px;
  color: #222;
}

.about-text {
  font-size: 18px;
  line-height: 1.9;
  margin-bottom: 24px;
}

.tagline {
  margin-top: 48px;
  font-style: italic;
  letter-spacing: 2px;
  font-size: 12px;
  color: #999;
}

.location {
  margin-top: 10px;
  font-style: italic;
  letter-spacing: 1px;
  font-size: 12px;
  color: #999;
}

/* ── FLAVORS IMAGE ── */
.flavors-image {
  width: 100%;
  margin: 60px 0;
  padding: 0 60px;
}

.flavors-image img {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

/* ── TESTIMONIALS ── */
.testimonials {
  padding: 80px 28px;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonials h2 {
  font-size: 38px;
  font-weight: 400;
  margin-bottom: 40px;
  letter-spacing: 0.5px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.card {
  background: #f7f7f7;
  padding: 32px;
}

.card p {
  font-size: 16px;
  line-height: 1.75;
  color: #444;
}

/* ── BANNER ── */
.banner {
  height: 420px;
  width: 100%;
  margin: 60px 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.banner-dubai {
  background-image: url("dubai.jpg");
}

/* ── FOOTER ── */
.site-footer {
  border-top: 1px solid #eee;
  padding: 48px 28px 36px;
  text-align: center;
}

.footer-logo {
  font-size: 16px;
  letter-spacing: 0.5px;
  color: #111;
  margin-bottom: 4px;
}

.footer-logo-sub {
  font-size: 9px;
  letter-spacing: 2.5px;
  color: #aaa;
  margin-bottom: 28px;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin-bottom: 20px;
}

.footer-links a {
  text-decoration: none;
  color: #888;
  font-size: 12px;
  letter-spacing: 0.5px;
}

.footer-links a:hover { color: #111; }

.footer-links span {
  color: #ddd;
  font-size: 12px;
}

.footer-copy {
  font-size: 11px;
  color: #bbb;
  letter-spacing: 0.5px;
}

/* ────────────────────────────────────────
   MOBILE  (≤ 768px)
──────────────────────────────────────── */
@media (max-width: 768px) {
  /* Show hamburger, hide inline nav */
  .menu-toggle {
    display: block;
  }

  .navlinks {
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid #eee;
    padding: 8px 0;
    z-index: 99;
  }

  .navlinks.open {
    display: flex;
  }

  .navlinks a {
    padding: 14px 28px;
    font-size: 16px;
    border-bottom: 1px solid #f0f0f0;
  }

  .navlinks a:last-child {
    border-bottom: none;
  }

  /* Hero */
  .hero {
    height: 100svh;
    background-attachment: scroll;
  }

  .hero h1 {
    font-size: 32px;
    letter-spacing: 0.5px;
  }

  .hero-sub {
    font-size: 11px;
    letter-spacing: 2.5px;
  }

  /* Order window */
  .order-window { padding: 48px 24px 44px; }
  .ow-unit span { font-size: 28px; }
  .ow-countdown { gap: 16px; }

  /* About */
  .about {
    margin: 56px auto;
    text-align: left;
  }

  .about-title {
    font-size: 26px;
    margin-bottom: 24px;
  }

  .about-text {
    font-size: 15px;
    line-height: 1.85;
  }

  .tagline,
  .location {
    text-align: left;
  }

  /* Testimonials */
  .testimonials {
    padding: 48px 20px;
  }

  .testimonials h2 {
    font-size: 26px;
    margin-bottom: 24px;
  }

  .cards {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .card {
    padding: 24px;
  }

  /* Banner */
  .banner {
    height: 240px;
    margin: 40px 0;
  }

  /* Flavors image */
  .flavors-image {
    margin: 40px 0;
  }

  /* Footer */
  .footer-links span { display: none; }
  .footer-links { gap: 10px 14px; }
}
