/* Dalat — 2026 rebrand */
:root {
  --bg: #fbfaf7;
  --surface: #ffffff;
  --surface-2: rgba(255, 255, 255, 0.7);
  --ink: #121316;
  --muted: rgba(18, 19, 22, 0.66);
  --line: rgba(18, 19, 22, 0.12);
  --shadow: 0 18px 50px rgba(17, 24, 39, 0.12);
  --shadow-soft: 0 10px 26px rgba(17, 24, 39, 0.09);

  --brand: #C8102E;
  --brand-ink: #7A0015;
  --accent: #F4B41B;
  --accent-ink: #2A1600;

  --radius: 18px;
  --radius-sm: 12px;
  --max-width: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 96px;
}

:focus-visible {
  outline: 2px solid rgba(200, 16, 46, 0.65);
  outline-offset: 3px;
}

.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;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(900px 380px at 20% -10%, rgba(200, 16, 46, 0.12), transparent 60%),
    radial-gradient(860px 420px at 100% 10%, rgba(244, 180, 27, 0.18), transparent 55%),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
  font-family: "Manrope", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  overflow-x: hidden;
}

body.is-booking-open {
  overflow: hidden;
}

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

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

.page-shell {
  width: min(var(--max-width), calc(100% - 40px));
  margin: 0 auto;
  position: relative;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--brand);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

[data-reveal] {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  transition: opacity 540ms ease, transform 700ms cubic-bezier(0.2, 0.9, 0.2, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(251, 250, 247, 0.78);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.86);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
}

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

.brand-logo {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 10px 22px rgba(17, 24, 39, 0.12);
}

.brand-logo-fallback {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.75);
  color: var(--brand);
  font-family: "Fraunces", serif;
  font-weight: 700;
  font-size: 22px;
}

.brand-eyebrow {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.2;
}

.brand-name {
  margin: 0;
  font-family: "Fraunces", serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.15;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0;
  min-height: 44px;
  min-width: 44px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.8);
  color: var(--ink);
  font: inherit;
  font-weight: 800;
}

.nav-toggle-icon {
  display: grid;
  gap: 4px;
}

.nav-toggle-line {
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.nav-links a {
  position: relative;
  padding: 10px 2px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 7px;
  height: 2px;
  border-radius: 999px;
  background: rgba(244, 180, 27, 0.9);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 200ms ease;
}

.nav-links a:hover::after,
.nav-links .is-active::after {
  transform: scaleX(1);
}

.nav-links .is-active {
  color: var(--brand);
}

.nav-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink);
  font-weight: 800;
  letter-spacing: 0.08em;
}

/* Buttons */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
  will-change: transform;
  gap: 10px;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
}

.button-primary {
  background: var(--brand);
  color: white;
  border-color: rgba(122, 0, 21, 0.7);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  border-color: var(--line);
}

.button-tertiary {
  background: transparent;
  color: var(--ink);
  border-color: transparent;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 2px;
  text-decoration-color: rgba(244, 180, 27, 0.9);
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  margin: 18px 0 42px;
  min-height: clamp(520px, 64vh, 720px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transform: scale(1.06);
  filter: saturate(1.05) contrast(1.04);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 520px at 12% 18%, rgba(0, 0, 0, 0.62), transparent 56%),
    linear-gradient(90deg, rgba(8, 10, 14, 0.84) 0%, rgba(8, 10, 14, 0.56) 48%, rgba(8, 10, 14, 0.26) 100%);
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: clamp(28px, 5vw, 56px);
  color: white;
}

.hero-title {
  margin: 0;
  font-family: "Fraunces", serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 0.98;
  font-size: clamp(44px, 6.6vw, 82px);
}

.hero-lead {
  margin: 16px 0 0;
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.86);
}

.hero-sub {
  margin: 12px 0 0;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.74);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.meta-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.92);
  font-weight: 700;
  font-size: 13px;
  backdrop-filter: blur(10px);
}

.meta-pill.is-open {
  background: var(--brand);
  color: white;
  border-color: rgba(255, 255, 255, 0.18);
}

.meta-link {
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 2px;
  text-decoration-color: rgba(244, 180, 27, 0.9);
}

/* Sections */
.section {
  padding: 46px 0;
}

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

.section-heading h2 {
  margin: 0;
  font-family: "Fraunces", serif;
  font-size: clamp(28px, 4.4vw, 46px);
  line-height: 1.06;
  letter-spacing: 0.01em;
}

.section-heading-contact {
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.event-banner {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.74);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-soft);
}

.event-banner.section {
  padding: 26px;
}

.event-banner h2 {
  margin: 0;
  font-family: "Fraunces", serif;
  font-size: 34px;
  line-height: 1.05;
}

.event-banner p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

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

.story-card {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.84);
  border-radius: var(--radius);
  padding: 18px 18px 16px;
  box-shadow: var(--shadow-soft);
}

.story-card h2 {
  margin: 0;
  font-family: "Fraunces", serif;
  font-size: 22px;
  line-height: 1.15;
}

.story-card p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

/* Menu preview */
.menu-overview {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
  gap: 22px;
}

.menu-overview-categories {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
  border-radius: var(--radius);
  padding: 14px 16px;
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 6px;
  align-content: start;
}

.sticky-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 20px;
  margin-top: 10px;
  font-weight: 900;
  text-align: center;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: var(--shadow);
  background: var(--accent);
  color: var(--accent-ink);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.sticky-cta:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
}

.overview-category {
  display: grid;
  gap: 4px;
  padding: 10px 0;
  border-top: 1px solid rgba(18, 19, 22, 0.08);
}

.overview-category:first-child {
  border-top: 0;
}

.overview-category strong {
  font-family: "Fraunces", serif;
  font-weight: 700;
  font-size: 18px;
}

.overview-category span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

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

.overview-dish {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.84);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.overview-dish-photo {
  min-height: 188px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.overview-dish-copy {
  padding: 12px 14px 14px;
  display: grid;
  gap: 4px;
}

.overview-dish-copy strong {
  font-weight: 800;
}

.overview-dish-copy span {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.menu-overview-action {
  margin-top: 16px;
}

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

.info-card {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.84);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 16px;
}

.info-intro {
  max-width: 34rem;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

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

.contact-item {
  display: grid;
  gap: 6px;
}

.contact-item strong,
.hours-panel strong {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 2px;
  text-decoration-color: rgba(244, 180, 27, 0.8);
}

.contact-link svg,
.social-chip svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.info-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hours-grid {
  display: grid;
  gap: 12px;
}

.hours-panel {
  display: grid;
  gap: 8px;
  padding-top: 12px;
  border-top: 1px solid rgba(18, 19, 22, 0.08);
}

.hours-panel:first-child {
  border-top: 0;
  padding-top: 0;
}

.hours-row {
  display: grid;
  grid-template-columns: minmax(108px, 132px) 1fr;
  gap: 12px;
  align-items: baseline;
}

.hours-row span:first-child {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-item-services {
  padding-top: 12px;
  border-top: 1px solid rgba(18, 19, 22, 0.08);
}

.contact-item-services p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.map-wrap {
  margin-top: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.map-wrap iframe {
  width: 100%;
  height: 360px;
  border: 0;
}

/* Menu page */
.menu-hero {
  padding-top: 32px;
}

.menu-page-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.menu-page-header h1 {
  margin: 0;
  font-family: "Fraunces", serif;
  font-size: clamp(38px, 5.6vw, 58px);
  line-height: 1.02;
}

.menu-page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.menu-list {
  display: grid;
  gap: 28px;
}

.menu-section-card {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.84);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow-soft);
}

.menu-subsection {
  margin-top: 18px;
}

.menu-subsection-title {
  margin: 0 0 10px;
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.menu-rows {
  border-top: 1px solid rgba(18, 19, 22, 0.08);
}

.menu-line {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(18, 19, 22, 0.08);
}

.menu-line-title {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 800;
}

.menu-line-description {
  color: var(--muted);
  font-size: 14px;
  font-style: italic;
  font-weight: 500;
}

.menu-item-price {
  color: var(--brand);
  font-weight: 900;
  white-space: nowrap;
}

.menu-tag {
  display: inline-flex;
  padding: 3px 10px;
  border-radius: 999px;
  border: 1px solid rgba(200, 16, 46, 0.25);
  background: rgba(200, 16, 46, 0.08);
  color: var(--brand);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu-origin-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

/* Footer + floating CTAs */
.site-footer {
  padding: 28px 0 28px;
}

.footer-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.footer-copy {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.copyright-bar {
  padding: 14px 0 86px;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

.copyright-bar p {
  margin: 0;
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  align-items: center;
  letter-spacing: 0.02em;
}

.copyright-sep {
  opacity: 0.65;
}

.floating-actions {
  position: fixed;
  left: 50%;
  bottom: 16px;
  z-index: 35;
  transform: translateX(-50%);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: center;
  max-width: min(100vw - 32px, 620px);
}

.floating-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  min-height: 54px;
  padding: 0 20px;
  font-weight: 900;
  text-align: center;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: var(--shadow);
  background: var(--accent);
  color: var(--accent-ink);
  backdrop-filter: blur(12px);
}

.floating-reserve {
  background: var(--accent);
  color: var(--accent-ink);
  border-color: rgba(122, 0, 21, 0.18);
}

.floating-socials {
  position: fixed;
  right: 16px;
  bottom: 94px;
  z-index: 32;
  display: grid;
  gap: 10px;
}

.social-chip {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.86);
  color: var(--brand);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
}

.social-chip.is-disabled {
  opacity: 0.4;
}

/* Booking overlay */
.booking-overlay[hidden] {
  display: none;
}

.booking-overlay {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 24px;
}

.booking-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 12, 14, 0.6);
  backdrop-filter: blur(6px);
}

.booking-panel {
  position: relative;
  width: min(980px, 100%);
  max-height: min(84vh, 760px);
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 6px;
  padding: 6px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(9, 10, 12, 0.32);
  overflow: hidden;
}

.booking-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  padding: 1px 0 1px;
  border-bottom: 1px solid rgba(18, 19, 22, 0.08);
}

.booking-close {
  border: 0;
  background: rgba(18, 19, 22, 0.08);
  color: var(--brand);
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
}

.booking-body {
  border-radius: 10px;
  overflow: hidden;
  border: 0;
  background: transparent;
  min-height: 500px;
}

.booking-frame {
  width: 100%;
  height: 100%;
  border: 0;
}

.booking-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
  padding-bottom: 0;
}

.booking-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 720px) {
  .booking-overlay {
    padding: 16px;
  }

  .booking-panel {
    max-height: 90vh;
    padding: 8px;
  }
}

/* Admin (kept simple + readable on light theme) */
.admin-body {
  min-height: 100vh;
}

.admin-shell {
  width: min(1320px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 60px;
}

.admin-panel {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-soft);
}

.admin-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.admin-header h1 {
  margin: 0;
  font-family: "Fraunces", serif;
  font-size: clamp(34px, 4.8vw, 52px);
  line-height: 1.05;
}

.admin-subtitle {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.65;
  max-width: 60ch;
}

.admin-layout {
  display: grid;
  gap: 18px;
}

.admin-form-stack {
  display: grid;
  gap: 18px;
}

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

.admin-field label {
  display: block;
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.admin-field span {
  display: block;
  margin-bottom: 6px;
}

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

.admin-field input,
.admin-field textarea,
.admin-table-input {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(18, 19, 22, 0.16);
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
  font: inherit;
}

.admin-field textarea {
  min-height: 120px;
  resize: vertical;
}

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

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

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

.admin-inline-grid-tight {
  grid-template-columns: 1.3fr 0.7fr;
}

.admin-flash {
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(18, 19, 22, 0.14);
  background: rgba(255, 255, 255, 0.84);
  margin-bottom: 18px;
}

.admin-flash.is-success {
  border-color: rgba(16, 185, 129, 0.28);
  background: rgba(16, 185, 129, 0.08);
}

.admin-flash.is-warning {
  border-color: rgba(244, 180, 27, 0.32);
  background: rgba(244, 180, 27, 0.12);
}

.admin-warning {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.admin-help,
.admin-hint {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.admin-help a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.admin-login {
  max-width: 560px;
  margin: 42px auto 0;
}

.admin-reset {
  padding: 0;
  border: 0;
  background: none;
  color: var(--brand);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.admin-reset:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.admin-card {
  border: 1px solid rgba(18, 19, 22, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-soft);
}

.admin-accordion {
  overflow: hidden;
}

.admin-accordion-summary {
  cursor: pointer;
  list-style: none;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(18, 19, 22, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.admin-accordion-summary::-webkit-details-marker {
  display: none;
}

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

.admin-accordion-title strong {
  font-weight: 900;
}

.admin-accordion-panel {
  padding: 16px 18px 18px;
}

.admin-subsection-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 12px 0 10px;
}

.admin-subsection-bar h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 900;
}

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

.admin-repeat-item {
  padding: 16px;
}

.admin-item-actions {
  display: flex;
  justify-content: end;
  margin-bottom: 10px;
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.admin-savebar {
  position: sticky;
  bottom: 12px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 999px;
  border: 1px solid rgba(18, 19, 22, 0.12);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.admin-savebar p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.admin-savebar-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.admin-menu-table-wrap {
  overflow-x: auto;
}

.admin-menu-table {
  width: 100%;
  min-width: 860px;
  border-collapse: collapse;
}

.admin-menu-table th,
.admin-menu-table td {
  padding: 10px 8px;
  border-top: 1px solid rgba(18, 19, 22, 0.08);
  vertical-align: top;
}

.admin-menu-table th {
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: left;
}

.admin-order-input {
  width: 92px;
}

/* Responsive */
@media (max-width: 960px) {
  .nav {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .nav-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .nav-panel {
    display: none;
    grid-column: 1 / -1;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(18, 19, 22, 0.1);
    gap: 12px;
  }

  .site-header.is-open .nav-panel {
    display: grid;
  }

  .nav-links {
    gap: 10px 16px;
  }

  .story-grid,
  .menu-overview,
  .info-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 720px) {
  .page-shell {
    width: min(var(--max-width), calc(100% - 28px));
  }

  .hero {
    min-height: 560px;
  }

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

  .menu-page-header,
  .menu-line,
  .footer-shell,
  .hours-row,
  .admin-inline-grid,
  .admin-grid.two-columns,
  .info-actions {
    display: grid;
    gap: 10px;
  }

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

  .floating-socials {
    right: 10px;
    bottom: 88px;
  }

  .floating-actions {
    left: 12px;
    right: 12px;
    transform: none;
    bottom: 14px;
    max-width: calc(100vw - 24px);
  }

  .floating-actions a {
    flex: 1;
    min-width: 0;
  }
}
