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

:root {
  --navy:   #0B3954;
  --blue:   #BFD7EA;
  --coral:  #FF6663;
  --lime:   #E0FF4F;
  --white:  #FEFFFE;
  --coral-dark: #e54e4b;
  --navy-light: #144d72;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--navy);
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: 'Playfair Display', serif; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── Reusable ─────────────────────────────────────────────── */
.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 0.75rem;
}
.section-label.light { color: var(--lime); }

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3.5rem;
}
.section-header h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.section-header p {
  color: rgba(255,255,255,0.65);
  font-size: 1.05rem;
  line-height: 1.7;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--coral);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(255,102,99,0.4);
}
.btn-primary:hover {
  background: var(--coral-dark);
  box-shadow: 0 6px 28px rgba(255,102,99,0.55);
}
.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn-secondary:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
}

/* ── Navbar ───────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2.5rem;
  transition: background 0.3s, padding 0.3s, box-shadow 0.3s;
}
#navbar.scrolled {
  background: var(--navy);
  padding: 0.85rem 2.5rem;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-decoration: none;
}
.logo-main {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--coral);
  letter-spacing: 0.05em;
}
.logo-sub {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--blue);
  text-transform: uppercase;
  margin-top: 1px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.nav-links .nav-cta {
  background: var(--coral);
  color: var(--white);
  padding: 0.55rem 1.3rem;
  border-radius: 4px;
  font-weight: 600;
}
.nav-links .nav-cta:hover { background: var(--coral-dark); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem 5rem;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255,102,99,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 80% 100%, rgba(11,57,84,0.9) 0%, transparent 60%);
  pointer-events: none;
}

.hero-bg-text {
  position: absolute;
  font-family: 'Playfair Display', serif;
  font-size: clamp(12rem, 30vw, 26rem);
  font-weight: 900;
  color: rgba(255,255,255,0.03);
  user-select: none;
  pointer-events: none;
  letter-spacing: -0.05em;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.hero-logo { line-height: 1; }
.hero-logo h1 {
  font-size: clamp(3.5rem, 10vw, 8rem);
  font-weight: 900;
  color: var(--coral);
  letter-spacing: 0.04em;
  line-height: 1;
}
.hero-subtitle {
  font-size: clamp(0.85rem, 2.5vw, 1.15rem);
  font-weight: 600;
  letter-spacing: 0.35em;
  color: var(--blue);
  text-transform: uppercase;
  margin-top: 0.4rem;
}

.hero-tagline {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: rgba(191,215,234,0.85);
  line-height: 1.65;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 0.5rem;
}

.hero-founded {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(191,215,234,0.5);
  margin-top: 0.5rem;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(191,215,234,0.5);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  animation: bounce 2s ease-in-out infinite;
  transition: color 0.2s;
}
.hero-scroll:hover { color: var(--blue); }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ── Marquee ──────────────────────────────────────────────── */
.marquee-strip {
  background: var(--coral);
  overflow: hidden;
  padding: 0.75rem 0;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  gap: 2.5rem;
  animation: marquee 28s linear infinite;
}
.marquee-track span {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
}
.marquee-track .dot { color: var(--lime); font-size: 0.65rem; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── About ────────────────────────────────────────────────── */
.about {
  padding: 7rem 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.about-img-card {
  width: 380px;
  height: 440px;
  background: var(--navy);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 7rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(11,57,84,0.18);
}
.about-img-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(255,102,99,0.3), transparent);
}

.about-badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--coral);
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 0.9rem 1.4rem;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(255,102,99,0.4);
}

.about-float-card {
  position: absolute;
  top: 2rem;
  left: -1.5rem;
  background: var(--white);
  border-radius: 10px;
  padding: 0.9rem 1.3rem;
  box-shadow: 0 8px 32px rgba(11,57,84,0.12);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.about-float-card strong {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  color: var(--navy);
}
.about-float-card span {
  font-size: 0.72rem;
  color: var(--coral);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.about-text h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--navy);
}
.about-text p {
  color: #4a5568;
  line-height: 1.8;
  margin-bottom: 1.1rem;
  font-size: 1.02rem;
}

.about-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid #e2e8f0;
}
.stat { display: flex; flex-direction: column; }
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--coral);
  line-height: 1;
}
.stat-plus { font-size: 1.6rem; }
.stat-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #718096;
  margin-top: 0.3rem;
}

/* ── Menu ─────────────────────────────────────────────────── */
.menu {
  background: var(--navy);
  padding: 7rem 0;
  color: var(--white);
}

.menu-category { margin-bottom: 3.5rem; }
.category-title {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.category-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.1);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.menu-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 1.75rem;
  position: relative;
  transition: background 0.2s, transform 0.2s, border-color 0.2s;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.menu-card:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,102,99,0.3);
  transform: translateY(-3px);
}
.menu-card.featured {
  background: rgba(255,102,99,0.12);
  border-color: rgba(255,102,99,0.35);
}

.menu-card-badge {
  position: absolute;
  top: -0.6rem;
  right: 1.25rem;
  background: var(--lime);
  color: var(--navy);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  border-radius: 20px;
}

.menu-icon { font-size: 2rem; margin-bottom: 0.25rem; }

.menu-card h4 {
  font-size: 1.1rem;
  color: var(--white);
  line-height: 1.3;
}
.menu-card p {
  font-size: 0.88rem;
  color: rgba(191,215,234,0.75);
  line-height: 1.65;
  flex: 1;
}

.menu-footer {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-top: 0.5rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.price {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--coral);
}
.size {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(191,215,234,0.45);
  letter-spacing: 0.05em;
}

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

.menu-note {
  margin-top: 2rem;
  background: rgba(224,255,79,0.07);
  border: 1px solid rgba(224,255,79,0.2);
  border-radius: 8px;
  padding: 1rem 1.5rem;
  text-align: center;
}
.menu-note p {
  font-size: 0.85rem;
  color: rgba(224,255,79,0.8);
  line-height: 1.6;
}

/* ── Testimonials ─────────────────────────────────────────── */
.testimonials {
  background: var(--blue);
  padding: 7rem 0;
}
.testimonials .section-label { color: var(--navy); opacity: 0.6; }
.testimonials .section-header h2 { color: var(--navy); }
.testimonials .section-header p  { color: rgba(11,57,84,0.65); }

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  gap: 1.5rem;
  align-items: center;
}

.testimonial-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 4px 24px rgba(11,57,84,0.08);
  transition: transform 0.2s, box-shadow 0.2s;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(11,57,84,0.14);
}
.testimonial-card.featured-testimonial {
  background: var(--navy);
  transform: scale(1.04);
  box-shadow: 0 16px 48px rgba(11,57,84,0.25);
}
.testimonial-card.featured-testimonial:hover {
  transform: scale(1.04) translateY(-4px);
}
.testimonial-card.featured-testimonial p,
.testimonial-card.featured-testimonial .testimonial-author {
  color: rgba(255,255,255,0.85);
}

.stars { color: var(--coral); font-size: 1rem; letter-spacing: 0.1em; }
.testimonial-card p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: #4a5568;
  font-style: italic;
}
.testimonial-author {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--coral);
  letter-spacing: 0.05em;
}

/* ── Location ─────────────────────────────────────────────── */
.location {
  padding: 7rem 0;
  background: var(--white);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.location-info h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--navy);
  margin-bottom: 1rem;
  line-height: 1.2;
}
.location-info > p {
  color: #4a5568;
  line-height: 1.8;
  font-size: 1.02rem;
  margin-bottom: 2rem;
}

.location-details { display: flex; flex-direction: column; gap: 1.5rem; }
.detail-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.detail-icon { font-size: 1.3rem; margin-top: 0.1rem; flex-shrink: 0; }
.detail-item strong {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 0.3rem;
}
.detail-item p {
  color: #4a5568;
  line-height: 1.7;
  font-size: 0.95rem;
}

.location-map {
  background: var(--navy);
  border-radius: 14px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 56px rgba(11,57,84,0.18);
  overflow: hidden;
  position: relative;
}
.location-map::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255,102,99,0.15) 0%, transparent 70%);
}
.map-placeholder {
  text-align: center;
  position: relative;
  z-index: 1;
}
.map-pin { font-size: 3rem; margin-bottom: 0.75rem; }
.map-placeholder p {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.3rem;
}
.map-placeholder small {
  font-size: 0.8rem;
  color: var(--blue);
  opacity: 0.7;
  letter-spacing: 0.05em;
}

/* ── Footer ───────────────────────────────────────────────── */
footer {
  background: #060f17;
  color: rgba(255,255,255,0.6);
  padding: 4rem 0 1.5rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 1.75rem;
}

.footer-brand .logo-main {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 0.15rem;
}
.footer-brand .logo-sub {
  display: block;
  margin-bottom: 0.85rem;
}
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.6;
  max-width: 260px;
  color: rgba(191,215,234,0.45);
}

.footer-links h4,
.footer-social h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1.1rem;
}
.footer-links ul,
.footer-social ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.footer-links a,
.footer-social a {
  text-decoration: none;
  color: rgba(191,215,234,0.55);
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-links a:hover,
.footer-social a:hover { color: var(--coral); }

.footer-bottom {
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.2);
}

/* ── Mobile ───────────────────────────────────────────────── */
@media (max-width: 900px) {
  .about-grid,
  .location-grid { grid-template-columns: 1fr; gap: 3rem; }

  .about-visual { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-card.featured-testimonial { transform: scale(1); }
  .menu-grid, .menu-grid-2 { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--navy); padding: 1.5rem 2rem; gap: 1.2rem; }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .menu-grid, .menu-grid-2 { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
  .about-stats { gap: 1.5rem; }
  .footer-top { grid-template-columns: 1fr; }
}
