/* Variables */
:root {
  --bg: #f5f0e8;
  --fg: #1a1814;
  --accent: #c8956c;
  --accent-dark: #a67448;
  --cream: #ede8df;
  --ink: #2c2820;
  --rule: rgba(26,24,20,0.12);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Work Sans', system-ui, sans-serif;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Nav */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 60px;
  border-bottom: 1px solid var(--rule);
}
.nav__brand {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.nav__tag {
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.4;
}

/* Hero */
.hero {
  padding: 80px 60px 100px;
  position: relative;
  overflow: hidden;
}
.hero__bg-art {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(200,149,108,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero__inner { max-width: 1000px; }
.hero__label {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.45;
  margin-bottom: 28px;
}
.hero__headline {
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 32px;
  max-width: 680px;
}
.hero__sub {
  font-size: 1rem;
  font-weight: 300;
  max-width: 480px;
  line-height: 1.75;
  margin-bottom: 64px;
  opacity: 0.6;
}
.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--rule);
  max-width: 800px;
}
.hero__stat {
  padding: 36px 40px;
  border-right: 1px solid var(--rule);
}
.hero__stat:last-child { border-right: none; }
.hero__stat-num {
  display: block;
  font-family: var(--serif);
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1;
  color: var(--accent);
  margin-bottom: 10px;
}
.hero__stat-label {
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  opacity: 0.45;
  line-height: 1.45;
}

/* Manifesto */
.manifesto {
  background: var(--fg);
  color: var(--bg);
  padding: 100px 60px;
}
.manifesto__inner { max-width: 1000px; }
.manifesto__top {
  display: grid;
  grid-template-columns: 60px 1fr 220px;
  gap: 40px;
  align-items: start;
}
.manifesto__rule-line {
  width: 1px;
  height: 100%;
  min-height: 200px;
  background: var(--accent);
  opacity: 0.6;
}
.manifesto__quote {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3.4rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.1;
  margin-bottom: 36px;
  color: var(--bg);
}
.manifesto__body {
  font-size: 0.88rem;
  line-height: 1.9;
  opacity: 0.55;
  max-width: 540px;
}
.manifesto__glyph {
  width: 200px;
  height: 240px;
}
.manifesto__glyph svg {
  width: 100%;
  height: 100%;
}

/* Services */
.services { padding: 100px 60px; }
.services__inner { max-width: 1000px; }
.services__rule-line {
  width: 50px;
  height: 1px;
  background: var(--accent);
  margin-bottom: 48px;
}
.services__title {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 64px;
  max-width: 480px;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--rule);
}
.services__card {
  background: var(--bg);
  padding: 44px 36px;
  display: flex;
  flex-direction: column;
}
.services__card--featured {
  background: var(--fg);
  color: var(--bg);
}
.services__card-label {
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.35;
  margin-bottom: 20px;
}
.services__card-name {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 400;
  margin-bottom: 12px;
  color: inherit;
}
.services__card-tagline {
  font-size: 0.78rem;
  opacity: 0.55;
  margin-bottom: 28px;
  line-height: 1.5;
}
.services__card-list {
  list-style: none;
  flex: 1;
  margin-bottom: 32px;
}
.services__card-list li {
  font-size: 0.76rem;
  padding: 9px 0;
  border-bottom: 1px solid rgba(26,24,20,0.08);
  line-height: 1.4;
  color: inherit;
  opacity: 0.7;
}
.services__card-price {
  font-family: var(--serif);
  font-size: 2.1rem;
  font-weight: 300;
  margin-bottom: 8px;
  color: var(--accent);
}
.services__card-price span {
  font-size: 0.8rem;
  color: inherit;
  opacity: 0.5;
}
.services__card-size {
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.35;
}
.services__footnote {
  margin-top: 28px;
  font-size: 0.7rem;
  opacity: 0.35;
  text-align: center;
  letter-spacing: 0.03em;
}

/* Proof */
.proof { padding: 100px 60px; background: var(--cream); }
.proof__inner { max-width: 1000px; }
.proof__rule-line {
  width: 50px;
  height: 1px;
  background: var(--accent);
  margin-bottom: 48px;
}
.proof__title {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 64px;
  max-width: 480px;
}
.proof__scenes { display: flex; flex-direction: column; gap: 40px; }
.proof__scene {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}
.proof__scene-label {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.4;
  margin-bottom: 14px;
  grid-column: 1 / -1;
}
.proof__scene-before, .proof__scene-after {
  padding: 28px 32px;
  background: var(--bg);
}
.proof__scene-marker {
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.proof__scene-before p, .proof__scene-after p {
  font-size: 0.82rem;
  line-height: 1.7;
  opacity: 0.65;
}
.proof__scene--quote {
  background: var(--bg);
  padding: 48px 48px 40px;
}
.proof__blockquote {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.65;
  margin-bottom: 20px;
  border-left: 2px solid var(--accent);
  padding-left: 28px;
}
.proof__cite {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.35;
  padding-left: 28px;
}

/* Closing */
.closing { padding: 100px 60px; }
.closing__inner { max-width: 860px; }
.closing__rule-line {
  width: 50px;
  height: 1px;
  background: var(--accent);
  margin-bottom: 48px;
}
.closing__headline {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 28px;
}
.closing__sub {
  font-size: 0.88rem;
  line-height: 1.85;
  opacity: 0.5;
  max-width: 580px;
}

/* Footer */
.footer { padding: 56px 60px; border-top: 1px solid var(--rule); }
.footer__inner { max-width: 1000px; }
.footer__brand {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
  margin-bottom: 10px;
}
.footer__tag {
  font-size: 0.75rem;
  opacity: 0.45;
  margin-bottom: 24px;
}
.footer__meta {
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.2;
}

/* Responsive */
@media (max-width: 768px) {
  .nav, .hero, .manifesto, .services, .proof, .closing, .footer {
    padding-left: 28px;
    padding-right: 28px;
  }
  .hero__stats { grid-template-columns: 1fr; }
  .hero__stat { border-right: none; border-bottom: 1px solid var(--rule); }
  .hero__stat:last-child { border-bottom: none; }
  .services__grid { grid-template-columns: 1fr; }
  .proof__scene { grid-template-columns: 1fr; }
  .manifesto__top { grid-template-columns: 1fr; gap: 20px; }
  .manifesto__rule-line { display: none; }
  .manifesto__glyph { display: none; }
  .hero__headline { font-size: 2.8rem; }
}