/* Culinary Masterminds — brand stylesheet */

:root {
  --rose: #d99a9a;
  --rose-deep: #b8736f;
  --rose-soft: #f4dcdc;
  --sage: #b9cdb0;
  --sage-deep: #7a9474;
  --cream: #faf5ee;
  --ivory: #fffaf3;
  --gold: #c9a96b;
  --gold-deep: #a07f3a;
  --charcoal: #2a2624;
  --ink: #1a1614;
  --muted: #6b625b;
  --line: #e8ddd0;

  --serif: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --script: "Great Vibes", "Pinyon Script", cursive;

  --container: 1200px;
  --shadow-sm: 0 1px 2px rgba(26,22,20,0.06), 0 1px 3px rgba(26,22,20,0.08);
  --shadow-md: 0 6px 20px rgba(26,22,20,0.10);
  --shadow-lg: 0 20px 50px rgba(26,22,20,0.18);
}

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

html { scroll-behavior: smooth; }

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

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

a { color: inherit; text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--rose-deep); }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; line-height: 1.15; color: var(--charcoal); letter-spacing: -0.01em; }
h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 2.5vw, 2rem); }

p { color: var(--muted); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; }

/* Eyebrow / script accent */
.eyebrow {
  font-family: var(--script);
  font-size: 1.75rem;
  color: var(--rose-deep);
  font-weight: 400;
  display: inline-block;
  margin-bottom: 0.25rem;
}

.section-label {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold-deep);
  display: inline-block;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.75rem;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all .25s ease;
  border-radius: 2px;
}
.btn-primary {
  background: var(--charcoal);
  color: var(--ivory);
}
.btn-primary:hover {
  background: var(--rose-deep);
  color: var(--ivory);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  background: transparent;
  color: var(--ivory);
  border: 1px solid var(--ivory);
}
.btn-outline:hover { background: var(--ivory); color: var(--charcoal); }
.btn-gold {
  background: var(--gold);
  color: var(--ivory);
}
.btn-gold:hover { background: var(--gold-deep); color: var(--ivory); }

/* ───── Header / Nav ───── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255, 250, 243, 0.0);
  transition: background .3s ease, box-shadow .3s ease, padding .3s ease;
  padding: 1.25rem 0;
}
.site-header.scrolled {
  background: rgba(255, 250, 243, 0.97);
  box-shadow: var(--shadow-sm);
  padding: 0.75rem 0;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--ivory);
  transition: color .3s ease;
}
.site-header.scrolled .brand { color: var(--charcoal); }
.brand-mark {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--rose-deep);
  color: var(--ivory);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}
.brand-text {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1;
}
.brand-text small {
  display: block;
  font-family: var(--sans);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-top: 4px;
  opacity: 0.85;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 500;
  color: var(--ivory);
  transition: color .2s ease;
  position: relative;
}
.site-header.scrolled .nav-links a { color: var(--charcoal); }
.nav-links a:hover, .nav-links a.active { color: var(--rose); }
.site-header.scrolled .nav-links a:hover,
.site-header.scrolled .nav-links a.active { color: var(--rose-deep); }

.nav-cta {
  background: var(--rose-deep);
  color: var(--ivory) !important;
  padding: 0.65rem 1.25rem;
  border-radius: 2px;
}
.nav-cta:hover { background: var(--charcoal); }

.menu-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  width: 32px; height: 32px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  color: var(--ivory);
}
.site-header.scrolled .menu-toggle { color: var(--charcoal); }
.menu-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: currentColor;
  transition: transform .3s ease, opacity .3s ease;
}

@media (max-width: 880px) {
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    height: 100vh; width: min(320px, 80vw);
    background: var(--ivory);
    flex-direction: column;
    align-items: flex-start;
    padding: 6rem 2rem 2rem;
    gap: 1.5rem;
    transition: right .35s ease;
    box-shadow: var(--shadow-lg);
  }
  .nav-links.open { right: 0; }
  .nav-links a { color: var(--charcoal) !important; font-size: 1rem; }
  .menu-toggle { display: flex; }
  .menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle.open span:nth-child(2) { opacity: 0; }
  .menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* ───── Hero ───── */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  color: var(--ivory);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-image: linear-gradient(135deg, rgba(26,22,20,0.6) 0%, rgba(184,115,111,0.45) 100%), url('../images/pic5.jpeg');
  z-index: 0;
}
.hero-content {
  position: relative; z-index: 1;
  max-width: 760px;
  padding: 0 1.5rem;
  margin: 0 auto;
  text-align: center;
}
.hero h1 {
  color: var(--ivory);
  margin: 0.5rem 0 1.5rem;
  font-weight: 400;
}
.hero h1 em {
  font-style: italic;
  color: var(--rose-soft);
}
.hero p {
  color: rgba(255, 250, 243, 0.92);
  font-size: 1.1rem;
  max-width: 580px;
  margin: 0 auto 2.5rem;
}
.hero .eyebrow { color: var(--rose-soft); }
.hero-cta { display: inline-flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }
.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  color: var(--ivory);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.85;
  z-index: 1;
  animation: bob 2.4s ease-in-out infinite;
}
@keyframes bob { 0%,100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 8px); } }

/* Page hero (smaller, for inner pages) */
.page-hero {
  min-height: 55vh;
  position: relative;
  display: flex; align-items: center; justify-content: center;
  color: var(--ivory);
  text-align: center;
  padding: 8rem 1.5rem 4rem;
}
.page-hero .hero-bg { z-index: 0; }
.page-hero-inner { position: relative; z-index: 1; max-width: 720px; }
.page-hero h1 { color: var(--ivory); }
.page-hero p { color: rgba(255, 250, 243, 0.9); margin-top: 0.75rem; }

/* ───── Sections ───── */
section { padding: clamp(4rem, 8vw, 7rem) 0; }

.section-head { text-align: center; max-width: 700px; margin: 0 auto 3.5rem; }
.section-head h2 { margin: 0.5rem 0 1rem; }
.section-head .divider {
  display: inline-block;
  width: 60px; height: 1px;
  background: var(--gold);
  margin: 0 0.75rem;
  vertical-align: middle;
}

/* Intro / About */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
@media (max-width: 880px) { .split { grid-template-columns: 1fr; } }

.split-image {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.split-image img { width: 100%; height: 100%; object-fit: cover; }
.split-image::after {
  content: "";
  position: absolute;
  top: 1.5rem; left: 1.5rem;
  right: -1.5rem; bottom: -1.5rem;
  border: 1px solid var(--gold);
  z-index: -1;
}

.split-text h2 { margin: 0.5rem 0 1.5rem; }
.split-text p { margin-bottom: 1rem; font-size: 1.05rem; }
.split-text .btn { margin-top: 1.5rem; }

/* Services grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.service-card {
  background: var(--cream);
  padding: 2.5rem 2rem;
  text-align: center;
  border: 1px solid transparent;
  transition: all .3s ease;
  position: relative;
}
.service-card:hover {
  border-color: var(--rose);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.service-icon {
  width: 64px; height: 64px;
  margin: 0 auto 1.25rem;
  background: var(--ivory);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--rose-deep);
  font-size: 1.5rem;
  border: 1px solid var(--rose-soft);
}
.service-card h3 { font-size: 1.4rem; margin-bottom: 0.75rem; }
.service-card p { font-size: 0.95rem; }

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.25rem;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(26,22,20,0.5) 100%);
  opacity: 0;
  transition: opacity .3s ease;
}
.gallery-item:hover::after { opacity: 1; }

/* Menu list */
.menu-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem;
  margin-top: 2rem;
}
.menu-category h3 {
  font-size: 1.6rem;
  text-align: center;
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.menu-category h3::after {
  content: "✦";
  color: var(--gold);
  position: absolute;
  bottom: -10px; left: 50%;
  transform: translateX(-50%);
  background: var(--ivory);
  padding: 0 0.75rem;
  font-size: 0.8rem;
}
.menu-item {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px dashed var(--line);
}
.menu-item:last-child { border-bottom: none; }
.menu-item-name {
  font-family: var(--serif);
  color: var(--charcoal);
  font-size: 1.1rem;
}
.menu-item p { font-size: 0.85rem; margin-top: 0.15rem; }

/* CTA banner */
.cta-banner {
  background-image: linear-gradient(rgba(26,22,20,0.78), rgba(184,115,111,0.55)), url('../images/pic1.jpeg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--ivory);
  text-align: center;
}
.cta-banner h2 { color: var(--ivory); }
.cta-banner p { color: rgba(255,250,243,0.92); margin: 1rem auto 2rem; max-width: 580px; font-size: 1.1rem; }

/* Testimonials */
.testimonials {
  background: var(--cream);
  text-align: center;
}
.testimonial {
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem 1rem;
}
.testimonial-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--charcoal);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}
.testimonial-quote::before, .testimonial-quote::after { content: '"'; color: var(--rose-deep); }
.testimonial-author {
  font-family: var(--sans);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

/* Forms */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
.form-grid .full { grid-column: 1 / -1; }

.field { display: flex; flex-direction: column; }
.field label {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.field input, .field select, .field textarea {
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 0.85rem 1rem;
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--ink);
  border-radius: 2px;
  transition: border-color .2s ease, background .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--rose-deep);
  background: var(--ivory);
}
.field textarea { min-height: 120px; resize: vertical; }

.form-status {
  margin-top: 1.25rem;
  padding: 1rem 1.25rem;
  border-radius: 2px;
  font-size: 0.95rem;
  display: none;
}
.form-status.success { display: block; background: #e8f3e0; color: #4a6b3c; border: 1px solid #c5dfb6; }
.form-status.error { display: block; background: #f7e0e0; color: #8b3a36; border: 1px solid #e8c4c1; }
.form-status.info { display: block; background: #e8eef5; color: #3d5778; border: 1px solid #c4d2e3; }

/* Contact info layout */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(2rem, 5vw, 4rem);
}
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-info {
  background: var(--cream);
  padding: clamp(2rem, 4vw, 3rem);
}
.contact-info h3 { margin-bottom: 1.5rem; }
.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
}
.contact-row:last-child { border-bottom: none; }
.contact-row .ico {
  flex-shrink: 0;
  width: 38px; height: 38px;
  background: var(--ivory);
  color: var(--rose-deep);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.contact-row .lbl {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
}
.contact-row .val { color: var(--charcoal); margin-top: 0.15rem; }
.contact-row a.val:hover { color: var(--rose-deep); }

/* Footer */
.site-footer {
  background: var(--charcoal);
  color: rgba(255,250,243,0.8);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
@media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

.site-footer h4 {
  color: var(--ivory);
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  font-family: var(--sans);
  font-weight: 600;
}
.site-footer ul { list-style: none; }
.site-footer ul li { margin-bottom: 0.6rem; font-size: 0.95rem; }
.site-footer a { color: rgba(255,250,243,0.75); }
.site-footer a:hover { color: var(--rose-soft); }

.footer-brand .brand-mark { background: var(--rose-deep); }
.footer-brand .brand-text { color: var(--ivory); }
.footer-brand p { color: rgba(255,250,243,0.7); margin-top: 1rem; font-size: 0.95rem; max-width: 320px; }

.social-row { display: flex; gap: 0.75rem; margin-top: 1.25rem; }
.social-row a {
  width: 38px; height: 38px;
  background: rgba(255,250,243,0.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--ivory);
  transition: background .2s ease, transform .2s ease;
}
.social-row a:hover { background: var(--rose-deep); transform: translateY(-2px); }

.footer-bottom {
  border-top: 1px solid rgba(255,250,243,0.12);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(255,250,243,0.55);
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-badges { display: flex; gap: 0.75rem; align-items: center; }
.footer-badge {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border: 1px solid rgba(255,250,243,0.25);
  border-radius: 999px;
}

/* Reveal-on-scroll */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .8s ease, transform .8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(26,22,20,0.92);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 85vh; object-fit: contain; box-shadow: var(--shadow-lg); }
.lightbox-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  background: none; border: none; color: var(--ivory);
  font-size: 2rem; cursor: pointer;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
}

/* Admin */
.admin-shell {
  min-height: 100vh;
  background: var(--cream);
  display: flex;
  flex-direction: column;
}
.admin-header {
  background: var(--charcoal);
  color: var(--ivory);
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.admin-header h1 {
  color: var(--ivory);
  font-size: 1.4rem;
  margin: 0;
}
.admin-header button {
  background: transparent;
  color: var(--ivory);
  border: 1px solid rgba(255,250,243,0.3);
  padding: 0.5rem 1rem;
  cursor: pointer;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
}
.admin-header button:hover { background: var(--rose-deep); border-color: var(--rose-deep); }

.admin-nav {
  background: var(--ink);
  padding: 0 2rem;
  display: flex;
  gap: 0;
  overflow-x: auto;
  border-bottom: 1px solid rgba(255,250,243,0.1);
}
.admin-nav a {
  color: rgba(255,250,243,0.7);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 1rem 1.25rem;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.admin-nav a:hover { color: var(--ivory); }
.admin-nav a.active { color: var(--ivory); border-bottom-color: var(--rose); }

.admin-main { padding: 2rem; flex: 1; }

.admin-card .field-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 1.5rem;
  align-items: start;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
}
.admin-card .field-row:last-child { border-bottom: none; }
.admin-card .field-row label {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
  padding-top: 0.65rem;
}
.admin-card .field-row .field-help {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 0.4rem;
  font-weight: 400;
  text-transform: none;
  letter-spacing: normal;
}
.admin-card .field-row input,
.admin-card .field-row textarea,
.admin-card .field-row select {
  width: 100%;
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 0.75rem 0.9rem;
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--ink);
  border-radius: 2px;
}
.admin-card .field-row textarea { min-height: 90px; resize: vertical; line-height: 1.5; }
.admin-card .field-row input:focus,
.admin-card .field-row textarea:focus {
  outline: none;
  border-color: var(--rose-deep);
  background: var(--ivory);
}
@media (max-width: 720px) {
  .admin-card .field-row { grid-template-columns: 1fr; gap: 0.5rem; }
  .admin-card .field-row label { padding-top: 0; }
}

.admin-card .save-bar {
  position: sticky;
  bottom: 0;
  background: var(--ivory);
  border-top: 1px solid var(--line);
  padding: 1rem 0 0;
  margin-top: 1.5rem;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1rem;
}

.admin-section-title {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--rose-deep);
  margin: 1.5rem 0 0;
  padding-top: 1.25rem;
  border-top: 2px solid var(--rose-soft);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 500;
}
.admin-section-title:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.admin-card {
  background: var(--ivory);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.5rem;
  border-radius: 4px;
}
.admin-card h2 { font-size: 1.5rem; margin-bottom: 1rem; }

.admin-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.stat {
  background: var(--ivory);
  padding: 1.5rem;
  border-radius: 4px;
  border-left: 4px solid var(--rose-deep);
  box-shadow: var(--shadow-sm);
}
.stat .label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
}
.stat .value {
  font-family: var(--serif);
  font-size: 2.25rem;
  color: var(--charcoal);
  line-height: 1;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}
.admin-table th {
  text-align: left;
  padding: 0.75rem 1rem;
  background: var(--cream);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-deep);
  border-bottom: 2px solid var(--line);
}
.admin-table td {
  padding: 1rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.admin-table tr:hover td { background: var(--cream); }

.badge {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 999px;
  font-weight: 600;
}
.badge-new { background: #fce7d8; color: #b65a1f; }
.badge-contacted { background: #e8eef5; color: #3d5778; }
.badge-confirmed { background: #e8f3e0; color: #4a6b3c; }
.badge-archived { background: #ebe5dd; color: #6b625b; }

.admin-actions { display: flex; gap: 0.5rem; }
.admin-actions select {
  background: var(--ivory);
  border: 1px solid var(--line);
  padding: 0.4rem 0.6rem;
  font-size: 0.85rem;
  border-radius: 2px;
}
.admin-actions button {
  background: var(--charcoal);
  color: var(--ivory);
  border: none;
  padding: 0.4rem 0.85rem;
  cursor: pointer;
  font-size: 0.8rem;
  border-radius: 2px;
}
.admin-actions button:hover { background: var(--rose-deep); }

.admin-login {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  background: var(--charcoal);
  padding: 2rem;
}
.admin-login-card {
  background: var(--ivory);
  padding: clamp(2rem, 5vw, 3rem);
  width: 100%;
  max-width: 420px;
  text-align: center;
  border-radius: 4px;
  box-shadow: var(--shadow-lg);
}
.admin-login-card .brand-mark { margin: 0 auto 1rem; width: 56px; height: 56px; font-size: 1.8rem; }
.admin-login-card h1 { font-size: 1.6rem; margin-bottom: 0.25rem; }
.admin-login-card p { font-size: 0.9rem; margin-bottom: 1.5rem; }
.admin-login-card .field { text-align: left; margin-bottom: 1rem; }
.admin-login-card .btn { width: 100%; }

.empty-state {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--muted);
}
