:root {
  --color-bg: #fdf8f1;
  --color-surface: #ffffff;
  --color-ink: #1a0f0a;
  --color-muted: #6b5b4d;
  --color-accent: #b9362a;
  --color-accent-dark: #8a2418;
  --color-gold: #c9941f;
  --color-line: #ead9c4;

  --text-base: clamp(1rem, 0.95rem + 0.2vw, 1.0625rem);
  --text-lg: clamp(1.125rem, 1rem + 0.4vw, 1.25rem);
  --text-xl: clamp(1.5rem, 1.2rem + 0.8vw, 2rem);
  --text-2xl: clamp(2rem, 1.5rem + 1.5vw, 3rem);
  --text-hero: clamp(2.5rem, 1.5rem + 4.5vw, 5.5rem);

  --space-section: clamp(3.5rem, 2.5rem + 4vw, 7rem);
  --radius: 4px;

  --font-display: 'Playfair Display', 'Georgia', serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

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

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

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color 150ms ease;
}
a:hover { color: var(--color-accent-dark); }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(253, 248, 241, 0.92);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--color-line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 0;
  gap: 2rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--color-ink);
  letter-spacing: 0.01em;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--color-accent);
  display: grid;
  place-items: center;
  color: #fdf3df;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(185, 54, 42, 0.25);
}

.brand-text { line-height: 1.1; }
.brand-text small {
  display: block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-top: 2px;
}

.nav { display: flex; gap: 0.4rem; align-items: center; flex-wrap: wrap; }

.nav a {
  color: var(--color-ink);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius);
  position: relative;
  transition: color 150ms ease, background 150ms ease;
}
.nav a:hover { color: var(--color-accent); background: rgba(185, 54, 42, 0.06); }
.nav a.active { color: var(--color-accent); }
.nav a.active::after {
  content: '';
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.25rem;
  height: 2px;
  background: var(--color-accent);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--color-accent);
  color: #fff;
  padding: 0.85rem 1.4rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: background 150ms ease, transform 150ms ease;
}
.btn:hover { background: var(--color-accent-dark); color: #fff; transform: translateY(-1px); }

.btn-ghost {
  background: transparent;
  color: var(--color-ink);
  border: 1px solid var(--color-ink);
}
.btn-ghost:hover { background: var(--color-ink); color: var(--color-bg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: clamp(4rem, 6vw, 7rem) 0 clamp(3rem, 5vw, 5rem);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(201, 148, 31, 0.12), transparent 60%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(185, 54, 42, 0.08), transparent 60%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  position: relative;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: 1.4rem;
}
.hero-eyebrow::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--color-accent);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin-bottom: 1.4rem;
}
.hero h1 em {
  font-style: italic;
  color: var(--color-accent);
  font-weight: 400;
}

.hero-lede {
  font-size: var(--text-lg);
  color: var(--color-muted);
  max-width: 50ch;
  margin-bottom: 2rem;
  line-height: 1.55;
}

.hero-cta { display: flex; gap: 0.8rem; flex-wrap: wrap; }

.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 6px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(26, 15, 10, 0.4), rgba(26, 15, 10, 0)),
    url('https://images.unsplash.com/photo-1529042410759-befb1204b468?auto=format&fit=crop&w=900&q=70&fm=webp') center/cover;
  box-shadow: 0 30px 80px -20px rgba(26, 15, 10, 0.35);
}

.hero-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: var(--color-bg);
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 0.9rem;
  box-shadow: 0 10px 30px rgba(26, 15, 10, 0.15);
}
.hero-badge .num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
}
.hero-badge .lbl {
  font-size: 0.78rem;
  color: var(--color-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@media (max-width: 820px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { aspect-ratio: 4/3; max-height: 480px; }
}

/* ---------- Sections ---------- */
.section { padding: var(--space-section) 0; }
.section-tight { padding: clamp(2.5rem, 4vw, 4rem) 0; }

.section-head { margin-bottom: clamp(2rem, 4vw, 3.5rem); max-width: 720px; }
.section-eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-gold);
  font-weight: 600;
  margin-bottom: 1rem;
  display: block;
}
.section-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin-bottom: 1rem;
}
.section-lede {
  font-size: var(--text-lg);
  color: var(--color-muted);
  line-height: 1.55;
}

/* ---------- Feature grid ---------- */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.feature {
  background: var(--color-surface);
  padding: 2rem 1.75rem;
  border-radius: var(--radius);
  border: 1px solid var(--color-line);
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}
.feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -20px rgba(26, 15, 10, 0.18);
  border-color: var(--color-accent);
}
.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(185, 54, 42, 0.08);
  color: var(--color-accent);
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  margin-bottom: 1.25rem;
}
.feature h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}
.feature p { color: var(--color-muted); line-height: 1.6; }

/* ---------- Menu strip ---------- */
.menu-strip {
  background: var(--color-ink);
  color: #fdf3df;
  padding: var(--space-section) 0;
  position: relative;
  overflow: hidden;
}
.menu-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 80% at 90% 50%, rgba(201, 148, 31, 0.12), transparent 70%);
}
.menu-strip .section-eyebrow { color: var(--color-gold); }
.menu-strip .section-title { color: #fdf3df; }
.menu-strip .section-lede { color: #c5b59f; }

.menu-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  margin-top: 2.5rem;
  position: relative;
}
.menu-item {
  padding: 1.6rem 1.2rem;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.menu-item:last-child { border-right: none; }
.menu-item h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
  color: var(--color-gold);
  font-weight: 600;
}
.menu-item p { color: #c5b59f; font-size: 0.95rem; line-height: 1.55; }

/* ---------- Story / About split ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.split-image {
  aspect-ratio: 5/6;
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(26, 15, 10, 0.2), rgba(26, 15, 10, 0)),
    url('https://images.unsplash.com/photo-1555939594-58d7cb561ad1?auto=format&fit=crop&w=800&q=70&fm=webp') center/cover;
  box-shadow: 0 30px 60px -25px rgba(26, 15, 10, 0.35);
}
@media (max-width: 820px) {
  .split { grid-template-columns: 1fr; }
  .split-image { aspect-ratio: 4/3; }
}

.story-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-line);
}
.story-stats .stat .num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
  display: block;
}
.story-stats .stat .lbl {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-top: 0.35rem;
  display: block;
}

/* ---------- Contact / Info ---------- */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.info-card {
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  padding: 1.75rem;
  border-radius: var(--radius);
}
.info-card h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 0.7rem;
  color: var(--color-accent);
}
.info-card p { color: var(--color-muted); font-size: 0.95rem; line-height: 1.6; }
.info-card a { color: var(--color-ink); font-weight: 500; word-break: break-word; }
.info-card a:hover { color: var(--color-accent); }

/* ---------- Page header (inner pages) ---------- */
.page-hero {
  padding: clamp(3.5rem, 6vw, 6rem) 0 clamp(2rem, 4vw, 3.5rem);
  border-bottom: 1px solid var(--color-line);
  background: linear-gradient(180deg, rgba(201, 148, 31, 0.05), transparent);
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 1.5rem + 2.5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin-bottom: 0.75rem;
  max-width: 18ch;
}
.page-hero .crumbs {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 1rem;
}
.page-hero .lede {
  font-size: var(--text-lg);
  color: var(--color-muted);
  max-width: 60ch;
  line-height: 1.55;
}

/* ---------- Prose (legal pages) ---------- */
.prose {
  max-width: 750px;
  margin: 0 auto;
}
.prose h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  margin: 2.5rem 0 1rem;
  color: var(--color-ink);
  letter-spacing: -0.01em;
}
.prose h2:first-child { margin-top: 0; }
.prose h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin: 1.75rem 0 0.6rem;
  color: var(--color-accent);
}
.prose p { margin-bottom: 1rem; color: #2a1f17; }
.prose ul, .prose ol { margin: 0.5rem 0 1.25rem 1.5rem; }
.prose li { margin-bottom: 0.5rem; color: #2a1f17; }
.prose strong { color: var(--color-ink); }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: var(--color-accent);
  color: #fff;
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 0% 50%, rgba(255, 255, 255, 0.08), transparent 60%),
    radial-gradient(ellipse 60% 80% at 100% 50%, rgba(0, 0, 0, 0.15), transparent 60%);
}
.cta-banner > .container { position: relative; }
.cta-banner h2 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}
.cta-banner p { color: rgba(255, 255, 255, 0.85); margin-bottom: 1.6rem; max-width: 50ch; margin-inline: auto; }
.cta-banner .btn {
  background: var(--color-bg);
  color: var(--color-accent);
}
.cta-banner .btn:hover { background: #fff; color: var(--color-accent-dark); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--color-ink);
  color: #c5b59f;
  padding: clamp(3rem, 5vw, 4.5rem) 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 720px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}

.site-footer .brand { color: #fdf3df; }
.site-footer .brand-text small { color: #8a7a68; }
.site-footer p { line-height: 1.7; font-size: 0.95rem; }

.footer-col h5 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: #fdf3df;
  margin-bottom: 1rem;
  font-weight: 600;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.5rem; }
.footer-col a {
  color: #c5b59f;
  font-size: 0.95rem;
  transition: color 150ms ease;
}
.footer-col a:hover { color: var(--color-gold); }

.legal {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: #8a7a68;
}
.legal strong { color: #c5b59f; font-weight: 500; }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}
