:root {
  --bg: #F5F0E8;
  --bg-alt: #EDE8DC;
  --charcoal: #1A1814;
  --cream: #F5F0E8;
  --gold: #C9A84C;
  --gold-muted: #A8893E;
  --espresso: #2C2416;
  --warm-gray: #8C7B6A;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--charcoal);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── Nav ── */
.nav {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 2rem 4rem;
  border-bottom: 1px solid rgba(26, 24, 20, 0.1);
}
.nav-brand {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: var(--charcoal);
}
.nav-tagline {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--warm-gray);
  font-weight: 400;
}

/* ── Hero ── */
.hero {
  padding: 6rem 4rem 5rem;
  position: relative;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-text {}
.hero-overline {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.hero-headline {
  font-family: var(--serif);
  font-size: clamp(3.5rem, 6vw, 6rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--charcoal);
  margin-bottom: 2rem;
  letter-spacing: -0.01em;
}
.hero-sub {
  font-size: 1rem;
  color: var(--warm-gray);
  line-height: 1.8;
  font-weight: 300;
  max-width: 380px;
}
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-image-frame {
  width: 340px;
  height: 380px;
  background: var(--charcoal);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-image-graphic {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.ori-symbol {
  font-family: var(--serif);
  font-size: 8rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  opacity: 0.85;
}
.ori-lines {
  display: flex;
  gap: 6px;
  align-items: center;
}
.ori-lines span {
  display: block;
  height: 1px;
  width: 40px;
  background: var(--gold);
  opacity: 0.4;
}
.ori-lines span:nth-child(2) { width: 60px; opacity: 0.6; }
.ori-lines span:nth-child(4) { width: 60px; opacity: 0.6; }
.ori-lines span:nth-child(3) { width: 80px; opacity: 0.8; }
.hero-image-frame::after {
  content: '';
  position: absolute;
  bottom: -1px;
  right: -1px;
  width: 0;
  height: 0;
  border-bottom: 40px solid var(--gold);
  border-left: 40px solid transparent;
}
.hero-bottom-rule {
  max-width: 1200px;
  margin: 4rem auto 0;
  height: 1px;
  background: linear-gradient(to right, var(--charcoal) 40%, transparent);
  opacity: 0.15;
}

/* ── Rooted ── */
.rooted {
  padding: 7rem 4rem;
  background: var(--charcoal);
  color: var(--cream);
}
.rooted-header {
  display: flex;
  align-items: baseline;
  gap: 2rem;
  margin-bottom: 1rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.section-label {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.rooted-title {
  font-family: var(--serif);
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 300;
  letter-spacing: 0.05em;
  color: var(--cream);
}
.rooted-body {
  max-width: 1200px;
  margin: 0 auto;
}
.rooted-desc {
  font-size: 1rem;
  color: var(--warm-gray);
  font-style: italic;
  font-family: var(--serif);
  margin-bottom: 3rem;
  font-weight: 300;
}
.rooted-pieces {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.piece-card {
  padding: 2rem 1.5rem;
  border: 1px solid rgba(201, 168, 76, 0.15);
  background: rgba(255,255,255,0.03);
  transition: border-color 0.3s ease;
}
.piece-card:hover {
  border-color: rgba(201, 168, 76, 0.4);
}
.piece-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1.5rem;
}
.piece-icon svg { width: 100%; height: 100%; }
.piece-name {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
}
.piece-detail {
  font-size: 0.8rem;
  color: var(--warm-gray);
  line-height: 1.6;
  font-weight: 300;
}

/* ── Philosophy ── */
.philosophy {
  padding: 8rem 4rem;
  background: var(--bg-alt);
}
.philosophy-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.philosophy-quote {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 300;
  line-height: 1.4;
  color: var(--charcoal);
  font-style: italic;
  border-left: 2px solid var(--gold);
  padding-left: 2rem;
}
.philosophy-values {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.value {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1.5rem;
  align-items: start;
}
.value-num {
  font-family: var(--serif);
  font-size: 0.7rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  padding-top: 0.2rem;
}
.value-title {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 0.4rem;
  letter-spacing: 0.02em;
}
.value-desc {
  font-size: 0.85rem;
  color: var(--warm-gray);
  line-height: 1.6;
  font-weight: 300;
}

/* ── Kinship ── */
.kinship {
  padding: 8rem 4rem;
  background: var(--charcoal);
}
.kinship-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.kinship-mark {
  margin-bottom: 3rem;
}
.kinship-heading {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 2rem;
  letter-spacing: 0.02em;
}
.kinship-body {
  font-size: 1rem;
  color: var(--warm-gray);
  line-height: 1.9;
  font-weight: 300;
  max-width: 640px;
  margin: 0 auto 1.5rem;
}

/* ── Closing ── */
.closing {
  padding: 8rem 4rem 7rem;
  background: var(--cream);
}
.closing-inner { max-width: 1200px; margin: 0 auto; }
.closing-headline {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 300;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}
.closing-sub {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--warm-gray);
  font-style: italic;
  font-weight: 300;
}
.closing-rule {
  margin-top: 4rem;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0.5;
}

/* ── Footer ── */
.footer {
  padding: 3rem 4rem;
  border-top: 1px solid rgba(26, 24, 20, 0.1);
}
.footer-inner { max-width: 1200px; margin: 0 auto; text-align: center; }
.footer-brand {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}
.footer-tagline {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--warm-gray);
  margin-bottom: 0.5rem;
}
.footer-copy {
  font-size: 0.75rem;
  color: var(--warm-gray);
  font-style: italic;
  font-family: var(--serif);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .nav { padding: 1.5rem 2rem; }
  .hero { padding: 4rem 2rem; }
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { order: -1; }
  .hero-image-frame { width: 240px; height: 280px; }
  .rooted { padding: 5rem 2rem; }
  .rooted-pieces { grid-template-columns: repeat(2, 1fr); }
  .philosophy { padding: 5rem 2rem; }
  .philosophy-inner { grid-template-columns: 1fr; gap: 3rem; }
  .kinship { padding: 5rem 2rem; }
  .closing { padding: 5rem 2rem 4rem; }
}
@media (max-width: 600px) {
  .nav { padding: 1.25rem 1.5rem; }
  .hero { padding: 3rem 1.5rem; }
  .hero-image-frame { width: 200px; height: 240px; }
  .ori-symbol { font-size: 5rem; }
  .rooted { padding: 4rem 1.5rem; }
  .rooted-pieces { grid-template-columns: 1fr; }
  .philosophy { padding: 4rem 1.5rem; }
  .kinship { padding: 4rem 1.5rem; }
  .closing { padding: 4rem 1.5rem 3rem; }
  .footer { padding: 2rem 1.5rem; }
}