:root {
  --red-950: #230606;
  --red-900: #3b0b0b;
  --red-800: #581313;
  --red-700: #7a1c1c;
  --gold-600: #c99a4a;
  --gold-500: #d8b36a;
  --cream-100: #fbf6ec;
  --cream-200: #f4ead8;
  --cream-300: #ead8bd;
  --stone: #d0b893;
  --charcoal: #171412;
  --muted: #6d6258;
  --white: #fffdf7;
  --shadow: 0 24px 70px rgba(35, 6, 6, 0.16);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1180px;
  --header-height: 94px;
  --font-heading: "Cormorant Garamond", Georgia, serif;
  --font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--charcoal);
  background:
    radial-gradient(circle at top left, rgba(201, 154, 74, 0.15), transparent 34rem),
    linear-gradient(180deg, var(--cream-100), #fffaf0 45%, var(--cream-200));
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

address {
  font-style: normal;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.section-padding {
  padding: clamp(68px, 8vw, 112px) 0;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 999;
  transform: translateY(-140%);
  background: var(--gold-500);
  color: var(--red-950);
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 12px;
  color: var(--gold-600);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 800;
}

.eyebrow::before {
  content: "";
  width: 32px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}

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

h1,
h2,
h3 {
  font-family: var(--font-heading);
  line-height: 0.95;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(3.4rem, 7.4vw, 6.8rem);
  max-width: 780px;
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(2.6rem, 5vw, 4.6rem);
  margin-bottom: 20px;
}

h3 {
  font-size: clamp(1.55rem, 2.5vw, 2.2rem);
  margin-bottom: 12px;
}

p {
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(216, 179, 106, 0.55);
  outline-offset: 3px;
}

.btn--primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--red-700), var(--red-900));
  box-shadow: 0 16px 34px rgba(88, 19, 19, 0.25);
}

.btn--outline {
  color: var(--white);
  border-color: rgba(216, 179, 106, 0.75);
  background: rgba(15, 12, 10, 0.38);
  backdrop-filter: blur(8px);
}

.btn--outline-dark {
  color: var(--red-800);
  border-color: rgba(122, 28, 28, 0.35);
  background: transparent;
}

.btn--gold {
  color: var(--red-950);
  background: linear-gradient(135deg, var(--gold-500), #f1d58e);
  box-shadow: 0 16px 34px rgba(201, 154, 74, 0.26);
}

.btn--light {
  color: var(--red-800);
  background: var(--cream-100);
  border-color: rgba(255, 253, 247, 0.45);
}

.btn--small {
  min-height: 42px;
  padding-inline: 18px;
  font-size: 0.9rem;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  color: var(--white);
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.site-header.is-scrolled .nav {
  background: rgba(35, 6, 6, 0.94);
  backdrop-filter: blur(16px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.16);
}

.topbar {
  background: rgba(35, 6, 6, 0.92);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 34px;
  gap: 18px;
}

.topbar p {
  margin: 0;
  color: rgba(255, 253, 247, 0.8);
}

.topbar a {
  color: var(--gold-500);
}

.nav {
  background: linear-gradient(180deg, rgba(35, 6, 6, 0.9), rgba(35, 6, 6, 0.62));
  transition: inherit;
}

.nav__inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  min-width: max-content;
}

.brand__mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(216, 179, 106, 0.35);
  border-radius: 50%;
  background: radial-gradient(circle at 50% 42%, rgba(216, 179, 106, 0.2), rgba(122, 28, 28, 0.2));
}

.brand__mark svg {
  width: 32px;
  height: 32px;
  fill: var(--gold-500);
}

.brand__text {
  display: grid;
  line-height: 1;
}

.brand__text strong {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand__text small {
  margin-top: 4px;
  color: var(--gold-500);
  font-size: 0.76rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 800;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.2vw, 30px);
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.nav-menu a {
  position: relative;
  color: rgba(255, 253, 247, 0.88);
}

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  background: var(--gold-500);
  transition: right 180ms ease;
}

.nav-menu a:hover::after,
.nav-menu a.is-active::after {
  right: 0;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 253, 247, 0.18);
  background: rgba(255, 253, 247, 0.06);
  border-radius: 999px;
  padding: 12px;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
  border-radius: 999px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  position: relative;
  min-height: 820px;
  display: grid;
  align-items: end;
  color: var(--white);
  overflow: hidden;
}

.hero__media,
.hero__overlay {
  position: absolute;
  inset: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  filter: saturate(0.96) contrast(1.05);
}

.hero__overlay {
  background:
    linear-gradient(90deg, rgba(20, 5, 5, 0.94) 0%, rgba(35, 6, 6, 0.68) 42%, rgba(35, 6, 6, 0.22) 100%),
    linear-gradient(0deg, rgba(35, 6, 6, 0.72) 0%, transparent 34%),
    radial-gradient(circle at 20% 55%, rgba(216, 179, 106, 0.18), transparent 33rem);
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 180px 0 126px;
}

.hero__lead {
  max-width: 590px;
  color: rgba(255, 253, 247, 0.86);
  font-size: clamp(1.03rem, 2vw, 1.22rem);
  margin-bottom: 32px;
}

.hero__actions,
.final-cta__inner > div,
.private__actions,
.visit-card__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-strip {
  position: absolute;
  z-index: 3;
  inset: auto 0 0;
  background: rgba(12, 10, 9, 0.86);
  border-top: 1px solid rgba(216, 179, 106, 0.22);
  border-bottom: 1px solid rgba(216, 179, 106, 0.18);
  backdrop-filter: blur(10px);
}

.hero-strip__inner {
  min-height: 66px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
  gap: 18px;
}

.hero-strip span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: rgba(255, 253, 247, 0.86);
  font-weight: 800;
  font-size: 0.92rem;
}

.intro {
  background:
    linear-gradient(180deg, var(--cream-100), rgba(251, 246, 236, 0.72)),
    radial-gradient(circle at 70% 20%, rgba(201, 154, 74, 0.17), transparent 30rem);
}

.intro__grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(38px, 6vw, 74px);
  align-items: start;
}

.section-kicker {
  position: sticky;
  top: calc(var(--header-height) + 30px);
}

.section-kicker h2,
.section-heading h2 {
  color: var(--red-900);
}

.section-kicker p:last-child,
.section-heading p {
  font-size: 1.05rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature-card,
.event-card,
.private__card,
.visit-card,
.hours-card,
.menu-panel {
  background: rgba(255, 253, 247, 0.82);
  border: 1px solid rgba(122, 28, 28, 0.14);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.feature-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.feature-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.feature-card__body {
  position: relative;
  padding: 38px 24px 26px;
  text-align: center;
}

.round-icon {
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% -50%;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-500), #efcf86);
  color: var(--red-900);
  box-shadow: 0 16px 34px rgba(201, 154, 74, 0.3);
  font-size: 1.4rem;
}

.feature-card h3 {
  color: var(--red-800);
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 0.94rem;
  margin-bottom: 18px;
}

.feature-card a,
.event-card a {
  color: var(--red-700);
  font-weight: 900;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading .eyebrow {
  justify-content: center;
}

.section-heading .eyebrow::before {
  width: 26px;
}

.menus {
  background:
    linear-gradient(180deg, rgba(244, 234, 216, 0.8), rgba(251, 246, 236, 0.92)),
    repeating-linear-gradient(45deg, rgba(201, 154, 74, 0.04) 0 2px, transparent 2px 9px);
}

.menu-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.menu-tab {
  border: 1px solid rgba(122, 28, 28, 0.16);
  background: rgba(255, 253, 247, 0.66);
  color: var(--red-800);
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 900;
}

.menu-tab.is-active {
  background: var(--red-800);
  color: var(--white);
  border-color: var(--red-800);
}

.menu-panel {
  max-width: 980px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 44px);
}

.menu-panel__head {
  display: flex;
  gap: 16px;
  align-items: center;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(122, 28, 28, 0.15);
}

.menu-panel__head span {
  display: grid;
  place-items: center;
  flex: 0 0 64px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--cream-200);
  font-size: 1.6rem;
}

.menu-panel__head h3 {
  color: var(--red-800);
  margin-bottom: 4px;
}

.menu-panel__head p {
  margin: 0;
}

.menu-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 28px;
  padding: 24px 0 10px;
}

.menu-item {
  padding-bottom: 18px;
  border-bottom: 1px dotted rgba(122, 28, 28, 0.24);
}

.menu-item h4 {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin: 0 0 8px;
  color: var(--charcoal);
  font-size: 1.02rem;
}

.menu-item h4 span:last-child {
  color: var(--gold-600);
  font-size: 0.92rem;
  white-space: nowrap;
}

.menu-item p {
  margin: 0;
  font-size: 0.92rem;
}

.menu-note {
  margin: 16px 0 0;
  color: rgba(109, 98, 88, 0.78);
  font-size: 0.84rem;
}

.sunday {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  display: grid;
  align-items: center;
  color: var(--white);
  background: var(--red-950);
}

.sunday__image,
.sunday__image::after {
  position: absolute;
  inset: 0;
}

.sunday__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  transform: scale(1.08);
}

.sunday__image::after {
  content: "";
  background:
    linear-gradient(90deg, rgba(35, 6, 6, 0.96) 0%, rgba(59, 11, 11, 0.86) 47%, rgba(59, 11, 11, 0.2) 100%),
    radial-gradient(circle at 20% 45%, rgba(216, 179, 106, 0.2), transparent 28rem);
}

.sunday__inner {
  position: relative;
  z-index: 2;
}

.sunday__content {
  max-width: 630px;
  padding: 100px 0;
}

.sunday h2 {
  color: var(--white);
}

.sunday p {
  color: rgba(255, 253, 247, 0.84);
  font-size: 1.1rem;
}

.sunday__points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 32px;
}

.sunday__points span {
  border: 1px solid rgba(216, 179, 106, 0.34);
  border-radius: 999px;
  padding: 10px 14px;
  color: rgba(255, 253, 247, 0.88);
  font-weight: 800;
  background: rgba(255, 253, 247, 0.07);
}

.whats-on {
  background: var(--cream-100);
}

.event-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.event-card {
  border-radius: var(--radius-lg);
  padding: 34px;
}

.event-card__icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin-bottom: 24px;
  border-radius: 50%;
  background: var(--red-800);
  color: var(--gold-500);
  font-size: 2rem;
  font-family: var(--font-heading);
  font-weight: 700;
}

.event-card h3 {
  color: var(--red-800);
}

.gallery {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.25fr 1fr;
  min-height: 290px;
  overflow: hidden;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  min-height: 290px;
  object-fit: cover;
  transition: transform 420ms ease;
}

.gallery__item:hover img {
  transform: scale(1.04);
}

.gallery__banner {
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  width: min(620px, calc(100% - 40px));
  text-align: center;
  color: var(--white);
  background: rgba(20, 14, 12, 0.86);
  border: 1px solid rgba(216, 179, 106, 0.35);
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
  backdrop-filter: blur(10px);
}

.private {
  color: var(--white);
  background:
    radial-gradient(circle at 12% 10%, rgba(216, 179, 106, 0.18), transparent 26rem),
    linear-gradient(135deg, var(--red-950), var(--red-800));
}

.private__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.7fr);
  gap: clamp(28px, 5vw, 74px);
  align-items: center;
}

.private h2,
.private h3 {
  color: var(--white);
}

.private p,
.private li {
  color: rgba(255, 253, 247, 0.78);
}

.private__copy p:not(.eyebrow) {
  max-width: 640px;
  font-size: 1.1rem;
}

.private__card {
  border-color: rgba(216, 179, 106, 0.24);
  background: rgba(255, 253, 247, 0.08);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 4vw, 44px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.private__card ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.private__card li {
  position: relative;
  padding-left: 28px;
  font-weight: 700;
}

.private__card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold-500);
}

.find-us {
  background:
    linear-gradient(180deg, var(--cream-100), var(--cream-200)),
    radial-gradient(circle at 60% 20%, rgba(201, 154, 74, 0.14), transparent 30rem);
}

.find-us__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1fr);
  gap: 24px;
  align-items: stretch;
}

.visit-card,
.hours-card {
  border-radius: var(--radius-lg);
  padding: clamp(26px, 4vw, 44px);
}

.visit-card h2 {
  color: var(--red-900);
}

.visit-card address {
  margin: 0 0 28px;
  color: var(--charcoal);
  font-size: 1.08rem;
  font-weight: 700;
}

.hours-card__head {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 16px;
  margin-bottom: 20px;
}

.hours-card h3 {
  color: var(--red-900);
  margin-bottom: 0;
}

.hours-card__head span {
  color: var(--red-800);
  background: var(--cream-200);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hours-card dl {
  margin: 0 0 18px;
}

.hours-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(122, 28, 28, 0.12);
}

.hours-card dt {
  font-weight: 900;
}

.hours-card dd {
  margin: 0;
  color: var(--muted);
  text-align: right;
}

.hours-card p {
  margin-bottom: 0;
  font-size: 0.84rem;
}

.final-cta {
  color: var(--white);
  background: var(--red-950);
  padding: clamp(58px, 8vw, 90px) 0;
}

.final-cta__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
}

.final-cta h2 {
  color: var(--white);
  max-width: 760px;
  margin-bottom: 8px;
}

.final-cta p {
  color: rgba(255, 253, 247, 0.76);
  margin: 0;
}

.footer {
  color: rgba(255, 253, 247, 0.78);
  background:
    linear-gradient(180deg, var(--red-900), var(--red-950)),
    repeating-linear-gradient(45deg, rgba(255, 253, 247, 0.04) 0 1px, transparent 1px 8px);
  padding: 52px 0 24px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, minmax(150px, 1fr));
  gap: 28px;
  align-items: start;
}

.footer h3 {
  color: var(--gold-500);
  font-family: var(--font-body);
  font-size: 0.84rem;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
}

.footer a:not(.brand):not(.btn),
.footer button {
  display: table;
  margin-bottom: 9px;
}

.brand--footer {
  align-items: flex-start;
}

.socials {
  display: flex;
  gap: 10px;
  margin-bottom: 18px;
}

.socials a {
  display: grid !important;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(216, 179, 106, 0.35);
  color: var(--gold-500);
  font-weight: 900;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid rgba(216, 179, 106, 0.16);
}

.footer__bottom p {
  margin: 0;
  color: rgba(255, 253, 247, 0.56);
  font-size: 0.82rem;
}

.sticky-cta {
  position: fixed;
  z-index: 45;
  left: 12px;
  right: 12px;
  bottom: 12px;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(216, 179, 106, 0.25);
  border-radius: 999px;
  background: rgba(35, 6, 6, 0.94);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(16px);
}

.sticky-cta a,
.sticky-cta button {
  display: grid;
  place-items: center;
  min-height: 44px;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 253, 247, 0.09);
  font-weight: 900;
}

.sticky-cta button {
  color: var(--red-950);
  background: var(--gold-500);
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  place-items: center;
  padding: 18px;
}

.modal.is-open {
  display: grid;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 7, 6, 0.72);
  backdrop-filter: blur(9px);
}

.modal__dialog {
  position: relative;
  width: min(760px, 100%);
  max-height: min(880px, calc(100dvh - 36px));
  overflow: auto;
  background: var(--cream-100);
  border-radius: 28px;
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.34);
  padding: clamp(24px, 4vw, 44px);
}

.modal__dialog h2 {
  color: var(--red-900);
  margin-bottom: 10px;
}

.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  color: var(--red-800);
  background: var(--cream-200);
  font-size: 1.8rem;
  line-height: 1;
}

.booking-form {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.booking-form label {
  display: grid;
  gap: 7px;
  color: var(--charcoal);
  font-size: 0.9rem;
  font-weight: 900;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  border: 1px solid rgba(122, 28, 28, 0.16);
  border-radius: 14px;
  background: var(--white);
  padding: 13px 14px;
  color: var(--charcoal);
}

.booking-form textarea {
  resize: vertical;
}

.form-status {
  margin: 0;
  color: var(--red-700);
  font-weight: 800;
}

.form-status.is-success {
  color: #2d6b3d;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  :root {
    --header-height: 82px;
  }

  .topbar {
    display: none;
  }

  .nav__inner {
    min-height: 82px;
  }

  .nav-toggle {
    display: block;
    z-index: 2;
  }

  .nav-menu {
    position: fixed;
    top: 82px;
    left: 14px;
    right: 14px;
    display: grid;
    gap: 0;
    padding: 12px;
    border: 1px solid rgba(216, 179, 106, 0.24);
    border-radius: 22px;
    background: rgba(35, 6, 6, 0.96);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .nav-menu.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-menu a,
  .nav-menu .btn {
    justify-content: flex-start;
    min-height: 50px;
    padding: 0 16px;
    border-radius: 14px;
  }

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

  .nav-menu a:hover,
  .nav-menu a.is-active {
    background: rgba(255, 253, 247, 0.08);
  }

  body.nav-open {
    overflow: hidden;
  }

  .nav-toggle.is-open span:nth-child(2) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle.is-open span:nth-child(3) {
    opacity: 0;
  }

  .nav-toggle.is-open span:nth-child(4) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero {
    min-height: 760px;
  }

  .hero__content {
    padding: 150px 0 132px;
  }

  .hero-strip__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 12px 0;
  }

  .intro__grid,
  .private__grid,
  .find-us__grid,
  .final-cta__inner {
    grid-template-columns: 1fr;
  }

  .section-kicker {
    position: static;
  }

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

  .feature-card {
    display: grid;
    grid-template-columns: minmax(180px, 0.8fr) 1fr;
  }

  .feature-card img {
    height: 100%;
    min-height: 250px;
  }

  .gallery {
    grid-template-columns: 1fr;
  }

  .gallery__item img {
    min-height: 220px;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  h1 {
    font-size: clamp(3rem, 16vw, 4.2rem);
  }

  h2 {
    font-size: clamp(2.35rem, 12vw, 3.4rem);
  }

  .brand__mark {
    width: 42px;
    height: 42px;
  }

  .brand__text strong {
    font-size: 1.25rem;
  }

  .brand__text small {
    font-size: 0.62rem;
  }

  .hero {
    min-height: 720px;
  }

  .hero__media img {
    object-position: 62% center;
  }

  .hero__overlay {
    background:
      linear-gradient(90deg, rgba(20, 5, 5, 0.96) 0%, rgba(35, 6, 6, 0.82) 62%, rgba(35, 6, 6, 0.46) 100%),
      linear-gradient(0deg, rgba(35, 6, 6, 0.82) 0%, transparent 42%);
  }

  .hero__lead {
    font-size: 1rem;
  }

  .hero__actions .btn,
  .private__actions .btn,
  .visit-card__buttons .btn,
  .final-cta__inner .btn {
    width: 100%;
  }

  .hero-strip span {
    justify-content: flex-start;
    font-size: 0.8rem;
  }

  .feature-card {
    display: block;
  }

  .feature-card img {
    min-height: 0;
    height: 210px;
  }

  .menu-list,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .menu-panel__head {
    align-items: start;
  }

  .sunday {
    min-height: auto;
  }

  .sunday__content {
    padding: 84px 0;
  }

  .event-card,
  .visit-card,
  .hours-card,
  .private__card,
  .menu-panel {
    border-radius: 22px;
  }

  .hours-card dl div {
    display: grid;
    gap: 4px;
  }

  .hours-card dd {
    text-align: left;
  }

  .footer__grid {
    grid-template-columns: 1fr;
  }

  .footer__bottom {
    display: grid;
  }

  .sticky-cta {
    display: grid;
  }

  .footer {
    padding-bottom: 88px;
  }
}

/* ============================================================
   Booking Lite — Red Lion theme mapping
   The widget reads --bl-* variables; every value below routes
   to this site's existing design tokens. New client = new map.
   ============================================================ */

.booking-lite-theme {
  --bl-accent: var(--red-800);
  --bl-accent-contrast: var(--white);
  --bl-accent-soft: rgba(216, 179, 106, 0.35);
  --bl-surface: var(--white);
  --bl-ink: var(--charcoal);
  --bl-ink-muted: var(--muted);
  --bl-line: rgba(122, 28, 28, 0.16);
  --bl-radius: 14px;
  --bl-radius-lg: var(--radius-md);
  --bl-font-display: var(--font-heading);
  --bl-btn-bg: linear-gradient(135deg, var(--red-700), var(--red-900));
  --bl-btn-shadow: 0 16px 34px rgba(88, 19, 19, 0.25);
  --bl-badge: var(--gold-600);
  --bl-badge-contrast: var(--red-950);
  --bl-warn: var(--red-700);
  --bl-success: #2d6b3d;
  --bl-success-soft: rgba(45, 107, 61, 0.12);
  margin-top: 20px;
}
