:root {
  --ink: #24110a;
  --ink-soft: #5d3926;
  --paper: #fff7ea;
  --cream: #ffe8c1;
  --amber: #f6a12a;
  --orange: #d96a1c;
  --copper: #8d3f16;
  --espresso: #190c08;
  --sage: #677447;
  --line: rgba(97, 48, 19, 0.18);
  --shadow: 0 24px 80px rgba(57, 22, 6, 0.18);
  --radius-lg: 32px;
  --radius-md: 22px;
  --max: 1180px;
  --font-display: "Fraunces", "Cormorant Garamond", Georgia, serif;
  --font-body: "Nunito", "Aptos", "Trebuchet MS", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-body);
  background:
    radial-gradient(circle at 12% 12%, rgba(255, 193, 101, 0.45), transparent 28rem),
    radial-gradient(circle at 88% 4%, rgba(217, 106, 28, 0.2), transparent 24rem),
    linear-gradient(135deg, #fff7ea 0%, #ffe7c1 46%, #f8c879 100%);
  line-height: 1.65;
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(30deg, rgba(78, 34, 12, 0.04) 12%, transparent 12.5%, transparent 87%, rgba(78, 34, 12, 0.04) 87.5%, rgba(78, 34, 12, 0.04)),
    linear-gradient(150deg, rgba(78, 34, 12, 0.04) 12%, transparent 12.5%, transparent 87%, rgba(78, 34, 12, 0.04) 87.5%, rgba(78, 34, 12, 0.04));
  background-size: 42px 74px;
  opacity: 0.52;
}

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

img,
svg,
iframe {
  max-width: 100%;
}

button,
input,
textarea {
  font: inherit;
}

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 20;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: var(--espresso);
  color: var(--cream);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(18px);
  background: rgba(255, 247, 234, 0.88);
  border-bottom: 1px solid var(--line);
}

.topbar {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.topbar__links {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.topbar a {
  font-weight: 800;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 0 0.75rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 900;
}

.brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  border-radius: 16px;
  filter: drop-shadow(0 12px 26px rgba(100, 38, 8, 0.2));
}

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

.brand__name {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3vw, 2rem);
  letter-spacing: 0.03em;
}

.brand__tagline {
  color: var(--copper);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.nav__links a {
  padding: 0.65rem 0.85rem;
  border-radius: 999px;
  font-weight: 850;
  color: var(--ink-soft);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav__links a:hover,
.nav__links a[aria-current="page"] {
  background: var(--espresso);
  color: #ffe9c8;
  transform: translateY(-1px);
}

.nav__toggle {
  display: none;
  border: 0;
  border-radius: 999px;
  padding: 0.75rem 1rem;
  background: var(--espresso);
  color: var(--cream);
  cursor: pointer;
}

.hero,
.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(3.6rem, 8vw, 7rem) 0;
}

.page-hero {
  padding: clamp(2.8rem, 6vw, 5.2rem) 0 clamp(2.4rem, 5vw, 4.4rem);
}

.hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  right: -12rem;
  top: 4rem;
  width: 34rem;
  height: 34rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 207, 123, 0.85), rgba(217, 106, 28, 0.12) 58%, transparent 70%);
  z-index: -1;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
}

.eyebrow {
  display: inline-flex;
  gap: 0.45rem;
  align-items: center;
  width: fit-content;
  margin: 0 0 1rem;
  padding: 0.45rem 0.8rem;
  border: 1px solid rgba(141, 63, 22, 0.22);
  border-radius: 999px;
  background: rgba(255, 248, 235, 0.72);
  color: var(--copper);
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  line-height: 1.03;
  margin: 0 0 1rem;
}

h1 {
  font-size: clamp(3.2rem, 8.2vw, 7.5rem);
  letter-spacing: -0.065em;
}

.page-hero h1 {
  font-size: clamp(2.7rem, 7vw, 5.4rem);
  max-width: 850px;
}

h2 {
  font-size: clamp(2.1rem, 5vw, 4.2rem);
  letter-spacing: -0.045em;
}

h3 {
  font-size: clamp(1.35rem, 2.6vw, 2rem);
  letter-spacing: -0.02em;
}

.lead {
  max-width: 720px;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  color: var(--ink-soft);
  margin-top: 0;
}

.hero__actions,
.section__actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 1.6rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.78rem 1.2rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 950;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn--primary {
  background: linear-gradient(135deg, var(--espresso), #6b2b0f);
  color: #fff1d4;
  box-shadow: 0 18px 38px rgba(90, 34, 7, 0.24);
}

.btn--ghost {
  background: rgba(255, 247, 234, 0.7);
  border-color: var(--line);
  color: var(--ink);
}

.hero-card {
  position: relative;
  min-height: 520px;
  border-radius: 44px;
  overflow: hidden;
  padding: clamp(1.4rem, 3vw, 2.2rem);
  background: #190c08;
  color: #fff2d9;
  box-shadow: var(--shadow);
  isolation: isolate;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 1.2rem;
  border: 1px solid rgba(255, 239, 204, 0.28);
  border-radius: 32px;
  z-index: -1;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(160deg, rgba(25, 12, 8, 0.3), rgba(91, 35, 8, 0.72));
}

.hero-card > img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.05);
}

.hero-card__note {
  position: absolute;
  left: 2rem;
  right: 2rem;
  bottom: 2rem;
  padding: 1.35rem;
  border-radius: 24px;
  background: rgba(255, 245, 224, 0.14);
  backdrop-filter: blur(16px);
}

.hero-card__note strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
}

.section {
  padding: clamp(2.8rem, 5.8vw, 5.4rem) 0;
}

.section--dark {
  background: linear-gradient(140deg, #190c08, #4b1f0b 58%, #8f3c12);
  color: #fff0d2;
}

.section--dark .lead,
.section--dark p,
.section--dark .card p {
  color: rgba(255, 240, 210, 0.78);
}

.section--dark .card {
  background: rgba(255, 247, 234, 0.1);
  border-color: rgba(255, 235, 200, 0.2);
  box-shadow: none;
}

.section--dark .card h3 {
  color: #fff0d2;
}

.section--dark .quote {
  background: rgba(255, 247, 234, 0.86);
}

.section--dark .quote p,
.section--dark .quote blockquote {
  color: var(--ink);
}

.section__head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 2rem;
  margin-bottom: 1.55rem;
}

.section__head .lead {
  margin: 0;
}

.grid-3,
.grid-2,
.menu-grid,
.gallery-grid,
.event-grid {
  display: grid;
  gap: 1.1rem;
}

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

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

.card {
  padding: clamp(1.2rem, 3vw, 1.8rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 248, 235, 0.78);
  box-shadow: 0 14px 38px rgba(88, 38, 12, 0.08);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 54px rgba(88, 38, 12, 0.16);
  border-color: rgba(217, 106, 28, 0.38);
}

.card p {
  margin: 0;
  color: var(--ink-soft);
}

.card__icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 1.1rem;
  border-radius: 18px;
  background: linear-gradient(135deg, #ffe6b6, #f49a24);
  font-weight: 950;
  color: var(--espresso);
}

.feature-band {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.feature-band__item {
  padding: 1.2rem;
  border-radius: 22px;
  background: rgba(255, 247, 234, 0.14);
  border: 1px solid rgba(255, 235, 200, 0.24);
}

.feature-band__item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  line-height: 1;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 1.05fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.image-panel {
  min-height: 460px;
  border-radius: 38px;
  background: url("../images/LeBistroBar1.png") center/cover;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.image-panel::after {
  content: "Le Bistro";
  position: absolute;
  right: 1.4rem;
  bottom: 1.2rem;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: rgba(25, 12, 8, 0.72);
  color: #ffe8c1;
  font-family: var(--font-display);
  font-size: 1.4rem;
}

.quote {
  padding: clamp(1.4rem, 3vw, 2.3rem);
  border-radius: 30px;
  background: rgba(255, 247, 234, 0.82);
  border-left: 8px solid var(--orange);
  box-shadow: var(--shadow);
}

.quote blockquote {
  margin: 0 0 0.9rem;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  line-height: 1.16;
}

.review-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 1.22fr);
  gap: clamp(1.4rem, 4vw, 3rem);
  align-items: stretch;
}

.review-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.review-score {
  display: block;
  margin: 1rem 0 0.2rem;
  font-family: var(--font-display);
  font-size: clamp(4rem, 9vw, 7rem);
  line-height: 0.9;
  letter-spacing: -0.08em;
  color: var(--copper);
}

.review-map {
  min-height: 460px;
}

.hours-list,
.clean-list {
  display: grid;
  gap: 0.55rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hours-list li,
.clean-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px dashed rgba(95, 45, 16, 0.22);
}

.filters {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  margin: 0.9rem 0 1.45rem;
}

.filter-btn {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 247, 234, 0.8);
  color: var(--ink-soft);
  padding: 0.72rem 1rem;
  font-weight: 950;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.filter-btn:hover,
.filter-btn.is-active {
  transform: translateY(-2px);
  background: var(--espresso);
  color: #ffe9c8;
}

.menu-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.menu-card {
  display: grid;
  gap: 0.7rem;
  min-height: 180px;
}

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

.menu-grid--sections {
  display: block;
  column-count: 2;
  column-gap: 1.4rem;
}

.menu-section {
  display: inline-block;
  width: 100%;
  min-height: auto;
  margin: 0 0 1.05rem;
  break-inside: avoid;
  page-break-inside: avoid;
}

.menu-section h2 {
  margin-bottom: 0.45rem;
}

.menu-list {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 0.4rem 0 0;
  list-style: none;
}

.menu-list li {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.82rem 0;
  border-bottom: 1px dashed rgba(95, 45, 16, 0.22);
}

.menu-list li:last-child {
  border-bottom: 0;
}

.menu-list strong {
  display: block;
  line-height: 1.2;
}

.menu-list small {
  display: block;
  margin-top: 0.25rem;
  color: var(--ink-soft);
  line-height: 1.35;
}

.menu-list .price {
  margin-top: -0.15rem;
}

.menu-card__top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: start;
}

.menu-card__top strong {
  font-family: var(--font-display);
  font-size: 1.6rem;
  line-height: 1.1;
}

.price {
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: #ffe1aa;
  color: var(--copper);
  font-weight: 950;
  white-space: nowrap;
}

.badge {
  width: fit-content;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(217, 106, 28, 0.12);
  color: var(--copper);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.event-card {
  display: grid;
  gap: 1rem;
}

.event-date {
  display: inline-grid;
  place-items: center;
  width: 86px;
  height: 86px;
  border-radius: 26px;
  background: linear-gradient(135deg, var(--espresso), var(--copper));
  color: #ffe8c1;
  line-height: 1;
  text-align: center;
}

.event-date strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
}

.event-date span {
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.12em;
}

.blog-hero::after {
  background: radial-gradient(circle, rgba(255, 210, 138, 0.9), rgba(126, 49, 12, 0.18) 58%, transparent 70%);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem;
  align-items: start;
}

.blog-card {
  overflow: hidden;
  padding: 0;
}

.blog-card--featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
}

.blog-card__media {
  min-height: 260px;
  background:
    linear-gradient(145deg, rgba(25, 12, 8, 0.26), rgba(88, 32, 8, 0.58)),
    url("../images/LeBistroBar2.png") center/cover;
}

.blog-card:nth-child(2n) .blog-card__media {
  background:
    linear-gradient(145deg, rgba(25, 12, 8, 0.18), rgba(88, 32, 8, 0.5)),
    url("../images/LeBistroCocktail1.png") center/cover;
}

.blog-card:nth-child(3n) .blog-card__media {
  background:
    linear-gradient(145deg, rgba(25, 12, 8, 0.18), rgba(88, 32, 8, 0.5)),
    url("../images/LeBistroDart.png") center/cover;
}

.blog-card__body {
  padding: clamp(1.2rem, 3vw, 2rem);
}

.blog-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.blog-meta time {
  color: var(--ink-soft);
  font-weight: 900;
}

.blog-excerpt {
  color: var(--ink-soft);
}

.blog-details {
  margin-top: 0.9rem;
}

.blog-details summary {
  width: fit-content;
  padding: 0.65rem 0.95rem;
  border-radius: 999px;
  background: var(--espresso);
  color: #ffe8c1;
  cursor: pointer;
  font-weight: 950;
}

.blog-content {
  margin-top: 1rem;
  color: var(--ink-soft);
}

.blog-content a {
  color: var(--copper);
  font-weight: 950;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.blog-content ul,
.blog-content ol {
  padding-left: 1.2rem;
}

.legal-layout {
  max-width: 920px;
  margin-inline: auto;
}

.legal-card {
  display: grid;
  gap: 0.75rem;
}

.legal-card h2 {
  margin-top: 0.8rem;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.legal-card h2:first-child {
  margin-top: 0;
}

.legal-card a {
  color: var(--copper);
  font-weight: 950;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

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

.gallery-item {
  border: 0;
  padding: 0;
  border-radius: 28px;
  overflow: hidden;
  background: var(--espresso);
  cursor: zoom-in;
  box-shadow: var(--shadow);
  position: relative;
}

.gallery-item img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.35s ease, filter 0.35s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
  filter: saturate(1.15) contrast(1.05);
}

.gallery-item span {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  padding: 0.65rem 0.8rem;
  border-radius: 999px;
  background: rgba(25, 12, 8, 0.72);
  color: #ffe8c1;
  font-weight: 950;
  backdrop-filter: blur(12px);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: none;
  place-items: center;
  padding: 1.5rem;
  background: rgba(18, 8, 4, 0.86);
}

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

.lightbox__panel {
  position: relative;
  max-width: min(980px, 94vw);
}

.lightbox__panel img {
  display: block;
  border-radius: 28px;
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.38);
}

.lightbox__caption {
  margin: 0.8rem 0 0;
  color: #ffe8c1;
  font-weight: 900;
  text-align: center;
}

.lightbox__close {
  position: absolute;
  top: -1rem;
  right: -1rem;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: #ffe8c1;
  color: var(--espresso);
  cursor: pointer;
  font-weight: 950;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(1.5rem, 4vw, 3rem);
}

.form {
  display: grid;
  gap: 1rem;
}

.form label,
.form-field {
  display: grid;
  gap: 0.4rem;
  font-weight: 900;
}

.form-label {
  font-weight: 900;
}

.form input,
.form textarea {
  width: 100%;
  border: 1px solid rgba(93, 57, 38, 0.22);
  border-radius: 18px;
  padding: 0.9rem 1rem;
  background: rgba(255, 250, 240, 0.9);
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form input:focus,
.form textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(217, 106, 28, 0.14);
}

.form__status {
  min-height: 1.4rem;
  color: var(--copper);
  font-weight: 900;
}

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

.rich-editor {
  overflow: hidden;
  border: 1px solid rgba(93, 57, 38, 0.22);
  border-radius: 18px;
  background: rgba(255, 250, 240, 0.9);
}

.rich-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  padding: 0.55rem;
  border-bottom: 1px solid rgba(93, 57, 38, 0.14);
  background: rgba(255, 225, 170, 0.45);
}

.rich-toolbar button {
  border: 1px solid rgba(93, 57, 38, 0.18);
  border-radius: 999px;
  padding: 0.42rem 0.72rem;
  background: rgba(255, 247, 234, 0.82);
  color: var(--ink);
  cursor: pointer;
  font-weight: 900;
}

.rich-toolbar button:hover {
  background: var(--espresso);
  color: #ffe8c1;
}

.rich-field {
  min-height: 240px;
  padding: 0.95rem 1rem;
  color: var(--ink);
  outline: none;
}

.rich-field:empty::before {
  content: attr(data-placeholder);
  color: rgba(93, 57, 38, 0.58);
}

.rich-field:focus {
  box-shadow: inset 0 0 0 4px rgba(217, 106, 28, 0.12);
}

.form-row,
.admin-auth-grid,
.admin-layout {
  display: grid;
  gap: 1rem;
}

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

.admin-auth-grid {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  align-items: start;
  gap: clamp(1.2rem, 4vw, 3rem);
}

.admin-layout {
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  align-items: start;
  gap: clamp(1.5rem, 4vw, 3rem);
}

.admin-note {
  background:
    linear-gradient(145deg, rgba(25, 12, 8, 0.94), rgba(105, 43, 12, 0.82)),
    url("../images/LeBistroBar2.png") center/cover;
  color: #ffe8c1;
}

.admin-note p {
  color: rgba(255, 232, 193, 0.82);
}

.admin-actions,
.admin-event-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.admin-event-list {
  display: grid;
  gap: 1rem;
  margin-top: 0.9rem;
}

.admin-event-card {
  display: grid;
  gap: 1rem;
  box-shadow: none;
}

.admin-subhead {
  margin-top: clamp(2rem, 5vw, 4rem);
}

.map-frame {
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--shadow);
  min-height: 420px;
  background: #e9d5b2;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}

.site-footer {
  padding: 2.5rem 0 1.6rem;
  background: #160b07;
  color: #ffe8c1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  gap: 1.5rem;
}

.site-footer a {
  color: #ffcb75;
  font-weight: 900;
}

.footer-bottom {
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 1.6rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 232, 193, 0.18);
  color: rgba(255, 232, 193, 0.68);
  font-size: 0.9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

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

  .nav__toggle {
    display: inline-flex;
  }

  .nav__links {
    position: absolute;
    left: 18px;
    right: 18px;
    top: calc(100% + 0.4rem);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0.9rem;
    border-radius: 24px;
    background: rgba(255, 247, 234, 0.98);
    box-shadow: var(--shadow);
  }

  .nav__links.is-open {
    display: flex;
  }

  .nav__links a {
    width: 100%;
  }

  .hero__grid,
  .split,
  .contact-layout,
  .admin-auth-grid,
  .admin-layout,
  .review-grid,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .hero-card {
    min-height: 400px;
  }

  .grid-3,
  .event-grid,
  .blog-grid,
  .gallery-grid,
  .footer-grid,
  .feature-band {
    grid-template-columns: 1fr 1fr;
  }

  .blog-card--featured {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .container {
    width: min(var(--max), calc(100% - 24px));
  }

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

  h1 {
    font-size: clamp(2.8rem, 16vw, 4.4rem);
  }

  .hero,
  .page-hero {
    padding: 2.6rem 0;
  }

  .section {
    padding: 2.45rem 0;
  }

  .grid-3,
  .event-grid,
  .blog-grid,
  .gallery-grid,
  .footer-grid,
  .feature-band,
  .menu-grid {
    grid-template-columns: 1fr;
  }

  .menu-grid--sections {
    column-count: 1;
  }

  .hero-card {
    min-height: 330px;
    border-radius: 30px;
  }

  .hero-card__note {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
  }

  .menu-card__top,
  .form-row,
  .hours-list li,
  .clean-list li,
  .menu-list li {
    grid-template-columns: 1fr;
    align-items: flex-start;
    flex-direction: column;
    gap: 0.25rem;
  }

  .lightbox__close {
    top: 0.5rem;
    right: 0.5rem;
  }
}
