/* ---------- tokens ---------- */
:root{
  --ink:#1a1a18;
  --ink-soft:#3a3a36;
  --paper:#f7f5f0;
  --paper-alt:#efece3;
  --white:#ffffff;
  --gold:#c98a2b;
  --gold-ink:#1a1a18;
  --green:#2b7a4b;
  --red:#c1442d;
  --border:#e1ddd0;
  --radius:10px;
  --font-head:'Archivo',sans-serif;
  --font-body:'Inter',sans-serif;
  --maxw:1140px;
}

*,*::before,*::after{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.5;
  -webkit-font-smoothing:antialiased;
}
h1,h2,h3{
  font-family:var(--font-head);
  line-height:1.15;
  margin:0 0 .5em;
}
p{margin:0 0 1em;}
a{color:inherit;}
img,svg{display:block;max-width:100%;}
ul{margin:0;padding:0;list-style:none;}

.wrap{
  max-width:var(--maxw);
  margin:0 auto;
  padding:0 20px;
}

.skip-link{
  position:absolute;
  left:-999px;
  top:0;
  background:var(--ink);
  color:var(--white);
  padding:10px 16px;
  z-index:200;
}
.skip-link:focus{left:12px; top:12px;}

/* ---------- buttons ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-family:var(--font-head);
  font-weight:700;
  text-decoration:none;
  border-radius:8px;
  padding:12px 20px;
  font-size:0.95rem;
  border:2px solid transparent;
  transition:transform .12s ease, background-color .15s ease, border-color .15s ease;
  cursor:pointer;
}
.btn svg{width:18px;height:18px;fill:currentColor;flex:none;}
.btn svg.icon-stroke{fill:none; stroke:currentColor; stroke-width:2; stroke-linecap:round; stroke-linejoin:round;}
.btn-primary{
  background:var(--gold);
  color:var(--gold-ink);
}
.btn-primary:hover{transform:translateY(-1px); background:#b87c22;}
.btn-primary:active{transform:translateY(0);}
.btn-outline{
  background:transparent;
  border-color:var(--ink);
  color:var(--ink);
}
.btn-outline:hover{background:var(--ink); color:var(--white);}
.btn-outline-light{
  background:transparent;
  border-color:rgba(255,255,255,0.5);
  color:var(--white);
}
.btn-outline-light:hover{background:rgba(255,255,255,0.1); border-color:var(--white);}
.btn-outline-dark{
  background:transparent;
  border-color:var(--gold-ink);
  color:var(--gold-ink);
}
.btn-outline-dark:hover{background:var(--gold-ink); color:var(--white);}
.btn-lg{padding:16px 28px; font-size:1.05rem;}

/* ---------- header ---------- */
.site-header{
  position:sticky;
  top:0;
  z-index:100;
  background:var(--ink);
  color:var(--white);
}
.header-row{
  display:flex;
  align-items:center;
  gap:20px;
  padding:14px 20px;
}
.brand{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  color:var(--white);
  margin-right:auto;
}
.brand-name{
  font-family:var(--font-head);
  font-weight:800;
  font-size:0.85rem;
  letter-spacing:0.04em;
  line-height:1.15;
}
.main-nav{
  display:none;
  gap:28px;
}
.main-nav a{
  text-decoration:none;
  color:var(--white);
  font-weight:600;
  font-size:0.95rem;
  opacity:0.85;
}
.main-nav a:hover{opacity:1;}
.header-actions{
  display:none;
  align-items:center;
  gap:16px;
}
.header-email{
  text-decoration:none;
  color:#e9e6dc;
  font-size:0.9rem;
  font-weight:600;
}
.header-email:hover{color:var(--gold);}
.nav-toggle{
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:5px;
  width:38px;
  height:38px;
  background:transparent;
  border:1px solid rgba(255,255,255,0.3);
  border-radius:6px;
  cursor:pointer;
}
.nav-toggle span{
  display:block;
  height:2px;
  width:18px;
  margin:0 auto;
  background:var(--white);
}

@media (min-width:900px){
  .main-nav{display:flex;}
  .header-actions{display:flex;}
  .nav-toggle{display:none;}
}

/* mobile dropdown nav */
.main-nav.open{
  display:flex;
  flex-direction:column;
  position:absolute;
  top:100%;
  left:0;
  right:0;
  background:var(--ink);
  padding:8px 20px 20px;
  gap:4px;
  border-top:1px solid rgba(255,255,255,0.1);
}
.main-nav.open a{
  padding:10px 0;
  border-bottom:1px solid rgba(255,255,255,0.08);
}

/* sticky mobile action bar */
.sticky-bar{
  position:fixed;
  bottom:0;
  left:0;
  right:0;
  z-index:150;
  display:flex;
  box-shadow:0 -2px 10px rgba(0,0,0,0.15);
  padding-bottom:env(safe-area-inset-bottom);
}
.sticky-call, .sticky-email{
  flex:1;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  font-family:var(--font-head);
  font-weight:700;
  font-size:0.92rem;
  text-decoration:none;
  padding:14px 8px;
}
.sticky-call{background:var(--gold); color:var(--gold-ink);}
.sticky-email{background:var(--ink); color:var(--white);}
.sticky-call svg, .sticky-email svg{width:18px;height:18px;fill:none;stroke:currentColor;stroke-width:2;}
.sticky-call svg{fill:currentColor;stroke:none;}
@media (min-width:900px){
  .sticky-bar{display:none;}
}
body{padding-bottom:60px;}
@media (min-width:900px){
  body{padding-bottom:0;}
}

/* ---------- hero ---------- */
.hero{
  background:var(--ink);
  color:var(--white);
  padding:48px 0 56px;
}
.hero-grid{
  display:grid;
  gap:36px;
}
@media (min-width:900px){
  .hero-grid{padding:40px 0;}
}
.eyebrow{
  text-transform:uppercase;
  letter-spacing:0.08em;
  font-weight:600;
  font-size:0.8rem;
  color:var(--gold);
  margin-bottom:12px;
}
.hero h1{
  font-size:clamp(1.9rem, 5vw, 2.9rem);
  color:var(--white);
}
.hero-sub{
  font-size:1.05rem;
  color:#d8d5cb;
  max-width:44ch;
}
.hero-ctas{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:14px;
  margin:22px 0 20px;
}
.hero-note{
  color:#c9c6bc;
  font-size:0.9rem;
}
.trust-row{
  display:flex;
  flex-wrap:wrap;
  gap:10px 18px;
}
.trust-row li{
  font-size:0.85rem;
  font-weight:600;
  color:#e9e6dc;
  padding-left:18px;
  position:relative;
}
.trust-row li::before{
  content:"";
  position:absolute;
  left:0;
  top:6px;
  width:8px;
  height:8px;
  background:var(--gold);
  border-radius:50%;
}
/* ---------- services ---------- */
.services{padding:64px 0;}
.services h2, .why h2, .area h2, .cta-band h2{
  font-size:clamp(1.5rem,3.5vw,2.1rem);
}
.section-sub{
  color:var(--ink-soft);
  max-width:56ch;
  margin-bottom:32px;
}
.service-grid{
  display:grid;
  gap:18px;
  grid-template-columns:1fr;
}
@media (min-width:640px){
  .service-grid{grid-template-columns:1fr 1fr;}
}
@media (min-width:980px){
  .service-grid{grid-template-columns:repeat(3,1fr);}
}
.service-card{
  background:var(--white);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:24px;
  transition:border-color .15s ease, transform .15s ease;
}
.service-card:hover{
  border-color:var(--gold);
  transform:translateY(-2px);
}
.service-icon{
  width:42px;height:42px;
  border-radius:8px;
  background:var(--paper-alt);
  display:flex;align-items:center;justify-content:center;
  margin-bottom:14px;
}
.service-icon svg{
  width:22px;height:22px;
  fill:none;
  stroke:var(--ink);
  stroke-width:1.8;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.service-card h3{font-size:1.05rem;}
.service-card p{color:var(--ink-soft); font-size:0.92rem; margin:0;}

/* ---------- testimonials ---------- */
.testimonials{padding:64px 0; background:var(--paper-alt);}
.testimonials h2{font-size:clamp(1.5rem,3.5vw,2.1rem);}
.testimonial-grid{
  display:grid;
  gap:18px;
  grid-template-columns:1fr;
}
@media (min-width:640px){
  .testimonial-grid{grid-template-columns:1fr 1fr;}
}
@media (min-width:980px){
  .testimonial-grid{grid-template-columns:repeat(3,1fr);}
}
.testimonial-card{
  background:var(--white);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:24px;
  margin:0;
}
.testimonial-card p{
  font-family:var(--font-head);
  font-size:1.1rem;
  font-weight:700;
  line-height:1.3;
  margin:0 0 10px;
  color:var(--gold);
}
.testimonial-body{
  display:block;
  color:var(--ink-soft);
  font-size:0.9rem;
  line-height:1.5;
}

/* ---------- why ---------- */
.why{background:var(--paper-alt); padding:64px 0;}
.why-grid{
  display:grid;
  gap:32px;
}
@media (min-width:900px){
  .why-grid{grid-template-columns:1.2fr 0.8fr; align-items:start;}
}
.why-list{display:grid; gap:20px; margin-top:24px;}
.why-list h3{font-size:1.02rem; margin-bottom:4px;}
.why-list p{color:var(--ink-soft); font-size:0.92rem; margin:0;}
.pull-quote{
  background:var(--ink);
  color:var(--white);
  border-radius:var(--radius);
  padding:32px 28px;
  font-family:var(--font-head);
  font-size:1.3rem;
  font-weight:700;
  margin:0;
}
.pull-quote span{
  display:block;
  margin-top:14px;
  font-family:var(--font-body);
  font-weight:500;
  font-size:0.85rem;
  color:var(--gold);
}

/* ---------- area ---------- */
.area{padding:64px 0;}
.area-grid{
  display:grid;
  gap:32px;
}
@media (min-width:900px){
  .area-grid{grid-template-columns:1fr 1fr; align-items:center;}
}
.area p{color:var(--ink-soft); max-width:52ch;}
.area-list{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:10px;
}
@media (min-width:480px){
  .area-list{grid-template-columns:repeat(3,1fr);}
}
.area-list li{
  background:var(--white);
  border:1px solid var(--border);
  border-radius:6px;
  padding:10px 12px;
  font-size:0.88rem;
  font-weight:600;
}
.area-list-more{
  background:var(--gold) !important;
  border-color:var(--gold) !important;
  color:var(--gold-ink);
}

/* ---------- cta band ---------- */
.cta-band{
  background:var(--gold);
  color:var(--gold-ink);
  padding:44px 0;
}
.cta-band-inner{
  display:flex;
  flex-direction:column;
  gap:20px;
  align-items:flex-start;
}
@media (min-width:700px){
  .cta-band-inner{flex-direction:row; align-items:center; justify-content:space-between;}
}
.cta-band h2{margin-bottom:4px;}
.cta-band p{margin:0; font-weight:500;}
.cta-band .btn-primary{
  background:var(--ink);
  color:var(--white);
}
.cta-band .btn-primary:hover{background:#000;}
.cta-band-actions{
  display:flex;
  flex-direction:column;
  gap:12px;
}
@media (min-width:480px){
  .cta-band-actions{flex-direction:row;}
}

/* ---------- footer ---------- */
.site-footer{
  background:var(--ink);
  color:#cfccc2;
  padding:48px 0 24px;
}
.footer-grid{
  display:grid;
  gap:28px;
  padding-bottom:28px;
  border-bottom:1px solid rgba(255,255,255,0.1);
}
@media (min-width:700px){
  .footer-grid{grid-template-columns:1.3fr 1fr 1fr;}
}
.footer-brand{color:var(--white); display:block; margin-bottom:10px; font-size:0.95rem;}
.footer-grid h3{color:var(--white); font-size:0.95rem; margin-bottom:10px;}
.footer-grid p{margin:0 0 6px; font-size:0.9rem;}
.footer-grid a{text-decoration:none;}
.footer-grid a:hover{color:var(--gold);}
.footer-email{
  color:var(--gold);
  font-weight:700;
  font-size:1rem;
}
.footer-bottom{padding-top:20px; font-size:0.8rem;}
.footer-credit{margin-top:6px; opacity:0.75;}
.footer-credit a{text-decoration:underline; color:inherit;}
.footer-credit a:hover{color:var(--gold);}

/* ---------- focus states ---------- */
a:focus-visible, button:focus-visible{
  outline:3px solid var(--gold);
  outline-offset:2px;
}
