:root {
  --cream: #F8F4EE;
  --forest: #1C3A2F;
  --gold: #C9A96E;
  --charcoal: #2B2521;
  --warm-white: #FDFBF7;
  --sage: #8A9E8B;
  --light-gold: #E8D9B5;
}

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

body {
  background: var(--cream);
  color: var(--charcoal);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  line-height: 1.2;
}

/* Navigation */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 60px;
  border-bottom: 1px solid rgba(43,37,33,0.08);
}
.nav__logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--forest);
  letter-spacing: 0.04em;
}
.nav__tagline {
  font-size: 0.85rem;
  color: var(--sage);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Hero */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 82vh;
  align-items: center;
  padding: 0 60px;
  gap: 40px;
  background: var(--warm-white);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 500px;
  height: 500px;
  background: radial-gradient(ellipse at center, rgba(201,169,110,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero__content {
  max-width: 520px;
}
.hero__eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 500;
}
.hero__headline {
  font-size: clamp(2.8rem, 4.5vw, 4.2rem);
  color: var(--forest);
  margin-bottom: 28px;
  font-weight: 300;
  letter-spacing: -0.01em;
}
.hero__sub {
  font-size: 1.05rem;
  color: var(--charcoal);
  opacity: 0.75;
  max-width: 440px;
  line-height: 1.7;
}

/* Gem Visual */
.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 400px;
}
.hero__gem {
  position: relative;
  width: 260px;
  height: 260px;
}
.gem-facet {
  position: absolute;
  border: 1px solid rgba(201,169,110,0.3);
  background: rgba(201,169,110,0.04);
  transition: all 0.4s ease;
}
.gem-facet--1 {
  width: 180px; height: 180px;
  top: 40px; left: 40px;
  transform: rotate(45deg);
  background: rgba(201,169,110,0.06);
}
.gem-facet--2 {
  width: 130px; height: 130px;
  top: 65px; left: 65px;
  transform: rotate(45deg);
  border-color: rgba(201,169,110,0.5);
  background: rgba(201,169,110,0.08);
}
.gem-facet--3 {
  width: 80px; height: 80px;
  top: 90px; left: 90px;
  transform: rotate(45deg);
  border-color: rgba(201,169,110,0.7);
  background: rgba(201,169,110,0.12);
}
.gem-facet--4 {
  width: 40px; height: 40px;
  top: 110px; left: 110px;
  transform: rotate(45deg);
  border-color: var(--gold);
  background: rgba(201,169,110,0.2);
}
.gem-facet--5 {
  width: 12px; height: 12px;
  top: 124px; left: 124px;
  transform: rotate(45deg);
  background: var(--gold);
}

/* Manifesto */
.manifesto {
  background: var(--forest);
  padding: 100px 60px;
}
.manifesto__inner {
  max-width: 780px;
  margin: 0 auto;
}
.manifesto__quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  color: var(--cream);
  font-weight: 300;
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 40px;
  padding-left: 40px;
  border-left: 2px solid var(--gold);
}
.manifesto__body {
  color: rgba(248,244,238,0.65);
  font-size: 1rem;
  line-height: 1.8;
  max-width: 620px;
}

/* Features */
.features {
  padding: 100px 60px;
  background: var(--cream);
}
.features__header {
  text-align: center;
  margin-bottom: 64px;
}
.features__title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--forest);
  font-weight: 300;
}
.features__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px 80px;
  max-width: 900px;
  margin: 0 auto;
}
.feature {}
.feature__icon {
  color: var(--gold);
  margin-bottom: 16px;
}
.feature__title {
  font-size: 1.3rem;
  color: var(--forest);
  margin-bottom: 12px;
  font-weight: 500;
}
.feature__body {
  color: var(--charcoal);
  opacity: 0.7;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Process */
.process {
  padding: 100px 60px;
  background: var(--warm-white);
}
.process__header {
  text-align: center;
  margin-bottom: 72px;
}
.process__title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--forest);
  font-weight: 300;
}
.process__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  max-width: 1000px;
  margin: 0 auto;
}
.step__number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  color: var(--gold);
  font-weight: 300;
  margin-bottom: 16px;
  line-height: 1;
}
.step__heading {
  font-size: 1.2rem;
  color: var(--forest);
  margin-bottom: 12px;
  font-weight: 500;
}
.step__body {
  color: var(--charcoal);
  opacity: 0.7;
  font-size: 0.92rem;
  line-height: 1.7;
}

/* Testimonials */
.testimonials {
  padding: 100px 60px;
  background: var(--forest);
}
.testimonials__header {
  text-align: center;
  margin-bottom: 64px;
}
.testimonials__title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--cream);
  font-weight: 300;
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}
.testimonial {
  padding: 36px;
  background: rgba(248,244,238,0.06);
  border: 1px solid rgba(201,169,110,0.2);
}
.testimonial--accent {
  background: rgba(201,169,110,0.1);
  border-color: rgba(201,169,110,0.4);
}
.testimonial__quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--cream);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 20px;
}
.testimonial__source {
  font-size: 0.78rem;
  color: var(--gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Closing */
.closing {
  padding: 100px 60px;
  background: var(--cream);
  text-align: center;
}
.closing__inner {
  max-width: 700px;
  margin: 0 auto;
}
.closing__headline {
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--forest);
  font-weight: 300;
  margin-bottom: 24px;
  line-height: 1.3;
}
.closing__sub {
  color: var(--charcoal);
  opacity: 0.65;
  font-size: 1rem;
  line-height: 1.7;
}

/* Footer */
.footer {
  padding: 48px 60px;
  border-top: 1px solid rgba(43,37,33,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer__logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--forest);
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}
.footer__desc {
  font-size: 0.82rem;
  color: var(--sage);
  max-width: 280px;
}
.footer__copy {
  font-size: 0.78rem;
  color: var(--sage);
}

/* Responsive */
@media (max-width: 768px) {
  .nav { padding: 20px 28px; }
  .nav__tagline { display: none; }
  .hero { grid-template-columns: 1fr; padding: 60px 28px 40px; min-height: auto; }
  .hero__visual { display: none; }
  .hero__headline { font-size: 2.2rem; }
  .manifesto, .features, .process, .testimonials, .closing { padding: 72px 28px; }
  .features__grid { grid-template-columns: 1fr; gap: 36px; }
  .process__steps { grid-template-columns: 1fr; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .footer { padding: 36px 28px; flex-direction: column; align-items: flex-start; gap: 16px; }
}