:root {
  --bg: #f6e7d4;
  --bg-soft: rgba(255, 248, 239, 0.65);
  --surface: rgba(255, 249, 242, 0.72);
  --surface-strong: #fff8f0;
  --line: rgba(61, 38, 25, 0.14);
  --text: #24140f;
  --muted: #6e5649;
  --accent: #bc5e2f;
  --accent-deep: #8e3f17;
  --olive: #586249;
  --olive-soft: #d9dece;
  --shadow: 0 28px 80px rgba(52, 28, 18, 0.16);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: min(1180px, calc(100vw - 40px));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Sora", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 230, 202, 0.95), transparent 32%),
    radial-gradient(circle at 85% 10%, rgba(188, 94, 47, 0.2), transparent 22%),
    linear-gradient(180deg, #f9efdf 0%, #f2deca 40%, #ebd5bf 100%);
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at center, black 48%, transparent 100%);
  pointer-events: none;
  opacity: 0.35;
}

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

button,
input,
textarea {
  font: inherit;
}

.page-shell {
  width: var(--container);
  margin: 0 auto;
  padding: 24px 0 40px;
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 16px 20px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  background: rgba(244, 231, 215, 0.72);
  backdrop-filter: blur(20px);
  box-shadow: 0 10px 30px rgba(79, 46, 28, 0.08);
}

.brand {
  display: inline-block;
  transition: transform 0.28s ease;
}

.brand-mark {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.65rem;
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 0.9;
}

.brand-text {
  font-family: "Allura", cursive;
  font-size: 2.9rem;
  line-height: 0.72;
  transform: translateY(2px);
}

.brand:hover {
  transform: translateY(-1px);
}

.brand-plaque {
  display: grid;
  min-width: 248px;
  padding: 10px 16px 9px;
  border-radius: 8px;
  border: 1px solid rgba(233, 193, 156, 0.46);
  background:
    linear-gradient(180deg, rgba(76, 55, 45, 0.96), rgba(39, 26, 22, 0.98)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), transparent);
  box-shadow:
    inset 0 0 0 2px rgba(232, 205, 179, 0.08),
    0 12px 28px rgba(61, 38, 25, 0.18);
}

.brand-wordmark {
  display: flex;
  align-items: end;
  gap: 10px;
  color: #e7c19f;
}

.brand-subline {
  justify-self: end;
  margin-top: 3px;
  padding-right: 4px;
  color: rgba(235, 206, 178, 0.88);
  font-size: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 3vw, 32px);
  font-size: 0.95rem;
}

.site-nav a,
.footer-links a,
.contact-links a {
  position: relative;
}

.site-nav a::after,
.footer-links a::after,
.contact-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.site-nav a:hover::after,
.footer-links a:hover::after,
.contact-links a:hover::after {
  transform: scaleX(1);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    background-color 0.28s ease,
    color 0.28s ease;
}

.header-cta,
.button-primary {
  background: var(--text);
  color: #fff8f2;
  box-shadow: 0 16px 32px rgba(36, 20, 15, 0.2);
}

.button-secondary {
  border: 1px solid rgba(36, 20, 15, 0.18);
  background: rgba(255, 250, 245, 0.52);
}

.header-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  justify-self: end;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 248, 241, 0.82);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 6px auto;
  background: var(--text);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.hero,
.menu-section,
.story-section,
.space-section,
.visit-section,
.contact-section,
.site-footer {
  margin-top: 28px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: 28px;
  align-items: stretch;
}

.hero-copy,
.hero-visual,
.menu-card,
.story-copy,
.story-panel,
.visit-card,
.contact-copy,
.contact-form,
.space-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: var(--surface);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.hero-copy,
.story-copy,
.story-panel,
.visit-card,
.contact-copy,
.contact-form {
  border-radius: var(--radius-xl);
}

.hero-copy {
  padding: clamp(30px, 4vw, 56px);
}

.hero-copy::before,
.hero-visual::before,
.menu-card::before,
.story-copy::before,
.story-panel::before,
.visit-card::before,
.contact-copy::before,
.contact-form::before,
.space-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.22), transparent 48%);
  pointer-events: none;
}

.eyebrow,
.menu-category,
.space-tag,
.card-label {
  margin: 0 0 14px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-deep);
}

.hero h1,
.section-heading h2,
.story-copy h2,
.visit-card h2,
.contact-copy h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 5.4vw, 5.8rem);
  line-height: 0.94;
  letter-spacing: -0.03em;
}

.section-heading h2,
.story-copy h2,
.visit-card h2,
.contact-copy h2 {
  font-size: clamp(2.4rem, 4vw, 4.3rem);
}

.hero-lead,
.section-heading p,
.story-copy p,
.visit-card p,
.contact-copy p,
.space-card p,
.quote-text,
.feature-card p,
.form-note,
.footer-copy,
.site-footer p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 32px 0;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-stats li {
  padding: 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.hero-stats strong,
.space-card h3,
.menu-card h3,
.footer-brand,
.feature-card h2 {
  display: block;
  color: var(--text);
}

.hero-stats span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.hero-visual {
  min-height: 690px;
  padding: 24px;
  border-radius: 42px;
  background:
    linear-gradient(180deg, rgba(38, 23, 17, 0.94), rgba(74, 43, 30, 0.92)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 46%);
  color: #fff4eb;
}

.visual-orb {
  position: absolute;
  top: 32px;
  right: 34px;
  width: 220px;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 28%, rgba(255, 235, 219, 0.96), transparent 18%),
    radial-gradient(circle at center, rgba(255, 166, 106, 0.44) 0%, rgba(216, 112, 55, 0.14) 44%, transparent 70%),
    conic-gradient(from 180deg, rgba(255, 255, 255, 0.14), rgba(255, 193, 133, 0.62), rgba(255, 255, 255, 0.12));
  filter: blur(0.5px);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.feature-card {
  position: absolute;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 249, 242, 0.1);
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 40px rgba(19, 8, 4, 0.25);
}

.feature-card-main {
  left: 30px;
  right: 30px;
  bottom: 142px;
  padding: 30px;
  border-color: rgba(255, 241, 228, 0.28);
  background:
    linear-gradient(180deg, rgba(255, 246, 237, 0.94), rgba(241, 217, 198, 0.78)),
    rgba(255, 249, 242, 0.92);
  box-shadow: 0 24px 48px rgba(19, 8, 4, 0.18);
}

.feature-card-main h2 {
  margin: 0 0 12px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 0.95;
  color: #28150f;
}

.feature-card-main p {
  color: rgba(64, 41, 30, 0.88);
}

.feature-card-main .card-label {
  color: rgba(118, 79, 60, 0.9);
}

.price-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(64, 41, 30, 0.14);
  font-size: 0.92rem;
  color: rgba(64, 41, 30, 0.92);
}

.feature-card-small {
  top: 124px;
  right: 24px;
  width: min(260px, calc(100% - 48px));
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(126, 88, 68, 0.76), rgba(84, 55, 40, 0.88)),
    rgba(255, 249, 242, 0.12);
}

.feature-card-small ul,
.schedule-list,
.menu-card ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.feature-card-small li,
.schedule-list li,
.menu-card li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.feature-card-small li + li {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-card-note {
  left: 24px;
  top: 36px;
  bottom: auto;
  width: 226px;
  padding: 20px;
  background:
    linear-gradient(180deg, rgba(128, 85, 63, 0.78), rgba(86, 56, 40, 0.9)),
    rgba(255, 249, 242, 0.1);
}

.feature-card-small p,
.feature-card-small li,
.feature-card-note p {
  color: rgba(255, 240, 226, 0.9);
}

.feature-card-small .card-label,
.feature-card-note .card-label {
  color: rgba(255, 217, 191, 0.72);
}

.ticker {
  overflow: hidden;
  margin-top: 24px;
  padding: 18px 0;
  border-block: 1px solid rgba(61, 38, 25, 0.1);
}

.ticker-track {
  display: flex;
  gap: 22px;
  width: max-content;
  animation: marquee 22s linear infinite;
  color: rgba(36, 20, 15, 0.78);
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.ticker-track span {
  display: inline-flex;
  align-items: center;
  gap: 22px;
}

.ticker-track span::after {
  content: "•";
  color: var(--accent);
}

.menu-section,
.space-section {
  padding: 44px 0 4px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: 24px;
  align-items: end;
  margin-bottom: 28px;
}

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

.menu-card,
.space-card {
  border-radius: 28px;
  padding: 26px;
}

.menu-card.accent {
  background:
    linear-gradient(180deg, rgba(188, 94, 47, 0.14), rgba(255, 248, 241, 0.78)),
    var(--surface);
}

.menu-card h3 {
  margin: 0 0 22px;
  font-size: 1.5rem;
  line-height: 1.25;
}

.menu-card li {
  align-items: flex-start;
}

.menu-card li + li {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.menu-item-copy {
  display: grid;
  gap: 4px;
}

.menu-item-title {
  font-weight: 600;
  color: var(--text);
}

.menu-item-meta,
.menu-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.menu-card li small {
  color: var(--muted);
  line-height: 1.5;
}

.menu-badge {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 9px;
  border-radius: 999px;
  background: rgba(188, 94, 47, 0.12);
  color: var(--accent-deep);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu-badge.is-muted {
  background: rgba(36, 20, 15, 0.08);
  color: var(--muted);
}

.menu-card li.is-unavailable {
  opacity: 0.72;
}

.menu-card li > span:last-child,
.signature-grid > span {
  color: var(--accent-deep);
  font-weight: 600;
  white-space: nowrap;
}

.menu-card.wide {
  grid-column: span 3;
}

.signature-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px 22px;
}

.signature-grid p {
  margin: 6px 0 0;
  color: var(--muted);
}

.story-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.85fr);
  gap: 22px;
  align-items: stretch;
}

.story-copy {
  padding: 34px clamp(24px, 4vw, 44px);
}

.story-panel {
  padding: 24px;
  background:
    linear-gradient(160deg, rgba(54, 29, 18, 0.96) 0%, rgba(100, 65, 48, 0.9) 100%);
  color: #fff4eb;
}

.quote-card {
  padding: 18px 0 32px;
}

.quote-mark {
  margin: 0 0 10px;
  font-family: "Cormorant Garamond", serif;
  font-size: 5rem;
  line-height: 0.8;
}

.quote-text {
  margin: 0;
  color: rgba(255, 244, 235, 0.88);
  font-size: 1.1rem;
}

.milestones {
  display: grid;
  gap: 16px;
}

.milestones div {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 250, 245, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.milestones span {
  display: inline-block;
  margin-bottom: 10px;
  color: #ffd3b5;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.milestones p {
  margin: 0;
  color: rgba(255, 244, 235, 0.82);
  line-height: 1.6;
}

.space-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 20px;
}

.space-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 248, 241, 0.92) 76%),
    linear-gradient(135deg, rgba(88, 98, 73, 0.18), rgba(188, 94, 47, 0.16));
}

.space-card.large {
  min-height: 420px;
}

.space-card h3 {
  margin: 0 0 12px;
  font-size: clamp(1.6rem, 2.6vw, 2.5rem);
  line-height: 1.04;
}

.visit-section,
.contact-section,
.site-footer {
  display: grid;
  gap: 20px;
}

.visit-section {
  grid-template-columns: 1fr 1fr;
}

.visit-card,
.contact-copy,
.contact-form {
  padding: 28px;
}

.map-card {
  background:
    linear-gradient(180deg, rgba(255, 248, 241, 0.84), rgba(255, 242, 231, 0.78)),
    repeating-linear-gradient(
      45deg,
      rgba(88, 98, 73, 0.08) 0,
      rgba(88, 98, 73, 0.08) 10px,
      rgba(255, 255, 255, 0.08) 10px,
      rgba(255, 255, 255, 0.08) 20px
    );
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 26px;
  font-weight: 600;
}

.schedule-list {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.schedule-list li {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.42);
  transition: transform 0.28s ease, background-color 0.28s ease, border-color 0.28s ease;
}

.schedule-list li.active {
  background: rgba(188, 94, 47, 0.14);
  border-color: rgba(188, 94, 47, 0.28);
  transform: translateX(6px);
}

.schedule-list li.is-closed {
  background: rgba(36, 20, 15, 0.08);
  border-color: rgba(36, 20, 15, 0.1);
}

.schedule-list li.is-closed.active {
  transform: none;
}

.schedule-list li.is-closed span:last-child {
  color: var(--muted);
  font-weight: 600;
}

.schedule-note {
  margin: 22px 0 0;
  font-weight: 500;
}

.contact-section {
  grid-template-columns: 1fr 1fr;
}

.contact-copy {
  background:
    linear-gradient(180deg, rgba(44, 27, 20, 0.96), rgba(83, 51, 35, 0.9)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent);
  color: #fff4eb;
}

.contact-copy .eyebrow,
.contact-copy h2 {
  color: #fff4eb;
}

.contact-copy p {
  color: rgba(255, 244, 235, 0.8);
}

.contact-form {
  display: grid;
  gap: 16px;
}

.pickup-panel {
  align-content: space-between;
}

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

.pickup-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 15px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.44);
  border: 1px solid rgba(255, 255, 255, 0.42);
}

.pickup-list strong {
  color: var(--accent-deep);
  text-transform: lowercase;
}

.pickup-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 8px;
}

.contact-form label {
  display: grid;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 500;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid rgba(36, 20, 15, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--text);
  outline: 0;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(188, 94, 47, 0.48);
  box-shadow: 0 0 0 4px rgba(188, 94, 47, 0.12);
  background: rgba(255, 255, 255, 0.92);
}

.button:disabled {
  cursor: default;
  opacity: 0.72;
}

.site-footer {
  grid-template-columns: 1fr auto auto;
  align-items: center;
  padding: 24px 6px 0;
}

.footer-brand {
  margin: 0 0 8px;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  line-height: 1;
}

.site-footer p {
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 18px;
}

.reveal {
  opacity: 1;
  transform: none;
  will-change: transform, opacity;
}

.reveal.is-visible {
  animation: section-rise 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes section-rise {
  from {
    opacity: 0.82;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

  .site-nav {
    grid-column: 1 / -1;
    order: 3;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

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

  .hero,
  .story-section,
  .visit-section,
  .contact-section,
  .section-heading,
  .space-grid {
    grid-template-columns: 1fr;
  }

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

  .menu-card.wide {
    grid-column: span 2;
  }
}

@media (max-width: 760px) {
  .page-shell {
    width: min(calc(100vw - 28px), 100%);
    padding-top: 14px;
  }

  .brand-plaque {
    min-width: 176px;
    padding: 8px 12px 7px;
  }

  .brand-wordmark {
    gap: 6px;
  }

  .brand-mark {
    font-size: 2rem;
  }

  .brand-text {
    font-size: 2.2rem;
  }

  .brand-subline {
    font-size: 0.42rem;
    letter-spacing: 0.26em;
  }

  .site-header {
    grid-template-columns: auto auto;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 28px;
  }

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

  .header-cta {
    display: none;
  }

  .site-nav {
    display: none;
    flex-direction: column;
    gap: 12px;
    padding-top: 8px;
  }

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

  .site-header.nav-open .nav-toggle span:first-child {
    transform: translateY(8px) rotate(45deg);
  }

  .site-header.nav-open .nav-toggle span:last-child {
    transform: translateY(-8px) rotate(-45deg);
  }

  .hero-copy,
  .story-copy,
  .story-panel,
  .visit-card,
  .contact-copy,
  .contact-form,
  .menu-card,
  .space-card {
    border-radius: 24px;
  }

  .hero h1,
  .section-heading h2,
  .story-copy h2,
  .visit-card h2,
  .contact-copy h2 {
    font-size: clamp(2.4rem, 12vw, 3.8rem);
  }

  .hero-stats,
  .menu-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    display: grid;
    gap: 16px;
    align-content: start;
    min-height: auto;
    padding: 96px 18px 18px;
  }

  .visual-orb {
    top: 20px;
    right: 20px;
    width: 140px;
  }

  .feature-card,
  .feature-card-small {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: auto;
  }

  .feature-card-note {
    order: 1;
    margin-right: 28px;
  }

  .feature-card-small {
    order: 2;
    margin-left: 28px;
  }

  .feature-card-main {
    order: 3;
    padding: 24px;
  }

  .feature-card-main h2 {
    font-size: clamp(1.9rem, 9vw, 2.8rem);
  }

  .feature-card-small li {
    gap: 10px;
    font-size: 0.98rem;
  }

  .price-row {
    flex-wrap: wrap;
    gap: 10px 22px;
  }

  .menu-card.wide {
    grid-column: auto;
  }

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

  .contact-links,
  .pickup-actions,
  .footer-links {
    flex-direction: column;
    gap: 10px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

body.admin-body {
  min-height: 100vh;
  padding: 24px 0 40px;
}

.admin-shell {
  width: min(1460px, calc(100vw - 28px));
  margin: 0 auto;
}

.admin-header,
.admin-login-card,
.admin-toolbar,
.admin-guide-card,
.admin-sidebar,
.admin-editor-panel,
.admin-preview-panel,
.admin-section-card,
.admin-status,
.admin-section-hero,
.admin-object,
.admin-list-item {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.52);
  background: rgba(255, 249, 242, 0.76);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
  border-radius: 28px;
}

.admin-header::before,
.admin-login-card::before,
.admin-toolbar::before,
.admin-guide-card::before,
.admin-sidebar::before,
.admin-editor-panel::before,
.admin-preview-panel::before,
.admin-section-card::before,
.admin-status::before,
.admin-section-hero::before,
.admin-object::before,
.admin-list-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.22), transparent 46%);
  pointer-events: none;
}

.admin-header,
.admin-status,
.admin-login-card,
.admin-toolbar,
.admin-guide,
.admin-workbench {
  margin-top: 18px;
}

.admin-header {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  padding: 24px 26px;
}

.admin-header h1,
.admin-login-card h2,
.admin-guide-card h2,
.admin-preview-head h2,
.admin-sidebar-head h2,
.admin-section-hero h2,
.admin-section-head h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  line-height: 0.95;
}

.admin-header h1 {
  font-size: clamp(2.4rem, 4vw, 4rem);
}

.admin-eyebrow {
  margin: 0 0 8px;
  color: var(--accent-deep);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.admin-header-actions,
.admin-toolbar-actions,
.admin-sidebar-tool-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.admin-status {
  padding: 14px 18px;
  font-weight: 600;
}

.admin-status.is-success {
  color: #315d2c;
  background: rgba(220, 241, 214, 0.82);
}

.admin-status.is-error {
  color: #7b241f;
  background: rgba(248, 219, 214, 0.86);
}

.admin-login-card {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.7fr);
  gap: 24px;
  align-items: center;
  padding: 28px;
}

.admin-login-card h2,
.admin-guide-card h2,
.admin-preview-head h2,
.admin-sidebar-head h2,
.admin-section-hero h2 {
  font-size: clamp(2rem, 3vw, 3.1rem);
}

.admin-login-card p,
.admin-guide-card p,
.admin-sidebar p,
.admin-preview-panel p,
.admin-section-hero p,
.admin-section-description {
  color: var(--muted);
  line-height: 1.7;
}

.admin-login-form,
.admin-fields,
.admin-main,
.admin-grid,
.admin-section-nav,
.admin-section-points,
.admin-list,
.admin-list-block {
  display: grid;
  gap: 16px;
}

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

.admin-dirty-note {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
}

.admin-dirty-note.is-dirty {
  color: var(--accent-deep);
}

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

.admin-guide-card {
  padding: 20px 22px;
}

.admin-workbench {
  display: grid;
  grid-template-columns: minmax(250px, 300px) minmax(0, 1.1fr) minmax(360px, 0.92fr);
  gap: 18px;
  align-items: start;
}

.admin-sidebar,
.admin-editor-panel,
.admin-preview-panel {
  padding: 20px;
}

.admin-sidebar,
.admin-preview-panel {
  position: sticky;
  top: 18px;
}

.admin-sidebar-head {
  margin-bottom: 18px;
}

.admin-nav-button {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  width: 100%;
  padding: 16px;
  border: 1px solid rgba(36, 20, 15, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.46);
  color: var(--text);
  text-align: left;
  cursor: pointer;
  transition: transform 0.22s ease, border-color 0.22s ease, background-color 0.22s ease;
}

.admin-nav-button:hover {
  transform: translateY(-1px);
  border-color: rgba(188, 94, 47, 0.26);
}

.admin-nav-button.is-active {
  border-color: rgba(188, 94, 47, 0.3);
  background: rgba(255, 245, 236, 0.96);
}

.admin-nav-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  min-height: 38px;
  border-radius: 50%;
  background: rgba(36, 20, 15, 0.08);
  font-size: 0.84rem;
  font-weight: 700;
}

.admin-nav-copy {
  display: grid;
  gap: 4px;
}

.admin-nav-copy strong {
  color: var(--text);
  font-size: 0.96rem;
}

.admin-nav-copy small,
.admin-object-head small,
.admin-list-head small,
.admin-field-hint,
.admin-item-summary {
  color: var(--muted);
  line-height: 1.5;
}

.admin-sidebar-tools {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(36, 20, 15, 0.08);
}

.admin-sidebar-tool-grid .button {
  width: 100%;
}

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

.admin-section-hero {
  padding: 24px;
}

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

.admin-section-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(36, 20, 15, 0.08);
  color: var(--text);
  font-size: 0.86rem;
  font-weight: 600;
}

.admin-section-points {
  margin: 18px 0 0;
  padding-left: 20px;
}

.admin-section-points li {
  color: var(--muted);
}

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

.admin-section-card {
  padding: 22px;
}

.admin-section-head {
  display: grid;
  gap: 10px;
  margin-bottom: 16px;
}

.admin-section-kicker {
  margin: 0 0 6px;
  color: var(--accent-deep);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.admin-section-head h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.admin-preview-head {
  margin-bottom: 14px;
}

.admin-preview-frame {
  width: 100%;
  min-height: 1180px;
  border: 1px solid rgba(36, 20, 15, 0.12);
  border-radius: 20px;
  background: #fff;
  transition: opacity 0.16s ease;
}

.admin-preview-frame.is-loading {
  opacity: 0;
}

.admin-field {
  display: grid;
  gap: 8px;
  font-size: 0.92rem;
  font-weight: 600;
}

.admin-field span,
.admin-toggle span,
.admin-object-head p,
.admin-list-head p,
.admin-list-item-head p {
  color: var(--text);
}

.admin-field input,
.admin-field textarea,
.admin-field select,
.admin-login-form input {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid rgba(36, 20, 15, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--text);
  outline: 0;
  transition: border-color 0.24s ease, box-shadow 0.24s ease, background-color 0.24s ease;
}

.admin-field input:focus,
.admin-field textarea:focus,
.admin-field select:focus,
.admin-login-form input:focus {
  border-color: rgba(188, 94, 47, 0.48);
  box-shadow: 0 0 0 4px rgba(188, 94, 47, 0.12);
  background: rgba(255, 255, 255, 0.94);
}

.admin-toggle {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  min-height: 56px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(36, 20, 15, 0.1);
  background: rgba(255, 255, 255, 0.52);
  font-weight: 600;
}

.admin-toggle input {
  width: 18px;
  height: 18px;
}

.admin-object,
.admin-list-item {
  display: grid;
  gap: 14px;
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(36, 20, 15, 0.08);
  background: rgba(255, 255, 255, 0.42);
}

.admin-list-item.is-collapsed .admin-list-item-body {
  display: none;
}

.admin-object-head,
.admin-list-head,
.admin-list-item-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: start;
}

.admin-object-head p,
.admin-list-head p,
.admin-list-item-head p {
  margin: 0;
  font-weight: 700;
}

.admin-list-head-actions,
.admin-list-actions,
.admin-list-item-copy {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.admin-list-item-copy {
  flex-direction: column;
}

.admin-list-count {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(36, 20, 15, 0.06);
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
}

.admin-mini-button,
.admin-icon-button {
  border: 0;
  border-radius: 999px;
  background: rgba(36, 20, 15, 0.08);
  color: var(--text);
  cursor: pointer;
  transition: transform 0.22s ease, background-color 0.22s ease, opacity 0.22s ease;
}

.admin-mini-button {
  min-height: 38px;
  padding: 0 14px;
  font-weight: 600;
}

.admin-icon-button {
  min-height: 36px;
  padding: 0 12px;
  font-size: 0.84rem;
  font-weight: 700;
}

.admin-mini-button:hover,
.admin-icon-button:hover {
  transform: translateY(-1px);
  background: rgba(36, 20, 15, 0.14);
}

.admin-mini-button:disabled,
.admin-icon-button:disabled {
  opacity: 0.42;
  cursor: default;
  transform: none;
}

.admin-icon-button.is-danger {
  background: rgba(163, 49, 35, 0.14);
  color: #8f291f;
}

.admin-empty-note {
  margin: 0;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.48);
  color: var(--muted);
}

.is-admin-focus {
  outline: 4px solid rgba(188, 94, 47, 0.32);
  outline-offset: 10px;
  border-radius: 28px;
}

.hidden {
  display: none !important;
}

@media (max-width: 1320px) {
  .admin-workbench {
    grid-template-columns: minmax(250px, 300px) 1fr;
  }

  .admin-preview-panel {
    position: relative;
    top: auto;
    grid-column: 1 / -1;
  }

  .admin-preview-frame {
    min-height: 820px;
  }
}

@media (max-width: 980px) {
  .admin-guide,
  .admin-login-card,
  .admin-workbench {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    position: relative;
    top: auto;
  }

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

@media (max-width: 760px) {
  body.admin-body {
    padding-top: 10px;
  }

  .admin-shell {
    width: min(calc(100vw - 20px), 100%);
  }

  .admin-header,
  .admin-login-card,
  .admin-toolbar,
  .admin-guide-card,
  .admin-sidebar,
  .admin-editor-panel,
  .admin-preview-panel,
  .admin-section-card,
  .admin-section-hero {
    padding: 18px;
    border-radius: 22px;
  }

  .admin-header,
  .admin-toolbar,
  .admin-object-head,
  .admin-list-head,
  .admin-list-item-head {
    flex-direction: column;
    align-items: start;
  }

  .admin-header-actions,
  .admin-toolbar-actions,
  .admin-sidebar-tool-grid,
  .admin-list-head-actions,
  .admin-list-actions {
    width: 100%;
    justify-content: flex-start;
  }

  .admin-preview-frame {
    min-height: 640px;
  }
}
