/* =========================================================
   BUNSIK 88 — Korean Soul Food
   Shared stylesheet for index.html, menu.html, about.html
   ========================================================= */

/* ---------- Brand tokens ---------- */
:root {
  /* Brand palette pulled from the logo */
  --color-yellow: #F4C842;       /* primary brand yellow */
  --color-yellow-soft: #FBE7A1;  /* tint of yellow */
  --color-navy: #1F4A5C;         /* deep navy/teal */
  --color-navy-deep: #143542;
  --color-orange: #D8542C;       /* hot orange / red */
  --color-cream: #FBF1DA;        /* warm off-white (still used on dark sections) */
  --color-bg: #FFFFFF;           /* page background */
  --color-ink: #16242C;          /* near-black, with navy undertone */
  --color-ink-soft: #4B5A63;
  --color-line: rgba(31, 74, 92, 0.14);

  /* Typography — single readable sans family throughout */
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-display: var(--font-body);
  --font-korean: "Noto Sans KR", system-ui, sans-serif;

  /* Layout */
  --max-w: 1200px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;

  /* Shadows */
  --shadow-card: 0 6px 24px rgba(20, 53, 66, 0.10);
  --shadow-lift: 0 14px 40px rgba(20, 53, 66, 0.18);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--color-ink);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

/* ---------- Typography ---------- */
.display, h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 0.4em;
  color: var(--color-navy-deep);
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4.5rem); font-weight: 800; }
h2 { font-size: clamp(1.85rem, 3.6vw, 2.85rem); font-weight: 800; }
h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); font-weight: 700; letter-spacing: -0.01em; }
p  { margin: 0 0 1em; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  text-transform: uppercase;
  color: var(--color-orange);
  margin-bottom: 0.75rem;
}
.korean { font-family: var(--font-korean); font-weight: 700; }

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: clamp(60px, 9vw, 120px) 0; }
.section--tight { padding: clamp(40px, 6vw, 80px) 0; }
.section--navy { background: var(--color-navy); color: var(--color-cream); }
.section--navy h1, .section--navy h2, .section--navy h3 { color: var(--color-yellow); }
.section--navy .eyebrow { color: var(--color-yellow); }
.section--yellow { background: var(--color-yellow); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-line);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 24px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  color: var(--color-navy-deep);
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}
.brand__logo {
  height: 56px;
  width: auto;
  display: block;
}
.site-footer .brand__logo {
  height: 64px;
}

.nav { display: flex; align-items: center; gap: 28px; }
.nav a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-navy-deep);
  position: relative;
  padding: 6px 0;
}
.nav a:hover { color: var(--color-orange); }
.nav a.is-current::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 3px;
  background: var(--color-orange);
  border-radius: 3px;
}

.nav-toggle {
  display: none;
  border: 2px solid var(--color-navy);
  background: var(--color-yellow);
  border-radius: 10px;
  padding: 8px 12px;
  font-weight: 700;
  color: var(--color-navy);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border: 2px solid transparent;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-card); }
.btn--primary { background: var(--color-orange); color: #fff; }
.btn--primary:hover { background: #c14721; }
.btn--navy { background: var(--color-navy); color: var(--color-yellow); }
.btn--navy:hover { background: var(--color-navy-deep); }
.btn--outline { background: transparent; border-color: var(--color-navy); color: var(--color-navy-deep); }
.btn--outline:hover { background: var(--color-navy); color: var(--color-yellow); }
.btn--yellow { background: var(--color-yellow); color: var(--color-navy-deep); border-color: var(--color-navy); }
.btn--yellow:hover { background: #ecbb2d; }
.btn--white { background: #ffffff; color: #000000; border-color: #000000; }
.btn--white:hover { background: #f4f4f4; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(circle at 80% 10%, rgba(216,84,44,0.18), transparent 50%),
    linear-gradient(180deg, var(--color-yellow) 0%, var(--color-yellow-soft) 100%);
  overflow: hidden;
  padding: clamp(60px, 10vw, 130px) 0 clamp(80px, 12vw, 160px);
}
.hero::before {
  /* subtle pattern */
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(rgba(31,74,92,0.07) 1.5px, transparent 1.5px);
  background-size: 22px 22px;
  pointer-events: none;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
  position: relative;
}
.hero__title {
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--color-navy-deep);
}
.hero__title em {
  font-style: normal;
  color: var(--color-orange);
}
.hero__lead {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  max-width: 52ch;
  color: var(--color-ink);
}
.hero__ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero__visual {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, var(--color-orange), #8a2e15);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  border: 4px solid var(--color-navy);
  /* Replace this block with <img src="images/brand/hero.jpg" alt="..."> */
}
.hero__visual::after {
  content: "분식88";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--font-korean);
  font-weight: 900;
  font-size: clamp(3rem, 7vw, 6rem);
  color: rgba(244, 200, 66, 0.85);
  letter-spacing: -0.02em;
}

.hero__badge {
  position: absolute;
  bottom: -28px;
  left: -28px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: var(--color-yellow);
  border: 4px solid var(--color-navy);
  display: grid;
  place-items: center;
  text-align: center;
  font-family: var(--font-display);
  color: var(--color-navy-deep);
  font-size: 0.95rem;
  line-height: 1.05;
  transform: rotate(-8deg);
  box-shadow: var(--shadow-card);
}
.hero__badge span { display: block; font-size: 1.6rem; color: var(--color-orange); }

/* ---------- Concept strip ---------- */
.concept {
  background: var(--color-navy);
  color: var(--color-cream);
  text-align: center;
}
.concept p {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.4vw, 2.1rem);
  line-height: 1.25;
  max-width: 22ch;
  margin: 0 auto;
  color: var(--color-yellow);
}
.concept p em {
  font-style: normal;
  color: var(--color-orange);
}

/* ---------- Category grid ---------- */
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.section-head p { max-width: 52ch; color: var(--color-ink-soft); margin: 0; }

.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.cat-card {
  background: #fff;
  border: 2px solid var(--color-navy);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
  display: flex;
  flex-direction: column;
}
.cat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.cat-card__media {
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--color-yellow), var(--color-orange));
  position: relative;
  /* Photo slot — replace with: <img src="images/menu/CATEGORY.jpg"> */
}
.cat-card__media::after {
  content: attr(data-emoji);
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: clamp(3rem, 6vw, 5rem);
}
.cat-card__body { padding: 22px 22px 24px; }
.cat-card h3 { margin: 6px 0 8px; }
.cat-card__korean {
  font-family: var(--font-korean);
  color: var(--color-orange);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
}
.cat-card p { color: var(--color-ink-soft); margin: 0 0 14px; font-size: 0.95rem; }
.cat-card__more {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--color-orange);
  letter-spacing: 0.04em;
}

/* ---------- Order rail ---------- */
.order-rail {
  background:
    repeating-linear-gradient(45deg, var(--color-yellow) 0 24px, #efbf3a 24px 48px);
  text-align: center;
  border-top: 4px solid var(--color-navy);
  border-bottom: 4px solid var(--color-navy);
}
.order-rail h2 { color: var(--color-navy-deep); }
.order-rail__btns {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 18px;
}

/* ---------- Story preview ---------- */
.story {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.story__visual {
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, var(--color-navy), var(--color-navy-deep));
  border: 4px solid var(--color-yellow);
  position: relative;
  overflow: hidden;
  /* Replace with <img src="images/brand/story.jpg"> */
}
.story__visual::after {
  content: "코리안 소울 푸드";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--font-korean);
  color: var(--color-yellow);
  font-weight: 800;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  text-align: center;
  letter-spacing: -0.01em;
}

/* ---------- Visit info ---------- */
.visit {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.visit__card {
  background: var(--color-bg);
  border: 2px solid var(--color-navy);
  border-radius: var(--radius-md);
  padding: 28px;
}
.visit__card h3 { color: var(--color-orange); margin-bottom: 10px; }
.visit__card p { margin: 0; }
.visit__card .label {
  font-weight: 700; color: var(--color-navy-deep);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--color-navy-deep);
  color: var(--color-cream);
  padding: 56px 0 32px;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 32px;
}
/* Brand block (first column): logo + tagline inline, centered */
.site-footer__grid > div:first-child {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  text-align: center;
}
.site-footer__grid > div:first-child .brand__logo {
  margin: 0;
  flex-shrink: 0;
}
.site-footer__grid > div:first-child p {
  margin: 0;
  max-width: 22ch;
  text-align: left;
}
.site-footer h4 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--color-yellow);
  margin: 0 0 14px;
}
.site-footer a { color: var(--color-cream); }
.site-footer a:hover { color: var(--color-yellow); }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 8px; }
.site-footer__bottom {
  border-top: 1px solid rgba(251, 241, 218, 0.2);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.9rem;
  color: rgba(251,241,218,0.7);
}

/* ---------- MENU PAGE ---------- */
.menu-hero {
  background: var(--color-navy);
  color: var(--color-cream);
  padding: clamp(60px, 8vw, 110px) 0 clamp(40px, 6vw, 70px);
  text-align: center;
}
.menu-hero h1 { color: var(--color-yellow); }
.menu-hero p { max-width: 56ch; margin: 0 auto; color: rgba(251,241,218,0.85); }

.menu-nav {
  position: sticky;
  top: 76px;
  z-index: 40;
  background: var(--color-bg);
  border-bottom: 2px solid var(--color-navy);
  padding: 12px 0;
  overflow-x: auto;
}
.menu-nav__inner {
  display: flex;
  gap: 8px;
  padding: 0 24px;
  max-width: var(--max-w);
  margin: 0 auto;
  flex-wrap: nowrap;
}
.menu-nav a {
  white-space: nowrap;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
  border: 2px solid var(--color-navy);
  color: var(--color-navy-deep);
  background: #fff;
  flex-shrink: 0;
}
.menu-nav a:hover { background: var(--color-yellow); }

.menu-section { padding: clamp(50px, 7vw, 90px) 0; border-bottom: 1px dashed var(--color-line); }
.menu-section:last-of-type { border-bottom: 0; }
.menu-section__head { margin-bottom: 36px; }
.menu-section__head h2 { margin-bottom: 6px; }
.menu-section__head h2 .korean {
  color: var(--color-orange);
  font-size: 0.65em;
  font-weight: 700;
  margin-left: 10px;
  letter-spacing: -0.01em;
  vertical-align: 0.08em;
}
.menu-section__subtitle {
  display: block;
  font-weight: 700;
  color: var(--color-orange);
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 14px;
}
.menu-section__subtitle .korean {
  display: inline;
  margin: 0 8px 0 0;
  font-size: 1.15em;
  text-transform: none;
  letter-spacing: 0;
}
.menu-section__head p { max-width: 60ch; color: var(--color-ink-soft); margin: 0; }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.menu-item {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 10px rgba(20, 53, 66, 0.07), 0 1px 3px rgba(20, 53, 66, 0.05);
  transition: transform .15s ease, box-shadow .2s ease;
}
.menu-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(20, 53, 66, 0.12), 0 2px 6px rgba(20, 53, 66, 0.06);
}
.menu-item__photo {
  aspect-ratio: 4 / 3;
  position: relative;
  background: linear-gradient(135deg, var(--color-yellow) 0%, var(--color-orange) 100%);
  overflow: hidden;
}
.menu-item__photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.menu-item__photo::after {
  content: attr(data-photo);
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  text-align: center;
  font-family: var(--font-korean);
  font-weight: 800;
  font-size: clamp(1rem, 1.6vw, 1.4rem);
  color: rgba(31, 74, 92, 0.55);
  padding: 16px;
}
/* When a real image is dropped in, hide the placeholder text */
.menu-item__photo:has(img)::after { display: none; }
.menu-item__photo .new-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--color-orange);
  color: #fff;
  padding: 4px 10px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  z-index: 2;
}
.menu-item__photo .spicy-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #c43d1f;
  color: #fff;
  padding: 4px 10px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  box-shadow: 0 2px 6px rgba(196, 61, 31, 0.25);
}
.menu-item__body {
  padding: 18px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.menu-item__title {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: baseline;
}
.menu-item__title h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin: 0;
  color: var(--color-navy-deep);
}
.menu-item__title h3 .korean {
  color: var(--color-orange);
  font-size: 0.82em;
  font-weight: 700;
  margin-left: 5px;
  letter-spacing: -0.01em;
  display: inline-block;
  white-space: nowrap;
}
.menu-item__price {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--color-orange);
  white-space: nowrap;
}
.menu-item__desc {
  font-size: 0.92rem;
  color: var(--color-ink-soft);
  margin: 0;
}
.menu-item__sizes {
  font-size: 0.78rem;
  color: var(--color-ink-soft);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
}

/* ---------- About page: Google Reviews ---------- */
.reviews {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 22px;
  max-width: 1100px;
  margin: 0 auto;
}
.review-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 26px 28px;
  box-shadow: 0 2px 10px rgba(20, 53, 66, 0.07), 0 1px 3px rgba(20, 53, 66, 0.05);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow .2s ease, transform .15s ease;
}
.review-card:hover {
  box-shadow: 0 12px 28px rgba(20, 53, 66, 0.12), 0 2px 6px rgba(20, 53, 66, 0.06);
  transform: translateY(-2px);
}
.review-card__stars {
  color: #FBBC04;
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  line-height: 1;
}
.review-card__quote {
  flex: 1;
  margin: 0;
  font-size: 0.97rem;
  line-height: 1.6;
  color: var(--color-ink);
}
.review-card__author {
  border-top: 1px solid var(--color-line);
  padding-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.review-card__author strong {
  color: var(--color-navy-deep);
  font-weight: 700;
  font-size: 0.95rem;
}
.review-card__author span {
  color: var(--color-ink-soft);
  font-size: 0.82rem;
}
.reviews-summary {
  text-align: center;
  margin-bottom: 36px;
  font-size: 1.05rem;
  color: var(--color-ink-soft);
}
.reviews-summary strong { color: var(--color-orange); font-weight: 800; font-size: 1.1rem; }

/* ---------- About page prose + FAQ ---------- */
.prose {
  max-width: 68ch;
  margin: 0 auto;
}
.prose p {
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 1.25em;
  color: var(--color-ink);
}
.prose p:last-child { margin-bottom: 0; }

.faq {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.faq__item {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 28px 32px;
  box-shadow: 0 2px 10px rgba(20, 53, 66, 0.07), 0 1px 3px rgba(20, 53, 66, 0.05);
  transition: box-shadow .2s ease, transform .15s ease;
}
.faq__item:hover {
  box-shadow: 0 12px 28px rgba(20, 53, 66, 0.12), 0 2px 6px rgba(20, 53, 66, 0.06);
  transform: translateY(-2px);
}
.faq__item h3 {
  font-size: 1.15rem;
  margin: 0 0 10px;
  color: var(--color-navy-deep);
  letter-spacing: -0.01em;
}
.faq__item p {
  margin: 0;
  color: var(--color-ink-soft);
  line-height: 1.65;
  font-size: 0.98rem;
}

/* ---------- About page extras ---------- */
.about-hero {
  background: var(--color-yellow);
  padding: clamp(70px, 9vw, 120px) 0;
  text-align: center;
}
.about-hero h1 { color: var(--color-navy-deep); }
.about-hero p { max-width: 60ch; margin: 0 auto; font-size: 1.1rem; }

.about-body {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 56px;
  align-items: start;
}
.about-body p { font-size: 1.05rem; }
.about-quote {
  background: var(--color-navy);
  color: var(--color-cream);
  padding: clamp(50px, 7vw, 90px) 0;
  text-align: center;
}
.about-quote blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.2;
  color: var(--color-yellow);
  max-width: 22ch;
  margin: 0 auto 16px;
}
.about-quote cite {
  font-style: normal;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: var(--color-orange);
  font-weight: 700;
}

/* =========================================================
   SPLASH / INTRO PAGE (homepage)
   Banner image on top, then a relative-positioned wrap holding the
   main image + the Order Now CTA overlaid right under the
   "+can drink" text.
   ========================================================= */
.splash {
  position: relative;
  background: #ffffff;
}
.splash__banner,
.splash__main {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
}
.splash__main-wrap {
  position: relative;
  line-height: 0; /* prevents extra whitespace below the image */
}
.splash__cta {
  position: absolute;
  /* Tweak --cta-left and --cta-bottom in HTML to nudge the button.
     --cta-left: 50% = centered. Lower values = move left. Higher values = move right.
     --cta-bottom: distance from the bottom edge of the image. */
  left: var(--cta-left, 50%);
  bottom: var(--cta-bottom, 15%);
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  justify-content: center;
}
.splash__cta .btn {
  padding: 22px 80px;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  box-shadow: 0 10px 28px rgba(20, 53, 66, 0.35);
}
/* Blue button used on the splash CTA */
.btn--blue {
  background: var(--color-navy);
  color: #ffffff;
  border-color: var(--color-navy);
}
.btn--blue:hover {
  background: var(--color-navy-deep);
}

@media (max-width: 600px) {
  .splash__cta .btn {
    padding: 14px 36px;
    font-size: 0.95rem;
  }
}

/* ---------- Responsive ---------- */
@media (max-width: 880px) {
  .hero__grid { grid-template-columns: 1fr; gap: 36px; }
  .hero__visual { max-width: 420px; margin: 0 auto; }
  .story { grid-template-columns: 1fr; gap: 36px; }
  .about-body { grid-template-columns: 1fr; gap: 28px; }
  .visit { grid-template-columns: 1fr; }
  .site-footer__grid { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 720px) {
  .nav { display: none; }
  .nav.is-open {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--color-bg);
    border-bottom: 2px solid var(--color-navy);
    padding: 16px 24px 20px;
  }
  .nav.is-open a { padding: 10px 0; border-bottom: 1px solid var(--color-line); }
  .nav.is-open .btn {
    margin-top: 8px;
    align-self: flex-start;
  }
  .nav-toggle { display: inline-flex; align-items: center; gap: 6px; }
  .menu-nav { top: 64px; }
  .splash__platforms { grid-template-columns: 1fr 1fr; }

  /* ---- Mobile splash: make images bigger + center CTA ---- */
  .splash__banner {
    height: 240px;
    object-fit: cover;
    object-position: center;
  }
  .splash__main {
    min-height: 460px;
    object-fit: cover;
    object-position: center;
  }
  /* Override the desktop --cta-left/--cta-bottom values on mobile so the
     Order Now button sits right below the "+can drink" text on the mobile
     splash image. Adjust --cta-bottom-mobile inline in index.html to nudge
     up (higher %) or down (lower %). */
  .splash__main-wrap {
    --cta-left: var(--cta-left-mobile, 50%) !important;
    --cta-bottom: var(--cta-bottom-mobile, 38%) !important;
  }
  .splash__cta .btn {
    padding: 16px 44px;
    font-size: 1rem;
  }

  /* ---- Mobile footer: aggressively compact so it doesn't dominate the screen ---- */
  .site-footer { padding: 24px 0 14px; }
  .site-footer__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 20px;
    margin-bottom: 16px;
  }
  /* Brand block spans both columns at the top, logo + tagline inline */
  .site-footer__grid > div:first-child { grid-column: 1 / -1; }
  .site-footer .brand__logo { height: 44px; margin: 0; }
  .site-footer__grid > div:first-child p {
    font-size: 0.88rem; max-width: 22ch;
  }
  .site-footer h4 { font-size: 0.95rem; margin-bottom: 6px; }
  .site-footer ul li {
    margin-bottom: 4px;
    font-size: 0.86rem;
    line-height: 1.45;
  }
  .site-footer__bottom {
    padding-top: 12px;
    font-size: 0.72rem;
    flex-direction: column;
    text-align: center;
    gap: 4px;
  }
}

@media (max-width: 480px) {
  .splash__platforms { grid-template-columns: 1fr; }
  .splash__banner { height: 200px; }
  .splash__main { min-height: 400px; }
  .splash__cta .btn { padding: 14px 36px; font-size: 0.95rem; }
  .site-footer { padding: 20px 0 12px; }
  .site-footer__grid { gap: 14px 16px; margin-bottom: 12px; }
  .site-footer .brand__logo { height: 40px; }
  .site-footer h4 { font-size: 0.9rem; margin-bottom: 4px; }
  .site-footer ul li { font-size: 0.82rem; margin-bottom: 3px; }
  .site-footer__bottom { font-size: 0.68rem; padding-top: 10px; }
}
