:root {
  --wine: #681213;
  --wine-dark: #3f090b;
  --wine-deep: #260405;
  --wine-light: #8f282b;
  --cream: #fff8ee;
  --cream-soft: #fbf2e7;
  --cream-dark: #f2e8da;
  --coffee: #342018;
  --ink: #241713;
  --muted: #75665f;
  --caramel: #c79868;
  --white: #ffffff;
  --shadow: 0 24px 64px rgba(48, 24, 17, 0.14);
  --radius: 24px;
  --container: 1180px;
  --header-height: 84px;
  --font-body: "Be Vietnam Pro", "Segoe UI", Arial, sans-serif;
  --font-heading: "Lora", "Times New Roman", Georgia, serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 18px); }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.72;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { color: inherit; }
:focus-visible { outline: 3px solid var(--caramel); outline-offset: 4px; }

.container { width: min(var(--container), calc(100% - 40px)); margin-inline: auto; }
.section { padding: 104px 0; }
section[id] { scroll-margin-top: calc(var(--header-height) + 18px); }

.skip-link {
  position: fixed;
  top: -80px;
  left: 20px;
  z-index: 9999;
  padding: 12px 18px;
  color: var(--white);
  background: var(--wine);
  border-radius: 8px;
}
.skip-link:focus { top: 20px; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  min-height: var(--header-height);
  padding: 14px 0;
  transition: background .3s ease, padding .3s ease, box-shadow .3s ease;
}
.site-header.scrolled {
  padding: 9px 0;
  background: rgba(63, 9, 11, .96);
  box-shadow: 0 10px 30px rgba(0,0,0,.18);
  backdrop-filter: blur(18px);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { flex: 0 0 auto; }
.brand img { width: 205px; height: auto; }
.main-nav { display: flex; align-items: center; gap: 26px; color: var(--white); font-size: .91rem; font-weight: 700; }
.main-nav > a { position: relative; white-space: nowrap; }
.main-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 2px;
  background: var(--caramel);
  transition: right .25s ease;
}
.main-nav > a:hover::after { right: 0; }
.nav-cta { padding: 10px 18px; border: 1px solid rgba(255,255,255,.55); border-radius: 999px; transition: .25s ease; }
.nav-cta:hover { color: var(--wine); background: var(--white); border-color: var(--white); }
.nav-toggle { display: none; width: 46px; height: 46px; padding: 10px; border: 0; border-radius: 50%; background: rgba(255,255,255,.1); cursor: pointer; }
.nav-toggle span { display: block; width: 100%; height: 2px; margin: 5px 0; background: var(--white); transition: .25s ease; }

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  color: var(--white);
  background: url("../images/hero.webp") center 43% / cover no-repeat;
  isolation: isolate;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(42,8,9,.94) 0%, rgba(63,9,11,.78) 44%, rgba(31,17,12,.31) 100%),
    linear-gradient(180deg, rgba(0,0,0,.10), rgba(0,0,0,.48));
}
.hero-content {
  width: min(var(--container), calc(100% - 40px));
  padding-top: calc(var(--header-height) + 56px);
  padding-bottom: 76px;
}
.eyebrow { margin: 0 0 14px; color: #ead3b9; font-size: .79rem; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; }
.hero-logo { width: min(390px, 72vw); margin-bottom: 18px; }
.hero h1,
h2,
.experience-card-content h3,
.map-card-overlay strong,
.floating-note {
  font-family: var(--font-heading);
  font-synthesis: none;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}
.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.65rem, 5.15vw, 4.65rem);
  font-weight: 600;
  line-height: 1.13;
  letter-spacing: 0;
  text-wrap: balance;
}
.hero-description { max-width: 650px; margin: 22px 0 0; color: rgba(255,255,255,.86); font-size: clamp(.98rem, 1.45vw, 1.1rem); }
.hero-actions, .menu-actions, .visit-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin-top: 28px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 0 23px; border: 1px solid transparent; border-radius: 999px; font-size: .91rem; font-weight: 800; transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--white); background: var(--wine); box-shadow: 0 14px 32px rgba(104,18,19,.28); }
.hero .button-primary { color: var(--wine); background: var(--white); box-shadow: none; }
.button-primary:hover { background: var(--wine-light); }
.hero .button-primary:hover { background: var(--cream-dark); }
.button-ghost { color: var(--white); border-color: rgba(255,255,255,.6); background: rgba(255,255,255,.08); backdrop-filter: blur(8px); }
.button-ghost:hover { background: rgba(255,255,255,.18); }
.button-outline-dark { color: var(--wine); border-color: rgba(104,18,19,.35); }
.button-outline-dark:hover { color: var(--white); background: var(--wine); border-color: var(--wine); }
.hero-meta { display: flex; flex-wrap: wrap; gap: 26px; margin-top: 25px; color: rgba(255,255,255,.78); font-size: .86rem; }
.hero-meta span { display: flex; align-items: center; gap: 10px; }
.hero-meta span::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--caramel); }
.scroll-cue { position: absolute; left: 50%; bottom: 24px; width: 32px; height: 50px; border: 1px solid rgba(255,255,255,.55); border-radius: 999px; transform: translateX(-50%); }
.scroll-cue span { position: absolute; top: 9px; left: 50%; width: 5px; height: 8px; border-radius: 99px; background: var(--white); transform: translateX(-50%); animation: scrollCue 1.8s infinite; }
@keyframes scrollCue { 0% { opacity: 0; transform: translate(-50%,0); } 40% { opacity: 1; } 100% { opacity: 0; transform: translate(-50%,18px); } }

.split-layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr); gap: clamp(48px, 6vw, 80px); align-items: center; }
.split-layout-reverse { grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); }
.section-kicker { margin: 0 0 15px; color: var(--wine); font-size: .76rem; font-weight: 850; letter-spacing: .18em; text-transform: uppercase; }
h2 {
  margin: 0;
  max-width: 100%;
  font-size: clamp(2.25rem, 4vw, 3.75rem);
  font-weight: 600;
  line-height: 1.16;
  letter-spacing: 0;
  text-wrap: balance;
}
.story-copy h2,
.craft-copy h2,
.visit-copy h2 { font-size: clamp(2.2rem, 3.6vw, 3.45rem); }
.story-copy > p:not(.section-kicker), .craft-copy > p:not(.section-kicker) { max-width: 600px; color: var(--muted); }
.story-highlights { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; margin-top: 36px; }
.story-highlights div { min-width: 0; padding-top: 17px; border-top: 1px solid rgba(104,18,19,.18); }
.story-highlights strong, .story-highlights span { display: block; }
.story-highlights strong { color: var(--wine); font-family: var(--font-heading); font-size: 1.28rem; }
.story-highlights span { color: var(--muted); font-size: .8rem; }
.story-visual { display: grid; gap: 18px; min-width: 0; }
.story-visual img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.floating-note {
  position: static;
  max-width: none;
  padding: 18px 22px;
  color: var(--wine);
  background: var(--cream-dark);
  border-left: 4px solid var(--wine);
  border-radius: 14px;
  font-size: 1.02rem;
  font-weight: 600;
  box-shadow: none;
}

.section-dark { color: var(--white); background: var(--wine-dark); }
.section-dark .section-kicker { color: #e1b88e; }
.section-heading { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); gap: clamp(40px, 6vw, 80px); align-items: end; margin-bottom: 48px; }
.section-heading > p { margin: 0; color: var(--muted); }
.section-dark .section-heading > p { color: rgba(255,255,255,.72); }
.experience-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); gap: 24px; align-items: start; }
.experience-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  background: #541011;
  box-shadow: 0 18px 42px rgba(23, 3, 4, .22);
}
.experience-card-large { grid-row: span 2; }
.experience-card img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; transition: transform .65s cubic-bezier(.2,.7,.2,1); }
.experience-card-large img { aspect-ratio: 4 / 5; }
.experience-card:hover img { transform: scale(1.025); }
.experience-card-content { position: static; padding: 24px 26px 27px; }
.experience-card-content > span { color: #e4b68a; font-size: .73rem; font-weight: 700; letter-spacing: .18em; }
.experience-card-content h3 { margin: 7px 0 9px; font-size: 1.48rem; font-weight: 600; line-height: 1.3; }
.experience-card-content p { margin: 0; color: rgba(255,255,255,.72); }

.craft { background: #f7eee3; }
.craft-gallery { position: relative; min-height: 630px; }
.craft-image { position: absolute; overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow); }
.craft-image img { width: 100%; height: 100%; object-fit: cover; }
.craft-image-main { inset: 0 18% 12% 0; }
.craft-image-secondary { right: 0; bottom: 0; width: 47%; height: 46%; border: 10px solid #f7eee3; }
.feature-list { margin: 32px 0 0; padding: 0; list-style: none; }
.feature-list li { display: grid; grid-template-columns: 46px minmax(0, 1fr); gap: 18px; padding: 18px 0; border-bottom: 1px solid rgba(104,18,19,.14); }
.feature-list li > span { display: grid; place-items: center; width: 38px; height: 38px; color: var(--wine); border: 1px solid rgba(104,18,19,.28); border-radius: 50%; font-size: .75rem; font-weight: 800; }
.feature-list strong, .feature-list small { display: block; }
.feature-list strong { font-size: .98rem; }
.feature-list small { margin-top: 4px; color: var(--muted); font-size: .87rem; line-height: 1.6; }

.menu-preview { padding-top: 0; background: #f7eee3; }
.menu-panel { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, .9fr); overflow: hidden; border-radius: 30px; background: var(--cream); box-shadow: var(--shadow); }
.menu-copy { padding: clamp(40px, 6vw, 76px); }
.menu-copy p:not(.section-kicker) { color: var(--muted); }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--wine); font-weight: 800; }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }
.menu-visual { display: grid; grid-template-rows: minmax(380px, 1fr) auto; background: var(--wine-dark); }
.menu-visual img { width: 100%; height: 100%; min-height: 380px; object-fit: cover; }
.menu-badge { position: static; padding: 15px 22px; color: var(--white); background: var(--wine-dark); font-size: .77rem; font-weight: 850; letter-spacing: .08em; text-align: center; text-transform: uppercase; }

/* Menu chính thức Hai Linh Coffee */
.menu-panel-official {
  grid-template-columns: 1fr;
}

.menu-copy-official {
  max-width: 920px;
}

.menu-visual-official {
  display: block;
  background: #f1dfd1;
}

.menu-image-button {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: #f1dfd1;
  cursor: zoom-in;
}

.menu-visual-official .menu-image-button img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 0;
  object-fit: contain;
  transition:
    transform 0.45s ease,
    opacity 0.45s ease;
}

.menu-image-button:hover img {
  transform: scale(1.012);
  opacity: 0.96;
}

.menu-zoom-hint {
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 10px 14px;
  color: var(--white);
  background: rgba(66, 8, 10, 0.88);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  box-shadow: 0 10px 30px rgba(34, 5, 6, 0.22);
}

.gallery-section { background: var(--cream); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); grid-auto-rows: 230px; gap: 14px; }
.gallery-item { position: relative; overflow: hidden; padding: 0; border: 0; border-radius: 16px; background: var(--coffee); cursor: zoom-in; }
.gallery-item-wide { grid-column: span 2; }
.gallery-item-tall { grid-row: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease, opacity .5s ease; }
.gallery-item::after { content: "+"; position: absolute; right: 16px; bottom: 14px; display: grid; place-items: center; width: 38px; height: 38px; color: var(--wine); background: rgba(255,255,255,.9); border-radius: 50%; font-size: 1.25rem; opacity: 0; transform: translateY(8px); transition: .3s ease; }
.gallery-item:hover img { transform: scale(1.05); opacity: .86; }
.gallery-item:hover::after { opacity: 1; transform: none; }

.visit-section { color: var(--white); background: var(--wine); }
.visit-section .section-kicker { color: #e4ba92; }
.visit-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(48px, 6vw, 72px); align-items: center; }
.visit-copy > p:not(.section-kicker) { color: rgba(255,255,255,.76); }
.contact-list { margin: 32px 0 0; }
.contact-list div { display: grid; grid-template-columns: 140px minmax(0, 1fr); gap: 20px; padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,.16); }
.contact-list dt { color: rgba(255,255,255,.60); }
.contact-list dd { margin: 0; font-weight: 750; }
.visit-section .button-primary { color: var(--wine); background: var(--white); }
.visit-section .button-outline-dark { color: var(--white); border-color: rgba(255,255,255,.38); }
.visit-section .button-outline-dark:hover { color: var(--wine); background: var(--white); }
.map-card {
  display: grid;
  grid-template-rows: minmax(390px, auto) auto;
  overflow: hidden;
  color: var(--white);
  background: var(--wine-deep);
  border-radius: var(--radius);
  box-shadow: 0 28px 70px rgba(35,4,5,.32);
}
.map-card img { width: 100%; height: 100%; min-height: 390px; object-fit: cover; transition: transform .6s ease; }
.map-card:hover img { transform: scale(1.025); }
.map-card-overlay { position: static; display: grid; grid-template-columns: 54px 1fr; column-gap: 18px; align-items: center; padding: 24px 28px 26px; }
.map-card-overlay strong, .map-card-overlay span { display: block; grid-column: 2; }
.map-card-overlay strong { margin: 0; font-size: 1.7rem; font-weight: 600; line-height: 1.25; }
.map-card-overlay span { color: rgba(255,255,255,.72); }
.map-pin { grid-row: 1 / span 2; display: grid; place-items: center; width: 54px; height: 54px; color: var(--wine); background: var(--white); border-radius: 50%; font-size: 1.7rem; }

.site-footer { padding: 68px 0 24px; color: var(--white); background: var(--wine-deep); }
.footer-grid { display: grid; grid-template-columns: 1.6fr .8fr .8fr; gap: 58px; }
.footer-brand img { width: 245px; }
.footer-brand p { max-width: 380px; color: rgba(255,255,255,.58); }
.footer-grid h3 { margin: 0 0 18px; color: #dcb58e; font-size: .78rem; letter-spacing: .15em; text-transform: uppercase; }
.footer-grid > div:not(.footer-brand) { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; color: rgba(255,255,255,.68); }
.footer-grid a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 52px; padding-top: 21px; color: rgba(255,255,255,.48); border-top: 1px solid rgba(255,255,255,.1); font-size: .81rem; }

.floating-contact { position: fixed; right: 18px; bottom: 20px; z-index: 900; display: flex; flex-direction: column; gap: 10px; }
.floating-button { display: flex; align-items: center; justify-content: center; width: 52px; height: 52px; color: var(--white); background: var(--wine); border: 2px solid rgba(255,255,255,.78); border-radius: 50%; box-shadow: 0 10px 30px rgba(42,4,5,.3); font-size: .72rem; font-weight: 850; transition: transform .2s ease, background .2s ease; }
.floating-button:hover { transform: translateY(-3px); background: var(--wine-light); }
.floating-symbol { display: inline-grid; place-items: center; line-height: 1; }
.floating-symbol-zalo { font-size: .82rem; }
.floating-text { display: none; }

.lightbox { position: fixed; inset: 0; z-index: 3000; display: grid; place-items: center; padding: 40px; background: rgba(19,4,4,.94); }
.lightbox[hidden] { display: none; }
.lightbox img { max-width: min(1200px, 92vw); max-height: 86vh; border-radius: 12px; box-shadow: 0 30px 80px rgba(0,0,0,.45); }
.lightbox-close { position: fixed; top: 18px; right: 22px; width: 46px; height: 46px; color: var(--white); background: rgba(255,255,255,.1); border: 0; border-radius: 50%; font-size: 2rem; cursor: pointer; }

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



/* V1.2 — Expanded visual storytelling */
.space-mosaic {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}
.space-mosaic-card,
.craft-detail-card {
  min-width: 0;
  margin: 0;
}
.space-mosaic-card button,
.moment-card button,
.craft-detail-card button,
.menu-drink-grid button {
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}
.space-mosaic-card button {
  border-radius: 16px;
  background: #2c0809;
}
.space-mosaic-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform .55s ease, opacity .55s ease;
}
.space-mosaic-card button:hover img {
  transform: scale(1.035);
  opacity: .9;
}
.space-mosaic-card figcaption {
  display: grid;
  gap: 3px;
  padding: 15px 2px 0;
}
.space-mosaic-card strong {
  color: var(--white);
  font-size: .94rem;
}
.space-mosaic-card span {
  color: rgba(255,255,255,.62);
  font-size: .8rem;
  line-height: 1.55;
}

.moments-section { background: var(--cream-soft); }
.moments-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.moment-card {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(220px, .92fr);
  min-width: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(104,18,19,.08);
  border-radius: var(--radius);
  box-shadow: 0 16px 42px rgba(48,24,17,.09);
}
.moment-card button { min-height: 280px; }
.moment-card img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  transition: transform .55s ease;
}
.moment-card button:hover img { transform: scale(1.035); }
.moment-card > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px 28px;
}
.moment-card h3 {
  margin: 0 0 10px;
  color: var(--wine);
  font-family: var(--font-heading);
  font-size: 1.36rem;
  font-weight: 600;
  line-height: 1.3;
}
.moment-card p {
  margin: 0;
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.65;
}

.craft-detail-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 56px;
}
.craft-detail-card {
  overflow: hidden;
  background: var(--cream);
  border: 1px solid rgba(104,18,19,.09);
  border-radius: 18px;
}
.craft-detail-card button { background: var(--coffee); }
.craft-detail-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform .55s ease, opacity .55s ease;
}
.craft-detail-card button:hover img {
  transform: scale(1.04);
  opacity: .9;
}
.craft-detail-card figcaption {
  padding: 16px 18px 18px;
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.55;
}

.menu-drink-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, .75fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 8px;
  min-height: 520px;
  padding: 8px;
  background: var(--wine-dark);
}
.menu-drink-main { grid-row: span 2; }
.menu-drink-grid button { min-height: 0; border-radius: 12px; }
.menu-drink-grid img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  transition: transform .55s ease, opacity .55s ease;
}
.menu-drink-grid button:hover img {
  transform: scale(1.035);
  opacity: .9;
}

.gallery-extra { display: none; }
.gallery-grid.is-expanded .gallery-extra {
  display: block;
  opacity: 1;
  transform: none;
}
.gallery-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 34px;
  text-align: center;
}
.gallery-actions p {
  margin: 0;
  color: var(--muted);
  font-size: .78rem;
}
.gallery-toggle { min-width: 174px; gap: 8px; cursor: pointer; }
.gallery-toggle span:last-child { font-size: 1.05rem; transition: transform .25s ease; }
.gallery-toggle[aria-expanded="true"] span:last-child { transform: rotate(45deg); }

@media (max-width: 1100px) {
  .main-nav { gap: 20px; font-size: .88rem; }
  .brand img { width: 188px; }
  .split-layout { gap: 52px; }
}

@media (max-width: 980px) {
  :root { --header-height: 76px; }
  .section { padding: 84px 0; }
  .nav-toggle { display: block; }
  .main-nav { position: fixed; inset: 0; z-index: -1; display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 26px; visibility: hidden; opacity: 0; background: rgba(63,9,11,.985); font-size: 1.15rem; transition: .3s ease; }
  .main-nav.is-open { z-index: 1; visibility: visible; opacity: 1; }
  .nav-toggle { position: relative; z-index: 2; }
  .nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.is-open span:nth-child(2) { opacity: 0; }
  .nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .split-layout, .split-layout-reverse, .visit-grid { grid-template-columns: 1fr; gap: 50px; }
  .story-copy h2, .craft-copy h2, .visit-copy h2 { max-width: 760px; }
  .story-visual { max-width: 760px; }
  .story-visual img { aspect-ratio: 16 / 10; }
  .section-heading { grid-template-columns: 1fr; gap: 20px; }
  .experience-grid { grid-template-columns: 1fr 1fr; }
  .experience-card-large { grid-column: span 2; grid-row: auto; }
  .experience-card-large img { aspect-ratio: 16 / 8; }
  .craft-gallery { min-height: 570px; order: 2; }
  .menu-panel { grid-template-columns: 1fr; }
  .menu-visual { grid-template-rows: minmax(420px, auto) auto; }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .map-card { max-width: 760px; }
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; gap: 32px; }
  .space-mosaic { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .moments-grid { grid-template-columns: 1fr; }
  .moment-card { grid-template-columns: minmax(0, 1.2fr) minmax(240px, .8fr); }
  .craft-detail-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .menu-drink-grid { min-height: 500px; }
}

@media (max-width: 680px) {
  .container, .hero-content { width: min(100% - 28px, var(--container)); }
  .section { padding: 68px 0; }
  .brand img { width: 155px; }
  .hero { min-height: auto; background-position: 61% center; }
  .hero-content { padding-top: 124px; padding-bottom: 76px; }
  .hero-logo { width: 290px; }
  .hero h1 { font-size: clamp(2.35rem, 11vw, 3.45rem); line-height: 1.15; }
  .hero-description { font-size: .95rem; }
  .hero-actions .button { width: 100%; }
  .hero-meta { flex-direction: column; gap: 7px; }
  .scroll-cue { display: none; }
  h2, .story-copy h2, .craft-copy h2, .visit-copy h2 { font-size: clamp(2rem, 9.6vw, 2.85rem); line-height: 1.18; }
  .story-highlights { grid-template-columns: 1fr; }
  .story-highlights div { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
  .story-visual img { aspect-ratio: 4 / 5; }
  .experience-grid { grid-template-columns: 1fr; }
  .experience-card-large { grid-column: auto; }
  .experience-card img, .experience-card-large img { aspect-ratio: 16 / 11; }
  .experience-card-content { padding: 21px 22px 24px; }
  .craft-gallery { min-height: 480px; }
  .craft-image-main { inset: 0 8% 12% 0; }
  .craft-image-secondary { width: 54%; height: 40%; }
  .menu-copy { padding: 38px 24px; }
  .menu-visual { grid-template-rows: minmax(320px, auto) auto; }
  .menu-visual img { min-height: 320px; }
  .menu-actions .button, .visit-actions .button { width: 100%; }

.menu-zoom-hint {
  right: 10px;
  bottom: 10px;
  padding: 8px 11px;
  font-size: 0.68rem;
}

  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 175px; gap: 8px; }
  .gallery-item-wide { grid-column: span 2; }
  .gallery-item-tall { grid-row: span 1; }
  .contact-list div { grid-template-columns: 1fr; gap: 3px; }
  .map-card { grid-template-rows: minmax(320px, auto) auto; }
  .map-card img { min-height: 320px; }
  .map-card-overlay { grid-template-columns: 46px 1fr; padding: 20px 20px 22px; }
  .map-pin { width: 46px; height: 46px; font-size: 1.4rem; }
  .map-card-overlay strong { font-size: 1.4rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .floating-contact { left: 12px; right: 12px; bottom: 10px; flex-direction: row; gap: 10px; }
  .floating-button { flex: 1 1 0; width: auto; height: 48px; gap: 8px; border-radius: 999px; }
  .floating-text { display: inline; }
  body { padding-bottom: 68px; }
  .space-mosaic { grid-template-columns: 1fr 1fr; gap: 12px; }
  .space-mosaic-card figcaption { padding-top: 11px; }
  .space-mosaic-card strong { font-size: .86rem; }
  .space-mosaic-card span { font-size: .74rem; }
  .moment-card { grid-template-columns: 1fr; }
  .moment-card button,
  .moment-card img { min-height: 230px; }
  .moment-card > div { padding: 23px 22px 26px; }
  .craft-detail-grid { grid-template-columns: 1fr; margin-top: 38px; }
  .menu-drink-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 260px 165px;
    min-height: 0;
  }
  .menu-drink-main { grid-column: span 2; grid-row: auto; }
  .menu-drink-grid img { min-height: 0; }
  .gallery-actions { margin-top: 26px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
