:root {
  --purple: #422448;
  --black: #000000;
  --ink: #090c0e;
  --panel: #0d1215;
  --panel-soft: #12171a;
  --green: #46a649;
  --deep-green: #154e30;
  --mint: #b8d8cf;
  --ivory: #f5f0e4;
  --white: #ffffff;
  --line: rgba(184, 216, 207, 0.28);
  --page: min(1392px, calc(100% - 8vw));
  --shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
  --theme-brand: var(--green);
  --theme-header: linear-gradient(90deg, var(--purple) 0%, var(--black) 100%);
  --theme-band: linear-gradient(90deg, var(--purple) 0%, var(--black) 100%);
  --theme-events:
    radial-gradient(circle at 50% -20%, rgba(66, 36, 72, 0.24), transparent 44%),
    #0b0f12;
  --theme-nav: rgba(255, 255, 255, 0.9);
  color-scheme: dark;
}

:root[data-theme="evening"] {
  --theme-brand: var(--white);
  --theme-header: linear-gradient(90deg, #b15332 0%, #422448 100%);
  --theme-band: linear-gradient(90deg, #b15332 0%, #422448 100%);
  --theme-events:
    linear-gradient(90deg, rgba(177, 83, 50, 0.3), rgba(66, 36, 72, 0.5)),
    #160f14;
  --theme-nav: rgba(255, 255, 255, 0.94);
}

:root[data-theme="day"] {
  --theme-brand: var(--deep-green);
  --theme-header: linear-gradient(90deg, #f7f1e4 0%, #fffdf7 100%);
  --theme-band: linear-gradient(90deg, #eee5d3 0%, #fffdf7 100%);
  --theme-events:
    radial-gradient(circle at 50% -20%, rgba(70, 166, 73, 0.12), transparent 46%),
    #f5f0e4;
  --theme-nav: #183a29;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  margin: 0;
  color: var(--white);
  background: var(--black);
  font-family:
    "Helvetica Neue", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--black);
  background: var(--white);
  transform: translateY(-160%);
}

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

.page-shell {
  width: var(--page);
  margin-inline: auto;
}

.site-header {
  position: relative;
  z-index: 20;
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(24px, 3vw, 46px);
  background: var(--theme-header);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.brand {
  display: grid;
  min-height: 76px;
  align-items: center;
}

.brand__mark {
  display: block;
  width: clamp(116px, 10vw, 150px);
  aspect-ratio: 757 / 372;
  background: var(--theme-brand);
  -webkit-mask: url("./assets/mr-earl-wordmark-logo-green.png") center / contain no-repeat;
  mask: url("./assets/mr-earl-wordmark-logo-green.png") center / contain no-repeat;
}

.desktop-nav {
  display: flex;
  align-items: stretch;
  gap: clamp(20px, 3vw, 48px);
  align-self: stretch;
}

.desktop-nav a {
  position: relative;
  display: grid;
  align-items: center;
  color: var(--theme-nav);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--green);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

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

.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  min-height: clamp(560px, 64vw, 720px);
  align-items: center;
  isolation: isolate;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.76) 0%, rgba(0, 0, 0, 0.28) 48%, rgba(0, 0, 0, 0.12) 100%),
    url("./assets/hero-live-collage.jpg") center / cover no-repeat;
}

.hero::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.34), transparent 42%);
  content: "";
}

.hero__content {
  padding-block: clamp(72px, 9vw, 120px);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--mint);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(2.9rem, 5.2vw, 5.6rem);
  font-weight: 600;
  letter-spacing: 0.025em;
  line-height: 1.32;
  text-shadow: 0 4px 22px rgba(0, 0, 0, 0.76);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 34px;
  padding: 14px 24px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: transform 180ms ease, filter 180ms ease, background 180ms ease;
}

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

.button--primary {
  min-width: 250px;
  background: linear-gradient(100deg, #154e30, #0f3823);
}

.button--light {
  min-width: 290px;
  color: #121212;
  background: rgba(245, 240, 228, 0.95);
}

.events {
  padding: clamp(46px, 5vw, 74px) 0 clamp(52px, 6vw, 84px);
  background: var(--theme-events);
}

.section-heading {
  margin-bottom: 30px;
}

.section-heading--center {
  text-align: center;
}

.section-heading h2,
.instagram h2 {
  margin: 0;
  font-family: "Arial Narrow", "Helvetica Neue", sans-serif;
  font-size: clamp(1.7rem, 2.5vw, 2.55rem);
  letter-spacing: 0.12em;
  line-height: 1.1;
  text-transform: uppercase;
}

.event-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 28px);
}

.event-card {
  display: grid;
  min-width: 0;
  grid-template-columns: 37% 18% 45%;
  overflow: hidden;
  border: 1px solid rgba(184, 216, 207, 0.24);
  background: rgba(15, 20, 23, 0.92);
  box-shadow: var(--shadow);
}

.event-card > img {
  width: 100%;
  height: 100%;
  min-height: 176px;
  object-fit: cover;
}

.event-card__date {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, #194f31, #0b2919);
  text-align: center;
  text-transform: uppercase;
}

.event-card__date strong {
  font-family: "Arial Narrow", "Helvetica Neue", sans-serif;
  font-size: clamp(1.65rem, 2.4vw, 2.8rem);
  line-height: 1;
}

.event-card__date span {
  margin-top: 8px;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
}

.event-card__body {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 18px;
}

.event-card__body h3 {
  margin: 0;
  font-family: "Arial Narrow", "Helvetica Neue", sans-serif;
  font-size: clamp(1rem, 1.3vw, 1.25rem);
  letter-spacing: 0.035em;
  line-height: 1.24;
  text-transform: uppercase;
}

.event-card__body p {
  margin: 10px 0 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.66rem;
  white-space: nowrap;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tag-row span {
  padding: 4px 7px;
  color: #d7e3de;
  background: rgba(184, 216, 207, 0.13);
  font-size: 0.58rem;
}

.prototype-note {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.72rem;
  text-align: center;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: #050706;
}

.feature-card {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  isolation: isolate;
  background-position: center;
  background-size: cover;
}

.feature-card + .feature-card {
  border-left: 1px solid rgba(255, 255, 255, 0.24);
}

.feature-card::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.44));
  content: "";
}

.feature-card--mic {
  background-image: url("./assets/feature-open-mic.jpg");
}

.feature-card--stage {
  background-image: url("./assets/feature-stage.jpg");
}

.feature-card--booking {
  background-image: url("./assets/feature-booking.jpg");
}

.feature-card__content {
  display: flex;
  height: 100%;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: clamp(28px, 4vw, 58px);
}

.feature-card__number {
  width: 48px;
  height: 48px;
  margin: 0 0 18px;
  border: 1px solid rgba(184, 216, 207, 0.64);
  border-radius: 50%;
  color: var(--mint);
  font-size: 0.76rem;
  line-height: 48px;
  text-align: center;
}

.feature-card h2 {
  margin: 0;
  color: var(--mint);
  font-family: "Arial Narrow", "Helvetica Neue", sans-serif;
  font-size: clamp(1.4rem, 2vw, 2.2rem);
  letter-spacing: 0.08em;
  line-height: 1.15;
  text-transform: uppercase;
}

.feature-card p:not(.feature-card__number) {
  margin: 14px 0 24px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
}

.feature-card a {
  min-width: 220px;
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  font-size: 0.8rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
}

.instagram {
  padding: clamp(54px, 6vw, 86px) 0 clamp(62px, 7vw, 96px);
  background: var(--theme-band);
}

.instagram__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 32px;
}

.instagram__identity {
  display: flex;
  align-items: center;
  gap: 20px;
}

.instagram__identity p {
  margin: 9px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.instagram__identity .eyebrow {
  margin: 0 0 8px;
  color: var(--green);
}

.instagram__identity a {
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.instagram-mark {
  position: relative;
  display: block;
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  border: 3px solid var(--green);
  border-radius: 14px;
}

.instagram-mark::before {
  position: absolute;
  width: 20px;
  height: 20px;
  border: 3px solid var(--green);
  border-radius: 50%;
  content: "";
  inset: 13px;
}

.instagram-mark::after {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  content: "";
}

.button--instagram {
  min-width: 236px;
  border-color: var(--green);
  background: var(--deep-green);
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: clamp(8px, 1vw, 16px);
}

.instagram-grid a {
  position: relative;
  display: block;
  overflow: hidden;
  border: 2px solid rgba(70, 166, 73, 0.82);
  aspect-ratio: 1;
  background: #111;
}

.instagram-grid a::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(0, 0, 0, 0.38));
  content: "";
  opacity: 0;
  transition: opacity 180ms ease;
}

.instagram-grid a:hover::after,
.instagram-grid a:focus-visible::after {
  opacity: 1;
}

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

.instagram-grid a:hover img,
.instagram-grid a:focus-visible img {
  transform: scale(1.045);
}

.instagram__notice {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.72rem;
}

.subpage-hero {
  position: relative;
  display: grid;
  min-height: clamp(360px, 44vw, 540px);
  align-items: end;
  isolation: isolate;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.28)),
    url("./assets/hero-live-collage.jpg") center 44% / cover no-repeat;
}

.subpage-hero::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(0deg, #090c0e 0%, transparent 58%);
  content: "";
}

.subpage-hero__content {
  padding-block: clamp(72px, 9vw, 118px) clamp(54px, 7vw, 88px);
}

.subpage-hero h1 {
  max-width: 920px;
  margin: 0;
  font-family: "Helvetica Neue", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-size: clamp(3.1rem, 7vw, 6.8rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.05;
  text-shadow: 0 4px 26px rgba(0, 0, 0, 0.82);
  text-transform: uppercase;
}

.subpage-hero__lead {
  max-width: 720px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
}

.calendar-section {
  padding: clamp(54px, 6vw, 86px) 0;
  background:
    radial-gradient(circle at 85% 0%, rgba(66, 36, 72, 0.28), transparent 42%),
    #090c0e;
}

.calendar-section__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 30px;
}

.calendar-section__header h2 {
  margin: 0;
  font-family: "Arial Narrow", "Helvetica Neue", sans-serif;
  font-size: clamp(1.8rem, 3.2vw, 3.2rem);
  letter-spacing: 0.1em;
  line-height: 1.1;
  text-transform: uppercase;
}

.calendar-embed {
  overflow: hidden;
  padding: clamp(8px, 1vw, 14px);
  border: 1px solid rgba(184, 216, 207, 0.3);
  border-radius: 18px;
  background: var(--ivory);
  box-shadow: var(--shadow);
}

.calendar-embed iframe {
  display: block;
  width: 100%;
  height: clamp(580px, 66vw, 760px);
  border: 0;
  border-radius: 11px;
  background: var(--white);
}

.calendar-embed__notice {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.72rem;
}

.entry-section {
  padding: clamp(58px, 7vw, 104px) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  background:
    radial-gradient(circle at 8% 0%, rgba(70, 166, 73, 0.12), transparent 34%),
    #0b0f12;
}

.entry-section__header {
  margin-bottom: 30px;
}

.entry-section__header h2 {
  margin: 0;
  font-family: "Arial Narrow", "Helvetica Neue", sans-serif;
  font-size: clamp(2rem, 4vw, 4rem);
  letter-spacing: 0.1em;
  line-height: 1.05;
  text-transform: uppercase;
}

.entry-panel {
  overflow: hidden;
  color: var(--ink);
  border: 1px solid rgba(184, 216, 207, 0.3);
  border-radius: 18px;
  background: var(--ivory);
  box-shadow: var(--shadow);
}

.entry-panel__intro {
  padding: clamp(28px, 4vw, 52px);
  color: var(--white);
  background: linear-gradient(100deg, var(--purple), #171018 58%, var(--black));
}

.entry-panel__intro h3 {
  margin: 0;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(1.7rem, 3vw, 2.8rem);
  font-weight: 600;
}

.entry-panel__intro > p {
  max-width: 820px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.76);
}

.entry-panel__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
}

.entry-panel__links a {
  color: var(--mint);
  font-weight: 700;
  text-underline-offset: 4px;
}

.entry-panel__prototype-note {
  padding: 12px 16px;
  border-left: 3px solid var(--green);
  background: rgba(255, 255, 255, 0.08);
}

.entry-panel__required-note {
  font-size: 0.78rem;
}

.entry-panel__required-note span,
.required-mark {
  color: #e05b64;
}

.entry-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 28px;
  padding: clamp(10px, 2vw, 22px) clamp(24px, 4vw, 52px) clamp(32px, 5vw, 64px);
}

.form-question {
  min-width: 0;
  margin: 0;
  padding: clamp(28px, 3.5vw, 44px) 0;
  border: 0;
  border-bottom: 1px solid rgba(9, 12, 14, 0.14);
}

.form-question--full,
.entry-form__actions {
  grid-column: 1 / -1;
}

.form-question__label,
.form-question legend {
  display: block;
  width: 100%;
  margin: 0 0 14px;
  padding: 0;
  color: #121719;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.65;
}

.form-question__help {
  margin: -6px 0 14px;
  color: rgba(9, 12, 14, 0.62);
  font-size: 0.86rem;
}

.form-question input[type="text"],
.form-question input[type="date"],
.form-question input[type="time"],
.form-question textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--ink);
  border: 1px solid rgba(9, 12, 14, 0.25);
  border-radius: 8px;
  background: var(--white);
  font: inherit;
}

.form-question input[type="date"],
.form-question input[type="time"] {
  max-width: 320px;
}

.form-question textarea {
  min-height: 120px;
  resize: vertical;
}

.form-question input[type="text"]:focus,
.form-question input[type="date"]:focus,
.form-question input[type="time"]:focus,
.form-question textarea:focus {
  border-color: var(--deep-green);
  outline: 3px solid rgba(70, 166, 73, 0.22);
  outline-offset: 1px;
}

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

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

.choice-option {
  display: flex;
  min-height: 50px;
  align-items: center;
  gap: 10px;
  padding: 11px 13px;
  border: 1px solid rgba(9, 12, 14, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.58);
  cursor: pointer;
}

.choice-option:hover {
  border-color: rgba(21, 78, 48, 0.55);
  background: rgba(255, 255, 255, 0.92);
}

.choice-option input[type="radio"],
.choice-option input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  accent-color: var(--deep-green);
}

.choice-option--other {
  grid-column: 1 / -1;
  cursor: default;
}

.choice-option--other label {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.choice-option--other input[type="text"] {
  min-width: 120px;
  flex: 1 1 auto;
  padding-block: 8px;
}

.choice-option--other input[type="text"]:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.entry-form__actions {
  display: flex;
  align-items: center;
  gap: 22px;
  padding-top: clamp(30px, 4vw, 48px);
}

.entry-form__actions p {
  margin: 0;
  color: rgba(9, 12, 14, 0.58);
  font-size: 0.8rem;
}

.entry-form__error,
.entry-form__status,
.entry-form__success {
  grid-column: 1 / -1;
  margin: 24px 0 0;
  padding: 14px 16px;
  border-radius: 8px;
  font-size: 0.88rem;
  line-height: 1.7;
}

.entry-form__error {
  border-left: 4px solid #b9323d;
  background: #fff0f1;
  color: #8b1f28;
  font-weight: 700;
}

.entry-form__status {
  margin: 0;
  padding: 0;
  color: rgba(9, 12, 14, 0.62);
}

.entry-form__success {
  margin: clamp(28px, 4vw, 52px);
  border-left: 4px solid var(--green);
  background: #eef7ef;
  color: #123420;
}

.entry-form__success p {
  margin: 0.35em 0;
}

.entry-form__hidden-frame {
  display: none;
}

.button[disabled],
.button[disabled]:hover,
.button[disabled]:focus-visible {
  cursor: not-allowed;
  filter: grayscale(0.2);
  opacity: 0.56;
  transform: none;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  padding: 0;
  margin: -1px;
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.content-section {
  padding: clamp(58px, 7vw, 104px) 0;
  background: #090c0e;
}

.content-section--soft {
  background:
    radial-gradient(circle at 80% 0%, rgba(66, 36, 72, 0.24), transparent 40%),
    #101518;
}

.content-section--gradient {
  background: var(--theme-band);
}

.section-intro {
  max-width: 780px;
  margin-bottom: clamp(34px, 5vw, 58px);
}

.section-intro h2 {
  margin: 0;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(2rem, 4vw, 3.8rem);
  font-weight: 600;
  line-height: 1.3;
}

.section-intro p:not(.eyebrow) {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.5vw, 30px);
}

.content-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.access-map {
  width: 100%;
  margin-top: clamp(34px, 5vw, 58px);
  overflow: hidden;
  border: 1px solid rgba(184, 216, 207, 0.3);
  border-radius: 18px;
  background: var(--ivory);
  box-shadow: var(--shadow);
}

.access-map iframe {
  display: block;
  width: 100%;
  height: clamp(360px, 48vw, 560px);
  border: 0;
}

.access-map__notice {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px 20px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.72rem;
}

.access-map__notice a {
  color: var(--mint);
  font-weight: 700;
}

.menu-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  align-items: start;
  gap: clamp(28px, 4vw, 58px);
}

.menu-board {
  position: sticky;
  top: 112px;
  margin: 0;
}

.menu-board img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(231, 213, 163, 0.45);
  border-radius: 14px;
  background: #160d08;
  box-shadow: var(--shadow);
}

.menu-board figcaption {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.72rem;
  line-height: 1.7;
}

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

.menu-column {
  display: grid;
  align-content: start;
  gap: 22px;
}

.menu-group {
  overflow: hidden;
  border: 1px solid rgba(231, 213, 163, 0.2);
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(58, 27, 16, 0.96), rgba(16, 12, 12, 0.98));
  box-shadow: var(--shadow);
}

.menu-group h3 {
  margin: 0;
  padding: 18px 20px;
  color: #f5e6bd;
  border-bottom: 1px solid rgba(231, 213, 163, 0.18);
  font-family: "Arial Narrow", "Helvetica Neue", sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu-group h3 span {
  display: block;
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.56);
  font-family: inherit;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
}

.menu-list {
  margin: 0;
}

.menu-list__item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 16px;
  padding: 15px 20px;
}

.menu-list__item + .menu-list__item {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.menu-list dt,
.menu-list dd {
  margin: 0;
}

.menu-list dt {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.55;
}

.menu-list dd {
  color: #f5e6bd;
  font-family: "Arial Narrow", "Helvetica Neue", sans-serif;
  font-size: 1.08rem;
  font-weight: 800;
  white-space: nowrap;
}

.menu-unconfirmed {
  margin-top: clamp(34px, 5vw, 58px);
  padding: clamp(24px, 3.5vw, 38px);
  border: 1px dashed rgba(184, 216, 207, 0.28);
  border-radius: 14px;
  background: rgba(13, 18, 21, 0.72);
}

.menu-unconfirmed h3 {
  margin: 8px 0 0;
  color: var(--mint);
  font-family: "Arial Narrow", "Helvetica Neue", sans-serif;
  font-size: clamp(1.35rem, 2vw, 2rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.menu-unconfirmed p:not(.eyebrow) {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.info-card {
  padding: clamp(26px, 3.5vw, 42px);
  border: 1px solid var(--line);
  background: rgba(13, 18, 21, 0.9);
  box-shadow: var(--shadow);
}

.info-card__number {
  margin: 0 0 22px;
  color: var(--green);
  font-family: "Arial Narrow", "Helvetica Neue", sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.info-card h2,
.info-card h3 {
  margin: 0;
  color: var(--mint);
  font-family: "Arial Narrow", "Helvetica Neue", sans-serif;
  font-size: clamp(1.35rem, 2vw, 2rem);
  letter-spacing: 0.06em;
  line-height: 1.25;
  text-transform: uppercase;
}

.info-card p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.74);
}

.info-card ul,
.check-list {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.info-card li,
.check-list li {
  position: relative;
  padding: 10px 0 10px 24px;
  border-top: 1px solid rgba(184, 216, 207, 0.14);
  color: rgba(255, 255, 255, 0.78);
}

.info-card li::before,
.check-list li::before {
  position: absolute;
  left: 0;
  color: var(--green);
  content: "—";
}

.process-list {
  display: grid;
  margin: 0;
  padding: 0;
  counter-reset: process;
  list-style: none;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.process-list li {
  position: relative;
  min-height: 230px;
  padding: 70px 26px 28px;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.28);
  counter-increment: process;
}

.process-list li::before {
  position: absolute;
  top: 22px;
  left: 26px;
  color: var(--green);
  content: "0" counter(process);
  font-family: "Arial Narrow", "Helvetica Neue", sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.process-list strong {
  display: block;
  margin-bottom: 12px;
  color: var(--mint);
  font-size: 1.06rem;
}

.process-list span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.status-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid rgba(70, 166, 73, 0.42);
  background: rgba(21, 78, 48, 0.18);
}

.status-panel h2 {
  margin: 0;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(1.7rem, 3vw, 2.8rem);
  font-weight: 600;
}

.status-panel p {
  max-width: 720px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.7);
}

.placeholder-value {
  display: inline-block;
  margin-top: 18px;
  padding: 8px 12px;
  color: var(--mint);
  border: 1px solid rgba(184, 216, 207, 0.3);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.site-footer {
  padding: 34px 4vw;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.5);
  background: #050607;
  font-size: 0.74rem;
  text-align: center;
}

/* Day B keeps the same information architecture while moving the surfaces to
   the approved light ivory / deep-green direction. Image-led hero and feature
   panels intentionally retain white text for contrast. */
:root[data-theme="day"] body {
  color: #18241d;
  background: var(--ivory);
}

:root[data-theme="day"] .site-header {
  border-bottom-color: rgba(21, 78, 48, 0.18);
}

:root[data-theme="day"] .desktop-nav a::after {
  background: var(--deep-green);
}

:root[data-theme="day"] .events,
:root[data-theme="day"] .calendar-section,
:root[data-theme="day"] .entry-section,
:root[data-theme="day"] .content-section {
  color: #18241d;
  border-color: rgba(21, 78, 48, 0.14);
  background:
    radial-gradient(circle at 84% 0%, rgba(70, 166, 73, 0.1), transparent 42%),
    var(--ivory);
}

:root[data-theme="day"] .content-section--soft {
  background:
    radial-gradient(circle at 80% 0%, rgba(66, 36, 72, 0.08), transparent 40%),
    #eee8dc;
}

:root[data-theme="day"] .content-section--gradient {
  background: var(--theme-band);
}

:root[data-theme="day"] .event-card,
:root[data-theme="day"] .info-card,
:root[data-theme="day"] .process-list li,
:root[data-theme="day"] .menu-unconfirmed {
  color: #18241d;
  border-color: rgba(21, 78, 48, 0.2);
  background: rgba(255, 253, 247, 0.92);
  box-shadow: 0 16px 38px rgba(49, 39, 24, 0.12);
}

:root[data-theme="day"] .event-card__body p,
:root[data-theme="day"] .prototype-note,
:root[data-theme="day"] .section-intro p:not(.eyebrow),
:root[data-theme="day"] .info-card p,
:root[data-theme="day"] .info-card li,
:root[data-theme="day"] .check-list li,
:root[data-theme="day"] .process-list span,
:root[data-theme="day"] .status-panel p,
:root[data-theme="day"] .menu-unconfirmed p:not(.eyebrow),
:root[data-theme="day"] .access-map__notice {
  color: rgba(24, 36, 29, 0.72);
}

:root[data-theme="day"] .event-card__date {
  color: var(--white);
}

:root[data-theme="day"] .tag-row span {
  color: var(--deep-green);
  background: rgba(21, 78, 48, 0.1);
}

:root[data-theme="day"] .events .eyebrow,
:root[data-theme="day"] .calendar-section .eyebrow,
:root[data-theme="day"] .entry-section .eyebrow,
:root[data-theme="day"] .content-section .eyebrow,
:root[data-theme="day"] .instagram .eyebrow {
  color: var(--deep-green);
}

:root[data-theme="day"] .info-card h2,
:root[data-theme="day"] .info-card h3,
:root[data-theme="day"] .process-list strong,
:root[data-theme="day"] .menu-unconfirmed h3,
:root[data-theme="day"] .access-map__notice a {
  color: var(--deep-green);
}

:root[data-theme="day"] .info-card li,
:root[data-theme="day"] .check-list li {
  border-top-color: rgba(21, 78, 48, 0.14);
}

:root[data-theme="day"] .instagram {
  color: #18241d;
}

:root[data-theme="day"] .instagram__identity p,
:root[data-theme="day"] .instagram__notice {
  color: rgba(24, 36, 29, 0.68);
}

:root[data-theme="day"] .instagram__identity .eyebrow {
  color: var(--deep-green);
}

:root[data-theme="day"] .instagram-mark,
:root[data-theme="day"] .instagram-mark::before {
  border-color: var(--deep-green);
}

:root[data-theme="day"] .instagram-mark::after {
  background: var(--deep-green);
}

:root[data-theme="day"] .button--instagram,
:root[data-theme="day"] .button--primary {
  color: var(--white);
  border-color: var(--deep-green);
}

:root[data-theme="day"] .status-panel {
  color: #18241d;
  border-color: rgba(21, 78, 48, 0.32);
  background: rgba(70, 166, 73, 0.1);
}

:root[data-theme="day"] .placeholder-value {
  color: var(--deep-green);
  border-color: rgba(21, 78, 48, 0.28);
}

:root[data-theme="day"] .menu-board figcaption {
  color: rgba(24, 36, 29, 0.66);
}

:root[data-theme="day"] .site-footer {
  color: rgba(24, 36, 29, 0.62);
  border-top-color: rgba(21, 78, 48, 0.14);
  background: #e8e0d1;
}

:root[data-theme="day"] .hero,
:root[data-theme="day"] .subpage-hero,
:root[data-theme="day"] .feature-grid,
:root[data-theme="day"] .feature-card,
:root[data-theme="day"] .entry-panel__intro,
:root[data-theme="day"] .menu-group {
  color: var(--white);
}

:root[data-theme="day"] .subpage-hero .eyebrow,
:root[data-theme="day"] .hero .eyebrow,
:root[data-theme="day"] .feature-card h2,
:root[data-theme="day"] .feature-card__number {
  color: var(--mint);
}

:root[data-theme="day"] .mobile-nav nav {
  color: #18241d;
  border-color: rgba(21, 78, 48, 0.2);
  background: #fffdf7;
}

:root[data-theme="day"] .mobile-nav nav a {
  border-bottom-color: rgba(21, 78, 48, 0.14);
}

:focus-visible {
  outline: 3px solid var(--mint);
  outline-offset: 4px;
}

@media (max-width: 1120px) {
  .choice-grid--compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .event-card {
    grid-template-columns: 180px 100px 1fr;
  }

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

  .feature-card {
    min-height: 330px;
  }

  .feature-card + .feature-card {
    border-top: 1px solid rgba(255, 255, 255, 0.24);
    border-left: 0;
  }

  .instagram-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .content-grid,
  .content-grid--two {
    grid-template-columns: 1fr;
  }

  .menu-layout {
    grid-template-columns: 1fr;
  }

  .menu-board {
    position: static;
    width: min(100%, 620px);
    margin-inline: auto;
  }

  .process-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  :root {
    --page: min(100% - 36px, 680px);
  }

  .site-header {
    min-height: 68px;
    padding-inline: 18px;
  }

  .brand {
    min-height: 68px;
  }

  .brand__mark {
    width: 112px;
  }

  .desktop-nav {
    display: none;
  }

  .mobile-nav {
    position: relative;
    display: block;
  }

  .mobile-nav summary {
    padding: 10px 0 10px 16px;
    cursor: pointer;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    list-style: none;
    text-transform: uppercase;
  }

  .mobile-nav summary::-webkit-details-marker {
    display: none;
  }

  .mobile-nav nav {
    position: absolute;
    top: 48px;
    right: 0;
    display: grid;
    min-width: 190px;
    border: 1px solid var(--line);
    background: #0c0a0d;
    box-shadow: var(--shadow);
  }

  .mobile-nav nav a {
    padding: 15px 18px;
    border-bottom: 1px solid var(--line);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-decoration: none;
    text-transform: uppercase;
  }

  .mobile-nav nav a:last-child {
    border-bottom: 0;
  }

  .hero {
    min-height: calc(100svh - 68px);
    background-position: 50% center;
  }

  .hero__content {
    align-self: end;
    padding-block: 96px 54px;
  }

  .hero h1 {
    font-size: clamp(2.65rem, 14vw, 4.6rem);
  }

  .hero__actions {
    display: grid;
  }

  .button--primary,
  .button--light,
  .button--instagram {
    width: 100%;
    min-width: 0;
  }

  .event-card {
    grid-template-columns: 34% 24% 42%;
  }

  .event-card > img {
    min-height: 160px;
  }

  .event-card__body {
    padding: 12px;
  }

  .event-card__body p {
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .tag-row {
    display: none;
  }

  .feature-card__content {
    padding: 34px 24px;
  }

  .instagram__header {
    display: grid;
    align-items: start;
  }

  .instagram__identity {
    gap: 14px;
  }

  .instagram-mark {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
    border-radius: 12px;
  }

  .instagram-mark::before {
    width: 16px;
    height: 16px;
    inset: 11px;
  }

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

  .subpage-hero {
    min-height: 430px;
    background-position: 50% center;
  }

  .subpage-hero h1 {
    font-size: clamp(2.8rem, 16vw, 4.8rem);
  }

  .process-list {
    grid-template-columns: 1fr;
  }

  .menu-groups {
    grid-template-columns: 1fr;
  }

  .process-list li {
    min-height: 0;
  }

  .status-panel {
    display: grid;
  }

  .calendar-section__header {
    display: grid;
    align-items: start;
  }

  .calendar-section__header .button {
    width: 100%;
  }

  .calendar-embed {
    padding: 5px;
  }

  .calendar-embed iframe {
    height: 680px;
  }

  .entry-form {
    grid-template-columns: 1fr;
    padding-inline: 22px;
  }

  .form-question,
  .form-question--full,
  .entry-form__actions {
    grid-column: 1;
  }

  .choice-grid,
  .choice-grid--compact {
    grid-template-columns: 1fr;
  }

  .choice-option--other {
    grid-column: 1;
    align-items: flex-start;
    flex-direction: column;
  }

  .choice-option--other input[type="text"] {
    width: 100%;
  }

  .entry-form__actions {
    display: grid;
  }

  .entry-form__actions .button {
    width: 100%;
    min-width: 0;
  }
}

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

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