/* ============================================================
   Seoulmate — Modern Korean Cuisine, Mumbai
   Clean, bold, blue-forward theme (Bonchon-inspired) shared
   with the homepage. Class names are preserved; some legacy
   variable names below are intentionally remapped so that
   existing inline styles in the HTML keep working.
   Primary brand accent is the Seoulmate blue.
   ============================================================ */

:root {
  --ink:        #1d242c;
  --ink-blue:   #15345c;
  --muted:      #5c6570;

  /* Seoulmate blue — primary brand accent */
  --brand:      #204b83;
  --brand-deep: #15345c;
  --danger:     #c0392b;

  --bg:         #f4efe8;
  --warm:       #efe6db;
  --surface:    rgba(255, 255, 255, 0.8);
  --surface-strong: rgba(255, 255, 255, 0.95);
  --line:       rgba(25, 33, 42, 0.1);
  --white:      #ffffff;

  --shadow:      0 20px 52px rgba(21, 52, 92, 0.14);
  --shadow-soft: 0 10px 28px rgba(21, 52, 92, 0.09);

  --radius:  18px;
  --radius-lg: 28px;
  --nav-h:   76px;
  --max:     1160px;

  --serif: "Noto Serif KR", Georgia, "Times New Roman", "Noto Color Emoji", "Apple Color Emoji", "Segoe UI Emoji", serif;
  --sans:  "Noto Sans KR", system-ui, -apple-system, "Segoe UI", "Noto Color Emoji", "Apple Color Emoji", "Segoe UI Emoji", sans-serif;

  /* Legacy names remapped for the light, blue theme (used by inline styles) */
  --red:      #204b83;
  --dark:     #1d242c;
  --charcoal: #efe6db;
  --card:     rgba(255, 255, 255, 0.8);
  --cream:    #1d242c;
  --gold:     #204b83;
}

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

html { scroll-behavior: smooth; }

body {
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 6%, rgba(32, 75, 131, 0.09), transparent 24%),
    radial-gradient(circle at 92% 2%, rgba(21, 52, 92, 0.07), transparent 20%),
    linear-gradient(180deg, #fbf8f3 0%, var(--bg) 100%);
  background-attachment: fixed;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

h1, h2, h3, h4, .nav__logo, .post-hero__h1 { font-family: var(--serif); }

/* ── Utility ── */
.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.section    { padding: clamp(64px, 9vw, 104px) 0; }
.section--alt { background: linear-gradient(180deg, rgba(32, 75, 131, 0.05), rgba(32, 75, 131, 0.02)); }

.tag {
  display: inline-block;
  color: var(--brand);
  background: rgba(32, 75, 131, 0.09);
  border: 1px solid rgba(32, 75, 131, 0.22);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
}

.section-label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: var(--ink-blue);
  margin-bottom: 18px;
}
.section-sub {
  color: var(--muted);
  max-width: 620px;
  font-size: clamp(1rem, 0.4vw + 0.95rem, 1.12rem);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  font-family: var(--serif);
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-red {
  background: linear-gradient(180deg, var(--brand) 0%, var(--brand-deep) 100%);
  color: var(--white);
  box-shadow: var(--shadow-soft);
}
.btn-outline {
  background: var(--surface-strong);
  color: var(--ink-blue);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}
.btn-outline:hover { border-color: var(--brand); color: var(--brand); }

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(251, 248, 243, 0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.nav__logo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--ink-blue);
}
.nav__logo span { color: var(--brand); }
.nav__logo small {
  font-size: 10.5px;
  font-weight: 500;
  font-family: var(--sans);
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 5px;
}
.nav__logo img {
  height: 46px;
  width: auto;
  display: block;
  transition: opacity 180ms ease, transform 180ms ease;
}
.nav__logo:hover img { opacity: 0.85; transform: translateY(-1px); }
.footer__brand .nav__logo img { height: 42px; margin-bottom: 16px; }
.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 34px);
  list-style: none;
}
.nav__links a {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(29, 36, 44, 0.78);
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
  transition: color 180ms ease, border-color 180ms ease;
}
.nav__links a:hover,
.nav__links a.active { color: var(--brand); border-color: currentColor; }
.nav__order {
  background: linear-gradient(180deg, var(--brand) 0%, var(--brand-deep) 100%);
  color: var(--white);
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease;
}
.nav__order:hover { transform: translateY(-2px); }

/* Hamburger */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink-blue);
  border-radius: 2px;
  transition: 0.3s;
}
.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: rgba(251, 248, 243, 0.97);
  backdrop-filter: blur(14px);
  padding: 22px 24px;
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  z-index: 99;
}
.nav__mobile.open { display: block; }
.nav__mobile ul { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.nav__mobile a { font-size: 16px; font-weight: 600; color: var(--ink-blue); }
.nav__mobile a:hover { color: var(--brand); }

/* ── Page Hero (inner pages) ── */
.page-hero {
  position: relative;
  padding: calc(var(--nav-h) + 78px) 0 74px;
  text-align: center;
  color: #fff;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(13, 24, 40, 0.9) 0%, rgba(13, 24, 40, 0.74) 55%, rgba(13, 24, 40, 0.9) 100%),
    url('../assets/hero.jpg') center/cover no-repeat;
}
.page-hero .tag {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.32);
}
.page-hero__title {
  font-size: clamp(36px, 5.6vw, 62px);
  font-weight: 800;
  line-height: 1.03;
  letter-spacing: -0.025em;
  color: #fff;
  margin: 18px 0;
}
.page-hero__sub {
  font-size: clamp(1rem, 0.5vw + 0.95rem, 1.18rem);
  color: rgba(255, 255, 255, 0.82);
  max-width: 620px;
  margin: 0 auto;
}
.page-hero__ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 28px; }
.page-hero .btn-outline,
.post-hero .btn-outline {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
  box-shadow: none;
}
.page-hero .btn-outline:hover,
.post-hero .btn-outline:hover { background: rgba(255, 255, 255, 0.2); border-color: #fff; color: #fff; }

/* ── Blog listing ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 26px;
  margin-top: 8px;
}
.blog-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(8px);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
  display: flex;
  flex-direction: column;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(32, 75, 131, 0.3); }
.blog-card__img {
  height: 190px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.55), rgba(239, 230, 219, 0.85)),
    linear-gradient(135deg, rgba(32, 75, 131, 0.1), rgba(21, 52, 92, 0.06));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.blog-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-card__body { padding: 26px; flex: 1; display: flex; flex-direction: column; }
.blog-card__date { font-size: 12px; color: var(--muted); margin-bottom: 10px; letter-spacing: 0.02em; }
.blog-card__title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
  color: var(--ink-blue);
}
.blog-card__excerpt { font-size: 14.5px; color: var(--muted); line-height: 1.65; flex: 1; }
.blog-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  font-family: var(--serif);
  color: var(--brand);
  margin-top: 20px;
  transition: gap 180ms ease;
}
.blog-card:hover .blog-card__link { gap: 12px; }

/* ── Blog Post ── */
.post-hero {
  position: relative;
  padding: calc(var(--nav-h) + 58px) 0 58px;
  color: #fff;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(13, 24, 40, 0.9) 0%, rgba(13, 24, 40, 0.76) 55%, rgba(13, 24, 40, 0.9) 100%),
    url('../assets/hero.jpg') center/cover no-repeat;
}
.post-hero .tag {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.32);
}
.post-hero__back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 26px;
  transition: color 180ms ease, gap 180ms ease;
}
.post-hero__back:hover { color: #fff; gap: 10px; }
.post-hero__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 22px;
}
.post-hero__inner { max-width: 720px; margin: 0 auto; }
.post-hero__h1 {
  font-size: clamp(28px, 4.4vw, 50px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: #fff;
}
.post-body { padding: clamp(44px, 6vw, 64px) 0; }
.post-body__content {
  max-width: 720px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.85;
  color: var(--ink);
}
.post-body__content h2 {
  font-size: 26px;
  font-weight: 700;
  color: var(--ink-blue);
  margin: 40px 0 14px;
  letter-spacing: -0.01em;
}
.post-body__content h3 { font-size: 20px; font-weight: 700; color: var(--ink-blue); margin: 30px 0 10px; }
.post-body__content p { margin-bottom: 20px; color: #384049; }
.post-body__content strong { color: var(--ink); font-weight: 700; }
.post-body__content ul { padding-left: 22px; margin-bottom: 20px; }
.post-body__content ul li { margin-bottom: 10px; color: #384049; }
.post-body__content ul li::marker { color: var(--brand); }

/* ── Catering ── */
.catering-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.catering-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 34px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(8px);
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}
.catering-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(32, 75, 131, 0.3); }
.catering-card__icon { font-size: 38px; margin-bottom: 18px; }
.catering-card__title { font-size: 21px; font-weight: 700; margin-bottom: 12px; color: var(--ink-blue); }
.catering-card__desc { font-size: 14.5px; color: var(--muted); line-height: 1.7; }

/* ── Process steps ── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 48px;
}
.process-step {
  text-align: center;
  padding: 34px 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(8px);
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.process-step:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.process-step__icon { font-size: 40px; line-height: 1; margin-bottom: 16px; }
.process-step h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; color: var(--ink-blue); }
.process-step p { font-size: 14px; color: var(--muted); line-height: 1.65; }

.cta-band {
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.14), transparent 42%),
    linear-gradient(135deg, var(--brand) 0%, var(--brand-deep) 100%);
  border-radius: var(--radius-lg);
  padding: 56px 40px;
  text-align: center;
  color: var(--white);
  box-shadow: var(--shadow);
}
.cta-band h2 { font-size: clamp(26px, 3.2vw, 38px); font-weight: 800; margin-bottom: 14px; letter-spacing: -0.01em; }
.cta-band p { color: rgba(255, 255, 255, 0.88); margin-bottom: 30px; }
.cta-band .btn-outline { background: rgba(255, 255, 255, 0.12); border-color: rgba(255, 255, 255, 0.5); color: #fff; box-shadow: none; }
.cta-band .btn-outline:hover { background: rgba(255, 255, 255, 0.2); border-color: #fff; color: #fff; }

/* ── Meal Box ── */
.mealbox {
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(8px);
  padding: 44px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
}
.mealbox__badge {
  display: inline-block;
  background: rgba(32, 75, 131, 0.1);
  color: var(--brand);
  border: 1px solid rgba(32, 75, 131, 0.28);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.mealbox__title { font-size: 28px; font-weight: 700; margin-bottom: 12px; color: var(--ink-blue); }
.mealbox__desc { color: var(--muted); margin-bottom: 24px; }
.mealbox__options { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.mealbox__options li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14.5px;
  color: #384049;
}
.mealbox__options li::before {
  content: '';
  width: 7px; height: 7px;
  background: var(--brand);
  border-radius: 50%;
  flex-shrink: 0;
}
.mealbox__timing {
  background: rgba(32, 75, 131, 0.09);
  border: 1px solid rgba(32, 75, 131, 0.22);
  border-radius: 999px;
  padding: 12px 20px;
  font-size: 14px;
  color: var(--brand);
  font-weight: 700;
  margin-top: 22px;
  display: inline-block;
}
.mealbox__visual {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.65), rgba(239, 230, 219, 0.85)),
    linear-gradient(135deg, rgba(32, 75, 131, 0.1), rgba(21, 52, 92, 0.06));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 84px;
  overflow: hidden;
}
.mealbox__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}

/* ── Locations ── */
.locations__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.location-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(8px);
}
.location-card__name { font-size: 19px; font-weight: 700; margin-bottom: 10px; color: var(--ink-blue); }
.location-card__addr { font-size: 14.5px; color: var(--muted); margin-bottom: 20px; line-height: 1.7; }
.location-card__hours { display: flex; flex-direction: column; gap: 8px; font-size: 13.5px; }
.location-card__hours span { color: var(--muted); }
.location-card__hours strong { color: var(--ink); }
.hours-row { display: flex; justify-content: space-between; }
.closed { color: var(--danger) !important; font-weight: 700; }

/* ── Contact ── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: flex-start;
}
.contact-info { display: flex; flex-direction: column; gap: 30px; }
.contact-block__label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 10px;
}
.contact-block__val { font-size: 15px; line-height: 1.75; color: #384049; }
.contact-block__val a { transition: color 180ms ease; }
.contact-block__val a:hover { color: var(--brand); }
.social-links { display: flex; gap: 12px; flex-wrap: wrap; }
.social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 600;
  color: #384049;
  box-shadow: var(--shadow-soft);
  transition: border-color 180ms ease, color 180ms ease, transform 180ms ease;
}
.social-link:hover { border-color: var(--brand); color: var(--brand); transform: translateY(-2px); }

.contact-form {
  background: var(--surface-strong);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 3vw, 44px);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}
.contact-form h2 { font-size: 24px; font-weight: 700; margin-bottom: 28px; color: var(--ink-blue); }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.form-group input,
.form-group textarea {
  width: 100%;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 16px;
  font-size: 15px;
  color: var(--ink);
  font-family: var(--sans);
  transition: border-color 180ms ease, box-shadow 180ms ease;
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #9aa1a9; }
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(32, 75, 131, 0.12);
}
.form-group input.invalid,
.form-group textarea.invalid {
  border-color: var(--danger);
  box-shadow: 0 0 0 4px rgba(192, 57, 43, 0.1);
}
.field-error {
  display: none;
  margin-top: 6px;
  font-size: 12.5px;
  color: var(--danger);
}
.field-error.show { display: block; }
.form-group textarea { resize: vertical; min-height: 140px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit { width: 100%; padding: 15px; font-size: 15px; justify-content: center; }
.form-status {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  display: none;
}
.form-status--success {
  display: block;
  color: #1f7a52;
  background: rgba(31, 122, 82, 0.1);
  border: 1px solid rgba(31, 122, 82, 0.28);
}
.form-status--error {
  display: block;
  color: var(--danger);
  background: rgba(192, 57, 43, 0.09);
  border: 1px solid rgba(192, 57, 43, 0.28);
}

/* ── Footer ── */
.footer {
  background: rgba(255, 255, 255, 0.72);
  border-top: 1px solid var(--line);
  padding: 60px 0 30px;
}
.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 44px;
}
.footer__brand .nav__logo { margin-bottom: 14px; }
.footer__brand p { font-size: 14.5px; color: var(--muted); line-height: 1.75; max-width: 280px; }
.footer__col h4 {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin-bottom: 16px;
}
.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer__col li { font-size: 14.5px; }
.footer__col a { color: #384049; transition: color 180ms ease; }
.footer__col a:hover { color: var(--brand); }
.footer__col p { font-size: 14.5px; color: #384049; line-height: 1.75; }
.footer__col p a { transition: color 180ms ease; }
.footer__col p a:hover { color: var(--brand); }
.footer__bottom {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__copy { font-size: 13px; color: var(--muted); }
.footer__socials { display: flex; gap: 18px; }
.footer__socials a { font-size: 13px; font-weight: 600; color: var(--muted); transition: color 180ms ease; }
.footer__socials a:hover { color: var(--brand); }

/* ── Homepage: Hero ── */
.hero {
  position: relative;
  min-height: min(90vh, 900px);
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  padding-top: var(--nav-h);
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13, 22, 38, 0.88) 0%, rgba(13, 22, 38, 0.58) 46%, rgba(13, 22, 38, 0.25) 100%),
    linear-gradient(180deg, rgba(21, 52, 92, 0.25), rgba(13, 22, 38, 0.55)),
    url('../assets/hero.jpg') center/cover no-repeat;
}
.hero__content { position: relative; z-index: 2; max-width: 640px; padding: 40px 0; }
.hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 12px;
  font-weight: 700;
  color: #cfe0f5;
  margin-bottom: 18px;
}
.hero__h1 {
  font-size: clamp(40px, 6vw, 74px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.hero__h1 em { font-style: normal; color: #8fb3e6; }
.hero__tagline {
  font-size: clamp(1.05rem, 1vw + 0.9rem, 1.28rem);
  color: rgba(255, 255, 255, 0.86);
  margin-bottom: 32px;
  max-width: 33rem;
  line-height: 1.6;
}
.hero__ctas { display: flex; flex-wrap: wrap; gap: 14px; }
.hero .btn-outline { background: rgba(255, 255, 255, 0.1); border-color: rgba(255, 255, 255, 0.5); color: #fff; box-shadow: none; }
.hero .btn-outline:hover { background: rgba(255, 255, 255, 0.2); border-color: #fff; color: #fff; }
.hero__strip {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  background: rgba(13, 22, 38, 0.55);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 18px 0;
}
.hero__strip-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 18px; }
.hero__strip-item { display: flex; align-items: center; gap: 12px; }
.hero__strip-item svg { color: #8fb3e6; flex-shrink: 0; }
.hero__strip-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255, 255, 255, 0.66); }
.hero__strip-val { font-weight: 600; font-size: 14px; color: #fff; }

/* ── Homepage: Delivery Partners ── */
.partners { padding: 46px 0; border-bottom: 1px solid var(--line); }
.partners__label { text-align: center; font-size: 12px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--muted); margin-bottom: 24px; }
.partners__logos { display: flex; align-items: center; justify-content: center; gap: 32px; flex-wrap: wrap; }
.partners__logos a {
  width: 96px; height: 96px;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  display: flex; align-items: center; justify-content: center;
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.partners__logos a:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.partners__logos img { width: 100%; height: 100%; object-fit: cover; }

/* ── Homepage: Signature Dishes ── */
.dishes__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 24px; margin-top: 44px; }
.dish-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(8px);
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}
.dish-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(32, 75, 131, 0.3); }
.dish-card__img {
  height: 180px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.55), rgba(239, 230, 219, 0.85)),
    linear-gradient(135deg, rgba(32, 75, 131, 0.1), rgba(21, 52, 92, 0.06));
  display: flex; align-items: center; justify-content: center;
  font-size: 62px;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.dish-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.dish-card__body { padding: 22px; }
.dish-card__name { font-size: 18px; font-weight: 700; margin-bottom: 8px; color: var(--ink-blue); }
.dish-card__desc { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ── Homepage: Meal box left cell ── */
.mealbox__left { display: flex; flex-direction: column; align-items: flex-start; }

/* ── Homepage: Chef ── */
.chef { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(28px, 4vw, 60px); align-items: center; }
.chef__img-wrap { position: relative; }
.chef__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 460px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(32, 75, 131, 0.12), rgba(21, 52, 92, 0.06));
  display: flex; align-items: center; justify-content: center;
  font-size: 96px;
}
.chef__img img { width: 100%; height: 100%; object-fit: cover; }
.chef__badge {
  position: absolute;
  bottom: -18px; right: -18px;
  background: linear-gradient(180deg, var(--brand), var(--brand-deep));
  color: #fff;
  border-radius: 16px;
  padding: 14px 22px;
  font-size: 13px;
  line-height: 1.3;
  box-shadow: var(--shadow);
}
.chef__badge strong { display: block; font-size: 20px; font-weight: 800; }
.chef__credentials { list-style: none; display: flex; flex-direction: column; gap: 14px; margin: 22px 0; }
.chef__credentials li { display: flex; align-items: flex-start; gap: 12px; font-size: 14.5px; color: #384049; }
.chef__credentials .icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: rgba(32, 75, 131, 0.1);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 15px;
}

/* ── Homepage: Contact strip ── */
.contact-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  box-shadow: var(--shadow-soft);
}
.contact-strip__info { display: flex; flex-direction: column; gap: 8px; }
.contact-strip__info a { font-size: 15px; color: #384049; transition: color 180ms ease; }
.contact-strip__info a:hover { color: var(--brand); }

/* ── Responsive ── */
@media (max-width: 900px) {
  .mealbox { grid-template-columns: 1fr; padding: 28px; }
  .mealbox__visual { height: 200px; }
  .contact-layout { grid-template-columns: 1fr; }
  .locations__grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .chef { grid-template-columns: 1fr; }
  .chef__img { height: 340px; }
  .chef__badge { bottom: 14px; right: 14px; }
}
@media (max-width: 640px) {
  .nav__links, .nav__order { display: none; }
  .nav__toggle { display: flex; }
  .footer__top { grid-template-columns: 1fr; gap: 28px; }
  .form-row { grid-template-columns: 1fr; }
  .cta-band { padding: 40px 24px; }
  .hero__strip-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
}
