:root {
  --ink: #171310;
  --black: #050505;
  --espresso: #3b291f;
  --cocoa: #6d4c38;
  --clay: #a46d52;
  --cream: #f4ecdf;
  --porcelain: #fffaf2;
  --sand: #d9c8b2;
  --matcha: #66764d;
  --rose: #b78578;
  --line: rgba(23, 19, 16, 0.13);
  --shadow: 0 24px 70px rgba(23, 19, 16, 0.18);
  --radius: 8px;
  --header-height: 78px;
  color-scheme: light;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.96), rgba(244, 236, 223, 0.92)),
    var(--cream);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button {
  cursor: pointer;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  transform: translateY(-140%);
  background: var(--black);
  color: var(--porcelain);
  padding: 10px 14px;
  border-radius: var(--radius);
  transition: transform 180ms ease;
}

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

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

.section-pad {
  padding: 96px 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  height: var(--header-height);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 14px clamp(20px, 4vw, 56px);
  color: var(--porcelain);
  transition:
    background-color 220ms ease,
    color 220ms ease,
    box-shadow 220ms ease,
    backdrop-filter 220ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(255, 250, 242, 0.92);
  color: var(--ink);
  box-shadow: 0 16px 50px rgba(23, 19, 16, 0.09);
  backdrop-filter: blur(20px);
}

.brand {
  width: 54px;
  height: 54px;
  border-radius: 999px;
  overflow: hidden;
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.2);
  background: var(--black);
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 34px);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav a {
  opacity: 0.84;
  transition: opacity 160ms ease, color 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  opacity: 1;
  color: var(--matcha);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid currentColor;
  border-radius: 999px;
  background: transparent;
  color: currentColor;
  place-items: center;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease;
}

.menu-toggle span + span {
  margin-top: 5px;
}

.site-header.is-open .menu-toggle span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.site-header.is-open .menu-toggle span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.mobile-panel {
  position: fixed;
  inset: var(--header-height) 0 auto 0;
  z-index: 50;
  display: none;
  background: rgba(255, 250, 242, 0.98);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 20px 40px rgba(23, 19, 16, 0.12);
}

.mobile-panel nav {
  display: grid;
  gap: 0;
  padding: 10px 24px 24px;
}

.mobile-panel a {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.82rem;
}

.hero {
  position: relative;
  min-height: 94svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--black);
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  object-fit: cover;
  transform: scale(1.02);
  filter: saturate(0.92) contrast(1.03);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.68), rgba(5, 5, 5, 0.26) 46%, rgba(5, 5, 5, 0.08)),
    linear-gradient(0deg, rgba(5, 5, 5, 0.62), rgba(5, 5, 5, 0.04) 44%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 40px));
  margin: 0 auto;
  padding: calc(var(--header-height) + 48px) 0 150px;
  color: var(--porcelain);
  justify-self: start;
  margin-left: clamp(20px, 8vw, 110px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--matcha);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  line-height: 1.3;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #d8e4bd;
}

h1,
h2,
h3,
p {
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 0.98;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
}

h1 {
  font-size: clamp(4.4rem, 12vw, 12.5rem);
  letter-spacing: 0;
}

h2 {
  font-size: clamp(2.35rem, 5.3vw, 5.4rem);
  letter-spacing: 0;
}

h3 {
  font-size: 1.24rem;
  font-weight: 700;
}

.hero-copy {
  width: min(610px, 100%);
  margin: 24px 0 0;
  font-size: clamp(1.05rem, 1.7vw, 1.32rem);
  color: rgba(255, 250, 242, 0.86);
}

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

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 13px 22px;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.2;
  white-space: nowrap;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-light {
  background: var(--porcelain);
  color: var(--ink);
}

.button-dark {
  background: var(--black);
  color: var(--porcelain);
}

.button-outline {
  background: transparent;
  color: var(--ink);
  border-color: rgba(23, 19, 16, 0.28);
}

.button-outline:hover,
.button-outline:focus-visible {
  border-color: var(--matcha);
  color: var(--matcha);
}

.hero-note {
  position: absolute;
  right: clamp(20px, 5vw, 62px);
  bottom: 36px;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  color: var(--porcelain);
}

.hero-note span {
  border: 1px solid rgba(255, 250, 242, 0.35);
  border-radius: 999px;
  padding: 9px 13px;
  background: rgba(5, 5, 5, 0.28);
  backdrop-filter: blur(16px);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.intro {
  background: var(--porcelain);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.85fr);
  gap: clamp(36px, 8vw, 96px);
  align-items: start;
}

.intro-text {
  padding-top: 22px;
  font-size: 1.08rem;
  color: rgba(23, 19, 16, 0.74);
}

.intro-text p,
.feature-copy p,
.reservation-copy p {
  margin: 20px 0 0;
}

.feature {
  background:
    linear-gradient(90deg, rgba(102, 118, 77, 0.08), transparent 48%),
    var(--cream);
}

.feature-cafe {
  background:
    linear-gradient(90deg, transparent, rgba(183, 133, 120, 0.13)),
    var(--porcelain);
}

.feature-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.86fr) minmax(320px, 1fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: center;
}

.feature-grid.reverse {
  grid-template-columns: minmax(320px, 1fr) minmax(260px, 0.86fr);
}

.feature-image {
  position: relative;
}

.feature-image::before {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  border: 1px solid rgba(23, 19, 16, 0.2);
  z-index: 0;
}

.feature-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.feature-copy {
  max-width: 640px;
}

.mode-title {
  max-width: 720px;
  font-size: clamp(2.7rem, 5vw, 4.7rem);
  line-height: 1.02;
}

.mode-title span {
  display: block;
  font-size: 0.82em;
}

.feature-copy p {
  color: rgba(23, 19, 16, 0.72);
  font-size: 1.06rem;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 30px 0;
}

.pill-list span,
.reservation-rules span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  border: 1px solid rgba(23, 19, 16, 0.13);
  border-radius: 999px;
  padding: 8px 13px;
  background: rgba(255, 250, 242, 0.66);
  color: rgba(23, 19, 16, 0.78);
  font-size: 0.84rem;
  font-weight: 700;
  white-space: nowrap;
}

.menu-strip {
  display: grid;
  gap: 12px;
  margin-top: 32px;
}

.menu-strip article {
  display: grid;
  gap: 4px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.menu-strip article:last-child {
  border-bottom: 1px solid var(--line);
}

.menu-strip span {
  color: var(--matcha);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.menu-strip strong {
  font-size: 1.05rem;
}

.reservation {
  background:
    radial-gradient(circle at 88% 6%, rgba(102, 118, 77, 0.22), transparent 28%),
    linear-gradient(135deg, #090908 0%, #171310 46%, #2f2119 100%);
  color: var(--porcelain);
}

.reservation-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.86fr) minmax(420px, 1.14fr);
  gap: clamp(28px, 4.6vw, 64px);
  align-items: center;
}

.reservation .eyebrow {
  color: #d8e4bd;
}

.reservation-copy {
  align-self: center;
}

.reservation-copy h2 {
  max-width: 660px;
  font-size: clamp(3rem, 6.8vw, 6.6rem);
}

.reservation-copy p {
  max-width: 520px;
  color: rgba(255, 250, 242, 0.78);
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  line-height: 1.75;
}

.reservation-rules {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.reservation-rules span {
  width: fit-content;
  border-color: rgba(216, 228, 189, 0.34);
  background: rgba(255, 250, 242, 0.08);
  color: rgba(255, 250, 242, 0.84);
}

.reservation-widget {
  overflow: hidden;
  align-self: center;
  border: 1px solid rgba(255, 250, 242, 0.28);
  border-radius: var(--radius);
  background: rgba(255, 250, 242, 0.96);
  color: var(--ink);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
}

.reservation-widget-bar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 16px clamp(18px, 3vw, 26px);
  border-bottom: 1px solid rgba(23, 19, 16, 0.1);
  background:
    linear-gradient(135deg, rgba(216, 228, 189, 0.46), rgba(255, 250, 242, 0.78)),
    var(--porcelain);
}

.reservation-widget-bar span {
  color: var(--matcha);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.reservation-widget-bar strong {
  color: var(--espresso);
  font-size: clamp(0.95rem, 1.3vw, 1.05rem);
}

.reservation-widget iframe {
  display: block;
  width: 100%;
  min-height: clamp(590px, 70vh, 720px);
  border: 0;
  background: var(--porcelain);
}

.events {
  background:
    linear-gradient(180deg, rgba(59, 41, 31, 0.05), transparent),
    var(--cream);
}

.section-heading {
  width: min(980px, 100%);
  margin-bottom: 42px;
}

.section-heading p {
  margin: 18px 0 0;
  max-width: 720px;
  color: rgba(23, 19, 16, 0.56);
  font-size: 0.98rem;
  line-height: 1.65;
}

.events .section-heading {
  width: min(1180px, 100%);
}

.events .section-heading h2 {
  max-width: none;
  font-size: clamp(2.45rem, 4.35vw, 5.05rem);
  line-height: 1.02;
  white-space: nowrap;
}

.events .section-heading p {
  max-width: none;
  white-space: nowrap;
}

.event-board-viewport {
  position: relative;
  overflow: hidden;
  margin-inline: calc((100vw - min(1180px, calc(100vw - 40px))) / -2);
  padding: 0 calc((100vw - min(1180px, calc(100vw - 40px))) / 2);
  cursor: grab;
  user-select: none;
  touch-action: pan-y;
}

.event-board-viewport.is-dragging {
  cursor: grabbing;
}

.event-board-viewport::before,
.event-board-viewport::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  width: min(120px, 12vw);
  pointer-events: none;
}

.event-board-viewport::before {
  left: 0;
  background: linear-gradient(90deg, var(--cream), rgba(255, 250, 242, 0));
}

.event-board-viewport::after {
  right: 0;
  background: linear-gradient(270deg, var(--cream), rgba(255, 250, 242, 0));
}

.event-board {
  width: max-content;
  display: flex;
  gap: 18px;
  animation: eventRail 68s linear infinite;
  will-change: transform;
}

.event-card {
  width: clamp(300px, 34vw, 430px);
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: var(--radius);
  padding: 24px;
  background: var(--black);
  color: var(--porcelain);
  box-shadow: var(--shadow);
}

.event-card.is-hidden {
  display: none;
}

.event-card-featured {
  width: clamp(560px, 68vw, 820px);
  min-height: auto;
  display: grid;
  grid-template-columns: minmax(190px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(20px, 3vw, 34px);
  align-items: stretch;
  padding: clamp(18px, 3vw, 28px);
  background:
    linear-gradient(135deg, rgba(59, 41, 31, 0.98), rgba(5, 5, 5, 0.98)),
    var(--black);
}

.event-poster {
  overflow: hidden;
  border-radius: var(--radius);
  background: rgba(255, 250, 242, 0.08);
}

.event-poster img {
  width: 100%;
  height: 100%;
  max-height: 520px;
  object-fit: cover;
  object-position: center top;
}

.event-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: clamp(6px, 2vw, 16px) 0;
}

.event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.event-meta time,
.event-meta span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 250, 242, 0.2);
  border-radius: 999px;
  padding: 8px 12px;
  color: rgba(255, 250, 242, 0.76);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  white-space: nowrap;
  text-transform: uppercase;
}

.event-card-featured h3 {
  margin: 0;
  font-size: clamp(2rem, 4.2vw, 4.2rem);
}

.event-card-featured p {
  max-width: 700px;
  margin-top: 24px;
  color: rgba(255, 250, 242, 0.78);
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
  line-height: 1.75;
}

.event-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.event-tags span {
  border: 1px solid rgba(216, 228, 189, 0.28);
  border-radius: 999px;
  padding: 8px 12px;
  color: #d8e4bd;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  white-space: nowrap;
  text-transform: uppercase;
}

@keyframes eventRail {
  from {
    transform: translateX(calc(-50% - 9px));
  }

  to {
    transform: translateX(0);
  }
}

.event-card:nth-child(2) {
  background: var(--espresso);
}

.event-card:nth-child(3) {
  background: var(--matcha);
}

.event-card time {
  color: rgba(255, 250, 242, 0.68);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.event-card h3 {
  margin-top: auto;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 2.4vw, 2.25rem);
  line-height: 1;
}

.event-card p {
  margin: 18px 0 0;
  color: rgba(255, 250, 242, 0.76);
}

.text-button {
  color: var(--espresso);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.text-button {
  border: 0;
  padding: 0;
  background: transparent;
  font-weight: 700;
}

.site-footer {
  background:
    radial-gradient(circle at 16% 0%, rgba(164, 109, 82, 0.2), transparent 34%),
    linear-gradient(135deg, #4a382d 0%, #2f271f 52%, #231d18 100%);
  color: var(--porcelain);
  padding: 86px 0 42px;
}

.footer-inner {
  display: grid;
  gap: 54px;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(280px, 1.25fr) repeat(3, minmax(170px, 0.62fr));
  gap: clamp(34px, 6vw, 92px);
  align-items: start;
}

.footer-brand-block {
  max-width: 430px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: var(--porcelain);
  font-size: clamp(1.2rem, 1.8vw, 1.55rem);
  font-weight: 800;
  line-height: 1.15;
}

.footer-brand img {
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  object-fit: cover;
  border-radius: 999px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.footer-brand-block p {
  max-width: 340px;
  margin: 7px 0 0 74px;
  color: rgba(255, 250, 242, 0.54);
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.55;
}

.footer-socials {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin: 0;
}

.footer-socials a,
.footer-socials button {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 250, 242, 0.16);
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.04);
  color: rgba(255, 250, 242, 0.86);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  padding: 0;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.footer-socials a:hover,
.footer-socials a:focus-visible,
.footer-socials button:hover,
.footer-socials button:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 250, 242, 0.36);
  background: rgba(255, 250, 242, 0.1);
  color: var(--porcelain);
}

.footer-socials svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.footer-column {
  display: grid;
  gap: 16px;
  color: rgba(255, 250, 242, 0.66);
  font-size: 1rem;
  font-weight: 650;
}

.footer-column h2 {
  margin: 0 0 12px;
  color: #efbc84;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.footer-column a,
.footer-column p,
.footer-button {
  margin: 0;
  color: rgba(255, 250, 242, 0.66);
  font-size: 1rem;
  font-weight: 650;
  line-height: 1.55;
}

.footer-column a,
.footer-button {
  width: fit-content;
  transition: color 160ms ease, transform 160ms ease;
}

.footer-column a:hover,
.footer-column a:focus-visible,
.footer-button:hover,
.footer-button:focus-visible {
  color: var(--porcelain);
  transform: translateX(2px);
}

.footer-contact .footer-address {
  margin-top: 10px;
}

.footer-button {
  border: 0;
  padding: 0;
  background: transparent;
  text-align: left;
}

.footer-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  border-top: 1px solid rgba(255, 250, 242, 0.13);
  padding-top: 28px;
  color: rgba(255, 250, 242, 0.52);
  font-size: 0.92rem;
  font-weight: 700;
}

.footer-bottom p {
  margin: 0;
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px 24px;
}

.footer-meta a {
  color: rgba(255, 250, 242, 0.58);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  transition: color 160ms ease;
}

.footer-meta a:hover,
.footer-meta a:focus-visible {
  color: var(--porcelain);
}

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

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px 24px;
  color: rgba(255, 250, 242, 0.76);
  font-size: 0.9rem;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--porcelain);
}

.legal-main {
  min-height: 70vh;
  padding: calc(var(--header-height) + 74px) 0 84px;
  background: var(--porcelain);
}

.legal-shell {
  width: min(900px, calc(100% - 40px));
  margin: 0 auto;
}

.legal-kicker {
  margin: 0 0 14px;
  color: var(--matcha);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.legal-main h1 {
  font-size: clamp(3rem, 8vw, 6.5rem);
}

.legal-main h2 {
  margin-bottom: 18px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.35rem;
  line-height: 1.2;
}

.legal-lead {
  margin: 24px 0 42px;
  color: rgba(23, 19, 16, 0.72);
  font-size: 1.06rem;
}

.legal-section {
  padding: 30px 0;
  border-top: 1px solid var(--line);
}

.legal-section p,
.legal-section li {
  color: rgba(23, 19, 16, 0.74);
}

.legal-section address {
  font-style: normal;
  color: rgba(23, 19, 16, 0.74);
}

.legal-section a {
  color: var(--espresso);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.legal-list {
  padding-left: 20px;
}

.legal-note {
  margin: 34px 0 0;
  border: 1px solid rgba(164, 109, 82, 0.34);
  border-radius: var(--radius);
  padding: 18px;
  background: rgba(164, 109, 82, 0.1);
  color: rgba(23, 19, 16, 0.78);
  font-weight: 700;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 22px;
  z-index: 90;
  width: min(440px, calc(100% - 32px));
  transform: translate(-50%, 22px);
  opacity: 0;
  pointer-events: none;
  border-radius: var(--radius);
  padding: 15px 18px;
  background: var(--black);
  color: var(--porcelain);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.28);
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.is-visible {
  transform: translate(-50%, 0);
  opacity: 1;
}

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

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

@media (max-width: 960px) {
  .site-nav {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .mobile-panel.is-open {
    display: block;
  }

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

  .feature-grid.reverse .feature-image {
    order: -1;
  }

  .event-card-featured {
    width: clamp(420px, 78vw, 640px);
    grid-template-columns: minmax(150px, 0.7fr) minmax(0, 1.3fr);
  }

  .event-poster img {
    max-height: 380px;
  }

  .event-card {
    min-height: 220px;
  }

  .footer-main {
    grid-template-columns: minmax(260px, 1.1fr) repeat(2, minmax(170px, 0.7fr));
  }

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

@media (max-width: 760px) {
  .reservation-grid {
    grid-template-columns: 1fr;
  }

  .reservation-widget iframe {
    min-height: 820px;
  }
}

@media (max-width: 720px) {
  :root {
    --header-height: 70px;
  }

  .container {
    width: min(100% - 28px, 1160px);
  }

  .section-pad {
    padding: 68px 0;
  }

  .site-header {
    padding: 10px 14px;
  }

  .brand {
    width: 50px;
    height: 50px;
  }

  .hero {
    min-height: 92svh;
  }

  .hero-media {
    object-position: 42% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(5, 5, 5, 0.72), rgba(5, 5, 5, 0.34)),
      linear-gradient(0deg, rgba(5, 5, 5, 0.72), rgba(5, 5, 5, 0.12) 56%);
  }

  .hero-content {
    width: calc(100% - 28px);
    margin-left: 14px;
    padding-bottom: 134px;
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .hero-note {
    left: 14px;
    right: 14px;
    justify-content: flex-start;
    bottom: 20px;
  }

  .hero-note span {
    font-size: 0.68rem;
  }

  h2 {
    font-size: clamp(2.2rem, 12vw, 3.6rem);
  }

  .events .section-heading h2,
  .events .section-heading p {
    white-space: normal;
  }

  .events .section-heading h2 {
    font-size: clamp(2.1rem, 10vw, 3.4rem);
  }

  .feature-image::before {
    inset: 12px -10px -12px 10px;
  }

  .reservation-widget-bar {
    align-items: flex-start;
    flex-direction: column;
  }

  .reservation-widget iframe {
    min-height: 820px;
  }

  .event-board-viewport {
    margin-inline: -14px;
    padding: 0 14px;
  }

  .event-card {
    width: min(82vw, 360px);
  }

  .event-card-featured {
    width: min(86vw, 420px);
    grid-template-columns: 1fr;
  }

  .event-poster img {
    max-height: none;
    aspect-ratio: 4 / 5;
  }

  .site-footer {
    padding: 64px 0 34px;
  }

  .footer-inner {
    gap: 42px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-brand-block p {
    margin: 8px 0 0;
  }

  .footer-socials {
    justify-content: flex-start;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }

  .footer-meta {
    justify-content: flex-start;
  }

  .footer-grid {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

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

  .event-board {
    animation: none;
    transform: none;
  }
}
