:root {
  --ink: #14110d;
  --charcoal: #26231f;
  --cream: #f6efe4;
  --paper: #fffaf1;
  --paper-warm: #fbf3e3;
  --page-gutter: clamp(18px, 5vw, 72px);
  --menu-content-max: 980px;
  --site-header-sticky-top: 72px;
  --menu-scroll-margin: 160px;
  --claret: #642f29;
  --mahogany: #3b211c;
  --tomato: #b54834;
  --tomato-deep: #8f3525;
  --brass: #c89445;
  --gold: #e8b56a;
  --accent: #a0c4ce;
  --accent-deep: #7fb0bc;
  --line: rgba(20, 17, 13, 0.14);
  --line-soft: rgba(20, 17, 13, 0.08);
  --shadow-lg: 0 30px 80px rgba(20, 17, 13, 0.22);
  --shadow-md: 0 14px 38px rgba(20, 17, 13, 0.16);
  --shadow-sm: 0 6px 14px rgba(20, 17, 13, 0.10);
  --radius-sm: 4px;
  --radius-md: 8px;
  color-scheme: light;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.6;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html { overflow-x: clip; }

img {
  display: block;
  max-width: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a { color: inherit; }

::selection { background: var(--tomato); color: var(--paper); }

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.skip-link:focus {
  z-index: 100;
  width: auto;
  height: auto;
  clip: auto;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  background: var(--paper);
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
  box-shadow: var(--shadow-md);
}

/* Top utility strip */
.top-strip {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  min-height: 36px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 4px 24px;
  padding: 8px clamp(20px, 4vw, 64px);
  background: var(--ink);
  color: rgba(255, 250, 241, 0.82);
  font-size: 12px;
  letter-spacing: 0.05em;
  box-shadow: 0 16px 28px -16px var(--ink), 0 1px 0 var(--ink);
  transition: transform 200ms ease, opacity 200ms ease;
}

body.is-scrolled .top-strip {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

.top-strip a {
  color: var(--accent);
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.06em;
}

.top-strip a:hover { color: var(--paper); }

.top-strip span + span::before {
  content: "·";
  margin-right: 12px;
  color: rgba(255, 250, 241, 0.34);
}

/* Header */
.site-header {
  position: fixed;
  z-index: 55;
  top: 33px;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(22px, 3vw, 52px);
  padding: 18px clamp(20px, 4vw, 64px);
  color: var(--paper);
  transition: background 200ms ease, color 200ms ease, box-shadow 200ms ease, padding 200ms ease, top 200ms ease;
}

body.is-scrolled .site-header { top: 0; }

.site-header::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0 0 -34px;
  background: linear-gradient(180deg, rgba(10, 9, 7, 0.9) 0%, rgba(10, 9, 7, 0.68) 55%, rgba(10, 9, 7, 0) 100%);
  pointer-events: none;
}

.site-header.is-scrolled,
.site-header.is-open {
  padding-top: 12px;
  padding-bottom: 12px;
  background: rgba(10, 9, 7, 0.94);
  color: var(--paper);
  box-shadow: 0 10px 28px rgba(10, 9, 7, 0.22);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.site-header.is-scrolled::before,
.site-header.is-open::before { opacity: 0; }

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: clamp(108px, 10vw, 156px);
}

.brand-logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 10px rgba(10, 9, 7, 0.55));
}

.site-header.is-scrolled .brand-logo img,
.site-header.is-open .brand-logo img {
  filter: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(8px, 1.2vw, 18px);
  margin-left: auto;
}

.site-nav a {
  position: relative;
  padding: 10px 4px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 160ms ease;
}

.site-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 4px;
  right: calc(4px + 0.14em);
  bottom: 4px;
  height: 2px;
  background: currentColor;
  opacity: 0;
  transform: scaleX(0.4);
  transform-origin: left;
  transition: opacity 200ms ease, transform 200ms ease;
}

.site-nav a:not(.nav-cta):hover,
.site-nav a:not(.nav-cta):focus-visible,
.site-nav a[aria-current="page"] { color: var(--accent); }

.site-nav a:not(.nav-cta):hover::after,
.site-nav a:not(.nav-cta):focus-visible::after,
.site-nav a[aria-current="page"]::after { opacity: 1; transform: scaleX(1); }

.nav-socials {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: 10px;
  padding-left: 16px;
  border-left: 1px solid rgba(255, 250, 241, 0.28);
}

.nav-socials a {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  padding: 0;
  color: inherit;
  border: 1px solid rgba(255, 250, 241, 0.3);
  border-radius: 999px;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.site-nav .nav-socials a:hover,
.site-nav .nav-socials a:focus-visible {
  color: var(--ink);
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
}

.nav-socials a::after { display: none; }

.nav-socials svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* Social icons everywhere */
.icon-social {
  display: inline-block;
  width: 16px;
  height: 16px;
  fill: currentColor;
  vertical-align: middle;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-socials a {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: var(--accent);
  border: 1px solid rgba(255, 250, 241, 0.22);
  border-radius: 999px;
  text-decoration: none;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease;
}

.footer-socials a:hover,
.footer-socials a:focus-visible {
  color: var(--ink);
  background: var(--accent);
  border-color: var(--accent);
}

.footer-socials svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.reservation-socials {
  gap: 10px;
}

.reservation-socials a {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: rgba(255, 250, 241, 0.82);
  border: 1px solid rgba(255, 250, 241, 0.22);
  border-radius: 999px;
  font-size: 0;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease;
}

.reservation-socials a:hover,
.reservation-socials a:focus-visible {
  color: var(--ink);
  background: var(--accent);
  border-color: var(--accent);
}

.reservation-socials svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.site-nav .nav-cta,
.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border: 1px solid currentColor;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
  cursor: pointer;
}

.site-nav .nav-cta {
  min-height: 56px;
  margin-left: clamp(8px, 1vw, 18px);
  padding: 16px clamp(20px, 2.4vw, 30px);
  border-color: var(--paper);
  background: var(--paper);
  color: var(--ink);
  letter-spacing: 0.14em;
}

.button:hover,
.site-nav .nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.primary {
  background: var(--tomato);
  border-color: var(--tomato);
  color: white;
}

.primary:hover {
  background: var(--tomato-deep);
  border-color: var(--tomato-deep);
}

.secondary {
  background: transparent;
  color: inherit;
}

.secondary:hover {
  background: rgba(255, 250, 241, 0.12);
}

.nav-toggle {
  display: none;
  width: 46px;
  aspect-ratio: 1;
  border: 1px solid currentColor;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: clamp(160px, 18vw, 220px) clamp(18px, 5vw, 72px) clamp(64px, 8vw, 96px);
  overflow: hidden;
  color: var(--paper);
  background: var(--ink);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 90% at 50% 100%, rgba(10, 9, 7, 0.62), rgba(10, 9, 7, 0) 60%),
    linear-gradient(180deg, rgba(10, 9, 7, 0.34), rgba(10, 9, 7, 0) 28%, rgba(10, 9, 7, 0.4));
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  opacity: 0;
  animation: heroFade 40s infinite;
  animation-timing-function: ease-in-out;
}

.slide-front {
  background-image: url("img/hero-front.png");
  /* Door center for headline; upward bias clears faces when cover-crops horizontally. */
  background-position: 49% 35%;
}

.slide-table     { animation-delay:  8s; background-image: url("img/dining-room.png"); background-position: center 52%; }
.slide-burger    { animation-delay: 16s; background-image: url("img/morrissey-house-mo-burger-craft-beer.webp"); background-position: center 56%; }
.slide-regular   { animation-delay: 24s; background-image: url("img/morrissey-house-pub-guest-reading.webp"); background-position: 48% 46%; }
.slide-exterior  { animation-delay: 32s; background-image: url("img/morrissey-house-downtown-london-exterior-mural.webp"); background-position: center 28%; }

@keyframes heroFade {
  0%, 18% { opacity: 1; }
  24%, 94% { opacity: 0; }
  100%    { opacity: 1; }
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(960px, 100%);
  text-align: center;
  text-shadow: 0 3px 26px rgba(10, 9, 7, 0.5);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--tomato);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--gold);
  font-size: clamp(13px, 1.4vw, 16px);
  letter-spacing: 0.32em;
}

h1, h2, h3, p { margin-top: 0; }

h1, h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  letter-spacing: -0.005em;
  overflow-wrap: break-word;
}

h1 {
  max-width: 920px;
  margin-bottom: 24px;
  font-size: clamp(64px, 11vw, 156px);
  line-height: 1.06;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(40px, 5.6vw, 78px);
  line-height: 1.06;
}

h3 {
  margin-bottom: 8px;
  font-family: "Manrope", sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.005em;
}

.hero h1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  gap: 0;
}

.hero h1 > span:not(:first-child) {
  margin-top: -0.038em;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-actions { justify-content: center; }

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px 30px;
  margin-top: 36px;
  color: rgba(255, 250, 241, 0.86);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-meta span {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.hero-meta span::before {
  content: "";
  width: 6px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--gold);
  display: inline-block;
}

.hero .button { min-width: 168px; }

.hero .secondary {
  background: rgba(255, 250, 241, 0.96);
  border-color: rgba(255, 250, 241, 0.96);
  color: var(--ink);
}

.hero .secondary:hover { background: var(--paper); }

/* Hero scroll cue */
.scroll-cue {
  position: absolute;
  z-index: 1;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 250, 241, 0.66);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.scroll-cue::after {
  content: "";
  display: block;
  width: 1px;
  height: 28px;
  margin: 8px auto 0;
  background: linear-gradient(180deg, rgba(255, 250, 241, 0.66), rgba(255, 250, 241, 0));
}

@media (max-aspect-ratio: 10 / 16) {
  .slide-front {
    background-position: 50% 30%;
  }
}

/* Sections / bands */
.band {
  background:
    radial-gradient(140% 80% at 0% 0%, rgba(200, 148, 69, 0.1), transparent 56%),
    var(--cream);
}

section:not(.hero) {
  padding: clamp(72px, 9vw, 132px) var(--page-gutter);
}

.section-heading {
  max-width: 760px;
}

.section-heading p:not(.eyebrow),
.events-content p,
.visit-content p,
.intro-copy p:first-child {
  font-size: clamp(17px, 1.6vw, 19px);
  color: rgba(20, 17, 13, 0.78);
}

.events-content p,
.visit-content p { color: rgba(255, 250, 241, 0.84); }

/* Intro section */
.intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 1fr);
  gap: clamp(36px, 7vw, 96px);
  align-items: center;
}

.intro-copy {
  position: relative;
}

.intro-copy .quote {
  position: relative;
  margin: 30px 0 12px;
  padding-left: 26px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 600;
  line-height: 1.1;
  color: var(--ink);
  border-left: 4px solid var(--brass);
}

.intro-copy span {
  display: inline-block;
  margin-top: 4px;
  color: var(--tomato);
  font-weight: 800;
  letter-spacing: 0.04em;
}

/* Pillars / story strip */
.pillars {
  background: var(--paper-warm);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
  margin-top: 40px;
}

.pillar {
  position: relative;
  padding: clamp(28px, 3vw, 40px);
  border: 1px solid var(--line);
  background: var(--paper);
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.pillar:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(181, 72, 52, 0.4);
}

.pillar-tag {
  display: inline-block;
  margin-bottom: 14px;
  padding: 4px 10px;
  background: var(--ink);
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.pillar-num {
  display: block;
  margin-bottom: 6px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(56px, 6vw, 86px);
  line-height: 0.9;
  color: var(--tomato);
}

.pillar h3 {
  margin-bottom: 8px;
  font-size: 18px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pillar p {
  margin: 0;
  color: rgba(20, 17, 13, 0.72);
  font-size: 15px;
}

/* Menu preview */
.menu-preview .section-heading,
.specials .section-heading {
  text-align: left;
}

.dish-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 38px;
}

.dish {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  background: var(--charcoal);
  color: white;
  isolation: isolate;
}

.dish img {
  transition: transform 600ms ease;
}

.dish:hover img { transform: scale(1.06); }

.dish::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(0deg, rgba(11, 9, 7, 0.92) 0%, rgba(11, 9, 7, 0.4) 38%, transparent 70%);
}

.dish > div {
  position: absolute;
  z-index: 2;
  left: 22px;
  right: 22px;
  bottom: 22px;
}

.dish span {
  display: inline-block;
  margin-bottom: 6px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.dish h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(24px, 2.2vw, 30px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}

.dish p {
  margin-bottom: 0;
  font-size: 14px;
  color: rgba(255, 250, 241, 0.86);
}

/* Specials */
.specials-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(14px, 1.8vw, 22px);
}

.specials-grid article { grid-column: span 3; }

/* Last row of 3 (Fri/Sat/Sun) takes 4 tracks each so the row fills cleanly */
.specials-grid article:nth-child(5),
.specials-grid article:nth-child(6),
.specials-grid article:nth-child(7) { grid-column: span 4; }

@media (max-width: 1180px) {
  .specials-grid article,
  .specials-grid article:nth-child(5),
  .specials-grid article:nth-child(6),
  .specials-grid article:nth-child(7) { grid-column: span 4; }
  .specials-grid article:nth-child(7) { grid-column: 5 / span 4; }
}

@media (max-width: 820px) {
  .specials-grid { grid-template-columns: repeat(2, 1fr); }
  .specials-grid article,
  .specials-grid article:nth-child(5),
  .specials-grid article:nth-child(6),
  .specials-grid article:nth-child(7) { grid-column: span 1; }
  .specials-grid article:nth-child(7) { grid-column: 1 / -1; }
}

@media (max-width: 540px) {
  .specials-grid { grid-template-columns: 1fr; }
  .specials-grid article,
  .specials-grid article:nth-child(5),
  .specials-grid article:nth-child(6),
  .specials-grid article:nth-child(7) { grid-column: 1 / -1; }
}

.specials-grid article {
  display: grid;
  grid-template-rows: minmax(190px, 14vw) 1fr;
  min-height: 100%;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper);
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.specials-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

.specials-grid article:hover img { transform: scale(1.04); }

.specials-grid article > div { padding: clamp(18px, 2vw, 26px); }

.specials-grid article.is-today {
  border-color: var(--tomato);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.specials-grid span {
  display: inline-grid;
  width: 50px;
  aspect-ratio: 1;
  place-items: center;
  margin-bottom: 18px;
  background: var(--ink);
  color: var(--paper);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.specials-grid article.is-today span { background: var(--tomato); }

.specials-grid h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 700;
  line-height: 1.04;
  margin-bottom: 8px;
}

.specials-grid p {
  margin-bottom: 0;
  font-size: 15px;
  color: rgba(20, 17, 13, 0.78);
}

.specials-note {
  margin: 26px 0 0;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: rgba(20, 17, 13, 0.6);
  font-size: 13px;
  letter-spacing: 0.02em;
}

/* Events / private */
.events {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: clamp(560px, 64vw, 760px);
  display: grid;
  align-items: end;
  padding: clamp(120px, 14vw, 200px) clamp(28px, 5vw, 80px) clamp(56px, 7vw, 110px);
  background: var(--ink);
  color: var(--paper);
}

.events-image {
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    url("img/morrissey-house-private-events-room.webp") center 42% / cover no-repeat;
  transform: scale(1.04);
}

.events::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 9, 7, 0.42) 0%, rgba(10, 9, 7, 0) 30%, rgba(10, 9, 7, 0.78) 78%, rgba(10, 9, 7, 0.92) 100%),
    linear-gradient(90deg, rgba(10, 9, 7, 0.62), rgba(10, 9, 7, 0.18) 50%, rgba(10, 9, 7, 0.38));
  pointer-events: none;
}

.events-content {
  position: relative;
  max-width: 760px;
}

.event-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 32px 0;
}

.event-stats span {
  padding: 20px;
  border: 1px solid rgba(255, 250, 241, 0.18);
  font-size: 13px;
  color: rgba(255, 250, 241, 0.76);
  letter-spacing: 0.04em;
}

.event-stats strong {
  display: block;
  margin-bottom: 4px;
  font-family: "Cormorant Garamond", serif;
  font-size: 44px;
  font-weight: 700;
  line-height: 1;
  color: var(--gold);
}

/* Featured review (parallax) */
.review-parallax {
  position: relative;
  min-height: clamp(540px, 64vw, 780px);
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: clamp(74px, 11vw, 150px) clamp(18px, 5vw, 72px);
  background:
    radial-gradient(70% 80% at 50% 50%, rgba(10, 9, 7, 0.32), rgba(10, 9, 7, 0.62) 100%),
    url("img/morrissey-house-downtown-london-exterior-mural.webp") center 50% / cover fixed;
  color: var(--paper);
  text-align: center;
}

.review-parallax::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(0deg, rgba(10, 9, 7, 0.6), transparent);
  pointer-events: none;
}

.review-parallax-content {
  position: relative;
  z-index: 1;
  width: min(1040px, 100%);
  text-shadow: 0 5px 28px rgba(10, 9, 7, 0.56);
}

.review-parallax .eyebrow { color: var(--gold); }

.feature-quote {
  padding: 0;
  border: 0;
  background: transparent;
}

.feature-quote p {
  max-width: 18ch;
  margin: 0 auto 24px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(48px, 7vw, 100px);
  line-height: 0.96;
  font-weight: 600;
  color: var(--paper);
}

.feature-quote p::before { content: "\201C"; color: rgba(255, 250, 241, 0.62); }
.feature-quote p::after  { content: "\201D"; color: rgba(255, 250, 241, 0.62); }

.feature-quote cite {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--paper);
  font-size: clamp(14px, 1.5vw, 18px);
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.feature-quote cite::before {
  content: "";
  flex: 0 0 auto;
  width: 48px;
  height: 2px;
  background: currentColor;
}

/* Reviews grid */
.reviews .section-heading { text-align: left; }

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 40px;
}

blockquote {
  margin: 0;
}

.review-grid blockquote {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
  padding: 22px 24px 20px 26px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  border-left: 4px solid var(--brass);
  background: var(--paper);
  box-shadow: var(--shadow-sm);
}

.review-grid blockquote p {
  margin: 0;
  flex: 1 1 auto;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(20px, 2.3vw, 23px);
  font-weight: 600;
  line-height: 1.14;
  letter-spacing: -0.01em;
  color: var(--ink);
  quotes: "\201C" "\201D";
}

.review-grid blockquote p::before {
  content: open-quote;
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  color: var(--brass);
}

.review-grid blockquote p::after {
  content: close-quote;
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  color: var(--brass);
}

.review-grid blockquote cite {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-top: auto;
  padding-top: 16px;
  color: var(--tomato);
  font-family: "Manrope", system-ui, sans-serif;
  font-style: normal;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.review-grid blockquote cite::before {
  content: "";
  display: block;
  width: 36px;
  height: 2px;
  background: currentColor;
}
.visit {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: clamp(32px, 6vw, 88px);
  align-items: stretch;
  background:
    radial-gradient(120% 80% at 100% 0%, rgba(232, 181, 106, 0.18), transparent 56%),
    linear-gradient(135deg, rgba(100, 47, 41, 0.96), rgba(59, 33, 28, 0.98)),
    var(--mahogany);
  color: var(--paper);
}

.visit-content { align-self: center; }

.visit .eyebrow { color: var(--gold); }

.hours {
  padding: clamp(28px, 4vw, 44px);
  background: var(--paper);
  color: var(--ink);
  box-shadow: var(--shadow-lg);
}

.hours h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(32px, 3vw, 42px);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.hours dl { margin: 0; }

.hours div {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-soft);
}

.hours div:last-child { border-bottom: 0; }

.hours dt { font-weight: 800; }

.hours dd {
  margin: 0;
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.hours-today {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  padding: 10px 14px;
  background: var(--paper-warm);
  border: 1px solid var(--line);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hours-today::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--tomato);
  box-shadow: 0 0 0 4px rgba(181, 72, 52, 0.18);
}

.hours-email {
  margin-top: 18px;
  font-size: 14px;
}

.hours-email a {
  color: var(--tomato);
  font-weight: 800;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

/* Footer */
.site-footer {
  display: grid;
  grid-template-columns: minmax(200px, 1.35fr) repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: clamp(20px, 3vw, 36px);
  row-gap: clamp(28px, 4vw, 40px);
  padding: clamp(40px, 5vw, 64px) clamp(20px, 5vw, 72px) 22px;
  background: var(--ink);
  color: var(--paper);
}

.footer-brand strong {
  display: block;
  margin-bottom: 10px;
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  line-height: 1;
}

.footer-brand p {
  max-width: 340px;
  margin: 0 0 16px;
  color: rgba(255, 250, 241, 0.66);
  font-size: 14px;
  line-height: 1.6;
}

.footer-brand .footer-socials {
  margin-top: 4px;
}

.footer-col--hours .footer-hours-columns {
  max-width: 22rem;
}

.footer-col h4 {
  margin: 0 0 12px;
  color: var(--gold);
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.footer-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
  color: rgba(255, 250, 241, 0.78);
  font-size: 14px;
}

.footer-col a {
  color: inherit;
  text-decoration: none;
}

.footer-col a:hover { color: var(--paper); }

.footer-hours-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px clamp(14px, 2.2vw, 26px);
  align-items: start;
}

.footer-hours {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: baseline;
  column-gap: 10px;
  row-gap: 4px;
  margin: 0;
}

.footer-hours dt {
  margin: 0;
  font-weight: 700;
  color: rgba(255, 250, 241, 0.62);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-hours dd {
  margin: 0;
  font-size: 14px;
  line-height: 1.35;
  color: rgba(255, 250, 241, 0.86);
}

.footer-bottom {
  grid-column: 1 / -1;
  padding-top: 20px;
  margin-top: 4px;
  border-top: 1px solid rgba(255, 250, 241, 0.12);
  color: rgba(255, 250, 241, 0.52);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-align: center;
}

.footer-legal {
  margin: 0;
}

.footer-bottom a {
  color: rgba(255, 250, 241, 0.78);
  text-decoration: none;
}

.footer-bottom a:hover {
  color: var(--paper);
}

/* Page heroes */
.page-header {
  background: transparent;
  color: var(--paper);
  box-shadow: none;
}

.page-main { padding-top: 0; }

.page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: clamp(640px, 78svh, 880px);
  background: var(--ink);
  color: var(--paper);
  padding-top: clamp(190px, 16vw, 250px) !important;
  padding-bottom: clamp(72px, 9vw, 130px);
}

.page-hero::before,
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.page-hero::before {
  z-index: -2;
  background-image: var(--page-hero-image);
  background-position: var(--page-hero-position, center);
  background-size: cover;
  transform: scale(1.03);
}

.page-hero::after {
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(10, 9, 7, 0.42), rgba(10, 9, 7, 0.08) 38%, rgba(10, 9, 7, 0.6)),
    linear-gradient(90deg, rgba(10, 9, 7, 0.46), rgba(10, 9, 7, 0.1) 52%, rgba(10, 9, 7, 0.18));
}

.page-hero > p:not(.eyebrow) a,
.drinks-hero.page-hero > p:not(.eyebrow) a {
  color: var(--gold);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(232, 181, 106, 0.55);
}

.page-hero > p:not(.eyebrow) a:hover {
  text-decoration-color: var(--gold);
}

.about-hero            { --page-hero-image: url("img/morrissey-house-downtown-london-exterior-mural.webp"); --page-hero-position: center 46%; }
.menu-hero             { --page-hero-image: url("img/morrissey-house-dinner-table-spread.webp"); --page-hero-position: center 46%; }
.drinks-hero {
  --page-hero-image: image-set(url("img/drinks-hero-bartender.webp") type("image/webp"), url("img/drinks-hero-bartender.jpg") type("image/jpeg"));
  --page-hero-position: 38% 50%;
}
.drinks-hero.page-hero::after {
  background:
    linear-gradient(180deg, rgba(10, 9, 7, 0.58), rgba(10, 9, 7, 0.18) 42%, rgba(10, 9, 7, 0.78)),
    linear-gradient(90deg, rgba(10, 9, 7, 0.48), rgba(10, 9, 7, 0.1) 52%, rgba(10, 9, 7, 0.2));
}
.events-hero {
  --page-hero-image: url("img/drinks-portrait.jpg");
  --page-hero-position: 78% 42%;
}

.events-hero.page-hero::before {
  transform: scale(0.9);
  transform-origin: 82% 38%;
}
.reservations-hero     { --page-hero-image: url("img/dining-room.png"); --page-hero-position: center 50%; }
.private-events-hero   { --page-hero-image: url("img/morrissey-house-private-events-room.webp"); --page-hero-position: center 48%; }

/* Tuck stacked page-hero headlines (large display type reads loose with default flex gaps). */
.private-events-hero.page-hero h1 {
  gap: 0;
}

.private-events-hero.page-hero h1 > span:not(:first-child) {
  margin-top: -0.04em;
}

.page-hero > p,
.page-hero > h1,
.page-hero > .eyebrow {
  max-width: 980px;
  text-shadow: 0 3px 24px rgba(10, 9, 7, 0.58);
}

.page-hero h1 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
  gap: 0;
  font-size: clamp(60px, 8.4vw, 122px);
}

.page-hero h1 > span:not(:first-child) {
  margin-top: -0.04em;
}

.page-hero .hero-actions {
  justify-content: flex-start;
}

.split-hero { display: grid; grid-template-columns: minmax(0, 0.96fr) minmax(320px, 1.04fr); gap: clamp(30px, 6vw, 80px); align-items: center; }

.split-hero h1 { font-size: clamp(56px, 7.5vw, 112px); }

.page-hero > p:not(.eyebrow),
.split-hero p:not(.eyebrow) {
  max-width: 720px;
  font-size: clamp(17px, 1.7vw, 21px);
  color: rgba(255, 250, 241, 0.92);
}

.split-hero > *,
.page-hero > *,
.menu-section > * { min-width: 0; }

.split-hero img {
  min-height: 520px;
  border: 1px solid rgba(255, 250, 241, 0.22);
  box-shadow: var(--shadow-lg);
}

.page-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 26px;
  margin-top: 32px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 250, 241, 0.86);
}

.page-hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.page-hero-meta span::before {
  content: "";
  width: 6px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--gold);
}

/* About / story */
.story-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.story-grid article {
  padding: clamp(28px, 3vw, 40px);
  border: 1px solid var(--line);
  background: var(--paper);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.story-grid article:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.story-grid span,
.menu-list span {
  color: var(--tomato);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.story-grid strong {
  display: block;
  margin: 12px 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(48px, 6vw, 86px);
  font-weight: 700;
  line-height: 0.9;
  color: var(--ink);
}

.story-grid p {
  margin: 0;
  color: rgba(20, 17, 13, 0.74);
  font-size: 15px;
}

.about-story {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
  background: var(--paper);
}

.about-story .lede {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 600;
  line-height: 1.1;
  color: var(--ink);
}

.about-story-body p {
  margin-bottom: 18px;
  font-size: 17px;
  color: rgba(20, 17, 13, 0.82);
}

.about-story-body p strong {
  color: var(--tomato);
  font-weight: 800;
  letter-spacing: 0.02em;
}

.gallery-section,
.community-strip,
.menu-section,
.feature-list { background: var(--paper); }

.photo-grid,
.menu-photo-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.menu-photo-strip { margin-bottom: clamp(28px, 5vw, 54px); }

.photo-grid img,
.menu-photo-strip img { min-height: 360px; }

.photo-grid img {
  transition: transform 600ms ease;
}

.photo-grid figure {
  position: relative;
  margin: 0;
  overflow: hidden;
}

.photo-grid figure:hover img { transform: scale(1.04); }

.community-strip { padding-top: 0 !important; }

.section-action {
  margin: 36px 0 0;
}

/* Menu layout + sticky sub-navigation */
.page-main--menu .menu-section[id] {
  scroll-margin-top: var(--menu-scroll-margin, 160px);
}

.page-main--menu .menu-section > .section-heading,
.page-main--menu .menu-section > .menu-list,
.page-main--menu .menu-section > .subhead {
  max-width: var(--menu-content-max);
  margin-left: auto;
  margin-right: auto;
}

.menu-subnav-sticky {
  position: sticky;
  top: var(--site-header-sticky-top, 72px);
  z-index: 40;
  margin-top: clamp(-28px, -3.5vw, -18px);
  margin-bottom: 4px;
  background: rgba(255, 250, 241, 0.98);
  border-bottom: 1px solid var(--line-soft);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 12px 32px rgba(20, 17, 13, 0.07);
}

.menu-subnav-inner {
  box-sizing: border-box;
  max-width: var(--menu-content-max);
  margin: 0 auto;
  padding: 12px var(--page-gutter) 11px;
}

.menu-split-row {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}

.menu-subnav-sticky--drinks .menu-split-row {
  margin-bottom: 0;
}

.menu-subnav-inner .menu-split {
  box-shadow: 0 12px 36px rgba(10, 9, 7, 0.2);
}

.menu-subnav-inner .menu-jump {
  position: static;
  top: auto;
  z-index: auto;
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding: 0;
  margin: 0 -2px;
  background: transparent;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  scrollbar-width: none;
}

.menu-subnav-inner .menu-jump::-webkit-scrollbar {
  display: none;
}

.menu-jump {
  position: sticky;
  top: var(--site-header-sticky-top, 72px);
  z-index: 40;
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding: 12px var(--page-gutter);
  background: rgba(255, 250, 241, 0.97);
  border-top: none;
  border-bottom: 1px solid var(--line-soft);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  scrollbar-width: none;
  box-shadow: 0 6px 18px rgba(20, 17, 13, 0.035);
}

.menu-jump::-webkit-scrollbar { display: none; }

.menu-jump a {
  flex: 0 0 auto;
  padding: 9px 16px;
  border: none;
  background: transparent;
  color: rgba(20, 17, 13, 0.52);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
  border-radius: 999px;
  transition: background 160ms ease, color 160ms ease;
}

.menu-jump a:hover {
  background: rgba(20, 17, 13, 0.06);
  color: var(--ink);
}

.menu-jump a:focus-visible {
  outline: 2px solid var(--tomato);
  outline-offset: 2px;
}

.menu-split {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 5px;
  border-radius: 999px;
  background: rgba(20, 17, 13, 0.94);
  border: 1px solid rgba(255, 250, 241, 0.12);
  box-shadow: 0 18px 50px rgba(10, 9, 7, 0.28);
  gap: 4px;
}

.menu-split__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(255, 250, 241, 0.62);
  border: 1px solid transparent;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.menu-split__btn:hover {
  color: var(--paper);
}

.menu-split__btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.menu-split__btn.is-active {
  background: var(--paper);
  color: var(--ink);
}

.drinks-page-lede {
  box-sizing: border-box;
  max-width: 640px;
  margin: clamp(36px, 5vw, 56px) auto clamp(32px, 5vw, 52px);
  padding: 0 var(--page-gutter);
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 500;
  font-style: italic;
  line-height: 1.5;
  letter-spacing: 0.01em;
  color: rgba(20, 17, 13, 0.74);
}

.drinks-page-lede::before,
.drinks-page-lede::after {
  content: "";
  display: block;
  width: 44px;
  height: 1px;
  margin: 14px auto;
  background: rgba(181, 72, 52, 0.5);
}

.drinks-menu--minimal {
  padding-top: clamp(12px, 3vw, 28px);
}

.drinks-menu--minimal .drinks-category-title {
  margin-bottom: 20px;
}

.drinks-category-title {
  scroll-margin-top: var(--menu-scroll-margin, 120px);
}

.drinks-panel {
  margin: clamp(18px, 3vw, 28px) 0 0;
  padding: clamp(24px, 4vw, 36px) clamp(22px, 4vw, 36px);
  background: rgba(255, 250, 241, 0.92);
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  box-shadow: 0 16px 44px rgba(20, 17, 13, 0.06);
}

.drinks-wine-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 32px);
  margin-top: clamp(18px, 3vw, 28px);
}

.drinks-wine-grid .drinks-panel {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.drinks-wine-grid .drinks-panel.is-wide {
  grid-column: 1 / -1;
}

@media (max-width: 720px) {
  .drinks-wine-grid {
    grid-template-columns: 1fr;
  }
}

.drinks-port-block {
  position: relative;
  margin-top: clamp(56px, 8vw, 88px);
  padding: clamp(36px, 6vw, 56px) clamp(24px, 5vw, 48px);
  background:
    linear-gradient(180deg, rgba(20, 17, 13, 0.94), rgba(20, 17, 13, 0.96)),
    url("img/A7308955.jpg") center/cover no-repeat;
  color: var(--paper);
  border-radius: 14px;
  box-shadow: 0 24px 60px rgba(20, 17, 13, 0.18);
}

.drinks-port-block .drinks-category-title {
  color: var(--paper);
  margin-bottom: 16px;
}

.drinks-port-block .drinks-category-title::before {
  background: var(--gold);
}

.drinks-port-block .drinks-port-intro {
  max-width: 520px;
  margin: 0 auto clamp(24px, 4vw, 36px);
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.5;
  color: rgba(255, 250, 241, 0.82);
}

.drinks-port-block .drink-list {
  max-width: 520px;
  margin: 0 auto;
}

.drinks-port-block .drink-list li {
  color: var(--paper);
  border-bottom-color: rgba(255, 250, 241, 0.18);
  text-align: center;
  font-size: clamp(19px, 2.2vw, 22px);
}

.drinks-port-block .drinks-port-size {
  display: inline-block;
  margin-left: 10px;
  color: var(--gold);
}

.drinks-panel .drinks-subtitle--block {
  margin-top: 0;
}

.drinks-panel .drink-list li:first-child {
  padding-top: 0;
}

.drinks-beer-grid--text-only {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  gap: clamp(36px, 8vw, 80px);
  align-items: start;
}

.drinks-beer-grid--text-only .drink-list li {
  padding: 11px 0;
  border-bottom-color: rgba(20, 17, 13, 0.1);
}

.menu-note {
  box-sizing: border-box;
  margin: clamp(20px, 3vw, 32px) auto clamp(24px, 4vw, 40px);
  padding: 22px 26px;
  max-width: var(--menu-content-max);
  background: rgba(255, 250, 241, 0.65);
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  color: rgba(20, 17, 13, 0.78);
  font-size: 14px;
  line-height: 1.55;
  text-align: center;
}

.menu-note strong { color: var(--tomato); font-weight: 800; }

.menu-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.menu-list.compact { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.menu-list article {
  padding: 22px 24px;
  border: 1px solid var(--line);
  background: rgba(255, 250, 241, 0.78);
  transition: border-color 160ms ease, background 160ms ease;
}

.menu-list article:hover {
  border-color: rgba(181, 72, 52, 0.34);
  background: var(--paper);
  box-shadow: 0 10px 28px rgba(20, 17, 13, 0.08);
}

.menu-list h3 {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 8px;
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.005em;
}

.menu-list h3 span {
  flex: 0 0 auto;
  text-align: right;
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.06em;
  color: var(--tomato);
  white-space: nowrap;
}

.menu-list p {
  margin-bottom: 0;
  font-size: 14px;
  color: rgba(20, 17, 13, 0.74);
}

.subhead {
  margin-top: 64px;
  font-size: clamp(32px, 4vw, 56px);
}

/* Drinks menu */
.drinks-menu .section-heading {
  margin-bottom: 8px;
}

.drinks-note {
  max-width: 640px;
  margin: 0 auto 40px;
  text-align: center;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(20, 17, 13, 0.72);
}

.drinks-block {
  max-width: var(--menu-content-max);
  margin-left: auto;
  margin-right: auto;
}

.drinks-block + .drinks-block {
  margin-top: clamp(48px, 7vw, 72px);
}

.drinks-category-title {
  position: relative;
  margin: 0 0 32px;
  padding-top: 28px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(34px, 4.8vw, 52px);
  font-weight: 600;
  letter-spacing: 0.015em;
  text-align: center;
  color: var(--ink);
}

.drinks-category-title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 2px;
  background: var(--tomato);
  opacity: 0.85;
}

.drinks-beer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(200px, 280px) minmax(0, 1fr);
  gap: clamp(20px, 3.5vw, 40px);
  align-items: start;
}

.drinks-beer-grid .drinks-feature-fig {
  margin: 0;
  position: sticky;
  top: 96px;
}

.drinks-beer-grid .drinks-feature-fig img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}

.drink-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.drink-list li {
  padding: 12px 0;
  border-bottom: 1px dashed rgba(20, 17, 13, 0.18);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(17px, 2vw, 19px);
  font-weight: 600;
  line-height: 1.35;
  color: var(--ink);
}

.drink-list li:last-child {
  border-bottom: none;
}

.drink-list--wine .drink-name {
  font-weight: 700;
}

.drink-region {
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: rgba(20, 17, 13, 0.55);
}

.drink-region::before {
  content: "(";
}

.drink-region::after {
  content: ")";
}

.drinks-wine-intro {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 20px;
}

.drinks-wine-intro + .drinks-wine-row {
  margin-top: 0;
}

.drinks-subtitle--block {
  margin: 0 0 8px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(26px, 3.5vw, 34px);
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--ink);
}

.drinks-subhint {
  margin: 0;
  font-size: 14px;
  color: rgba(20, 17, 13, 0.62);
  line-height: 1.45;
}

.drinks-wine-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 340px);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  margin-top: clamp(28px, 4vw, 40px);
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid var(--line);
  background: rgba(255, 250, 241, 0.85);
}

.drinks-wine-row--flip {
  grid-template-columns: minmax(180px, 340px) minmax(0, 1fr);
}

.drinks-feature-fig {
  margin: 0;
}

.drinks-feature-fig img {
  width: 100%;
  height: auto;
  max-height: min(420px, 50vh);
  object-fit: cover;
  display: block;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.drinks-wine-stack {
  display: flex;
  flex-direction: column;
  gap: clamp(22px, 3vw, 32px);
}

.drinks-wine-sub .drinks-subtitle {
  margin: 0 0 12px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(22px, 2.8vw, 28px);
  font-weight: 600;
  color: var(--ink);
}

.drinks-wine-sub .drink-list li:first-child {
  padding-top: 0;
}

.drinks-port-size {
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tomato);
  vertical-align: middle;
}

.drinks-wine-row--port .drinks-subtitle {
  margin: 0 0 12px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(22px, 2.8vw, 28px);
}

@media (max-width: 640px) {
  .drinks-beer-grid--text-only {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .drinks-beer-grid--text-only .drink-list:first-child li:last-child {
    border-bottom: 1px dashed rgba(20, 17, 13, 0.12);
    margin-bottom: 8px;
  }

  .menu-split {
    width: 100%;
    max-width: 420px;
  }

  .menu-split__btn {
    flex: 1 1 auto;
    justify-content: center;
    padding-left: 16px;
    padding-right: 16px;
  }

  .drinks-beer-grid:not(.drinks-beer-grid--text-only) {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .drinks-beer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .drinks-beer-grid .drinks-feature-fig {
    grid-column: 1 / -1;
    order: -1;
    position: static;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .drinks-wine-row,
  .drinks-wine-row--flip {
    grid-template-columns: 1fr;
  }

  .drinks-wine-row .drinks-feature-fig {
    order: -1;
  }
}

/* CTA panel + feature list */
.cta-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(28px, 5vw, 80px);
  align-items: center;
  background:
    radial-gradient(120% 80% at 100% 0%, rgba(232, 181, 106, 0.18), transparent 56%),
    linear-gradient(135deg, rgba(100, 47, 41, 0.96), rgba(59, 33, 28, 0.98)),
    var(--mahogany);
  color: var(--paper);
}

.cta-panel img {
  min-height: 520px;
  box-shadow: var(--shadow-lg);
}

.cta-panel .eyebrow { color: var(--gold); }

.cta-panel p { color: rgba(255, 250, 241, 0.84); }

.feature-list {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(30px, 6vw, 80px);
}

.feature-list ul {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.feature-list li {
  position: relative;
  padding: 22px 0 22px 36px;
  border-bottom: 1px solid var(--line);
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 31px;
  width: 22px;
  height: 2px;
  background: var(--tomato);
}

.feature-list-subhead {
  margin: clamp(34px, 5vw, 48px) 0 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(28px, 3.6vw, 40px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.feature-list-body > .feature-list-subhead + ul {
  margin-top: 0;
}

/* Form sections */
.form-section {
  display: grid;
  position: relative;
  overflow: hidden;
  grid-template-columns: minmax(260px, 0.74fr) minmax(420px, 1.26fr);
  gap: clamp(28px, 5vw, 66px);
  align-items: center;
  background:
    radial-gradient(120% 80% at 0% 0%, rgba(232, 181, 106, 0.16), transparent 56%),
    linear-gradient(135deg, rgba(23, 21, 18, 0.96), rgba(59, 33, 28, 0.92)),
    var(--ink);
  color: var(--paper);
}

/* Guestgetter iframes use a near-black canvas; ease the seam by deepening this side of the section. */
.form-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(
    92deg,
    transparent 0%,
    transparent 40%,
    rgba(12, 10, 8, 0.45) 56%,
    rgba(6, 5, 5, 0.94) 100%
  );
}

.form-section > * {
  position: relative;
  z-index: 1;
}

.form-section .section-heading { max-width: 520px; }

.form-section .section-heading h2 { font-size: clamp(40px, 5vw, 72px); }

.form-section .section-heading p:not(.eyebrow) { color: rgba(255, 250, 241, 0.78); }

.form-section .eyebrow { color: var(--gold); }

.form-frame {
  overflow: hidden;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  max-width: 520px;
  width: 100%;
  margin-left: 0;
}

.subscribe-frame {
  max-width: 460px;
  border-radius: 14px;
  border: 1px solid rgba(255, 250, 241, 0.12);
  box-shadow: 0 22px 52px rgba(10, 9, 7, 0.48);
}
.private-event-frame {
  max-width: min(900px, 100%);
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(255, 250, 241, 0.12);
  box-shadow: 0 22px 52px rgba(10, 9, 7, 0.48);
}

.form-frame iframe {
  display: block;
  width: 100%;
  height: auto;
  min-height: 0;
  border: 0;
  background: transparent;
}

.form-fallback {
  grid-column: 2;
  margin: -22px 0 0;
  color: rgba(255, 250, 241, 0.66);
  font-size: 13px;
}

.form-fallback a {
  color: var(--accent);
  font-weight: 800;
}

/* Reservation page */
.reservation-section {
  display: grid;
  grid-template-columns: minmax(260px, 340px) minmax(0, 1fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: start;
  background:
    radial-gradient(110% 60% at 0% 0%, rgba(200, 148, 69, 0.14), transparent 56%),
    var(--paper);
}

.reservation-contact {
  position: sticky;
  top: 134px;
  padding: clamp(28px, 3.4vw, 48px);
  background:
    radial-gradient(120% 80% at 0% 0%, rgba(232, 181, 106, 0.12), transparent 60%),
    linear-gradient(145deg, rgba(38, 35, 31, 0.98), rgba(20, 17, 13, 0.98)),
    var(--ink);
  color: var(--paper);
  box-shadow: var(--shadow-lg);
}

.reservation-contact h2 {
  margin-bottom: 30px;
  font-size: clamp(36px, 4vw, 54px);
}

.contact-list,
.sidebar-hours {
  display: grid;
  gap: 22px;
}

.contact-list div,
.sidebar-hours {
  padding-top: 22px;
  border-top: 1px solid rgba(255, 250, 241, 0.16);
}

.contact-list span,
.sidebar-hours > span {
  display: block;
  margin-bottom: 6px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-list p,
.sidebar-hours dl {
  margin: 0;
}

.contact-list p {
  color: rgba(255, 250, 241, 0.86);
  font-size: 17px;
  line-height: 1.55;
}

.contact-list a {
  text-decoration: none;
  border-bottom: 1px solid rgba(232, 181, 106, 0.5);
}

.contact-list a:hover { border-bottom-color: var(--gold); color: var(--gold); }

.sidebar-hours { margin-top: 22px; }

.sidebar-hours dl { display: grid; gap: 8px; }

.sidebar-hours div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: rgba(255, 250, 241, 0.78);
  font-size: 14px;
}

.sidebar-hours dt { font-weight: 800; }

.sidebar-hours dd { margin: 0; text-align: right; font-variant-numeric: tabular-nums; }

.reservation-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 32px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 250, 241, 0.16);
}

.reservation-socials a {
  color: rgba(255, 250, 241, 0.8);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
}

.reservation-socials a:hover { color: var(--accent); }

.reservation-booking { min-width: 0; }

.reservation-booking .section-heading {
  display: grid;
  grid-template-columns: minmax(280px, 0.74fr) minmax(260px, 0.76fr);
  column-gap: clamp(24px, 4vw, 56px);
  align-items: end;
  max-width: none;
  margin-bottom: 28px;
}

.reservation-booking .section-heading .eyebrow,
.reservation-booking .section-heading h2 { grid-column: 1; }

.reservation-booking .section-heading p:not(.eyebrow) {
  grid-column: 2;
  margin-bottom: 8px;
}

.reservation-booking .section-heading h2 {
  margin-bottom: 0;
  font-size: clamp(40px, 4.6vw, 70px);
}

.reservation-frame {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  max-width: none;
  width: 100%;
}

.reservation-frame iframe { height: auto; min-height: 580px; background: transparent; }

.reservation-fallback {
  margin: 14px 0 0;
  color: rgba(20, 17, 13, 0.62);
  font-size: 13px;
}

.reservation-fallback a {
  color: var(--tomato);
  font-weight: 800;
}

/* Events page additions */
.events-page-block {
  background: var(--paper);
}

.event-types {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: 16px;
  margin-top: 36px;
}

.event-types article {
  padding: 28px 26px;
  border: 1px solid var(--line);
  background: var(--paper);
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.event-types article:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(181, 72, 52, 0.36);
}

.event-types span {
  display: inline-block;
  margin-bottom: 12px;
  padding: 4px 10px;
  background: var(--ink);
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.event-types h3 {
  margin-bottom: 8px;
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.005em;
}

.event-types p {
  margin: 0;
  color: rgba(20, 17, 13, 0.74);
  font-size: 15px;
}

/* Empty state for events calendar */
.empty-state {
  margin-top: 36px;
  padding: clamp(36px, 4vw, 56px);
  border: 1px dashed var(--line);
  background: var(--paper-warm);
  text-align: center;
}

.empty-state h3 {
  margin-bottom: 10px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 700;
}

.empty-state p {
  max-width: 520px;
  margin: 0 auto 20px;
  color: rgba(20, 17, 13, 0.74);
}

/* 404 */
.notfound {
  display: grid;
  place-items: center;
  min-height: 100svh;
  padding: 120px clamp(20px, 5vw, 72px);
  background: var(--ink);
  color: var(--paper);
  text-align: center;
}

.notfound .eyebrow { color: var(--gold); }

.notfound h1 {
  font-size: clamp(96px, 18vw, 220px);
  line-height: 0.86;
  margin-bottom: 18px;
}

.notfound p {
  max-width: 500px;
  margin: 0 auto 28px;
  color: rgba(255, 250, 241, 0.82);
  font-size: 18px;
}

.notfound .button.primary { min-width: 168px; }

/* Responsive */
@media (max-width: 1180px) {
  .site-header { align-items: center; }

  .nav-toggle {
    position: static;
    z-index: 1;
    display: block;
    flex: 0 0 auto;
    background: rgba(10, 9, 7, 0.74);
    color: var(--paper);
    backdrop-filter: blur(14px);
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    background: var(--paper);
    color: var(--ink);
    box-shadow: var(--shadow-lg);
  }

  .site-nav.is-open { display: flex; }

  .site-nav a { padding: 14px; }

  .site-nav a:not(.nav-cta)::after {
    left: 14px;
    right: auto;
    bottom: 8px;
    width: 36px;
    transform-origin: left;
  }

  .site-nav a:not(.nav-cta):hover,
  .site-nav a:not(.nav-cta):focus-visible,
  .site-nav a[aria-current="page"] { color: var(--tomato); }

  .nav-socials { padding: 8px 14px 14px; margin-left: 0; }

  .site-nav .nav-cta {
    margin: 8px 0 0;
    background: var(--ink);
    color: var(--paper);
  }
}

@media (max-width: 1050px) {
  .dish-grid,
  .review-grid,
  .menu-list.compact,
  .pillars-grid,
  .story-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .site-footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: clamp(24px, 4vw, 32px);
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  /* DOM: brand, visit (#2), hours (#3), explore (#4) */
  .site-footer > .footer-col:nth-child(2) {
    grid-column: 1;
    grid-row: 2;
  }

  .site-footer > .footer-col.footer-col--hours:nth-child(3) {
    grid-column: 1 / -1;
    grid-row: 3;
    justify-self: center;
    width: 100%;
    max-width: 28rem;
    text-align: center;
  }

  .site-footer > .footer-col:nth-child(4) {
    grid-column: 2;
    grid-row: 2;
    justify-self: end;
    text-align: right;
  }

  .footer-col--hours .footer-hours-columns {
    margin-right: auto;
    margin-left: auto;
    max-width: 22rem;
  }

  .footer-col.footer-col--hours h4 {
    text-align: center;
  }
}

@media (max-width: 820px) {
  body { font-size: 16px; }

  .intro,
  .visit,
  .events,
  .split-hero,
  .cta-panel,
  .feature-list,
  .form-section,
  .reservation-section,
  .reservation-booking .section-heading,
  .about-story {
    grid-template-columns: 1fr;
  }

  .form-section::before {
    background: linear-gradient(
      180deg,
      transparent 0%,
      transparent 22%,
      rgba(12, 10, 8, 0.38) 48%,
      rgba(6, 5, 5, 0.94) 100%
    );
  }

  .reservation-contact { position: static; }

  .reservation-booking .section-heading .eyebrow,
  .reservation-booking .section-heading h2,
  .reservation-booking .section-heading p:not(.eyebrow) { grid-column: auto; }

  .form-fallback { grid-column: auto; margin-top: -10px; }

  .events-image { min-height: 360px; }

  .event-stats { grid-template-columns: 1fr; }

  .review-parallax {
    min-height: 520px;
    background-attachment: scroll;
    background-position: 48% center;
  }

  .events-hero {
    --page-hero-position: 70% 44%;
  }

  .events-hero.page-hero::before {
    transform: scale(0.94);
    transform-origin: 70% 42%;
  }

  .story-grid,
  .photo-grid,
  .menu-photo-strip,
  .menu-list,
  .menu-list.compact,
  .pillars-grid {
    grid-template-columns: 1fr;
  }

  .split-hero img,
  .cta-panel img { min-height: 360px; }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-footer > .footer-col:nth-child(2),
  .site-footer > .footer-col.footer-col--hours:nth-child(3),
  .site-footer > .footer-col:nth-child(4) {
    grid-column: auto;
    grid-row: auto;
    justify-self: stretch;
    text-align: left;
    max-width: none;
  }

  .footer-col.footer-col--hours h4 {
    text-align: left;
  }

  .footer-col--hours .footer-hours-columns {
    margin-right: 0;
    margin-left: 0;
    max-width: none;
  }

  .top-strip { justify-content: center; text-align: center; font-size: 11px; }
}

@media (max-width: 640px) {
  .brand-logo { width: 92px; }

  .hero {
    min-height: 92svh;
    padding-top: 132px;
    padding-bottom: 56px;
  }

  section:not(.hero),
  .page-hero {
    padding-left: 24px;
    padding-right: 24px;
  }

  h1 { font-size: clamp(52px, 14vw, 72px); }

  h2 { font-size: clamp(36px, 10vw, 50px); }

  .page-hero > p:not(.eyebrow),
  .split-hero p:not(.eyebrow) {
    font-size: 17px;
    max-width: 32ch;
    overflow-wrap: break-word;
  }

  .hero-actions,
  .contact-actions { flex-direction: column; }

  .hero-meta { gap: 12px 18px; font-size: 11px; }

  .button { width: 100%; }

  .hero-copy {
    max-width: 28ch;
    margin-right: auto;
    margin-left: auto;
  }

  .dish-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .footer-hours-columns {
    grid-template-columns: 1fr;
    row-gap: 8px;
  }

  .dish { min-height: 340px; }

  .review-grid blockquote p { font-size: 19px; }

  .hours div { display: block; }
  .hours dd { text-align: left; margin-top: 4px; }

  .menu-subnav-inner {
    padding-top: 10px;
    padding-bottom: 10px;
  }

}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-slide { animation: none; }
  .slide-front { opacity: 1; }
  .button:hover, .site-nav .nav-cta:hover { transform: none; }
  .specials-grid article.is-today { transform: none; }
  .pillar:hover, .story-grid article:hover, .event-types article:hover { transform: none; }
}
