:root {
  --primary: #4e2e14;
  --secondary: #7a4a22;
  --accent: #b67b3c;
  --background: #f2e6d3;
  --nature: #2e4d34;
  --leaf: #5f7f52;
  --paper: #fffaf3;
  --white: #ffffff;
  --ink: #21180f;
  --muted: #71675d;
  --line: rgba(78, 46, 20, 0.16);
  --soft-line: rgba(46, 77, 52, 0.14);
  --shadow: 0 18px 42px rgba(43, 28, 14, 0.14);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Poppins", "Segoe UI", Arial, sans-serif;
  letter-spacing: 0;
}

body.nav-open,
body.modal-open {
  overflow: hidden;
}

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

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

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

button {
  cursor: pointer;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 18px;
  min-height: 82px;
  padding: 10px clamp(20px, 4%, 48px);
  color: var(--primary);
  background: rgba(255, 250, 243, 0.93);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  display: inline-grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 50%;
  overflow: hidden;
  background: #050403;
  border: 1px solid rgba(182, 123, 60, 0.36);
  box-shadow: 0 8px 20px rgba(78, 46, 20, 0.14);
}

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

.brand-copy {
  display: grid;
  line-height: 1.08;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.brand-copy strong {
  font-size: 1rem;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 6px;
  font-size: 0.92rem;
  font-weight: 700;
}

.site-nav a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 12px;
  border-radius: var(--radius);
  color: var(--muted);
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--primary);
  background: rgba(182, 123, 60, 0.14);
}

.header-action,
.button,
.footer-button,
.category-pill {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 0;
  border-radius: var(--radius);
  font-weight: 800;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.header-action,
.button-accent {
  color: #fff;
  background: var(--accent);
  box-shadow: 0 12px 26px rgba(182, 123, 60, 0.22);
}

.header-action:hover,
.button:hover,
.footer-button:hover,
.category-pill:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: #fff;
  background: var(--secondary);
}

.button-outline,
.button-outline-light {
  border: 1px solid currentColor;
  background: transparent;
}

.button-outline {
  color: var(--primary);
}

.button-outline-light {
  color: #fff;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  color: var(--primary);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.app-main {
  min-height: 68vh;
}

.page {
  padding: 44px 0 72px;
}

.page-home {
  padding: 0;
}

.page[hidden],
[hidden] {
  display: none !important;
}

.page-head {
  max-width: 780px;
  margin-bottom: 28px;
}

.section-kicker,
.eyebrow {
  display: inline-flex;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 18px;
  font-size: 4.4rem;
  line-height: 0.96;
}

h2 {
  margin: 10px 0 14px;
  font-size: 2.85rem;
  line-height: 1.08;
}

h3 {
  margin: 0 0 10px;
  font-size: 1.28rem;
  line-height: 1.25;
}

p {
  color: var(--muted);
  line-height: 1.8;
}

.home-hero {
  position: relative;
  display: grid;
  min-height: 560px;
  align-items: center;
  overflow: hidden;
  color: #fff;
}

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

.home-hero-media {
  object-fit: cover;
}

.home-hero-shade {
  background:
    linear-gradient(90deg, rgba(28, 18, 10, 0.86), rgba(38, 25, 14, 0.52) 50%, rgba(38, 25, 14, 0.1)),
    linear-gradient(0deg, rgba(21, 35, 24, 0.36), rgba(21, 35, 24, 0));
}

.home-hero-content {
  position: relative;
  z-index: 1;
}

.home-copy {
  width: min(680px, 100%);
  padding: 60px 0;
}

.home-copy p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.1rem;
}

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

.home-dashboard {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: -46px;
  position: relative;
  z-index: 3;
}

.home-dashboard article,
.branch-card,
.menu-board article,
.article-grid article,
.contact-panel,
.map-card,
.form-panel,
.seat-panel,
.ticket-panel,
.event-empty,
.admin-card,
.admin-login,
.admin-shell {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 32px rgba(78, 46, 20, 0.08);
}

.home-dashboard article {
  min-height: 154px;
  padding: 22px;
}

.home-dashboard span,
.menu-board span,
.article-grid span,
.contact-panel span,
.event-date,
.admin-card span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.home-dashboard strong {
  display: block;
  margin-bottom: 8px;
  color: var(--primary);
  font-size: 1.3rem;
}

.home-dashboard p {
  margin: 0;
  font-size: 0.9rem;
}

.home-section {
  padding: 72px 0 0;
}

.home-section-muted {
  margin-top: 72px;
  padding: 64px 0;
  background: var(--background);
}

.home-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.home-section-head h2 {
  max-width: 620px;
  margin-bottom: 0;
  font-size: 2.35rem;
}

.home-section-head.compact {
  width: 100%;
  margin-bottom: 18px;
}

.section-link {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--primary);
  background: rgba(255, 250, 243, 0.76);
  font-weight: 800;
  white-space: nowrap;
}

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

.favorite-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 14px 32px rgba(78, 46, 20, 0.08);
}

.favorite-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.favorite-card > div {
  display: grid;
  gap: 8px;
  padding: 18px;
}

.favorite-card span,
.branch-mini-grid span,
.news-stack span,
.visit-strip span {
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.favorite-card p,
.branch-mini-grid p,
.news-stack p,
.visit-strip p {
  margin: 0;
  font-size: 0.9rem;
}

.favorite-card strong {
  color: var(--primary);
  font-size: 1.08rem;
}

.branch-preview {
  display: grid;
}

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

.branch-mini-grid article,
.news-stack article,
.visit-strip article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 26px rgba(78, 46, 20, 0.07);
}

.branch-mini-grid article {
  display: grid;
  min-height: 150px;
  padding: 18px;
}

.branch-mini-grid strong {
  display: block;
  margin: 6px 0;
  color: var(--primary);
  font-size: 1.24rem;
}

.home-split {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.72fr);
  gap: 28px;
  align-items: start;
}

.home-split > div:first-child {
  max-width: 650px;
}

.home-split .button {
  margin-top: 10px;
}

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

.news-stack article {
  padding: 18px;
}

.news-stack h3 {
  margin-bottom: 0;
}

.home-visit {
  padding-bottom: 72px;
}

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

.visit-strip article {
  padding: 20px;
}

.visit-strip span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--nature);
}

.visit-strip strong {
  display: block;
  margin: 12px 0 6px;
  color: var(--primary);
  font-size: 1.15rem;
}

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

.branch-card {
  display: grid;
  gap: 14px;
  min-height: 310px;
  padding: 24px;
}

.branch-area {
  width: max-content;
  padding: 6px 10px;
  border-radius: 999px;
  color: #fff;
  background: var(--nature);
  font-size: 0.76rem;
  font-weight: 800;
}

.branch-card h3 {
  color: var(--primary);
  font-size: 1.45rem;
}

.branch-hours {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.branch-hours li {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.branch-hours span {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.branch-hours strong {
  color: var(--primary);
  text-align: right;
  font-size: 0.92rem;
}

.branch-note {
  margin: 0;
  color: var(--accent);
  font-size: 0.84rem;
  font-weight: 700;
}

.branch-card address {
  align-self: end;
  margin-top: 6px;
  padding-top: 14px;
  border-top: 1px solid var(--soft-line);
  color: var(--nature);
  font-style: normal;
  font-weight: 800;
  line-height: 1.6;
}

.branch-map-link {
  display: inline-flex;
  width: max-content;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border-radius: var(--radius);
  color: #fff;
  background: var(--secondary);
  font-size: 0.88rem;
  font-weight: 800;
}

.branch-map-link:hover {
  background: var(--primary);
}

.zone-tag {
  width: max-content;
  padding: 6px 10px;
  border-radius: 999px;
  color: #fff;
  font-size: 0.76rem;
  font-weight: 800;
}

.zone-red .zone-tag {
  background: #823423;
}

.zone-green .zone-tag {
  background: var(--nature);
}

.zone-yellow .zone-tag {
  background: #b88c2e;
}

.feature-list,
.table-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.feature-list span,
.table-strip span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
}

.feature-list span {
  color: var(--nature);
  background: rgba(46, 77, 52, 0.1);
}

.table-strip span {
  color: var(--primary);
  background: rgba(182, 123, 60, 0.14);
}

.gallery-row {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 16px;
  margin-top: 18px;
}

.gallery-row figure {
  position: relative;
  min-height: 250px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
}

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

.gallery-row figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 8px 10px;
  border-radius: var(--radius);
  color: #fff;
  background: rgba(33, 24, 15, 0.74);
  font-size: 0.82rem;
  font-weight: 800;
}

.menu-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.category-pill {
  color: var(--primary);
  background: rgba(182, 123, 60, 0.14);
}

.category-pill.is-active {
  color: #fff;
  background: var(--nature);
}

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

.menu-board article {
  display: grid;
  min-height: 220px;
  padding: 20px;
}

.menu-board article.is-filtered {
  display: none;
}

.menu-board p {
  font-size: 0.92rem;
}

.menu-board strong {
  align-self: end;
  color: var(--primary);
  font-size: 1.16rem;
}

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

.article-grid article {
  display: grid;
  min-height: 270px;
  padding: 24px;
}

.article-grid a {
  align-self: end;
  color: var(--nature);
  font-weight: 800;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.7fr);
  gap: 34px;
  align-items: start;
}

.contact-panel {
  display: grid;
  overflow: hidden;
}

.contact-panel a {
  display: grid;
  gap: 4px;
  padding: 20px;
  border-bottom: 1px solid var(--line);
}

.contact-panel a:last-child {
  border-bottom: 0;
}

.contact-panel a:hover {
  background: rgba(46, 77, 52, 0.08);
}

.contact-panel strong {
  color: var(--primary);
}

.map-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 0;
  margin-top: 20px;
  overflow: hidden;
}

.map-card img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
}

.map-card > div {
  display: grid;
  align-content: center;
  padding: 30px;
}

.event-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 18px;
  align-items: start;
}

.event-card {
  display: grid;
  grid-template-columns: 44% minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid var(--soft-line);
  border-radius: var(--radius);
  color: #fff;
  background: linear-gradient(120deg, var(--nature), var(--primary));
  box-shadow: var(--shadow);
}

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

.event-card > div {
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 30px;
}

.event-card p {
  color: rgba(255, 255, 255, 0.78);
}

.event-date {
  color: #ffe0ad;
}

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

.event-meta div {
  padding: 12px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
}

.event-meta dt {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.72rem;
  font-weight: 800;
}

.event-meta dd {
  margin: 4px 0 0;
  font-weight: 800;
}

.event-empty {
  padding: 22px;
  color: var(--muted);
  line-height: 1.8;
}

.ticket-panel {
  padding: 24px;
}

.ticket-panel form {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--primary);
  font-size: 0.86rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(78, 46, 20, 0.22);
  border-radius: var(--radius);
  color: var(--ink);
  background: #fff;
  outline: 0;
}

input,
select {
  min-height: 46px;
  padding: 0 12px;
}

textarea {
  min-height: 106px;
  padding: 12px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(182, 123, 60, 0.2);
}

.ticket-result {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  margin-top: 18px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--background);
}

.qr-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-template-rows: repeat(7, 1fr);
  width: 104px;
  height: 104px;
  gap: 3px;
  padding: 8px;
  border-radius: 6px;
  background: #fff;
}

.qr-grid span {
  border-radius: 2px;
  background: rgba(78, 46, 20, 0.18);
}

.qr-grid span.is-dark {
  background: var(--primary);
}

.reservation-modal {
  width: min(1080px, calc(100% - 28px));
  max-height: min(760px, calc(100vh - 32px));
  padding: 0;
  overflow: auto;
  border: 0;
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 30px 90px rgba(25, 15, 8, 0.34);
}

.reservation-modal::backdrop {
  background: rgba(18, 12, 7, 0.62);
}

.modal-shell {
  position: sticky;
  top: 0;
  z-index: 2;
  height: 0;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--primary);
  background: #fff;
  font-size: 1.5rem;
  font-weight: 700;
}

.modal-content {
  padding: 30px;
}

.modal-head {
  padding-right: 50px;
}

.reservation-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.76fr);
  gap: 20px;
  align-items: start;
}

.form-panel,
.seat-panel {
  padding: 22px;
}

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

.full-field {
  grid-column: 1 / -1;
}

.form-panel .button,
#whatsappLink {
  width: 100%;
  margin-top: 16px;
}

.seat-panel-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.seat-status {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--primary);
  background: rgba(182, 123, 60, 0.14);
  font-size: 0.76rem;
  font-weight: 800;
  white-space: nowrap;
}

.seat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap: 12px;
  min-height: 196px;
}

.seat-card {
  display: grid;
  min-height: 92px;
  place-items: center;
  gap: 4px;
  border: 1px solid rgba(46, 77, 52, 0.26);
  border-radius: var(--radius);
  color: var(--nature);
  background: rgba(46, 77, 52, 0.08);
  font-weight: 800;
}

.seat-card span {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 600;
}

.seat-card.is-selected {
  color: var(--primary);
  background: rgba(182, 123, 60, 0.2);
  outline: 3px solid rgba(182, 123, 60, 0.34);
}

.seat-card.is-disabled {
  color: #9b8674;
  background: rgba(122, 74, 34, 0.08);
  border-color: rgba(122, 74, 34, 0.18);
  cursor: not-allowed;
}

.seat-card.is-booked {
  color: #823423;
  background: rgba(130, 52, 35, 0.1);
}

.legend {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

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

.legend i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.legend .available {
  background: var(--nature);
}

.legend .limited {
  background: #b88c2e;
}

.legend .booked {
  background: #823423;
}

.confirmation-box {
  margin-top: 18px;
  padding: 16px;
  border-radius: var(--radius);
  color: var(--nature);
  background: rgba(46, 77, 52, 0.1);
  line-height: 1.6;
}

.site-footer {
  color: #fff;
  background: var(--primary);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 0.36fr 0.36fr;
  gap: 32px;
  padding: 46px 0 28px;
}

.footer-brand {
  margin-bottom: 14px;
}

.site-footer p {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.72);
}

.footer-links {
  display: grid;
  gap: 10px;
  align-content: start;
}

.footer-links span {
  color: #ffe0ad;
  font-weight: 800;
}

.footer-links a,
.footer-button {
  justify-content: start;
  min-height: auto;
  padding: 0;
  color: rgba(255, 255, 255, 0.78);
  background: transparent;
  box-shadow: none;
  font-weight: 600;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.84rem;
}

.admin-body {
  min-height: 100vh;
  background: var(--background);
}

.admin-main {
  padding: 44px 0 72px;
}

.admin-login {
  width: min(460px, calc(100% - 32px));
  margin: 34px auto;
  padding: 28px;
}

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

.admin-shell {
  padding: 28px;
}

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

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

.admin-card {
  min-height: 138px;
  padding: 22px;
}

.admin-card strong {
  display: block;
  color: var(--primary);
  font-size: 2rem;
}

.admin-note {
  margin-top: 20px;
  padding: 18px;
  border-radius: var(--radius);
  color: var(--nature);
  background: rgba(46, 77, 52, 0.1);
}

@media (max-width: 1020px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .site-nav {
    position: fixed;
    inset: 76px 16px auto 16px;
    display: none;
    flex-direction: column;
    gap: 0;
    overflow: hidden;
    background: #fffaf3;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    border-radius: 0;
    border-bottom: 1px solid var(--line);
  }

  .nav-toggle {
    display: block;
  }

  .header-action {
    justify-self: end;
  }

  .home-dashboard,
  .favorite-grid,
  .branch-mini-grid,
  .visit-strip,
  .menu-board,
  .article-grid,
  .admin-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .branch-card,
  .map-card,
  .event-card,
  .event-detail,
  .contact-layout,
  .home-split,
  .reservation-layout {
    grid-template-columns: 1fr;
  }

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

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

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

  .brand-mark {
    width: 46px;
    height: 46px;
  }

  .brand-copy {
    display: none;
  }

  .header-action {
    min-height: 40px;
    padding: 0 12px;
  }

  .site-nav {
    inset: 68px 16px auto 16px;
  }

  .page {
    padding: 30px 0 56px;
  }

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2rem;
  }

  .home-hero {
    min-height: 520px;
  }

  .home-copy {
    padding: 42px 0;
  }

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

  .home-dashboard,
  .favorite-grid,
  .branch-mini-grid,
  .visit-strip,
  .branch-grid,
  .menu-board,
  .article-grid,
  .gallery-row,
  .form-grid,
  .seat-grid,
  .ticket-result,
  .footer-grid,
  .admin-grid {
    grid-template-columns: 1fr;
  }

  .home-section {
    padding-top: 52px;
  }

  .home-section-muted {
    margin-top: 52px;
    padding: 48px 0;
  }

  .home-section-head {
    align-items: start;
    flex-direction: column;
  }

  .home-section-head h2 {
    font-size: 1.8rem;
  }

  .section-link {
    width: 100%;
    justify-content: center;
  }

  .map-card img {
    min-height: 220px;
  }

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

  .modal-content {
    padding: 22px 16px;
  }

  .modal-head {
    padding-right: 42px;
  }

  .admin-top,
  .footer-bottom {
    align-items: start;
    flex-direction: column;
  }
}
