/* ============================================================
   Comfort Cravings — Design Tokens
   Palette sampled directly from the brand's own swatch (cream,
   coral, peach, mauve, cocoa). Two literal-swatch tokens
   (--color-raspberry, --color-cocoa-soft) are darkened from
   their sampled value where needed for WCAG AA text contrast —
   the exact swatch tones live in --color-coral / --color-peach /
   --color-mauve for use as fills paired with dark text.
   Signature motif: a chocolate "drip" divider + cake-pop-stick
   bullet.
   ============================================================ */
:root {
  /* Color */
  --color-bg:        #FDEFD6; /* cream — brand swatch 1 */
  --color-bg-card:   #FFFFFF;
  --color-bg-alt:    #F5D9B8; /* richer tan/peach for banded sections — deliberately darker than --color-bg so bands actually separate; still 4.7:1 for --color-cocoa-soft text */
  --color-cocoa:     #3B2A1D; /* primary text, "chocolate" */
  --color-cocoa-soft:#80553A; /* secondary text — brand swatch 5 (cocoa), 5.6:1 on cream */
  --color-raspberry: #B8452F; /* primary accent / CTA — deepened from brand coral for text-safe contrast */
  --color-raspberry-dark: #963A26;
  --color-coral:     #ED9B96; /* brand swatch 2, literal — fills only, pair with dark text */
  --color-peach:     #F1B68F; /* brand swatch 3, literal — fills only, pair with dark text */
  --color-mauve:     #B58464; /* brand swatch 4, literal — fills only, pair with dark text */
  --color-line:      #EAD9C8; /* hairline borders on cream bg */

  /* Type */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'Karla', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono:    'Space Mono', monospace;

  /* Layout */
  --wrap-max: 1120px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 28px;
  --shadow-card: 0 8px 24px rgba(59, 38, 32, 0.08);
}

/* ============================================================
   Reset & base
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-cocoa);
  background: var(--color-bg);
  line-height: 1.6;
  font-size: 16px;
}
img { max-width: 100%; display: block; }
a { color: var(--color-raspberry); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 0.5em;
  color: var(--color-cocoa);
}
h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); font-weight: 500; }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.3rem); }
h3 { font-size: 1.3rem; }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }

.wrap {
  max-width: var(--wrap-max);
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--color-cocoa);
  color: #fff;
  padding: 10px 16px;
  z-index: 100;
}
.skip-link:focus { left: 12px; top: 12px; }

:focus-visible {
  outline: 3px solid var(--color-peach);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  text-decoration: none !important;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary {
  background: var(--color-raspberry);
  color: #fff;
  box-shadow: var(--shadow-card);
}
.btn--primary:hover { background: var(--color-raspberry-dark); }
.btn--secondary {
  background: transparent;
  border-color: var(--color-cocoa);
  color: var(--color-cocoa);
}
.btn--secondary:hover { background: var(--color-cocoa); color: #fff; }
.btn--small { padding: 9px 18px; font-size: 0.9rem; }
.btn--block { width: 100%; justify-content: center; }

/* ============================================================
   Header / Nav
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(253, 241, 236, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--color-line);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-cocoa) !important;
  text-decoration: none !important;
}
.brand__mark { color: var(--color-raspberry); display: inline-flex; }
.brand__text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
}
.brand__text--footer { font-size: 1.4rem; color: var(--color-cocoa); margin-bottom: 0.2em; }
.site-footer__logo { width: 96px; height: 96px; margin-bottom: 10px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span { display: block; height: 2px; background: var(--color-cocoa); border-radius: 2px; }

.site-nav { display: flex; align-items: center; gap: 28px; }
.site-nav ul { display: flex; gap: 24px; }
.site-nav a:not(.btn) {
  color: var(--color-cocoa-soft);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}
.site-nav a:not(.btn):hover,
.site-nav a.is-active { color: var(--color-cocoa); border-bottom-color: var(--color-raspberry); }
.nav-cta { white-space: nowrap; }

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .site-nav {
    position: fixed;
    inset: 76px 0 0 0;
    background: var(--color-bg);
    flex-direction: column;
    align-items: stretch;
    padding: 24px;
    transform: translateY(-110%);
    transition: transform 0.25s ease;
    overflow-y: auto;
  }
  .site-nav.is-open { transform: translateY(0); }
  .site-nav ul { flex-direction: column; gap: 4px; }
  .site-nav ul a { display: block; padding: 14px 4px; border-bottom: 1px solid var(--color-line); }
  .nav-cta { margin-top: 16px; }
}

/* ============================================================
   Signature drip divider
   ============================================================ */
.drip-divider { color: var(--color-cocoa); line-height: 0; margin-top: -1px; }
.drip-divider svg { width: 100%; height: 32px; display: block; }
.drip-divider--flip { transform: scaleY(-1); }

/* Cake-pop-stick bullet, used for feature lists & option chips */
.pop-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
}
.pop-list li::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 4px;
  width: 2px;
  height: 14px;
  background: var(--color-cocoa-soft);
}
.pop-list li::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-coral);
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  padding: 64px 0 48px;
  position: relative;
  overflow: hidden;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero__eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-raspberry);
  background: rgba(184, 69, 47, 0.08);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.hero__location {
  color: var(--color-cocoa-soft);
  font-size: 0.95rem;
  margin-bottom: 8px;
}
.hero__ctas { display: flex; gap: 16px; margin-top: 28px; flex-wrap: wrap; }
.hero__art {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-card);
}
.hero__art img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 800px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__art { order: -1; aspect-ratio: 16/10; }
}

/* ============================================================
   Sections / cards
   ============================================================ */
.section { padding: 64px 0; }
.section--alt { background: var(--color-bg-alt); }
.section__head { max-width: 640px; margin: 0 0 40px; }
.section__head p { color: var(--color-cocoa-soft); }

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.card {
  background: var(--color-bg-card);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-card);
}

/* Price tag chip — leans on the mono face like a bakery ticket */
.price-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.95rem;
  background: var(--color-cocoa);
  color: #fff;
  padding: 5px 12px;
  border-radius: 6px;
  transform: rotate(-1.5deg);
}

/* ============================================================
   Menu page
   ============================================================ */
.menu-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.menu-tabs a {
  font-weight: 700;
  font-size: 0.95rem;
  padding: 10px 20px;
  border-radius: 999px;
  border: 2px solid var(--color-cocoa);
  color: var(--color-cocoa);
}
.menu-tabs a.is-active,
.menu-tabs a:hover { background: var(--color-cocoa); color: #fff; text-decoration: none; }

.menu-category { margin-bottom: 56px; }
.menu-category__title {
  display: flex;
  align-items: baseline;
  gap: 14px;
  border-bottom: 2px solid var(--color-line);
  padding-bottom: 10px;
  margin-bottom: 24px;
}
.menu-category__title span {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--color-cocoa-soft);
}

.menu-item {
  background: var(--color-bg-card);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  margin-bottom: 16px;
  box-shadow: var(--shadow-card);
}
.menu-item__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  flex-wrap: wrap;
}
.menu-item__meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 10px;
  font-size: 0.88rem;
  color: var(--color-cocoa-soft);
}
.menu-item__badge {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: var(--color-mauve);
  color: var(--color-cocoa);
  padding: 3px 10px;
  border-radius: 999px;
}
.menu-item details { margin-top: 14px; }
.menu-item summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--color-raspberry);
  font-size: 0.9rem;
}
.menu-item__options {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
}
.menu-item__option-group h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-cocoa-soft);
  margin-bottom: 6px;
}
.menu-item__option-group ul li {
  font-size: 0.9rem;
  padding: 3px 0;
}

.seasonal-banner {
  background: var(--color-peach);
  color: var(--color-cocoa);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ============================================================
   Forms
   ============================================================ */
.form-card {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 48px);
  box-shadow: var(--shadow-card);
  max-width: 720px;
  margin: 0 auto;
}
.form-row { margin-bottom: 22px; }
.form-row--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
@media (max-width: 560px) { .form-row--split { grid-template-columns: 1fr; } }

/* ============================================================
   Availability calendar (order form)
   ============================================================ */
.availability-calendar {
  background: var(--color-bg-alt);
  border-radius: var(--radius-md);
  padding: 18px;
  margin-bottom: 22px;
}
.availability-calendar__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.availability-calendar__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
}
.availability-calendar__nav {
  background: var(--color-bg-card);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-sm);
  width: 32px;
  height: 32px;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
  color: var(--color-cocoa);
}
.availability-calendar__nav:hover { background: var(--color-bg); }
.availability-calendar__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.availability-calendar__weekday {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--color-cocoa-soft);
  padding-bottom: 4px;
}
.availability-calendar__day {
  aspect-ratio: 1;
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.85rem;
  cursor: default;
  background: transparent;
  color: var(--color-cocoa-soft);
}
.availability-calendar__day--empty { visibility: hidden; }
.availability-calendar__day--muted { color: var(--color-line); }
.availability-calendar__day--blocked {
  background: rgba(184, 69, 47, 0.14);
  color: var(--color-raspberry-dark);
  text-decoration: line-through;
}
.availability-calendar__day--available {
  background: rgba(241, 182, 143, 0.32);
  color: var(--color-cocoa);
  cursor: pointer;
  font-weight: 600;
}
.availability-calendar__day--available:hover { background: rgba(241, 182, 143, 0.55); }
.availability-calendar__day--selected {
  background: var(--color-coral) !important;
  color: var(--color-cocoa) !important;
}
.availability-calendar__day--today { box-shadow: inset 0 0 0 2px var(--color-peach); }
.availability-calendar__legend {
  display: flex;
  gap: 16px;
  margin-top: 12px;
  font-size: 0.78rem;
  color: var(--color-cocoa-soft);
}
.availability-calendar__legend span { display: inline-flex; align-items: center; gap: 6px; }
.availability-calendar__swatch {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 4px;
}
.availability-calendar__swatch--available { background: rgba(241, 182, 143, 0.6); }
.availability-calendar__swatch--blocked { background: rgba(184, 69, 47, 0.35); }

label {
  display: block;
  font-weight: 700;
  font-size: 0.92rem;
  margin-bottom: 6px;
}
.field-hint { font-size: 0.82rem; color: var(--color-cocoa-soft); margin-top: 4px; }
.field-error {
  font-size: 0.85rem;
  color: var(--color-raspberry-dark);
  margin-top: 4px;
  font-weight: 600;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
input[type="number"],
input[type="file"],
select,
textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--color-line);
  background: #fff;
  color: var(--color-cocoa);
}
input:focus, select:focus, textarea:focus { border-color: var(--color-raspberry); }
textarea { resize: vertical; min-height: 110px; }

.radio-group { display: flex; gap: 20px; flex-wrap: wrap; }
.radio-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  cursor: pointer;
}
.radio-group input { width: auto; }

.form-alert {
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  margin-bottom: 24px;
  font-weight: 600;
}
.form-alert--success { background: rgba(181,132,100,0.18); color: #5C3D28; }
.form-alert--error { background: rgba(184,69,47,0.1); color: var(--color-raspberry-dark); }

.upload-drop {
  border: 2px dashed var(--color-line);
  border-radius: var(--radius-sm);
  padding: 24px;
  text-align: center;
  color: var(--color-cocoa-soft);
}
#photoPreview {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}
#photoPreview img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow-card);
}

/* ============================================================
   Gallery
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 18px;
}
.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  aspect-ratio: 1;
  box-shadow: var(--shadow-card);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item__featured {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--color-raspberry);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  padding: 3px 9px;
  border-radius: 999px;
}
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(59,38,32,0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: 24px;
}
.lightbox.is-open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 80vh; border-radius: var(--radius-md); }
.lightbox__caption { color: #fff; text-align: center; margin-top: 12px; }
.lightbox__close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
}

/* ============================================================
   Allergy disclaimer gate — blocks the site until acknowledged
   ============================================================ */
body.modal-open { overflow: hidden; }
.allergy-modal {
  position: fixed;
  inset: 0;
  background: rgba(59, 38, 32, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 500;
  padding: 24px;
}
.allergy-modal__card {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: clamp(24px, 4vw, 40px);
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
}
.allergy-modal__card h2 { margin-top: 0; }

/* ============================================================
   Misc — info pages, tables, footer
   ============================================================ */
.info-block { margin-bottom: 40px; }
.info-block h3 { color: var(--color-raspberry); }

.table-simple { width: 100%; border-collapse: collapse; }
.table-simple th, .table-simple td {
  text-align: left;
  padding: 12px 16px;
  border-bottom: 1px solid var(--color-line);
}
.table-simple th { font-family: var(--font-mono); font-size: 0.8rem; text-transform: uppercase; color: var(--color-cocoa-soft); }

.site-footer {
  background: var(--color-cocoa);
  color: #f3e6df;
  padding: 48px 0 20px;
}
.site-footer a { color: #f3e6df; }
.site-footer a:hover { color: #fff; }
.site-footer__inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  margin-bottom: 32px;
}
.site-footer__heading {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #cfa792;
  margin-bottom: 10px;
}
.site-footer__hours { color: #cfa792; font-size: 0.9rem; }
.site-footer__legal {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 16px;
  font-size: 0.82rem;
  color: #cfa792;
}

/* ============================================================
   Public-site color pass — more brown + pink, less cream
   Previous pass leaned on an invented rust/terracotta, which reads
   as red-orange, not the actual dusty-rose pink from the sent
   swatch. This version puts the literal swatch pink (--color-coral)
   on buttons/badges paired with dark cocoa-brown text — both
   requested colors appear together on every CTA — and gives brown
   real surface area via a mocha-toned section band, not just thin
   text. Cream is still the base, but two solid bands (pink CTAs,
   brown section band + footer) now carry real visual weight.
   Scoped off the admin portal throughout. Every text/background
   pairing below holds at least 4.5:1 contrast.
   ============================================================ */
body:not(.admin-body) {
  --color-bg:              #FBF1E4; /* warm neutral cream */
  --color-bg-card:         #FFFFFF; /* clean white — clearly its own layer above the cream */
  --color-bg-alt:          #E8D6C4; /* light mocha/brown band, not peach — 4.5:1 for --color-cocoa-soft text */
  --color-line:            #DAC3AC;
  --color-raspberry:       #96524A; /* dusty rose-brown for link/error text — bridges pink and brown, 4.9:1 on cream */
  --color-raspberry-dark:  #7A3F38;
  --color-accent-muted:    #ED9B96; /* the literal swatch pink — buttons/badges, paired with cocoa (brown) text, 6.3:1 */
}
body:not(.admin-body) .btn--primary {
  background: var(--color-accent-muted);
  color: var(--color-cocoa);
}
body:not(.admin-body) .btn--primary:hover {
  background: color-mix(in srgb, var(--color-accent-muted) 70%, var(--color-cocoa) 30%);
}
body:not(.admin-body) .hero__eyebrow {
  color: var(--color-cocoa);
  background: rgba(237, 155, 150, 0.3); /* pink tint */
}
body:not(.admin-body) .site-nav a:not(.btn):hover,
body:not(.admin-body) .site-nav a.is-active {
  border-bottom-color: var(--color-cocoa);
}
body:not(.admin-body) .gallery-item__featured {
  background: var(--color-accent-muted);
  color: var(--color-cocoa);
}
body:not(.admin-body) .menu-item__badge {
  background: var(--color-accent-muted);
  color: var(--color-cocoa);
}
body:not(.admin-body) .availability-calendar__day--selected {
  background: var(--color-accent-muted) !important;
  color: var(--color-cocoa) !important;
}
body:not(.admin-body) .availability-calendar {
  background: var(--color-bg-card); /* clean white base — day states now stand out instead of blending into a brown container */
  border: 1px solid var(--color-line);
}
body:not(.admin-body) .availability-calendar__day--muted {
  color: #C7AF93; /* darker than --color-line so "too soon" dates are still legible, just clearly de-emphasized */
}
body:not(.admin-body) .availability-calendar__day--available {
  background: rgba(237, 155, 150, 0.4); /* stronger pink tint, matches the new accent */
  color: var(--color-cocoa);
}
body:not(.admin-body) .availability-calendar__day--available:hover {
  background: rgba(237, 155, 150, 0.65);
}
body:not(.admin-body) .availability-calendar__day--blocked {
  background: rgba(59, 42, 29, 0.18); /* brown tint instead of a reddish one — clearly distinct from the pink "available" cells */
  color: var(--color-cocoa-soft);
}
body:not(.admin-body) .availability-calendar__day--today {
  box-shadow: inset 0 0 0 2px var(--color-accent-muted);
}
body:not(.admin-body) .availability-calendar__swatch--available {
  background: rgba(237, 155, 150, 0.6);
}
body:not(.admin-body) .availability-calendar__swatch--blocked {
  background: rgba(59, 42, 29, 0.35);
}
body:not(.admin-body) input[type="text"],
body:not(.admin-body) input[type="email"],
body:not(.admin-body) input[type="tel"],
body:not(.admin-body) input[type="date"],
body:not(.admin-body) input[type="number"],
body:not(.admin-body) input[type="file"],
body:not(.admin-body) select,
body:not(.admin-body) textarea {
  background: var(--color-bg-card);
}
body:not(.admin-body) .site-header {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 2px 10px rgba(59, 38, 32, 0.06);
}
body:not(.admin-body) .hero {
  background: rgba(237, 155, 150, 0.18); /* pink tint, so the hero visibly ends where the next section begins */
}
body:not(.admin-body) .site-footer { color: #EFDDCB; }
body:not(.admin-body) .site-footer a { color: #EFDDCB; }
body:not(.admin-body) .site-footer a:hover { color: #fff; }
body:not(.admin-body) .site-footer__heading,
body:not(.admin-body) .site-footer__hours,
body:not(.admin-body) .site-footer__legal { color: #D2A78F; }

/* ============================================================
   Admin (lightweight, utilitarian — not the marketing site's voice)
   ============================================================ */
.admin-body { background: #F4F1EE; }
.admin-shell { display: flex; min-height: 100vh; }
.admin-sidebar {
  width: 220px;
  background: var(--color-cocoa);
  color: #fff;
  padding: 24px 16px;
  flex-shrink: 0;
}
.admin-sidebar__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}
.admin-sidebar a {
  display: block;
  color: #f3e6df;
  padding: 10px 12px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.92rem;
  margin-bottom: 4px;
}
.admin-sidebar a.is-active, .admin-sidebar a:hover { background: rgba(255,255,255,0.12); text-decoration: none; }
.admin-main { flex: 1; padding: 32px; max-width: 1100px; }
.admin-topbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.admin-card {
  background: #fff;
  border-radius: 12px;
  padding: 22px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  margin-bottom: 20px;
}
.status-pill {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
  text-transform: capitalize;
}
.status-pill--new { background: #FDE8D8; color: #A5590C; }
.status-pill--reviewed { background: #E4E9FB; color: #2E4AA0; }
.status-pill--confirmed { background: #DCEFD8; color: #2F6B2A; }
.status-pill--completed { background: #E4E4E4; color: #444; }
.status-pill--cancelled { background: #F8DADE; color: #A32A4A; }
.admin-login-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg);
}
.admin-login-logo { display: block; width: 120px; height: 120px; margin: 0 auto 12px; }
