/* ============================================================
   La Mensa — public site stylesheet
   Classic trattoria look: blush and white grounds, burgundy accents,
   Playfair Display headings, Montserrat body text, fine gold hairlines.
   ============================================================ */
:root {
  --ink: #252525;
  --ink-2: #3d3939;
  --muted: #6c6365;
  --line: #eadfe0;
  --blush: #fff6f7;
  --blush-2: #f8eaec;
  --white: #ffffff;
  --burgundy: #531721;
  --burgundy-2: #3e0f18;
  --gold: #d9a441;
  --gold-line: #b8955a;
  --olive: #5f6b3c;
  /* Aliases kept for inline styles in older templates */
  --brick: var(--burgundy);
  --brick-2: var(--burgundy-2);
  --cream: var(--blush);
  --cream-2: var(--blush-2);
  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --radius: 8px;
  --shadow: 0 12px 32px rgba(37, 20, 24, .10);
  --container: 1200px;
  --header-h: 82px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--blush);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 400; line-height: 1.15; margin: 0 0 .5em; color: var(--ink); }
h1 { font-size: clamp(2.5rem, 5.5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.4rem; }
p { margin: 0 0 1em; }
.lead { font-size: 1.12rem; color: var(--ink-2); }
.muted { color: var(--muted); }
.container { width: min(var(--container), calc(100% - 2.5rem)); margin-inline: auto; }
.narrow { width: min(780px, calc(100% - 2.5rem)); margin-inline: auto; }
.section { padding: clamp(3.5rem, 8vw, 6rem) 0; }
.section--tight { padding: clamp(2.5rem, 5vw, 4rem) 0; }
.section--white { background: var(--white); }
.section--dark { background: var(--burgundy); color: #fff; }
.section--dark h2, .section--dark h3 { color: #fff; }
.section--dark .muted { color: rgba(255,255,255,.78); }
.section-head { max-width: 680px; margin-bottom: 2.5rem; }
.section-head.center { margin-inline: auto; text-align: center; }
.eyebrow {
  display: inline-block; font-family: var(--font-display); font-size: .85rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--burgundy); margin-bottom: .6rem;
}
.section--dark .eyebrow { color: #f2c6cd; }
.center-link { text-align: center; margin: 2.5rem 0 0; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .9rem 1.9rem; border-radius: 3px; border: 1px solid transparent;
  font-family: var(--font-body); font-weight: 500; font-size: .8rem; letter-spacing: .16em; text-transform: uppercase;
  line-height: 1.2; cursor: pointer; white-space: nowrap;
  transition: background .25s, color .25s, border-color .25s, box-shadow .25s, transform .2s;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: none; }
.btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.btn--primary { background: var(--burgundy); color: #fff; border-color: var(--burgundy); box-shadow: 0 8px 18px rgba(83,23,33,.25); }
.btn--primary:hover { background: var(--burgundy-2); border-color: var(--burgundy-2); }
.btn--outline { background: transparent; color: var(--burgundy); border-color: var(--burgundy); }
.btn--outline:hover { background: var(--burgundy); color: #fff; }
.btn--white, .btn--gold { background: #fff; color: var(--burgundy); border-color: #fff; box-shadow: 0 8px 18px rgba(0,0,0,.18); }
.btn--white:hover, .btn--gold:hover { background: var(--blush); }
.btn--light, .btn--glass { background: transparent; color: #fff; border-color: rgba(255,255,255,.85); }
.btn--light:hover, .btn--glass:hover { background: #fff; color: var(--burgundy); }
.btn--hero { background: var(--burgundy); color: #fff; border-color: rgba(255,255,255,.8); min-width: 200px; box-shadow: 0 8px 20px rgba(0,0,0,.3); }
.btn--hero:hover { background: var(--burgundy-2); border-color: #fff; }
.btn--sm { padding: .65rem 1.2rem; font-size: .74rem; }
.btn--lg { padding: 1.05rem 2.2rem; }
.btn--block { width: 100%; }
.link-arrow { font-weight: 500; color: var(--burgundy); display: inline-flex; gap: .4rem; align-items: center; transition: gap .25s; }
.link-arrow:hover { gap: .7rem; }

/* Announcement */
.announce { background: var(--burgundy); color: #fff; text-align: center; font-size: .88rem; padding: .5rem 1rem; }

/* Top bar */
.topbar { background: var(--ink); color: #f1eded; font-size: .84rem; }
.topbar__inner { display: flex; justify-content: space-between; align-items: center; gap: 1.5rem; min-height: 44px; padding: 0 2.2rem; }
.topbar__info, .topbar__right { display: flex; align-items: center; gap: 1.6rem; }
.topbar a { display: inline-flex; align-items: center; gap: .45rem; }
.topbar a:hover { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.topbar__promo { color: #f2c6cd; font-family: var(--font-display); letter-spacing: .03em; }
.topbar__social { display: flex; gap: .5rem; }
.topbar__social a { width: 26px; height: 26px; border-radius: 50%; background: #fff; color: var(--ink); justify-content: center; }
.topbar__social a:hover { background: var(--blush-2); text-decoration: none; }
.topbar__social svg { width: 14px; height: 14px; }

/* Header: navigation split around a centred wordmark */
.header { position: sticky; top: 0; z-index: 50; background: var(--blush); border-bottom: 1px solid var(--line); transition: box-shadow .25s; }
.header__inner { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 2.4rem; height: var(--header-h); }
.nav { display: flex; align-items: center; gap: 1.7rem; }
.nav--left { justify-content: flex-end; }
.nav--right { justify-content: flex-start; }
.nav a { font-family: var(--font-display); font-size: 1.04rem; color: var(--ink); white-space: nowrap; position: relative; padding: .25rem 0; transition: color .2s; }
.nav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: -3px; height: 1px; background: var(--burgundy); transform: scaleX(0); transition: transform .3s; }
.nav a:hover, .nav a.active { color: var(--burgundy); }
.nav a:hover::after, .nav a.active::after { transform: scaleX(1); }
.brand { display: inline-flex; align-items: center; gap: .7rem; line-height: 1; flex-shrink: 0; }
.brand__logo { width: 66px; height: 66px; object-fit: contain; display: block; transition: transform .4s; }
.brand:hover .brand__logo { transform: scale(1.05); }
.brand__name { font-family: var(--font-display); font-size: 2.3rem; color: var(--ink); letter-spacing: -.01em; white-space: nowrap; }
.burger { display: none; background: none; border: 0; width: 44px; height: 44px; cursor: pointer; padding: 0; justify-self: end; }
.burger span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px auto; transition: .25s; }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-nav { display: none; }

@media (max-width: 1240px) and (min-width: 1101px) {
  .nav { gap: 1.2rem; }
  .nav a { font-size: .98rem; }
  .brand__logo { width: 60px; height: 60px; }
  .header__inner { gap: 1.6rem; }
}
@media (max-width: 1100px) {
  :root { --header-h: 68px; }
  .topbar { display: none; }
  .header__inner { grid-template-columns: 1fr auto; gap: 1rem; }
  .nav { display: none; }
  .burger { display: block; }
  .brand__logo { width: 54px; height: 54px; }
  .mobile-nav {
    display: block; position: fixed; inset: var(--header-h) 0 0 0; z-index: 49; background: var(--blush);
    padding: 1.2rem 1.5rem 2rem; overflow: auto; transform: translateX(100%); transition: transform .3s;
  }
  .mobile-nav.open { transform: none; }
  .mobile-nav > a:not(.btn) { display: block; font-family: var(--font-display); font-size: 1.45rem; padding: .65rem 0; border-bottom: 1px solid var(--line); }
  .mobile-nav > a.active { color: var(--burgundy); }
  .mobile-nav .btn { margin-top: .8rem; }
  .mobile-nav .btn:first-of-type { margin-top: 1.6rem; }
  body.nav-open { overflow: hidden; }
}
@media (max-width: 480px) { .brand__logo { width: 50px; height: 50px; } }

/* Home hero */
.hero { position: relative; min-height: clamp(560px, calc(100svh - var(--header-h) - 44px), 900px); display: grid; place-items: center; text-align: center; color: #fff; overflow: hidden; isolation: isolate; }
.hero__bg { position: absolute; inset: 0; z-index: -2; background-size: cover; background-position: center; }
.hero::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(0,0,0,.35), rgba(0,0,0,.5) 60%, rgba(0,0,0,.6)); }
.hero__inner { padding: 4rem 0; }
.hero__title { color: #fff; font-size: clamp(3.4rem, 9vw, 6.4rem); line-height: 1; margin: 0 0 .9rem; text-shadow: 0 4px 24px rgba(0,0,0,.35); }
.hero__sub { font-size: clamp(1.1rem, 2.2vw, 1.55rem); letter-spacing: .05em; margin: 0 auto 2rem; max-width: 760px; text-shadow: 0 2px 12px rgba(0,0,0,.4); }
.hero__buttons { display: grid; grid-template-columns: repeat(2, auto); justify-content: center; gap: 1.1rem 1.2rem; }
@media (max-width: 600px) {
  .hero { min-height: calc(100svh - var(--header-h)); }
  .hero__buttons { grid-template-columns: 1fr; width: min(260px, 100%); margin-inline: auto; gap: .9rem; }
  .btn--hero { min-width: 0; }
}

/* Our story: image · text · image */
.story { display: grid; grid-template-columns: 1fr 1.3fr 1fr; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: center; }
.story__body { text-align: center; }
.story__body h2 { margin-bottom: 1rem; }
.story__body p { color: var(--ink-2); line-height: 1.85; }
.story__body .btn { margin-top: .8rem; }
.story__media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: 12px; box-shadow: var(--shadow); }
@media (max-width: 900px) {
  .story { grid-template-columns: 1fr 1fr; }
  .story__body { grid-column: 1 / -1; order: -1; }
}

/* Burgundy feature bands */
.feature { background: var(--burgundy); color: #fff; padding: clamp(3.5rem, 8vw, 6rem) 0; overflow: hidden; }
.feature + .feature { padding-top: 0; }
.feature__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.feature h2 { color: #fff; font-size: clamp(2.1rem, 4vw, 3.2rem); }
.feature p { color: rgba(255,255,255,.9); line-height: 1.85; }
.feature__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1.8rem; }
.feature__media { position: relative; }
.feature__media img { width: 100%; aspect-ratio: 5/6; object-fit: cover; border-radius: 12px; }
.feature__media--arch { padding: 2.2rem 0 0 2.2rem; }
.feature__media--arch > img:first-child { border-radius: 12px 45% 12px 12px / 12px 30% 12px 12px; }
.feature__inset { position: absolute; top: 0; left: 0; width: 40% !important; aspect-ratio: 1 !important; border: 3px solid #fff; border-radius: 10px !important; box-shadow: 0 16px 40px rgba(0,0,0,.35); }
.feature--reverse .feature__media { order: -1; }
@media (max-width: 860px) {
  .feature__grid { grid-template-columns: 1fr; text-align: center; }
  .feature__actions { justify-content: center; }
  .feature--reverse .feature__media { order: 0; }
  .feature__media img { aspect-ratio: 4/3; }
}

/* Seasonal promotion */
.seasonal { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.seasonal > img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 12px; box-shadow: var(--shadow); }
.seasonal__price { font-family: var(--font-display); font-size: 2.2rem; color: var(--burgundy); margin: 0; }
.seasonal__price small { font-family: var(--font-body); font-size: .85rem; color: var(--muted); }
@media (max-width: 800px) { .seasonal { grid-template-columns: 1fr; } }

/* Split / about */
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.split--reverse > :first-child { order: 2; }
.split__img img { border-radius: 12px; aspect-ratio: 4/5; object-fit: cover; width: 100%; box-shadow: var(--shadow); }
.split__img--wide img { aspect-ratio: 4/3; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } .split--reverse > :first-child { order: 0; } }

/* Grids */
.grid { display: grid; gap: 1.6rem; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1000px) { .grid--4, .grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid--4, .grid--3, .grid--2 { grid-template-columns: 1fr; } }

/* Tags */
.tag { display: inline-block; font-family: var(--font-body); font-size: .62rem; font-weight: 600; letter-spacing: .08em; padding: .1rem .4rem; border-radius: 3px; border: 1px solid var(--olive); color: var(--olive); vertical-align: middle; margin-left: .35rem; line-height: 1.4; }
.tag--gf { border-color: #b88a2e; color: #8a6420; }

/* Page title (inner pages) */
.page-hero { background: var(--blush); padding: clamp(3rem, 7vw, 5rem) 0 clamp(1.5rem, 3vw, 2.5rem); text-align: center; }
.page-hero h1 { margin: 0 0 .6rem; }
.page-hero p { color: var(--muted); max-width: 640px; margin: 0 auto; font-size: 1.05rem; }
.page-hero .eyebrow { margin-bottom: .4rem; }
.page-hero__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: .8rem; margin-top: 1.6rem; }

/* Menu page */
.menu-wrap { width: min(1000px, calc(100% - 2.5rem)); margin-inline: auto; }
.menu-tabs { position: sticky; top: var(--header-h); z-index: 40; background: var(--blush); border-bottom: 1px solid var(--line); }
.menu-tabs__inner { display: flex; gap: 1.6rem; justify-content: center; overflow-x: auto; scrollbar-width: none; padding: .75rem 0; }
.menu-tabs__inner::-webkit-scrollbar { display: none; }
.menu-tabs a { white-space: nowrap; font-family: var(--font-display); font-size: 1rem; color: var(--ink-2); padding: .2rem 0; border-bottom: 1px solid transparent; transition: color .2s, border-color .2s; }
.menu-tabs a:hover, .menu-tabs a.active { color: var(--burgundy); border-bottom-color: var(--burgundy); }
@media (max-width: 800px) { .menu-tabs__inner { justify-content: flex-start; gap: 1.2rem; } }
.dietary-key { display: flex; flex-wrap: wrap; justify-content: center; gap: .6rem 1.2rem; font-size: .84rem; color: var(--muted); margin-top: 1.4rem; }
.menu-cat { padding: 2.6rem 0 .6rem; scroll-margin-top: calc(var(--header-h) + 70px); }
.menu-cat__head { display: flex; flex-wrap: wrap; align-items: baseline; gap: .4rem 1rem; padding: 0 0 .8rem 0; margin-bottom: 1.4rem; border-bottom: 1px solid var(--line); }
.menu-cat__head h2 { font-size: clamp(1.7rem, 3vw, 2.1rem); margin: 0; }
.menu-cat__note { margin: 0; color: var(--ink-2); font-size: .9rem; }
.menu-cat__note::before { content: "— "; }
.menu-list { display: grid; row-gap: 1.05rem; }
.menu-item { display: flex; gap: 1rem; align-items: flex-start; }
.menu-item__body { flex: 1; min-width: 0; }
.menu-item__row { display: flex; align-items: baseline; gap: .7rem; }
.menu-item__name { font-family: var(--font-display); font-size: 1.12rem; }
.menu-item__line { flex: 1; min-width: 1.5rem; height: 1px; background: #d9cbcd; transform: translateY(-.28em); }
.menu-item__price { font-family: var(--font-display); font-size: 1.05rem; white-space: nowrap; }
.menu-item__desc { color: var(--muted); font-size: .86rem; font-style: italic; margin: .15rem 0 0; line-height: 1.5; }
.menu-item__thumb { flex: none; width: 56px; height: 56px; border-radius: 6px; overflow: hidden; }
.menu-item__thumb img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 560px) {
  .menu-item__row { flex-wrap: wrap; }
  .menu-item__line { display: none; }
  .menu-item__price { margin-left: auto; }
  .menu-item__thumb { width: 48px; height: 48px; }
}
.menu-note { color: var(--muted); font-size: .84rem; margin-top: 2.5rem; text-align: center; }

/* Set menus */
.set-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); display: flex; flex-direction: column; overflow: hidden; transition: box-shadow .3s, transform .3s; }
.set-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.set-card__head { padding: 1.8rem 1.8rem 1.2rem; border-bottom: 1px solid var(--line); background: var(--blush-2); }
.set-card__price { font-family: var(--font-display); font-size: 2.6rem; color: var(--burgundy); line-height: 1; }
.set-card__price small { font-family: var(--font-body); font-size: .8rem; color: var(--muted); margin-left: .3rem; }
.set-card__body { padding: 1.5rem 1.8rem; flex: 1; }
.set-course { margin-bottom: 1.4rem; }
.set-course__title { font-family: var(--font-display); font-size: .92rem; letter-spacing: .12em; text-transform: uppercase; color: var(--burgundy); margin-bottom: .5rem; }
.set-course ul { list-style: none; padding: 0; margin: 0; }
.set-course li { padding: .4rem 0; border-bottom: 1px solid var(--line); font-size: .92rem; }
.set-course li b { font-family: var(--font-display); font-weight: 400; font-size: 1.02rem; }
.set-course li span { color: var(--muted); display: block; font-size: .85rem; font-style: italic; }
.set-course li span.tag { display: inline-block; font-style: normal; }
.set-card__foot { padding: 1.2rem 1.8rem; border-top: 1px solid var(--line); font-size: .82rem; color: var(--muted); background: var(--blush-2); }
.seasonal-banner { display: grid; grid-template-columns: 1fr 1fr; background: var(--burgundy); color: #fff; border-radius: var(--radius); overflow: hidden; }
.seasonal-banner img { height: 100%; width: 100%; object-fit: cover; min-height: 320px; }
.seasonal-banner__body { padding: clamp(2rem, 4vw, 3.5rem); }
.seasonal-banner h2 { color: #fff; }
.seasonal-banner .eyebrow { color: #f2c6cd; }
.seasonal-banner .muted { color: rgba(255,255,255,.8); }
@media (max-width: 800px) { .seasonal-banner { grid-template-columns: 1fr; } }

/* Events */
.event-types { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
@media (max-width: 1000px) { .event-types { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .event-types { grid-template-columns: 1fr; } }
.event-type { background: var(--white); border: 1px solid var(--line); padding: 1.6rem; border-radius: var(--radius); transition: box-shadow .3s, transform .3s; }
.event-type:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.event-type__icon { width: 46px; height: 46px; border-radius: 50%; background: var(--blush-2); color: var(--burgundy); display: grid; place-items: center; margin-bottom: 1rem; }
.event-type__icon svg { width: 22px; height: 22px; }
.event-type h3 { font-size: 1.2rem; margin-bottom: .35rem; }
.event-type p { color: var(--muted); font-size: .9rem; margin: 0; }
.feature-list { list-style: none; padding: 0; margin: 1.5rem 0 0; display: grid; gap: 1rem; }
.feature-list li { display: flex; gap: .9rem; }
.feature-list svg { width: 22px; height: 22px; color: var(--burgundy); flex: none; margin-top: .2rem; }
.feature-list b { display: block; font-weight: 600; }
.feature-list span { color: var(--muted); font-size: .92rem; }

/* Forms */
.form-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.5rem, 4vw, 2.5rem); box-shadow: 0 10px 30px rgba(83,23,33,.06); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 600px) { .form-grid { grid-template-columns: 1fr; } }
.field label { display: block; font-size: .78rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-2); margin-bottom: .4rem; }
.field label span { color: var(--burgundy); }
.field input, .field select, .field textarea {
  width: 100%; padding: .8rem .95rem; border: 1px solid #dccfd1; border-radius: 4px; background: #fff;
  font: inherit; color: var(--ink); transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--burgundy); box-shadow: 0 0 0 3px rgba(83,23,33,.12); }
.field textarea { min-height: 120px; resize: vertical; }
.field .error { color: #a12a2a; font-size: .82rem; margin-top: .35rem; }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: #a12a2a; }
.field.has-error label { color: #a12a2a; }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }
.alert { padding: 1rem 1.2rem; border-radius: 4px; margin-bottom: 1.5rem; border: 1px solid; font-size: .95rem; }
.alert--success { background: #eef3e6; border-color: #b7c79a; color: #3f4f22; }
.alert--error { background: #fbeaea; border-color: #e6b6b6; color: #7a1f28; }
.confirm-box { text-align: center; padding: 2rem 1rem; }
.confirm-box__icon { width: 64px; height: 64px; border-radius: 50%; background: #eef3e6; color: var(--olive); display: grid; place-items: center; margin: 0 auto 1.2rem; }
.confirm-box__icon svg { width: 30px; height: 30px; }
.confirm-box dl { display: grid; grid-template-columns: auto 1fr; gap: .4rem 1.2rem; text-align: left; max-width: 380px; margin: 1.5rem auto; font-size: .95rem; }
.confirm-box dt { color: var(--muted); }
.confirm-box dd { margin: 0; font-weight: 600; }

/* Sidebar info */
.info-card { background: var(--ink); color: #f1eded; padding: 2rem; border-radius: var(--radius); }
.info-card h3 { color: #fff; }
.info-card dl { margin: 0; }
.info-card dt { font-family: var(--font-display); font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: #f2c6cd; margin-top: 1.2rem; }
.info-card dd { margin: .25rem 0 0; }
.info-card a:hover { text-decoration: underline; }
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td { padding: .35rem 0; border-bottom: 1px solid rgba(255,255,255,.1); font-size: .92rem; }
.hours-table td:last-child { text-align: right; }
.layout-form { display: grid; grid-template-columns: 1.4fr .8fr; gap: 2.5rem; align-items: start; }
@media (max-width: 900px) { .layout-form { grid-template-columns: 1fr; } }

/* Gallery */
.gallery { display: grid; grid-template-columns: repeat(6, 1fr); grid-auto-rows: 200px; gap: .75rem; }
.gallery figure { margin: 0; overflow: hidden; border-radius: 6px; position: relative; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.gallery figure:hover img { transform: scale(1.05); }
.gallery figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: .6rem .9rem; font-size: .8rem; color: #fff; background: linear-gradient(transparent, rgba(0,0,0,.65)); }
.gallery figure:nth-child(1) { grid-column: span 3; grid-row: span 2; }
.gallery figure:nth-child(2), .gallery figure:nth-child(3) { grid-column: span 3; }
.gallery figure:nth-child(n+4) { grid-column: span 2; }
@media (max-width: 760px) { .gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; } .gallery figure { grid-column: span 1 !important; grid-row: span 1 !important; } }

/* Testimonials */
.quote { margin: 0; background: var(--white); border: 1px solid var(--line); padding: 1.5rem 1.6rem; border-radius: 6px; display: flex; flex-direction: column; gap: .8rem; }
.quote__head { display: flex; flex-direction: column; gap: .2rem; padding-bottom: .7rem; border-bottom: 1px solid var(--line); }
.quote__head b { font-weight: 600; font-size: .95rem; }
.quote__stars { color: var(--gold); letter-spacing: .2em; font-size: .95rem; }
.quote p { font-size: .93rem; line-height: 1.7; color: var(--ink-2); flex: 1; margin: 0; }
.quote footer { font-size: .8rem; color: var(--muted); }
.quote footer b { color: var(--ink); font-weight: 600; }

/* Blog */
.post-card { display: flex; flex-direction: column; }
.post-card img { aspect-ratio: 16/10; object-fit: cover; width: 100%; border-radius: 4px; transition: opacity .3s; }
.post-card a:hover img { opacity: .9; }
.post-card__body { padding: 1rem 0 0; display: flex; flex-direction: column; gap: .4rem; flex: 1; }
.post-card__meta { font-size: .74rem; color: var(--muted); letter-spacing: .08em; text-transform: uppercase; }
.post-card h3 { font-size: 1.25rem; margin: 0; }
.post-card h3 a:hover { color: var(--burgundy); }
.post-card p { color: var(--ink-2); font-size: .9rem; margin: 0; flex: 1; }
.post-card .link-arrow { font-size: .82rem; }
.prose { font-size: 1.05rem; line-height: 1.85; }
.prose h2 { font-size: clamp(1.7rem, 3vw, 2.2rem); margin-top: 2.2rem; }
.prose h3 { margin-top: 1.8rem; }
.prose ul { padding-left: 1.2rem; }
.prose img { border-radius: 6px; margin: 1.5rem 0; }
.prose blockquote { border-left: 3px solid var(--burgundy); margin: 1.5rem 0; padding-left: 1.2rem; font-family: var(--font-display); font-size: 1.25rem; }
.post-hero-img { border-radius: 8px; aspect-ratio: 21/9; object-fit: cover; width: 100%; margin-bottom: 2.5rem; }
.pagination { display: flex; gap: .4rem; justify-content: center; margin-top: 3rem; list-style: none; padding: 0; }
.pagination a, .pagination span { display: inline-block; min-width: 40px; text-align: center; padding: .55rem .7rem; border: 1px solid var(--line); border-radius: 3px; font-size: .9rem; background: var(--white); }
.pagination a:hover { border-color: var(--burgundy); color: var(--burgundy); }
.pagination .active span { background: var(--burgundy); color: #fff; border-color: var(--burgundy); }
.pagination .disabled span { opacity: .4; }

/* CTA band */
.cta-band { position: relative; color: #fff; text-align: center; padding: clamp(5rem, 11vw, 8rem) 0; background: #1b1b1b; overflow: hidden; isolation: isolate; }
.cta-band__bg { position: absolute; inset: 0; z-index: -2; background-size: cover; background-position: center; }
.cta-band::after { content: ""; position: absolute; inset: 0; z-index: -1; background: rgba(0,0,0,.55); }
.cta-band h2 { color: #fff; font-size: clamp(2.2rem, 4.8vw, 3.5rem); max-width: 820px; margin: 0 auto .8rem; }
.cta-band p { color: rgba(255,255,255,.9); max-width: 600px; margin: 0 auto 2rem; font-size: 1.08rem; }
.cta-band__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* Map */
.map-embed { border: 0; width: 100%; height: 420px; border-radius: var(--radius); display: block; }

/* Footer */
.footer { background: var(--ink); color: #ece6e6; font-size: .92rem; }
.footer__grid { display: grid; grid-template-columns: 1.3fr 1fr 1.1fr .8fr; gap: 2.5rem; padding: 4.5rem 0 3rem; }
@media (max-width: 900px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer__grid { grid-template-columns: 1fr; padding-top: 3.5rem; } }
.footer .brand__name { color: #fff; font-size: 2.5rem; }
.footer__about { margin-top: 1rem; max-width: 300px; color: #d6cfcf; }
.footer h4 { color: #fff; font-family: var(--font-display); font-size: 1.1rem; letter-spacing: .1em; text-transform: uppercase; margin: .4rem 0 1.1rem; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .6rem; }
.footer__contact li { display: flex; gap: .7rem; align-items: flex-start; }
.footer__contact svg { flex: none; margin-top: .25rem; }
.footer a:hover { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.footer__follow a { text-transform: uppercase; letter-spacing: .16em; font-size: .85rem; }
.footer__links { display: flex; flex-wrap: wrap; gap: .4rem 1.4rem; justify-content: center; padding: 1.2rem 0; border-top: 1px solid rgba(255,255,255,.08); font-size: .85rem; color: #cfc7c7; }
.footer__bottom { background: #141414; color: #bfb8b8; font-size: .82rem; }
.footer__bottom .container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: .6rem 1rem; padding: 1.1rem 0; }
@media (max-width: 560px) { .footer__bottom .container { justify-content: center; text-align: center; } }
.social { display: flex; gap: .6rem; margin-top: 1rem; }
.social a { width: 36px; height: 36px; border: 1px solid rgba(255,255,255,.3); border-radius: 50%; display: grid; place-items: center; transition: background .2s, color .2s; }
.info-card .social a:hover, .footer .social a:hover { background: #fff; color: var(--ink); }
.social svg { width: 16px; height: 16px; }

/* Motion */
.fade-up { animation: fadeUp .9s cubic-bezier(.2,.8,.2,1) both; animation-delay: var(--d, 0s); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
.alert { animation: fadeUp .45s cubic-bezier(.2,.8,.2,1) both; }
@supports (animation-timeline: view()) {
  @media (prefers-reduced-motion: no-preference) {
    .reveal { animation: revealIn linear both; animation-timeline: view(); animation-range: entry 0% entry 30%; }
  }
}
@keyframes revealIn { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
.btn .ripple { position: absolute; border-radius: 50%; background: rgba(255,255,255,.35); transform: scale(0); animation: ripple .6s ease-out forwards; pointer-events: none; }
.btn { position: relative; overflow: hidden; }
@keyframes ripple { to { transform: scale(4); opacity: 0; } }
@media (prefers-reduced-motion: reduce) {
  .fade-up, .reveal, .alert, .btn { animation: none !important; transition: none !important; }
}

/* ============================================================
   Content protection
   ============================================================ */
body.protected { -webkit-user-select: none; user-select: none; }
body.protected input, body.protected textarea, body.protected select { -webkit-user-select: text; user-select: text; }
body.protected img { -webkit-user-drag: none; pointer-events: none; }
body.protected a img, body.protected .gallery img { pointer-events: auto; }
.protect-toast {
  position: fixed; left: 50%; bottom: 1.5rem; transform: translate(-50%, 20px); z-index: 999; padding: .7rem 1.1rem; border-radius: 4px;
  background: rgba(37,37,37,.94); color: #fff; font-size: .85rem; opacity: 0; pointer-events: none; transition: .3s;
}
.protect-toast.show { opacity: 1; transform: translate(-50%, 0); }


/* ============================================================
   Refinements: finer type, gold hairlines, calmer components
   ============================================================ */
body { letter-spacing: .01em; line-height: 1.75; }
h1, h2, h3, h4 { font-weight: 500; letter-spacing: .005em; line-height: 1.08; }
h1 { font-size: clamp(2.8rem, 6vw, 4.6rem); }
h2 { font-size: clamp(2.3rem, 4.4vw, 3.5rem); }
h3 { font-size: 1.6rem; }
h1 em, h2 em { font-style: italic; }
.lead { font-size: 1.15rem; }

.eyebrow { font-family: var(--font-body); font-size: .72rem; font-weight: 500; letter-spacing: .3em; color: var(--burgundy); display: inline-flex; align-items: center; gap: .9rem; margin-bottom: .9rem; }
.eyebrow::before, .eyebrow::after { content: ""; width: 26px; height: 1px; background: var(--gold-line); }
.section--dark .eyebrow, .feature .eyebrow, .seasonal-banner .eyebrow, .eyebrow--light { color: #f0d9a8; }
.ornament { display: flex; align-items: center; justify-content: center; gap: .7rem; margin: .5rem auto 1.4rem; color: var(--gold-line); }
.ornament::before, .ornament::after { content: ""; width: 56px; height: 1px; background: currentColor; }
.ornament span { width: 7px; height: 7px; border: 1px solid currentColor; transform: rotate(45deg); }
.ornament--light { color: rgba(240,217,168,.85); }

/* Buttons: squared, finely tracked */
.btn { border-radius: 0; font-size: .72rem; letter-spacing: .22em; padding: 1rem 2.2rem; }
.btn--sm { padding: .7rem 1.3rem; font-size: .68rem; }
.btn--lg { padding: 1.15rem 2.6rem; }
.btn--primary, .btn--white, .btn--gold { box-shadow: none; }
.btn--primary:hover { box-shadow: 0 12px 26px rgba(83,23,33,.25); }

/* Header */
.header { background: rgba(255,246,247,.96); -webkit-backdrop-filter: saturate(140%) blur(8px); backdrop-filter: saturate(140%) blur(8px); }
.nav { gap: 2rem; }
.nav a { font-family: var(--font-body); font-size: .74rem; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-2); }
.nav a::after { bottom: -7px; background: var(--gold-line); }
.topbar { font-size: .78rem; letter-spacing: .04em; }
.topbar__promo { font-family: var(--font-body); font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; color: #f0d9a8; }
@media (max-width: 1240px) and (min-width: 1101px) { .nav { gap: 1.3rem; } .nav a { font-size: .7rem; letter-spacing: .16em; } }
.mobile-nav > a:not(.btn) { font-size: 1.75rem; font-weight: 500; }

/* Hero: slow crossfade between photographs */
.hero { min-height: clamp(600px, calc(100svh - var(--header-h) - 44px), 920px); }
.hero::after { background: radial-gradient(ellipse at center, rgba(15,8,8,.35) 0%, rgba(15,8,8,.62) 100%); }
.hero__slides { position: absolute; inset: 0; z-index: -2; overflow: hidden; background: #1a1414; }
.hero__slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; animation: heroSlide 24s linear infinite backwards; animation-delay: calc(var(--i) * 6s - 1.2s); will-change: opacity, transform; }
.hero__slide:first-child { opacity: 1; }
@keyframes heroSlide { 0% { opacity: 0; transform: scale(1.02); } 5% { opacity: 1; } 25% { opacity: 1; } 31% { opacity: 0; transform: scale(1.1); } 100% { opacity: 0; transform: scale(1.1); } }
.hero__eyebrow { font-size: .74rem; letter-spacing: .38em; text-transform: uppercase; color: #f0d9a8; margin-bottom: 1rem; }
.hero__title { font-size: clamp(4rem, 11vw, 8rem); font-weight: 500; letter-spacing: .02em; line-height: .95; margin: 0; }
.hero .ornament { margin: 1.2rem auto; }
.hero__sub { font-family: var(--font-display); font-style: italic; font-size: clamp(1.4rem, 2.6vw, 2.05rem); letter-spacing: .01em; margin: 0 auto 2.2rem; }
.hero__buttons { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }
.hero__links { margin-top: 1.7rem; display: flex; flex-wrap: wrap; justify-content: center; gap: .5rem 1rem; font-size: .7rem; letter-spacing: .24em; text-transform: uppercase; color: rgba(255,255,255,.85); }
.hero__links a { border-bottom: 1px solid rgba(240,217,168,.5); padding-bottom: 3px; transition: color .2s, border-color .2s; }
.hero__links a:hover { color: #fff; border-color: #fff; }
.hero__scroll { position: absolute; left: 50%; bottom: 1.5rem; width: 1px; height: 56px; background: rgba(255,255,255,.25); overflow: hidden; }
.hero__scroll span { position: absolute; left: 0; top: -40%; width: 1px; height: 40%; background: #fff; animation: scrollLine 2.2s ease-in-out infinite; }
@keyframes scrollLine { to { top: 100%; } }
@media (max-width: 600px) {
  .hero__buttons { flex-direction: column; align-items: center; }
  .hero__buttons .btn { width: min(260px, 100%); }
  .hero__scroll { display: none; }
}

/* Framed photographs */
.frame { position: relative; }
.frame::before { content: ""; position: absolute; inset: 16px -16px -16px 16px; border: 1px solid var(--gold-line); pointer-events: none; }
.frame img { position: relative; }
.story__media img, .split__img img, .seasonal > img, .feature__media:not(.feature__media--arch) img, .post-hero-img { border-radius: 2px; }
.story__body p { font-size: 1.02rem; }
.story__signature { font-family: var(--font-display); font-style: italic; font-size: 1.7rem; color: var(--burgundy); margin: .2rem 0 1.2rem; }

/* Burgundy bands */
.feature h2 { font-size: clamp(2.4rem, 4.2vw, 3.6rem); }
.feature p { font-weight: 300; font-size: 1.05rem; }
.feature .ornament { justify-content: flex-start; margin-left: 0; color: rgba(240,217,168,.8); }
@media (max-width: 860px) { .feature .ornament { justify-content: center; margin-left: auto; } }

/* Signature dishes */
.dishes { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2.2rem; }
@media (max-width: 1000px) { .dishes { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .dishes { grid-template-columns: 1fr; max-width: 320px; margin-inline: auto; } }
.dish-card { display: block; text-align: center; }
.dish-card__img { overflow: hidden; border-radius: 999px 999px 0 0; aspect-ratio: 3/4; margin-bottom: 1.3rem; }
.dish-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s cubic-bezier(.2,.8,.2,1); }
.dish-card:hover .dish-card__img img { transform: scale(1.06); }
.dish-card__cat { font-size: .66rem; letter-spacing: .3em; text-transform: uppercase; color: var(--gold-line); }
.dish-card h3 { font-size: 1.7rem; margin: .35rem 0; }
.dish-card p { font-size: .9rem; color: var(--muted); margin: 0 0 .5rem; }
.dish-card__price { font-family: var(--font-display); font-size: 1.35rem; font-weight: 600; color: var(--burgundy); }

/* Testimonials */
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); }
.testimonial { margin: 0; padding: .5rem 2.4rem; text-align: center; display: flex; flex-direction: column; align-items: center; }
.testimonial + .testimonial { border-left: 1px solid var(--line); }
.testimonial__mark { font-family: var(--font-display); font-size: 5rem; line-height: 1; height: 2.6rem; color: var(--gold-line); }
.testimonial blockquote { margin: 0 0 1.2rem; font-family: var(--font-display); font-style: italic; font-size: 1.3rem; line-height: 1.55; color: var(--ink); flex: 1; }
.testimonial figcaption { margin-top: .6rem; font-size: .72rem; letter-spacing: .26em; text-transform: uppercase; color: var(--ink-2); }
@media (max-width: 900px) {
  .testimonials { grid-template-columns: 1fr; gap: 2.5rem; }
  .testimonial + .testimonial { border-left: 0; border-top: 1px solid var(--line); padding-top: 2.5rem; }
}

/* Inner pages and components */
.page-hero { padding: clamp(3.5rem, 8vw, 6rem) 0 clamp(2rem, 4vw, 3rem); }
.page-hero h1 { font-size: clamp(2.8rem, 6vw, 4.4rem); margin: 0; }
.page-hero .ornament { margin: 1rem auto; }
.form-card, .set-card, .event-type, .quote, .info-card, .seasonal-banner, .map-embed, .gallery figure, .post-card img { border-radius: 2px; }
.form-card { box-shadow: 0 24px 60px rgba(83,23,33,.07); }
.field input, .field select, .field textarea { border-radius: 0; }
.field label, .set-course__title, .info-card dt, .footer h4 { font-family: var(--font-body); font-size: .7rem; font-weight: 500; letter-spacing: .24em; text-transform: uppercase; }
.info-card dt, .footer h4 { color: #f0d9a8; }
.event-type h3 { font-size: 1.5rem; }
.set-card__price { font-size: 3rem; }
.set-course li b { font-size: 1.2rem; font-weight: 500; }
.menu-tabs a { font-family: var(--font-body); font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; }
.menu-cat__head h2 { font-size: clamp(2.1rem, 3.6vw, 2.7rem); }
.menu-item__name { font-size: 1.32rem; font-weight: 500; }
.menu-item__price { font-size: 1.2rem; font-weight: 600; }
.post-card h3 { font-size: 1.6rem; font-weight: 500; }
.post-card__meta { font-size: .66rem; letter-spacing: .22em; }
.seasonal__price { font-size: 2.6rem; font-weight: 600; }
.cta-band h2 { font-size: clamp(2.6rem, 5vw, 4.2rem); }
@media (min-width: 1025px) and (hover: hover) { .cta-band__bg { background-attachment: fixed; } }
.prose { font-size: 1.08rem; }
.prose h2 { font-size: clamp(2rem, 3.4vw, 2.7rem); }
.footer__logo img { width: 110px; height: 110px; }
.footer h4 { margin-bottom: 1.2rem; }

@media (prefers-reduced-motion: reduce) { .hero__slide, .hero__scroll span { animation: none !important; } }


/* Menu: list and grid views */
.menu-tabs__bar { display: flex; align-items: center; gap: 1.2rem; }
.menu-tabs__bar .menu-tabs__inner { flex: 1; min-width: 0; }
.view-toggle { flex: none; display: inline-flex; border: 1px solid var(--line); background: var(--white); }
.view-toggle a { display: inline-flex; align-items: center; gap: .45rem; padding: .5rem .9rem; font-size: .66rem; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-2); border: 0 !important; transition: background .2s, color .2s; }
.view-toggle a + a { border-left: 1px solid var(--line) !important; }
.view-toggle a:hover { color: var(--burgundy); }
.view-toggle a.active { background: var(--burgundy); color: #fff; }
.view-toggle svg { width: 15px; height: 15px; }
@media (max-width: 800px) { .view-toggle span { display: none; } .view-toggle a { padding: .5rem .6rem; } }

.menu-item__media { flex: none; width: 76px; height: 76px; overflow: hidden; background: var(--blush-2); position: relative; }
.menu-item__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.8,.2,1); }
.menu-item:hover .menu-item__media img { transform: scale(1.08); }
.menu-item__media--empty { display: grid; place-items: center; }
.menu-item__media--empty img { width: 58% !important; height: 58% !important; object-fit: contain; opacity: .22; transform: none !important; }
.menu-view--list .menu-item { align-items: center; padding-bottom: 1.05rem; border-bottom: 1px solid rgba(234,223,224,.6); }
.menu-view--list .menu-item:last-child { border-bottom: 0; }
@media (max-width: 560px) { .menu-item__media { width: 60px; height: 60px; } }

.menu-view--grid .menu-list { grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
@media (max-width: 900px) { .menu-view--grid .menu-list { grid-template-columns: repeat(2, 1fr); gap: 1.1rem; } }
@media (max-width: 480px) {
  .menu-view--grid .menu-list { grid-template-columns: repeat(2, 1fr); gap: .8rem; }
  .menu-view--grid .menu-item__body { padding: .7rem .75rem .85rem; }
  .menu-view--grid .menu-item__name { font-size: 1.1rem; }
  .menu-view--grid .menu-item__name .tag { margin-left: .2rem; }
  .menu-view--grid .menu-item__desc { display: none; }
  .menu-view--grid .menu-item__price { font-size: .95rem; padding-top: .45rem; }
}
.menu-view--grid .menu-item { flex-direction: column; align-items: stretch; gap: 0; height: 100%; background: var(--white); border: 1px solid var(--line); transition: box-shadow .35s, transform .35s; }
.menu-view--grid .menu-item:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.menu-view--grid .menu-item__media { width: 100%; height: auto; aspect-ratio: 4 / 3; }
.menu-view--grid .menu-item__body { display: flex; flex-direction: column; flex: 1; padding: 1.1rem 1.2rem 1.25rem; }
.menu-view--grid .menu-item__row { display: contents; }
.menu-view--grid .menu-item__name { order: 1; font-size: 1.4rem; line-height: 1.2; }
.menu-view--grid .menu-item__desc { order: 2; margin-top: .35rem; }
.menu-view--grid .menu-item__line { display: none; }
.menu-view--grid .menu-item__price { order: 3; margin: auto 0 0; padding-top: .8rem; white-space: normal; color: var(--burgundy); font-size: 1.15rem; }
@media (max-width: 480px) { .menu-view--grid .menu-item__media { aspect-ratio: 1 / 1; } }
/* Phones, list view: price drops under the name and may wrap (long size variants). */
@media (max-width: 560px) {
  .menu-view--list .menu-item { align-items: flex-start; }
  .menu-view--list .menu-item__row { flex-direction: column; align-items: flex-start; gap: .1rem; }
  .menu-view--list .menu-item__price { white-space: normal; margin-left: 0; color: var(--burgundy); font-size: 1.05rem; }
  .menu-item__price { white-space: normal; }
}

.menu-item__price { line-height: 1.4; }

/* Menu page: printed-menu layout */
.mn-hero { position: relative; isolation: isolate; overflow: hidden; background: #1b1414; color: #fff; text-align: center; padding: clamp(4.5rem, 10vw, 7.5rem) 0 clamp(3.5rem, 8vw, 5.5rem); }
.mn-hero__bg { position: absolute; inset: 0; z-index: -2; background-size: cover; background-position: center; transform: scale(1.04); }
.mn-hero::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(15,8,8,.55), rgba(15,8,8,.72)); }
.mn-hero h1 { color: #fff; font-size: clamp(3.2rem, 8vw, 5.6rem); line-height: 1; margin: 0; }
.mn-hero .ornament { margin: 1.1rem auto; }
.mn-hero p { font-family: var(--font-display); font-style: italic; font-size: clamp(1.2rem, 2.2vw, 1.6rem); color: rgba(255,255,255,.92); max-width: 640px; margin: 0 auto; }
.mn-hero .hero__links { margin-top: 1.4rem; }

.mn-switch { background: var(--white); border-bottom: 1px solid var(--line); }
.mn-switch__inner { display: flex; justify-content: center; align-items: center; gap: 2.4rem; padding: 1.3rem 0 1.1rem; }
.mn-switch a { position: relative; font-family: var(--font-display); font-size: clamp(1.35rem, 2.4vw, 1.75rem); font-weight: 500; color: var(--muted); padding-bottom: .35rem; transition: color .2s; }
.mn-switch a::after { content: ""; position: absolute; left: 15%; right: 15%; bottom: 0; height: 1px; background: var(--gold-line); transform: scaleX(0); transition: transform .3s; }
.mn-switch a:hover { color: var(--ink); }
.mn-switch a.active { color: var(--burgundy); }
.mn-switch a.active::after, .mn-switch a:hover::after { transform: scaleX(1); }
.mn-switch__sep { width: 7px; height: 7px; border: 1px solid var(--gold-line); transform: rotate(45deg); }
.menu-tabs { background: rgba(255,255,255,.97); }

.mn-body { padding: clamp(1.5rem, 4vw, 2.5rem) 0 clamp(3rem, 6vw, 4.5rem); }
.mn-key { margin: 0 auto; padding-bottom: .5rem; }
.mn-cat { padding: clamp(3rem, 6vw, 4.5rem) 0; scroll-margin-top: calc(var(--header-h) + 56px); }
.mn-cat + .mn-cat { border-top: 1px solid var(--line); }
.mn-cat__head { text-align: center; max-width: 660px; margin: 0 auto clamp(2rem, 4vw, 3rem); }
.mn-cat__head .eyebrow { margin-bottom: .5rem; }
.mn-cat__head h2 { font-size: clamp(2.4rem, 4.5vw, 3.4rem); margin: 0; }
.mn-cat__head .ornament { margin: .8rem auto; }
.mn-cat__note { font-family: var(--font-display); font-style: italic; font-size: 1.15rem; line-height: 1.5; color: var(--muted); margin: 0; }

/* List view */
.mn-cat--photo .mn-cat__layout { display: grid; grid-template-columns: minmax(240px, 330px) 1fr; gap: clamp(2.5rem, 5vw, 4.5rem); align-items: start; }
.mn-cat--flip .mn-cat__layout { grid-template-columns: 1fr minmax(240px, 330px); }
.mn-cat--flip .mn-cat__photo { order: 2; }
.mn-cat__photo { margin: 0; position: sticky; top: calc(var(--header-h) + 90px); }
.mn-cat__photo img { display: block; width: 100%; height: auto; aspect-ratio: 4 / 5; object-fit: cover; }
.mn-cat__photo.frame::before { inset: 14px -14px -14px 14px; }
.mn-cat--flip .mn-cat__photo.frame::before { inset: 14px 14px -14px -14px; }

.mn-items { display: grid; grid-template-columns: 1fr 1fr; column-gap: clamp(2rem, 5vw, 4rem); row-gap: 1.7rem; }
.mn-cat--photo .mn-cat__layout .mn-items { grid-template-columns: 1fr; row-gap: 1.5rem; }
.mn-item { min-width: 0; }
.mn-item__head { display: flex; align-items: baseline; gap: .55rem; }
.mn-item__name { font-family: var(--font-display); font-size: 1.42rem; font-weight: 600; line-height: 1.2; letter-spacing: .01em; margin: 0; min-width: 0; }
.mn-item__tags { display: inline-flex; gap: .25rem; flex: none; transform: translateY(-.15em); }
.mn-item__tags .tag { margin-left: 0; }
.mn-item__leader { flex: 1; min-width: 1.2rem; border-bottom: 1px dotted #c3ad85; transform: translateY(-.32em); }
.mn-item__price { flex: none; font-family: var(--font-display); font-size: 1.35rem; font-weight: 600; color: var(--burgundy); white-space: nowrap; }
.mn-item__desc { font-family: var(--font-display); font-style: italic; font-size: 1.1rem; line-height: 1.45; color: #6a6062; margin: .2rem 0 0; }
.mn-item__variants { list-style: none; margin: .45rem 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: .25rem 1.5rem; }
.mn-item__variants li { display: inline-flex; align-items: baseline; gap: .5rem; font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; color: var(--burgundy); }
.mn-item__variants li span { font-family: var(--font-body); font-size: .63rem; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-2); }

/* Grid view: photographed dishes as framed cards, the rest listed underneath */
.mn-grid { display: none; }
.mn-view--grid .mn-cat__layout { display: none; }
.mn-view--grid .mn-grid { display: block; }
.mn-cards { display: flex; flex-wrap: wrap; justify-content: center; gap: 2.8rem 2.2rem; }
.mn-cards > .mn-card { flex: 0 1 290px; }
.mn-cards + .mn-items--rest { margin-top: clamp(2.8rem, 5vw, 3.8rem); padding-top: clamp(2.2rem, 4vw, 3rem); border-top: 1px solid var(--line); }
.mn-card { display: flex; flex-direction: column; align-items: center; text-align: center; min-width: 0; }
.mn-card__media { position: relative; width: 100%; aspect-ratio: 4 / 5; overflow: hidden; margin-bottom: 1.25rem; background: var(--blush-2); }
.mn-card__media img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s cubic-bezier(.2,.8,.2,1); }
.mn-card:hover .mn-card__media img { transform: scale(1.05); }
.mn-card__media::after { content: ""; position: absolute; inset: 10px; border: 1px solid rgba(255,255,255,.6); pointer-events: none; }
.mn-card__name { font-family: var(--font-display); font-size: 1.55rem; font-weight: 600; line-height: 1.2; margin: 0; }
.mn-card .mn-item__tags { margin-top: .4rem; transform: none; }
.mn-card .mn-item__desc { margin-top: .35rem; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.mn-card .mn-item__variants { justify-content: center; margin-top: .7rem; gap: .2rem 1.1rem; }
.mn-card__price { margin-top: .7rem; display: inline-flex; align-items: center; gap: .7rem; font-family: var(--font-display); font-size: 1.35rem; font-weight: 600; color: var(--burgundy); }
.mn-card__price::before, .mn-card__price::after { content: ""; width: 18px; height: 1px; background: var(--gold-line); }

.mn-foot { text-align: center; padding-top: 2.5rem; border-top: 1px solid var(--line); }
.mn-foot p { color: var(--muted); font-size: .85rem; max-width: 620px; margin: 0 auto; }

@media (max-width: 900px) {
  .mn-cat--photo .mn-cat__layout, .mn-cat--flip .mn-cat__layout { grid-template-columns: 1fr; gap: 2.2rem; }
  .mn-cat__photo, .mn-cat--flip .mn-cat__photo { position: relative; top: auto; order: 0; width: min(100%, 520px); margin: 0 auto; }
  .mn-cat__photo img { aspect-ratio: 16 / 10; }
  .mn-cat__photo.frame::before, .mn-cat--flip .mn-cat__photo.frame::before { inset: 10px -10px -10px 10px; }
  .mn-items { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .mn-switch__inner { gap: 1.4rem; }
  .mn-item__name { font-size: 1.28rem; }
  .mn-item__price { font-size: 1.22rem; }
  .mn-item__desc { font-size: 1.02rem; }
  .mn-cards { gap: 1.8rem .8rem; }
  .mn-cards > .mn-card { flex: 0 1 calc(50% - .4rem); }
  .mn-card__media { margin-bottom: .8rem; }
  .mn-card__media::after { inset: 6px; }
  .mn-card__name { font-size: 1.12rem; }
  .mn-card .mn-item__desc { display: none; }
  .mn-card__price { font-size: 1.08rem; margin-top: .4rem; }
  .mn-card__price::before, .mn-card__price::after { width: 10px; }
  .mn-card .mn-item__variants { gap: 0 .7rem; margin-top: .4rem; }
  .mn-card .mn-item__variants li { font-size: 1rem; gap: .3rem; }
  .mn-card .mn-item__variants li span { font-size: .56rem; letter-spacing: .12em; }
}


/* Christmas menu page */
.btn--xmas { background: #c9a45c; color: #1d1a12; border-color: #c9a45c; }
.btn--xmas:hover { background: #d8b673; border-color: #d8b673; box-shadow: 0 12px 26px rgba(0,0,0,.3); }
.xm-hero { position: relative; isolation: isolate; overflow: hidden; background: #0a2a20; color: #fff; text-align: center; padding: clamp(5rem, 12vw, 8.5rem) 0 clamp(4rem, 9vw, 6.5rem); }
.xm-hero__bg { position: absolute; inset: 0; z-index: -3; background-size: cover; background-position: center; }
.xm-hero::after { content: ""; position: absolute; inset: 0; z-index: -2; background: radial-gradient(ellipse at center, rgba(10,42,32,.58) 0%, rgba(7,28,21,.93) 100%); }
.xm-snow, .xm-snow::before { position: absolute; inset: 0; pointer-events: none; background-repeat: repeat; }
.xm-snow { z-index: -1; opacity: .75;
  background-image: radial-gradient(circle 1.6px at 20px 30px, #fff 98%, transparent), radial-gradient(circle 1.1px at 95px 125px, #fff 98%, transparent), radial-gradient(circle 2px at 170px 60px, rgba(255,255,255,.9) 98%, transparent), radial-gradient(circle 1.2px at 235px 175px, #fff 98%, transparent);
  background-size: 260px 220px; animation: xmSnow 16s linear infinite; }
.xm-snow::before { content: ""; opacity: .55; filter: blur(.6px);
  background-image: radial-gradient(circle 2.6px at 60px 80px, #fff 98%, transparent), radial-gradient(circle 2px at 250px 260px, #fff 98%, transparent), radial-gradient(circle 3px at 330px 40px, rgba(255,255,255,.85) 98%, transparent);
  background-size: 380px 340px; animation: xmSnowSlow 26s linear infinite; }
@keyframes xmSnow { from { background-position: 0 0; } to { background-position: 40px 220px; } }
@keyframes xmSnowSlow { from { background-position: 0 0; } to { background-position: -60px 340px; } }
.xm-eyebrow { font-size: .74rem; letter-spacing: .38em; text-transform: uppercase; color: #e6cf98; margin-bottom: 1rem; }
.xm-hero h1 { color: #fff; font-size: clamp(3rem, 7.5vw, 5.8rem); line-height: 1; margin: 0; text-shadow: 0 4px 30px rgba(0,0,0,.35); }
.xm-ornament { display: flex; align-items: center; justify-content: center; gap: .9rem; color: #d9b877; margin: 1.3rem auto; }
.xm-ornament::before, .xm-ornament::after { content: ""; width: 70px; height: 1px; background: currentColor; opacity: .8; }
.xm-ornament svg { width: 18px; height: 18px; }
.xm-lead { font-family: var(--font-display); font-style: italic; font-size: clamp(1.2rem, 2.2vw, 1.6rem); line-height: 1.5; color: rgba(255,255,255,.92); max-width: 700px; margin: 0 auto 2.2rem; }

.xm-facts { background: #0d3326; color: #f4ecdc; border-top: 1px solid rgba(217,184,119,.35); border-bottom: 1px solid rgba(217,184,119,.35); }
.xm-facts__grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.xm-fact { display: flex; flex-direction: column; align-items: center; text-align: center; gap: .3rem; padding: 1.9rem 1rem; }
.xm-fact + .xm-fact { border-left: 1px solid rgba(217,184,119,.22); }
.xm-fact svg { width: 22px; height: 22px; color: #d9b877; margin-bottom: .35rem; }
.xm-fact__label { font-size: .66rem; letter-spacing: .28em; text-transform: uppercase; color: #d9b877; }
.xm-fact__value { font-family: var(--font-display); font-size: 1.6rem; font-weight: 500; line-height: 1.2; color: #fff; }
.xm-fact__value small { font-family: var(--font-body); font-size: .72rem; letter-spacing: .08em; color: rgba(255,255,255,.7); }
@media (max-width: 700px) {
  .xm-facts__grid { grid-template-columns: 1fr; }
  .xm-fact { padding: 1.3rem 1rem; }
  .xm-fact + .xm-fact { border-left: 0; border-top: 1px solid rgba(217,184,119,.22); }
}

.xm-menu { background-color: #0a2a20; background-image: radial-gradient(circle at 1px 1px, rgba(217,184,119,.13) 1px, transparent 0); background-size: 24px 24px; padding: clamp(3.5rem, 8vw, 6rem) 0; }
.xm-card { position: relative; width: min(760px, calc(100% - 2.5rem)); margin-inline: auto; background: #fbf6ec; color: var(--ink); text-align: center; padding: clamp(2.8rem, 6vw, 4.5rem) clamp(1.6rem, 6vw, 4.5rem); box-shadow: 0 30px 80px rgba(0,0,0,.45); }
.xm-card::before, .xm-card::after { content: ""; position: absolute; pointer-events: none; }
.xm-card::before { inset: 12px; border: 1px solid #c9a45c; }
.xm-card::after { inset: 17px; border: 1px solid rgba(201,164,92,.4); }
.xm-holly { width: 76px; height: 38px; margin: 0 auto .8rem; display: block; }
.xm-card .eyebrow { margin-bottom: .4rem; }
.xm-card h2 { color: #7a1422; font-size: clamp(2.5rem, 5vw, 3.5rem); margin: 0; }
.xm-card__date { font-family: var(--font-display); font-style: italic; font-size: 1.2rem; color: var(--muted); margin: .2rem 0 0; }
.xm-course { margin-top: 2.2rem; }
.xm-ornament--card { color: #b8955a; margin: 2.2rem auto 0; }
.xm-ornament--card::before, .xm-ornament--card::after { width: 48px; }
.xm-ornament--card svg { width: 12px; height: 12px; }
.xm-course h3 { font-family: var(--font-body); font-size: .74rem; font-weight: 600; letter-spacing: .3em; text-transform: uppercase; color: #0f3b2e; margin: 0 0 .35rem; }
.xm-course__intro { font-family: var(--font-display); font-style: italic; font-size: 1.05rem; color: var(--muted); margin: 0 0 1rem; }
.xm-dish h4 { font-family: var(--font-display); font-size: 1.55rem; font-weight: 600; line-height: 1.25; margin: 0; }
.xm-dish h4 .tag { margin-left: .45rem; transform: translateY(-.2em); }
.xm-dish p { font-family: var(--font-display); font-style: italic; font-size: 1.12rem; line-height: 1.45; color: #6a6062; max-width: 520px; margin: .25rem auto 0; }
.xm-or { display: flex; align-items: center; justify-content: center; gap: .7rem; margin: .7rem 0; font-family: var(--font-display); font-style: italic; font-size: 1.05rem; color: #b8955a; }
.xm-or::before, .xm-or::after { content: ""; width: 24px; height: 1px; background: currentColor; }
.xm-price { margin-top: 2.6rem; padding-top: 2rem; border-top: 1px solid rgba(201,164,92,.5); }
.xm-price b { font-family: var(--font-display); font-size: 3rem; font-weight: 600; line-height: 1; color: #7a1422; }
.xm-price small { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); }
.xm-conditions { font-family: var(--font-display); font-style: italic; font-size: 1.05rem; color: var(--muted); max-width: 520px; margin: .9rem auto 0; }
.xm-card__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: .9rem; margin-top: 2rem; }
@media (max-width: 560px) {
  .xm-card::before { inset: 8px; } .xm-card::after { inset: 12px; }
  .xm-dish h4 { font-size: 1.35rem; }
  .xm-price b { font-size: 2.5rem; }
}
@media (prefers-reduced-motion: reduce) { .xm-snow, .xm-snow::before { animation: none !important; } }


/* Breadcrumbs */
.crumbs-nav { display: flex; justify-content: center; margin-bottom: .75rem; }
.narrow > .crumbs-nav { justify-content: flex-start; }
.crumbs {
  display: inline-flex; align-items: center; flex-wrap: wrap; justify-content: center; row-gap: .3rem;
  list-style: none; margin: 0; padding: .16rem .6rem .16rem .16rem; max-width: 100%;
  background: #fff; border: 1px solid rgba(184,149,90,.38); border-radius: 999px;
  box-shadow: 0 8px 22px rgba(83,23,33,.08), inset 0 1px 0 #fff;
  font-family: var(--font-body); font-size: .58rem; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; line-height: 1;
}
.crumbs li { display: inline-flex; align-items: center; min-width: 0; }
.crumbs li + li::before {
  content: ""; flex: none; width: 4px; height: 4px; margin: 0 .4rem 0 .3rem;
  border-top: 1.5px solid var(--gold-line); border-right: 1.5px solid var(--gold-line); transform: rotate(45deg);
}
.crumbs a { color: var(--ink-2); padding: .18rem 0; transition: color .2s; }
.crumbs a:hover { color: var(--burgundy); }
.crumbs li:not(.crumbs__home) a span { background: linear-gradient(currentColor, currentColor) 0 100% / 0 1px no-repeat; padding-bottom: 2px; transition: background-size .3s; }
.crumbs li:not(.crumbs__home) a:hover span { background-size: 100% 1px; }
.crumbs__home a {
  width: 20px; height: 20px; padding: 0; border-radius: 50%; display: grid; place-items: center;
  background: linear-gradient(135deg, #6d2230, var(--burgundy)); color: #fff; box-shadow: 0 3px 8px rgba(83,23,33,.3);
  transition: transform .25s, box-shadow .25s;
}
.crumbs__home a:hover { color: #fff; transform: scale(1.08); box-shadow: 0 5px 14px rgba(83,23,33,.35); }
.crumbs__home svg { width: 11px; height: 11px; }
.crumbs__sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.crumbs__current { display: inline-block; max-width: 34ch; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; padding: .18rem 0; color: var(--burgundy); font-weight: 600; }

/* On photo headers */
.crumbs--dark {
  background: rgba(20,12,12,.32); border-color: rgba(240,217,168,.42);
  -webkit-backdrop-filter: blur(10px) saturate(140%); backdrop-filter: blur(10px) saturate(140%);
  box-shadow: 0 10px 30px rgba(0,0,0,.25), inset 0 1px 0 rgba(255,255,255,.12);
}
.crumbs--dark a { color: rgba(255,255,255,.86); }
.crumbs--dark a:hover { color: #fff; }
.crumbs--dark li + li::before { border-color: #d9b877; }
.crumbs--dark .crumbs__home a { background: linear-gradient(135deg, #e0bf7c, #c9a45c); color: #2a2214; box-shadow: 0 3px 10px rgba(0,0,0,.3); }
.crumbs--dark .crumbs__home a:hover { color: #2a2214; }
.crumbs--dark .crumbs__current { color: #f0d9a8; }

@media (max-width: 560px) {
  .crumbs { font-size: .52rem; letter-spacing: .1em; padding-right: .5rem; }
  .crumbs li + li::before { margin: 0 .3rem 0 .24rem; }
  .crumbs__home a { width: 18px; height: 18px; }
  .crumbs__home svg { width: 10px; height: 10px; }
  .crumbs__current { max-width: 17ch; }
}


/* ============================================================
   Online ordering
   ============================================================ */
body.modal-open { overflow: hidden; }
.mn-add { flex: none; align-self: center; width: 30px; height: 30px; margin-left: .75rem; padding: 0; border: 1px solid var(--burgundy); border-radius: 50%; background: transparent; color: var(--burgundy); display: inline-grid; place-items: center; cursor: pointer; transition: background .2s, color .2s, transform .15s; }
.mn-add:hover { background: var(--burgundy); color: #fff; }
.mn-add:active { transform: scale(.9); }
.mn-add:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.mn-add svg { width: 14px; height: 14px; }
.mn-item__spacer { flex: 1; }
.mn-add--text { width: auto; height: auto; margin: 1rem 0 0; padding: .65rem 1.3rem; border-radius: 0; font-family: var(--font-body); font-size: .66rem; font-weight: 500; letter-spacing: .22em; text-transform: uppercase; display: inline-flex; }

.ord-bar { background: var(--burgundy); color: #fff; }
.ord-bar__inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: .8rem 2rem; padding: .85rem 0; }
.ord-bar__text { display: flex; align-items: baseline; flex-wrap: wrap; gap: .3rem 1rem; font-size: .88rem; color: rgba(255,255,255,.82); }
.ord-bar__title { font-family: var(--font-display); font-size: 1.45rem; font-weight: 500; color: #fff; }
.ord-bar__actions { display: flex; align-items: center; flex-wrap: wrap; gap: .6rem; }
.ord-bar__type { display: inline-flex; align-items: center; gap: .45rem; padding: .6rem 1rem; border: 1px solid rgba(240,217,168,.6); background: transparent; color: #f0d9a8; font-family: var(--font-body); font-size: .66rem; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; cursor: pointer; transition: background .2s; }
.ord-bar__type:hover { background: rgba(255,255,255,.08); }
.ord-bar__type svg { width: 13px; height: 13px; }
.ord-bar__view { background: #fff; color: var(--burgundy); border-color: #fff; }
.ord-bar__view:hover { background: var(--blush); }
@media (max-width: 760px) { .ord-bar__inner, .ord-bar__text { justify-content: center; text-align: center; } }

.ord-layer { position: fixed; inset: 0; z-index: 200; display: grid; place-items: center; padding: 1rem; }
.ord-layer[hidden] { display: none; }
#order-type-modal { z-index: 220; }
#order-option-modal { z-index: 215; }
.ord-layer__backdrop { position: absolute; inset: 0; background: rgba(20,12,12,.55); opacity: 0; transition: opacity .25s; }
.ord-layer.is-open .ord-layer__backdrop { opacity: 1; }
.ord-modal { position: relative; width: min(780px, 100%); max-height: calc(100svh - 2rem); overflow: auto; padding: clamp(2.2rem, 5vw, 3rem) clamp(1.3rem, 4vw, 2.8rem); background: #fffdfb; text-align: center; box-shadow: 0 30px 80px rgba(0,0,0,.35); opacity: 0; transform: translateY(16px) scale(.98); transition: opacity .25s, transform .25s; }
.ord-modal::before { content: ""; position: absolute; inset: 10px; border: 1px solid rgba(184,149,90,.45); pointer-events: none; }
.ord-layer.is-open .ord-modal { opacity: 1; transform: none; }
.ord-modal--sm { width: min(460px, 100%); }
.ord-modal h2 { font-size: clamp(1.9rem, 4vw, 2.5rem); margin: 0; }
.ord-modal .ornament { margin: .8rem auto 1.6rem; }
.ord-modal__close { position: absolute; top: 14px; right: 14px; z-index: 1; width: 38px; height: 38px; border: 0; background: transparent; color: var(--ink-2); font-size: 1.7rem; line-height: 1; cursor: pointer; }
.ord-modal__close:hover { color: var(--burgundy); }
.ord-types { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1rem; }
.ord-type { display: flex; flex-direction: column; align-items: center; gap: .35rem; padding: 1.6rem 1.1rem 1.4rem; border: 1px solid var(--line); background: #fff; color: var(--ink); font-family: var(--font-body); cursor: pointer; transition: border-color .2s, box-shadow .25s, transform .25s; }
.ord-type:hover { border-color: var(--gold-line); box-shadow: var(--shadow); transform: translateY(-2px); }
.ord-type.is-selected { border-color: var(--burgundy); box-shadow: inset 0 0 0 1px var(--burgundy); }
.ord-type__icon { width: 58px; height: 58px; margin-bottom: .5rem; border-radius: 50%; background: var(--blush-2); color: var(--burgundy); display: grid; place-items: center; transition: background .2s, color .2s; }
.ord-type:hover .ord-type__icon, .ord-type.is-selected .ord-type__icon { background: var(--burgundy); color: #fff; }
.ord-type__icon svg { width: 25px; height: 25px; }
.ord-type b { font-family: var(--font-display); font-size: 1.6rem; font-weight: 600; line-height: 1.1; }
.ord-type__desc { font-size: .84rem; line-height: 1.5; color: var(--muted); }

.ord-options { display: grid; gap: .6rem; margin: 1.5rem 0; text-align: left; }
.ord-option { display: flex; align-items: center; gap: .8rem; padding: .85rem 1rem; border: 1px solid var(--line); background: #fff; cursor: pointer; transition: border-color .2s, box-shadow .2s; }
.ord-option:hover { border-color: var(--gold-line); }
.ord-option:has(input:checked) { border-color: var(--burgundy); box-shadow: inset 0 0 0 1px var(--burgundy); }
.ord-option input { width: 17px; height: 17px; margin: 0; accent-color: var(--burgundy); }
.ord-option span { flex: 1; font-family: var(--font-display); font-size: 1.28rem; font-weight: 600; }
.ord-option b { font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; color: var(--burgundy); }
.ord-qty-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.4rem; font-size: .7rem; letter-spacing: .22em; text-transform: uppercase; color: var(--ink-2); }
.qty { display: inline-flex; align-items: center; border: 1px solid var(--line); background: #fff; }
.qty button { width: 38px; height: 38px; border: 0; background: transparent; color: var(--burgundy); font-size: 1.15rem; line-height: 1; cursor: pointer; }
.qty button:hover { background: var(--blush-2); }
.qty output { min-width: 34px; text-align: center; font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; }
.qty--sm button { width: 30px; height: 30px; font-size: 1rem; }
.qty--sm output { min-width: 26px; font-size: 1.1rem; }

.ord-layer--drawer { display: flex; justify-content: flex-end; padding: 0; }
.cart { position: relative; display: flex; flex-direction: column; width: min(430px, 100vw); height: 100%; background: #fffdfb; box-shadow: -20px 0 60px rgba(0,0,0,.2); transform: translateX(100%); transition: transform .3s cubic-bezier(.2,.8,.2,1); }
.ord-layer.is-open .cart { transform: none; }
.cart__head { display: flex; align-items: flex-start; justify-content: space-between; padding: 1.5rem 1.6rem 1rem; border-bottom: 1px solid var(--line); }
.cart__head .eyebrow { margin-bottom: .15rem; }
.cart__head h2 { font-size: 2.3rem; margin: 0; }
.cart__head .ord-modal__close { position: static; margin: -.3rem -.6rem 0 0; }
.cart__type { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .8rem 1.6rem; background: var(--blush-2); font-size: .7rem; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; color: var(--burgundy); }
.cart__type button { border: 0; background: none; color: var(--ink-2); font: inherit; letter-spacing: .12em; text-decoration: underline; text-underline-offset: 3px; cursor: pointer; }
.cart__lines { flex: 1; overflow: auto; padding: .3rem 1.6rem; }
.cart__empty { padding: 3rem 0; text-align: center; color: var(--muted); }
.cart__empty p { margin-bottom: .6rem; font-family: var(--font-display); font-size: 1.4rem; font-style: italic; }
.cart-line { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: .45rem 1rem; padding: 1rem 0; border-bottom: 1px solid var(--line); }
.cart-line__name { font-family: var(--font-display); font-size: 1.28rem; font-weight: 600; line-height: 1.2; }
.cart-line__name small { display: block; margin-top: .2rem; font-family: var(--font-body); font-size: .62rem; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); }
.cart-line__total { font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; color: var(--burgundy); text-align: right; }
.cart-line__unit { font-size: .8rem; color: var(--muted); }
.cart-line__remove { padding: 0; border: 0; background: none; color: var(--ink-2); font: inherit; text-decoration: underline; text-underline-offset: 2px; cursor: pointer; }
.cart-line__remove:hover { color: var(--burgundy); }
.cart__foot { display: grid; gap: .65rem; padding: 1.2rem 1.6rem calc(1.5rem + env(safe-area-inset-bottom, 0px)); border-top: 1px solid var(--line); background: #fff; }
.cart__row[hidden], .sum-line[hidden], .cart__notice[hidden] { display: none; }
.cart__row { display: flex; align-items: baseline; justify-content: space-between; font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-2); }
.cart__row b { font-family: var(--font-display); font-size: 1.55rem; font-weight: 600; letter-spacing: 0; color: var(--ink); }
.cart__notice { margin: 0; padding: .65rem .8rem; background: #fdf4e3; color: #7a5a17; font-size: .84rem; text-align: center; }
.btn.is-disabled, .btn:disabled { opacity: .45; cursor: not-allowed; }
.btn.is-disabled:hover, .btn:disabled:hover { transform: none; box-shadow: none; }

.cart-fab { position: fixed; right: clamp(1rem, 3vw, 2rem); bottom: calc(clamp(1rem, 3vw, 2rem) + env(safe-area-inset-bottom, 0px)); z-index: 150; width: 62px; height: 62px; border: 0; border-radius: 50%; background: var(--burgundy); color: #fff; display: grid; place-items: center; cursor: pointer; box-shadow: 0 14px 34px rgba(83,23,33,.45); transition: transform .25s; }
.cart-fab[hidden], body.modal-open .cart-fab { display: none; }
.cart-fab:hover { transform: scale(1.06); }
.cart-fab svg { width: 25px; height: 25px; }
.cart-fab__count { position: absolute; top: -3px; right: -3px; min-width: 25px; height: 25px; padding: 0 6px; border: 2px solid #fff; border-radius: 999px; background: #c9a45c; color: #1d1a12; font-size: .74rem; font-weight: 600; display: grid; place-items: center; }
.cart-fab.is-bump { animation: cartBump .45s; }
@keyframes cartBump { 30% { transform: scale(1.18); } 60% { transform: scale(.95); } }
.cart-toast { position: fixed; left: 50%; top: calc(var(--header-h) + 1rem); z-index: 230; display: flex; align-items: center; gap: .6rem; max-width: calc(100vw - 2rem); padding: .85rem 1.3rem; background: var(--ink); color: #fff; font-size: .86rem; box-shadow: 0 14px 34px rgba(0,0,0,.3); opacity: 0; pointer-events: none; transform: translate(-50%, -14px); transition: opacity .25s, transform .25s; }
.cart-toast::before { content: "✓"; color: #d9b877; }
.cart-toast.show { opacity: 1; transform: translate(-50%, 0); }

/* Checkout */
.checkout { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr); align-items: start; gap: clamp(1.5rem, 4vw, 3rem); }
@media (max-width: 960px) { .checkout { grid-template-columns: 1fr; } .checkout__summary { position: static !important; order: -1; } }
.checkout .form-card { box-shadow: 0 24px 60px rgba(83,23,33,.06); }
.checkout__note { padding: .8rem 1rem; background: var(--blush-2); color: var(--ink-2); font-size: .92rem; }
.checkout__step { margin-bottom: 1.8rem; padding-bottom: 1.8rem; border-bottom: 1px solid var(--line); }
.checkout__step[hidden] { display: none; }
.checkout__step h2 { display: flex; align-items: center; gap: .8rem; margin: 0 0 1.1rem; font-size: 1.95rem; }
.checkout__num { flex: none; width: 32px; height: 32px; border: 1px solid var(--gold-line); border-radius: 50%; color: var(--burgundy); display: grid; place-items: center; font-family: var(--font-body); font-size: .8rem; font-weight: 600; }
.type-choice { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: .8rem; }
.type-choice label { position: relative; display: flex; flex-direction: column; align-items: center; gap: .3rem; padding: 1.2rem .9rem; border: 1px solid var(--line); background: #fff; text-align: center; cursor: pointer; transition: border-color .2s, box-shadow .2s; }
.type-choice label:hover { border-color: var(--gold-line); }
.type-choice label:has(input:checked) { border-color: var(--burgundy); box-shadow: inset 0 0 0 1px var(--burgundy); background: #fffafa; }
.type-choice label:has(input:focus-visible) { outline: 2px solid var(--gold); outline-offset: 2px; }
.type-choice input { position: absolute; opacity: 0; pointer-events: none; }
.type-choice svg { width: 26px; height: 26px; color: var(--burgundy); }
.type-choice b { font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; }
.type-choice small { font-size: .76rem; line-height: 1.45; color: var(--muted); }
.type-choice .is-unavailable { opacity: .5; cursor: not-allowed; }
.checkout__secure { display: flex; align-items: center; justify-content: center; gap: .5rem; margin: .9rem 0 0; font-size: .8rem; color: var(--muted); text-align: center; }
.checkout__secure svg { flex: none; width: 14px; height: 14px; }
.checkout__summary { position: sticky; top: calc(var(--header-h) + 1.5rem); padding: 1.8rem; background: #fff; border: 1px solid var(--line); box-shadow: 0 24px 60px rgba(83,23,33,.07); }
.checkout__summary h2 { margin: 0; font-size: 2.1rem; }
.sum-line { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; padding: .7rem 0; border-bottom: 1px solid var(--line); font-size: .94rem; }
.sum-line small { display: block; font-size: .62rem; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); }
.sum-line > b { flex: none; font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; }
.sum-line__qty { font-weight: 600; color: var(--burgundy); }
.sum-line--muted { border-bottom: 0; padding: .45rem 0; color: var(--muted); font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; }
.sum-line--muted:first-of-type { margin-top: .6rem; }
.sum-total { display: flex; align-items: baseline; justify-content: space-between; margin-top: .5rem; padding-top: 1rem; border-top: 1px solid var(--gold-line); font-size: .74rem; letter-spacing: .22em; text-transform: uppercase; color: var(--ink); }
.sum-total b { font-family: var(--font-display); font-size: 2.1rem; font-weight: 600; letter-spacing: 0; color: var(--burgundy); }
.checkout__summary .cart__notice { margin-top: 1rem; }
.checkout__edit { margin-top: 1rem; padding: 0; border: 0; background: none; font: inherit; font-size: .9rem; cursor: pointer; }

/* Order confirmation */
.order-done { position: relative; width: min(720px, calc(100% - 2.5rem)); margin-inline: auto; padding: clamp(2.2rem, 5vw, 3.5rem); background: #fff; border: 1px solid var(--line); text-align: center; box-shadow: 0 24px 60px rgba(83,23,33,.07); }
.order-done::before { content: ""; position: absolute; inset: 10px; border: 1px solid rgba(184,149,90,.35); pointer-events: none; }
.order-done__icon { width: 72px; height: 72px; margin: 0 auto 1rem; border-radius: 50%; background: #eef3e6; color: var(--olive); display: grid; place-items: center; }
.order-done__icon svg { width: 32px; height: 32px; }
.order-done__icon--wait { background: #fdf4e3; color: #a8791b; }
.order-done__ref { display: inline-block; margin: .3rem 0 1.4rem; padding: .55rem 1.1rem; border: 1px solid var(--gold-line); color: var(--burgundy); font-size: .74rem; font-weight: 600; letter-spacing: .28em; text-transform: uppercase; }
.order-done dl { display: grid; grid-template-columns: auto 1fr; gap: .6rem 1.5rem; max-width: 500px; margin: 0 auto 1.8rem; text-align: left; }
.order-done dt { padding-top: .25rem; font-size: .66rem; font-weight: 500; letter-spacing: .22em; text-transform: uppercase; color: var(--muted); }
.order-done dd { margin: 0; }
.order-done table { width: 100%; max-width: 500px; margin: 0 auto; border-collapse: collapse; text-align: left; }
.order-done td { padding: .65rem 0; border-bottom: 1px solid var(--line); vertical-align: baseline; }
.order-done td small { font-size: .64rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
.order-done td:last-child { text-align: right; font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; white-space: nowrap; }
.order-done tfoot td { border-bottom: 0; color: var(--muted); font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; }
.order-done tfoot td:last-child { color: var(--ink); letter-spacing: 0; text-transform: none; }
.order-done__total td { padding-top: 1rem; border-top: 1px solid var(--gold-line); color: var(--ink) !important; }
.order-done__total td:last-child { font-size: 1.9rem !important; color: var(--burgundy) !important; }
@media (max-width: 560px) { .order-done dl { grid-template-columns: 1fr; gap: .1rem; } .order-done dt { padding-top: .7rem; } }
@media (prefers-reduced-motion: reduce) { .ord-modal, .cart, .ord-layer__backdrop, .cart-toast { transition: none; } .cart-fab.is-bump { animation: none; } }

@media (max-width: 600px) {
  .ord-types { grid-template-columns: 1fr; gap: .6rem; }
  .ord-type { display: grid; grid-template-columns: auto 1fr; grid-template-rows: auto auto; column-gap: 1rem; row-gap: .1rem; align-items: center; padding: .9rem 1rem; text-align: left; }
  .ord-type__icon { grid-row: span 2; width: 46px; height: 46px; margin: 0; }
  .ord-type__icon svg { width: 21px; height: 21px; }
  .ord-type b { font-size: 1.35rem; }
  .ord-type__desc { font-size: .78rem; line-height: 1.4; }
  .ord-modal .ornament { margin: .6rem auto 1.1rem; }
  .cart-toast { font-size: .8rem; }
}


/* ============================================================
   Typography: Playfair Display + Montserrat
   Playfair is larger and heavier than the previous display face, so sizes are rebalanced here.
   ============================================================ */
body { font-size: 15px; line-height: 1.75; letter-spacing: 0; color: #2b2727; }
h1, h2, h3, h4 { font-weight: 500; letter-spacing: 0; line-height: 1.18; }
h1 { font-size: clamp(2.3rem, 5vw, 3.7rem); }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.7rem); }
h3 { font-size: 1.3rem; }
.lead { font-size: 1.05rem; }
p { color: inherit; }
.muted { color: #6f6668; }

.eyebrow { font-size: .68rem; font-weight: 600; letter-spacing: .22em; }
.btn { font-size: .7rem; font-weight: 600; letter-spacing: .14em; }
.btn--sm { font-size: .66rem; }
.nav a { font-size: .72rem; font-weight: 500; letter-spacing: .12em; }
@media (max-width: 1240px) and (min-width: 1101px) { .nav a { font-size: .68rem; letter-spacing: .08em; } }
.topbar__promo { letter-spacing: .14em; }
.mobile-nav > a:not(.btn) { font-size: 1.35rem; font-weight: 500; }
.menu-tabs a { font-size: .68rem; font-weight: 500; letter-spacing: .12em; }
.crumbs { font-size: .54rem; letter-spacing: .1em; }
.view-toggle a { letter-spacing: .12em; }
.field label, .set-course__title, .info-card dt, .footer h4 { letter-spacing: .14em; font-weight: 600; }
.post-card__meta, .dish-card__cat, .testimonial figcaption { letter-spacing: .16em; }
.tag { font-family: var(--font-body); }

/* Home */
.hero__eyebrow { font-size: .7rem; letter-spacing: .3em; font-weight: 500; }
.hero__title { font-size: clamp(3rem, 8vw, 5.8rem); font-weight: 500; letter-spacing: .01em; line-height: 1.02; }
.hero__sub { font-size: clamp(1.05rem, 2vw, 1.45rem); }
.hero__links { letter-spacing: .16em; font-size: .68rem; }
.story__body p { font-size: .98rem; }
.story__signature { font-size: 1.35rem; }
.feature h2 { font-size: clamp(1.9rem, 3.4vw, 2.8rem); }
.feature p { font-weight: 400; font-size: .98rem; }
.dish-card h3 { font-size: 1.3rem; }
.dish-card p { font-size: .85rem; }
.dish-card__price { font-size: 1.1rem; }
.testimonial blockquote { font-size: 1.08rem; line-height: 1.65; }
.seasonal__price { font-size: 2rem; }
.cta-band h2 { font-size: clamp(2rem, 4vw, 3.1rem); }
.cta-band p { font-size: 1rem; }

/* Inner pages */
.page-hero h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
.event-type h3 { font-size: 1.15rem; }
.set-card__price { font-size: 2.3rem; }
.set-course li b { font-size: 1rem; }
.post-card h3 { font-size: 1.2rem; line-height: 1.3; }
.prose { font-size: 1rem; }
.prose h2 { font-size: clamp(1.5rem, 2.8vw, 2rem); }
.prose h3 { font-size: 1.2rem; }

/* Menu */
.mn-hero h1 { font-size: clamp(2.5rem, 6vw, 4.3rem); }
.mn-hero p { font-size: clamp(1rem, 1.8vw, 1.25rem); }
.mn-switch a { font-size: clamp(1.05rem, 1.9vw, 1.35rem); }
.mn-cat__head h2 { font-size: clamp(1.9rem, 3.5vw, 2.6rem); }
.mn-cat__note { font-size: .98rem; }
.mn-item__name { font-size: 1.08rem; font-weight: 600; line-height: 1.3; }
.mn-item__price { font-size: 1.02rem; font-weight: 600; }
.mn-item__desc { font-family: var(--font-body); font-style: normal; font-size: .84rem; line-height: 1.55; color: #6f6668; margin-top: .15rem; }
.mn-item__variants li { font-size: 1rem; }
.mn-item__variants li span { font-size: .6rem; letter-spacing: .12em; }
.mn-card__name { font-size: 1.15rem; font-weight: 600; }
.mn-card__price { font-size: 1.05rem; }
.mn-foot p { font-size: .8rem; }
@media (max-width: 560px) {
  .mn-item__name { font-size: 1rem; }
  .mn-item__price { font-size: .98rem; }
  .mn-item__desc { font-size: .8rem; }
  .mn-card__name { font-size: .95rem; }
  .mn-card__price { font-size: .92rem; }
  .mn-card .mn-item__variants li { font-size: .88rem; }
}

/* Christmas */
.xm-eyebrow { letter-spacing: .28em; font-weight: 500; }
.xm-hero h1 { font-size: clamp(2.4rem, 6vw, 4.4rem); }
.xm-lead { font-size: clamp(1rem, 1.8vw, 1.25rem); }
.xm-fact__label { letter-spacing: .2em; font-weight: 600; }
.xm-fact__value { font-size: 1.3rem; }
.xm-card h2 { font-size: clamp(2rem, 4vw, 2.7rem); }
.xm-card__date { font-size: 1rem; }
.xm-course h3 { letter-spacing: .2em; }
.xm-course__intro { font-size: .95rem; }
.xm-dish h4 { font-size: 1.2rem; }
.xm-dish p { font-size: .98rem; }
.xm-or { font-size: .92rem; }
.xm-price b { font-size: 2.3rem; }
.xm-conditions { font-size: .95rem; }
@media (max-width: 560px) { .xm-dish h4 { font-size: 1.08rem; } .xm-price b { font-size: 2rem; } }

/* Ordering */
.ord-bar__title { font-size: 1.2rem; }
.ord-bar__type { letter-spacing: .12em; }
.ord-modal h2 { font-size: clamp(1.5rem, 3.2vw, 2rem); }
.ord-type b { font-size: 1.2rem; }
.ord-type__desc { font-size: .8rem; }
.ord-option span, .ord-option b { font-size: 1.02rem; }
.qty output { font-size: 1.02rem; }
.qty--sm output { font-size: .95rem; }
.cart__head h2 { font-size: 1.8rem; }
.cart__type { letter-spacing: .14em; font-weight: 600; }
.cart__empty p { font-size: 1.15rem; }
.cart-line__name { font-size: 1.02rem; }
.cart-line__total { font-size: 1rem; }
.cart__row { letter-spacing: .14em; }
.cart__row b { font-size: 1.25rem; }
.checkout__step h2 { font-size: 1.5rem; }
.type-choice b { font-size: 1.1rem; }
.checkout__summary h2 { font-size: 1.65rem; }
.sum-line > b { font-size: 1rem; }
.sum-total { letter-spacing: .16em; }
.sum-total b { font-size: 1.65rem; }
.order-done td:last-child { font-size: 1rem; }
.order-done__total td:last-child { font-size: 1.5rem !important; }
.order-done__ref { letter-spacing: .2em; }
@media (max-width: 600px) { .ord-type b { font-size: 1.08rem; } }

/* Grid cards: keep Add to Order buttons level across a row */
.mn-card__price, .mn-card .mn-item__variants { margin-bottom: 1rem; }
.mn-card .mn-add--text { margin-top: auto; }


/* ============================================================
   Home hero: editorial slideshow with micro-animations
   ============================================================ */
.hx { position: relative; isolation: isolate; overflow: hidden; display: flex; flex-direction: column; min-height: max(640px, calc(100svh - var(--header-h) - 44px)); background: #140d0d; color: #fff; }
@media (max-width: 1100px) { .hx { min-height: max(620px, calc(100svh - var(--header-h))); } }
.hx__slides { position: absolute; inset: -2px 0 0; z-index: -2; will-change: transform; }
.hx__slide { position: absolute; inset: 0; margin: 0; opacity: 0; transition: opacity 1.6s ease; }
.hx__slide.is-active { opacity: 1; }
.hx__slide img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.14); transition: transform 9s cubic-bezier(.25,.6,.3,1); }
.hx__slide.is-active img { transform: scale(1.02); }
.hx__shade { position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background:
    linear-gradient(90deg, rgba(14,8,8,.9) 0%, rgba(14,8,8,.7) 32%, rgba(14,8,8,.25) 66%, rgba(14,8,8,.2) 100%),
    linear-gradient(180deg, rgba(14,8,8,.4) 0%, transparent 22%, transparent 60%, rgba(14,8,8,.82) 100%); }
.hx__grid { flex: 1; display: flex; align-items: center; padding: clamp(3.5rem, 8vh, 6rem) 0 clamp(7.5rem, 15vh, 9.5rem); }
.hx__content { max-width: 660px; will-change: transform, opacity; }

.hx__reveal { opacity: 0; transform: translateY(16px); animation: hxUp 1s cubic-bezier(.2,.8,.2,1) forwards; animation-delay: var(--d, .8s); }
@keyframes hxUp { to { opacity: 1; transform: none; } }
.hx__eyebrow { display: flex; align-items: center; gap: 1rem; margin: 0 0 1.5rem; font-size: .68rem; font-weight: 600; letter-spacing: .3em; text-transform: uppercase; color: #e8cf9b; }
.hx__line { flex: none; width: 0; height: 1px; background: currentColor; animation: hxLine 1.1s .25s cubic-bezier(.2,.8,.2,1) forwards; }
@keyframes hxLine { to { width: 54px; } }
.hx__title { margin: 0; color: #fff; font-size: clamp(2.5rem, 5.4vw, 4.5rem); font-weight: 500; line-height: 1.1; text-shadow: 0 2px 40px rgba(0,0,0,.25); }
.hx__title em { font-style: normal; font-weight: inherit; color: #f0d9a8; }
.hx__word { display: inline-block; overflow: hidden; vertical-align: top; padding: 0 .02em .12em; margin-bottom: -.12em; }
.hx__word > span { display: inline-block; transform: translateY(115%); animation: hxWord 1s cubic-bezier(.2,.8,.2,1) forwards; animation-delay: calc(.35s + var(--i) * .08s); }
@keyframes hxWord { to { transform: none; } }
.hx__lead { max-width: 520px; margin: 1.6rem 0 0; font-size: clamp(.95rem, 1.25vw, 1.06rem); line-height: 1.8; color: rgba(255,255,255,.82); }

.hx__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 2rem; margin-top: 2.3rem; }
.hx .btn--lg { padding: 1.1rem 1.9rem; }
.btn-arrow svg { flex: none; width: 15px; height: 15px; transition: transform .35s cubic-bezier(.2,.8,.2,1); }
.btn-arrow:hover svg { transform: translateX(5px); }
.hx__textlink { position: relative; display: inline-flex; align-items: center; gap: .6rem; padding: .45rem 0; font-size: .7rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: #fff; }
.hx__textlink::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: #e8cf9b; transform: scaleX(.3); transform-origin: left; transition: transform .45s cubic-bezier(.2,.8,.2,1); }
.hx__textlink:hover::after { transform: scaleX(1); }

.hx__meta { display: flex; flex-wrap: wrap; gap: .7rem 1.8rem; margin: 2.6rem 0 0; padding: 1.3rem 0 0; list-style: none; border-top: 1px solid rgba(255,255,255,.14); font-size: .82rem; color: rgba(255,255,255,.8); }
.hx__meta li { display: inline-flex; align-items: center; gap: .55rem; }
.hx__meta svg { color: #e8cf9b; }
.hx__meta a { transition: color .2s; }
.hx__meta a:hover { color: #fff; }
.hx__status { flex: none; width: 8px; height: 8px; border-radius: 50%; background: #74d39a; box-shadow: 0 0 0 0 rgba(116,211,154,.55); animation: hxPulse 2.4s infinite; }
.hx__status--closed { background: #d9b877; box-shadow: none; animation: none; }
@keyframes hxPulse { 70% { box-shadow: 0 0 0 9px rgba(116,211,154,0); } 100% { box-shadow: 0 0 0 0 rgba(116,211,154,0); } }

.hx__bar { position: absolute; left: 0; right: 0; bottom: 0; padding-bottom: clamp(1.4rem, 3.2vh, 2.3rem); }
.hx__bar-inner { display: grid; grid-template-columns: 1fr auto 1fr; align-items: end; gap: 1.5rem; }
.hx__caption { margin: 0; font-family: var(--font-display); font-size: .98rem; font-style: italic; color: rgba(255,255,255,.82); }
.hx__caption span { display: inline-block; transition: opacity .35s, transform .35s; }
.hx__caption.is-changing span { opacity: 0; transform: translateY(6px); }
.hx__dots { display: flex; gap: 1rem; }
.hx__dot { display: flex; flex-direction: column; gap: .5rem; width: 62px; padding: .5rem 0; border: 0; background: none; color: rgba(255,255,255,.55); font-family: var(--font-body); font-size: .64rem; font-weight: 600; letter-spacing: .12em; text-align: left; cursor: pointer; transition: color .3s; }
.hx__dot:hover, .hx__dot.is-active { color: #fff; }
.hx__dot:focus-visible { outline: 2px solid #e8cf9b; outline-offset: 3px; }
.hx__dot i { position: relative; display: block; height: 2px; overflow: hidden; background: rgba(255,255,255,.25); }
.hx__dot i::after { content: ""; position: absolute; inset: 0; background: #e8cf9b; transform: scaleX(0); transform-origin: left; }
.hx__dot.is-active i::after { animation: hxProgress var(--hx-duration, 7s) linear forwards; }
.hx.is-paused .hx__dot.is-active i::after { animation-play-state: paused; }
@keyframes hxProgress { to { transform: scaleX(1); } }
.hx__scroll { justify-self: end; display: flex; flex-direction: column; align-items: center; gap: .55rem; font-size: .58rem; font-weight: 600; letter-spacing: .3em; text-transform: uppercase; color: rgba(255,255,255,.7); transition: color .2s; }
.hx__scroll:hover { color: #fff; }
.hx__mouse { position: relative; width: 22px; height: 34px; border: 1.5px solid rgba(255,255,255,.55); border-radius: 12px; }
.hx__mouse::after { content: ""; position: absolute; left: 50%; top: 7px; width: 3px; height: 7px; margin-left: -1.5px; border-radius: 2px; background: #e8cf9b; animation: hxMouse 1.9s ease-in-out infinite; }
@keyframes hxMouse { 0% { opacity: 0; transform: translateY(0); } 30% { opacity: 1; } 100% { opacity: 0; transform: translateY(12px); } }

@media (max-width: 760px) {
  .hx__shade { background: linear-gradient(180deg, rgba(14,8,8,.45) 0%, rgba(14,8,8,.55) 35%, rgba(14,8,8,.9) 100%); }
  .hx__grid { align-items: flex-end; padding: 3rem 0 6.5rem; }
  .hx__br { display: none; }
  .hx__title { font-size: clamp(2.2rem, 10vw, 2.9rem); }
  .hx__actions { gap: .9rem 1.6rem; }
  .hx__actions .btn { width: 100%; }
  .hx__meta { gap: .5rem 1.2rem; margin-top: 1.8rem; font-size: .78rem; }
  .hx__bar-inner { grid-template-columns: 1fr; justify-items: center; }
  .hx__caption, .hx__scroll { display: none; }
  .hx__dot { width: 46px; }
}

/* Site-wide micro-interactions */
.btn--primary::after { content: ""; position: absolute; top: 0; left: -70%; width: 45%; height: 100%; background: linear-gradient(100deg, transparent, rgba(255,255,255,.28), transparent); transform: skewX(-20deg); transition: left .75s ease; pointer-events: none; }
.btn--primary:hover::after { left: 130%; }
.story__media img, .split__img img, .feature__media > img:first-child, .seasonal .frame img { transition: transform .8s cubic-bezier(.2,.8,.2,1), box-shadow .8s, filter .8s; }
.story__media:hover img, .split__img:hover img, .feature__media:hover > img:first-child, .seasonal .frame:hover img { transform: translateY(-6px); box-shadow: 0 30px 60px rgba(40,15,20,.22); filter: saturate(1.08); }
.frame::before { transition: transform .8s cubic-bezier(.2,.8,.2,1); }
.frame:hover::before { transform: translate(6px, 6px); }
.eyebrow::before, .eyebrow::after { transition: width .6s cubic-bezier(.2,.8,.2,1); }
.section-head:hover .eyebrow::before, .section-head:hover .eyebrow::after { width: 40px; }

/* Scroll reveal for browsers without scroll-driven animations (Safari, Firefox) */
@supports not (animation-timeline: view()) {
  .js-reveal .reveal { opacity: 0; transform: translateY(18px); transition: opacity .9s cubic-bezier(.2,.8,.2,1), transform .9s cubic-bezier(.2,.8,.2,1); transition-delay: var(--reveal-delay, 0s); }
  .js-reveal .reveal.is-visible { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  .hx__reveal, .hx__word > span { animation: none; opacity: 1; transform: none; }
  .hx__line { animation: none; width: 54px; }
  .hx__slide, .hx__slide img { transition: none; transform: none; }
  .hx__dot i::after, .hx__status, .hx__mouse::after { animation: none; }
  .btn--primary::after { display: none; }
  .js-reveal .reveal { opacity: 1 !important; transform: none !important; }
}

/* Hero fit: two-line headline, controls always in view */
.hx__content { max-width: 780px; }
.hx__title { font-size: clamp(2.4rem, 4.4vw, 3.9rem); }
.hx__grid { padding: clamp(2.5rem, 6vh, 4.5rem) 0 clamp(6rem, 12vh, 7.5rem); }
.hx__lead { margin-top: 1.3rem; }
.hx__actions { margin-top: 1.9rem; }
.hx__meta { margin-top: 2rem; }
@media (max-height: 800px) and (min-width: 761px) {
  .hx__title { font-size: clamp(2.2rem, 3.8vw, 3.3rem); }
  .hx__lead { margin-top: 1rem; }
  .hx__actions { margin-top: 1.5rem; }
  .hx__meta { margin-top: 1.5rem; padding-top: 1rem; }
}
@media (max-width: 760px) { .hx__eyebrow { letter-spacing: .24em; } .hx__line { animation-name: hxLineSm; } }
@keyframes hxLineSm { to { width: 34px; } }


/* ============================================================
   Events & Parties page
   ============================================================ */
.ev-hero { position: relative; isolation: isolate; overflow: hidden; display: flex; align-items: center; min-height: clamp(560px, 76vh, 760px); padding: clamp(3.5rem, 8vh, 5.5rem) 0 clamp(7rem, 14vh, 9rem); background: #140d0d; color: #fff; }
.ev-hero__bg { position: absolute; inset: 0; z-index: -2; }
.ev-hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; transform: scale(1.08); animation: evZoom 16s ease-out forwards; }
@keyframes evZoom { to { transform: scale(1); } }
.ev-hero::after { content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: linear-gradient(90deg, rgba(14,8,8,.9) 0%, rgba(14,8,8,.72) 40%, rgba(14,8,8,.3) 75%, rgba(14,8,8,.35) 100%), linear-gradient(180deg, rgba(14,8,8,.3), transparent 30%, transparent 70%, rgba(14,8,8,.6)); }
.ev-hero .crumbs-nav { justify-content: flex-start; margin-bottom: .5rem; }
.ev-hero__title { max-width: 780px; margin: 0; color: #fff; font-size: clamp(2.4rem, 5vw, 4.2rem); line-height: 1.1; }
.ev-hero__title em { font-style: italic; font-weight: 400; color: #f0d9a8; }
.ev-hero__lead { max-width: 580px; margin: 1.4rem 0 0; font-size: clamp(.95rem, 1.25vw, 1.06rem); line-height: 1.8; color: rgba(255,255,255,.84); }
@media (max-width: 760px) {
  .ev-hero { align-items: flex-end; min-height: 580px; padding-bottom: 6.5rem; }
  .ev-hero::after { background: linear-gradient(180deg, rgba(14,8,8,.5), rgba(14,8,8,.62) 40%, rgba(14,8,8,.92)); }
  .ev-hero .hx__actions .btn { width: 100%; }
}

.ev-facts { position: relative; z-index: 2; margin-top: -4rem; }
.ev-facts__card { display: grid; grid-template-columns: repeat(4, 1fr); background: #fff; border-top: 2px solid var(--gold-line); box-shadow: 0 30px 70px rgba(40,15,20,.14); animation: hxUp 1s .8s cubic-bezier(.2,.8,.2,1) both; }
.ev-fact { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .45rem; padding: 1.8rem 1rem; text-align: center; transition: background .35s; }
.ev-fact:hover { background: var(--blush); }
.ev-fact + .ev-fact { border-left: 1px solid var(--line); }
.ev-fact b { font-family: var(--font-display); font-size: clamp(1.9rem, 3vw, 2.5rem); font-weight: 500; line-height: 1; color: var(--burgundy); }
.ev-fact b span { font: inherit; letter-spacing: 0; text-transform: none; color: inherit; }
.ev-fact > span { font-size: .64rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
@media (max-width: 760px) {
  .ev-facts { margin-top: -3rem; }
  .ev-facts__card { grid-template-columns: 1fr 1fr; }
  .ev-fact { padding: 1.3rem .6rem; }
  .ev-fact:nth-child(3) { border-left: 0; }
  .ev-fact:nth-child(n+3) { border-top: 1px solid var(--line); }
}

.ev-features { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem 2rem; margin: 2rem 0 0; padding: 0; list-style: none; }
.ev-features li { display: flex; gap: .9rem; }
.ev-features__icon { flex: none; width: 46px; height: 46px; border: 1px solid var(--gold-line); border-radius: 50%; display: grid; place-items: center; color: var(--burgundy); transition: background .35s, color .35s, transform .35s; }
.ev-features li:hover .ev-features__icon { background: var(--burgundy); border-color: var(--burgundy); color: #fff; transform: rotate(-8deg); }
.ev-features__icon svg { width: 19px; height: 19px; }
.ev-features b { display: block; margin-bottom: .2rem; font-family: var(--font-display); font-size: 1.08rem; font-weight: 600; }
.ev-features div > span { font-size: .86rem; line-height: 1.6; color: var(--muted); }
h2 em { font-style: italic; font-weight: 400; color: var(--burgundy); }
/* Italic accent word stays legible on dark bands (burgundy on burgundy is invisible). */
.feature h2 em, .section--dark h2 em, .seasonal-banner h2 em, .cta-band h2 em, .info-card h2 em,
.mn-hero h2 em, .xm-hero h2 em, .hx h2 em, .ev-hero h2 em, .footer h2 em { color: #f0d9a8; }
@media (max-width: 560px) { .ev-features { grid-template-columns: 1fr; } }

.ev-types { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
@media (max-width: 1000px) { .ev-types { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .ev-types { grid-template-columns: 1fr; } }
.ev-type { position: relative; display: flex; flex-direction: column; overflow: hidden; padding: 2rem 1.6rem 1.6rem; background: var(--blush); border: 1px solid var(--line); transition: transform .45s cubic-bezier(.2,.8,.2,1), box-shadow .45s, background .45s, border-color .45s; }
.ev-type::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: var(--burgundy); transform: scaleX(0); transform-origin: left; transition: transform .55s cubic-bezier(.2,.8,.2,1); }
.ev-type:hover { transform: translateY(-6px); background: #fff; border-color: transparent; box-shadow: 0 24px 50px rgba(40,15,20,.12); }
.ev-type:hover::after { transform: scaleX(1); }
.ev-type__num { position: absolute; top: 1.1rem; right: 1.3rem; font-family: var(--font-display); font-size: 2.2rem; line-height: 1; color: rgba(184,149,90,.3); transition: color .4s, transform .4s; }
.ev-type:hover .ev-type__num { color: rgba(184,149,90,.65); transform: translateY(-2px); }
.ev-type__icon { width: 52px; height: 52px; margin-bottom: 1.2rem; border-radius: 50%; display: grid; place-items: center; background: #fff; color: var(--burgundy); box-shadow: inset 0 0 0 1px var(--line); transition: background .35s, color .35s, transform .35s; }
.ev-type:hover .ev-type__icon { background: var(--burgundy); color: #fff; transform: scale(1.06) rotate(-6deg); }
.ev-type__icon svg { width: 23px; height: 23px; }
.ev-type h3 { margin: 0 0 .5rem; font-size: 1.12rem; font-weight: 600; }
.ev-type p { flex: 1; margin: 0 0 1.2rem; font-size: .86rem; line-height: 1.65; color: var(--muted); }
.ev-type__link { align-self: flex-start; display: inline-flex; align-items: center; gap: .5rem; font-size: .64rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--burgundy); }

.ev-steps { overflow: hidden; padding: clamp(4rem, 9vw, 6.5rem) 0; background: var(--burgundy); color: #fff; }
.ev-steps .section-head h2 { color: #fff; }
.ev-steps h2 em { color: #f0d9a8; }
.ev-steps .eyebrow { color: #f0d9a8; }
.ev-steps__list { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; margin: 0; padding: 0; list-style: none; }
.ev-steps__list::before { content: ""; position: absolute; top: 28px; left: 12%; right: 12%; height: 1px; background: linear-gradient(90deg, transparent, rgba(240,217,168,.55), transparent); }
.ev-steps__list li { position: relative; text-align: center; }
.ev-steps__num { position: relative; display: grid; place-items: center; width: 56px; height: 56px; margin: 0 auto 1.3rem; border: 1px solid rgba(240,217,168,.6); border-radius: 50%; background: var(--burgundy); color: #f0d9a8; font-family: var(--font-display); font-size: 1.1rem; transition: background .35s, color .35s, transform .35s; }
.ev-steps__list li:hover .ev-steps__num { background: #f0d9a8; color: var(--burgundy); transform: scale(1.1); }
.ev-steps__list h3 { margin: 0 0 .5rem; color: #fff; font-size: 1.12rem; }
.ev-steps__list p { max-width: 250px; margin: 0 auto; font-size: .86rem; line-height: 1.7; color: rgba(255,255,255,.78); }
@media (max-width: 900px) { .ev-steps__list { grid-template-columns: 1fr 1fr; row-gap: 2.6rem; } .ev-steps__list::before { display: none; } }
@media (max-width: 520px) { .ev-steps__list { grid-template-columns: 1fr; } }

.ev-menus { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.4rem; max-width: 1080px; margin: 0 auto; }
.ev-menu { position: relative; display: flex; flex-direction: column; padding: 2.3rem 1.9rem 1.9rem; background: #fff; border: 1px solid var(--line); text-align: center; transition: transform .45s cubic-bezier(.2,.8,.2,1), box-shadow .45s; }
.ev-menu::before { content: ""; position: absolute; inset: 8px; border: 1px solid rgba(184,149,90,.28); pointer-events: none; transition: inset .45s, border-color .45s; }
.ev-menu:hover { transform: translateY(-6px); box-shadow: 0 26px 60px rgba(40,15,20,.12); }
.ev-menu:hover::before { inset: 12px; border-color: rgba(184,149,90,.6); }
.ev-menu__price { font-family: var(--font-display); font-size: 3.4rem; font-weight: 500; line-height: 1; color: var(--burgundy); }
.ev-menu__price sup { position: relative; top: .45rem; margin-right: .1rem; font-size: 1.3rem; vertical-align: top; }
.ev-menu__price small { display: block; margin-top: .55rem; font-family: var(--font-body); font-size: .62rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); }
.ev-menu h3 { margin: 1.2rem 0 .5rem; font-size: 1.25rem; }
.ev-menu > p { margin: 0 0 1.2rem; font-size: .88rem; color: var(--muted); }
.ev-menu__courses { flex: 1; margin: 0 0 1.6rem; padding: 1.1rem 0 0; list-style: none; border-top: 1px solid var(--line); text-align: left; }
.ev-menu__courses li { display: flex; align-items: center; gap: .6rem; padding: .4rem 0; font-size: .88rem; font-weight: 500; }
.ev-menu__courses svg { flex: none; color: var(--gold-line); }
.ev-menu__courses span { margin-left: auto; font-size: .74rem; font-weight: 400; color: var(--muted); }
.ev-menu .btn { position: relative; z-index: 1; }

.ev-quote { position: relative; isolation: isolate; overflow: hidden; padding: clamp(4.5rem, 10vw, 7rem) 0; background: #1a1212; color: #fff; text-align: center; }
.ev-quote__bg { position: absolute; inset: 0; z-index: -2; background-size: cover; background-position: center; }
@media (hover: hover) and (min-width: 1025px) { .ev-quote__bg { background-attachment: fixed; } }
.ev-quote::after { content: ""; position: absolute; inset: 0; z-index: -1; background: rgba(18,10,10,.74); }
.ev-quote .testimonial__mark { height: 3rem; font-size: 5.5rem; color: #d9b877; }
.ev-quote blockquote { max-width: 780px; margin: 0 auto 1.4rem; font-family: var(--font-display); font-size: clamp(1.2rem, 2.4vw, 1.75rem); font-style: italic; line-height: 1.55; color: #fff; }
.ev-quote .quote__stars { color: #d9b877; letter-spacing: .25em; }
.ev-quote cite { display: block; margin-top: .6rem; font-size: .7rem; font-style: normal; font-weight: 600; letter-spacing: .24em; text-transform: uppercase; color: rgba(255,255,255,.8); }

.ev-enquire__grid { display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); background: #fff; box-shadow: 0 30px 80px rgba(40,15,20,.1); }
@media (max-width: 900px) { .ev-enquire__grid { grid-template-columns: 1fr; } }
.ev-enquire__panel { position: relative; isolation: isolate; overflow: hidden; padding: clamp(2.2rem, 5vw, 3.4rem); color: #fff; }
.ev-enquire__panel::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(83,23,33,.92), rgba(55,13,21,.97)), url('../img/events/events-table-sm.jpg') center / cover; }
.ev-enquire__panel h2 { color: #fff; font-size: clamp(1.8rem, 3vw, 2.4rem); }
.ev-enquire__panel .eyebrow { color: #f0d9a8; }
.ev-enquire__panel > p { font-size: .95rem; color: rgba(255,255,255,.84); }
.ev-contact { display: grid; gap: 1.2rem; margin: 2rem 0 0; padding: 0; list-style: none; }
.ev-contact li { display: flex; align-items: flex-start; gap: .9rem; }
.ev-contact svg { flex: none; width: 38px; height: 38px; padding: 9px; border: 1px solid rgba(240,217,168,.45); border-radius: 50%; color: #f0d9a8; transition: background .3s, color .3s; }
.ev-contact li:hover svg { background: #f0d9a8; color: var(--burgundy); }
.ev-contact span { display: block; margin-bottom: .15rem; font-size: .62rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: #f0d9a8; }
.ev-contact div { font-size: .9rem; line-height: 1.6; color: rgba(255,255,255,.9); }
.ev-contact a:hover { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.ev-form { border: 0; box-shadow: none !important; padding: clamp(2.2rem, 5vw, 3.4rem); }
.ev-form h3 { margin: 0 0 .3rem; font-size: 1.6rem; }
.ev-form__note { margin: .9rem 0 0; font-size: .78rem; text-align: center; color: var(--muted); }
.field select.is-flash { animation: evFlash 1.3s ease; }
@keyframes evFlash { 0%, 100% { box-shadow: 0 0 0 0 rgba(184,149,90,0); } 30% { box-shadow: 0 0 0 4px rgba(184,149,90,.45); border-color: var(--gold-line); } }
@media (prefers-reduced-motion: reduce) { .ev-hero__bg img, .ev-facts__card, .field select.is-flash { animation: none; transform: none; } }

/* Breadcrumb: room for short page names on phones */
@media (max-width: 560px) { .crumbs li:only-child .crumbs__current, .crumbs li:nth-child(2):last-child .crumbs__current { max-width: 24ch; } }


/* ============================================================
   Inner page photo banner
   ============================================================ */
.ph { position: relative; isolation: isolate; overflow: hidden; display: flex; align-items: center; min-height: clamp(420px, 58vh, 580px); padding: clamp(3rem, 7vh, 4.5rem) 0 clamp(3.5rem, 8vh, 5rem); background: #140d0d; color: #fff; }
.ph__bg { position: absolute; inset: 0; z-index: -2; }
.ph__bg img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.08); animation: evZoom 16s ease-out forwards; }
.ph::after { content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: linear-gradient(90deg, rgba(14,8,8,.9) 0%, rgba(14,8,8,.72) 40%, rgba(14,8,8,.3) 75%, rgba(14,8,8,.35) 100%), linear-gradient(180deg, rgba(14,8,8,.3), transparent 30%, transparent 70%, rgba(14,8,8,.55)); }
.ph .crumbs-nav { justify-content: flex-start; margin-bottom: .8rem; }
.ph__title { max-width: 780px; margin: 0; color: #fff; font-size: clamp(2.3rem, 4.6vw, 3.8rem); line-height: 1.1; }
.ph__title em { font-style: italic; font-weight: 400; color: #f0d9a8; }
.ph__lead { max-width: 580px; margin: 1.2rem 0 0; font-size: clamp(.95rem, 1.25vw, 1.05rem); line-height: 1.8; color: rgba(255,255,255,.84); }
.ph .hx__actions { margin-top: 1.9rem; }
@media (max-width: 760px) {
  .ph { align-items: flex-end; min-height: 440px; }
  .ph::after { background: linear-gradient(180deg, rgba(14,8,8,.45), rgba(14,8,8,.6) 40%, rgba(14,8,8,.9)); }
  .ph .hx__actions .btn { width: 100%; }
}
@media (prefers-reduced-motion: reduce) { .ph__bg img { animation: none; transform: none; } }


/* ============================================================
   Inner pages: About, Set Menus, Reservation, Contact, Blog
   ============================================================ */
/* About values */
.ab-values { padding: clamp(4rem, 9vw, 6.5rem) 0; background: var(--burgundy); color: #fff; }
.ab-values .section-head h2 { color: #fff; }
.ab-values h2 em { color: #f0d9a8; }
.ab-values .eyebrow { color: #f0d9a8; }
.ab-values__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
@media (max-width: 1000px) { .ab-values__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .ab-values__grid { grid-template-columns: 1fr; } }
.ab-value { padding: 2rem 1.6rem; border: 1px solid rgba(240,217,168,.22); text-align: center; transition: background .4s, border-color .4s, transform .4s cubic-bezier(.2,.8,.2,1); }
.ab-value:hover { background: rgba(255,255,255,.05); border-color: rgba(240,217,168,.55); transform: translateY(-5px); }
.ab-value__icon { display: grid; place-items: center; width: 56px; height: 56px; margin: 0 auto 1.2rem; border: 1px solid rgba(240,217,168,.55); border-radius: 50%; color: #f0d9a8; transition: background .35s, color .35s, transform .35s; }
.ab-value:hover .ab-value__icon { background: #f0d9a8; color: var(--burgundy); transform: rotate(-8deg) scale(1.05); }
.ab-value__icon svg { width: 22px; height: 22px; }
.ab-value h3 { margin: 0 0 .5rem; color: #fff; font-size: 1.15rem; }
.ab-value p { margin: 0; font-size: .86rem; line-height: 1.7; color: rgba(255,255,255,.78); }

/* Set menus */
.sm-seasonal { display: grid; grid-template-columns: 1fr 1.1fr; overflow: hidden; background: #0d3326; color: #f4ecdc; box-shadow: 0 30px 70px rgba(10,40,30,.25); transition: transform .5s cubic-bezier(.2,.8,.2,1), box-shadow .5s; }
.sm-seasonal:hover { transform: translateY(-5px); box-shadow: 0 40px 80px rgba(10,40,30,.32); }
.sm-seasonal__img { position: relative; overflow: hidden; min-height: 320px; }
.sm-seasonal__img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s cubic-bezier(.2,.8,.2,1); }
.sm-seasonal:hover .sm-seasonal__img img { transform: scale(1.05); }
.sm-seasonal__body { padding: clamp(2rem, 4vw, 3.2rem); border-left: 1px solid rgba(217,184,119,.35); }
.sm-seasonal h2 { margin: 0; color: #fff; font-size: clamp(1.9rem, 3.4vw, 2.6rem); }
.sm-seasonal .xm-ornament { margin: .9rem 0; }
.sm-seasonal p { color: rgba(255,255,255,.85); font-size: .95rem; }
.sm-seasonal__foot { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; margin-top: 1.6rem; padding-top: 1.3rem; border-top: 1px solid rgba(217,184,119,.3); }
.sm-seasonal__price { font-family: var(--font-display); font-size: 2rem; color: #f0d9a8; }
.sm-seasonal__price small { font-family: var(--font-body); font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.7); }
@media (max-width: 800px) { .sm-seasonal { grid-template-columns: 1fr; } .sm-seasonal__img { min-height: 220px; } .sm-seasonal__body { border-left: 0; } }

.sm-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 1.5rem; align-items: stretch; }
.sm-card { position: relative; display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); transition: transform .45s cubic-bezier(.2,.8,.2,1), box-shadow .45s; }
.sm-card::before { content: ""; position: absolute; inset: 8px; border: 1px solid rgba(184,149,90,.26); pointer-events: none; transition: border-color .45s; }
.sm-card:hover { transform: translateY(-6px); box-shadow: 0 26px 60px rgba(40,15,20,.12); }
.sm-card:hover::before { border-color: rgba(184,149,90,.6); }
.sm-card__head { padding: 2.4rem 2rem 1.6rem; text-align: center; border-bottom: 1px solid var(--line); background: linear-gradient(180deg, var(--blush), #fff); }
.sm-card__head h3 { margin: 1.1rem 0 .5rem; font-size: 1.35rem; }
.sm-card__head p { margin: 0; font-size: .88rem; color: var(--muted); }
.sm-card__body { padding: 1.6rem 2rem .6rem; }
.sm-course { margin-bottom: 1.4rem; }
.sm-course h4 { display: flex; align-items: center; gap: .7rem; margin: 0 0 .6rem; font-family: var(--font-body); font-size: .66rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--burgundy); }
.sm-course h4::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.sm-course__intro { margin: -.2rem 0 .5rem; font-size: .84rem; font-style: italic; color: var(--muted); }
.sm-course ul { margin: 0; padding: 0; list-style: none; }
.sm-course li { padding: .45rem 0; border-bottom: 1px dashed var(--line); font-size: .9rem; }
.sm-course li:last-child { border-bottom: 0; }
.sm-course li b { font-family: var(--font-display); font-weight: 600; }
.sm-course__desc { display: block; margin-top: .1rem; font-size: .8rem; color: var(--muted); }
.sm-card__foot { position: relative; z-index: 1; margin-top: auto; padding: 1.2rem 2rem 2rem; text-align: center; }
.sm-card__foot p { margin: 0 0 1.1rem; font-size: .78rem; color: var(--muted); }
.sm-card__link { display: inline-block; margin-top: .9rem; font-size: .66rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-2); border-bottom: 1px solid var(--gold-line); }
.sm-card__link:hover { color: var(--burgundy); }

.sm-menu-bg { padding: clamp(3.5rem, 8vw, 6rem) 0; background-color: var(--blush-2); background-image: radial-gradient(circle at 1px 1px, rgba(184,149,90,.22) 1px, transparent 0); background-size: 24px 24px; }
.xm-card--classic { background: #fffdfa; box-shadow: 0 30px 80px rgba(83,23,33,.14); }
.xm-card--classic h2 { color: var(--burgundy); }
.xm-card--classic .xm-course h3 { color: var(--burgundy); }
.xm-card--classic .xm-dish { margin-top: 1rem; }
.xm-card--classic .xm-price b { color: var(--burgundy); }

/* Reservation confirmation */
.rs-done { text-align: center; }
.rs-done h3 { margin: .2rem 0 .5rem; font-size: 1.9rem; }
.rs-done dl { display: grid; grid-template-columns: auto 1fr; gap: .5rem 1.5rem; max-width: 360px; margin: 0 auto 1.4rem; text-align: left; }
.rs-done dt { font-size: .64rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); padding-top: .2rem; }
.rs-done dd { margin: 0; font-weight: 500; }

/* Contact */
.ct-cards-wrap { position: relative; z-index: 2; margin-top: -3.2rem; }
.ct-cards { display: grid; grid-template-columns: repeat(4, 1fr); background: #fff; border-top: 2px solid var(--gold-line); box-shadow: 0 30px 70px rgba(40,15,20,.14); animation: hxUp 1s .7s cubic-bezier(.2,.8,.2,1) both; }
.ct-card { display: flex; flex-direction: column; align-items: center; gap: .35rem; padding: 1.8rem 1rem; text-align: center; color: var(--ink); transition: background .35s; }
.ct-card + .ct-card { border-left: 1px solid var(--line); }
a.ct-card:hover { background: var(--blush); }
.ct-card__icon { display: grid; place-items: center; width: 46px; height: 46px; margin-bottom: .45rem; border: 1px solid var(--gold-line); border-radius: 50%; color: var(--burgundy); transition: background .35s, color .35s, transform .35s; }
.ct-card:hover .ct-card__icon { background: var(--burgundy); border-color: var(--burgundy); color: #fff; transform: rotate(-8deg); }
.ct-card__icon svg { width: 19px; height: 19px; }
.ct-card__label { font-size: .62rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); }
.ct-card b { font-family: var(--font-display); font-size: 1rem; font-weight: 600; line-height: 1.45; overflow-wrap: anywhere; }
.ct-card b span { display: block; font-family: var(--font-body); font-size: .82rem; font-weight: 500; }
@media (max-width: 900px) {
  .ct-cards { grid-template-columns: 1fr 1fr; }
  .ct-card:nth-child(3) { border-left: 0; }
  .ct-card:nth-child(n+3) { border-top: 1px solid var(--line); }
}
@media (max-width: 460px) { .ct-cards { grid-template-columns: 1fr; } .ct-card + .ct-card { border-left: 0; border-top: 1px solid var(--line); } }
.ct-grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); gap: clamp(1.5rem, 3vw, 2.5rem); align-items: stretch; }
@media (max-width: 900px) { .ct-grid { grid-template-columns: 1fr; } }
.ct-grid .ev-form { box-shadow: 0 30px 80px rgba(40,15,20,.1) !important; }
.ct-map { position: relative; display: flex; flex-direction: column; min-height: 460px; overflow: hidden; background: #fff; box-shadow: 0 30px 80px rgba(40,15,20,.1); }
.ct-map iframe { flex: 1; width: 100%; min-height: 300px; border: 0; filter: grayscale(.35) contrast(1.05); transition: filter .6s; }
.ct-map:hover iframe { filter: none; }
.ct-map__card { padding: 1.6rem 1.8rem; border-top: 2px solid var(--gold-line); }
.ct-map__card p { margin: 0 0 .9rem; line-height: 1.7; }
.ct-social { display: flex; gap: .5rem; margin-top: 1.1rem; }
.ct-social a { display: grid; place-items: center; width: 38px; height: 38px; border: 1px solid var(--line); border-radius: 50%; color: var(--burgundy); transition: background .3s, color .3s, border-color .3s; }
.ct-social a:hover { background: var(--burgundy); border-color: var(--burgundy); color: #fff; }
.ct-social svg { width: 16px; height: 16px; }

/* Blog */
.bl-feature { display: grid; grid-template-columns: 1.15fr 1fr; margin-bottom: clamp(2.5rem, 5vw, 4rem); background: #fff; box-shadow: 0 30px 70px rgba(40,15,20,.1); }
.bl-feature__img { position: relative; display: block; min-height: 360px; overflow: hidden; }
.bl-feature__img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s cubic-bezier(.2,.8,.2,1); }
.bl-feature:hover .bl-feature__img img { transform: scale(1.05); }
.bl-feature__badge { position: absolute; top: 1.2rem; left: 1.2rem; padding: .45rem .85rem; background: var(--burgundy); color: #fff; font-size: .6rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; }
.bl-feature__body { display: flex; flex-direction: column; justify-content: center; padding: clamp(2rem, 4vw, 3.2rem); }
.bl-feature__body h2 { margin: .6rem 0 0; font-size: clamp(1.6rem, 2.8vw, 2.2rem); line-height: 1.25; }
.bl-feature__body h2 a { transition: color .25s; }
.bl-feature__body h2 a:hover { color: var(--burgundy); }
.bl-feature__body .ornament { margin: 1rem 0; }
.bl-feature__body p { color: var(--muted); }
@media (max-width: 860px) { .bl-feature { grid-template-columns: 1fr; } .bl-feature__img { min-height: 240px; } }
.post-card > a:first-child { display: block; overflow: hidden; border-radius: 4px; }
.post-card img { transition: transform 1s cubic-bezier(.2,.8,.2,1), opacity .3s; }
.post-card:hover img { transform: scale(1.05); }
.post-card h3 a { background: linear-gradient(currentColor, currentColor) 0 100% / 0 1px no-repeat; transition: background-size .4s, color .25s; }
.post-card:hover h3 a { background-size: 100% 1px; color: var(--burgundy); }

/* Article */
.ph__title { overflow-wrap: break-word; }
.ar-body > p:first-of-type::first-letter { float: left; margin: .35rem .6rem 0 0; font-family: var(--font-display); font-size: 3.6rem; line-height: .8; color: var(--burgundy); }
.ar-body h2 { position: relative; padding-top: 1.2rem; }
.ar-body h2::before { content: ""; position: absolute; top: 0; left: 0; width: 40px; height: 1px; background: var(--gold-line); }
.ar-cta { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.4rem; margin-top: 3rem; padding: 2rem; background: #fff; border: 1px solid var(--line); border-left: 3px solid var(--burgundy); }
.ar-cta h3 { margin: .2rem 0 .3rem; font-size: 1.3rem; }
.ar-cta p { margin: 0; font-size: .86rem; }
.ar-cta__actions { display: flex; flex-wrap: wrap; gap: .7rem; }


/* Footer pattern: gold Italian tile lattice, faded towards the bottom */
.footer { position: relative; isolation: isolate; overflow: hidden; background-color: #221d1e; border-top: 1px solid rgba(217,184,119,.45); }
.footer::before { content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none; opacity: .09;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='64' height='64' viewBox='0 0 64 64'%3E%3Cg fill='none' stroke='%23d9b877' stroke-width='1'%3E%3Cpath d='M32 0 64 32 32 64 0 32Z'/%3E%3Ccircle cx='32' cy='32' r='7'/%3E%3Cpath d='M32 23q5 9 0 18q-5-9 0-18ZM23 32q9-5 18 0q-9 5-18 0Z'/%3E%3C/g%3E%3Cg fill='%23d9b877'%3E%3Ccircle cx='0' cy='0' r='2'/%3E%3Ccircle cx='64' cy='0' r='2'/%3E%3Ccircle cx='0' cy='64' r='2'/%3E%3Ccircle cx='64' cy='64' r='2'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 64px 64px; background-position: center top;
  -webkit-mask-image: linear-gradient(180deg, #000 0%, rgba(0,0,0,.55) 55%, transparent 100%); mask-image: linear-gradient(180deg, #000 0%, rgba(0,0,0,.55) 55%, transparent 100%); }
.footer::after { content: ""; position: absolute; left: 50%; top: -1px; z-index: -1; width: min(900px, 90%); height: 220px; transform: translateX(-50%); pointer-events: none;
  background: radial-gradient(ellipse at top, rgba(217,184,119,.14), transparent 70%); }
.footer__bottom { position: relative; background: rgba(12,10,10,.72); }


/* Home: quick benefits, family band, set-menu promo */
.hm-benefits { background: var(--ink); color: #f1eded; }
.hm-benefits__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: .6rem 2.4rem; padding: 1rem 0; font-size: .7rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; }
.hm-benefits span { display: inline-flex; align-items: center; gap: .55rem; }
.hm-benefits svg { color: #e8cf9b; }
@media (max-width: 700px) { .hm-benefits__inner { gap: .5rem 1.3rem; font-size: .62rem; letter-spacing: .12em; } }

.hm-family { padding: clamp(3.5rem, 8vw, 5.5rem) 0; background: var(--white); }
.hm-family__grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); gap: clamp(2rem, 5vw, 4rem); align-items: center; }
@media (max-width: 900px) { .hm-family__grid { grid-template-columns: 1fr; } }
.hm-family h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
.hm-family .lead { max-width: 560px; }

.hm-setmenu { position: relative; display: flex; flex-direction: column; padding: 2.2rem 2rem; background: var(--blush); border: 1px solid var(--line); text-align: center; transition: transform .45s cubic-bezier(.2,.8,.2,1), box-shadow .45s, border-color .45s; }
.hm-setmenu::before { content: ""; position: absolute; inset: 8px; border: 1px solid rgba(184,149,90,.3); pointer-events: none; transition: inset .45s, border-color .45s; }
.hm-setmenu:hover { transform: translateY(-6px); border-color: transparent; box-shadow: 0 26px 60px rgba(40,15,20,.12); }
.hm-setmenu:hover::before { inset: 12px; border-color: rgba(184,149,90,.65); }
.hm-setmenu__label { font-size: .62rem; font-weight: 600; letter-spacing: .24em; text-transform: uppercase; color: var(--gold-line); }
.hm-setmenu__price { margin: .5rem 0 .2rem; font-family: var(--font-display); font-size: 3rem; font-weight: 600; line-height: 1; color: var(--burgundy); }
.hm-setmenu__price small { display: block; margin-top: .4rem; font-family: var(--font-body); font-size: .6rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); }
.hm-setmenu b { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; }
.hm-setmenu__text { margin-top: .5rem; font-size: .88rem; line-height: 1.65; color: var(--muted); }
.hm-setmenu__cta { display: inline-flex; align-items: center; justify-content: center; gap: .5rem; margin-top: 1.2rem; font-size: .66rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--burgundy); }
.hm-setmenu__cta svg { width: 14px; height: 14px; transition: transform .3s; }
.hm-setmenu:hover .hm-setmenu__cta svg { transform: translateX(4px); }

/* Menu: dietary options block */
.mn-dietary { max-width: 640px; margin: 0 auto; padding: 1.1rem 1.4rem; background: var(--white); border: 1px solid var(--line); text-align: center; }
.mn-dietary b { display: block; margin-bottom: .6rem; font-family: var(--font-body); font-size: .66rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--burgundy); }
.mn-dietary .dietary-key { margin-top: 0; }
.mn-dietary p { margin: .7rem 0 0; font-size: .82rem; color: var(--muted); }

/* Error pages (404/419/500/503) */
.err { text-align: center; }
.err__inner { max-width: 680px; }
.err__code { font-family: var(--font-display); font-size: clamp(4.5rem, 14vw, 8rem); line-height: 1; color: var(--burgundy); opacity: .16; margin: 0 0 -.4em; letter-spacing: .02em; }
.err h1 { margin: 0 0 .2rem; }
.err__lead { color: var(--muted); font-size: 1.05rem; max-width: 34em; margin: 0 auto 1.6rem; }
.err__actions { justify-content: center; }
.err__help { margin-top: 1.8rem; color: var(--muted); font-size: .95rem; }
.err__links { display: flex; flex-wrap: wrap; gap: .4rem 1.4rem; justify-content: center; margin-top: 1.4rem; padding-top: 1.4rem; border-top: 1px solid var(--line); font-size: .86rem; letter-spacing: .08em; text-transform: uppercase; }
.err__links a { color: var(--muted); }
.err__links a:hover { color: var(--burgundy); }

/* Footer column headings: h2 for document structure, h4 sizing for the design. */
.footer__heading { font-family: var(--font-display); font-size: 1.05rem; font-weight: 500; letter-spacing: .04em; margin: 0 0 .9rem; color: #fff; }
.ord-modal__title { font-family: var(--font-display); font-size: 1.35rem; margin: 0 0 .3rem; }

/* ---------------------------------------------------------------------------
   Accessibility fixes (audit 2026-09-16)
   --------------------------------------------------------------------------- */

/* Visible focus on every surface: the browser default is a 1px near-black ring,
   which disappears on the dark topbar, the burgundy bands and hero photography. */
:focus-visible {
  outline: 3px solid #d9a441;
  outline-offset: 2px;
  border-radius: 2px;
}
.topbar :focus-visible, .hx :focus-visible, .footer :focus-visible,
.feature :focus-visible, .cta-band :focus-visible, .mn-hero :focus-visible {
  outline-color: #ffd98a;
}

/* Skip link: first tab stop, visible only when focused. */
.skip-link {
  position: absolute; left: 50%; top: 0; z-index: 400;
  transform: translate(-50%, -120%);
  background: var(--burgundy); color: #fff;
  padding: .75rem 1.4rem; font-size: .9rem; letter-spacing: .06em; text-transform: uppercase;
  border-radius: 0 0 4px 4px; transition: transform .18s ease;
}
.skip-link:focus { transform: translate(-50%, 0); color: #fff; }

/* The closed mobile drawer was only translated off-screen, so its links stayed
   focusable: a keyboard user tabbed through 12 invisible links. */
.mobile-nav { visibility: hidden; }
.mobile-nav.open { visibility: visible; }

/* "Reservations" eyebrow was burgundy on the dark CTA band: 1.05:1. */
.cta-band .eyebrow { color: #e9c77f; }

/* Small gold text failed AA against the blush/white grounds. */
.dish-card__cat, .hm-setmenu__label { color: #8a6a34; }
.quote__stars { color: #a8761a; }
.gallery figcaption { text-shadow: 0 1px 3px rgba(0,0,0,.9); }

/* This entrance animation was the one that ignored prefers-reduced-motion. */
@media (prefers-reduced-motion: reduce) {
  .ct-cards, .ct-card { animation: none !important; opacity: 1 !important; transform: none !important; }
}

.sr-only { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

/* The order-type step is a fieldset for grouping; the legend keeps the step's look. */
fieldset.checkout__step { border: 0; padding: 0; margin: 0 0 2rem; }
fieldset.checkout__step > legend { padding: 0; width: 100%; }
fieldset.checkout__step > legend h2 { margin: 0 0 1rem; }

/* ---------------------------------------------------------------------------
   Responsive fixes (audit 2026-09-16)
   --------------------------------------------------------------------------- */

/* Block buttons clipped their own labels between 980px and 1140px: the ripple's
   overflow:hidden combined with white-space:nowrap silently cut the text. */
.btn--block { white-space: normal; line-height: 1.3; }

/* Legibility floor: these were 9.3px–11.2px. */
.btn { font-size: .78rem; }
.field label, .form-grid label { font-size: .75rem; }
.tag, .crumbs__current, .mn-item__variants li span, .hm-setmenu__price small,
.ev-menu__price small, .ev-contact span, .ct-card__label, .hm-benefits span,
.post-card__meta, .sm-course h4, .mn-dietary b, .sm-card__link, .eyebrow,
.ev-fact > span, .ev-type__link { font-size: .75rem; }

/* Touch targets: WCAG 2.5.8 asks for 24px minimum, 44px is the comfortable size.
   The ordering controls were 30x30 and the footer links 16px tall. */
@media (max-width: 800px) {
  .mn-add { width: 44px; height: 44px; }
  .menu-tabs__inner a { padding: .6rem 0; }
  .view-toggle a { min-height: 44px; display: inline-flex; align-items: center; justify-content: center; }
  .ord-bar__type, .ord-bar__view { min-height: 44px; }
  .mn-switch a { padding: .35rem 0 .6rem; }
  .ord-modal__close { width: 44px; height: 44px; }
  .crumbs__home a {
    min-width: 0; min-height: 0; width: 18px; height: 18px;
    display: grid; place-items: center; position: relative;
  }
  /* Invisible 44x44 touch target around the small pill (WCAG 2.5.8). */
  .crumbs__home a::after {
    content: ""; position: absolute; top: 50%; left: 50%;
    width: 44px; height: 44px; transform: translate(-50%, -50%);
  }
  .footer__follow a, .footer__links a, .footer__contact a, .footer__bottom a,
  .post-card .link-arrow, .hx__textlink, .ev-type__link, .sm-card__link {
    min-height: 44px; display: inline-flex; align-items: center;
  }
  .pagination a, .pagination span { min-width: 44px; min-height: 44px; }
  .ct-social a { width: 44px; height: 44px; }
  /* The floating cart button covered the add-to-order buttons it complements. */
  .mn-body { padding-bottom: 96px; }
}

/* At 320px the category strip was squeezed to 189px beside the view toggle,
   hiding 7 of 10 categories with no scroll affordance. */
@media (max-width: 560px) {
  .menu-tabs__bar { flex-wrap: wrap; }
  .menu-tabs__inner {
    flex: 1 0 100%;
    -webkit-mask-image: linear-gradient(90deg, #000 86%, transparent);
    mask-image: linear-gradient(90deg, #000 86%, transparent);
  }
  .view-toggle { margin-left: auto; }
}

/* Narrow phones: let any button wrap rather than clip its label. */
@media (max-width: 560px) {
  .btn { white-space: normal; line-height: 1.3; }
}

/* Tap targets missed by the first pass (measured 18px–39px tall). */
@media (max-width: 800px) {
  .menu-tabs a, .menu-tabs__inner a { min-height: 44px; display: inline-flex; align-items: center; }
  .mn-switch a { min-height: 44px; display: inline-flex; align-items: center; }
  .view-toggle a { min-width: 44px; }
  .ev-type__link, .ev-contact a, .ev-menu a { min-height: 44px; display: inline-flex; align-items: center; }
}

/* Last tap-target pass: the "Start your order online" link was 23px tall. */
@media (max-width: 800px) {
  .ord-bar__text a, .ord-bar a[data-order-start], a[data-order-start] { min-height: 44px; display: inline-flex; align-items: center; }
  .mn-switch a { padding-left: .5rem; padding-right: .5rem; }
}

/* Clear-cart control: a quiet tertiary action under the main cart buttons. */
.cart__clear {
  display: block;
  width: 100%;
  margin-top: .7rem;
  padding: .5rem;
  background: none;
  border: 0;
  color: var(--muted);
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}
.cart__clear:hover { color: var(--burgundy); }

/* ============================================================
   Home — "Our Kitchen" feature
   The panel was one flat burgundy wash with a short paragraph beside
   a bare rectangle photo, so it read thinner than the sections either
   side of it. It now has a lit ground, the kitchen's credentials as
   scannable marks, and a gold-framed portrait with a caption plate.
   ============================================================ */
.feature--kitchen {
  position: relative;
  background: linear-gradient(158deg, #5f1a26 0%, var(--burgundy) 44%, var(--burgundy-2) 100%);
}
/* Warm light from the top left, so the ground has a direction. */
.feature--kitchen::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(58% 68% at 10% -5%, rgba(217,164,65,.20), transparent 62%),
    radial-gradient(48% 62% at 104% 104%, rgba(217,164,65,.11), transparent 60%);
}
/* A weave at the very edge of visibility, to kill the flatness of the fill. */
.feature--kitchen::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .5;
  background-image: repeating-linear-gradient(135deg, rgba(255,255,255,.045) 0 1px, transparent 1px 10px);
}
.feature--kitchen .feature__grid {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, .96fr);
}
.feature--kitchen .feature__body h2 { text-wrap: balance; }
.feature--kitchen .feature__body > p { max-width: 46ch; }

/* Credentials, one line of display type each, separated by gold hairlines. */
.feature__marks {
  list-style: none;
  margin: 1.9rem 0 0;
  padding: 0;
}
.feature__marks li {
  display: flex;
  align-items: flex-start;
  gap: .95rem;
  text-align: left;
}
.feature__marks li + li {
  margin-top: 1.05rem;
  padding-top: 1.05rem;
  border-top: 1px solid rgba(240,217,168,.18);
}
.feature__marks svg {
  flex: none;
  width: 20px;
  height: 20px;
  margin-top: .3rem;
  color: #e8cf9b;
}
.feature__marks b {
  display: block;
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: .01em;
  color: #fff;
}
.feature__marks span {
  display: block;
  margin-top: .15rem;
  font-size: .88rem;
  line-height: 1.6;
  color: rgba(255,255,255,.72);
}

/* Portrait with a gold hairline stepped in behind it, echoing .frame. */
.feature--kitchen .feature__media { padding: 0 1.5rem 1.5rem 0; }
.feature--kitchen .feature__media::before {
  content: "";
  position: absolute;
  inset: 1.5rem 0 0 1.5rem;
  border: 1px solid rgba(240,217,168,.45);
  pointer-events: none;
}
.feature__shot {
  position: relative;
  margin: 0;
  overflow: hidden;
}
.feature__shot img {
  box-shadow: 0 30px 70px rgba(0,0,0,.38);
  transition: transform .8s cubic-bezier(.2,.8,.2,1), filter .8s;
}
.feature--kitchen .feature__media:hover .feature__shot img {
  transform: scale(1.04);
  filter: saturate(1.06);
}
.feature__shot figcaption {
  position: absolute;
  inset: auto 0 0 0;
  display: flex;
  align-items: center;
  gap: .7rem;
  padding: 3rem 1.3rem 1.1rem;
  background: linear-gradient(transparent, rgba(20,6,10,.55) 45%, rgba(20,6,10,.88));
  font-size: .8rem;
  line-height: 1.45;
  letter-spacing: .03em;
  color: #f7eeee;
}
.feature__shot figcaption::before {
  content: "";
  flex: none;
  width: 20px;
  height: 1px;
  background: var(--gold);
}

@media (max-width: 860px) {
  .feature--kitchen .feature__grid { grid-template-columns: 1fr; }
  .feature__marks { max-width: 420px; margin-inline: auto; }
  .feature--kitchen .feature__media { padding: 0 1rem 1rem 0; }
  .feature--kitchen .feature__media::before { inset: 1rem 0 0 1rem; }
}
/* Stacked, the two buttons were ragged different widths. Match them. */
@media (max-width: 620px) {
  .feature--kitchen .feature__actions {
    flex-direction: column;
    align-items: stretch;
    max-width: 320px;
    margin-inline: auto;
  }
}
@media (prefers-reduced-motion: reduce) {
  .feature__shot img { transition: none; }
  .feature--kitchen .feature__media:hover .feature__shot img { transform: none; filter: none; }
}

/* Category notes: honour line breaks typed in the admin textarea, so a list
   (e.g. the Mains sauces) can be kept on its own line instead of wrapping
   out of the sentence in front of it. */
.mn-cat__note { white-space: pre-line; }

/* The events set-menu cards no longer lead with a price, so the name is the
   first element in the card and does not need the old gap above it. */
.ev-menu h3:first-child { margin-top: 0; }

/* ============================================================
   Home — marquee band
   Replaces the small static "known for" strip that sat here: the same
   words, but at display size and moving, so they register on the way
   past instead of reading as fine print.
   ============================================================ */
.mq {
  background: var(--ink);
  border-block: 1px solid rgba(240,217,168,.22);
  padding: clamp(.9rem, 2.2vw, 1.5rem) 0;
  overflow: hidden;
}
/* The fade sits on a static wrapper, not the section, so the gold
   hairlines above and below stay solid edge to edge. */
.mq__viewport {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.mq__track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: mqScroll 44s linear infinite;
}
.mq:hover .mq__track { animation-play-state: paused; }
.mq__group {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}
.mq__group li {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3.5vw, 2.8rem);
  font-weight: 400;
  line-height: 1.25;
  white-space: nowrap;
  color: #f6ecec;
}
.mq__sep {
  display: flex;
  align-items: center;
  padding: 0 clamp(1rem, 2.8vw, 2.3rem);
}
.mq__sep i {
  width: 9px;
  height: 9px;
  border: 1px solid var(--gold);
  transform: rotate(45deg);
}
/* Every second word is outlined rather than filled, for rhythm. Guarded,
   because without stroke support transparent text would simply vanish. */
@supports (-webkit-text-stroke: 1px #fff) {
  /* Must out-specify `.mq__group li`, which sets the fill colour. */
  .mq__group li.mq__ghost {
    color: transparent;
    -webkit-text-stroke: 1px rgba(246,236,236,.6);
  }
}
@keyframes mqScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .mq__track { animation: none; }
  .mq__viewport { -webkit-mask-image: none; mask-image: none; }
}

/* ============================================================
   Gift cards
   Buying page (form + live preview of the card) and the receipt.
   ============================================================ */
.gc { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(0, .85fr); gap: clamp(1.8rem, 4vw, 3.2rem); align-items: start; }
@media (max-width: 940px) { .gc { grid-template-columns: 1fr; } }

.gc__set { border: 0; margin: 0 0 1.9rem; padding: 0; }
.gc__set:last-of-type { margin-bottom: 1.4rem; }
.gc__legend {
  padding: 0; margin-bottom: .9rem;
  font-family: var(--font-body); font-size: .72rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase; color: var(--burgundy);
}
.gc__set.has-error .gc__legend { color: #a12a2a; }
.gc__hint { margin-top: .4rem; font-size: .8rem; color: var(--muted); }
.gc__optional { color: var(--muted) !important; font-weight: 400; text-transform: none; letter-spacing: 0; font-size: .75rem; }
.gc__sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* Design swatches */
.gc__designs { display: grid; grid-template-columns: repeat(4, 1fr); gap: .8rem; }
@media (max-width: 560px) { .gc__designs { grid-template-columns: repeat(2, 1fr); } }
.gc__design { cursor: pointer; display: block; text-align: center; }
.gc__design input { position: absolute; opacity: 0; pointer-events: none; }
.gc__swatch {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .15rem;
  aspect-ratio: 8/5; border-radius: 6px; background: var(--gc-accent); color: var(--gc-ink);
  border: 2px solid transparent; box-shadow: 0 6px 16px rgba(40,15,20,.14);
  transition: transform .25s, border-color .25s, box-shadow .25s;
}
.gc__swatch b { font-family: var(--font-display); font-size: .82rem; font-weight: 600; }
.gc__swatch i { font-size: .56rem; letter-spacing: .16em; text-transform: uppercase; font-style: normal; opacity: .8; }
.gc__design input:checked + .gc__swatch { border-color: var(--gold); transform: translateY(-3px); box-shadow: 0 12px 26px rgba(40,15,20,.22); }
.gc__design input:focus-visible + .gc__swatch { outline: 2px solid var(--gold); outline-offset: 3px; }
.gc__design-name { display: block; margin-top: .45rem; font-size: .78rem; color: var(--muted); }

/* Amount chips */
.gc__amounts { display: flex; flex-wrap: wrap; gap: .6rem; }
.gc__amount { cursor: pointer; }
.gc__amount input { position: absolute; opacity: 0; pointer-events: none; }
.gc__amount span {
  display: inline-flex; align-items: center; justify-content: center; min-width: 84px; min-height: 46px;
  padding: 0 1.1rem; border: 1px solid var(--line); border-radius: 4px; background: #fff;
  font-family: var(--font-display); font-size: 1.12rem; color: var(--ink);
  transition: border-color .2s, background .2s, color .2s;
}
.gc__amount input:checked + span { border-color: var(--burgundy); background: var(--burgundy); color: #fff; }
.gc__amount input:focus-visible + span { outline: 2px solid var(--gold); outline-offset: 2px; }
.gc__custom { margin-top: .9rem; max-width: 260px; }

.gc__secure { display: flex; align-items: center; justify-content: center; gap: .45rem; margin: .9rem 0 0; font-size: .82rem; color: var(--muted); }
.gc__secure svg { color: var(--olive); flex: none; }

/* Preview card, mirrored on the receipt page */
.gc__preview {
  position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: .25rem; aspect-ratio: 8/5; border-radius: 10px; padding: 1.4rem;
  background: var(--gc-accent); color: var(--gc-ink);
  box-shadow: 0 20px 44px rgba(40,15,20,.22); text-align: center;
  transition: background .4s;
}
.gc__preview::before { content: ""; position: absolute; inset: 10px; border: 1px solid currentColor; opacity: .28; border-radius: 6px; pointer-events: none; }
.gc__preview-brand { font-family: var(--font-display); font-size: 1.05rem; font-weight: 600; }
.gc__preview-value { font-family: var(--font-display); font-size: clamp(2.1rem, 6vw, 2.9rem); font-weight: 600; line-height: 1.05; }
.gc__preview-label { font-size: .6rem; letter-spacing: .26em; text-transform: uppercase; opacity: .8; }
.gc__preview-foot { margin-top: .5rem; font-size: .68rem; opacity: .7; }
.gc__preview-code { margin-top: .6rem; font-family: Consolas, Menlo, monospace; font-size: 1rem; letter-spacing: .1em; }
.gc__preview--lg { max-width: 420px; margin: 0 auto 2rem; }

/* Sidebar */
.gc__aside-title { font-size: 1.3rem; margin: 1.8rem 0 .8rem; }
.gc__steps { list-style: none; margin: 0; padding: 0; counter-reset: gc; }
.gc__steps li { position: relative; counter-increment: gc; padding: 0 0 1rem 2.4rem; }
.gc__steps li::before {
  content: counter(gc); position: absolute; left: 0; top: .05rem;
  width: 1.6rem; height: 1.6rem; border: 1px solid var(--gold-line); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .72rem; color: var(--burgundy);
}
.gc__steps b { display: block; font-size: .95rem; }
.gc__steps span { display: block; font-size: .86rem; line-height: 1.6; color: var(--muted); }
.gc__terms, .gc__balance { margin-top: 1.6rem; padding-top: 1.4rem; border-top: 1px solid var(--line); }
.gc__terms h3, .gc__balance h3 { font-size: .74rem; letter-spacing: .18em; text-transform: uppercase; font-family: var(--font-body); color: var(--burgundy); margin-bottom: .6rem; }
.gc__terms p { font-size: .84rem; line-height: 1.65; color: var(--muted); }
.gc__balance .field { margin-bottom: .6rem; }
.gc__balance input { text-transform: uppercase; letter-spacing: .06em; }
.gc__balance-result { margin: .9rem 0 0; padding: .8rem 1rem; background: var(--blush); border-left: 3px solid var(--olive); font-size: .9rem; }
.gc__balance-result b { font-family: var(--font-display); font-size: 1.3rem; color: var(--burgundy); }
.gc__balance-result span { color: var(--muted); font-size: .82rem; }
.gc__balance-result--none { border-left-color: #a12a2a; }

/* Receipt */
.gc__receipt .lead { margin-top: 0; }
.gc__facts { display: grid; gap: .1rem; margin: 1.4rem 0; padding: 0; }
.gc__facts > div { display: flex; justify-content: space-between; gap: 1rem; padding: .7rem 0; border-bottom: 1px solid var(--line); }
.gc__facts dt { color: var(--muted); font-size: .86rem; margin: 0; }
.gc__facts dd { margin: 0; font-weight: 600; }
.gc__receipt-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.4rem; }

/* Gift cards: shown in place of the buy form while payments are unavailable. */
.gc__offline h2 { margin-top: 0; font-size: 1.4rem; }
.gc__offline p { color: var(--muted); }

/* ============================================================
   Delivery partners (Uber Eats, DoorDash)
   A logo when one has been uploaded, otherwise the partner's name
   set in its own brand colour, so the links work before the
   official artwork exists.
   ============================================================ */
.dp { margin-top: 1.4rem; }
.dp__label {
  display: block; margin-bottom: .6rem;
  font-size: .66rem; font-weight: 600; letter-spacing: .2em;
  text-transform: uppercase; color: var(--muted);
}
.dp--light .dp__label { color: rgba(255,255,255,.72); }
.dp__list { display: flex; flex-wrap: wrap; gap: .7rem; }
.cta-band .dp__list { justify-content: center; }
.dp__link {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 46px; padding: .5rem 1.15rem;
  background: #fff; border: 1px solid var(--line); border-radius: 6px;
  box-shadow: 0 4px 14px rgba(40,15,20,.08);
  transition: transform .25s cubic-bezier(.2,.8,.2,1), box-shadow .25s, border-color .25s;
}
.dp__link:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(40,15,20,.16); border-color: var(--dp-brand); }
.dp__link:focus-visible { outline: 2px solid var(--dp-brand); outline-offset: 3px; }
/* Logos vary wildly in proportion; cap the height and let width follow. */
.dp__link img { height: 26px; width: auto; max-width: 150px; object-fit: contain; display: block; }
.dp__name { font-weight: 700; font-size: .95rem; letter-spacing: -.01em; color: var(--dp-brand); white-space: nowrap; }
.footer .dp__link { background: rgba(255,255,255,.96); border-color: transparent; }
@media (max-width: 560px) { .dp__list { gap: .5rem; } .dp__link { padding: .45rem .9rem; } .dp__link img { height: 22px; } }

/* Order confirmation: link through to the printable tax invoice. */
.order-done__invoice { margin-top: 1.4rem; }
.order-done__gst td { color: var(--muted); font-size: .9rem; }

/* Seasonal promo: gold pill beside the address in the top bar, a strip on small screens
   (where the top bar is hidden), and a burgundy banner directly under the home hero. */
.topbar a.topbar__promo { padding: .3rem .85rem; border-radius: 999px; background: #c9a45c; color: #1d1a12; font-weight: 600; }
.topbar a.topbar__promo:hover { background: #d8b673; color: #1d1a12; text-decoration: none; }
.promo-strip { display: none; }
@media (max-width: 1100px) {
  .promo-strip { display: flex; align-items: center; justify-content: center; gap: .5rem; padding: .55rem 1rem; background: #c9a45c; color: #1d1a12; font-size: .68rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; text-align: center; }
  .promo-strip:hover { background: #d8b673; text-decoration: none; }
}
.hm-seasonal { padding-bottom: 0; }
.seasonal-banner__media { display: block; min-height: 100%; }
.seasonal-banner .seasonal__price { color: #f0d9a8; margin-bottom: 1.4rem; }
.seasonal-banner .seasonal__price small { color: rgba(255,255,255,.75); }

/* Search landing pages (site/landing.blade.php) */
.lp-menu { max-width: 980px; margin: 3rem auto 0; }
.lp-menu:first-of-type { margin-top: 0; }
.dishes + .lp-menu { margin-top: 4rem; }
.lp-menu__head { text-align: center; margin-bottom: 2rem; }
.lp-menu__head h3 { font-size: 1.7rem; margin: 0 0 .4rem; }
.lp-menu__head p { max-width: 640px; margin: 0 auto; font-size: .9rem; color: var(--muted); }
.lp-menu__items { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.6rem 3.5rem; }
.lp-visit { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.lp-visit__list { margin: 1.4rem 0 0; }
.lp-visit__list dt { display: flex; align-items: center; gap: .5rem; margin-top: 1.4rem; font-size: .68rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: #8a6a34; }
.lp-visit__list dd { margin: .4rem 0 0; line-height: 1.7; }
.lp-visit__list dd span { display: block; }
.lp-visit__list dd small { color: var(--muted); }
.lp-visit__list a { color: var(--burgundy); text-decoration: underline; text-underline-offset: 3px; }
.lp-faq { max-width: 860px; }
.lp-faq__item { border-bottom: 1px solid var(--line); }
.lp-faq__item summary { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding: 1.3rem 0; cursor: pointer; list-style: none; }
.lp-faq__item summary::-webkit-details-marker { display: none; }
.lp-faq__item summary::after { content: "+"; flex: none; font-family: var(--font-display); font-size: 1.7rem; line-height: 1; color: var(--gold-line); transition: transform .3s; }
.lp-faq__item[open] summary::after { transform: rotate(45deg); }
.lp-faq__item summary h3 { margin: 0; font-size: 1.22rem; }
.lp-faq__item p { margin: 0 0 1.5rem; max-width: 720px; color: var(--ink-2); line-height: 1.75; }
.lp-related { display: flex; flex-wrap: wrap; justify-content: center; gap: .8rem 1rem; }
.lp-related a { display: inline-flex; align-items: center; gap: .6rem; padding: .8rem 1.3rem; border: 1px solid var(--line); background: var(--blush); font-family: var(--font-display); font-size: 1.05rem; color: var(--ink); transition: border-color .3s, color .3s; }
.lp-related a:hover { border-color: var(--gold-line); color: var(--burgundy); text-decoration: none; }
.lp-related svg { width: 16px; height: 16px; }
.hm-explore { margin: 1.4rem 0 0; text-align: center; font-size: .9rem; color: var(--muted); }
.hm-explore a { color: var(--burgundy); text-decoration: underline; text-underline-offset: 3px; }
.footer__links--explore { padding-top: 0; border-top: 0; font-size: .78rem; }
@media (max-width: 800px) { .lp-menu__items, .lp-visit { grid-template-columns: 1fr; } }
.topbar a.topbar__order { font-size: .7rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: #f0d9a8; }
a.ord-bar__view { display: inline-flex; align-items: center; }

/* Home: festive Christmas banner (no photograph) — evergreen, gold, snow and a string of lights. */
.hm-xmas { position: relative; isolation: isolate; overflow: hidden; text-align: center; color: #fff; padding: clamp(4.2rem, 7vw, 5.5rem) 1.5rem clamp(3rem, 6vw, 4.2rem);
  background-color: #0a2a20;
  background-image: radial-gradient(ellipse at 50% 0%, rgba(217,184,119,.22) 0%, transparent 55%), radial-gradient(ellipse at 50% 120%, rgba(158,26,44,.35) 0%, transparent 60%), radial-gradient(circle at 1px 1px, rgba(217,184,119,.12) 1px, transparent 0);
  background-size: auto, auto, 24px 24px; box-shadow: 0 30px 70px rgba(10,42,32,.28); }
.hm-xmas::before { content: ""; position: absolute; inset: 12px; border: 1px solid rgba(217,184,119,.45); pointer-events: none; z-index: -1; }
.hm-xmas .xm-snow { z-index: -1; }
.hm-xmas__body { position: relative; max-width: 720px; margin: 0 auto; }
.hm-xmas .xm-holly { width: 92px; height: 46px; margin-bottom: 1rem; filter: drop-shadow(0 4px 10px rgba(0,0,0,.35)); }
.hm-xmas__title { color: #fff; font-size: clamp(2.3rem, 5vw, 3.8rem); line-height: 1.05; margin: 0; text-shadow: 0 4px 30px rgba(0,0,0,.35); }
.hm-xmas__lead { font-family: var(--font-display); font-style: italic; font-size: clamp(1.1rem, 1.9vw, 1.35rem); line-height: 1.55; color: rgba(255,255,255,.9); margin: 0 auto 1.4rem; max-width: 620px; }
.hm-xmas__price { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 2.7rem); font-weight: 600; color: #e6cf98; margin: 0 0 1.8rem; }
.hm-xmas__price small { font-family: var(--font-body); font-size: .8rem; font-weight: 400; letter-spacing: .08em; color: rgba(255,255,255,.75); }
.hm-xmas__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: .9rem; }
/* String of lights: a drooping wire with alternating gold / red / green bulbs */
.hm-xmas__lights { position: absolute; top: 0; left: 0; right: 0; height: 46px; display: flex; justify-content: space-around; padding: 0 3%; pointer-events: none; }
.hm-xmas__lights::before { content: ""; position: absolute; left: -2%; right: -2%; top: -30px; height: 48px; border-bottom: 1.5px solid rgba(217,184,119,.55); border-radius: 0 0 50% 50% / 0 0 100% 100%; }
.hm-xmas__lights i { position: relative; width: 9px; height: 13px; border-radius: 50% 50% 50% 50% / 40% 40% 60% 60%; background: #f0c766; box-shadow: 0 0 12px 3px rgba(240,199,102,.75); margin-top: calc(10px + 9px * sin(var(--i) * 10deg)); animation: hmXmasTwinkle 2.4s ease-in-out infinite; animation-delay: calc(var(--i) * -.37s); }
.hm-xmas__lights i::before { content: ""; position: absolute; top: -4px; left: 2.5px; width: 4px; height: 4px; background: #c9a45c; border-radius: 1px; }
.hm-xmas__lights i:nth-child(3n+2) { background: #e2475f; box-shadow: 0 0 12px 3px rgba(226,71,95,.7); }
.hm-xmas__lights i:nth-child(3n) { background: #58c08f; box-shadow: 0 0 12px 3px rgba(88,192,143,.65); }
@keyframes hmXmasTwinkle { 0%, 100% { opacity: 1; } 50% { opacity: .45; } }
.hm-xmas__star { position: absolute; color: #e6cf98; opacity: .7; animation: hmXmasTwinkle 3.2s ease-in-out infinite; }
.hm-xmas__star svg { width: 100%; height: 100%; display: block; }
.hm-xmas__star--a { width: 22px; height: 22px; top: 26%; left: 9%; }
.hm-xmas__star--b { width: 14px; height: 14px; top: 62%; left: 15%; animation-delay: -1.1s; }
.hm-xmas__star--c { width: 18px; height: 18px; top: 30%; right: 10%; animation-delay: -.6s; }
.hm-xmas__star--d { width: 12px; height: 12px; top: 68%; right: 16%; animation-delay: -1.8s; }
@media (max-width: 700px) { .hm-xmas__lights i:nth-child(even), .hm-xmas__star { display: none; } .hm-xmas__title { font-size: 2.1rem; } .hm-xmas__actions .btn { width: 100%; } }
@media (prefers-reduced-motion: reduce) { .hm-xmas__lights i, .hm-xmas__star { animation: none; } }

/* Christmas page: the hero and the closing call-to-action use the same festive theme, without a photograph. */
.xm-hero--festive { background-color: #0a2a20; background-image: radial-gradient(ellipse at 50% 0%, rgba(217,184,119,.22) 0%, transparent 55%), radial-gradient(ellipse at 50% 125%, rgba(158,26,44,.4) 0%, transparent 60%), radial-gradient(circle at 1px 1px, rgba(217,184,119,.12) 1px, transparent 0); background-size: auto, auto, 24px 24px; }
.xm-hero--festive::after { display: none; }
.xm-hero--festive .hm-xmas__lights { z-index: 0; }
.xm-holly--hero { width: 104px; height: 52px; margin: 0 auto 1.1rem; filter: drop-shadow(0 4px 10px rgba(0,0,0,.35)); }
.xm-closing { padding-top: clamp(2.5rem, 5vw, 4rem); }
