@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Jost:wght@300;400;500&display=swap');

:root {
  --ivory: #FAF7F2;
  --ivory-deep: #F2EDE4;
  --ivory-darker: #E8E0D4;
  --ink: #1C1917;
  --ink-soft: #44403C;
  --ink-muted: #78716C;
  --saffron: #C27B2C;
  --saffron-light: #E8C99A;
  --saffron-pale: #FBF3E7;
  --sage: #5C7A5F;
  --line: rgba(28,25,23,0.1);
  --line-soft: rgba(28,25,23,0.06);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--ivory);
  color: var(--ink);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.5rem 5rem;
  background: rgba(250,247,242,0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-soft);
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem; font-weight: 400; letter-spacing: 0.03em;
  color: var(--ink); text-decoration: none;
}
.nav-links { display: flex; gap: 2.5rem; list-style: none; align-items: center; }
.nav-links a {
  font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-muted); text-decoration: none; transition: color 0.25s;
  font-weight: 400;
}
.nav-links a:hover, .nav-links a.active { color: var(--saffron); }
.nav-cta {
  font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase;
  padding: 0.55rem 1.4rem; border: 1px solid var(--saffron);
  color: var(--saffron); text-decoration: none; transition: all 0.25s; font-weight: 400;
}
.nav-cta:hover { background: var(--saffron); color: var(--ivory); }

/* ── PAGE ── */
.page { padding-top: 76px; }

/* ── HERO ── */
.hero {
  min-height: 92vh; display: flex; flex-direction: column;
  justify-content: center; padding: 6rem 5rem;
  position: relative; overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.hero-bg-text {
  position: absolute; right: -2rem; top: 50%;
  transform: translateY(-50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(16rem, 28vw, 26rem); font-weight: 600;
  color: transparent; -webkit-text-stroke: 1px rgba(194,123,44,0.07);
  user-select: none; pointer-events: none; line-height: 1; letter-spacing: -0.05em;
}
.hero-content { max-width: 780px; position: relative; z-index: 2; }
.eyebrow {
  font-size: 0.65rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--saffron); margin-bottom: 1.75rem;
  display: flex; align-items: center; gap: 0.85rem;
}
.eyebrow::before { content:''; display:block; width:2rem; height:1px; background:var(--saffron); }
h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 5.5vw, 5rem);
  font-weight: 300; line-height: 1.1; letter-spacing: -0.01em;
  color: var(--ink); margin-bottom: 1.75rem;
}
h1 em { font-style: italic; color: var(--saffron); font-weight: 300; }
.hero-sub {
  font-size: 1.05rem; color: var(--ink-soft); max-width: 520px;
  line-height: 1.8; font-weight: 300; margin-bottom: 2.5rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── BUTTONS ── */
.btn {
  display: inline-block; font-family: 'Jost', sans-serif;
  font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 0.85rem 2rem; text-decoration: none; transition: all 0.25s;
  cursor: pointer; border: none; font-weight: 400;
}
.btn-dark { background: var(--ink); color: var(--ivory); }
.btn-dark:hover { background: var(--saffron); }
.btn-outline { border: 1px solid var(--line); color: var(--ink-soft); background: transparent; }
.btn-outline:hover { border-color: var(--saffron); color: var(--saffron); }
.btn-saffron { background: var(--saffron); color: var(--ivory); }
.btn-saffron:hover { background: var(--ink); }

/* ── SECTIONS ── */
.section { padding: 7rem 5rem; }
.section-sm { padding: 4rem 5rem; }
.bg-ivory-deep { background: var(--ivory-deep); }
.bg-ivory-darker { background: var(--ivory-darker); }
.border-top { border-top: 1px solid var(--line); }
.border-bottom { border-bottom: 1px solid var(--line); }

.section-label {
  font-size: 0.62rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--saffron); margin-bottom: 1.25rem;
  display: flex; align-items: center; gap: 0.75rem;
}
.section-label::before { content:''; display:block; width:1.5rem; height:1px; background:var(--saffron); }

h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 300; line-height: 1.15; color: var(--ink);
  margin-bottom: 1.5rem;
}
h2 em { font-style: italic; color: var(--saffron); }
h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 400; color: var(--ink);
  margin-bottom: 0.75rem;
}
.lead {
  font-size: 1rem; color: var(--ink-soft);
  line-height: 1.85; font-weight: 300; max-width: 620px;
}
.body-text { font-size: 0.9rem; color: var(--ink-soft); line-height: 1.85; font-weight: 300; }

/* ── STATS ── */
.stats-row {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1px; background: var(--line);
}
.stat { background: var(--ivory); padding: 2.5rem 2rem; transition: background 0.3s; }
.stat:hover { background: var(--saffron-pale); }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem; font-weight: 300; color: var(--saffron);
  line-height: 1; display: block; margin-bottom: 0.5rem;
}
.stat-label {
  font-size: 0.62rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--ink-muted); display: block; margin-bottom: 0.3rem;
}
.stat-desc { font-size: 0.78rem; color: var(--ink-muted); line-height: 1.5; }

/* ── CARDS ── */
.card {
  background: var(--ivory); border: 1px solid var(--line);
  padding: 2rem; transition: all 0.3s;
}
.card:hover { border-color: var(--saffron-light); box-shadow: 0 8px 32px rgba(194,123,44,0.06); }

/* ── QUOTE ── */
.quote-section {
  padding: 8rem 5rem; text-align: center;
  background: var(--ivory-deep);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.quote-section blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 2.8vw, 2.4rem);
  font-weight: 300; font-style: italic;
  color: var(--ink); line-height: 1.55;
  max-width: 820px; margin: 0 auto 1.25rem;
}
.quote-section blockquote em { color: var(--saffron); font-style: normal; }
.quote-attr {
  font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-muted);
}

/* ── FORMS ── */
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.25rem; }
.form-label {
  font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-muted);
}
input, select, textarea {
  width: 100%; padding: 0.85rem 1rem;
  background: var(--ivory); border: 1px solid var(--line);
  color: var(--ink); font-family: 'Jost', sans-serif;
  font-size: 0.9rem; font-weight: 300; outline: none;
  transition: border-color 0.2s; resize: vertical;
}
input:focus, select:focus, textarea:focus { border-color: var(--saffron); }
input::placeholder, textarea::placeholder { color: var(--ink-muted); }
select { cursor: pointer; appearance: none; }
textarea { min-height: 120px; }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.1s; } .d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; } .d4 { transition-delay: 0.4s; }

/* ── FOOTER ── */
footer {
  padding: 5rem 5rem 3rem;
  background: var(--ink); color: var(--ivory);
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem; margin-bottom: 4rem;
  padding-bottom: 4rem; border-bottom: 1px solid rgba(245,240,232,0.1);
}
.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-weight: 300; color: var(--ivory);
  margin-bottom: 1rem;
}
.footer-tagline { font-size: 0.85rem; color: rgba(250,247,242,0.45); font-weight: 300; line-height: 1.7; max-width: 260px; }
.footer-col-title {
  font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--saffron); margin-bottom: 1.25rem;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
.footer-links a {
  font-size: 0.82rem; color: rgba(250,247,242,0.45); text-decoration: none;
  font-weight: 300; transition: color 0.2s;
}
.footer-links a:hover { color: var(--saffron); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
}
.footer-copy { font-size: 0.72rem; color: rgba(250,247,242,0.25); font-weight: 300; }
.footer-social { display: flex; gap: 0.75rem; }
.social-icon {
  width: 2.2rem; height: 2.2rem; border: 1px solid rgba(250,247,242,0.15);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; color: rgba(250,247,242,0.4);
  font-size: 0.72rem; transition: all 0.2s;
}
.social-icon:hover { border-color: var(--saffron); color: var(--saffron); }

/* ── MOBILE ── */
@media (max-width: 900px) {
  nav { padding: 1.25rem 1.5rem; }
  .nav-links { display: none; }
  .hero, .section, .section-sm, .quote-section { padding-left: 1.5rem; padding-right: 1.5rem; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  footer { padding: 3rem 1.5rem 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
}

/* ── REVEAL SCRIPT (shared) ── */
