
:root {
  --ink: #183027;
  --ink-soft: #4d6158;
  --forest: #245c42;
  --forest-dark: #17412f;
  --leaf: #4f805d;
  --cream: #f7f2e7;
  --paper: #fffdf8;
  --amber: #d99532;
  --amber-soft: #f4ddae;
  --line: #d8dfd7;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(24, 48, 39, 0.10);
  --radius-lg: 26px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --max: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; }
a { color: var(--forest); text-underline-offset: 3px; }
a:hover { color: var(--forest-dark); }
button, input, textarea { font: inherit; }

.skip-link {
  position: fixed; left: 16px; top: -80px; z-index: 1000;
  background: var(--ink); color: var(--white); padding: 10px 14px; border-radius: 8px;
}
.skip-link:focus { top: 16px; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 253, 248, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(216, 223, 215, 0.85);
}
.topline { background: var(--forest-dark); color: #edf6ef; font-size: .86rem; }
.topline .wrap { display: flex; justify-content: space-between; gap: 20px; padding: 7px 24px; }
.topline a { color: #fff; text-decoration: none; }
.nav-wrap {
  max-width: var(--max); margin: 0 auto; padding: 14px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; color: var(--ink); text-decoration: none; min-width: 0; }
.brand-mark { width: 44px; height: 44px; flex: 0 0 auto; }
.brand-text { display: grid; line-height: 1.05; }
.brand-text strong { font-size: 1rem; letter-spacing: -.01em; }
.brand-text span { font-size: .77rem; color: var(--ink-soft); margin-top: 5px; }
.site-nav { display: flex; align-items: center; gap: 4px; }
.site-nav a {
  color: var(--ink); text-decoration: none; padding: 10px 12px; border-radius: 9px;
  font-size: .93rem; font-weight: 650;
}
.site-nav a:hover, .site-nav a[aria-current="page"] { background: #e9f0e9; color: var(--forest-dark); }
.nav-toggle { display: none; border: 1px solid var(--line); background: white; border-radius: 9px; padding: 9px 11px; color: var(--ink); }

.wrap { max-width: var(--max); margin: 0 auto; padding-left: 24px; padding-right: 24px; }
.section { padding: 88px 0; }
.section.compact { padding: 56px 0; }
.section.alt { background: var(--cream); }
.eyebrow {
  color: var(--forest); font-size: .78rem; font-weight: 800; letter-spacing: .13em;
  text-transform: uppercase; margin: 0 0 12px;
}
h1, h2, h3 { line-height: 1.16; letter-spacing: -.035em; margin-top: 0; }
h1 { font-size: clamp(2.55rem, 6vw, 5.5rem); max-width: 900px; margin-bottom: 24px; }
h2 { font-size: clamp(2rem, 4vw, 3.45rem); margin-bottom: 20px; }
h3 { font-size: 1.25rem; margin-bottom: 9px; }
p { margin-top: 0; }
.lead { font-size: clamp(1.05rem, 2vw, 1.28rem); color: var(--ink-soft); max-width: 760px; }
.muted { color: var(--ink-soft); }
.small { font-size: .9rem; }

.hero {
  position: relative; overflow: hidden; padding: 92px 0 74px;
  background:
    radial-gradient(circle at 89% 16%, rgba(217,149,50,.22), transparent 27%),
    radial-gradient(circle at 12% 88%, rgba(79,128,93,.16), transparent 31%),
    linear-gradient(180deg, #fffdf8 0%, #f8f3e8 100%);
}
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr); gap: 58px; align-items: center; }
.hero h1 span { color: var(--forest); }
.hero-copy .lead { margin-bottom: 30px; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  min-height: 46px; padding: 11px 18px; border-radius: 999px; border: 1px solid var(--forest);
  background: var(--forest); color: white; text-decoration: none; font-weight: 750;
}
.button:hover { background: var(--forest-dark); color: white; }
.button.secondary { background: transparent; color: var(--forest-dark); }
.button.secondary:hover { background: #edf3ed; }

.identity-card {
  position: relative; background: rgba(255,255,255,.86); border: 1px solid rgba(36,92,66,.16);
  border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow);
}
.identity-card::before {
  content: ""; position: absolute; inset: 12px 12px auto auto; width: 70px; height: 70px;
  background: var(--amber-soft); border-radius: 50% 50% 42% 58% / 55% 44% 56% 45%; opacity: .7;
}
.identity-card h2 { font-size: 1.45rem; max-width: 280px; position: relative; }
.fact-list { list-style: none; margin: 22px 0 0; padding: 0; display: grid; gap: 14px; position: relative; }
.fact-list li { border-top: 1px solid var(--line); padding-top: 12px; display: grid; gap: 2px; }
.fact-list span { color: var(--ink-soft); font-size: .77rem; text-transform: uppercase; letter-spacing: .08em; font-weight: 750; }
.fact-list strong { font-size: 1rem; overflow-wrap: anywhere; }

.trust-band { background: var(--forest-dark); color: white; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { padding: 27px 22px; border-left: 1px solid rgba(255,255,255,.18); }
.trust-item:first-child { border-left: 0; }
.trust-item span { display: block; font-size: .75rem; text-transform: uppercase; letter-spacing: .1em; color: #cfe0d4; }
.trust-item strong { display: block; margin-top: 5px; font-size: .97rem; }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.copy { max-width: 720px; }
.callout {
  background: #edf4ed; border-left: 4px solid var(--leaf); border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 22px 24px;
}
.callout strong { display: block; margin-bottom: 5px; }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 34px; }
.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 24px;
  box-shadow: 0 8px 24px rgba(24,48,39,.05);
}
.card .icon {
  width: 44px; height: 44px; border-radius: 13px; display: grid; place-items: center;
  background: var(--amber-soft); color: var(--forest-dark); font-weight: 900; margin-bottom: 17px;
}
.card p:last-child { margin-bottom: 0; }

.timeline { display: grid; gap: 0; margin-top: 36px; }
.timeline-item { display: grid; grid-template-columns: 130px 1fr; gap: 24px; padding: 26px 0; border-top: 1px solid var(--line); }
.timeline-item:last-child { border-bottom: 1px solid var(--line); }
.timeline-year { color: var(--forest); font-weight: 850; letter-spacing: -.02em; }
.timeline-item h3 { margin-bottom: 6px; }
.timeline-item p { margin-bottom: 0; color: var(--ink-soft); }

.verify-panel {
  background: var(--forest-dark); color: white; border-radius: var(--radius-lg); padding: 38px;
  display: grid; grid-template-columns: .8fr 1.2fr; gap: 46px; box-shadow: var(--shadow);
}
.verify-panel .eyebrow { color: #f0c46f; }
.verify-panel h2 { font-size: clamp(2rem, 4vw, 3rem); }
.verify-panel p { color: #d8e5dc; }
.verify-table { background: white; color: var(--ink); border-radius: var(--radius-md); padding: 12px 24px; }
.verify-row { display: grid; grid-template-columns: minmax(130px,.75fr) 1.25fr; gap: 18px; padding: 15px 0; border-bottom: 1px solid var(--line); }
.verify-row:last-child { border-bottom: 0; }
.verify-row span { color: var(--ink-soft); font-size: .84rem; }
.verify-row strong { overflow-wrap: anywhere; }

.link-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 30px; }
.link-card { display: block; text-decoration: none; background: white; border: 1px solid var(--line); border-radius: 15px; padding: 21px; }
.link-card:hover { border-color: var(--leaf); transform: translateY(-1px); }
.link-card strong { display: block; color: var(--ink); }
.link-card span { display: block; color: var(--ink-soft); font-size: .9rem; margin-top: 4px; }

.page-hero { padding: 70px 0 55px; background: var(--cream); border-bottom: 1px solid var(--line); }
.page-hero h1 { font-size: clamp(2.4rem, 5vw, 4.5rem); margin-bottom: 18px; }
.prose { max-width: 800px; }
.prose h2 { font-size: 2rem; margin-top: 52px; }
.prose h3 { margin-top: 32px; }
.prose ul { padding-left: 1.2em; }
.prose li + li { margin-top: 8px; }
.data-table { width: 100%; border-collapse: collapse; margin: 24px 0 34px; background: white; border: 1px solid var(--line); }
.data-table th, .data-table td { text-align: left; vertical-align: top; padding: 14px 16px; border-bottom: 1px solid var(--line); }
.data-table th { width: 34%; color: var(--ink-soft); font-size: .88rem; }
.data-table tr:last-child th, .data-table tr:last-child td { border-bottom: 0; }
.notice { border: 1px solid #e5c887; background: #fff8e8; border-radius: 13px; padding: 18px 20px; }

.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 48px; }
.contact-card { background: white; border: 1px solid var(--line); border-radius: var(--radius-md); padding: 27px; }
.contact-method { padding: 18px 0; border-top: 1px solid var(--line); }
.contact-method:first-of-type { border-top: 0; }
.contact-method span { display: block; color: var(--ink-soft); font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; font-weight: 750; }
.contact-method strong, .contact-method a { display: block; margin-top: 5px; font-size: 1.05rem; }
.form-grid { display: grid; gap: 16px; }
label { font-weight: 720; font-size: .93rem; }
input, textarea {
  width: 100%; margin-top: 6px; border: 1px solid #bfcabf; border-radius: 10px; padding: 12px 13px;
  background: white; color: var(--ink);
}
textarea { min-height: 150px; resize: vertical; }
input:focus, textarea:focus { outline: 3px solid rgba(79,128,93,.22); border-color: var(--leaf); }

.site-footer { background: #102c20; color: #e9f2ec; padding: 54px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr .7fr .8fr; gap: 44px; }
.site-footer h2 { font-size: 1.35rem; }
.site-footer p, .site-footer a { color: #bed0c4; }
.site-footer a:hover { color: white; }
.footer-links { display: grid; gap: 8px; }
.footer-links a { text-decoration: none; }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; padding-top: 26px; margin-top: 34px; border-top: 1px solid rgba(255,255,255,.16); color: #9eb5a7; font-size: .85rem; }

.reveal { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

@media (max-width: 900px) {
  .hero-grid, .two-col, .verify-panel, .contact-grid { grid-template-columns: 1fr; }
  .cards, .link-cards { grid-template-columns: 1fr 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-item:nth-child(3) { border-left: 0; border-top: 1px solid rgba(255,255,255,.18); }
  .trust-item:nth-child(4) { border-top: 1px solid rgba(255,255,255,.18); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > :first-child { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  .topline .wrap { padding-left: 16px; padding-right: 16px; }
  .topline .desktop-only { display: none; }
  .nav-wrap, .wrap { padding-left: 18px; padding-right: 18px; }
  .nav-toggle { display: none; }
  .nav-wrap { flex-wrap: wrap; }
  .site-nav {
    position: static; width: 100%; display: flex; flex-wrap: wrap; gap: 4px;
    background: transparent; border: 0; border-radius: 0; padding: 0; box-shadow: none;
  }
  .hero { padding-top: 64px; }
  .section { padding: 68px 0; }
  .cards, .link-cards, .trust-grid, .footer-grid { grid-template-columns: 1fr; }
  .trust-item, .trust-item:nth-child(3), .trust-item:nth-child(4) { border-left: 0; border-top: 1px solid rgba(255,255,255,.18); }
  .trust-item:first-child { border-top: 0; }
  .timeline-item { grid-template-columns: 1fr; gap: 6px; }
  .verify-panel { padding: 25px; }
  .verify-table { padding: 8px 16px; }
  .verify-row { grid-template-columns: 1fr; gap: 3px; }
  .footer-grid > :first-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .brand-text strong { font-size: .9rem; }
  .brand-text span { font-size: .7rem; }
}


/* Deployment compatibility guard: version 2026-08-01-v2 */
.site-header .topline { background:#17412f !important; color:#edf6ef !important; }
.site-header .nav-wrap { max-width:1160px !important; margin:0 auto !important; padding:14px 24px !important; display:flex !important; align-items:center !important; justify-content:space-between !important; gap:24px !important; }
.site-header .brand { display:flex !important; align-items:center !important; gap:12px !important; text-decoration:none !important; }
.site-header .brand-mark { width:44px !important; height:44px !important; flex:0 0 44px !important; }
.site-header .brand-text { display:grid !important; line-height:1.05 !important; }
.site-header .site-nav { display:flex !important; align-items:center !important; gap:4px !important; }
.site-header .nav-toggle { display:none !important; }
@media (max-width:720px){
  .site-header .nav-wrap{padding:12px 18px !important;flex-wrap:wrap !important;}
  .site-header .site-nav{width:100% !important;flex-wrap:wrap !important;}
}
