/* ═══════════════════════════════════════════════════════════
   DAILY RESTAURANT OPERATIONS REPORT — DESIGN SYSTEM
   Palette: Sahara Dusk × Coastal Fog — Luxury Hospitality
   Fonts: Cormorant Garamond (display) + Outfit (body)
═══════════════════════════════════════════════════════════ */

:root {
  /* Core Palette */
  --ink:        #1C1A17;
  --ink-soft:   #3D3830;
  --ink-muted:  #6B6358;
  --gold:       #B8924A;
  --gold-light: #D4AF72;
  --gold-pale:  #F0E4C8;
  --cream:      #FAF7F2;
  --cream-dark: #F2EDE3;
  --parchment:  #E8DFC8;
  --white:      #FFFFFF;

  /* Venue Colors */
  --cape-primary:  #2E4A6B;
  --cape-light:    #E8EFF7;
  --cape-accent:   #4A7BAF;
  --hut-primary:   #5C3D1E;
  --hut-light:     #F5EDE0;
  --hut-accent:    #9B6B3A;
  --crew-primary:  #2A4A3E;
  --crew-light:    #E4F0EC;
  --crew-accent:   #4A8A72;

  /* Status Colors */
  --status-excellent: #1A6B3A;
  --status-good:      #4A7B2E;
  --status-ok:        #8B6914;
  --status-warn:      #B85A1A;
  --status-critical:  #8B1A1A;

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Outfit', system-ui, sans-serif;

  /* Spacing */
  --section-gap: 3rem;
  --card-radius: 8px;
  --table-radius: 6px;

  /* Shadows */
  --shadow-sm:  0 1px 4px rgba(28,26,23,0.08);
  --shadow-md:  0 4px 16px rgba(28,26,23,0.10);
  --shadow-lg:  0 8px 32px rgba(28,26,23,0.12);
}

/* ─── RESET & BASE ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 15px; }

body {
  font-family: var(--font-body);
  background: #EFEBE2;
  color: var(--ink);
  line-height: 1.6;
  min-height: 100vh;
}

/* ─── REPORT WRAPPER ───────────────────────────────────── */
.report-wrapper {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem 6rem;
}

/* ─── REPORT HEADER ────────────────────────────────────── */
.report-header {
  background: var(--ink);
  color: var(--cream);
  padding: 3rem 3rem 2rem;
  margin: 0 -1.5rem 3rem;
  position: relative;
  overflow: hidden;
}

.report-header::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 400px; height: 100%;
  background: linear-gradient(135deg, transparent 40%, rgba(184,146,74,0.08) 100%);
  pointer-events: none;
}

.report-header::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}

.header-brand {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

/* Logo container — white pill so the logo reads clearly on dark bg */
.brand-logo {
  flex-shrink: 0;
  background: #ffffff;
  border-radius: 8px;
  padding: 0.55rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
}

.brand-logo img {
  height: 44px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* Vertical divider between logo and title */
.brand-divider-vertical {
  width: 1px;
  height: 52px;
  background: rgba(184,146,74,0.35);
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.brand-sub {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: var(--gold);
  text-transform: uppercase;
  opacity: 0.9;
}

.brand-title {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: 0.02em;
  line-height: 1.1;
}

.brand-divider {
  display: block;
  width: 60px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
  margin-top: 0.25rem;
}

.header-meta-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.meta-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.meta-field label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.85;
}

.meta-field input {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(184,146,74,0.3);
  border-radius: 4px;
  padding: 0.55rem 0.75rem;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.875rem;
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
}

.meta-field input:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255,255,255,0.1);
}

.meta-field input::placeholder { color: rgba(250,247,242,0.35); }

.meta-field input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(0.7) sepia(1) saturate(2) hue-rotate(5deg);
  cursor: pointer;
}

.venue-badges {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.venue-badge {
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 500;
  border: 1px solid rgba(184,146,74,0.3);
  color: rgba(250,247,242,0.6);
  cursor: default;
  transition: all 0.2s;
  letter-spacing: 0.03em;
}

.venue-badge.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
  font-weight: 600;
}

/* ─── REPORT SECTIONS ──────────────────────────────────── */
.report-section {
  background: var(--white);
  border-radius: var(--card-radius);
  padding: 2.5rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(184,146,74,0.12);
  position: relative;
  animation: fadeSlideIn 0.4s ease both;
}

@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.section-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.5rem;
  letter-spacing: 0.01em;
  line-height: 1.2;
}

.section-title::after {
  content: '';
  display: block;
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-top: 0.6rem;
}

.section-desc {
  font-size: 0.875rem;
  color: var(--ink-muted);
  margin-bottom: 1.75rem;
  max-width: 720px;
  line-height: 1.65;
}

.subsection-title {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 2rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--parchment);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* ─── VENUE TABS ───────────────────────────────────────── */
.venue-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 0;
  border-bottom: 2px solid var(--parchment);
  margin-top: 1.5rem;
}

.vtab {
  padding: 0.65rem 1.4rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border: none;
  background: transparent;
  color: var(--ink-muted);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: all 0.2s;
  white-space: nowrap;
}

.vtab:hover { color: var(--ink); background: var(--cream-dark); }

.vtab.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
  background: var(--cream);
}

.vtab-content { display: none; }
.vtab-content.active { display: block; }

/* ─── VENUE HEADER STRIPS ──────────────────────────────── */
.venue-header-strip {
  padding: 0.65rem 1.25rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 4px;
  margin: 1.25rem 0 1rem;
}

.cape-strip {
  background: var(--cape-light);
  color: var(--cape-primary);
  border-left: 3px solid var(--cape-primary);
}

.hut-strip {
  background: var(--hut-light);
  color: var(--hut-primary);
  border-left: 3px solid var(--hut-primary);
}

.crew-strip {
  background: var(--crew-light);
  color: var(--crew-primary);
  border-left: 3px solid var(--crew-primary);
}

/* ─── MEAL PERIOD BADGE ────────────────────────────────── */
.meal-period-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.9rem;
  background: var(--gold-pale);
  color: var(--gold);
  border: 1px solid var(--gold-light);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
}

.dinner-badge {
  background: #EDE8F5;
  color: #5B3D8A;
  border-color: #B8A0D4;
}

/* ─── SUMMARY CARDS ────────────────────────────────────── */
.summary-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.summary-card {
  background: var(--cream);
  border: 1px solid var(--parchment);
  border-radius: var(--card-radius);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.card-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

/* ─── FORM ELEMENTS ────────────────────────────────────── */
.styled-select,
.table-select {
  width: 100%;
  padding: 0.5rem 0.75rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--ink);
  background: var(--cream) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23B8924A' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat right 0.75rem center;
  border: 1px solid var(--parchment);
  border-radius: 5px;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
  padding-right: 2rem;
}

.styled-select:focus,
.table-select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,146,74,0.12);
}

.styled-select:hover,
.table-select:hover { border-color: var(--gold-light); }

.table-input {
  width: 100%;
  padding: 0.45rem 0.65rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--parchment);
  border-radius: 4px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.table-input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,146,74,0.1);
  background: var(--white);
}

.table-input.narrow { min-width: 80px; }

.table-input[type="date"] { min-width: 130px; }

.textarea-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.textarea-field label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.textarea-field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--parchment);
  border-radius: var(--card-radius);
  resize: vertical;
  transition: border-color 0.2s, box-shadow 0.2s;
  line-height: 1.6;
}

.textarea-field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,146,74,0.1);
  background: var(--white);
}

.textarea-field textarea::placeholder { color: var(--ink-muted); opacity: 0.6; }

.two-col-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

/* ─── TABLES ───────────────────────────────────────────── */
.report-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.845rem;
  margin-bottom: 0.5rem;
  border-radius: var(--table-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.report-table thead tr {
  background: var(--ink);
  color: var(--cream);
}

.report-table thead th {
  padding: 0.7rem 0.9rem;
  text-align: left;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.report-table tbody tr {
  border-bottom: 1px solid var(--parchment);
  transition: background 0.15s;
}

.report-table tbody tr:nth-child(even) { background: var(--cream); }
.report-table tbody tr:hover { background: var(--gold-pale); }

.report-table tbody td {
  padding: 0.6rem 0.9rem;
  vertical-align: middle;
  color: var(--ink-soft);
  font-size: 0.845rem;
}

.report-table tbody td:first-child {
  font-weight: 500;
  color: var(--ink);
  white-space: nowrap;
}

/* KPI Table special */
.kpi-table thead tr { background: linear-gradient(135deg, var(--ink), var(--ink-soft)); }

/* ─── SERVICE BADGES ───────────────────────────────────── */
.service-badge {
  display: inline-block;
  padding: 0.2rem 0.65rem;
  border-radius: 12px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.service-badge.buffet {
  background: #E8F4E8;
  color: #2A6B2A;
  border: 1px solid #A8D4A8;
}

.service-badge.alacarte {
  background: #EDE8F5;
  color: #5B3D8A;
  border: 1px solid #C4B0E0;
}

.period-cell { font-weight: 600; white-space: nowrap; }

/* ─── MEDIA UPLOAD ZONES ───────────────────────────────── */
.media-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin: 1rem 0 1.5rem;
}

.media-zone {
  position: relative;
}

.media-upload-area {
  position: relative;
  border: 2px dashed var(--parchment);
  border-radius: var(--card-radius);
  padding: 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  cursor: pointer;
  background: var(--cream);
  transition: all 0.25s;
  min-height: 140px;
  text-align: center;
}

.media-upload-area:hover {
  border-color: var(--gold);
  background: var(--gold-pale);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.media-upload-area.has-media {
  border-color: var(--gold);
  border-style: solid;
  background: var(--gold-pale);
}

.file-input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.upload-icon {
  width: 32px;
  height: 32px;
  color: var(--gold);
  opacity: 0.7;
}

.upload-icon svg { width: 100%; height: 100%; }

.upload-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
}

.upload-hint {
  font-size: 0.68rem;
  color: var(--ink-muted);
  opacity: 0.7;
}

.media-preview {
  margin-top: 0.5rem;
  border-radius: var(--card-radius);
  overflow: hidden;
  display: none;
}

.media-preview img,
.media-preview video {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: var(--card-radius);
  display: block;
}

.media-preview.visible { display: block; }

.media-remove-btn {
  position: absolute;
  top: 0.4rem;
  right: 0.4rem;
  width: 22px;
  height: 22px;
  background: var(--ink);
  color: var(--cream);
  border: none;
  border-radius: 50%;
  font-size: 0.7rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.media-remove-btn:hover { opacity: 1; }

/* ─── MENU HIGHLIGHTS GRID ─────────────────────────────── */
.menu-highlights-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.menu-category-card {
  background: var(--cream);
  border: 1px solid var(--parchment);
  border-radius: var(--card-radius);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.menu-cat-header {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--parchment);
}

.menu-category-card textarea {
  width: 100%;
  padding: 0.65rem 0.75rem;
  font-family: var(--font-body);
  font-size: 0.845rem;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--parchment);
  border-radius: 4px;
  resize: vertical;
  transition: border-color 0.2s;
  line-height: 1.55;
}

.menu-category-card textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,146,74,0.1);
}

/* ─── OPS DROPDOWN GRID ────────────────────────────────── */
.ops-dropdown-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.ops-dropdown-item {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.ops-dropdown-item label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

/* ─── INFO NOTE ────────────────────────────────────────── */
.info-note {
  background: #FFF8E8;
  border: 1px solid #E8D4A0;
  border-left: 3px solid var(--gold);
  border-radius: 4px;
  padding: 0.65rem 1rem;
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin-bottom: 1rem;
}

/* ─── ADD ROW BUTTON ───────────────────────────────────── */
.add-row-btn {
  margin-top: 0.75rem;
  padding: 0.45rem 1.1rem;
  background: transparent;
  border: 1px dashed var(--gold);
  border-radius: 4px;
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 0.05em;
}

.add-row-btn:hover {
  background: var(--gold-pale);
  border-style: solid;
}

/* ─── SIGNATURE SECTION ────────────────────────────────── */
.signature-section {
  background: var(--cream-dark);
  border-color: var(--parchment);
}

.signature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 1.5rem;
}

.sig-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--parchment);
  border-radius: var(--card-radius);
  box-shadow: var(--shadow-sm);
}

.sig-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--ink);
  text-align: center;
}

.sig-name-field input {
  width: 100%;
  padding: 0.5rem 0.75rem;
  font-family: var(--font-body);
  font-size: 0.845rem;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--parchment);
  border-radius: 4px;
  text-align: center;
  transition: border-color 0.2s;
}

.sig-name-field input:focus {
  outline: none;
  border-color: var(--gold);
}

.sig-line {
  height: 1px;
  background: var(--ink);
  margin: 0.5rem 0;
  opacity: 0.3;
}

.sig-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-muted);
  text-align: center;
}

.sig-date input {
  width: 100%;
  padding: 0.45rem 0.65rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--parchment);
  border-radius: 4px;
  text-align: center;
  transition: border-color 0.2s;
}

.sig-date input:focus {
  outline: none;
  border-color: var(--gold);
}

/* ─── FOOTER ───────────────────────────────────────────── */
.report-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--ink);
  color: var(--cream);
  padding: 0.85rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 100;
  box-shadow: 0 -4px 20px rgba(28,26,23,0.2);
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.78rem;
  color: rgba(250,247,242,0.6);
}

.footer-dot { color: var(--gold); opacity: 0.5; }

.footer-right {
  display: flex;
  gap: 0.75rem;
}

.action-btn {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 1rem;
  border-radius: 5px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 0.04em;
  border: none;
}

.action-btn svg { width: 14px; height: 14px; }

.print-btn {
  background: rgba(255,255,255,0.1);
  color: var(--cream);
  border: 1px solid rgba(255,255,255,0.15);
}

.print-btn:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.3);
}

.save-btn {
  background: var(--gold);
  color: var(--ink);
}

.save-btn:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(184,146,74,0.3);
}

/* ─── FLOATING NAV ─────────────────────────────────────── */
.floating-nav {
  position: fixed;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  z-index: 200;
}

.fnav-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--parchment);
  color: var(--ink-muted);
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.fnav-btn:hover {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
  transform: scale(1.1);
  box-shadow: var(--shadow-md);
}

.fnav-btn.active-nav {
  background: var(--ink);
  color: var(--gold);
  border-color: var(--ink);
}

/* ─── DRAG OVER STATE ──────────────────────────────────── */
.media-upload-area.drag-over {
  border-color: var(--gold);
  background: var(--gold-pale);
  transform: scale(1.02);
}

/* ─── PRINT STYLES ─────────────────────────────────────── */
@media print {
  body { background: white; font-size: 11pt; }

  .report-wrapper { max-width: 100%; padding: 0; }

  .report-header {
    background: #1C1A17 !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
    margin: 0 0 1.5rem;
    padding: 1.5rem;
  }

  .report-section {
    box-shadow: none;
    border: 1px solid #ddd;
    page-break-inside: avoid;
    margin-bottom: 1rem;
    padding: 1.5rem;
  }

  .floating-nav,
  .report-footer,
  .add-row-btn { display: none !important; }

  .vtab-content { display: block !important; }
  .venue-tabs { display: none; }

  .media-upload-area { border: 1px solid #ccc; min-height: 80px; }

  .report-table { font-size: 9pt; }

  .styled-select,
  .table-select,
  .table-input { border: 1px solid #ccc; background: white; }

  .section-title { font-size: 16pt; }
}

/* ─── RESPONSIVE ───────────────────────────────────────── */
@media (max-width: 1024px) {
  .floating-nav { display: none; }
  .header-meta-grid { grid-template-columns: repeat(2, 1fr); }
  .summary-grid { grid-template-columns: repeat(2, 1fr); }
  .media-grid { grid-template-columns: repeat(2, 1fr); }
  .ops-dropdown-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .report-header { padding: 2rem 1.5rem 1.5rem; }
  .brand-title { font-size: 1.6rem; }
  .report-section { padding: 1.5rem; }
  .header-meta-grid { grid-template-columns: 1fr 1fr; }
  .summary-grid { grid-template-columns: 1fr 1fr; }
  .two-col-fields { grid-template-columns: 1fr; }
  .menu-highlights-grid { grid-template-columns: 1fr; }
  .signature-grid { grid-template-columns: 1fr; }
  .media-grid { grid-template-columns: repeat(2, 1fr); }
  .ops-dropdown-grid { grid-template-columns: 1fr 1fr; }
  .report-footer { padding: 0.65rem 1rem; }
  .footer-left { display: none; }
  .report-table { font-size: 0.78rem; }
  .report-table thead th { font-size: 0.62rem; padding: 0.5rem 0.6rem; }
  .report-table tbody td { padding: 0.5rem 0.6rem; }
}

@media (max-width: 480px) {
  .header-meta-grid { grid-template-columns: 1fr; }
  .summary-grid { grid-template-columns: 1fr; }
  .media-grid { grid-template-columns: 1fr 1fr; }
  .ops-dropdown-grid { grid-template-columns: 1fr; }
  .venue-tabs { overflow-x: auto; }
  .vtab { font-size: 0.75rem; padding: 0.55rem 0.9rem; }
}

/* ─── SCROLLBAR ────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--cream-dark); }
::-webkit-scrollbar-thumb { background: var(--parchment); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-light); }

/* ─── SELECTION ────────────────────────────────────────── */
::selection { background: var(--gold-pale); color: var(--ink); }