/* ============================================================
   Manston Market & Café  —  Premium design system
   ============================================================ */

:root {
  /* Brand palette */
  --red:        #B31217;
  --red-deep:   #7E0D11;
  --red-rich:   #4F0709;
  --cream:      #FEFEFC;
  --cream-2:    #FAF7F0;
  --cream-warm: #FFFFFE;
  --brown:      #3A2418;
  --brown-soft: #5B4233;
  --brown-mute: #8B7160;
  --gold:       #D4A24C;
  --gold-soft:  #E8C588;
  --gold-deep:  #A87B2A;
  --ink:        #1A100A;
  --line:       rgba(58, 36, 24, .12);
  --line-light: rgba(247, 242, 234, .14);

  /* Type */
  --serif:  "Fraunces", "Playfair Display", Georgia, "Times New Roman", serif;
  --sans:   "Inter", "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --script: "Caveat", "Brush Script MT", cursive;

  /* Sizing */
  --container: 1240px;
  --radius-sm: 10px;
  --radius:    16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(58, 36, 24, .06);
  --shadow-sm: 0 6px 18px -8px rgba(58, 36, 24, .18), 0 2px 4px rgba(58, 36, 24, .04);
  --shadow:    0 18px 40px -20px rgba(58, 36, 24, .25), 0 6px 14px -8px rgba(58, 36, 24, .12);
  --shadow-lg: 0 30px 60px -28px rgba(58, 36, 24, .32), 0 10px 24px -14px rgba(58, 36, 24, .18);
  --shadow-red:0 30px 60px -28px rgba(126, 13, 17, .55);

  /* Motion */
  --ease: cubic-bezier(.2, .7, .2, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
}

/* ============================================================
   Base
   ============================================================ */

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--brown);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; transition: color .25s var(--ease); }
a:hover { color: var(--red); }

button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }

ul { list-style: none; padding: 0; margin: 0; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: clamp(20px, 4vw, 48px);
}

/* ============================================================
   Typography helpers
   ============================================================ */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--red);
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(179, 18, 23, .08);
}
.eyebrow--dark { color: var(--brown); background: rgba(58, 36, 24, .08); }
.eyebrow--gold {
  color: var(--gold-deep);
  background: rgba(212, 162, 76, .16);
  box-shadow: inset 0 0 0 1px rgba(212, 162, 76, .2);
}
/* On dark/red sections the gold eyebrow needs to flip — bright gold text on a darker red wash */
.section-head--light .eyebrow--gold {
  color: var(--gold-soft);
  background: rgba(40, 4, 6, .42);
  box-shadow: inset 0 0 0 1px rgba(212, 162, 76, .45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.eyebrow__dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 4px rgba(179, 18, 23, .12);
}

.h-display,
.display {
  font-family: var(--serif);
  font-weight: 800;
  color: var(--brown);
  letter-spacing: -0.02em;
  line-height: 1.02;
  margin: 0;
  font-variation-settings: "SOFT" 60, "WONK" 0, "opsz" 144;
}

.h-display {
  font-size: clamp(2.2rem, 4.6vw, 3.8rem);
  margin: 18px 0 18px;
}
.h-display em {
  font-family: var(--script);
  font-style: normal;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0;
  font-size: 1.05em;
  vertical-align: -0.04em;
  margin-left: .08em;
}
.h-display--light { color: var(--cream); }
.h-display--light em,
.section-head--light .h-display em {
  color: var(--gold-soft);
  text-shadow: 0 2px 14px rgba(40, 4, 6, .35);
}
.section-head--light .h-display {
  text-shadow: 0 2px 18px rgba(40, 4, 6, .35);
}

.display {
  font-size: clamp(2.8rem, 6.8vw, 5.6rem);
  font-weight: 800;
  font-variation-settings: "SOFT" 80, "WONK" 0, "opsz" 144;
}
.display__accent {
  font-family: var(--script);
  font-weight: 700;
  color: var(--red);
  font-style: normal;
  font-size: 1.15em;
  letter-spacing: 0;
  position: relative;
  white-space: nowrap;
  margin: 0 .04em;
  vertical-align: -0.06em;
}
.display__accent::after {
  content: "";
  position: absolute;
  left: 6%;
  right: 6%;
  bottom: 4px;
  height: 8px;
  background: linear-gradient(90deg, transparent, rgba(212, 162, 76, .7), transparent);
  border-radius: 8px;
  z-index: -1;
}
.display__soft {
  display: block;
  font-weight: 600;
  color: var(--brown-soft);
  font-variation-settings: "SOFT" 100, "opsz" 144;
}

.lede {
  font-size: 1.1rem;
  color: var(--brown-soft);
  margin: 0 0 18px;
  max-width: 56ch;
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.section-head__sub {
  color: var(--brown-soft);
  margin: 0;
  font-size: 1.05rem;
}
.section-head--light .h-display { color: var(--cream); }
.section-head--light .section-head__sub { color: rgba(247, 242, 234, .82); }

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

.btn {
  --bg: var(--red);
  --fg: var(--cream);
  --bd: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .01em;
  padding: 14px 26px;
  background: var(--bg);
  color: var(--fg);
  border: 1px solid var(--bd);
  border-radius: 14px;
  cursor: pointer;
  transition: transform .25s var(--ease), background .25s var(--ease),
              color .25s var(--ease), box-shadow .35s var(--ease),
              border-color .25s var(--ease);
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn:active { transform: translateY(0); }

.btn--pill { border-radius: 999px; padding: 11px 20px; }
.btn--lg   { padding: 17px 30px; font-size: 16px; }
.btn--full { width: 100%; }

.btn--primary { --bg: var(--red); --fg: var(--cream); }
.btn--primary:hover {
  --bg: var(--gold);
  --fg: #2A1A11;
  color: #2A1A11;
}

.btn--ghost {
  --bg: transparent;
  --fg: var(--brown);
  --bd: rgba(58, 36, 24, .22);
  box-shadow: none;
  backdrop-filter: blur(6px);
}
.btn--ghost:hover {
  --bg: rgba(58, 36, 24, .06);
  --bd: rgba(58, 36, 24, .35);
}

.btn--ghost-light {
  --fg: var(--cream);
  --bd: rgba(247, 242, 234, .35);
}
.btn--ghost-light:hover {
  --bg: rgba(247, 242, 234, .1);
  --bd: rgba(247, 242, 234, .6);
}

.btn--gold {
  --bg: var(--gold);
  --fg: #2A1A11;
}
.btn--gold:hover { --bg: var(--cream); --fg: var(--red); }

.btn--text {
  background: transparent;
  color: var(--red);
  padding: 12px 4px;
  box-shadow: none;
  border-radius: 4px;
}
.btn--text:hover { color: var(--gold-deep); transform: none; box-shadow: none; }

/* ============================================================
   Announcement bar
   ============================================================ */

.announce-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 51;
  background:
    radial-gradient(120% 200% at 50% 0%, #C5161B 0%, #B31217 40%, #7E0D11 100%);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .035em;
  border-bottom: 1px solid rgba(212, 162, 76, .35);
  box-shadow: 0 8px 22px -14px rgba(0, 0, 0, .45);
  overflow: hidden;
}
.announce-bar__shine {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .08) 0%, rgba(255, 255, 255, 0) 50%),
    repeating-linear-gradient(
      135deg,
      rgba(212, 162, 76, .04) 0,
      rgba(212, 162, 76, .04) 1px,
      transparent 1px,
      transparent 24px
    );
  pointer-events: none;
}
.announce-bar__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 11px 18px;
  text-align: center;
  white-space: nowrap;
}
.announce-bar__star {
  color: var(--gold-soft);
  display: inline-flex;
  filter: drop-shadow(0 0 6px rgba(212, 162, 76, .35));
}
.announce-bar__lead strong {
  font-family: var(--serif);
  font-weight: 700;
  font-style: italic;
  color: var(--gold-soft);
  margin: 0 .12em;
  font-size: 1.05em;
  font-variation-settings: "SOFT" 60, "opsz" 14;
}
.announce-bar__sep {
  color: rgba(247, 242, 234, .45);
  font-weight: 700;
}
.announce-bar__tail {
  color: rgba(247, 242, 234, .85);
  font-weight: 400;
}

@media (max-width: 720px) {
  .announce-bar { font-size: 12px; letter-spacing: .02em; }
  .announce-bar__inner { padding: 9px 14px; gap: 8px; }
  .announce-bar__sep,
  .announce-bar__tail,
  .announce-bar__star:last-child { display: none; }
}
@media (max-width: 380px) {
  .announce-bar { font-size: 11.5px; }
  .announce-bar__inner { padding: 8px 12px; gap: 6px; }
}

/* ============================================================
   Header
   ============================================================ */

.site-header {
  position: fixed;
  top: 40px;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 12px 0;
  transition: background .35s var(--ease), padding .3s var(--ease),
              box-shadow .35s var(--ease), backdrop-filter .35s var(--ease);
}
@media (max-width: 720px) {
  .site-header { top: 36px; }
}
.site-header[data-state="top"] {
  background: linear-gradient(180deg, rgba(253, 251, 246, .92) 0%, rgba(253, 251, 246, .55) 70%, rgba(253, 251, 246, 0) 100%);
  backdrop-filter: blur(0);
}
.site-header[data-state="solid"] {
  background: rgba(253, 251, 246, .95);
  backdrop-filter: saturate(140%) blur(16px);
  -webkit-backdrop-filter: saturate(140%) blur(16px);
  box-shadow: 0 1px 0 var(--line), 0 14px 30px -22px rgba(58, 36, 24, .25);
  padding: 6px 0;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--brown);
  flex: 0 0 auto;
}
.brand:hover { color: var(--brown); }
.brand__logo {
  display: block;
  height: 140px;
  width: auto;
  filter: drop-shadow(0 14px 30px rgba(58, 36, 24, .28));
  transition: transform .4s var(--ease), filter .4s var(--ease), height .3s var(--ease);
}
.brand:hover .brand__logo {
  transform: translateY(-2px);
  filter: drop-shadow(0 18px 36px rgba(126, 13, 17, .35));
}
.site-header[data-state="solid"] .brand__logo { height: 96px; }
.brand__logo--lg { height: 200px; }

.nav__list {
  display: flex;
  gap: 6px;
  align-items: center;
}
.nav__list a {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--brown);
  transition: background .25s var(--ease), color .25s var(--ease);
  position: relative;
}
.nav__list a:hover { background: rgba(58, 36, 24, .06); color: var(--red); }

.header__cta { display: flex; align-items: center; gap: 12px; }

/* ------- Header language switcher ------- */
.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(58, 36, 24, .06);
  color: var(--brown);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .04em;
  border: 1px solid transparent;
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
}
.lang-toggle:hover {
  background: rgba(179, 18, 23, .08);
  color: var(--red);
  border-color: rgba(179, 18, 23, .25);
  transform: translateY(-1px);
}
.lang-toggle svg { flex: none; opacity: .85; }
.lang-toggle__label { line-height: 1; }
@media (max-width: 640px) {
  .lang-toggle { padding: 8px 11px; font-size: 12px; }
}

.menu-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(58, 36, 24, .06);
  position: relative;
}
.menu-toggle span {
  position: absolute;
  left: 12px; right: 12px;
  height: 2px;
  background: var(--brown);
  border-radius: 2px;
  transition: transform .25s var(--ease), opacity .25s var(--ease), top .25s var(--ease);
}
.menu-toggle span:nth-child(1) { top: 15px; }
.menu-toggle span:nth-child(2) { top: 21px; }
.menu-toggle span:nth-child(3) { top: 27px; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

.mobile-nav {
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: var(--cream-warm);
  border-top: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 16px;
}
.mobile-nav ul { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav a {
  display: block;
  padding: 14px 16px;
  border-radius: 12px;
  font-weight: 500;
  color: var(--brown);
}
.mobile-nav a:hover { background: rgba(58, 36, 24, .06); }

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

.hero {
  position: relative;
  padding-top: 270px;
  padding-bottom: 90px;
  overflow: hidden;
}

.hero__bg { position: absolute; inset: 0; z-index: -1; }
.hero__wood {
  position: absolute; inset: 0;
  background:
    /* very heavy white wash — section reads white with only a faint warm hint */
    linear-gradient(180deg, rgba(255, 255, 254, .92) 0%, rgba(255, 254, 250, .82) 100%),
    /* real whitewashed wood */
    url("assets/hero-wood.png") center/cover no-repeat,
    /* CSS fallback if image missing */
    repeating-linear-gradient(
      0deg,
      rgba(58, 36, 24, .04) 0,
      rgba(58, 36, 24, .04) 1px,
      transparent 1px,
      transparent 92px
    ),
    radial-gradient(120% 80% at 50% 0%, #FFFFFE 0%, #FEFCF7 55%, #FAF4E8 100%);
}
.hero__sun {
  position: absolute;
  inset: -10% -10% auto auto;
  width: 70%;
  height: 110%;
  background:
    radial-gradient(50% 50% at 30% 30%, rgba(255, 232, 188, .22), rgba(255, 232, 188, 0) 70%),
    radial-gradient(40% 40% at 80% 80%, rgba(212, 162, 76, .1), transparent 70%);
  filter: blur(10px);
  mix-blend-mode: multiply;
  pointer-events: none;
}
.hero__vignette {
  position: absolute; inset: 0;
  background: radial-gradient(130% 85% at 50% 50%, transparent 45%, rgba(58, 36, 24, .16) 100%);
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.hero__text {
  position: relative;
  max-width: 640px;
  padding: 48px 52px 44px;
  background:
    linear-gradient(180deg, rgba(255, 253, 249, .94), rgba(253, 251, 246, .86));
  border: 1px solid rgba(58, 36, 24, .06);
  border-radius: 28px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, .9) inset,
    0 30px 60px -32px rgba(58, 36, 24, .35),
    0 14px 30px -18px rgba(58, 36, 24, .18);
  backdrop-filter: blur(10px) saturate(120%);
  -webkit-backdrop-filter: blur(10px) saturate(120%);
}
.hero__text::before {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 22px;
  border: 1px solid rgba(212, 162, 76, .25);
  pointer-events: none;
}
.hero__text::after {
  content: "";
  position: absolute;
  top: -1px; left: 32px; right: 32px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  border-radius: 2px;
  opacity: .6;
}

.hero__sub {
  margin: 28px 0 38px;
  color: var(--brown-soft);
  font-size: 1.2rem;
  line-height: 1.55;
  max-width: 52ch;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* Hero visual */
.hero__visual {
  position: relative;
  aspect-ratio: 4 / 3;
  perspective: 1200px;
}
.hero__card {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background:
    radial-gradient(120% 80% at 50% 30%, #FFFEFB, #FAF5EB);
  box-shadow: var(--shadow-lg);
  transform-origin: center;
  transition: transform .6s var(--ease-out), box-shadow .6s var(--ease-out);
}
.hero__card::before {
  content: attr(data-label);
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  color: rgba(58, 36, 24, .35);
  text-align: center;
  padding: 0 14px;
  z-index: 0;
}
.hero__card img {
  position: relative;
  z-index: 1;
  width: 100%; height: 100%;
  object-fit: cover;
}

.hero__card--main {
  border-radius: 28px;
}
.hero__card--main:hover { transform: translateY(-4px); }

/* Marquee */
.hero__marquee {
  margin-top: 80px;
  overflow: hidden;
  position: relative;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee__track {
  display: inline-flex;
  gap: 28px;
  white-space: nowrap;
  animation: marquee 35s linear infinite;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--brown-soft);
}
.marquee__track span:nth-child(odd) { color: var(--red); }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   About
   ============================================================ */

.about {
  background: var(--cream-warm);
  padding: clamp(80px, 10vw, 140px) 0;
  position: relative;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.about__text .lede {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--brown);
  line-height: 1.65;
  margin: 18px 0 18px;
  max-width: 60ch;
}
.about__text p {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--brown-soft);
  margin: 0 0 18px;
  max-width: 60ch;
}

@media (max-width: 640px) {
  .about__text .lede,
  .about__text p {
    font-size: 1rem;
    line-height: 1.6;
  }
}

.about__list {
  display: grid;
  gap: 12px;
  margin: 28px 0 36px;
}
.about__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  color: var(--brown);
}
.about__list svg { color: var(--red); flex: none; }

.about__actions { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }

.about__visual { position: relative; }
.about__photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
}
.about__photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease-out); }
.about__photo:hover img { transform: scale(1.04); }

.about__overlap {
  position: absolute;
  left: -28px;
  bottom: -28px;
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px 26px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-width: 260px;
  backdrop-filter: blur(6px);
}
.about__overlap__row { display: flex; align-items: center; gap: 12px; }
.about__avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(179, 18, 23, .08);
  display: inline-flex; align-items: center; justify-content: center;
}
.about__overlap strong { display: block; font-size: 14.5px; color: var(--brown); }
.about__overlap span { font-size: 12px; color: var(--brown-mute); }

.about__stat {
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.about__stat__num {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--red);
  display: block;
  line-height: 1;
}
.about__stat__num em { font-size: 1.4rem; font-style: normal; color: var(--gold-deep); margin-left: 2px; }
.about__stat__label { font-size: 13px; color: var(--brown-mute); display: block; margin-top: 6px; max-width: 24ch; }

/* ============================================================
   Products
   ============================================================ */

.products {
  position: relative;
  padding: clamp(100px, 12vw, 160px) 0;
  color: var(--cream);
  overflow: hidden;
  isolation: isolate;
}
.products__bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    /* subtle gold + deep-red mood lighting */
    radial-gradient(80% 60% at 20% 10%, rgba(212, 162, 76, .18), transparent 60%),
    radial-gradient(80% 70% at 80% 100%, rgba(40, 4, 6, .55), transparent 65%),
    /* the real painted wall texture */
    url("assets/products-wall.png") center/cover no-repeat,
    /* CSS fallback gradient if image missing */
    linear-gradient(160deg, #8E0E12 0%, #5B0A0D 60%, #4F0709 100%);
}
.products__bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    /* soft top fade so the section title pops */
    linear-gradient(180deg, rgba(40, 4, 6, .25) 0%, transparent 25%, transparent 75%, rgba(40, 4, 6, .35) 100%),
    /* faint dot-grain for premium texture */
    radial-gradient(rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: auto, 4px 4px;
  background-position: 0 0, 0 0;
  pointer-events: none;
}

.products__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.product-card {
  background: #FFFFFF;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .45s var(--ease-out), box-shadow .45s var(--ease-out);
  display: flex;
  flex-direction: column;
  color: var(--brown);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-red), 0 18px 40px -20px rgba(0, 0, 0, .4);
}

.product-card__media {
  position: relative;
  aspect-ratio: 1 / 1;
  background:
    radial-gradient(120% 80% at 50% 30%, #FFFFFD 0%, #FCF8EE 70%, #F7F0E0 100%);
  overflow: hidden;
  border-bottom: 1px solid rgba(58, 36, 24, .06);
}
.product-card__media::before {
  content: attr(data-name);
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.25rem;
  color: rgba(58, 36, 24, .35);
  letter-spacing: .01em;
  text-align: center;
  padding: 0 14px;
  z-index: 0;
}
.product-card__media img {
  position: relative;
  z-index: 1;
  width: 100%; height: 100%;
  /* images have their own backgrounds — fill the card edge-to-edge */
  object-fit: cover;
  object-position: center;
  transition: transform .6s var(--ease-out);
}
.product-card:hover .product-card__media img {
  transform: scale(1.04);
}

.product-card__pill {
  position: absolute;
  top: 12px; left: 12px;
  z-index: 2;
  background: var(--red);
  color: var(--cream);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 5px 9px;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}
.product-card__pill--gold { background: var(--gold); color: #2A1A11; }

.product-card__body {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}
.product-card__body h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--brown);
  letter-spacing: -.005em;
}
.product-card__tag {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--brown-mute);
  transition: color .25s var(--ease);
}
.product-card:hover .product-card__tag { color: var(--red); }

.products__foot {
  margin-top: 64px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  color: rgba(247, 242, 234, .82);
}

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

.menu {
  position: relative;
  padding: clamp(100px, 12vw, 160px) 0;
  overflow: hidden;
}
.menu__bg { position: absolute; inset: 0; z-index: -1; }
.menu__wood {
  background:
    linear-gradient(180deg, rgba(255, 255, 253, .94) 0%, rgba(255, 253, 248, .85) 100%),
    url("assets/hero-wood.png") center/cover no-repeat,
    repeating-linear-gradient(
      0deg,
      rgba(58, 36, 24, .04) 0,
      rgba(58, 36, 24, .04) 1px,
      transparent 1px,
      transparent 100px
    ),
    linear-gradient(180deg, #FFFEFA 0%, #FCF8EE 100%);
}

.menu__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}

.menu__media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
}
.menu__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease-out); }
.menu__media:hover img { transform: scale(1.04); }
.menu__media__caption {
  position: absolute;
  left: 22px; bottom: 22px; right: 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px 20px;
  background: rgba(253, 251, 246, .94);
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow);
}
.menu__media__caption strong { font-family: var(--serif); font-size: 1.15rem; color: var(--brown); }

.menu__content .lede { margin-top: 18px; }

.menu__cats {
  display: grid;
  gap: 18px;
  margin: 32px 0 36px;
}
.menu-cat {
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 24px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.menu-cat:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: rgba(179, 18, 23, .25);
}
.menu-cat__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.menu-cat__icon {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(179, 18, 23, .08);
  color: var(--red);
}
.menu-cat h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--brown);
}
.menu-cat ul { display: grid; gap: 8px; }
.menu-cat li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  font-size: 15px;
  color: var(--brown-soft);
  padding: 4px 0;
  border-bottom: 1px dashed rgba(58, 36, 24, .12);
}
.menu-cat li:last-child { border-bottom: 0; }
.menu-cat i { font-style: normal; font-weight: 600; color: var(--red); font-family: var(--serif); font-size: 1.05rem; }

/* Items that include a description sub-line (e.g. breakfast combos) */
.menu-cat__li--desc {
  align-items: flex-start !important;
  padding: 8px 0 !important;
}
.menu-cat__item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}
.menu-cat__name {
  color: var(--brown);
  font-weight: 500;
}
.menu-cat__desc {
  font-size: 12.5px;
  color: var(--brown-mute);
  line-height: 1.4;
  font-weight: 400;
}

.menu__cta { margin-top: 4px; }

/* ============================================================
   Gallery
   ============================================================ */

.gallery {
  background: var(--cream);
  padding: clamp(100px, 12vw, 160px) 0;
}
.gallery .section-head { margin-bottom: 48px; }

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 220px;
  gap: 18px;
}
.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: box-shadow .4s var(--ease), transform .4s var(--ease);
}
.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease-out);
}
.gallery__item:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.gallery__item:hover img { transform: scale(1.08); }
.gallery__item--lg { grid-column: span 2; grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }

.gallery__caption {
  position: absolute;
  left: 16px; bottom: 16px;
  padding: 8px 14px;
  background: rgba(253, 251, 246, .94);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--brown);
  backdrop-filter: blur(6px);
  box-shadow: var(--shadow-sm);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.gallery__item:hover .gallery__caption { opacity: 1; transform: translateY(0); }

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

.visit {
  position: relative;
  padding: clamp(100px, 12vw, 160px) 0;
  overflow: hidden;
}
.visit__bg { position: absolute; inset: 0; z-index: -1; }

.visit__layout {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: clamp(28px, 4vw, 48px);
  align-items: stretch;
}

.visit__info {
  display: flex;
}

.visit__card {
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 34px 30px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.visit__card::before {
  content: "";
  position: absolute;
  top: 0; left: 28px; right: 28px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  border-radius: 2px;
  opacity: .6;
}

.visit__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  border-radius: 16px;
  background: rgba(179, 18, 23, .08);
  color: var(--red);
  margin-bottom: 20px;
}

.visit__card h3 {
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.4vw, 1.7rem);
  font-weight: 700;
  margin: 0 0 10px;
  color: var(--brown);
  letter-spacing: -.015em;
  font-variation-settings: "SOFT" 60, "opsz" 144;
}

.visit__address {
  margin: 0 0 26px;
  color: var(--brown-soft);
  line-height: 1.65;
  font-size: 15.5px;
}

.visit__details {
  display: grid;
  gap: 14px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  margin-bottom: 4px;
}

.visit__details li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14.5px;
  color: var(--brown);
}

.visit__details svg {
  color: var(--red);
  flex: none;
}

.visit__details a:hover {
  color: var(--red);
}

.visit__details--hours li {
  align-items: center;
  gap: 12px;
}
.visit__details--hours .visit__hours-label {
  flex: 1;
  color: var(--brown);
  font-weight: 500;
}
.visit__details--hours .visit__hours-time {
  font-family: var(--serif);
  font-weight: 600;
  color: var(--red);
  font-size: 1.02rem;
  letter-spacing: -.005em;
  white-space: nowrap;
}

.visit__map {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.visit__map__frame {
  position: relative;
  flex: 1;
  min-height: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  background:
    repeating-linear-gradient(135deg, #FAF5EB 0, #FAF5EB 14px, #F4ECDB 14px, #F4ECDB 28px);
}
.visit__map__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: saturate(.95);
}
.visit__map__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(58, 36, 24, .06);
}

.visit__map__cta {
  align-self: stretch;
}
.visit__map__cta svg { flex: none; }

@media (max-width: 900px) {
  .visit__layout { grid-template-columns: 1fr; }
  .visit__map__frame { min-height: 340px; }
}

@media (max-width: 640px) {
  .visit__card { padding: 26px 22px 22px; }
  .visit__card h3 { font-size: 1.3rem; }
  .visit__map__frame { min-height: 280px; }
}

/* ============================================================
   CTA strip
   ============================================================ */

.cta-strip {
  position: relative;
  padding: clamp(70px, 8vw, 110px) 0;
  background:
    /* warm gold spotlight in top-right */
    radial-gradient(70% 80% at 80% 20%, rgba(212, 162, 76, .22), transparent 60%),
    /* semi-transparent red brand wash so the catalogue image shows through */
    linear-gradient(160deg, rgba(142, 14, 18, .72) 0%, rgba(60, 8, 11, .88) 100%),
    /* the catalogue brochure image */
    url("assets/welcome%20awaits.webp") center/cover no-repeat,
    /* solid fallback */
    #5B0A0D;
  color: var(--cream);
  overflow: hidden;
}
.cta-strip::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 5px 5px;
  opacity: .4;
  pointer-events: none;
}
.cta-strip__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 36px;
  align-items: center;
}
.cta-strip p { color: rgba(247, 242, 234, .8); margin: 6px 0 0; font-size: 1.1rem; }
.cta-strip__actions { display: flex; gap: 14px; justify-self: end; flex-wrap: wrap; }

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

.footer {
  position: relative;
  color: rgba(247, 242, 234, .82);
  overflow: hidden;
}
.footer__bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    /* soft warm glow that lifts the top edge */
    radial-gradient(70% 60% at 50% -10%, rgba(212, 162, 76, .14), transparent 65%),
    /* faint pinstripe highlights */
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0) 0,
      rgba(255, 255, 255, 0) 140px,
      rgba(255, 255, 255, .04) 140px,
      rgba(255, 255, 255, .04) 142px
    ),
    /* hairline vertical texture */
    repeating-linear-gradient(
      90deg,
      rgba(0,0,0,.06) 0, rgba(0,0,0,.06) 1px, transparent 1px, transparent 4px
    ),
    /* livelier brand-red gradient */
    linear-gradient(180deg, #A60F14 0%, #7E0D11 45%, #5A0A0D 100%);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr .8fr .9fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  padding: clamp(70px, 8vw, 110px) 0 60px;
}
.footer__col h4 {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--cream);
  font-weight: 600;
  margin: 0 0 18px;
  letter-spacing: -.01em;
}
.footer__col ul li {
  padding: 6px 0;
  font-size: 14.5px;
}
.footer__col ul li a:hover { color: var(--gold-soft); }

.footer__brand p {
  margin: 18px 0 22px;
  max-width: 38ch;
  color: rgba(247, 242, 234, .72);
}

.hours li {
  display: flex; justify-content: space-between; gap: 10px;
  font-size: 14.5px;
}
.hours li i { font-style: normal; color: var(--gold-soft); font-weight: 600; }
.hours__note {
  margin-top: 8px;
  font-size: 12.5px;
  color: rgba(247, 242, 234, .55);
  font-style: italic;
  border-top: 1px solid var(--line-light);
  padding-top: 10px;
  display: block !important;
}

address {
  font-style: normal;
  font-size: 14.5px;
  line-height: 1.65;
}
address strong { color: var(--cream); }
address a:hover { color: var(--gold-soft); }

.footer__base {
  border-top: 1px solid var(--line-light);
  padding: 20px 0 24px;
  font-size: 13px;
  color: rgba(247, 242, 234, .55);
}
.footer__base__inner {
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  flex-wrap: wrap;
}

/* ============================================================
   Modal (Opening Hours)
   ============================================================ */

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
  animation: modalFade .25s var(--ease-out);
}
.modal[hidden] { display: none; }

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26, 16, 10, .58);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  cursor: pointer;
}

.modal__card {
  position: relative;
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 40px 36px 32px;
  max-width: 440px;
  width: 100%;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  animation: modalIn .35s var(--ease-out);
  overflow: hidden;
}
.modal__card::before {
  content: "";
  position: absolute;
  top: 0; left: 32px; right: 32px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  border-radius: 2px;
  opacity: .7;
}

.modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(58, 36, 24, .08);
  color: var(--brown);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .2s var(--ease), color .2s var(--ease), transform .2s var(--ease);
  z-index: 1;
}
.modal__close:hover {
  background: var(--red);
  color: var(--cream);
  transform: rotate(90deg);
}

.modal__title {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 3vw, 1.7rem);
  font-weight: 700;
  color: var(--brown);
  margin: 14px 0 22px;
  letter-spacing: -.015em;
  font-variation-settings: "SOFT" 60, "opsz" 144;
}

.modal__hours {
  display: grid;
  gap: 12px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin: 0 0 18px;
}
.modal__hours li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  font-size: 15px;
  color: var(--brown);
}
.modal__hours strong {
  font-family: var(--serif);
  color: var(--red);
  font-size: 1.05rem;
  font-weight: 600;
  white-space: nowrap;
}

.modal__note {
  margin: 0 0 22px;
  color: var(--brown-soft);
  font-size: 14.5px;
  line-height: 1.55;
}

.modal__lede {
  margin: 0 0 22px;
  color: var(--brown-soft);
  font-size: 15px;
  line-height: 1.6;
}

/* Wider variant for the menu modal */
.modal__card--menu {
  max-width: 540px;
  padding: 44px 38px 32px;
}

.menu-modal__cats {
  display: grid;
  gap: 12px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin: 0 0 22px;
}
.menu-modal-cat {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 10px 4px;
  border-radius: 12px;
  transition: background .25s var(--ease);
}
.menu-modal-cat:hover {
  background: rgba(179, 18, 23, .04);
}
.menu-modal-cat__icon {
  flex: none;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(179, 18, 23, .08);
  color: var(--red);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.menu-modal-cat h4 {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--brown);
  margin: 0 0 4px;
  letter-spacing: -.005em;
}
.menu-modal-cat p {
  margin: 0;
  color: var(--brown-soft);
  font-size: 14px;
  line-height: 1.55;
}

@keyframes modalFade {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes modalIn {
  from { transform: translateY(16px) scale(.96); opacity: 0; }
  to { transform: none; opacity: 1; }
}

@media (max-width: 480px) {
  .modal { padding: 16px; }
  .modal__card { padding: 32px 24px 24px; }
  .modal__title { margin-top: 10px; }
}

/* When the modal is open, freeze scroll on the body */
body.modal-open { overflow: hidden; }

/* ============================================================
   Menu — VAT note
   ============================================================ */
.menu__vat {
  font-size: 13px;
  color: var(--brown-mute);
  margin: -12px 0 24px;
  font-style: italic;
}

/* ============================================================
   Menu modal — full-page menu image viewer
   ============================================================ */
.modal__card--menu-images {
  max-width: 720px;
  width: 100%;
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  max-height: calc(100vh - 48px);
}
.menu-images__head {
  text-align: center;
  margin: 6px 0 18px;
}
.menu-images__head .modal__title { margin: 10px 0 8px; }
.menu-images__head .modal__lede { margin: 0; }

.menu-images__pages {
  flex: 1 1 auto;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 4px;
  margin: 0 -4px 18px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 16px 4px;
}
.menu-images__pages img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  background: #fff;
}

.menu-images__actions { flex: none; }

@media (max-width: 600px) {
  .modal__card--menu-images { padding: 22px 18px 18px; }
  .menu-images__head .modal__title { font-size: 1.3rem; }
}

/* ============================================================
   Print — when "Save as PDF" is clicked, hide the page and show
   only the two menu images so the user can save them as PDF.
   Each image is sized to fit on exactly one page.
   ============================================================ */
@media print {
  @page { margin: 0; size: A4 portrait; }

  body.printing-menu * { visibility: hidden !important; }
  body.printing-menu #menuModal,
  body.printing-menu #menuModal * { visibility: visible !important; }

  body.printing-menu #menuModal {
    position: fixed !important;
    inset: 0 !important;
    background: #fff !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: visible !important;
  }
  body.printing-menu #menuModal .modal__backdrop,
  body.printing-menu #menuModal .modal__close,
  body.printing-menu #menuModal .menu-images__head,
  body.printing-menu #menuModal .menu-images__actions { display: none !important; }

  body.printing-menu #menuModal .modal__card--menu-images {
    box-shadow: none !important;
    border: 0 !important;
    max-width: none !important;
    max-height: none !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    background: #fff !important;
    display: block !important;
  }
  body.printing-menu #menuModal .menu-images__pages {
    display: block !important;
    border: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: visible !important;
    gap: 0 !important;
    background: #fff !important;
  }
  /* Each image is wrapped in a page-sized container so it always
     fits on exactly one printed page, regardless of its real size. */
  body.printing-menu #menuModal .menu-images__pages img {
    display: block !important;
    width: 100vw !important;
    height: 100vh !important;
    max-width: 100vw !important;
    max-height: 100vh !important;
    object-fit: contain !important;
    object-position: center center !important;
    margin: 0 !important;
    padding: 0 !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    background: #fff !important;
    page-break-after: always !important;
    break-after: page !important;
    page-break-inside: avoid !important;
    break-inside: avoid !important;
  }
  body.printing-menu #menuModal .menu-images__pages img:last-child {
    page-break-after: auto !important;
    break-after: auto !important;
  }
}

/* ------- Welcome / language picker modal ------- */
.modal--welcome { z-index: 110; }
.modal--welcome .modal__backdrop {
  background: rgba(10, 4, 3, .72);
  cursor: default;
}

.modal__card--welcome {
  max-width: 480px;
  text-align: center;
  padding: 36px 36px 32px;
  border: 1px solid rgba(212, 162, 76, .35);
  background: linear-gradient(180deg, #FFFFFF 0%, #FDFBF6 100%);
}

.welcome__brand {
  display: flex;
  justify-content: center;
  margin: -6px 0 14px;
}
.welcome__logo {
  height: 96px;
  width: auto;
  filter: drop-shadow(0 10px 24px rgba(126, 13, 17, .25));
}

.welcome__title {
  font-size: clamp(1.4rem, 3.2vw, 1.7rem);
  margin: 0 0 10px;
  letter-spacing: -.01em;
}
.welcome__sub {
  margin: 0 0 26px;
  color: var(--brown-soft);
  font-size: 15px;
  line-height: 1.55;
}

.welcome__langs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.welcome__lang {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 22px 14px 18px;
  border-radius: var(--radius);
  background: #FFFFFF;
  border: 1.5px solid var(--line);
  color: var(--brown);
  font-family: var(--sans);
  font-weight: 600;
  cursor: pointer;
  transition:
    transform .25s var(--ease-out),
    background .25s var(--ease),
    border-color .25s var(--ease),
    box-shadow .35s var(--ease),
    color .25s var(--ease);
  box-shadow: 0 2px 6px rgba(58, 36, 24, .04);
}
.welcome__lang:hover {
  transform: translateY(-3px);
  background: #FFFFFF;
  border-color: var(--red);
  color: var(--red);
  box-shadow: 0 18px 30px -16px rgba(126, 13, 17, .35);
}

.welcome__lang__flag {
  font-size: 2rem;
  line-height: 1;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, .12));
}
.welcome__lang__name {
  font-size: 15px;
  letter-spacing: .01em;
}

@media (max-width: 480px) {
  .modal__card--welcome { padding: 28px 22px 22px; }
  .welcome__logo { height: 80px; }
  .welcome__lang { padding: 18px 10px 14px; }
  .welcome__lang__flag { font-size: 1.7rem; }
}

/* Thai-specific tweaks — script font has no Thai glyphs, so make ems/accents look right in Thai */
html[lang="th"] .display__accent,
html[lang="th"] .h-display em,
html[lang="th"] .h-display--light em {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1em;
}
html[lang="th"] .marquee__track { font-style: normal; }
html[lang="th"] body {
  font-family: "Sarabun", "Noto Sans Thai", "Inter", sans-serif;
}

/* ============================================================
   Reveal animations
   ============================================================ */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
  transition-delay: var(--delay, 0s);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
.reveal--delay { transition-delay: .15s; }

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

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

@media (max-width: 1080px) {
  .nav { display: none; }
  .menu-toggle { display: inline-flex; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  /* Products keeps a clean 4×4 grid all the way down */
  .products__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
}

@media (max-width: 1080px) {
  .brand__logo { height: 110px; }
  .site-header[data-state="solid"] .brand__logo { height: 80px; }
  .brand__logo--lg { height: 170px; }
  .hero__text { padding: 40px 40px 36px; }
}

@media (max-width: 900px) {
  .hero { padding-top: 240px; padding-bottom: 70px; }
  .brand__logo { height: 120px; }
  .site-header[data-state="solid"] .brand__logo { height: 88px; }
  .brand__logo--lg { height: 170px; }
  .hero__grid,
  .about__grid,
  .menu__grid,
  .cta-strip__inner { grid-template-columns: 1fr; }

  .about__overlap { left: 16px; right: 16px; bottom: -36px; }

  .gallery__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 180px;
  }
  .gallery__item--lg { grid-column: span 2; grid-row: span 1; }
  .gallery__item--wide { grid-column: span 2; }

  .cta-strip__actions { justify-self: start; }

  /* Tighten product cards as columns shrink */
  .products__grid { gap: 14px; }
  .product-card__body { padding: 12px 14px 14px; }
  .product-card__body h3 { font-size: 1rem; }
  .product-card__tag { font-size: 10.5px; letter-spacing: .12em; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .container { padding-inline: 18px; }

  .header__cta .btn:not(.btn--full) { display: none; }
  .brand__logo { height: 130px; }
  .site-header[data-state="solid"] .brand__logo { height: 96px; }
  .brand__logo--lg { height: 160px; }

  .hero {
    padding-top: 236px;
    padding-bottom: 50px;
  }
  .hero__grid { gap: 28px; }

  /* Cream menu-board card — tighter on mobile but still framed */
  .hero__text {
    padding: 30px 22px 28px;
    border-radius: 22px;
  }
  .hero__text::before { inset: 6px; border-radius: 16px; }
  .hero__text::after { left: 22px; right: 22px; }

  .display { font-size: clamp(2.2rem, 11vw, 3.2rem); }
  .hero__sub { font-size: 1.02rem; margin: 20px 0 28px; }
  .hero__actions { gap: 10px; }
  .hero__actions .btn { flex: 1 1 auto; justify-content: center; }

  /* Mobile hero image — same single shot, just a tighter radius */
  .hero__visual {
    aspect-ratio: 4 / 3;
    max-width: 100%;
    margin: 0;
    perspective: none;
  }
  .hero__card--main {
    border-radius: 22px;
    box-shadow: var(--shadow-lg);
  }

  .hero__marquee { margin-top: 56px; padding: 12px 0; }
  .marquee__track { font-size: 1.1rem; gap: 22px; }

  /* About section — drop the image + stat card on phones */
  .about__visual { display: none; }
  .about__grid { gap: 0; }

  /* True 4×4 grid on mobile — compact card variant */
  .products__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; }
  .product-card { border-radius: 12px; }
  .product-card__body { padding: 8px 8px 10px; gap: 2px; }
  .product-card__body h3 {
    font-size: 12.5px;
    line-height: 1.2;
    letter-spacing: -.005em;
  }
  .product-card__tag { display: none; }
  .product-card__media::before { font-size: .8rem; padding: 0 6px; }
  .product-card__pill {
    top: 6px; left: 6px;
    font-size: 8.5px;
    letter-spacing: .1em;
    padding: 3px 6px;
  }
  .product-card:hover { transform: translateY(-3px); }

  .gallery__grid  { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .gallery__item--lg { grid-column: span 1; grid-row: span 1; }
  .gallery__item--wide { grid-column: span 1; }
  .footer__grid   { grid-template-columns: 1fr; }
}

@media (max-width: 380px) {
  /* Very small screens — drop pills, keep grid intact */
  .product-card__pill { display: none; }
  .product-card__body h3 { font-size: 11.5px; }

  /* Trim logo just slightly so it doesn't push the menu toggle */
  .brand__logo { height: 110px; }
  .site-header[data-state="solid"] .brand__logo { height: 82px; }
  .hero { padding-top: 210px; }
}

/* Focus styles */
:focus-visible {
  outline: 3px solid rgba(179, 18, 23, .45);
  outline-offset: 3px;
  border-radius: 6px;
}

::selection { background: rgba(179, 18, 23, .25); color: var(--brown); }
