/* ---------- Tokens ---------- */
:root{
  --ink:        #1C1A15;
  --bg-dark:    #14120D;
  --bg-dark-2:  #211D16;
  --camo:       #7A7D71;
  --camo-line:  #38352C;
  --gold:       #C9982F;
  --gold-hover: #E0B354;
  --paper:      #F4EEE1;
  --paper-line: #DDD2BA;
  --cedar:      #A97C52;
  --cream-text: #F1EBDC;

  --font-head: 'Oswald', sans-serif;
  --font-body: 'Karla', sans-serif;

  --wrap: 1120px;
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  font-family:var(--font-body);
  color:var(--ink);
  background:var(--paper);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;display:block;}
a{color:inherit;text-decoration:none;}
h1,h2,h3{
  font-family:var(--font-head);
  font-weight:600;
  line-height:1.12;
  margin:0 0 0.5em;
}
p{margin:0 0 1em;}
.wrap{
  max-width:var(--wrap);
  margin:0 auto;
  padding:0 24px;
}
.skip-link{
  position:absolute;left:-999px;top:auto;
  background:var(--gold);color:var(--ink);padding:10px 16px;z-index:200;
}
.skip-link:focus{left:16px;top:16px;}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.5em;
  padding:14px 26px;
  font-family:var(--font-head);
  font-weight:600;
  letter-spacing:.03em;
  border-radius:3px;
  border:1px solid transparent;
  transition:background-color .15s ease, color .15s ease, border-color .15s ease;
  cursor:pointer;
}
.btn-gold{
  background:var(--gold);
  color:#1A1509;
}
.btn-gold:hover,.btn-gold:focus-visible{background:var(--gold-hover);}
.btn-lg{padding:18px 34px;font-size:1.05rem;}
.btn-ghost{
  background:transparent;
  color:var(--cream-text);
  border-color:rgba(241,235,220,.45);
}
.btn-ghost:hover,.btn-ghost:focus-visible{border-color:var(--cream-text);}
.btn-outline-dark{
  background:transparent;
  color:var(--ink);
  border-color:var(--ink);
  margin-top:8px;
}
.btn-outline-dark:hover,.btn-outline-dark:focus-visible{
  background:var(--ink);
  color:var(--paper);
}
:focus-visible{outline:3px solid var(--gold);outline-offset:2px;}

/* ---------- Header ---------- */
.site-header{
  position:sticky;top:0;z-index:100;
  background:rgba(20,18,13,.94);
  backdrop-filter:blur(6px);
  border-bottom:1px solid var(--camo-line);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding-top:10px;
  padding-bottom:10px;
}
.brand{display:flex;align-items:center;gap:12px;}
.brand-mark{
  width:38px;height:auto;border-radius:2px;
}
.brand-word{
  font-family:var(--font-head);
  font-weight:600;
  color:var(--cream-text);
  font-size:.92rem;
  line-height:1.15;
}
.header-call{padding:10px 16px;}
.header-call .btn-label{display:none;}
.header-call .btn-number{font-size:.85rem;}
@media(min-width:640px){
  .header-call .btn-label{display:inline;}
  .header-call .btn-number{font-size:.95rem;}
}

/* ---------- Hero ---------- */
.hero{position:relative;color:var(--cream-text);}
.hero-media{
  position:relative;
  height:680px;
  height:88vh;
  height:min(88vh,760px);
  min-height:520px;
  overflow:hidden;
}
.hero-media img{
  width:100%;height:100%;object-fit:cover;object-position:60% 40%;
}
.hero-scrim{
  position:absolute;inset:0;
  background:
    linear-gradient(0deg, rgba(14,12,8,.92) 0%, rgba(14,12,8,.55) 42%, rgba(14,12,8,.25) 68%, rgba(14,12,8,.45) 100%);
}
.hero-content{
  position:absolute;left:0;right:0;bottom:0;
  padding-bottom:56px;
}
.hero-kicker{
  font-family:var(--font-head);
  text-transform:uppercase;
  letter-spacing:.12em;
  font-size:.78rem;
  color:var(--gold);
  margin-bottom:14px;
}
.hero h1{
  font-size:clamp(2.1rem,5.4vw,3.6rem);
  max-width:14ch;
  color:#fff;
}
.hero-sub{
  max-width:46ch;
  font-size:1.08rem;
  color:var(--cream-text);
  opacity:.92;
}
.hero-actions{display:flex;flex-wrap:wrap;gap:14px;margin-top:8px;}

/* ---------- Trust strip ---------- */
.trust-strip{
  background:var(--bg-dark-2);
  border-bottom:1px solid var(--camo-line);
}
.trust-inner{
  display:flex;flex-wrap:wrap;
  gap:14px 28px;
  padding:18px 24px;
  font-family:var(--font-head);
  font-size:.85rem;
  letter-spacing:.02em;
  color:var(--cream-text);
}
.trust-inner span{position:relative;padding-left:28px;}
.trust-inner span:first-child{padding-left:0;}
.trust-inner span::before{
  content:"";
  position:absolute;left:10px;top:50%;
  width:5px;height:5px;border-radius:50%;
  background:var(--gold);
  transform:translateY(-50%);
}
.trust-inner span:first-child::before{display:none;}

/* ---------- Section heads ---------- */
.section-head{max-width:56ch;margin-bottom:40px;}
.section-head h2{font-size:clamp(1.7rem,3.4vw,2.3rem);}
.section-head p{color:#4b4636;font-size:1.02rem;}
.section-head-light h2{color:#fff;}
.section-head-light p{color:rgba(241,235,220,.75);}

.services,.about,.area{padding:88px 0;}

/* ---------- Services ---------- */
.service-list{
  list-style:none;margin:0 0 40px;padding:0;
  display:grid;
  grid-template-columns:1fr;
  border-top:1px solid var(--paper-line);
}
.service-list li{
  padding:22px 0;
  border-bottom:1px solid var(--paper-line);
  display:grid;
  grid-template-columns:1fr;
  gap:4px;
}
.service-list h3{
  font-size:1.12rem;
  margin:0;
}
.service-list p{
  margin:0;color:#4b4636;font-size:.98rem;
}
@media(min-width:760px){
  .service-list{grid-template-columns:1fr 1fr;column-gap:48px;}
  .service-list li{
    grid-template-columns:1fr;
    padding:26px 0;
  }
  .service-list li:nth-child(odd){border-right:1px solid var(--paper-line);padding-right:24px;}
  .service-list li:nth-child(even){padding-left:24px;}
}

/* ---------- Work ---------- */
.work{background:var(--bg-dark);padding:88px 0;}
.work-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:16px;
}
.work-feature img,.work-gallery img{
  width:100%;height:100%;object-fit:cover;
  border-radius:2px;
}
.work-feature{margin:0;}
.work-feature figcaption{
  margin-top:10px;font-size:.9rem;color:rgba(241,235,220,.7);
  font-family:var(--font-head);letter-spacing:.02em;
}
.work-gallery{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:12px;
}
.work-gallery figure{margin:0;}
.work-gallery img{aspect-ratio:3/4;object-fit:cover;width:100%;height:auto;border-radius:2px;}
.work-gallery figcaption{
  margin-top:8px;font-size:.85rem;color:rgba(241,235,220,.65);
  font-family:var(--font-head);letter-spacing:.02em;
}
.work-caption{
  margin-top:18px;margin-bottom:0;
  color:rgba(241,235,220,.65);
  font-size:.92rem;
}
@media(min-width:800px){
  .work-grid{grid-template-columns:1.1fr 1fr;align-items:start;}
  .work-feature img{aspect-ratio:4/5;object-fit:cover;}
}

/* ---------- About ---------- */
.about-inner{
  display:grid;grid-template-columns:1fr;gap:40px;align-items:start;
}
.about-media{max-width:160px;}
.about-media img{background:var(--bg-dark);padding:14px;border-radius:4px;}
.about-text p{font-size:1.05rem;color:#332f24;max-width:60ch;}
@media(min-width:760px){
  .about-inner{grid-template-columns:200px 1fr;gap:56px;}
}

/* ---------- Service area ---------- */
.area{
  background:var(--bg-dark-2);
  background-image:
    linear-gradient(180deg, rgba(20,18,13,.55), rgba(20,18,13,.72)),
    url("../images/camo-texture.jpg");
  background-size:auto, 380px;
  background-repeat:no-repeat, repeat;
  background-position:center;
  color:var(--cream-text);
  text-align:left;
}
.area-inner{max-width:640px;}
.area h2{color:#fff;font-size:clamp(1.6rem,3.6vw,2.2rem);}
.area p{color:rgba(241,235,220,.78);margin-bottom:26px;}

/* ---------- Footer ---------- */
.site-footer{background:var(--bg-dark);color:var(--cream-text);padding-top:48px;}
.footer-inner{
  display:flex;flex-wrap:wrap;gap:24px;
  justify-content:space-between;align-items:center;
  padding-bottom:32px;
  border-bottom:1px solid var(--camo-line);
}
.footer-brand{display:flex;align-items:center;gap:14px;}
.footer-brand img{width:32px;border-radius:2px;}
.footer-name{
  font-family:var(--font-head);font-weight:600;margin:0;color:#fff;
}
.footer-tagline{margin:0;font-size:.88rem;color:var(--gold);}
.footer-links{display:flex;gap:24px;font-size:.95rem;}
.footer-links a:hover{color:var(--gold);}
.footer-bottom{
  padding:20px 24px 100px;
  font-size:.82rem;
  color:rgba(241,235,220,.55);
}
@media(min-width:640px){
  .footer-bottom{padding-bottom:28px;}
}

/* ---------- Sticky mobile call bar ---------- */
.sticky-call{
  position:fixed;left:0;right:0;bottom:0;z-index:150;
  background:var(--gold);
  color:#1A1509;
  text-align:center;
  padding:16px;
  font-family:var(--font-head);
  font-weight:600;
  letter-spacing:.02em;
  box-shadow:0 -4px 18px rgba(0,0,0,.25);
}
@media(min-width:640px){
  .sticky-call{display:none;}
}

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