:root{
  --accent:#ff6900;
  --accent-soft:#ffb382;
  --dark:#1a1410;
  --dark-2:#241b15;
  --light:#faf6f0;
  --tint:#f3ebde;
  --tint-2:#efe4d2;
  --line:#e0d4bf;
  --text:#2a2118;
  --text-muted:#6b5f4e;
  --maxw:1200px;
}

*,*::before,*::after{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:'Crimson Pro', Georgia, serif;
  font-weight:400;
  color:var(--text);
  background:var(--light);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img{max-width:100%;display:block;height:auto}
a{color:inherit;text-decoration:none}
ul{margin:0;padding:0;list-style:none}

.container{max-width:var(--maxw);margin:0 auto;padding:0 24px;width:100%}

.eyebrow{
  display:inline-block;
  font-size:.78rem;
  font-weight:600;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:var(--accent);
  margin-bottom:14px;
}
.eyebrow.light{color:var(--accent-soft)}

/* Header */
.site-header{
  position:sticky;
  top:42px;
  z-index:100;
  background:rgba(26,20,16,.96);
  backdrop-filter:saturate(140%);
  border-bottom:1px solid rgba(255,105,0,.18);
}
.header-inner{
  max-width:var(--maxw);
  margin:0 auto;
  padding:14px 24px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}
.brand{
  display:flex;
  align-items:center;
  gap:10px;
  color:var(--light);
  font-weight:700;
  font-size:1.25rem;
  letter-spacing:.01em;
}
.brand-mark{width:34px;height:34px;color:var(--accent)}
.brand-text{line-height:1}

.site-nav{display:flex;align-items:center;gap:28px}
.site-nav a{
  color:var(--light);
  font-size:1.02rem;
  font-weight:500;
  opacity:.85;
  transition:opacity .2s ease, color .2s ease;
  padding:8px 0;
}
.site-nav a:hover{opacity:1;color:var(--accent-soft)}
.site-nav .nav-cta{
  background:var(--accent);
  color:#1a1410;
  font-weight:700;
  padding:10px 18px;
  opacity:1;
  border-radius:0;
}
.site-nav .nav-cta:hover{background:#ff8421;color:#1a1410}

.nav-toggle{
  display:none;
  flex-direction:column;
  justify-content:space-between;
  width:30px;
  height:22px;
  background:none;
  border:none;
  cursor:pointer;
  padding:0;
}
.nav-toggle span{
  display:block;
  height:2.5px;
  background:var(--light);
  transition:transform .25s ease, opacity .25s ease;
}
.nav-toggle.open span:nth-child(1){transform:translateY(9.5px) rotate(45deg)}
.nav-toggle.open span:nth-child(2){opacity:0}
.nav-toggle.open span:nth-child(3){transform:translateY(-9.5px) rotate(-45deg)}

/* Hero */
.hero{
  background:linear-gradient(165deg,#1a1410 0%, #2a1d12 60%, #3a2410 100%);
  color:var(--light);
  position:relative;
  overflow:hidden;
  padding-top:70px;
  padding-bottom:0;
}
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background-image:radial-gradient(circle at 85% 30%, rgba(255,105,0,.10), transparent 45%);
  pointer-events:none;
}
.hero-inner{
  max-width:var(--maxw);
  margin:0 auto;
  padding:40px 24px 56px;
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:40px;
  align-items:center;
  position:relative;
}
.hero-copy h1{
  font-size:clamp(2.1rem, 5.4vw, 4rem);
  font-weight:700;
  line-height:1.08;
  margin:0 0 18px;
  max-width:16ch;
  letter-spacing:-.005em;
}
.hero-copy p{
  font-size:clamp(1.05rem,1.6vw,1.25rem);
  color:#d8cab4;
  max-width:40ch;
  margin:0 0 30px;
}
.hero-ctas{display:flex;gap:14px;flex-wrap:wrap}
.hero-visual{
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:240px;
}
.hero-motif{width:100%;max-width:340px;height:auto}

.hero-photo-band{
  width:100%;
  margin-top:10px;
  border-top:1px solid rgba(255,105,0,.22);
}
.hero-photo-band img{
  width:100%;
  height:auto;
  max-height:240px;
  object-fit:cover;
  filter:saturate(.92) brightness(.9);
}

/* Buttons */
.btn{
  display:inline-block;
  font-family:'Crimson Pro',serif;
  font-size:1.05rem;
  font-weight:600;
  padding:13px 24px;
  border-radius:0;
  border:1.5px solid transparent;
  cursor:pointer;
  transition:background .2s ease, color .2s ease, border-color .2s ease, transform .15s ease;
  min-height:48px;
  line-height:1.2;
}
.btn-fill{background:var(--accent);color:#1a1410;border-color:var(--accent)}
.btn-fill:hover{background:#ff8421;border-color:#ff8421;transform:translateY(-1px)}
.btn-outline{border-color:rgba(255,105,0,.7);color:var(--light);background:transparent}
.btn-outline:hover{background:rgba(255,105,0,.12);border-color:var(--accent)}
.btn-outline-light{border-color:rgba(250,246,240,.55);color:var(--light);background:transparent}
.btn-outline-light:hover{background:rgba(250,246,240,.1)}

/* Trust pills */
.trust{background:var(--tint);padding:48px 0;border-bottom:1px solid var(--line)}
.pill-row{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:12px 14px;
}
.pill{
  font-size:1rem;
  font-weight:500;
  color:var(--text);
  background:transparent;
  border:1px solid var(--line);
  padding:8px 18px;
  letter-spacing:.01em;
}
.pill:nth-child(odd){border-color:var(--accent);color:var(--accent)}

/* Section heads */
.section-head{
  text-align:center;
  max-width:680px;
  margin:0 auto 56px;
}
.section-head h2{
  font-size:clamp(1.8rem,4vw,2.9rem);
  font-weight:700;
  margin:0;
  line-height:1.12;
  letter-spacing:-.005em;
}

/* Services */
.services{padding:96px 0;background:var(--light)}
.service-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:48px;
  align-items:center;
  margin-bottom:80px;
}
.service-row:last-child{margin-bottom:0}
.service-row.reverse .service-text{order:2}
.service-row.reverse .service-image{order:1}
.service-text{max-width:42ch}
.service-num{
  font-size:1rem;
  font-weight:700;
  color:var(--accent);
  letter-spacing:.12em;
  display:block;
  margin-bottom:10px;
}
.service-text h3{
  font-size:clamp(1.5rem,3vw,2.15rem);
  font-weight:700;
  margin:0 0 14px;
  line-height:1.15;
}
.service-text p{
  font-size:1.1rem;
  color:var(--text-muted);
  margin:0 0 20px;
}
.text-link{
  font-weight:600;
  color:var(--accent);
  border-bottom:1.5px solid var(--accent);
  padding-bottom:2px;
  transition:color .2s ease, border-color .2s ease;
}
.text-link:hover{color:#c44f00;border-color:#c44f00}
.service-image img{
  width:100%;
  height:auto;
  border:1px solid var(--line);
}

/* Proof */
.proof{padding:96px 0;background:var(--tint)}
.proof-grid{
  display:grid;
  grid-template-columns:2fr 1fr;
  grid-template-rows:auto auto;
  gap:20px;
}
.proof-item{margin:0;overflow:hidden;border:1px solid var(--line)}
.proof-wide{grid-row:span 2}
.proof-wide img{height:100%;min-height:300px;object-fit:cover}
.proof-item img{width:100%;height:auto;object-fit:cover;min-height:200px}
.proof-tall-text{
  background:var(--dark);
  border-color:var(--dark);
  display:flex;
  align-items:center;
  padding:28px;
}
.proof-caption h3{
  color:var(--light);
  font-size:1.6rem;
  margin:0 0 10px;
  font-weight:700;
}
.proof-caption p{color:#cbb89c;margin:0;font-size:1.05rem}

/* About */
.about{padding:96px 0;background:var(--light)}
.about-inner{
  display:grid;
  grid-template-columns:1.4fr 1fr;
  gap:56px;
  align-items:start;
}
.about-text h2{
  font-size:clamp(1.8rem,4vw,2.6rem);
  font-weight:700;
  margin:0 0 18px;
  line-height:1.15;
}
.about-text p{
  font-size:1.12rem;
  color:var(--text-muted);
  margin:0 0 16px;
  max-width:54ch;
}
.about-text .btn{margin-top:10px}
.about-card{
  background:var(--tint);
  border:1px solid var(--line);
  padding:30px 28px;
}
.about-card h3{
  font-size:1.15rem;
  font-weight:700;
  margin:0 0 16px;
  color:var(--accent);
  letter-spacing:.02em;
}
.about-links{display:grid;grid-template-columns:1fr 1fr;gap:8px 18px}
.about-links a{
  font-size:1.05rem;
  font-weight:500;
  padding:6px 0;
  border-bottom:1px solid transparent;
  transition:color .2s ease, border-color .2s ease;
}
.about-links a:hover{color:var(--accent);border-color:var(--accent)}

/* CTA band */
.cta-band{
  background:var(--dark);
  color:var(--light);
  padding:88px 0;
  position:relative;
  overflow:hidden;
}
.cta-band::before{
  content:"";
  position:absolute;
  inset:0;
  background:radial-gradient(circle at 90% 20%, rgba(255,105,0,.14), transparent 50%);
  pointer-events:none;
}
.cta-inner{
  display:grid;
  grid-template-columns:1.3fr .9fr;
  gap:40px;
  align-items:center;
  position:relative;
}
.cta-copy h2{
  font-size:clamp(1.8rem,4vw,2.9rem);
  font-weight:700;
  margin:0 0 14px;
  line-height:1.12;
  max-width:18ch;
}
.cta-sub{color:#cbb89c;font-size:1.1rem;margin:0;max-width:38ch}
.cta-actions{display:flex;flex-direction:column;gap:14px;align-items:flex-start}
.cta-actions .btn{width:100%;max-width:280px;text-align:center}
.form-note{
  font-size:.9rem;
  color:var(--accent-soft);
  margin:6px 0 0;
  min-height:1em;
}

/* Footer */
.site-footer{
  background:#120e0a;
  color:#cbb89c;
  padding:64px 0 0;
}
.footer-inner{
  display:grid;
  grid-template-columns:1.5fr 1fr 1fr 1fr;
  gap:36px;
  padding-bottom:48px;
}
.footer-brand .brand{margin-bottom:16px}
.brand-footer{color:var(--light)}
.footer-tag{font-size:1rem;margin:0;max-width:34ch;line-height:1.5}
.footer-col h4{
  color:var(--light);
  font-size:.82rem;
  font-weight:700;
  letter-spacing:.14em;
  text-transform:uppercase;
  margin:0 0 16px;
}
.footer-col ul li{margin-bottom:8px}
.footer-col ul a,.footer-col ul li{
  font-size:1.02rem;
  color:#cbb89c;
  transition:color .2s ease;
}
.footer-col ul a:hover{color:var(--accent)}
.footer-bottom{
  border-top:1px solid rgba(203,184,156,.16);
  padding:20px 0;
}
.footer-bottom p{margin:0;font-size:.95rem;color:#8d7c64}

/* Responsive */
@media (max-width:900px){
  .hero-inner{grid-template-columns:1fr;gap:30px;padding:30px 24px 44px}
  .hero-visual{order:-1;min-height:180px}
  .hero-motif{max-width:220px}
  .about-inner{grid-template-columns:1fr;gap:36px}
  .cta-inner{grid-template-columns:1fr;gap:30px}
  .footer-inner{grid-template-columns:1fr 1fr;gap:32px}
  .footer-brand{grid-column:1 / -1}
}

@media (max-width:700px){
  .nav-toggle{display:flex}
  .site-nav{
    position:absolute;
    top:100%;
    left:0;
    right:0;
    background:#1a1410;
    flex-direction:column;
    align-items:stretch;
    gap:0;
    padding:0;
    border-bottom:1px solid rgba(255,105,0,.2);
    max-height:0;
    overflow:hidden;
    transition:max-height .3s ease;
  }
  .site-nav.open{max-height:420px}
  .site-nav a{
    padding:16px 24px;
    border-top:1px solid rgba(203,184,156,.12);
    font-size:1.05rem;
    min-height:48px;
    display:flex;
    align-items:center;
  }
  .site-nav .nav-cta{margin:14px 24px;padding:13px;text-align:center}

  .service-row{grid-template-columns:1fr;gap:24px;margin-bottom:56px}
  .service-row.reverse .service-text,.service-row.reverse .service-image{order:0}
  .service-text{max-width:none}
  .proof-grid{grid-template-columns:1fr}
  .proof-wide{grid-row:auto}
  .proof-wide img{min-height:220px}

  .services,.proof,.about{padding:64px 0}
  .cta-band{padding:64px 0}
  .section-head{margin-bottom:40px}
  .pill-row{gap:10px}
  .pill{font-size:.95rem;padding:7px 14px}
}

@media (max-width:420px){
  .container{padding:0 18px}
  .header-inner{padding:12px 18px}
  .brand-text{font-size:1.08rem}
  .hero-ctas{flex-direction:column;align-items:stretch}
  .hero-ctas .btn{width:100%;text-align:center}
  .footer-inner{grid-template-columns:1fr}
  .cta-actions .btn{max-width:none}
}

@media (prefers-reduced-motion:reduce){
  *{animation:none !important;transition:none !important}
  html{scroll-behavior:auto}
}