:root{
  --bg:#12110F;
  --text:#E6E3DE;
  --muted:#BEB8AE;
  --accent:#B87333;
  --line:rgba(230,227,222,.12);
  --shadow:0 24px 80px rgba(0,0,0,.45);
  --radius:18px;
  --max:1120px;
  --pad:28px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}

body{
  margin:0;
  padding-bottom:96px;
  font-family:'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.45;
}

a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
.container{max-width:var(--max);margin:0 auto;padding:0 var(--pad)}

.header{
  position:fixed;
  top:0;
  left:0;
  right:0;
  z-index:50;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:18px var(--pad);
  background:linear-gradient(to bottom, rgba(18,17,15,.72), rgba(18,17,15,0));
  backdrop-filter:blur(10px);
}

.brand img{
  height:52px;
  width:auto;
  opacity:.98;
}

.nav{
  display:flex;
  gap:22px;
  align-items:center;
  font-size:13px;
  letter-spacing:.04em;
  color:rgba(230,227,222,.78);
}

.nav a:hover{color:var(--text)}

.nav-cta{
  border:1px solid rgba(184,115,51,.55);
  padding:9px 12px;
  border-radius:999px;
}

.nav-cta:hover{background:rgba(184,115,51,.10)}

.menu-btn{
  display:none;
  background:transparent;
  border:0;
  padding:8px;
}

.menu-btn span{
  display:block;
  width:22px;
  height:2px;
  margin:5px 0;
  background:rgba(230,227,222,.82);
}

.hero{
  position:relative;
  min-height:100vh;
  display:flex;
  align-items:flex-end;
  padding-top:84px;
}

.hero-bg{
  position:absolute;
  inset:0;
  background:url("assets/images/bw2.webp") center/cover no-repeat;
  filter:saturate(.95) contrast(1.05);
}

.hero-fade{
  position:absolute;
  inset:0;
  background:
    radial-gradient(1200px 700px at 20% 30%, rgba(0,0,0,.06), rgba(0,0,0,.62)),
    linear-gradient(to top, rgba(18,17,15,.92), rgba(18,17,15,.10));
}

.hero-content{
  position:relative;
  padding:90px var(--pad) 70px var(--pad);
}

h1{
  margin:0;
  font-size:clamp(34px,4.2vw,56px);
  font-weight:300;
  letter-spacing:.02em;
  line-height:1.06;
  text-transform:uppercase;
}

.accent{color:var(--accent)}

.hero-sub{
  max-width:720px;
  margin:18px 0 0 0;
  color:rgba(230,227,222,.78);
  font-size:15px;
  letter-spacing:.02em;
}

.hero-actions{
  display:flex;
  gap:12px;
  margin-top:26px;
  flex-wrap:wrap;
}

.section{
  padding:88px 0;
  background:var(--bg);
}

.section-light{
  background:linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,0));
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}

.eyebrow{
  margin:0 0 12px 0;
  color:rgba(190,184,174,.86);
  letter-spacing:.22em;
  text-transform:uppercase;
  font-size:12px;
}

h2{
  margin:0;
  font-size:clamp(26px,2.4vw,36px);
  font-weight:300;
  letter-spacing:.01em;
  line-height:1.12;
  max-width:920px;
}

.two-col{
  display:grid;
  grid-template-columns:1.1fr 1fr;
  gap:46px;
  align-items:start;
}

.prose p{
  margin:0 0 14px 0;
  color:rgba(230,227,222,.80);
  font-size:15px;
}

.cards{
  margin-top:28px;
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:16px;
}

.card{
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:22px 22px 24px;
  background:rgba(255,255,255,.03);
  box-shadow:0 10px 40px rgba(0,0,0,.18);
}

.card h3{
  margin:0 0 10px 0;
  font-weight:400;
  letter-spacing:.02em;
}

.card p{
  margin:0;
  color:rgba(230,227,222,.76);
  font-size:14px;
}

.steps{
  margin-top:30px;
  display:grid;
  gap:18px;
  max-width:980px;
}

.step{
  display:flex;
  gap:14px;
  padding:18px 16px;
  border-radius:var(--radius);
  border:1px solid var(--line);
  background:rgba(0,0,0,.12);
}

.step-dot{
  width:10px;
  height:10px;
  border-radius:999px;
  margin-top:7px;
  background:rgba(184,115,51,.75);
  box-shadow:0 0 0 0 rgba(184,115,51,0);
}

.step h4{
  margin:0 0 6px 0;
  font-weight:400;
}

.step p{
  margin:0;
  color:rgba(230,227,222,.74);
  font-size:14px;
}

@media (hover:hover) and (pointer:fine){
  .step:hover .step-dot{
    animation:sensePulse 1.2s ease-in-out infinite;
    background:rgba(184,115,51,.92);
  }
}

@media (prefers-reduced-motion:reduce){
  .step:hover .step-dot{
    animation:none;
  }
}

@keyframes sensePulse{
  0%   { box-shadow:0 0 0 0 rgba(184,115,51,0); }
  35%  { box-shadow:0 0 0 8px rgba(184,115,51,.18); }
  70%  { box-shadow:0 0 0 14px rgba(184,115,51,.08); }
  100% { box-shadow:0 0 0 18px rgba(184,115,51,0); }
}

.gallery{
  margin-top:26px;
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:16px;
}

.shot{
  margin:0;
  border-radius:var(--radius);
  overflow:hidden;
  border:1px solid var(--line);
  background:rgba(255,255,255,.02);
  box-shadow:var(--shadow);
}

.shot img{
  width:100%;
  height:320px;
  object-fit:cover;
}

.shot figcaption{
  padding:14px 16px 16px;
  color:rgba(230,227,222,.72);
  font-size:13px;
  letter-spacing:.01em;
}

.section-quote{
  padding:96px 0;
  background:radial-gradient(800px 500px at 20% 40%, rgba(184,115,51,.08), rgba(0,0,0,0));
  border-top:1px solid var(--line);
}

.quote{
  margin:0;
  max-width:680px;
  font-size:clamp(22px,2.2vw,30px);
  font-weight:300;
  letter-spacing:.02em;
  line-height:1.24;
  color:rgba(230,227,222,.86);
}

.form{
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:18px;
  background:rgba(255,255,255,.03);
}

label{
  display:block;
  font-size:12px;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:rgba(190,184,174,.86);
  margin-bottom:14px;
}

input, textarea{
  width:100%;
  margin-top:10px;
  padding:12px 12px;
  border-radius:12px;
  border:1px solid rgba(230,227,222,.16);
  background:rgba(0,0,0,.25);
  color:var(--text);
  outline:none;
}

input:focus, textarea:focus{
  border-color:rgba(184,115,51,.55);
  box-shadow:0 0 0 5px rgba(184,115,51,.10);
}

.form-note{
  margin:10px 0 0 0;
  color:rgba(190,184,174,.70);
  font-size:12px;
}

.footer{
  border-top:1px solid var(--line);
  padding:4px 0;
  margin:0;
  min-height:auto;
  background:var(--bg);
}

.footer-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:6px;
  color:rgba(230,227,222,.68);
  font-size:11px;
  line-height:1.2;
}

.muted{color:rgba(190,184,174,.78)}

.link{
  text-decoration:underline;
  text-decoration-color:rgba(184,115,51,.35);
}

.link:hover{
  text-decoration-color:rgba(184,115,51,.75);
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:999px;
  font-size:13px;
  letter-spacing:.08em;
  text-transform:uppercase;
  transition:transform .15s ease, background .15s ease, border-color .15s ease, color .15s ease;
  user-select:none;
}

.btn:hover{transform:translateY(-1px)}

.btn-outline{
  border:1px solid rgba(184,115,51,.70);
  color:rgba(230,227,222,.92);
  background:rgba(0,0,0,.18);
}

.btn-outline:hover{background:rgba(184,115,51,.12)}

.btn-ghost{
  border:1px solid rgba(230,227,222,.20);
  color:rgba(230,227,222,.78);
  background:rgba(0,0,0,.10);
}

.btn-ghost:hover{
  border-color:rgba(184,115,51,.45);
  background:rgba(0,0,0,.18);
}

.btn-solid{
  border:1px solid rgba(184,115,51,0);
  background:rgba(184,115,51,.18);
  color:rgba(230,227,222,.92);
}

.btn-solid:hover{background:rgba(184,115,51,.26)}

@media (max-width: 980px){
  .two-col{grid-template-columns:1fr}
  .cards{grid-template-columns:1fr}
  .gallery{grid-template-columns:1fr}
  .shot img{height:280px}
  .nav{display:none}
  .menu-btn{display:block}
}

.wa-float{
  position:fixed;
  right:20px;
  bottom:28px;
  z-index:80;
  display:inline-flex;
  align-items:center;
  gap:12px;
  padding:14px 22px;
  border-radius:999px;
  background:rgba(18,17,15,.88);
  border:1px solid rgba(184,115,51,.65);
  color:rgba(230,227,222,.92);
  font-size:13px;
  letter-spacing:.18em;
  text-transform:uppercase;
  box-shadow:
    0 10px 30px rgba(0,0,0,.45),
    inset 0 0 0 1px rgba(255,255,255,.03);
  backdrop-filter:blur(10px);
  transition:transform .18s ease, background .18s ease, border-color .18s ease;
}

.wa-float:hover{
  transform:translateY(-2px);
  background:rgba(184,115,51,.14);
  border-color:rgba(184,115,51,.85);
}

.wa-dot{
  width:9px;
  height:9px;
  border-radius:50%;
  background:rgba(184,115,51,.9);
  box-shadow:0 0 0 4px rgba(184,115,51,.18);
}

.wa-text{
  line-height:1;
}

@media (max-width: 520px){
  .wa-float{
    padding:14px;
  }

  .wa-text{
    display:none;
  }

  .brand img{
    height:46px;
  }
}

@supports (padding: max(0px)){
  body{
    padding-bottom:max(16px, env(safe-area-inset-bottom));
  }

  .wa-float{
    bottom:max(20px, env(safe-area-inset-bottom));
  }
}

.footer *{
  margin-bottom:0;
}

section:last-of-type{
  padding-bottom:24px !important;
}