/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: #1a1a2e;
  background: #fff;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }
h1, h2, h3 { font-family: 'Playfair Display', Georgia, serif; line-height: 1.2; }

/* ── CUSTOM PROPERTIES ── */
:root {
  --burgundy: #800020;
  --burgundy-deep: #5c0017;
  --burgundy-light: #a3133a;
  --blush: #f5e6e0;
  --blush-light: #faf3f0;
  --blush-mid: #efd5cc;
  --cream: #fffcfa;
  --charcoal: #1a1a2e;
  --slate: #3d3d56;
  --grey: #6b6b80;
  --light-grey: #e8e8ee;
  --white: #ffffff;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(26,26,46,0.08);
  --shadow-lg: 0 12px 48px rgba(26,26,46,0.12);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── UTILITIES ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 20px;
}
.section-title--center { text-align: center; }
.section-subtitle {
  font-size: 1.1rem;
  color: var(--grey);
  max-width: 560px;
  line-height: 1.7;
}
.section-subtitle:where(.section-title--center) { margin: 0 auto 48px; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }
.btn-primary {
  background: var(--burgundy);
  color: var(--white);
  border: 2px solid var(--burgundy);
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--burgundy-deep);
  border-color: var(--burgundy-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(128,0,32,0.3);
}
.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline-light:hover, .btn-outline-light:focus {
  background: var(--white);
  color: var(--burgundy);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* ── BADGES ── */
.badge {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 100px;
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 500;
  backdrop-filter: blur(8px);
}

/* ── HEADER ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--light-grey);
  transition: var(--transition);
}
.site-header.scrolled {
  box-shadow: var(--shadow);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--charcoal);
}
.logo--light .logo-text { color: var(--white); }
.logo-text { letter-spacing: -0.01em; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--slate);
  position: relative;
  transition: var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--burgundy);
  transition: var(--transition);
}
.nav-links a:hover { color: var(--burgundy); }
.nav-links a:hover::after { width: 100%; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26,26,46,0.82) 0%,
    rgba(92,0,23,0.72) 50%,
    rgba(26,26,46,0.80) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding-top: 72px;
}
.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blush);
  margin-bottom: 20px;
}
.hero-headline {
  font-size: clamp(2.25rem, 6vw, 4.25rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
}
.hero-headline em {
  font-style: italic;
  color: var(--blush);
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.8);
  max-width: 580px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* ── ABOUT ── */
.about { background: var(--cream); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-text p {
  color: var(--slate);
  margin-bottom: 16px;
  line-height: 1.75;
}
.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--light-grey);
}
.stat-number {
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--burgundy);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 0.85rem;
  color: var(--grey);
  line-height: 1.4;
}

/* ── HOW IT WORKS ── */
.how-it-works { background: var(--white); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}
.step-card {
  background: var(--blush-light);
  border: 1px solid var(--blush-mid);
  border-radius: var(--radius);
  padding: 40px 32px;
  position: relative;
  transition: var(--transition);
}
.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--burgundy);
}
.step-number {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--burgundy);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: 16px;
}
.step-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 12px;
}
.step-card p {
  color: var(--grey);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ── CATS ── */
.cats { background: var(--blush-light); }
.cats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 40px;
}
.cat-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.cat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.cat-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}
.cat-card-body {
  padding: 24px;
}
.cat-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.cat-tag:where(.cat-tag) { background: #e8f5e9; color: #2e7d32; }
.cat-tag.pending { background: var(--blush); color: var(--burgundy); }
.cat-card-body h3 {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.cat-bio {
  font-size: 0.9rem;
  color: var(--grey);
  line-height: 1.65;
  margin-bottom: 16px;
}
.link-arrow {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--burgundy);
  transition: var(--transition);
}
.link-arrow:hover { gap: 4px; }
.cats-note {
  text-align: center;
  color: var(--grey);
  font-size: 0.95rem;
  max-width: 520px;
  margin: 0 auto;
}

/* ── MENU ── */
.menu { background: var(--white); }
.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.menu-text .section-subtitle { margin-bottom: 36px; }
.menu-highlights { display: flex; flex-direction: column; gap: 20px; }
.highlight {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.highlight-icon {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--burgundy);
}
.highlight strong {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 2px;
}
.highlight-desc {
  font-size: 0.9rem;
  color: var(--grey);
  line-height: 1.5;
}
.menu-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── VISIT ── */
.visit { background: var(--charcoal); color: var(--white); }
.visit .section-eyebrow { color: var(--blush); }
.visit .section-title { color: var(--white); }
.visit .section-title--center { margin-bottom: 48px; }
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: stretch;
}
.visit-info { display: flex; flex-direction: column; gap: 32px; }
.visit-block h3 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--burgundy-light);
  margin-bottom: 8px;
}
.visit-block p {
  color: rgba(255,255,255,0.8);
  line-height: 1.75;
  font-size: 0.95rem;
}
.visit-block a {
  color: var(--blush);
  border-bottom: 1px solid rgba(245,230,224,0.3);
  transition: var(--transition);
}
.visit-block a:hover { color: var(--white); border-color: var(--white); }
.visit-map {
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 400px;
}
.visit-map iframe { border-radius: var(--radius); }

/* ── FOOTER ── */
.site-footer {
  background: #111122;
  color: rgba(255,255,255,0.6);
  padding: 64px 0 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand p {
  margin-top: 16px;
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 280px;
}
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.footer-links a:hover { color: var(--white); }
.footer-contact { display: flex; flex-direction: column; gap: 8px; }
.footer-contact a {
  color: var(--blush);
  transition: var(--transition);
}
.footer-contact a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 0.8rem;
  flex-wrap: wrap;
  gap: 12px;
}

/* ── SCROLL REVEAL (progressive enhancement) ── */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── MOBILE ── */
@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--light-grey);
    box-shadow: var(--shadow);
    transform: translateY(-120%);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .nav-toggle { display: flex; }
  .about-grid,
  .menu-grid,
  .visit-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image { order: -1; }
  .steps-grid { grid-template-columns: 1fr; }
  .cats-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; margin-bottom: 32px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-headline { font-size: clamp(1.75rem, 8vw, 2.75rem); }
  .section { padding: 72px 0; }
  .about-stats { flex-direction: column; gap: 24px; }
}
