:root{
  --bg:#fbfaf7;
  --panel:#ffffff;
  --text:#141618;
  --muted:#5b6168;
  --line:#e7e2d8;

  --accent:#1f4b43;
  --accent2:#b08d57;
  --accentSoft: rgba(31, 75, 67, 0.08);

  --radius: 18px;
  --shadow: 0 18px 40px rgba(20, 22, 24, 0.10);
  --shadow2: 0 10px 24px rgba(20, 22, 24, 0.08);
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
}
a{color:inherit}
img{max-width:100%; height:auto; display:block}
code{background: rgba(20, 22, 24, 0.06); padding: 2px 6px; border-radius: 8px}
strong{font-weight: 950}

.wrap{max-width:1120px; margin:0 auto; padding:0 18px}

.skip{position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden;}
.skip:focus{
  left: 14px; top: 14px; width:auto; height:auto; padding: 10px 12px;
  background: var(--panel); border: 1px solid var(--line); border-radius: 12px; z-index: 1000;
}

/* HEADER */
.header{
  position: sticky; top:0; z-index: 10;
  background: rgba(251,250,247,0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header__inner{display:grid; grid-template-columns: 1fr auto auto; align-items:center; gap: 14px; padding: 12px 0;}
.brand{display:flex; align-items:center; gap:10px; text-decoration:none; font-weight: 950; letter-spacing:.2px;}
.brand__mark{
  width: 14px; height: 14px; border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, var(--accent2), var(--accent));
  box-shadow: 0 0 0 6px rgba(176,141,87,0.14);
}
.brand__text{white-space:nowrap}

.nav{display:flex; align-items:center; gap: 12px; flex-wrap:wrap; justify-content:center}
.nav a{text-decoration:none; color: var(--muted); font-weight: 850;}
.nav a:hover{color: var(--text)}

.header__cta{display:flex; align-items:center; gap: 10px; justify-content:flex-end; flex-wrap:wrap}
.phone{
  display:inline-flex; align-items:center; gap: 8px;
  text-decoration:none; font-weight: 950; color: var(--text);
  padding: 8px 10px; border-radius: 999px; border: 1px solid var(--line);
  background: rgba(255,255,255,0.75);
}
.phone:hover{box-shadow: var(--shadow2)}
.phone__text{white-space:nowrap}

/* BUTTONS */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--accent);
  color:#fff;
  text-decoration:none;
  font-weight: 950;
  border: 1px solid rgba(31,75,67,0.18);
  box-shadow: var(--shadow2);
}
.btn:hover{filter: brightness(1.03)}
.btn--ghost{
  background: transparent;
  color: var(--accent);
  border: 1px solid rgba(31,75,67,0.30);
  box-shadow: none;
}
.btn--sm{padding: 9px 12px; font-size: 14px}
.btn--lg{padding: 14px 18px; font-size: 16px}
.btn--full{width:100%}

.muted{color: var(--muted)}
.fineprint{font-size: 12.5px; color: var(--muted); margin: 10px 0 0}

/* HERO */
.hero{
  padding: 44px 0 26px;
  background:
    radial-gradient(1200px 420px at 12% 12%, rgba(176,141,87,0.16), transparent 55%),
    radial-gradient(1200px 460px at 88% 22%, rgba(31,75,67,0.14), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,0.55), rgba(255,255,255,0));
  border-bottom: 1px solid var(--line);
}
.hero__grid{display:grid; grid-template-columns: 1.1fr 0.9fr; gap: 22px; align-items: start;}
.eyebrow{margin:0 0 10px; color: var(--accent); font-weight: 950; letter-spacing: .3px;}
h1{margin:0 0 12px; font-size: 42px; line-height: 1.08; letter-spacing: -0.25px;}
.lead{margin:0 0 18px; color: var(--muted); font-size: 18px; max-width: 66ch;}
.hero__cta{display:flex; gap: 12px; flex-wrap:wrap; margin: 10px 0 14px;}

.hero__trust{
  display:grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 14px;
  margin-top: 10px;
  align-items: stretch;
}
.badgeImg{
  width: 100%;
  max-width: 340px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: var(--shadow2);
}
.trustList{
  background: rgba(255,255,255,0.70);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px;
  box-shadow: var(--shadow2);
  display:grid;
  gap: 10px;
}
.trustItem__k{
  font-size: 12px; text-transform: uppercase; letter-spacing: .4px;
  font-weight: 950; color: var(--muted);
}
.trustItem__v{font-weight: 850}

.hero__media{
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--panel);
}
.hero__media img{width:100%; height: 420px; object-fit: cover}
.hero__overlay{
  position:absolute; left: 14px; right: 14px; bottom: 14px;
  background: rgba(255,255,255,0.92);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px;
  box-shadow: var(--shadow2);
}
.overlay__title{font-weight: 950; margin-bottom: 10px}
.overlay__row{display:flex; justify-content:space-between; gap: 10px; padding: 6px 0; border-bottom: 1px solid var(--line);}
.overlay__row:last-of-type{border-bottom:none; margin-bottom: 10px}
.overlay__k{color: var(--muted); font-weight: 850}
.overlay__v{font-weight: 900}

/* STRIP */
.strip{padding: 22px 0; background: rgba(255,255,255,0.55); border-bottom: 1px solid var(--line);}
.strip__grid{display:grid; grid-template-columns: repeat(3, 1fr); gap: 14px;}
.strip__item{
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow2);
}
.strip__item h3{margin:0 0 6px; letter-spacing: .6px; font-size: 14px;}
.strip__item p{margin:0; color: var(--muted)}

/* SECTIONS */
.section{padding: 46px 0}
.section--alt{
  background:
    radial-gradient(900px 280px at 20% 0%, rgba(31,75,67,0.10), transparent 60%),
    radial-gradient(900px 280px at 80% 0%, rgba(176,141,87,0.10), transparent 60%),
    var(--bg);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section__head{margin-bottom: 18px}
.section__head h2{margin: 0 0 8px; font-size: 30px; letter-spacing: -0.2px;}
.section__head p{margin: 0; color: var(--muted); max-width: 86ch}

/* SERVICE TILES */
.tiles{display:grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 18px;}
.tile{
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow2);
}
.tile h3{margin: 10px 0 8px}
.tile__icon{
  width: 44px; height: 44px;
  border-radius: 14px;
  display:flex; align-items:center; justify-content:center;
  background: rgba(31,75,67,0.10);
  border: 1px solid rgba(31,75,67,0.20);
  color: var(--accent);
}
.tile__icon svg{display:block}

/* CTA BAR */
.ctaBar{
  margin-top: 16px;
  background: rgba(255,255,255,0.70);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow2);
  padding: 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
}
.ctaBar--tight{margin-top: 18px}
.ctaBar h3{margin:0 0 6px}
.ctaBar p{margin:0}

/* DETAILS */
.details{
  margin-top: 14px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow2);
  padding: 6px 12px;
}
.details summary{cursor:pointer; padding: 12px 4px; font-weight: 950;}
.details__body{padding: 0 4px 12px}
.cols{columns: 2; column-gap: 24px; margin: 0; padding-left: 18px; color: var(--muted);}
.cols li{break-inside: avoid; padding: 2px 0}

/* STEPS */
.steps{display:grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 18px;}
.step{
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow2);
  padding: 18px;
}
.step__num{
  width: 34px; height: 34px; border-radius: 12px;
  display:flex; align-items:center; justify-content:center;
  background: rgba(31,75,67,0.12);
  border: 1px solid rgba(31,75,67,0.20);
  color: var(--accent);
  font-weight: 950;
  margin-bottom: 10px;
}
.step h3{margin:0 0 8px}
.step p{margin:0; color: var(--muted)}

/* TESTIMONIAL PLACEHOLDER */
.testimonialPlaceholder{
  margin-top: 18px;
  border-radius: var(--radius);
  background:
    radial-gradient(800px 280px at 30% 20%, rgba(176,141,87,0.18), transparent 60%),
    radial-gradient(800px 280px at 70% 20%, rgba(31,75,67,0.14), transparent 60%),
    rgba(255,255,255,0.65);
  border: 1px dashed rgba(31,75,67,0.30);
  box-shadow: var(--shadow2);
}
.testimonialPlaceholder__inner{padding: 22px}
.stars{font-size: 20px; letter-spacing: 2px; color: var(--accent2); font-weight: 950}
.placeholderGrid{display:grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 14px;}
.phCard{
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px;
}
.phTitle{font-weight: 950; margin-bottom: 8px}
.phBody{color: var(--muted); font-weight: 650}

/* STATS */
.stats{display:grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 14px;}
.stat{
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px;
  box-shadow: var(--shadow2);
}
.stat__k{font-size: 12px; text-transform: uppercase; letter-spacing: .4px; color: var(--muted); font-weight: 950}
.stat__v{font-weight: 950; margin-top: 6px}

/* ABOUT */
.about{display:grid; grid-template-columns: 1.05fr 0.95fr; gap: 14px; margin-top: 18px;}
.aboutCard{
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow2);
  padding: 18px;
}
.aboutCard__media{
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(176,141,87,0.08);
  padding: 16px;
  margin-bottom: 14px;
}
.aboutCard__copy h3{margin:0 0 8px}
.link{color: var(--accent); font-weight: 950; text-decoration:none}
.link:hover{text-decoration: underline}
.affiliations{margin-top: 14px}

.ticks{margin: 12px 0 0; padding-left: 0; list-style:none; display:grid; gap: 8px}
.ticks li{display:flex; gap: 10px; color: var(--muted); font-weight: 750}
.ticks li::before{content:"✓"; color: var(--accent); font-weight: 950}

/* CONTACT */
.contactGrid{display:grid; grid-template-columns: 1.1fr 0.9fr; gap: 14px; margin-top: 18px; align-items:start;}
.form{
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow2);
  padding: 18px;
}
.formRow{display:block; margin-bottom: 12px}
label{font-weight: 900; display:block}
input, textarea{
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.90);
  font: inherit;
  margin-top: 6px;
}
input:focus, textarea:focus{
  outline: 3px solid rgba(31,75,67,0.18);
  border-color: rgba(31,75,67,0.35);
}

.contactCard{
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow2);
  padding: 18px;
}
.kv{display:grid; grid-template-columns: 90px 1fr; gap: 10px; padding: 10px 0; border-bottom: 1px solid var(--line);}
.kv:last-of-type{border-bottom:none}
.kv__k{color: var(--muted); font-weight: 900}
.kv__v a{text-decoration:none; font-weight: 950}
.kv__v a:hover{text-decoration:underline}
.divider{height:1px; background: var(--line); margin: 14px 0}

/* FOOTER */
.footer{padding: 26px 0 34px; border-top: 1px solid var(--line); background: rgba(255,255,255,0.55);}
.footer__grid{display:grid; grid-template-columns: 1.2fr 0.9fr 0.9fr; gap: 14px;}
.footer__brand{font-weight: 950; margin-bottom: 6px}
.footlinks{list-style:none; padding:0; margin: 10px 0 0; display:grid; gap: 8px}
.footlinks a{text-decoration:none; color: var(--muted); font-weight: 900}
.footlinks a:hover{color: var(--text)}
.footer__bottom{padding-top: 12px}

/* RESPONSIVE */
@media (max-width: 980px){
  .header__inner{grid-template-columns: 1fr; justify-items:start}
  .nav{justify-content:flex-start}
  .header__cta{justify-content:flex-start}
  .brand__text{white-space:normal}
  h1{font-size: 34px}
  .hero__grid{grid-template-columns: 1fr}
  .hero__media img{height: 320px}
  .hero__trust{grid-template-columns: 1fr}
  .strip__grid{grid-template-columns: 1fr}
  .tiles{grid-template-columns: 1fr}
  .steps{grid-template-columns: 1fr}
  .placeholderGrid{grid-template-columns: 1fr}
  .stats{grid-template-columns: 1fr}
  .about{grid-template-columns: 1fr}
  .contactGrid{grid-template-columns: 1fr}
  .footer__grid{grid-template-columns: 1fr}
  .cols{columns: 1}
}
