@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Playfair+Display:wght@500;600&display=swap');

:root {
  --ink:#171717;
  --ink2:#252525;
  --paper:#f7f3ed;
  --paper2:#efe9e0;
  --gold:#a98550;
  --gold2:#c9ab7a;
  --muted:#69645d;
  --white:#fff;
  --green:#173f37;
}

* { box-sizing:border-box; }
html { scroll-behavior:smooth; }
body {
  margin:0;
  font-family:"DM Sans",system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  background:var(--paper);
  color:var(--ink);
  -webkit-font-smoothing:antialiased;
}
a { color:inherit; }
.container {
  width:min(1180px, calc(100% - 42px));
  margin:0 auto;
}

.topbar {
  position:absolute;
  inset:0 0 auto;
  z-index:10;
  padding:28px 0;
  color:white;
}
.nav {
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:24px;
}
.signature {
  line-height:1;
}
.signature strong {
  display:block;
  font-family:"Playfair Display",serif;
  font-weight:500;
  font-size:23px;
  letter-spacing:-.02em;
}
.signature span {
  display:block;
  margin-top:7px;
  font-size:9px;
  letter-spacing:.22em;
  text-transform:uppercase;
  opacity:.72;
}
.nav-cta {
  border:1px solid rgba(255,255,255,.3);
  padding:11px 15px;
  border-radius:999px;
  text-decoration:none;
  font-size:13px;
  font-weight:600;
  backdrop-filter:blur(8px);
  background:rgba(255,255,255,.06);
}

.hero {
  min-height:760px;
  background: #151515;
  color:white;
  overflow:hidden;
}
.hero-grid {
  min-height:760px;
  display:grid;
  grid-template-columns:1.05fr .95fr;
  align-items:stretch;
}
.hero-copy {
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding:125px 60px 90px 0;
  position:relative;
  background: #151515;
}
.hero-copy:after {
  content:"";
  position:absolute;
  width:290px;
  height:290px;
  border:1px solid rgba(201,171,122,.18);
  border-radius:50%;
  left:-160px;
  bottom:-130px;
}
.kicker {
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:25px;
  color:#d5c19f;
  text-transform:uppercase;
  font-size:11px;
  font-weight:700;
  letter-spacing:.18em;
}
.kicker:before {
  content:"";
  width:34px;
  height:1px;
  background:var(--gold2);
}
h1 {
  margin:0;
  font-family:"Playfair Display",serif;
  font-size:clamp(50px,5.6vw,78px);
  font-weight:500;
  line-height:1.02;
  letter-spacing:-.045em;
  max-width:730px;
}
.hero-copy p {
  margin:27px 0 0;
  font-size:18px;
  line-height:1.65;
  color:#cbc8c3;
  max-width:650px;
}
.hero-actions {
  display:flex;
  align-items:center;
  gap:18px;
  margin-top:36px;
  flex-wrap:wrap;
}
.button {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  background:var(--paper);
  color:var(--ink);
  padding:17px 21px;
  border-radius:8px;
  font-size:14px;
  font-weight:700;
  text-decoration:none;
  transition:.2s ease;
}
.button:hover { transform:translateY(-2px); }
.button svg { width:19px;height:19px; }
.hero-note {
  font-size:12px;
  color:#8e8a84;
}

.hero-photo {
  position:relative;
  min-height:760px;
}
.hero-photo img {
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center 24%;
  display:block;
  filter:saturate(.9) contrast(1.02);
}
.hero-photo:before {
  content:"";
  position:absolute;
  inset:0;
  z-index:2;
  background:
    linear-gradient(90deg,#151515 0%,rgba(21,21,21,.54) 9%,rgba(21,21,21,0) 32%),
    linear-gradient(0deg,rgba(0,0,0,.30),transparent 42%);
}


.photo-label {
  position:absolute;
  z-index:3;
  left:42px;
  bottom:42px;
  padding:17px 19px;
  border-left:2px solid var(--gold2);
  background:rgba(17,17,17,.5);
  backdrop-filter:blur(8px);
}
.photo-label strong {
  display:block;
  font-family:"Playfair Display",serif;
  font-size:20px;
  font-weight:500;
}
.photo-label span {
  display:block;
  margin-top:5px;
  color:#cfcbc5;
  font-size:11px;
  letter-spacing:.1em;
  text-transform:uppercase;
}

.value-strip {
  background:#fff;
  border-bottom:1px solid #e7e0d6;
}
.value-grid {
  min-height:106px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
}
.value-item {
  display:flex;
  align-items:center;
  gap:14px;
  padding:26px 30px;
  border-right:1px solid #e7e0d6;
}
.value-item:first-child { padding-left:0; }
.value-item:last-child { border-right:0; }
.number {
  font-family:"Playfair Display",serif;
  color:var(--gold);
  font-size:28px;
}
.value-item span:last-child {
  font-size:13px;
  line-height:1.4;
  font-weight:600;
}

.section {
  padding:110px 0;
}
.section.alt {
  background:#fff;
}
.two-col {
  display:grid;
  grid-template-columns:.88fr 1.12fr;
  gap:90px;
  align-items:start;
}
.eyebrow {
  color:#9a7849;
  text-transform:uppercase;
  font-size:11px;
  font-weight:700;
  letter-spacing:.18em;
  margin-bottom:20px;
}
h2 {
  font-family:"Playfair Display",serif;
  font-size:clamp(37px,4vw,53px);
  line-height:1.08;
  letter-spacing:-.035em;
  font-weight:500;
  margin:0;
}
.section-lead {
  margin:25px 0 0;
  color:var(--muted);
  line-height:1.7;
  font-size:17px;
}
.feature-list {
  display:grid;
  gap:0;
  border-top:1px solid #ddd5ca;
}
.feature {
  padding:24px 0;
  border-bottom:1px solid #ddd5ca;
  display:grid;
  grid-template-columns:46px 1fr;
  gap:18px;
}
.feature .icon {
  width:40px;height:40px;
  border-radius:50%;
  display:grid;place-items:center;
  border:1px solid #c8b28e;
  color:#987344;
  font-size:16px;
  font-weight:700;
}
.feature h3 {
  margin:0 0 5px;
  font-size:17px;
}
.feature p {
  margin:0;
  color:var(--muted);
  line-height:1.55;
  font-size:14px;
}

.process {
  background:var(--ink);
  color:white;
}
.process .eyebrow { color:#c7a875; }
.process h2 { max-width:710px; }
.steps {
  margin-top:52px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1px;
  background:#424242;
  border:1px solid #424242;
}
.step {
  background:#1c1c1c;
  padding:34px;
  min-height:235px;
}
.step-num {
  font-family:"Playfair Display",serif;
  color:#c7a875;
  font-size:34px;
  margin-bottom:34px;
}
.step h3 {
  margin:0 0 10px;
  font-size:18px;
}
.step p {
  margin:0;
  color:#aaa7a2;
  font-size:14px;
  line-height:1.65;
}

.audience {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:70px;
  align-items:center;
}
.audience-box {
  background:var(--paper2);
  border-radius:18px;
  padding:38px;
}
.check {
  display:flex;
  gap:14px;
  align-items:flex-start;
  padding:17px 0;
  border-bottom:1px solid #d9d1c6;
}
.check:last-child { border-bottom:0; }
.check-badge {
  width:23px;height:23px;
  border:1px solid #a98550;
  border-radius:50%;
  display:grid;place-items:center;
  color:#8d6738;
  font-size:12px;
  flex:0 0 auto;
  margin-top:1px;
}
.check span:last-child {
  line-height:1.55;
  font-size:15px;
}

.final-cta {
  padding:100px 0;
  background:var(--green);
  color:white;
  text-align:center;
  position:relative;
  overflow:hidden;
}
.final-cta:before {
  content:"";
  width:500px;height:500px;border-radius:50%;
  border:1px solid rgba(255,255,255,.08);
  position:absolute;left:-250px;top:-250px;
}
.final-cta h2 {
  max-width:790px;
  margin:0 auto;
}
.final-cta p {
  max-width:620px;
  margin:22px auto 32px;
  color:#c7d6d1;
  line-height:1.65;
}
.final-cta .button {
  background:white;
}

footer {
  padding:31px 0;
  background:#111;
  color:#777;
  font-size:11px;
}
.footer-flex {
  display:flex;
  justify-content:space-between;
  gap:20px;
  flex-wrap:wrap;
}

@media(max-width:900px) {
  .hero-grid { grid-template-columns:1fr; }
  .hero-copy {
    min-height:610px;
    padding:135px 0 65px;
  }
  .hero-photo {
    min-height:560px;
  }
  .hero-photo:before {
    background:linear-gradient(0deg,rgba(0,0,0,.45),transparent 45%);
  }
  .value-grid { grid-template-columns:1fr; }
  .value-item {
    border-right:0;
    border-bottom:1px solid #e7e0d6;
    padding:22px 0;
  }
  .two-col,.audience { grid-template-columns:1fr; gap:50px; }
  .steps { grid-template-columns:1fr; }
}
@media(max-width:560px) {
  .container { width:min(100% - 30px,1180px); }
  .topbar { padding:20px 0; }
  .signature strong { font-size:19px; }
  .nav-cta { display:none; }
  h1 { font-size:45px; }
  .hero-copy { min-height:575px; padding-top:110px; }
  .hero-copy p { font-size:16px; }
  .hero-photo { min-height:460px; }
  .photo-label { left:22px; bottom:22px; }
  .section { padding:76px 0; }
  .steps { margin-top:38px; }
  .step { min-height:auto; }
  .audience-box { padding:25px; }
}



@media(min-width: 800px) {
  .hero {
      background: linear-gradient(90deg, #151515 50%, #252525 51%);
  }
/*
  .hero-photo {
  background:#252525;
}*/

  .hero-photo:after {
  content:"";
  position:absolute;
  inset:0;
  z-index:2;
  background:
    linear-gradient(90deg,transparent 80%,#25252550 85%,#252525 100%);
  }
}