/* =====================================================================
   The Copper Table — bookings demo
   Self-contained stylesheet. No shared tokens with the main ForgePoint site.
   Front of house (public) + back of house (reservations manager).
   ===================================================================== */

:root {
  /* Surfaces */
  --bg:        #17120e;
  --bg-2:      #1d1712;
  --panel:     #211a13;
  --panel-2:   #2a2118;
  --panel-3:   #322619;
  --line:      #3a2f26;
  --line-soft: #2e251d;
  --line-strong:#4a3c2e;

  /* Ink */
  --ink:       #f4ede3;
  --ink-soft:  #d7c9b8;
  --muted:     #a3917d;
  --faint:     #7c6b58;

  /* Accents */
  --copper:    #d1904f;
  --copper-2:  #e8ab6a;
  --copper-ink:#1a1109;
  --sage:      #93a173;
  --sage-2:    #adba8b;
  --claret:    #b45a46;

  --radius:    16px;
  --radius-sm: 10px;
  --radius-xs: 7px;
  --serif:     'Fraunces', Georgia, 'Times New Roman', serif;
  --sans:      'Inter', system-ui, -apple-system, sans-serif;
  --shadow:    0 24px 60px rgba(0,0,0,.5);
  --shadow-sm: 0 8px 24px rgba(0,0,0,.35);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 92px; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.wrap { width: min(1180px, 92%); margin: 0 auto; }
.hidden { display: none !important; }
a { color: inherit; text-decoration: none; }
em { font-style: italic; }

/* When the reservations manager is open, hide the marketing chrome */
body.admin-mode { background: var(--bg-2); }
body.admin-mode .site-header,
body.admin-mode #public-view,
body.admin-mode .site-footer { display: none; }

/* ===== Buttons ===== */
.btn {
  font-family: var(--sans);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .01em;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: .74em 1.55em;
  cursor: pointer;
  transition: transform .15s ease, background .2s ease, border-color .2s ease, color .2s ease, filter .2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5em;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-solid { background: linear-gradient(180deg, var(--copper-2), var(--copper)); color: var(--copper-ink); }
.btn-solid:hover { filter: brightness(1.05); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn-ghost:hover { border-color: var(--copper); color: var(--copper-2); }
.btn-block { width: 100%; }
.btn-sm { padding: .5em 1.1em; font-size: .85rem; }

/* ===== Demo ribbon ===== */
.demo-ribbon {
  background: #100b07;
  color: var(--copper-2);
  font-size: .8rem;
  text-align: center;
  padding: .55em 1em;
  display: flex; align-items: center; justify-content: center;
  gap: 1em; flex-wrap: wrap;
  border-bottom: 1px solid var(--line-soft);
}
.demo-ribbon strong { color: var(--ink); }
.ribbon-reset {
  background: transparent;
  border: 1px solid var(--line-strong);
  color: var(--copper-2);
  border-radius: 999px;
  font-size: .74rem;
  padding: .26em .95em;
  cursor: pointer;
  font-family: var(--sans);
  transition: border-color .2s, color .2s;
}
.ribbon-reset:hover { border-color: var(--copper); color: var(--ink); }

/* ===== Header ===== */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(23,18,14,.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-soft);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; padding: .95rem 0;
}
.brand { display: flex; align-items: center; gap: .6rem; }
.brand-mark { color: var(--copper); font-size: 1rem; }
.brand-name {
  font-family: var(--serif);
  font-optical-sizing: auto;
  font-size: 1.45rem; font-weight: 600;
  letter-spacing: .005em;
}
.main-nav { display: flex; gap: 1.9rem; margin-left: auto; margin-right: 1.6rem; }
.main-nav a { color: var(--ink-soft); font-size: .94rem; position: relative; transition: color .2s; }
.main-nav a:hover, .main-nav a.is-active { color: var(--copper-2); }

/* ===== Shared section heads ===== */
.eyebrow {
  text-transform: uppercase; letter-spacing: .24em;
  font-size: .7rem; color: var(--copper); font-weight: 600;
}
.section-head { margin-bottom: 2.4rem; }
.section-title {
  font-family: var(--serif); font-optical-sizing: auto;
  font-weight: 500; font-size: clamp(2rem, 4.5vw, 3rem);
  line-height: 1.05; letter-spacing: -.01em;
}
.section-head .eyebrow { display: block; margin-bottom: .9rem; }

/* ===== Hero ===== */
.hero {
  padding: clamp(3.5rem, 8vw, 7rem) 0 clamp(3rem, 6vw, 5.5rem);
  background:
    radial-gradient(900px 480px at 82% -8%, rgba(209,144,79,.18), transparent 62%),
    radial-gradient(700px 400px at 8% 110%, rgba(147,161,115,.09), transparent 60%),
    var(--bg);
}
.hero-grid {
  display: grid; grid-template-columns: 1.15fr .85fr;
  gap: clamp(2rem, 5vw, 4.5rem); align-items: center;
}
.hero .eyebrow { display: block; margin-bottom: 1.3rem; }
.hero-title {
  font-family: var(--serif); font-optical-sizing: auto;
  font-weight: 500; font-size: clamp(2.7rem, 7vw, 5rem);
  line-height: 1.0; letter-spacing: -.015em;
}
.hero-title em { color: var(--copper-2); font-weight: 500; }
.lede { color: var(--ink-soft); font-size: 1.1rem; max-width: 46ch; margin: 1.6rem 0 2.3rem; }
.hero-actions { display: flex; gap: .9rem; flex-wrap: wrap; }

/* Signature: this week's plates */
.week-card {
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 1.7rem 1.7rem 1.4rem;
  box-shadow: var(--shadow);
  position: relative;
}
.week-card::before {
  content: ""; position: absolute; inset: 6px;
  border: 1px solid rgba(209,144,79,.22); border-radius: 11px; pointer-events: none;
}
.week-card-head {
  display: flex; align-items: baseline; justify-content: space-between;
  padding-bottom: 1rem; margin-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}
.week-kicker { font-family: var(--serif); font-size: 1.3rem; font-weight: 600; }
.week-date { font-size: .74rem; text-transform: uppercase; letter-spacing: .14em; color: var(--muted); }
.week-list { list-style: none; display: grid; gap: 1rem; }
.week-list li { display: grid; gap: .15rem; }
.week-dish { font-family: var(--serif); font-size: 1.12rem; font-weight: 500; line-height: 1.25; }
.week-note { font-size: .82rem; color: var(--muted); font-style: italic; }
.week-foot {
  margin-top: 1.3rem; padding-top: 1rem; border-top: 1px solid var(--line);
  font-size: .78rem; text-transform: uppercase; letter-spacing: .12em; color: var(--copper);
}

/* ===== Strip / highlights ===== */
.strip {
  padding: 2.6rem 0; background: var(--bg-2);
  border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft);
}
.strip-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.strip-card { position: relative; padding-left: 3.4rem; }
.strip-num {
  position: absolute; left: 0; top: -.15rem;
  font-family: var(--serif); font-size: 1.5rem; font-weight: 600; color: var(--copper);
}
.strip-card h3 { font-family: var(--serif); font-size: 1.3rem; font-weight: 600; margin-bottom: .3rem; }
.strip-card p { color: var(--ink-soft); font-size: .95rem; }

/* ===== Menu teaser ===== */
.menu-teaser { padding: clamp(3.5rem, 7vw, 6rem) 0; }
.teaser-list { display: grid; gap: 1.6rem; max-width: 780px; }
.teaser-item { }
.teaser-line { display: flex; align-items: baseline; gap: .6rem; }
.teaser-name { font-family: var(--serif); font-size: 1.35rem; font-weight: 500; }
.teaser-dots { flex: 1; border-bottom: 1px dotted var(--line-strong); transform: translateY(-.3em); }
.teaser-price { font-family: var(--serif); font-size: 1.35rem; font-weight: 600; color: var(--copper-2); font-variant-numeric: tabular-nums; }
.teaser-price::before { content: "$"; font-size: .8em; opacity: .7; margin-right: 1px; }
.teaser-desc { color: var(--muted); font-size: .95rem; margin-top: .2rem; }
.menu-teaser-cta { margin-top: 2.4rem; }

/* ===== Booking section ===== */
.book-section { padding: clamp(3.5rem, 7vw, 6rem) 0; background: var(--bg-2); border-top: 1px solid var(--line-soft); }
.book-inner {
  display: grid; grid-template-columns: 1fr 1.05fr;
  gap: clamp(2rem, 5vw, 4.5rem); align-items: center;
}
.book-copy .eyebrow { display: block; margin-bottom: .9rem; }
.book-copy .section-title { margin-bottom: 1.1rem; }
.book-copy p { color: var(--ink-soft); max-width: 42ch; }
.book-points { list-style: none; margin-top: 1.9rem; display: grid; gap: .75rem; }
.book-points li { padding-left: 1.75rem; position: relative; color: var(--ink-soft); }
.book-points li::before { content: '✓'; position: absolute; left: 0; color: var(--sage-2); font-weight: 700; }

.book-card {
  background: var(--panel);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 3vw, 2.4rem);
  box-shadow: var(--shadow);
}
.field { margin-bottom: 1.1rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field label { display: block; font-size: .8rem; font-weight: 600; color: var(--ink-soft); margin-bottom: .45rem; }
.field label .opt { color: var(--faint); font-weight: 400; }
.field input, .field select {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  padding: .82em .95em;
  color: var(--ink); font-family: var(--sans); font-size: .96rem;
  transition: border-color .2s, box-shadow .2s;
}
.field input::placeholder { color: var(--faint); }
.field input:focus, .field select:focus {
  outline: none; border-color: var(--copper);
  box-shadow: 0 0 0 3px rgba(209,144,79,.2);
}
.book-card .btn-block { margin-top: .5rem; }

/* Success state */
.book-success { text-align: center; padding: 1rem .5rem; }
.book-success .tick {
  width: 64px; height: 64px; margin: 0 auto 1.1rem; border-radius: 50%;
  background: linear-gradient(180deg, var(--copper-2), var(--copper)); color: var(--copper-ink);
  display: grid; place-items: center; font-size: 1.9rem; font-weight: 700;
}
.book-success h3 { font-family: var(--serif); font-size: 2rem; font-weight: 600; margin-bottom: .4rem; }
.book-success p { color: var(--ink-soft); }
.success-hint { margin: 1rem 0 1.6rem; }

/* ===== Story ===== */
.about-strip { padding: clamp(3.5rem, 7vw, 6rem) 0; }
.about-inner .eyebrow { display: block; margin-bottom: .9rem; }
.about-inner .section-title { margin-bottom: 1.1rem; }
.about-body { color: var(--ink-soft); max-width: 62ch; font-size: 1.1rem; }
.about-sign { font-family: var(--serif); font-style: italic; font-size: 1.2rem; color: var(--copper-2); margin-top: 1.4rem; }

/* ===== Footer ===== */
.site-footer { border-top: 1px solid var(--line-soft); background: var(--bg-2); padding: 2rem 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.footer-inner p { color: var(--faint); font-size: .9rem; }
.footer-credit strong { color: var(--copper-2); }

/* =====================================================================
   MENU PAGE
   ===================================================================== */
.menu-hero {
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(2rem, 4vw, 3rem);
  background: radial-gradient(800px 400px at 80% -20%, rgba(209,144,79,.14), transparent 60%), var(--bg);
  text-align: center;
}
.menu-hero .eyebrow { display: block; margin-bottom: 1rem; }
.menu-hero-title { font-family: var(--serif); font-weight: 500; font-size: clamp(3rem, 8vw, 5.5rem); line-height: 1; letter-spacing: -.02em; }
.menu-hero-sub { color: var(--ink-soft); max-width: 52ch; margin: 1.3rem auto 0; }

.menu-body { padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(4rem, 7vw, 6rem); }
.menu-columns { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 6vw, 5rem); }
.menu-group { margin-bottom: 3rem; }
.menu-group:last-child { margin-bottom: 0; }
.menu-group-head { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; margin-bottom: 1.5rem; padding-bottom: .7rem; border-bottom: 1px solid var(--line); }
.menu-group-title { font-family: var(--serif); font-weight: 600; font-size: 1.7rem; }
.menu-group-note { font-size: .82rem; font-style: italic; color: var(--muted); text-align: right; }

.menu-item { margin-bottom: 1.35rem; }
.menu-item:last-child { margin-bottom: 0; }
.menu-item-line { display: flex; align-items: baseline; gap: .6rem; }
.menu-item-name { font-family: var(--serif); font-size: 1.18rem; font-weight: 500; }
.menu-item-dots { flex: 1; border-bottom: 1px dotted var(--line-strong); transform: translateY(-.3em); }
.menu-item-price { font-family: var(--serif); font-size: 1.18rem; font-weight: 600; color: var(--copper-2); font-variant-numeric: tabular-nums; }
.menu-item-desc { color: var(--muted); font-size: .92rem; margin-top: .25rem; max-width: 46ch; }
.menu-tag {
  display: inline-block; font-family: var(--sans); font-size: .6rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em; color: var(--sage-2);
  border: 1px solid var(--sage); border-radius: 4px; padding: 0 .35em; margin-left: .3em;
  vertical-align: middle;
}

/* Drinks */
.menu-drinks {
  margin-top: 1.5rem; padding: clamp(1.8rem, 4vw, 2.6rem);
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
}
.drinks-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); margin-top: 1.5rem; }
.drinks-sub { font-family: var(--sans); text-transform: uppercase; letter-spacing: .14em; font-size: .74rem; color: var(--copper); font-weight: 600; margin-bottom: 1rem; }

.menu-cta { text-align: center; margin-top: 4rem; }
.menu-cta .section-title { margin-bottom: 1.4rem; }

/* =====================================================================
   BACK OF HOUSE — reservations manager
   ===================================================================== */
.admin { width: min(1240px, 94%); margin: 0 auto; padding: 1.5rem 0 3rem; }

.admin-bar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: 1rem 0 1.3rem; margin-bottom: 1.6rem;
  border-bottom: 1px solid var(--line);
}
.admin-bar-left { display: flex; align-items: center; gap: .7rem; flex-wrap: wrap; }
.admin-brand { font-family: var(--serif); font-size: 1.35rem; font-weight: 600; }
.admin-tag {
  font-size: .68rem; text-transform: uppercase; letter-spacing: .14em; font-weight: 700;
  color: var(--copper-2); border: 1px solid var(--line-strong); border-radius: 999px; padding: .28em .8em;
}
.admin-bar-right { display: flex; align-items: center; gap: 1.1rem; }
.admin-clock { font-size: .85rem; color: var(--muted); font-variant-numeric: tabular-nums; }

/* Stat tiles */
.admin-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-bottom: 1.6rem; }
.stat-tile {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 1.1rem 1.25rem;
}
.stat-label { font-size: .72rem; text-transform: uppercase; letter-spacing: .12em; color: var(--muted); font-weight: 600; }
.stat-value { font-family: var(--serif); font-size: 2.1rem; font-weight: 600; line-height: 1.1; margin-top: .3rem; font-variant-numeric: tabular-nums; }
.stat-sub { font-size: .8rem; color: var(--faint); margin-top: .1rem; }
.stat-value .stat-unit { font-size: .85rem; color: var(--muted); font-family: var(--sans); font-weight: 500; margin-left: .25em; }

/* Grid layout */
.admin-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); gap: 1.4rem; align-items: start; }

/* Calendar */
.cal-panel { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.4rem; }
.cal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.1rem; }
.cal-title { font-family: var(--serif); font-size: 1.5rem; font-weight: 600; }
.cal-nav {
  width: 36px; height: 36px; border-radius: 50%; cursor: pointer;
  background: var(--bg); border: 1px solid var(--line-strong); color: var(--ink-soft);
  font-size: 1.2rem; line-height: 1; display: grid; place-items: center;
  transition: border-color .2s, color .2s, background .2s;
}
.cal-nav:hover { border-color: var(--copper); color: var(--copper-2); }
.cal-weekdays { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; margin-bottom: 6px; }
.cal-weekdays span { text-align: center; font-size: .68rem; text-transform: uppercase; letter-spacing: .08em; color: var(--faint); font-weight: 600; }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; }

.cal-cell {
  aspect-ratio: 1 / 1; border-radius: var(--radius-xs);
  background: var(--bg); border: 1px solid var(--line-soft);
  padding: .4rem; cursor: pointer; position: relative;
  display: flex; flex-direction: column; justify-content: space-between;
  transition: border-color .15s, background .15s, transform .1s;
  min-height: 0;
}
.cal-cell:hover { border-color: var(--line-strong); background: var(--panel-2); }
.cal-cell.is-empty { background: transparent; border-color: transparent; cursor: default; }
.cal-cell.is-empty:hover { background: transparent; }
.cal-daynum { font-size: .8rem; color: var(--ink-soft); font-variant-numeric: tabular-nums; font-weight: 500; }
.cal-cell.is-past .cal-daynum { color: var(--faint); }
.cal-cell.is-today { border-color: var(--copper); }
.cal-cell.is-today .cal-daynum { color: var(--copper-2); font-weight: 700; }
.cal-cell.is-selected { background: var(--panel-3); border-color: var(--copper); box-shadow: inset 0 0 0 1px var(--copper); }
.cal-cell.is-mine::after {
  content: ""; position: absolute; top: .4rem; right: .4rem;
  width: 7px; height: 7px; border-radius: 50%; background: var(--copper-2);
  box-shadow: 0 0 0 2px var(--panel);
}
/* covers meter at the base of a cell */
.cal-meter { display: flex; align-items: center; gap: .3rem; }
.cal-count { font-size: .7rem; color: var(--muted); font-variant-numeric: tabular-nums; }
.cal-bar { flex: 1; height: 3px; border-radius: 2px; background: var(--line); overflow: hidden; }
.cal-bar span { display: block; height: 100%; background: var(--sage); border-radius: 2px; }
.cal-cell.is-busy .cal-bar span { background: var(--copper); }
.cal-cell.is-selected .cal-count { color: var(--ink-soft); }

.cal-legend { display: flex; flex-wrap: wrap; gap: 1.1rem; margin-top: 1.2rem; padding-top: 1rem; border-top: 1px solid var(--line); }
.lg { font-size: .74rem; color: var(--muted); display: inline-flex; align-items: center; gap: .4rem; }
.lg::before { content: ""; width: 10px; height: 10px; border-radius: 3px; display: inline-block; }
.lg-today::before { background: transparent; border: 1.5px solid var(--copper); }
.lg-mine::before { border-radius: 50%; background: var(--copper-2); }
.lg-busy::before { background: var(--copper); }

/* Service panel */
.service-panel { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.4rem; }
.service-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 1.2rem; padding-bottom: 1.2rem; margin-bottom: 1.1rem; border-bottom: 1px solid var(--line); flex-wrap: wrap; }
.service-kicker { font-size: .72rem; text-transform: uppercase; letter-spacing: .14em; color: var(--copper); font-weight: 600; }
.service-date { font-family: var(--serif); font-size: 1.5rem; font-weight: 600; margin-top: .2rem; }
.service-load { text-align: right; min-width: 150px; }
.load-figures { font-size: .82rem; color: var(--ink-soft); font-variant-numeric: tabular-nums; }
.load-figures span { color: var(--copper-2); font-weight: 600; }
.load-track { height: 6px; border-radius: 3px; background: var(--line); overflow: hidden; margin: .5rem 0 .35rem; }
.load-fill { height: 100%; width: 0; background: linear-gradient(90deg, var(--sage), var(--copper)); border-radius: 3px; transition: width .4s ease; }
.load-cap { font-size: .72rem; color: var(--faint); }

.service-list { display: flex; flex-direction: column; gap: .55rem; max-height: 560px; overflow-y: auto; padding-right: .2rem; }
.service-list::-webkit-scrollbar { width: 8px; }
.service-list::-webkit-scrollbar-thumb { background: var(--line-strong); border-radius: 4px; }

.res-row {
  display: grid; grid-template-columns: 62px 1fr auto; gap: .9rem; align-items: center;
  background: var(--bg); border: 1px solid var(--line-soft); border-radius: var(--radius-sm);
  padding: .8rem .95rem; transition: border-color .15s;
}
.res-row:hover { border-color: var(--line-strong); }
.res-row.is-mine { border-color: var(--copper); background: linear-gradient(180deg, var(--panel-3), var(--bg)); box-shadow: inset 3px 0 0 var(--copper); }
.res-time { font-family: var(--serif); font-size: 1.05rem; font-weight: 600; color: var(--copper-2); font-variant-numeric: tabular-nums; line-height: 1.1; }
.res-body { min-width: 0; }
.res-name { font-size: .98rem; font-weight: 600; display: flex; align-items: center; gap: .5rem; flex-wrap: wrap; }
.res-meta { font-size: .82rem; color: var(--muted); margin-top: .15rem; display: flex; gap: .7rem; flex-wrap: wrap; }
.res-meta .res-table { color: var(--ink-soft); }
.res-notes { font-style: italic; }
.res-right { display: flex; flex-direction: column; align-items: flex-end; gap: .4rem; }

.party-chip {
  font-size: .78rem; font-weight: 600; color: var(--ink-soft);
  background: var(--panel-2); border: 1px solid var(--line-strong);
  border-radius: 999px; padding: .12em .6em; white-space: nowrap;
}
.status-badge { font-size: .64rem; text-transform: uppercase; letter-spacing: .08em; font-weight: 700; border-radius: 999px; padding: .22em .7em; }
.status-confirmed { color: var(--copper-2); border: 1px solid rgba(209,144,79,.4); }
.status-seated { color: var(--sage-2); border: 1px solid rgba(147,161,115,.5); background: rgba(147,161,115,.08); }
.status-large { color: var(--claret); border: 1px solid rgba(180,90,70,.5); }
.you-badge { font-size: .62rem; text-transform: uppercase; letter-spacing: .1em; font-weight: 700; background: var(--copper); color: var(--copper-ink); border-radius: 999px; padding: .2em .65em; }

.res-cancel {
  background: transparent; border: 1px solid var(--line-strong); color: var(--muted);
  border-radius: 999px; padding: .32em .8em; font-size: .76rem; font-family: var(--sans);
  cursor: pointer; transition: border-color .2s, color .2s;
}
.res-cancel:hover { border-color: var(--claret); color: #d98974; }

.service-empty { text-align: center; color: var(--muted); padding: 3rem 1rem; }
.service-empty p { margin-bottom: 1rem; }

.admin-foot { text-align: center; color: var(--faint); font-size: .8rem; margin-top: 2rem; }

/* ===== Reveal ===== */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ===== Responsive ===== */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .week-card { max-width: 460px; }
  .admin-grid { grid-template-columns: 1fr; }
  .admin-stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .book-inner { grid-template-columns: 1fr; }
  .strip-grid { grid-template-columns: 1fr; gap: 1.4rem; }
  .menu-columns { grid-template-columns: 1fr; gap: 0; }
  .drinks-grid { grid-template-columns: 1fr; gap: 2rem; }
  .main-nav { display: none; }
}
@media (max-width: 560px) {
  .field-row { grid-template-columns: 1fr; }
  .header-inner { gap: .8rem; }
  .brand-name { font-size: 1.2rem; }
  .admin-stats { grid-template-columns: 1fr 1fr; }
  .admin-clock { display: none; }
  .res-row { grid-template-columns: 54px 1fr; }
  .res-right { flex-direction: row; align-items: center; grid-column: 1 / -1; justify-content: flex-start; padding-top: .2rem; border-top: 1px solid var(--line-soft); margin-top: .2rem; }
  .service-load { text-align: left; }
}
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .load-fill { transition: none; }
}
