:root {
  --accent: #8b3a3a;
  --accent-dark: #6b2828;
  --accent-tint: #f0e3e0;
  --dark: #241f1c;
  --dark-soft: #2f2925;
  --cream: #f6f1e8;
  --cream-tint: #efe8db;
  --white: #ffffff;
  --muted: #6b6359;
  --line: #e0d8cb;
  --maxw: 1200px;
  --nav-h: 72px;
  --banner: 42px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Crimson Pro', Georgia, serif;
  font-weight: 400;
  color: var(--dark);
  background: var(--cream);
  line-height: 1.6;
  font-size: 18px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a { color: var(--accent); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--accent-dark); }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Crimson Pro', serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.01em;
  padding: 13px 24px;
  border-radius: 4px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all .2s ease;
  text-decoration: none;
  line-height: 1;
}
.btn-lg { padding: 17px 32px; font-size: 17px; }
.btn-icon { width: 18px; height: 18px; flex-shrink: 0; }

.btn-filled {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn-filled:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-accent {
  background: var(--cream);
  color: var(--dark);
  border-color: var(--cream);
}
.btn-accent:hover {
  background: var(--white);
  color: var(--dark);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  border-color: rgba(246, 241, 232, 0.5);
}
.btn-outline:hover {
  border-color: var(--cream);
  color: var(--white);
  background: rgba(246, 241, 232, 0.08);
}

.btn-outline-light {
  background: transparent;
  color: var(--cream);
  border-color: rgba(246, 241, 232, 0.45);
}
.btn-outline-light:hover {
  border-color: var(--cream);
  background: rgba(246, 241, 232, 0.08);
  color: var(--white);
}

/* ---------- NAV ---------- */
.site-nav {
  position: sticky;
  top: 42px;
  z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 32px;
}
.wordmark {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--dark);
  font-weight: 700;
  font-size: 21px;
  letter-spacing: -0.01em;
  margin-right: auto;
}
.wordmark:hover { color: var(--accent); }
.wordmark-icon { width: 26px; height: 26px; color: var(--accent); flex-shrink: 0; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav-links a {
  color: var(--dark);
  font-weight: 500;
  font-size: 16px;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width .25s ease;
}
.nav-links a:hover { color: var(--accent); }
.nav-links a:hover::after { width: 100%; }

.nav-cta { white-space: nowrap; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--dark);
  transition: all .25s ease;
  margin: 0 auto;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--cream);
  padding: 18px 28px 28px;
  gap: 16px;
  border-bottom: 1px solid var(--line);
}
.mobile-menu[hidden] { display: none; }
.mobile-menu a { color: var(--dark); font-size: 18px; font-weight: 500; }
.mobile-menu .btn { justify-content: center; }

/* ---------- HERO ---------- */
.hero {
  background: var(--dark);
  color: var(--cream);
  position: relative;
  overflow: hidden;
  padding: 80px 0 90px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 20%, rgba(139, 58, 58, 0.28), transparent 55%),
    radial-gradient(ellipse at 85% 80%, rgba(139, 58, 58, 0.12), transparent 50%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-text { max-width: 600px; }

.eyebrow-pill {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
  background: rgba(246, 241, 232, 0.1);
  border: 1px solid rgba(246, 241, 232, 0.25);
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 26px;
}

.hero-headline {
  font-weight: 800;
  font-size: clamp(38px, 5.2vw, 62px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
  color: var(--white);
}
.hero-sub {
  font-size: 20px;
  line-height: 1.55;
  color: rgba(246, 241, 232, 0.85);
  max-width: 520px;
  margin-bottom: 38px;
  font-weight: 400;
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-image {
  position: relative;
  justify-self: end;
}
.hero-image img {
  width: 100%;
  max-width: 440px;
  height: auto;
  border-radius: 2px;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.5);
  border: 1px solid rgba(246, 241, 232, 0.12);
}
.hero-image-caption {
  position: absolute;
  bottom: -28px;
  right: 0;
  font-size: 13px;
  color: rgba(246, 241, 232, 0.6);
  letter-spacing: 0.05em;
  font-style: italic;
}
.hero-fade {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--cream));
  pointer-events: none;
}

/* ---------- SECTION SHARED ---------- */
section { scroll-margin-top: calc(var(--banner) + var(--nav-h) + 10px); }

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.eyebrow {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.eyebrow-light { color: rgba(246, 241, 232, 0.85); }

.section-title {
  font-weight: 700;
  font-size: clamp(30px, 3.6vw, 44px);
  line-height: 1.12;
  letter-spacing: -0.015em;
  color: var(--dark);
  margin-bottom: 16px;
}
.section-lede {
  font-size: 19px;
  color: var(--muted);
  line-height: 1.5;
}

/* ---------- PILLARS ---------- */
.pillars {
  background: var(--cream);
  padding: 90px 0 80px;
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.pillar {
  text-align: left;
  padding: 0 8px;
}
.pillar-icon {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--accent-tint);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.pillar-icon svg { width: 26px; height: 26px; }
.pillar h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.2;
}
.pillar p {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.55;
}

/* ---------- OFFERINGS ---------- */
.offerings {
  background: var(--cream-tint);
  padding: 90px 0;
}
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 36px 30px 34px;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px -16px rgba(36, 31, 28, 0.18);
}
.card-icon {
  width: 52px; height: 52px;
  border-radius: 8px;
  background: var(--accent-tint);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.card-icon svg { width: 26px; height: 26px; }
.card h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
  line-height: 1.2;
}
.card p {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.6;
}

/* ---------- PROOF ---------- */
.proof {
  background: var(--dark);
  padding: 70px 0;
}
.stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.stat {
  flex: 1;
  min-width: 200px;
  text-align: center;
  padding: 10px 20px;
}
.stat-number {
  display: block;
  font-size: clamp(40px, 4.5vw, 58px);
  font-weight: 800;
  color: var(--cream);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.stat-label {
  display: block;
  font-size: 15px;
  color: rgba(246, 241, 232, 0.7);
  letter-spacing: 0.03em;
  line-height: 1.4;
}
.stat-divider {
  width: 1px;
  height: 70px;
  background: rgba(246, 241, 232, 0.18);
}

/* ---------- ABOUT ---------- */
.about {
  background: var(--cream);
  padding: 100px 0;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 60px;
  align-items: center;
}
.about-image img {
  width: 100%;
  max-width: 460px;
  height: auto;
  border-radius: 2px;
  box-shadow: 0 24px 50px -18px rgba(36, 31, 28, 0.3);
}
.about-text .eyebrow { margin-bottom: 12px; }
.about-text .section-title { text-align: left; margin-bottom: 22px; }
.about-text p {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 18px;
  line-height: 1.65;
  max-width: 580px;
}
.about-hours {
  margin-top: 28px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
  max-width: 420px;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 16px;
  border-bottom: 1px solid var(--line);
}
.hours-row:last-child { border-bottom: none; }
.hours-day { font-weight: 600; color: var(--dark); }
.hours-time { color: var(--muted); }
.hours-row.closed .hours-time { color: var(--accent); font-style: italic; }

/* ---------- CTA BAND ---------- */
.cta-band {
  background: var(--dark);
  color: var(--cream);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(139, 58, 58, 0.22), transparent 60%);
  pointer-events: none;
}
.cta-inner {
  position: relative;
  text-align: center;
  max-width: 760px;
}
.cta-headline {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 18px;
}
.cta-sub {
  font-size: 19px;
  color: rgba(246, 241, 232, 0.82);
  margin-bottom: 36px;
  line-height: 1.5;
}
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: #1c1815;
  color: rgba(246, 241, 232, 0.8);
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(246, 241, 232, 0.1);
}
.footer-wordmark {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--cream);
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 16px;
}
.footer-wordmark .wordmark-icon { color: var(--accent); }
.footer-tagline {
  font-size: 16px;
  color: rgba(246, 241, 232, 0.6);
  line-height: 1.5;
  max-width: 320px;
}
.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 18px;
}
.footer-col a, .footer-col p {
  display: block;
  font-size: 16px;
  color: rgba(246, 241, 232, 0.65);
  margin-bottom: 10px;
  line-height: 1.5;
}
.footer-col a:hover { color: var(--cream); }
.footer-mail, .footer-hours { margin-top: 14px; }

.footer-bottom { padding: 22px 0; }
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p {
  font-size: 14px;
  color: rgba(246, 241, 232, 0.5);
}
.footer-credit { font-style: italic; }

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

/* ---------- RESPONSIVE ---------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero-image { justify-self: start; max-width: 380px; }
  .hero-image img { max-width: 100%; }
  .pillars-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-grid { grid-template-columns: 1fr; gap: 44px; }
  .about-image { max-width: 420px; }
  .cards-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 760px) {
  body { font-size: 17px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .mobile-menu { display: flex; }
  .hero { padding: 56px 0 70px; }
  .hero-cta .btn { flex: 1 1 100%; justify-content: center; }
  .stats-row { flex-direction: column; gap: 24px; }
  .stat-divider { width: 60px; height: 1px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .section-head { margin-bottom: 40px; }
  .cta-buttons .btn { flex: 1 1 100%; justify-content: center; }
}

@media (max-width: 480px) {
  .container, .nav-inner { padding: 0 20px; }
  .hero-headline { font-size: 34px; }
  .hero-sub { font-size: 18px; }
  .btn-lg { padding: 15px 24px; font-size: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}