:root {
  --cream: #F5F0E8;
  --charcoal: #1C1C1E;
  --copper: #B87333;
  --sage: #6B7C6F;
  --warm-grey: #8A7F72;
  --light-warm: #EDE8DF;
  --dark-warm: #2C2620;
}

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

body {
  background: var(--cream);
  color: var(--charcoal);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 18px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: 0 0 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: sepia(20%) brightness(0.85);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(28, 28, 30, 0.1) 0%,
    rgba(28, 28, 30, 0.3) 40%,
    rgba(28, 28, 30, 0.75) 80%,
    rgba(28, 28, 30, 0.92) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin-left: 8%;
  color: var(--cream);
}

.hero-eyebrow {
  font-family: 'Cormorant SC', Georgia, serif;
  font-size: 13px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 16px;
}

.hero-lede {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 300;
  font-style: italic;
  color: var(--copper);
  margin-bottom: 32px;
}

.hero-body {
  font-size: 20px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(245, 240, 232, 0.88);
  margin-bottom: 40px;
  max-width: 560px;
}

.hero-cta {
  display: inline-block;
  background: var(--copper);
  color: var(--cream);
  font-family: 'Cormorant SC', Georgia, serif;
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 40px;
  border-radius: 2px;
  margin-bottom: 20px;
  transition: background 0.2s ease, transform 0.2s ease;
  cursor: pointer;
  border: none;
}

.hero-cta:hover {
  background: #9a6229;
  transform: translateY(-1px);
}

.hero-trust {
  font-size: 13px;
  font-weight: 300;
  color: rgba(245, 240, 232, 0.55);
  letter-spacing: 0.02em;
  margin-bottom: 40px;
}

.hero-tagline {
  font-family: 'Cormorant SC', Georgia, serif;
  font-size: 14px;
  letter-spacing: 0.18em;
  color: var(--copper);
  border-left: 2px solid var(--copper);
  padding-left: 16px;
  text-transform: uppercase;
}

/* ── SECTION SHARED ── */
.section-label {
  font-family: 'Cormorant SC', Georgia, serif;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 20px;
}

/* ── PHILOSOPHY ── */
.philosophy {
  padding: 120px 8%;
  background: var(--cream);
}

.philosophy-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.philosophy-headline {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 32px;
}

.philosophy-body {
  font-size: 19px;
  font-weight: 300;
  color: var(--dark-warm);
  margin-bottom: 20px;
  line-height: 1.8;
}

.philosophy-image {
  border-radius: 4px;
  overflow: hidden;
}

.philosophy-image img {
  width: 100%;
  display: block;
  filter: sepia(15%) brightness(0.95);
}

/* ── COMPANION ── */
.companion {
  background: var(--dark-warm);
  padding: 120px 8%;
  color: var(--cream);
}

.companion {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.companion-image {
  border-radius: 4px;
  overflow: hidden;
}

.companion-image img {
  width: 100%;
  display: block;
  filter: sepia(25%) brightness(0.9);
}

.companion-text .section-label {
  color: var(--copper);
}

.companion-headline {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 32px;
}

.companion-body {
  font-size: 19px;
  font-weight: 300;
  color: rgba(245, 240, 232, 0.85);
  margin-bottom: 20px;
  line-height: 1.8;
}

.companion-italic {
  font-style: italic;
  color: var(--copper) !important;
}

/* ── WISDOM ── */
.wisdom {
  background: var(--light-warm);
  padding: 120px 8%;
  text-align: center;
}

.wisdom-header {
  margin-bottom: 72px;
}

.wisdom-header .section-label {
  margin-bottom: 24px;
}

.wisdom-headline {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 600;
  line-height: 1.3;
}

.wisdom-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}

.wisdom-card {
  background: var(--cream);
  padding: 48px 36px;
  border-radius: 4px;
  text-align: left;
  border: 1px solid rgba(184, 115, 51, 0.2);
}

.wisdom-icon {
  font-size: 64px;
  line-height: 1;
  color: var(--copper);
  opacity: 0.5;
  font-family: Georgia, serif;
  margin-bottom: 24px;
}

.wisdom-quote {
  font-size: 20px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.6;
  color: var(--charcoal);
  margin-bottom: 24px;
}

.wisdom-attr {
  font-family: 'Cormorant SC', Georgia, serif;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--warm-grey);
}

/* ── CLOSING ── */
.closing {
  background: var(--charcoal);
  color: var(--cream);
  padding: 140px 8%;
  text-align: center;
}

.closing-text {
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 48px;
}

.closing-sub {
  font-size: 20px;
  font-weight: 300;
  color: rgba(245, 240, 232, 0.7);
  max-width: 600px;
  margin: 0 auto 20px;
  line-height: 1.8;
}

/* ── FOOTER ── */
.site-footer {
  background: var(--dark-warm);
  color: rgba(245, 240, 232, 0.5);
  padding: 60px 8%;
  text-align: center;
}

.footer-logo {
  font-family: 'Cormorant SC', Georgia, serif;
  font-size: 24px;
  letter-spacing: 0.15em;
  color: var(--cream);
  margin-bottom: 12px;
}

.footer-note {
  font-style: italic;
  font-size: 16px;
  color: var(--copper);
  margin-bottom: 24px;
}

.footer-copy {
  font-size: 13px;
  letter-spacing: 0.1em;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .hero { min-height: 90vh; padding-bottom: 60px; }
  .hero-content { margin-left: 5%; margin-right: 5%; }
  .hero-title { font-size: 38px; }
  .hero-lede { font-size: 30px; }
  .philosophy { padding: 80px 5%; }
  .philosophy-inner { grid-template-columns: 1fr; gap: 40px; }
  .philosophy-image { order: -1; }
  .companion { padding: 80px 5%; }
  .companion { grid-template-columns: 1fr; gap: 40px; }
  .companion-image { order: -1; }
  .wisdom { padding: 80px 5%; }
  .wisdom-grid { grid-template-columns: 1fr; gap: 24px; }
  .closing { padding: 100px 5%; }
}