/* ==========================================================================
   DalDal · Korean Dessert + BYO Ramen Bar
   Design system: "Soft Modern Seoul"
   ========================================================================== */

:root {
  /* Palette */
  --cream: #FFF6EE;
  --cream-deep: #F8EBDC;
  --blush: #F5C9C0;
  --blush-soft: #FBE0D8;
  --rose: #E89B95;
  --berry: #C73E4F;          /* Korean persimmon red */
  --berry-deep: #8E2535;
  --matcha: #8FA984;
  --matcha-deep: #5A6E51;
  --gold: #C8924B;
  --ink: #2A1F1A;            /* warm near-black */
  --ink-soft: #5C4A3F;
  --line: #E8D9C8;

  /* Typography */
  --font-display: 'Fraunces', 'Georgia', serif;
  --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-kr: 'Gowun Dodum', 'Noto Sans KR', sans-serif;

  /* Layout */
  --container: 1280px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
}

/* ==========================================================================
   Reset & Base
   ========================================================================== */

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
  font-size: clamp(15px, 1.05vw, 17px);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
em { font-style: italic; color: var(--berry); }
ul, ol { list-style: none; }

/* Section common */
.section__eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--berry);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}
.section__eyebrow::before {
  content: ''; width: 28px; height: 1px; background: var(--berry);
}

.section__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.25rem, 5vw, 4.25rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-variation-settings: 'opsz' 100;
  color: var(--ink);
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.95rem 1.6rem;
  border-radius: 999px;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
  border: none;
  text-decoration: none;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn--primary {
  background: var(--berry);
  color: var(--cream);
  box-shadow: 0 4px 18px -4px rgba(199, 62, 79, 0.5);
}
.btn--primary:hover { background: var(--berry-deep); box-shadow: 0 8px 24px -4px rgba(199, 62, 79, 0.6); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: var(--cream); }

.btn--outline {
  background: transparent;
  color: var(--berry);
  border: 1.5px solid var(--berry);
}
.btn--outline:hover { background: var(--berry); color: var(--cream); }

/* ==========================================================================
   Nav
   ========================================================================== */

.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 246, 238, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  padding: 1rem var(--gutter);
  display: flex; align-items: center; gap: 2rem;
}

.nav__logo {
  display: flex; align-items: baseline; gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: -0.02em;
}
.nav__logo-kr { font-family: var(--font-kr); font-size: 1.2rem; color: var(--berry); }

.nav__links {
  display: flex; gap: 2rem;
  margin-left: auto;
}
.nav__links a {
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 0.5rem 0;
  transition: color 0.2s ease;
}
.nav__links a::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 0; height: 2px; background: var(--berry);
  transition: width 0.3s ease;
}
.nav__links a:hover { color: var(--berry); }
.nav__links a:hover::after { width: 100%; }

.nav__cta {
  background: var(--ink);
  color: var(--cream);
  padding: 0.65rem 1.3rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.25s ease, transform 0.25s ease;
}
.nav__cta:hover { background: var(--berry); transform: translateY(-1px); }

.nav__toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav__toggle span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; transition: 0.3s; }

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  padding: clamp(3rem, 7vw, 6rem) 0 clamp(0rem, 2vw, 1rem);
  overflow: hidden;
}
.hero__bg-shape {
  position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.6; z-index: 0;
}
.hero__bg-shape--1 {
  width: 500px; height: 500px;
  background: var(--blush);
  top: -150px; right: -150px;
}
.hero__bg-shape--2 {
  width: 400px; height: 400px;
  background: var(--matcha);
  opacity: 0.25;
  bottom: -100px; left: -100px;
}

.hero__grid {
  position: relative; z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero__eyebrow {
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--berry);
  margin-bottom: 1.5rem;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 0.95;
  letter-spacing: -0.035em;
  font-variation-settings: 'opsz' 144;
  color: var(--ink);
  margin-bottom: 1.75rem;
}
.hero__title em {
  color: var(--berry);
  font-style: italic;
  font-weight: 400;
}

.hero__lede {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  color: var(--ink-soft);
  max-width: 540px;
  margin-bottom: 2.25rem;
  line-height: 1.6;
}
.hero__lede strong { color: var(--ink); font-weight: 700; }

.hero__cta-row {
  display: flex; gap: 1rem; flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero__meta {
  display: flex; align-items: center; gap: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}
.hero__meta div { display: flex; flex-direction: column; }
.hero__meta-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 600;
}
.hero__meta-value {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.05rem;
  margin-top: 0.25rem;
}
.hero__meta-divider {
  width: 1px; height: 32px; background: var(--line);
}

/* Hero visual */
.hero__visual {
  position: relative;
  aspect-ratio: 1 / 1.05;
}
.hero__photo {
  position: absolute; overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 30px 60px -20px rgba(42, 31, 26, 0.25);
}
.hero__photo img { width: 100%; height: 100%; object-fit: cover; }
.hero__photo--main {
  width: 78%; height: 75%;
  top: 0; right: 0;
  border-radius: 280px 24px 24px 24px;
}
.hero__photo--accent {
  width: 50%; height: 45%;
  bottom: 0; left: 0;
  border-radius: 24px 24px 24px 200px;
  border: 8px solid var(--cream);
}
.hero__photo-tag {
  position: absolute;
  bottom: 1.25rem; left: 1.25rem;
  background: var(--cream);
  color: var(--ink);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.hero__sticker {
  position: absolute;
  top: 50%; left: -2%;
  width: 130px; height: 130px;
  transform: translateY(-50%) rotate(-12deg);
  color: var(--berry);
  animation: spin 30s linear infinite;
  background: var(--cream);
  border-radius: 50%;
  z-index: 2;
}
@keyframes spin { to { transform: translateY(-50%) rotate(348deg); } }

/* Marquee */
.hero__marquee {
  margin-top: clamp(2rem, 5vw, 4rem);
  background: var(--ink);
  padding: 1.25rem 0;
  overflow: hidden;
  position: relative;
}
.hero__marquee-track {
  display: inline-flex; gap: 2rem;
  white-space: nowrap;
  animation: marquee 35s linear infinite;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--cream);
  font-weight: 400;
}
.hero__marquee-track span:nth-child(even) { color: var(--blush); font-style: normal; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ==========================================================================
   Story
   ========================================================================== */

.story { padding: clamp(4rem, 8vw, 7rem) 0; background: var(--cream); }
.story__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.story__hangul {
  font-family: var(--font-kr);
  color: var(--berry);
  font-weight: 400;
  display: inline-block;
  margin-right: 0.5rem;
}

.story__body {
  font-size: 1.1rem;
  color: var(--ink-soft);
  margin-top: 1.75rem;
  line-height: 1.7;
  max-width: 540px;
}

.story__signature {
  font-family: var(--font-display);
  font-style: italic;
  margin-top: 1.5rem;
  color: var(--berry);
  font-size: 1.05rem;
}

.story__pillars {
  display: flex; flex-direction: column; gap: 0;
  border-left: 1px solid var(--line);
}
.pillar {
  padding: 1.5rem 0 1.5rem 1.75rem;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.pillar:last-child { border-bottom: none; }
.pillar__num {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--berry);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 0.5rem;
}
.pillar h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.4rem;
  letter-spacing: -0.01em;
  margin-bottom: 0.4rem;
}
.pillar p { color: var(--ink-soft); font-size: 0.95rem; }

/* ==========================================================================
   Menu
   ========================================================================== */

.menu {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--cream-deep);
  position: relative;
}

.menu__header {
  max-width: var(--container);
  margin: 0 auto 3.5rem;
  padding: 0 var(--gutter);
  text-align: center;
}
.menu__header .section__eyebrow {
  justify-content: center;
}

.menu__grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.menu-card {
  background: var(--cream);
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s ease;
  border: 1px solid var(--line);
}
.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 50px -25px rgba(42, 31, 26, 0.2);
}
.menu-card--feature {
  grid-column: span 2;
  grid-row: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.menu-card--feature .menu-card__img { aspect-ratio: auto; }
.menu-card--feature .menu-card__body { padding: 2.5rem; }
.menu-card--dark { background: var(--ink); color: var(--cream); border: 1px solid var(--ink); }
.menu-card--dark .menu-card__body p { color: rgba(255, 246, 238, 0.75); }
.menu-card--dark .menu-card__tag { background: var(--berry); color: var(--cream); }
.menu-card--matcha { background: var(--matcha); color: var(--cream); border: 1px solid var(--matcha); }
.menu-card--matcha .menu-card__body p { color: rgba(255, 246, 238, 0.85); }
.menu-card--matcha .menu-card__tag { background: var(--cream); color: var(--matcha-deep); }

.menu-card__img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--blush-soft);
}
.menu-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.menu-card:hover .menu-card__img img { transform: scale(1.06); }

.menu-card__body {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.menu-card__tag {
  display: inline-block;
  align-self: flex-start;
  background: var(--berry);
  color: var(--cream);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}
.menu-card__tag--alt { background: var(--matcha); }

.menu-card h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.6rem;
  letter-spacing: -0.015em;
  margin-bottom: 0.6rem;
  display: flex; align-items: baseline; gap: 0.6rem; flex-wrap: wrap;
}
.menu-card__kr {
  font-family: var(--font-kr);
  font-size: 1rem;
  font-weight: 400;
  color: var(--rose);
}
.menu-card--dark .menu-card__kr { color: var(--blush); }
.menu-card--matcha .menu-card__kr { color: var(--cream); }

.menu-card p {
  color: var(--ink-soft);
  font-size: 0.97rem;
  line-height: 1.55;
}

.menu-card__items {
  margin-top: 1.5rem;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}
.menu-card__items li {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.55rem 0;
  font-size: 0.95rem;
  font-weight: 500;
}
.menu-card__items .dot {
  flex: 1;
  border-bottom: 1px dotted var(--line);
  margin: 0 0.5rem;
}

.menu__footnote {
  text-align: center;
  margin-top: 2.5rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
}
.menu__footnote a { color: var(--berry); font-weight: 600; border-bottom: 1px solid var(--berry); }

/* ==========================================================================
   Experience / Ramen Bar
   ========================================================================== */

.experience {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--ink);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.experience::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 90%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--berry), transparent);
}

.experience__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.experience .section__title { color: var(--cream); }
.experience .section__title em { color: var(--blush); }
.experience .section__eyebrow { color: var(--blush); }
.experience .section__eyebrow::before { background: var(--blush); }

.experience__visual {
  position: relative;
}
.experience__img-wrap {
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.5);
}
.experience__img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
}
.experience__badge {
  position: absolute;
  bottom: -25px; right: -25px;
  background: var(--berry);
  color: var(--cream);
  width: 160px; height: 160px;
  border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 1rem;
  box-shadow: 0 12px 30px -6px rgba(199, 62, 79, 0.5);
  font-weight: 600;
  border: 6px solid var(--ink);
}
.experience__badge-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  font-style: italic;
  line-height: 1;
}
.experience__badge-text {
  font-size: 0.78rem;
  margin-top: 0.4rem;
  letter-spacing: 0.05em;
}

.steps {
  margin: 2.5rem 0;
}
.steps li {
  display: flex; gap: 1.25rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(255, 246, 238, 0.12);
}
.steps li:last-child { border-bottom: none; }
.steps__num {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--berry);
  color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
}
.steps h4 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
  color: var(--cream);
}
.steps p { color: rgba(255, 246, 238, 0.7); font-size: 0.95rem; }

/* ==========================================================================
   Social Proof
   ========================================================================== */

.social {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--blush-soft);
}
.social__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  text-align: center;
}
.social__eyebrow { justify-content: center; }

.social__quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 3rem 0 2.5rem;
  text-align: left;
}

.quote {
  background: var(--cream);
  padding: 2rem;
  border-radius: 20px;
  position: relative;
  border: 1px solid var(--line);
}
.quote::before {
  content: '"';
  position: absolute;
  top: -15px; left: 1.5rem;
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--berry);
  font-weight: 700;
  line-height: 1;
}
.quote p {
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 1.5;
  color: var(--ink);
  font-weight: 400;
  margin-bottom: 1.25rem;
}
.quote em { color: var(--berry); font-style: italic; }
.quote cite {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-soft);
  font-style: normal;
  letter-spacing: 0.05em;
}

.social__cta-row {
  display: flex; align-items: center; justify-content: center;
  gap: 1.5rem; flex-wrap: wrap;
  margin-top: 1rem;
}
.social__cta-note {
  font-size: 0.9rem;
  color: var(--ink-soft);
}

/* ==========================================================================
   Visit
   ========================================================================== */

.visit {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--cream);
}
.visit__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: stretch;
}

.visit__details {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 1.5rem;
}
.visit__detail { padding: 1.25rem 0; border-top: 1px solid var(--line); }
.visit__label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: block;
}
.visit__detail p {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 1.4;
  color: var(--ink);
}
.visit__detail strong { color: var(--berry); font-weight: 600; }
.visit__detail a {
  display: inline-block;
}
.visit__detail p a:hover { color: var(--berry); text-decoration: underline; }

.visit__link {
  display: inline-block;
  margin-top: 0.6rem;
  color: var(--berry);
  font-weight: 600;
  font-size: 0.9rem;
  font-family: var(--font-body);
  border-bottom: 1px solid var(--berry);
  padding-bottom: 1px;
}

.visit__chip {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: var(--matcha);
  color: var(--cream);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  margin-top: 0.75rem;
}
.visit__chip::before {
  content: ''; width: 8px; height: 8px; border-radius: 50%;
  background: var(--cream);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.visit__cta-row {
  margin-top: 2.5rem;
  display: flex; gap: 1rem; flex-wrap: wrap;
}

.visit__map {
  background: var(--blush-soft);
  border-radius: 24px;
  overflow: hidden;
  min-height: 500px;
  border: 1px solid var(--line);
}
.visit__map iframe { width: 100%; height: 100%; min-height: 500px; }

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(3rem, 6vw, 5rem) 0 1.5rem;
}
.footer__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 246, 238, 0.12);
}

.footer__brand p {
  margin-top: 1rem;
  color: rgba(255, 246, 238, 0.7);
  font-size: 0.95rem;
  line-height: 1.6;
}
.footer__logo {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.6rem;
  display: block;
}

.footer__col h4 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1rem;
  font-style: italic;
  color: var(--blush);
  margin-bottom: 1rem;
}
.footer__col a {
  display: block;
  padding: 0.4rem 0;
  font-size: 0.95rem;
  color: rgba(255, 246, 238, 0.75);
  transition: color 0.2s ease;
}
.footer__col a:hover { color: var(--blush); }

.footer__bottom {
  max-width: var(--container);
  margin: 1.5rem auto 0;
  padding: 0 var(--gutter);
  font-size: 0.85rem;
  color: rgba(255, 246, 238, 0.5);
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 960px) {
  .hero__grid,
  .story__inner,
  .experience__inner,
  .visit__inner {
    grid-template-columns: 1fr;
  }
  .hero__visual { aspect-ratio: 1 / 1; max-width: 500px; margin: 0 auto; }
  .menu__grid { grid-template-columns: repeat(2, 1fr); }
  .menu-card--feature { grid-column: span 2; grid-template-columns: 1fr; }
  .social__quotes { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .visit__details { grid-template-columns: 1fr; }
  .visit__map { min-height: 350px; }
}

@media (max-width: 640px) {
  .nav__links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    padding: 1rem var(--gutter) 1.5rem;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 12px 24px -16px rgba(42, 31, 26, 0.15);
  }
  .nav__links.is-open { display: flex; }
  .nav__links a {
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
  }
  .nav__links a:last-child { border-bottom: none; }
  .nav__cta { display: none; }
  .nav__toggle { display: block; margin-left: auto; }
  .menu__grid { grid-template-columns: 1fr; }
  .menu-card--feature { grid-column: span 1; }
  .footer__inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero__sticker { width: 90px; height: 90px; }
  .hero__meta { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .hero__meta-divider { display: none; }
  .experience__badge { width: 120px; height: 120px; }
}

/* ==========================================================================
   Reveal animations on scroll
   ========================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
