:root {
  --cream: #fbfbfa;
  --paper: #ffffff;
  --green: #15392d;
  --green-2: #091c16;
  --brown: #8b5a36;
  --brown-2: #704529;
  --sky: #e2edf3;
  --blue: #bfe9ff;
  --black: #07110d;
  --ink: #101815;
  --muted: #5c6b63;
  --line: rgba(27, 66, 51, 0.16);
  --shadow: 0 26px 80px rgba(7, 17, 13, 0.14);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  line-height: 1.5;
}

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

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

button,
input,
select {
  font: inherit;
}

:where(
  button,
  a.button,
  a.mini-button,
  a.nav-cta,
  .admin-tab,
  .admin-list-select,
  .icon-action,
  .page-return a
) {
  -webkit-tap-highlight-color: transparent;
  transition:
    transform 120ms ease,
    filter 120ms ease,
    background-color 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    box-shadow 160ms ease,
    opacity 160ms ease;
}

:where(
  button,
  a.button,
  a.mini-button,
  a.nav-cta,
  .admin-tab,
  .admin-list-select,
  .icon-action,
  .page-return a
):not(:disabled):not([aria-disabled="true"]) {
  cursor: pointer;
}

:where(
  button,
  a.button,
  a.mini-button,
  a.nav-cta,
  .admin-tab,
  .admin-list-select,
  .icon-action,
  .page-return a
):not(:disabled):not([aria-disabled="true"]):hover {
  filter: brightness(0.96);
}

:where(
  button,
  a.button,
  a.mini-button,
  a.nav-cta,
  .admin-tab,
  .admin-list-select,
  .icon-action,
  .page-return a
):not(:disabled):not([aria-disabled="true"]):active {
  transform: translateY(2px) scale(0.98);
  filter: brightness(0.9);
  box-shadow: none;
}

:where(
  button,
  a.button,
  a.mini-button,
  a.nav-cta,
  .admin-tab,
  .admin-list-select,
  .icon-action,
  .page-return a
):focus-visible {
  outline: 3px solid rgba(139, 90, 54, 0.5);
  outline-offset: 3px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(7, 17, 13, 0.76);
  color: #fff;
  backdrop-filter: blur(22px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 40px));
  min-height: 76px;
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand img {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  object-fit: cover;
  background: #fff;
}

.brand strong {
  display: block;
  font-size: 1.02rem;
  line-height: 1.04;
  white-space: nowrap;
  font-weight: 900;
}

.brand span {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 15px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.88rem;
  font-weight: 700;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  padding: 0;
}

.nav-toggle-icon,
.nav-toggle-icon::before,
.nav-toggle-icon::after {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 160ms ease, opacity 160ms ease;
}

.nav-toggle-icon {
  position: relative;
}

.nav-toggle-icon::before,
.nav-toggle-icon::after {
  position: absolute;
  left: 0;
  content: "";
}

.nav-toggle-icon::before {
  transform: translateY(-6px);
}

.nav-toggle-icon::after {
  transform: translateY(6px);
}

.nav-open .nav-toggle-icon {
  background: transparent;
}

.nav-open .nav-toggle-icon::before {
  transform: rotate(45deg);
}

.nav-open .nav-toggle-icon::after {
  transform: rotate(-45deg);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--brown);
  color: #fff;
  font-weight: 800;
  white-space: nowrap;
  box-shadow: 0 12px 30px rgba(112, 69, 41, 0.22);
}

.nav-cta:hover,
.button:hover {
  background: var(--brown-2);
}

.button:disabled {
  background: #c8d0c9;
  color: rgba(7, 17, 13, 0.52);
  cursor: not-allowed;
  box-shadow: none;
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.36);
  background: transparent;
  box-shadow: none;
}

.button.ghost {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.button.secondary.dark {
  border-color: rgba(7, 17, 13, 0.14);
  color: var(--ink);
}

.button.light {
  border-color: var(--line);
  background: #fff;
  color: var(--green);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.page-return {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto -18px;
}

.page-return a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 800;
  backdrop-filter: blur(14px);
}

.page-return a:hover {
  background: rgba(255, 255, 255, 0.22);
}

.hero,
.page-hero {
  position: relative;
  display: grid;
  min-height: 92vh;
  padding: 116px 0 54px;
  color: #fff;
  isolation: isolate;
}

.hero::before,
.page-hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--hero-image) center / cover;
  content: "";
}

.hero::after,
.page-hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(7, 17, 13, 0.88), rgba(7, 17, 13, 0.56) 47%, rgba(7, 17, 13, 0.18)),
    linear-gradient(0deg, rgba(7, 17, 13, 0.44), transparent 48%);
  content: "";
}

.hero {
  --hero-image: url("public/assets/images_whatsapp_scenic_outside_terasse.jpg");
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.48fr);
  align-items: end;
  gap: 54px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.page-hero {
  min-height: 64vh;
  --hero-image: url("public/assets/images_whatsapp_scenic_outside_with_grass.jpg");
}

.page-hero .hero-inner {
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 0.4fr);
  align-items: start;
}

.tickets-hero::before {
  background-position: center 18%;
}

.reservation-hero {
  min-height: auto;
  padding: 112px 0 58px;
}

.reservation-hero .hero-inner {
  grid-template-columns: minmax(0, 0.72fr) minmax(360px, 0.5fr);
  align-items: start;
}

.reservation-hero .hero-copy {
  max-width: 580px;
}

.reservation-hero .reservation-card {
  width: 100%;
  max-width: 520px;
  justify-self: end;
}

.hero-inner > *,
.section-head > *,
.split > *,
.events-layout > *,
.team-grid > *,
.contact-grid > *,
.duo > *,
.feature-grid > * {
  min-width: 0;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  color: currentColor;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.eyebrow::before {
  width: 42px;
  height: 1px;
  background: currentColor;
  content: "";
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  font-weight: 900;
  line-height: 1;
  text-wrap: balance;
}

h1 {
  max-width: 820px;
  overflow-wrap: break-word;
  font-size: clamp(3rem, 6.4vw, 6.1rem);
}

.page-hero h1 {
  max-width: 760px;
  font-size: clamp(3rem, 4.7vw, 4.9rem);
}

.hero-copy {
  max-width: 650px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.06rem, 1.5vw, 1.25rem);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(720px, 100%);
  margin-top: 54px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.hero-facts div {
  min-height: 108px;
  padding: 18px;
  background: rgba(7, 17, 13, 0.48);
}

.hero-facts strong {
  display: block;
  margin-bottom: 6px;
  color: #fff;
  font-size: 1.18rem;
  line-height: 1.05;
}

.hero-facts span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
}

.reservation-card,
.info-card {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 22px;
  background: rgba(251, 251, 250, 0.94);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.reservation-card h2,
.info-card h2 {
  color: var(--green);
  font-size: 1.9rem;
}

.reservation-card p,
.info-card p {
  margin: 10px 0 20px;
  color: var(--muted);
}

.field {
  display: grid;
  gap: 6px;
  margin-bottom: 12px;
}

.field span {
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.field input,
.field select {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  color: var(--ink);
  padding: 0 12px;
}

.reservation-card .button {
  width: 100%;
  margin-top: 8px;
}

.note {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.88rem;
}

.note[data-form-status]:not(:empty) {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  padding: 10px 12px;
}

.note[data-status="success"],
.availability-note[data-status="success"] {
  color: var(--green);
  font-weight: 800;
}

.note[data-status="success"]:not(:empty) {
  border-color: rgba(27, 66, 51, 0.18);
  background: #f3f8f4;
}

.note[data-status="error"],
.availability-note[data-status="error"] {
  color: #9a3412;
  font-weight: 800;
}

.note[data-status="error"]:not(:empty) {
  border-color: rgba(154, 52, 18, 0.18);
  background: #fff7ed;
}

.availability-note {
  min-height: 22px;
  margin: -4px 0 12px;
  font-size: 0.88rem;
}

main {
  overflow: hidden;
}

.section {
  padding: 92px 0;
}

.section.green {
  background: var(--green);
  color: #fff;
}

.section.sky {
  background: var(--sky);
}

.section.paper {
  background: var(--paper);
}

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

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(260px, 0.45fr);
  gap: 44px;
  align-items: end;
  margin-bottom: 42px;
}

.section h2 {
  color: var(--green);
  font-size: clamp(2.2rem, 3.8vw, 4rem);
}

.section.green h2,
.section.green .eyebrow {
  color: #fff;
}

.section-head p,
.text-block p,
.feature p,
.event-card p,
.contact-panel p {
  color: var(--muted);
}

.section.green p,
.section.green .muted {
  color: rgba(255, 255, 255, 0.76);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1fr);
  gap: 54px;
  align-items: center;
}

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

.image-pair {
  display: grid;
  grid-template-columns: 0.86fr 0.64fr;
  gap: 18px;
  align-items: end;
}

.image-pair img,
.story-card img,
.gallery img,
.team-grid img,
.wide-image img,
.mosaic img,
.feature-image,
.mini-photo {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.image-pair img:first-child {
  aspect-ratio: 4 / 5;
}

.image-pair img:last-child {
  aspect-ratio: 4 / 3;
}

.restaurant-intro {
  align-items: stretch;
}

.restaurant-intro .single-image {
  display: block;
  min-height: 520px;
}

.restaurant-intro .single-image img:first-child {
  height: 100%;
  min-height: 520px;
  aspect-ratio: auto;
}

.text-block h2 {
  margin-bottom: 24px;
}

.text-block p {
  margin: 0 0 18px;
  font-size: 1.08rem;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.pill-row.compact {
  gap: 7px;
  margin-top: 12px;
}

.pill {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 13px;
  color: var(--green);
  font-size: 0.86rem;
  font-weight: 850;
  background: rgba(255, 255, 255, 0.56);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.feature {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  padding: 32px 28px;
  border-right: 1px solid var(--line);
}

.feature:last-child {
  border-right: 0;
}

.feature span {
  color: var(--brown);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.feature h3 {
  margin-top: 10px;
  color: var(--green);
  font-size: 1.8rem;
}

.feature-meta {
  margin-top: 12px;
  color: var(--green);
  font-size: 0.9rem;
  font-weight: 850;
}

.feature .mini-button {
  margin-top: auto;
}

.feature p {
  margin-bottom: 18px;
}

.wide-image {
  margin-top: 42px;
}

.wide-image img {
  aspect-ratio: 16 / 8;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.story-card {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--green);
}

.story-card.large {
  grid-column: span 2;
  min-height: 430px;
}

.story-card img {
  height: 100%;
  min-height: inherit;
  border-radius: 0;
  box-shadow: none;
}

.story-card::after {
  position: absolute;
  inset: auto 0 0;
  height: 46%;
  background: linear-gradient(0deg, rgba(8, 25, 18, 0.78), transparent);
  content: "";
}

.story-card figcaption {
  position: absolute;
  right: 16px;
  bottom: 14px;
  left: 16px;
  z-index: 1;
  color: #fff;
  font-weight: 850;
}

.mosaic {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 1fr;
  grid-auto-rows: 210px;
  gap: 16px;
}

.mosaic img {
  height: 100%;
}

.mosaic img.tall {
  grid-row: span 2;
}

.mosaic img.wide {
  grid-column: span 2;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 16px;
}

.gallery figure {
  position: relative;
  aspect-ratio: 4 / 5;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: #fff;
}

.gallery img {
  position: absolute;
  inset: 0;
  height: 100%;
  border-radius: 0;
  box-shadow: none;
}

.gallery figure.wide {
  grid-column: span 2;
  aspect-ratio: 16 / 9;
}

.gallery figure.wide img {
  height: 100%;
}

.gallery figcaption {
  position: absolute;
  z-index: 2;
  left: 12px;
  bottom: 12px;
  max-width: calc(100% - 24px);
  border-radius: var(--radius);
  background: rgba(16, 42, 32, 0.82);
  color: #fff;
  padding: 8px 10px;
  font-size: 0.84rem;
  font-weight: 800;
}

.photo-essay {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(220px, 0.54fr) minmax(150px, 0.38fr);
  grid-template-rows: repeat(2, minmax(190px, 240px));
  gap: 16px;
}

.photo-essay figure {
  position: relative;
  min-width: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--green);
}

.photo-essay figure.anchor,
.photo-essay figure.portrait {
  grid-row: 1 / 3;
}

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

.photo-essay figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  z-index: 2;
  width: fit-content;
  max-width: calc(100% - 24px);
  border-radius: var(--radius);
  background: rgba(7, 17, 13, 0.78);
  color: #fff;
  padding: 7px 9px;
  font-size: 0.8rem;
  font-weight: 800;
}

.menu-hero::before {
  background-position: center 58%;
}

.menu-section {
  padding: 70px 0 96px;
  background: var(--cream);
}

.menu-index {
  position: sticky;
  top: 76px;
  z-index: 12;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(251, 251, 250, 0.96);
  padding: 15px 0;
  backdrop-filter: blur(16px);
}

.menu-index a {
  color: var(--green);
  font-size: 0.86rem;
  font-weight: 850;
}

.menu-index a:hover {
  color: var(--brown-2);
}

.menu-layout {
  columns: 2;
  column-gap: 54px;
  margin-top: 60px;
}

.menu-category {
  break-inside: avoid;
  scroll-margin-top: 150px;
  border-top: 2px solid var(--green);
  padding: 22px 0 42px;
}

.menu-category header {
  margin-bottom: 12px;
}

.menu-category header .eyebrow {
  margin-bottom: 6px;
  color: var(--brown);
}

.menu-category h2 {
  color: var(--green);
  font-size: 2.2rem;
}

.menu-items {
  display: grid;
}

.menu-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: start;
  border-bottom: 1px solid var(--line);
  padding: 17px 0;
}

.menu-item h3 {
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.3;
}

.menu-item h3 span {
  display: inline-block;
  min-width: 2ch;
  color: var(--brown);
  font-variant-numeric: tabular-nums;
}

.menu-item p {
  max-width: 50ch;
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.menu-item small {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 850;
}

.menu-item strong {
  padding-top: 2px;
  color: var(--green);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.menu-category-note {
  margin: 16px 0 0;
  color: var(--green);
  font-weight: 850;
}

.menu-footer-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-top: 28px;
  border-top: 1px solid var(--line);
  padding-top: 28px;
}

.menu-footer-note p {
  max-width: 70ch;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.events-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(320px, 0.38fr);
  gap: 24px;
}

.calendar,
.event-list,
.contact-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
}

.calendar {
  padding: 24px;
}

.calendar-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.calendar-top h3 {
  color: var(--green);
  font-size: 2rem;
}

.calendar-key {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 0.83rem;
}

.key {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.key::before {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--brown);
  content: "";
}

.key.blocked::before {
  background: var(--green);
}

.key.limited::before {
  background: #bfe9ff;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
}

.day-label,
.day {
  min-height: 62px;
  border-radius: var(--radius);
}

.day-label {
  display: grid;
  place-items: center;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.day {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: space-between;
  gap: 7px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--green);
  padding: 10px;
  font-weight: 850;
  line-height: 1;
}

.day.event {
  border-color: rgba(139, 90, 54, 0.45);
  background: rgba(139, 90, 54, 0.1);
}

.day.blocked {
  border-color: rgba(27, 66, 51, 0.44);
  background: var(--green);
  color: #fff;
}

.day.limited {
  border-color: rgba(21, 57, 45, 0.28);
  background: var(--sky);
  color: var(--green);
}

.day.muted {
  opacity: 0.35;
}

.day small {
  display: block;
  max-width: 100%;
  overflow: hidden;
  color: inherit;
  font-size: 0.59rem;
  font-weight: 900;
  line-height: 1.1;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
  letter-spacing: 0;
}

.day.event::after,
.day.blocked::after {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--brown);
  content: "";
}

.day.blocked::after {
  background: rgba(255, 255, 255, 0.86);
}

.day.limited::after {
  background: var(--green);
}

.event-list {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.event-list-wide {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 0;
  border: 0;
  background: transparent;
}

.event-card {
  padding: 18px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 34px rgba(16, 42, 32, 0.08);
}

.event-card time {
  color: var(--brown);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.event-card h3 {
  margin-top: 8px;
  color: var(--green);
  font-size: 1.48rem;
}

.mini-button.status {
  background: #f3f5f1;
}

.event-showcase {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.event-tile {
  display: grid;
  grid-template-columns: minmax(260px, 0.38fr) minmax(0, 0.62fr);
  gap: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  background: transparent;
  color: #fff;
}

.event-tile.featured {
  grid-row: auto;
}

.event-tile img {
  width: 100%;
  height: 260px;
  min-height: 0;
  object-fit: cover;
}

.event-tile > div {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 30px 34px;
}

.event-tile time {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.event-tile h3 {
  margin-top: 10px;
  color: #fff;
  font-size: 2rem;
}

.event-tile p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.74);
}

.price-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin: 22px 0;
}

.price-row strong,
.price-row span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border-radius: 999px;
  padding: 0 12px;
  font-weight: 900;
}

.event-list-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 24px;
}

.event-list-controls span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.86rem;
  font-weight: 800;
}

.price-row strong {
  background: #fff;
  color: var(--black);
}

.price-row span {
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.78);
}

.tickets-section {
  background: var(--black);
  color: #fff;
}

.tickets-section .section-head p,
.tickets-section .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.tickets-section h2 {
  color: #fff;
}

.ticket-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(340px, 0.46fr);
  gap: 24px;
  align-items: stretch;
}

.ticket-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(260px, 0.62fr);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.08);
}

.ticket-media {
  position: relative;
  min-height: 520px;
}

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

.ticket-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7, 17, 13, 0.62), transparent 52%);
  content: "";
}

.ticket-badges {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ticket-badges span,
.tier-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  border-radius: 999px;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--black);
  font-size: 0.82rem;
  font-weight: 900;
}

.ticket-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px;
}

.ticket-copy h3 {
  max-width: 440px;
  color: #fff;
  font-size: clamp(2.35rem, 5vw, 4.7rem);
}

.ticket-copy p:not(.eyebrow) {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.05rem;
}

.ticket-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.ticket-stack {
  display: grid;
  gap: 12px;
}

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

.ticket-purchase-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.42fr);
  gap: 18px;
  align-items: start;
}

.ticket-purchase-layout.no-checkout {
  grid-template-columns: minmax(0, 1fr);
}

.wide-ticket-stack .ticket-tier {
  grid-template-columns: 1fr;
  align-items: start;
}

.wide-ticket-stack .ticket-tier strong {
  justify-self: start;
}

.event-ticket-stack .ticket-tier {
  grid-template-rows: 1fr auto auto auto;
}

.ticket-tier {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  min-height: 128px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.08);
}

.ticket-tier.active {
  border-color: rgba(139, 90, 54, 0.64);
  background: #fff;
  color: var(--ink);
  box-shadow: 0 18px 52px rgba(112, 69, 41, 0.18);
}

.ticket-tier.selected {
  outline: 3px solid rgba(139, 90, 54, 0.62);
  outline-offset: 3px;
}

.ticket-tier.sold,
.ticket-tier.muted {
  opacity: 0.68;
}

.ticket-tier h3 {
  margin-top: 8px;
  color: inherit;
  font-size: 1.45rem;
}

.ticket-tier p {
  margin: 8px 0 0;
  color: currentColor;
  opacity: 0.72;
}

.ticket-tier strong {
  justify-self: end;
  color: var(--brown);
  font-size: 1.05rem;
  white-space: nowrap;
}

.ticket-tier.active strong {
  color: var(--black);
  font-size: 1.35rem;
}

.ticket-availability {
  display: inline-flex;
  justify-self: start;
  min-height: 30px;
  align-items: center;
  border-radius: 999px;
  padding: 0 10px;
  background: rgba(255, 255, 255, 0.12);
  color: currentColor;
  font-size: 0.82rem;
  font-weight: 850;
  opacity: 0.78;
}

.ticket-tier.active .ticket-availability,
.section.paper .ticket-tier .ticket-availability {
  background: #eef2ec;
}

.section.paper .ticket-tier {
  border-color: var(--line);
  background: #fff;
  color: var(--ink);
  box-shadow: 0 12px 34px rgba(16, 42, 32, 0.06);
}

.section.paper .ticket-tier.sold,
.section.paper .ticket-tier.muted {
  opacity: 1;
}

.ticket-tier-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.ticket-tier-actions .mini-button {
  width: 100%;
}

.ticket-tier-actions button:disabled {
  background: rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.72);
  cursor: not-allowed;
  opacity: 1;
}

.ticket-tier.active .ticket-tier-actions button:disabled,
.section.paper .ticket-tier .ticket-tier-actions button:disabled {
  background: #eef2ec;
  color: var(--muted);
}

.checkout-panel {
  position: sticky;
  top: 92px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.16);
}

.checkout-panel h3 {
  color: #fff;
  font-size: 1.8rem;
}

.checkout-panel p:not(.eyebrow):not(.form-status) {
  margin: 8px 0 18px;
  color: rgba(255, 255, 255, 0.72);
}

.checkout-panel .field span {
  color: rgba(255, 255, 255, 0.74);
}

.checkout-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 16px;
}

.checkout-total span {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 850;
}

.checkout-total strong {
  color: #fff;
  font-size: 1.45rem;
}

.checkout-panel .button {
  width: 100%;
}

.form-status {
  min-height: 20px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.form-status[data-status="success"] {
  color: #d6f7df;
}

.form-status[data-status="error"] {
  color: #ffd1bd;
}

.payment-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.08);
}

.payment-panel strong,
.payment-panel span {
  display: block;
}

.payment-panel strong {
  color: #fff;
  font-size: 1.15rem;
}

.payment-panel span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.72);
}

.ticket-summary {
  display: grid;
  gap: 7px;
  margin: 18px 0 4px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  padding: 12px;
}

.ticket-summary strong,
.ticket-summary span,
.ticket-summary code {
  display: block;
}

.ticket-summary strong {
  color: var(--green);
}

.ticket-summary span {
  color: var(--muted);
  font-size: 0.9rem;
}

.ticket-summary code {
  width: fit-content;
  max-width: 100%;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--green);
  color: #fff;
  padding: 7px 9px;
  font-size: 0.84rem;
  font-weight: 900;
  text-overflow: ellipsis;
}

.ticket-code-image {
  width: 100%;
  max-width: 320px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 8px;
  box-shadow: none;
}

.ticket-card-label {
  margin: 0 0 8px !important;
  color: var(--brown) !important;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.ticket-page {
  min-height: auto;
  padding-top: 92px;
}

.ticket-page .hero-inner {
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
}

.ticket-page-intro {
  max-width: 760px;
}

.ticket-page .ticket-card {
  width: 100%;
  margin-top: 40px;
}

.ticket-card .ticket-summary {
  margin: 20px 0;
  padding: 18px;
  background: #fff;
}

.ticket-card .ticket-code-image {
  margin-top: 8px;
}

.individual-ticket-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: 12px;
  margin-top: 8px;
}

.individual-ticket {
  display: grid;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 14px;
}

.individual-ticket.used {
  opacity: 0.64;
}

.individual-ticket-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.individual-ticket-head strong {
  font-size: 0.92rem;
}

.individual-ticket-head span {
  margin: 0;
  color: var(--brown);
  font-size: 0.74rem;
  font-weight: 850;
}

.individual-ticket .ticket-code-image {
  max-width: none;
}

.ticket-card-note {
  margin: 0 0 20px !important;
  font-size: 0.9rem;
}

.contact-list.compact .contact-row {
  grid-template-columns: minmax(118px, 0.48fr) minmax(0, 1fr);
}

.mini-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mini-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 11px;
  color: var(--green);
  font-size: 0.84rem;
  font-weight: 850;
}

.mini-button.primary {
  border-color: transparent;
  background: var(--brown);
  color: #fff;
}

.mini-button.danger {
  border-color: rgba(154, 52, 18, 0.24);
  background: #fff7ed;
  color: #9a3412;
}

.mini-button:disabled {
  background: #eef2ec;
  color: var(--muted);
  cursor: not-allowed;
  opacity: 0.72;
}

.team-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  gap: 34px;
  align-items: center;
}

.team-grid img {
  aspect-ratio: 3 / 4;
}

.team-copy {
  max-width: 620px;
}

.team-copy h2 {
  margin-bottom: 22px;
}

.team-copy p {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.08rem;
}

.quote {
  margin-top: 30px;
  border-left: 3px solid var(--brown);
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.45rem;
  line-height: 1.18;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(300px, 0.45fr);
  gap: 28px;
}

.contact-panel {
  padding: 28px;
}

.contact-panel h3 {
  color: var(--green);
  font-size: 2rem;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.contact-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  border-top: 1px solid var(--line);
  padding-top: 12px;
}

.contact-row span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.contact-row strong,
.contact-row a {
  min-width: 0;
  color: var(--green);
  font-weight: 850;
  overflow-wrap: anywhere;
}

.contact-row a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.wrap.narrow {
  max-width: 860px;
}

.legal-page {
  padding-top: 120px;
}

.legal-page h1 {
  color: var(--green);
  font-family: var(--serif);
  font-size: clamp(42px, 7vw, 82px);
  line-height: 0.95;
  margin: 0 0 20px;
}

.legal-page .lead {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
  margin: 0 0 34px;
}

.legal-copy {
  background: var(--white);
  border: 1px solid rgba(27, 66, 51, 0.12);
  border-radius: var(--radius);
  display: grid;
  gap: 18px;
  padding: 28px;
}

.legal-copy h2 {
  color: var(--green);
  font-size: 18px;
  margin: 0 0 8px;
}

.legal-copy p {
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

.legal-copy a {
  color: var(--green);
  font-weight: 800;
}

.footer {
  background: var(--green-2);
  color: rgba(255, 255, 255, 0.78);
  padding: 36px 0;
}

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

.footer strong {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 900;
}

.legal {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.admin-body {
  background: #f3f5f1;
}

.admin-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 76px;
  border-bottom: 1px solid var(--line);
  padding: 0 28px;
  background: var(--green-2);
  color: #fff;
}

.admin-header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

.admin-shell {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  padding: 36px 0 72px;
}

.admin-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.42fr);
  gap: 24px;
  align-items: center;
  margin-bottom: 28px;
}

.admin-hero h1 {
  color: var(--green);
  font-size: clamp(2.4rem, 5vw, 5.4rem);
}

.admin-hero p:not(.eyebrow) {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.08rem;
}

.admin-token-panel,
.admin-sidebar,
.admin-form {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 50px rgba(16, 42, 32, 0.08);
}

.admin-token-panel {
  padding: 22px;
}

.admin-connection-state {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.admin-connection-state h2 {
  color: var(--green);
  font-size: 1.45rem;
}

.admin-connection-state p {
  color: var(--muted);
  font-size: 0.94rem;
}

.admin-mode-pill {
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--sky);
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

body[data-admin-access="live"] .admin-mode-pill {
  background: rgba(139, 90, 54, 0.14);
  color: var(--brown-2);
}

.admin-login {
  display: grid;
  gap: 2px;
}

.admin-login input:disabled,
.admin-login button:disabled {
  opacity: 0.58;
}

.admin-login .button {
  width: fit-content;
}

.admin-session {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border: 1px solid rgba(27, 66, 51, 0.16);
  border-radius: 14px;
  background: #f6f8f4;
  padding: 12px;
}

.admin-session span,
.admin-session strong {
  display: block;
}

.admin-session span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-session strong {
  color: var(--green);
  font-size: 0.95rem;
  overflow-wrap: anywhere;
}

.admin-session.compact {
  gap: 10px;
  border-color: rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  padding: 6px 8px 6px 12px;
}

.admin-session.compact span {
  max-width: 220px;
  overflow: hidden;
  color: #fff;
  font-size: 0.82rem;
  text-overflow: ellipsis;
  text-transform: none;
  white-space: nowrap;
}

.admin-session.compact .mini-button {
  border-color: transparent;
  border-radius: 999px;
  background: #fff;
  color: var(--green);
}

.admin-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 18px 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-divider::before,
.admin-divider::after {
  flex: 1;
  height: 1px;
  background: var(--line);
  content: "";
}

.compact-field input {
  font-size: 0.86rem;
}

.admin-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.32fr) minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.admin-sidebar,
.admin-form {
  padding: 22px;
}

.admin-panel-head,
.ticket-editor-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.admin-panel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.admin-panel-head h2,
.ticket-editor-head h2 {
  color: var(--green);
  font-size: 2rem;
}

.admin-list {
  display: grid;
  gap: 10px;
}

.admin-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 18px;
}

.admin-tab {
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--green);
  padding: 0 10px;
  font-size: 0.83rem;
  font-weight: 850;
  cursor: pointer;
}

.admin-tab.active {
  border-color: transparent;
  background: var(--green);
  color: #fff;
}

.admin-view {
  display: none;
}

.admin-view.active {
  display: block;
}

.admin-event-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 20px;
}

.admin-summary-card {
  display: grid;
  gap: 4px;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #f7f8f4;
  padding: 12px;
}

.admin-summary-card span {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-summary-card strong {
  min-width: 0;
  overflow-wrap: anywhere;
  color: var(--green);
  font-size: 1.05rem;
}

.admin-summary-card small {
  min-width: 0;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 750;
  overflow-wrap: anywhere;
}

.admin-overview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 22px;
}

.admin-overview-followups {
  display: grid;
  gap: 12px;
}

.admin-followup-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  padding: 16px;
}

.admin-followup-card span {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-followup-card strong {
  display: block;
  min-width: 0;
  color: var(--green);
  overflow-wrap: anywhere;
}

.admin-followup-card p {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.admin-followup-card .admin-followup-action {
  margin-top: 8px;
  color: var(--ink);
  font-weight: 750;
}

.admin-list-item {
  display: grid;
  gap: 4px;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  color: var(--ink);
  padding: 14px;
  text-align: left;
}

.admin-list-item.active {
  border-color: rgba(139, 90, 54, 0.7);
  box-shadow: 0 10px 26px rgba(112, 69, 41, 0.12);
}

.admin-list-select {
  display: grid;
  gap: 4px;
  width: 100%;
  border: 0;
  background: transparent;
  color: inherit;
  padding: 0;
  text-align: left;
  cursor: pointer;
}

.admin-list-item span {
  color: var(--muted);
  font-size: 0.86rem;
}

.admin-preview-link {
  justify-self: start;
  margin-top: 6px;
  color: var(--brown);
  font-size: 0.82rem;
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.admin-data-list {
  display: grid;
  gap: 12px;
}

.admin-search {
  margin-bottom: 14px;
}

.admin-data-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.5fr);
  gap: 14px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  padding: 16px;
}

.admin-data-card strong,
.admin-data-card span,
.admin-data-card code {
  display: block;
  min-width: 0;
}

.admin-data-card strong {
  color: var(--green);
  font-size: 1.05rem;
}

.admin-record-title {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.admin-order-status {
  display: inline-flex !important;
  width: fit-content;
  align-items: center;
  min-height: 24px;
  border: 1px solid rgba(21, 57, 45, 0.18);
  border-radius: 999px;
  background: #edf4ef;
  color: var(--green) !important;
  padding: 2px 9px;
  font-size: 0.72rem !important;
  font-weight: 900;
  line-height: 1;
}

.admin-order-card[data-order-status="refunded"] {
  border-color: rgba(180, 35, 24, 0.38);
  background: #fffafa;
  box-shadow: inset 4px 0 #b42318;
}

.admin-order-card[data-order-status="refunded"] .admin-order-status {
  border-color: rgba(180, 35, 24, 0.3);
  background: #fee4e2;
  color: #b42318 !important;
}

.admin-order-card[data-order-status="paid_needs_review"] .admin-order-status {
  border-color: rgba(139, 90, 54, 0.3);
  background: #fff2e8;
  color: #9a4b16 !important;
}

.admin-order-card[data-order-status="checked_in"] .admin-order-status {
  border-color: rgba(32, 101, 74, 0.25);
  background: #e8f5ee;
  color: #175c42 !important;
}

.admin-demo-badge {
  display: inline-flex !important;
  width: fit-content;
  border: 1px solid rgba(139, 90, 54, 0.28);
  border-radius: 999px;
  background: rgba(139, 90, 54, 0.08);
  color: var(--brown) !important;
  padding: 3px 7px;
  font-size: 0.68rem !important;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.admin-ticket-codes {
  margin-top: 8px;
}

.admin-ticket-codes summary {
  width: fit-content;
  color: var(--brown);
  font-size: 0.82rem;
  font-weight: 850;
  cursor: pointer;
}

.admin-ticket-codes ol {
  display: grid;
  gap: 6px;
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}

.admin-ticket-codes li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
}

.admin-ticket-codes li span {
  white-space: nowrap;
  font-size: 0.76rem;
}

.admin-data-card span {
  color: var(--muted);
  font-size: 0.88rem;
}

.admin-data-card code {
  width: fit-content;
  max-width: 100%;
  overflow: hidden;
  border-radius: var(--radius);
  background: #f3f5f1;
  color: var(--green);
  padding: 6px 8px;
  font-size: 0.78rem;
  font-weight: 850;
  text-overflow: ellipsis;
}

.admin-card-actions {
  display: flex;
  grid-column: 1 / -1;
  flex-wrap: wrap;
  gap: 8px;
}

.modal-open {
  overflow: hidden;
}

.admin-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  overflow-y: auto;
  padding: 24px;
  background: rgba(7, 17, 13, 0.72);
  backdrop-filter: blur(8px);
}

.admin-modal[hidden] {
  display: none;
}

.admin-modal-panel {
  display: grid;
  gap: 18px;
  width: min(520px, 100%);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: #fff;
  padding: 24px;
  box-shadow: 0 28px 90px rgba(7, 17, 13, 0.32);
}

.admin-modal-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.admin-modal-head .eyebrow {
  margin-bottom: 10px;
  color: var(--brown);
}

.admin-modal-head h2 {
  color: var(--green);
  font-size: 1.8rem;
}

.admin-modal-head .icon-action {
  flex: 0 0 auto;
  font-size: 1.25rem;
}

.admin-modal-summary {
  margin: 0;
  color: var(--ink);
  font-weight: 800;
}

.admin-modal-warning {
  margin: 0;
  border-left: 3px solid #b42318;
  background: #fff5f3;
  color: #7a271a;
  padding: 12px 14px;
  font-size: 0.92rem;
}

.admin-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.admin-card-note {
  grid-column: 1 / -1;
  margin: 0;
  border-top: 1px solid var(--line);
  padding-top: 10px;
  color: var(--muted);
  font-size: 0.92rem;
}

.admin-action-required {
  display: grid;
  grid-column: 1 / -1;
  gap: 4px;
  border: 1px solid rgba(139, 90, 54, 0.32);
  border-radius: 12px;
  background: #fff7ed;
  padding: 11px 12px;
}

.admin-action-required strong {
  color: #9a3412;
  font-size: 0.86rem;
}

.admin-action-required span {
  color: #7c2d12;
  font-size: 0.86rem;
  line-height: 1.4;
}

.admin-status-message {
  display: grid;
  grid-column: 1 / -1;
  gap: 6px;
  min-width: 0;
}

.admin-status-message span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.admin-status-message textarea {
  width: 100%;
  min-height: 64px;
  resize: vertical;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfbfa;
  color: var(--ink);
  padding: 10px 12px;
  font: inherit;
  font-size: 0.92rem;
  line-height: 1.45;
}

.admin-status-message textarea:focus {
  border-color: var(--green);
  outline: 2px solid rgba(27, 66, 51, 0.12);
}

.admin-empty {
  margin: 0;
  border: 1px dashed var(--line);
  border-radius: 18px;
  padding: 18px;
  color: var(--muted);
}

.checkin-box {
  display: grid;
  gap: 12px;
  max-width: 520px;
}

.scanner-panel {
  display: grid;
  gap: 12px;
  max-width: 620px;
  margin-top: 24px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.admin-panel-head.compact {
  margin-bottom: 0;
}

.admin-panel-head h3 {
  color: var(--green);
  font-size: 1.4rem;
}

.scanner-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #07110d;
  object-fit: cover;
}

[data-checkin-status][data-status="success"] {
  color: var(--green);
  font-weight: 850;
}

[data-checkin-status][data-status="error"] {
  color: #9a3412;
  font-weight: 850;
}

[data-scanner-status][data-status="success"] {
  color: var(--green);
  font-weight: 850;
}

[data-scanner-status][data-status="error"] {
  color: #9a3412;
  font-weight: 850;
}

[aria-busy="true"] {
  cursor: wait;
  opacity: 0.78;
  pointer-events: none;
}

:where(
  button,
  a.button,
  a.mini-button,
  a.nav-cta,
  .admin-tab,
  .admin-list-select,
  .icon-action,
  .page-return a
)[aria-busy="true"]::after {
  width: 0.9em;
  height: 0.9em;
  flex: 0 0 auto;
  margin-left: 8px;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  content: "";
  animation: button-progress-spin 650ms linear infinite;
}

@keyframes button-progress-spin {
  to {
    transform: rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  :where(
    button,
    a.button,
    a.mini-button,
    a.nav-cta,
    .admin-tab,
    .admin-list-select,
    .icon-action,
    .page-return a
  ) {
    transition-duration: 0.01ms;
  }

  :where(
    button,
    a.button,
    a.mini-button,
    a.nav-cta,
    .admin-tab,
    .admin-list-select,
    .icon-action,
    .page-return a
  )[aria-busy="true"]::after {
    animation-duration: 1.2s;
  }
}

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

.admin-grid .wide,
.ticket-tier-editor .wide {
  grid-column: 1 / -1;
}

.admin-image-picker {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(180px, 0.45fr);
  gap: 12px;
  align-items: start;
}

.admin-image-controls,
.admin-image-picker label {
  display: grid;
  gap: 8px;
}

.admin-field-label {
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-image-dropzone {
  display: grid;
  justify-items: start;
  gap: 6px;
  min-height: 132px;
  border: 1px dashed rgba(27, 66, 51, 0.36);
  border-radius: 12px;
  background: #f7f9f6;
  padding: 16px;
  cursor: pointer;
}

.admin-image-dropzone:hover,
.admin-image-dropzone:focus-visible,
.admin-image-dropzone.dragging {
  border-color: var(--brown);
  background: #fff7ed;
  outline: none;
}

.admin-image-dropzone strong {
  color: var(--green);
}

.admin-image-dropzone span {
  color: var(--muted);
  font-size: 0.82rem;
}

.admin-image-dropzone .mini-button {
  margin-top: 4px;
}

.admin-image-path {
  margin-top: 4px;
}

.admin-image-preview {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.admin-image-preview img {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #f3f5f1;
  object-fit: cover;
}

.admin-image-preview span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.admin-image-preview .mini-button {
  justify-self: start;
}

.event-crop-panel {
  display: grid;
  grid-column: 1 / -1;
  gap: 18px;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #f7f9f6;
  padding: 18px;
}

.event-crop-panel[hidden] {
  display: none;
}

.event-crop-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.event-crop-head .eyebrow {
  margin-bottom: 8px;
  color: var(--brown);
}

.event-crop-head h2 {
  color: var(--green);
  font-size: 1.55rem;
}

.event-crop-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(190px, 0.3fr);
  gap: 20px;
}

.event-crop-editor {
  display: grid;
  gap: 12px;
  min-width: 0;
}

.event-crop-stage {
  height: clamp(280px, 34vw, 430px);
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: #07110d;
}

.event-crop-stage cropper-canvas {
  width: 100%;
  height: 100%;
}

.event-crop-controls {
  display: flex;
  align-items: end;
  gap: 12px;
}

.event-crop-controls label {
  display: grid;
  flex: 1;
  gap: 7px;
}

.event-crop-controls span,
.event-crop-previews span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
}

.event-crop-controls input[type="range"] {
  width: 100%;
  accent-color: var(--brown);
}

.event-crop-previews {
  display: grid;
  align-content: start;
  gap: 18px;
}

.event-crop-previews > div {
  display: grid;
  gap: 7px;
}

.event-crop-preview {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f3f5f1;
}

.event-crop-preview.desktop {
  aspect-ratio: 16 / 9;
}

.event-crop-preview.mobile {
  width: min(150px, 100%);
  aspect-ratio: 4 / 5;
}

.event-crop-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-crop-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.ticket-tier-list {
  display: grid;
  gap: 12px;
}

.ticket-tier-editor {
  display: grid;
  grid-template-columns: minmax(90px, 0.6fr) minmax(150px, 1fr) minmax(110px, 0.7fr) minmax(110px, 0.7fr) minmax(110px, 0.7fr) minmax(130px, 0.8fr);
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  padding: 14px;
}

.ticket-tier-editor label {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.ticket-tier-editor label span {
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.ticket-tier-editor input,
.ticket-tier-editor select {
  width: 100%;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  padding: 0 10px;
}

.ticket-tier-editor .icon-action {
  justify-self: start;
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--green);
  padding: 0 16px;
  font-weight: 850;
  cursor: pointer;
}

.field textarea {
  width: 100%;
  min-height: 110px;
  resize: vertical;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  color: var(--ink);
  padding: 12px;
}

.checkbox-field {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 26px;
}

.checkbox-field input {
  width: 18px;
  height: 18px;
}

.ticket-editor-head {
  margin-top: 32px;
}

.ticket-tier-list {
  display: grid;
  gap: 14px;
}

.ticket-tier-editor {
  display: grid;
  grid-template-columns: 0.7fr 1fr 0.6fr 0.6fr 0.6fr 0.7fr auto;
  gap: 10px;
  align-items: end;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 14px;
  background: #fff;
}

.icon-action {
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--green);
  padding: 0 14px;
  font-weight: 850;
  cursor: pointer;
}

.empty-state {
  max-width: 720px;
  padding-top: 120px;
  padding-bottom: 120px;
}

.empty-state h1 {
  color: var(--green);
}

[data-admin-status][data-status="success"] {
  color: var(--green);
  font-weight: 850;
}

[data-admin-status][data-status="error"] {
  color: #9a3412;
  font-weight: 850;
}

@media (max-width: 940px) {
  .nav {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 12px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: flex;
    max-height: 0;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(7, 17, 13, 0.98);
    opacity: 0;
    padding: 0 max(20px, calc((100vw - 1180px) / 2));
    pointer-events: none;
    transform: translateY(-8px);
    visibility: hidden;
    transition:
      max-height 220ms ease,
      opacity 160ms ease,
      padding 220ms ease,
      transform 160ms ease;
  }

  .nav-links a {
    min-height: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 13px 0;
  }

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

  .nav-open .nav-links {
    max-height: calc(100vh - 76px);
    overflow-y: auto;
    opacity: 1;
    padding-top: 12px;
    padding-bottom: 16px;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }

  .hero,
  .page-hero {
    min-height: auto;
  }

  .hero-inner,
  .page-hero .hero-inner,
  .section-head,
  .split,
  .events-layout,
  .ticket-layout,
  .ticket-feature,
  .ticket-purchase-layout,
  .team-grid,
  .contact-grid,
  .duo,
  .admin-hero,
  .admin-layout {
    grid-template-columns: 1fr;
  }

  .reservation-card,
  .info-card {
    max-width: 560px;
  }

  .restaurant-intro .single-image,
  .restaurant-intro .single-image img:first-child {
    min-height: 420px;
  }

  .reservation-hero .reservation-card {
    justify-self: start;
  }

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

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

  .feature {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .feature:last-child {
    border-bottom: 0;
  }

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

  .wide-ticket-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .ticket-tier-editor {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-event-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .admin-image-picker {
    grid-template-columns: 1fr;
  }

  .photo-essay {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto repeat(2, 220px);
  }

  .photo-essay figure.anchor {
    grid-column: 1 / -1;
    grid-row: auto;
    aspect-ratio: 16 / 8;
  }

  .photo-essay figure.portrait {
    grid-row: span 2;
  }

  .menu-layout {
    columns: 1;
  }

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

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

  .event-crop-stage {
    height: clamp(260px, 58vw, 380px);
  }

  .event-crop-previews {
    grid-template-columns: minmax(0, 1fr) minmax(110px, 0.45fr);
  }

  .story-card.large,
  .gallery figure.wide {
    grid-column: span 2;
  }

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

  .ticket-media {
    min-height: 420px;
  }
}

@media (max-width: 640px) {
  body {
    overflow-x: hidden;
  }

  .nav {
    width: min(100% - 28px, 1180px);
    min-height: 68px;
    justify-content: flex-start;
  }

  .brand strong {
    max-width: 190px;
    overflow: hidden;
    font-size: 0.92rem;
    text-overflow: ellipsis;
  }

  .brand span {
    display: none;
  }

  .nav-cta {
    position: static;
    max-width: 132px;
    overflow: hidden;
    min-height: 40px;
    padding: 0 12px;
    font-size: 0.86rem;
    text-overflow: ellipsis;
  }

  .hero,
  .page-hero {
    padding: 98px 0 38px;
  }

  .tickets-hero::before {
    background-position: center 14%;
  }

  .reservation-hero {
    padding: 92px 0 34px;
  }

  .reservation-hero .hero-inner {
    gap: 32px;
  }

  .reservation-hero .reservation-card {
    width: 100%;
    min-width: 0;
    max-width: 520px;
    justify-self: center;
    margin-inline: auto;
    padding: 20px;
  }

  .reservation-card h2 {
    max-width: 100%;
    font-size: 1.45rem;
    line-height: 1.08;
    white-space: nowrap;
  }

  .ticket-page {
    padding-top: 82px;
  }

  .hero-inner,
  .wrap {
    width: min(100% - 28px, 1180px);
  }

  h1,
  .page-hero h1 {
    max-width: 100%;
    font-size: clamp(2.3rem, 10vw, 2.85rem);
    line-height: 1.04;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .button-row {
    display: grid;
    grid-template-columns: 1fr;
    width: min(100%, 290px);
  }

  .button-row .button {
    width: 100%;
    min-height: 44px;
    padding: 0 14px;
    font-size: 0.93rem;
  }

  .hero-facts {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 64px 0;
  }

  .image-pair {
    grid-template-columns: 1fr;
  }

  .restaurant-intro .single-image,
  .restaurant-intro .single-image img:first-child {
    min-height: 320px;
  }

  .story-grid,
  .gallery,
  .mosaic,
  .wide-ticket-stack,
  .event-showcase {
    grid-template-columns: 1fr;
  }

  .story-card.large,
  .gallery figure.wide,
  .mosaic img.wide {
    grid-column: auto;
  }

  .story-card,
  .story-card.large {
    min-height: 310px;
  }

  .gallery img,
  .gallery figure.wide img {
    height: 100%;
  }

  .gallery figure,
  .gallery figure.wide {
    aspect-ratio: 4 / 3;
  }

  .photo-essay {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .photo-essay figure.anchor,
  .photo-essay figure.portrait {
    grid-column: auto;
    grid-row: auto;
  }

  .photo-essay figure.anchor,
  .photo-essay figure.detail {
    aspect-ratio: 4 / 3;
  }

  .photo-essay figure.portrait {
    aspect-ratio: 4 / 5;
  }

  .menu-section {
    padding: 50px 0 72px;
  }

  .menu-index {
    top: 68px;
    flex-wrap: nowrap;
    gap: 18px;
    overflow-x: auto;
    padding: 12px 0;
    scrollbar-width: none;
  }

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

  .menu-index a {
    flex: 0 0 auto;
  }

  .menu-layout {
    margin-top: 42px;
  }

  .menu-category {
    scroll-margin-top: 170px;
    padding-bottom: 34px;
  }

  .menu-category h2 {
    font-size: 1.9rem;
  }

  .menu-item {
    gap: 12px;
  }

  .event-list-controls {
    align-items: stretch;
    flex-direction: column;
  }

  .event-list-controls .button {
    width: 100%;
  }

  .menu-item h3 {
    font-size: 1rem;
  }

  .menu-footer-note .button-row {
    width: 100%;
  }

  .mosaic {
    grid-auto-rows: 240px;
  }

  .mosaic img.tall {
    grid-row: auto;
  }

  .calendar {
    padding: 16px;
  }

  .ticket-feature {
    border-radius: 20px;
  }

  .checkout-panel {
    position: static;
  }

  .ticket-media {
    min-height: 320px;
  }

  .ticket-copy {
    padding: 24px;
  }

  .ticket-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .ticket-actions .button {
    width: 100%;
  }

  .ticket-tier {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .ticket-tier strong {
    justify-self: start;
  }

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

  .event-tile img {
    min-height: 220px;
  }

  .event-tile > div {
    padding: 22px;
  }

  .payment-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .calendar-grid {
    gap: 5px;
  }

  .calendar-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .day-label,
  .day {
    min-height: 40px;
    padding: 7px;
    font-size: 0.82rem;
  }

  .day small {
    display: none;
  }

  .day.event::after,
  .day.blocked::after {
    top: auto;
    right: 6px;
    bottom: 6px;
    width: 5px;
    height: 5px;
  }

  .contact-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .contact-list.compact .contact-row {
    grid-template-columns: 1fr;
  }

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

  .admin-shell {
    width: min(100% - 28px, 1240px);
  }

  .admin-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    min-height: auto;
    padding: 0 14px;
  }

  .admin-header .brand > span {
    display: block;
  }

  .admin-header .brand > span > span {
    display: none;
  }

  .admin-header-actions {
    width: 100%;
    justify-content: space-between;
  }

  .admin-header .nav-cta {
    position: static;
    top: auto;
    right: auto;
    max-width: none;
    min-height: 38px;
  }

  .admin-session.compact {
    min-width: 0;
    flex: 1;
    justify-content: space-between;
  }

  .admin-session.compact span {
    max-width: calc(100vw - 210px);
  }

  .admin-grid,
  .admin-data-card,
  .admin-followup-card,
  .ticket-tier-editor {
    grid-template-columns: 1fr;
  }

  .admin-overview-grid {
    grid-template-columns: 1fr;
  }

  .admin-panel-head,
  .ticket-editor-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .admin-panel-actions {
    justify-content: flex-start;
    width: 100%;
  }

  .admin-panel-actions .mini-button,
  .admin-panel-actions .button {
    flex: 1 1 130px;
  }

  .admin-modal {
    padding: 12px;
  }

  .event-crop-stage {
    height: clamp(220px, 64vw, 300px);
  }

  .event-crop-controls {
    align-items: stretch;
    flex-direction: column;
  }

  .event-crop-previews {
    grid-template-columns: minmax(0, 1fr) minmax(96px, 0.42fr);
    gap: 12px;
  }

  .event-crop-actions .mini-button {
    flex: 1;
  }
}

@media (max-width: 350px) {
  .reservation-hero .reservation-card {
    padding: 16px;
  }

  .reservation-card h2 {
    font-size: 1.3rem;
  }
}
