
:root{
  --black:#050505;
  --charcoal:#0d0d0e;
  --panel:#121213;
  --panel-2:#171412;
  --text:#f4efe8;
  --muted:#b9aca1;
  --copper:#c06f3d;
  --copper-2:#e0a16f;
  --copper-dark:#74401f;
  --line:rgba(224,161,111,.22);
  --shadow:0 24px 80px rgba(0,0,0,.45);
}

*{box-sizing:border-box}

html{scroll-behavior:smooth}

body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  color:var(--text);
  background:
    radial-gradient(circle at top right, rgba(192,111,61,.16), transparent 38%),
    radial-gradient(circle at top left, rgba(224,161,111,.08), transparent 28%),
    var(--black);
}

body.nav-open{overflow:hidden}

a{color:inherit;text-decoration:none}

img{max-width:100%;display:block}

.container{
  width:min(1180px, calc(100% - 40px));
  margin:0 auto;
}

.site-header{
  position:sticky;
  top:0;
  z-index:20;
  height:86px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 clamp(20px,4vw,54px);
  background:rgba(5,5,5,.86);
  backdrop-filter:blur(16px);
  border-bottom:1px solid var(--line);
}

.brand img{width:185px;height:auto}

.site-nav{
  display:flex;
  align-items:center;
  gap:30px;
  color:#d8cec5;
  font-size:13px;
  text-transform:uppercase;
  letter-spacing:.12em;
  font-weight:700;
}

.site-nav a:hover{color:var(--copper-2)}

.nav-button{
  padding:13px 18px;
  border:1px solid rgba(224,161,111,.45);
  background:linear-gradient(135deg,var(--copper-dark),var(--copper));
  color:white!important;
  box-shadow:0 12px 32px rgba(192,111,61,.22);
}

.nav-toggle{
  display:none;
  border:0;
  background:transparent;
  width:42px;
  height:42px;
  padding:8px;
}

.nav-toggle span{
  display:block;
  height:2px;
  background:var(--copper-2);
  margin:7px 0;
}

.hero{
  position:relative;
  overflow:hidden;
  min-height:calc(100vh - 86px);
  display:grid;
  align-items:center;
  border-bottom:1px solid var(--line);
}

.hero-bg{
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(5,5,5,.98) 0%, rgba(5,5,5,.78) 48%, rgba(5,5,5,.4) 100%),
    radial-gradient(circle at 76% 42%, rgba(192,111,61,.22), transparent 32%);
}

.hero-grid{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:60px;
  align-items:center;
  padding:78px 0;
}

.eyebrow{
  margin:0 0 16px;
  color:var(--copper-2);
  font-size:13px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.22em;
}

h1,h2,h3{
  margin:0;
  line-height:1;
}

h1{
  font-family:Cinzel,serif;
  font-size:clamp(42px,6vw,82px);
  text-transform:uppercase;
  letter-spacing:.02em;
}

h1 span{
  display:inline-block;
  color:var(--copper-2);
}

.lead{
  max-width:680px;
  margin:28px 0 0;
  color:#d4cbc2;
  font-size:18px;
  line-height:1.8;
}

.hero-actions{
  margin-top:36px;
  display:flex;
  flex-wrap:wrap;
  gap:16px;
}

.button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:50px;
  padding:15px 24px;
  border:1px solid var(--line);
  text-transform:uppercase;
  letter-spacing:.13em;
  font-size:12px;
  font-weight:900;
  transition:.22s ease;
}

.button.primary{
  background:linear-gradient(135deg,var(--copper-dark),var(--copper) 55%,var(--copper-2));
  color:white;
  box-shadow:0 18px 48px rgba(192,111,61,.24);
}

.button.ghost{
  background:rgba(255,255,255,.02);
  color:var(--copper-2);
  border-color:rgba(224,161,111,.38);
}

.button:hover{
  transform:translateY(-2px);
  border-color:var(--copper-2);
}

.button.large{
  min-width:280px;
  min-height:58px;
}

.hero-logo-card{
  display:grid;
  place-items:center;
  padding:36px;
  background:
    radial-gradient(circle at center, rgba(192,111,61,.14), transparent 58%),
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.015));
  border:1px solid var(--line);
  box-shadow:var(--shadow);
}

.hero-logo-card img{
  width:min(520px,100%);
  filter:drop-shadow(0 24px 56px rgba(0,0,0,.55));
}

.service-strip{
  background:#080808;
  border-bottom:1px solid var(--line);
}

.strip-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
}

.service-strip article{
  padding:32px 32px;
  border-right:1px solid var(--line);
}

.service-strip article:last-child{border-right:0}

.strip-icon{
  display:inline-block;
  color:var(--copper-2);
  font-weight:900;
  margin-bottom:14px;
}

.service-strip h2{
  font-size:15px;
  text-transform:uppercase;
  letter-spacing:.13em;
  color:var(--copper-2);
}

.service-strip p{
  margin:10px 0 0;
  color:var(--muted);
  line-height:1.65;
  font-size:14px;
}

.section{
  padding:100px 0;
}

.section.dark{
  background:
    linear-gradient(180deg, rgba(255,255,255,.02), transparent),
    #080808;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}

.section-heading{
  max-width:760px;
  margin:0 auto 46px;
  text-align:center;
}

.section-heading h2,
.split h2,
.final-cta h2{
  font-family:Cinzel,serif;
  font-size:clamp(32px,4vw,54px);
  text-transform:uppercase;
}

.section-heading p,
.split p,
.final-cta p{
  color:var(--muted);
  line-height:1.8;
  font-size:16px;
}

.cards{
  display:grid;
  gap:20px;
}

.cards.four{grid-template-columns:repeat(4,1fr)}
.cards.three{grid-template-columns:repeat(3,1fr)}

.card,
.testimonial-card,
.price-card,
.result-card,
.feature-panel,
.timeline article{
  background:linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.018));
  border:1px solid var(--line);
  padding:30px;
  box-shadow:0 18px 60px rgba(0,0,0,.22);
}

.card-number{
  color:var(--copper-2);
  font-weight:900;
  margin-bottom:34px;
}

.card h3,
.timeline h3,
.result-card h3,
.price-card h3{
  color:var(--text);
  font-size:20px;
  text-transform:uppercase;
  letter-spacing:.08em;
}

.card p,
.timeline p,
.result-card p,
.testimonial-card p,
.price-card li,
.small-note{
  color:var(--muted);
  line-height:1.7;
}

.split{
  display:grid;
  grid-template-columns:1.05fr .8fr;
  gap:50px;
  align-items:center;
}

.tick-list{
  margin:28px 0 0;
  padding:0;
  list-style:none;
  display:grid;
  gap:12px;
}

.tick-list li{
  color:#d6cbc1;
  position:relative;
  padding-left:26px;
}

.tick-list li::before{
  content:"";
  position:absolute;
  width:8px;
  height:8px;
  border-radius:50%;
  left:0;
  top:8px;
  background:var(--copper-2);
  box-shadow:0 0 18px rgba(224,161,111,.55);
}

.feature-panel{
  text-align:center;
}

.panel-label,
.badge{
  display:inline-flex;
  color:var(--copper-2);
  border:1px solid rgba(224,161,111,.32);
  padding:8px 12px;
  text-transform:uppercase;
  letter-spacing:.14em;
  font-size:11px;
  font-weight:900;
}

.feature-panel strong{
  display:block;
  margin-top:26px;
  font-size:clamp(42px,6vw,70px);
  font-family:Cinzel,serif;
  color:var(--copper-2);
  line-height:1.05;
}

.feature-panel p{margin:4px 0 30px}

.timeline{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}

.timeline span{
  color:var(--copper-2);
  text-transform:uppercase;
  letter-spacing:.13em;
  font-size:12px;
  font-weight:900;
}

.timeline h3{margin-top:18px}

.results-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:24px;
}

.result-card{
  overflow:hidden;
  padding:0;
}

.result-card img{
  width:100%;
  aspect-ratio:1.38/1;
  object-fit:cover;
  display:block;
}

.result-copy{
  padding:28px 30px 32px;
}

.result-copy .result-label{
  margin:0 0 10px;
  color:var(--copper-2);
  text-transform:uppercase;
  letter-spacing:.14em;
  font-size:11px;
  font-weight:900;
}

.result-copy h3{
  margin:0 0 12px;
}

.result-copy p:last-child{
  margin-bottom:0;
}

.testimonial-feature{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:24px;
  align-items:start;
}

.testimonial-feature img{
  width:100%;
  max-height:620px;
  object-fit:cover;
  object-position:top;
  border:1px solid var(--line);
  box-shadow:0 18px 60px rgba(0,0,0,.22);
}

.testimonial-card p{
  font-size:17px;
  margin:0 0 24px;
}

.testimonial-card strong{
  color:var(--copper-2);
}

.pricing-grid{
  display:grid;
  grid-template-columns:1fr 1.1fr 1fr;
  gap:22px;
  align-items:stretch;
}

.price-card{
  position:relative;
}

.price-card.featured{
  border-color:rgba(224,161,111,.55);
  transform:translateY(-10px);
}

.badge{
  margin-bottom:24px;
  background:rgba(192,111,61,.1);
}

.badge.muted{
  color:#d6b08f;
}

.price{
  margin:28px 0;
  color:var(--copper-2);
  font-size:54px;
  font-family:Cinzel,serif;
  font-weight:800;
}

.price span{
  font-family:Inter,sans-serif;
  font-size:15px;
  color:var(--muted);
}

.price-card ul{
  padding:0;
  margin:0 0 30px;
  list-style:none;
  display:grid;
  gap:10px;
}

.price-card li{
  position:relative;
  padding-left:24px;
}

.price-card li::before{
  content:"✓";
  position:absolute;
  left:0;
  color:var(--copper-2);
  font-weight:900;
}

.small-note{
  margin-top:-12px;
  font-size:14px;
}

.final-cta{
  padding:100px 0;
  text-align:center;
  background:
    linear-gradient(90deg, rgba(5,5,5,.98), rgba(5,5,5,.8)),
    radial-gradient(circle at center, rgba(192,111,61,.22), transparent 46%);
  border-top:1px solid var(--line);
}

.final-cta p{
  max-width:620px;
  margin:22px auto 32px;
}

.footer{
  background:#050505;
  border-top:1px solid var(--line);
}

.footer-grid{
  display:grid;
  grid-template-columns:1.2fr 1fr 1fr;
  gap:32px;
  padding:38px 0;
}

.footer img{width:160px}

.footer h3{
  font-size:13px;
  color:var(--copper-2);
  text-transform:uppercase;
  letter-spacing:.14em;
  margin-bottom:12px;
}

.footer p,
.footer a{
  color:var(--muted);
  line-height:1.7;
}

.footer a:hover{color:var(--copper-2)}

.footer-bottom{
  border-top:1px solid rgba(224,161,111,.14);
  text-align:center;
  padding:18px;
  color:#877b72;
  font-size:13px;
}

@media (max-width: 980px){
  .hero-grid,
  .split,
  .pricing-grid{
    grid-template-columns:1fr;
  }

  .hero{
    min-height:auto;
  }

  .cards.four,
  .cards.three,
  .timeline,
  .results-grid,
  .testimonial-feature,
  .strip-grid{
    grid-template-columns:1fr 1fr;
  }

  .price-card.featured{
    transform:none;
  }
}

@media (max-width: 760px){
  .site-header{
    height:78px;
  }

  .brand img{width:145px}

  .nav-toggle{display:block}

  .site-nav{
    position:fixed;
    inset:78px 0 auto 0;
    display:none;
    flex-direction:column;
    align-items:stretch;
    gap:0;
    background:rgba(5,5,5,.98);
    border-bottom:1px solid var(--line);
    padding:18px 22px 26px;
  }

  body.nav-open .site-nav{display:flex}

  .site-nav a{
    padding:16px 0;
    border-bottom:1px solid rgba(224,161,111,.12);
  }

  .nav-button{
    text-align:center;
    margin-top:16px;
  }

  .container{
    width:min(100% - 28px, 1180px);
  }

  .hero-grid{
    padding:48px 0;
    gap:36px;
  }

  h1{
    font-size:clamp(36px,12vw,58px);
  }

  .lead{
    font-size:16px;
  }

  .hero-actions{
    flex-direction:column;
  }

  .button{
    width:100%;
  }

  .cards.four,
  .cards.three,
  .timeline,
  .results-grid,
  .testimonial-feature,
  .strip-grid,
  .footer-grid{
    grid-template-columns:1fr;
  }

  .service-strip article{
    border-right:0;
    border-bottom:1px solid var(--line);
    padding:26px 0;
  }

  .strip-grid{padding:0 14px}

  .section{
    padding:72px 0;
  }

  .card,
  .testimonial-card,
  .price-card,
  .feature-panel,
  .timeline article{
    padding:24px;
  }

  .result-copy{
    padding:24px;
  }

  .result-card img{
    aspect-ratio:1.18/1;
  }
}
