:root {
  --green: #06491f;
  --green-deep: #022f17;
  --green-black: #02190d;
  --gold: #d6bd7a;
  --gold-strong: #b89545;
  --cream: #fbf6e9;
  --paper: #ffffff;
  --ink: #101820;
  --ink-soft: #334155;
  --muted: #6b7280;
  --line: rgba(16, 24, 32, 0.12);
  --shadow: 0 24px 70px rgba(2, 25, 13, 0.18);
  --radius-xl: 30px;
  --radius-lg: 20px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: #fbfaf7;
  line-height: 1.6;
}
body.nav-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--gold-strong); }
img { display: block; max-width: 100%; }
.container { width: min(100% - 32px, var(--container)); margin-inline: auto; }
.skip-link {
  position: absolute; left: 12px; top: -100px; z-index: 100;
  padding: 10px 14px; border-radius: 999px; background: var(--gold); color: var(--green-black); font-weight: 900;
}
.skip-link:focus { top: 12px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.site-header.scrolled { border-bottom-color: var(--line); box-shadow: 0 10px 30px rgba(2, 25, 13, 0.08); }
.nav-shell { display: flex; align-items: center; justify-content: space-between; gap: 22px; min-height: 82px; }
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: 245px; }
.brand-mark { width: 48px; height: 48px; border-radius: 14px; box-shadow: 0 8px 20px rgba(6,73,31,.16); }
.brand-copy strong { display: block; font-size: 1.02rem; line-height: 1.1; letter-spacing: -0.02em; }
.brand-copy small { display: block; margin-top: 4px; color: var(--muted); font-size: .78rem; font-weight: 700; }
.site-nav { display: flex; align-items: center; justify-content: flex-end; gap: 6px; font-size: .88rem; font-weight: 800; color: #26323f; }
.site-nav a { padding: 10px 10px; border-radius: 999px; white-space: nowrap; }
.site-nav a:hover { background: rgba(214,189,122,.18); color: var(--green); }
.site-nav .nav-cta { padding: 11px 16px; color: var(--green-black); background: linear-gradient(135deg, #f5e4aa, var(--gold)); }
.site-nav .nav-cta:hover { color: var(--green-black); background: var(--gold); }
.nav-toggle { display: none; width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 999px; background: #fff; cursor: pointer; }
.nav-toggle span:not(.sr-only) { display: block; width: 19px; height: 2px; margin: 4px auto; background: var(--green); border-radius: 999px; transition: transform .2s ease, opacity .2s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(4) { transform: translateY(-6px) rotate(-45deg); }

.hero { position: relative; min-height: 820px; display: grid; align-items: center; overflow: hidden; color: #fff; background: var(--green-black); }
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .72; transform: scale(1.02); }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(105deg, rgba(2,25,13,.95) 0%, rgba(2,25,13,.82) 42%, rgba(2,25,13,.32) 100%); }
.hero-grid { position: relative; display: grid; grid-template-columns: minmax(0, 1.1fr) 410px; gap: 52px; align-items: center; padding: 96px 0; }
.eyebrow { margin: 0 0 14px; color: var(--gold-strong); font-size: .78rem; line-height: 1.3; text-transform: uppercase; letter-spacing: .15em; font-weight: 900; }
.hero .eyebrow { color: #f5e4aa; }
h1, h2, h3 { margin: 0; line-height: 1.05; letter-spacing: -0.045em; }
h1 { font-size: clamp(3.3rem, 8vw, 7.8rem); }
h2 { font-size: clamp(2rem, 4vw, 3.8rem); }
h3 { font-size: 1.4rem; }
p { margin: 0; color: var(--ink-soft); }
.hero-lead { max-width: 730px; margin-top: 24px; color: rgba(255,255,255,.80); font-size: clamp(1.06rem, 2vw, 1.28rem); }
.hero-actions, .contact-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 0 23px; border-radius: 999px; font-weight: 900; border: 1px solid transparent; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button.primary { color: var(--green-black); background: linear-gradient(135deg, #f5e4aa, var(--gold)); box-shadow: 0 16px 44px rgba(214,189,122,.30); }
.button.ghost { color: #fff; background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.24); }
.button.dark { color: #fff; background: var(--green); }
.button.full { width: 100%; }
.hero-stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; max-width: 660px; margin: 42px 0 0; }
.hero-stats div { padding: 18px; border: 1px solid rgba(255,255,255,.16); border-radius: 18px; background: rgba(255,255,255,.08); backdrop-filter: blur(12px); }
.hero-stats dt { font-size: 1.8rem; line-height: 1; color: #f5e4aa; font-weight: 950; }
.hero-stats dd { margin: 6px 0 0; color: rgba(255,255,255,.72); font-size: .9rem; }
.hero-card { padding: 30px; border: 1px solid rgba(255,255,255,.18); border-radius: var(--radius-xl); background: rgba(255,255,255,.11); backdrop-filter: blur(24px); box-shadow: var(--shadow); }
.hero-card img { width: 88px; height: 88px; border-radius: 22px; margin-bottom: 22px; }
.hero-card .card-label { color: #f5e4aa; font-weight: 900; text-transform: uppercase; letter-spacing: .12em; font-size: .78rem; }
.hero-card h2 { margin-top: 12px; font-size: 2.05rem; color: #fff; }
.hero-card ul { display: grid; gap: 11px; margin: 24px 0 22px; padding: 0; list-style: none; }
.hero-card li { position: relative; padding-left: 28px; color: rgba(255,255,255,.84); }
.hero-card li::before { content: "✓"; position: absolute; left: 0; color: #f5e4aa; font-weight: 950; }
.text-link { color: #f5e4aa; font-weight: 900; }

.tab-strip { position: sticky; top: 82px; z-index: 30; background: rgba(6,73,31,.96); border-top: 1px solid rgba(255,255,255,.12); border-bottom: 1px solid rgba(255,255,255,.12); backdrop-filter: blur(18px); }
.tab-grid { display: flex; align-items: center; gap: 4px; overflow-x: auto; scrollbar-width: none; }
.tab-grid::-webkit-scrollbar { display: none; }
.tab-grid a { flex: 0 0 auto; padding: 14px 13px; color: rgba(255,255,255,.82); font-size: .84rem; font-weight: 900; white-space: nowrap; border-bottom: 3px solid transparent; }
.tab-grid a:hover, .tab-grid a.active { color: #fff; border-bottom-color: var(--gold); }

.section { padding: 94px 0; scroll-margin-top: 150px; }
.intro-section { background: var(--cream); }
.split-intro { display: grid; grid-template-columns: .9fr 1.1fr; gap: 58px; align-items: end; }
.lead { font-size: 1.18rem; color: var(--ink-soft); }
.service-section { background: #fff; }
.service-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.service-card { display: flex; min-height: 440px; flex-direction: column; padding: 34px; border: 1px solid var(--line); border-radius: var(--radius-xl); background: #fff; box-shadow: 0 18px 50px rgba(2,25,13,.08); }
.service-card.featured { background: linear-gradient(145deg, var(--green), var(--green-black)); color: #fff; border-color: rgba(214,189,122,.4); }
.service-number { display: inline-flex; width: fit-content; margin-bottom: 34px; padding: 7px 12px; border-radius: 999px; background: rgba(214,189,122,.18); color: var(--gold-strong); font-size: .82rem; font-weight: 950; }
.service-card.featured .service-number { color: #f5e4aa; background: rgba(255,255,255,.10); }
.service-card h2 { font-size: clamp(1.9rem, 3vw, 2.9rem); margin-bottom: 18px; }
.service-card p { margin-bottom: 22px; }
.service-card.featured p, .service-card.featured li { color: rgba(255,255,255,.78); }
.service-card ul { display: grid; gap: 10px; margin: 0 0 28px; padding-left: 1.1rem; color: var(--ink-soft); }
.card-action { margin-top: auto; color: var(--green); font-weight: 950; }
.service-card.featured .card-action { color: #f5e4aa; }

.feature-section { background: var(--green-black); color: #fff; }
.feature-section .eyebrow { color: #f5e4aa; }
.feature-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 58px; align-items: center; }
.feature-copy p:not(.eyebrow) { margin-top: 22px; color: rgba(255,255,255,.76); font-size: 1.08rem; }
.feature-image img { width: 100%; border-radius: var(--radius-xl); box-shadow: var(--shadow); border: 1px solid rgba(255,255,255,.16); }
.tag-cloud, .area-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.tag-cloud span { padding: 10px 14px; border-radius: 999px; color: #fff; background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.14); font-weight: 850; font-size: .9rem; }
.area-tags span { padding: 9px 13px; border-radius: 999px; background: var(--cream); border: 1px solid var(--line); font-weight: 850; font-size: .9rem; color: var(--ink-soft); }

.insights-section { background: #fff; }
.section-heading { max-width: 830px; margin-bottom: 44px; }
.insight-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.insight-grid article { min-height: 260px; padding: 28px; border-radius: var(--radius-lg); border: 1px solid var(--line); background: #fff; box-shadow: 0 18px 45px rgba(2,25,13,.06); }
.insight-grid span { display: inline-block; margin-bottom: 36px; color: var(--gold-strong); text-transform: uppercase; letter-spacing: .12em; font-size: .78rem; font-weight: 950; }
.insight-grid h3 { margin-bottom: 14px; }

.about-section { background: var(--cream); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 58px; align-items: center; }
.about-card img { width: 100%; border-radius: var(--radius-xl); box-shadow: var(--shadow); border: 1px solid rgba(16,24,32,.10); }
.about-copy p:not(.eyebrow) { margin-top: 18px; }

.contact-section { background: #fff; }
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 58px; align-items: start; }
.contact-copy p:not(.eyebrow) { margin-top: 20px; font-size: 1.08rem; }
address { margin-top: 28px; font-style: normal; color: var(--ink-soft); }
address strong { color: var(--ink); }
address a { color: var(--green); font-weight: 900; }
.contact-form { display: grid; gap: 16px; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius-xl); background: var(--cream); box-shadow: 0 18px 50px rgba(2,25,13,.08); }
label { display: grid; gap: 7px; color: var(--ink); font-weight: 900; }
input, select, textarea { width: 100%; border: 1px solid rgba(16,24,32,.16); border-radius: 15px; padding: 13px 14px; font: inherit; color: var(--ink); background: #fff; }
input:focus, select:focus, textarea:focus { outline: 3px solid rgba(214,189,122,.28); border-color: var(--gold-strong); }
textarea { resize: vertical; }
.form-note { color: var(--muted); font-size: .84rem; }

.site-footer { padding: 42px 0 30px; background: var(--green-black); color: #fff; }
.footer-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 34px; align-items: start; }
.footer-brand { display: inline-flex; align-items: center; gap: 12px; font-size: 1.05rem; font-weight: 950; }
.footer-brand img { width: 44px; height: 44px; border-radius: 12px; }
.footer-brand-block p { max-width: 420px; margin-top: 16px; color: rgba(255,255,255,.62); }
.footer-links { display: flex; flex-wrap: wrap; gap: 12px 16px; justify-content: flex-end; color: rgba(255,255,255,.75); font-weight: 850; font-size: .92rem; }
.footer-links a:hover { color: #f5e4aa; }
.compliance-note { grid-column: 1 / -1; color: rgba(255,255,255,.58); font-size: .85rem; border-top: 1px solid rgba(255,255,255,.12); padding-top: 22px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 18px; margin-top: 28px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.64); font-size: .88rem; }
.footer-bottom a { font-weight: 900; color: #f5e4aa; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }

@media (max-width: 1120px) {
  .site-nav { font-size: .82rem; gap: 2px; }
  .site-nav a { padding-inline: 8px; }
}
@media (max-width: 980px) {
  .nav-shell { min-height: 76px; }
  .nav-toggle { display: block; }
  .site-nav {
    position: fixed; left: 16px; right: 16px; top: 86px; z-index: 60;
    display: none; flex-direction: column; align-items: stretch; gap: 6px;
    padding: 18px; border: 1px solid var(--line); border-radius: 22px; background: #fff; box-shadow: var(--shadow);
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 13px 14px; }
  .site-nav .nav-cta { text-align: center; }
  .tab-strip { top: 76px; }
  .hero-grid, .split-intro, .feature-grid, .about-grid, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-grid { padding: 70px 0; }
  .service-grid { grid-template-columns: 1fr; }
  .insight-grid { grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; }
}
@media (max-width: 640px) {
  .container { width: min(100% - 26px, var(--container)); }
  .brand { min-width: 0; }
  .brand-copy small { display: none; }
  .brand-copy strong { font-size: .96rem; }
  .brand-mark { width: 42px; height: 42px; }
  .hero-overlay { background: linear-gradient(105deg, rgba(2,25,13,.96), rgba(2,25,13,.74)); }
  .hero-grid { gap: 28px; padding: 54px 0; }
  .hero-actions, .contact-actions { flex-direction: column; align-items: stretch; }
  .hero-stats { grid-template-columns: 1fr; }
  .hero-card, .service-card, .contact-form { padding: 24px; border-radius: 22px; }
  .section { padding: 72px 0; scroll-margin-top: 135px; }
  .tab-grid a { padding: 12px 11px; font-size: .8rem; }
  h1 { font-size: clamp(3.1rem, 17vw, 4.4rem); }
  h2 { font-size: clamp(2rem, 10vw, 3rem); }
  .footer-bottom { flex-direction: column; }
}
