
:root {
  --ink: #111714;
  --forest: #173b2a;
  --forest-2: #24533c;
  --gold: #b89a5e;
  --sand: #eee8dc;
  --stone: #f6f4ef;
  --white: #ffffff;
  --muted: #68736c;
  --line: #d9ddd7;
  --shadow: 0 18px 50px rgba(17, 23, 20, 0.08);
  --shadow-soft: 0 14px 40px rgba(17, 23, 20, 0.10);
  --radius: 18px;
  --max: 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: linear-gradient(180deg, #fbfaf7 0%, #ffffff 35%, #fbfaf7 100%);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; }

.container { width: min(100% - 32px, var(--max)); margin: 0 auto; }
.eyebrow { text-transform: uppercase; letter-spacing: .16em; font-size: .78rem; color: var(--gold); font-weight: 700; }
.section { padding: 92px 0; }
.section.alt { background: linear-gradient(180deg, #f8f5ef 0%, #f4f1ea 100%); }
.section.dark { background: var(--ink); color: var(--white); }
.section-header { max-width: 760px; margin-bottom: 38px; }
.section-header h2 { margin: 10px 0 14px; font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1.1; letter-spacing: -.03em; }
.section-header p { margin: 0; color: var(--muted); font-size: 1.05rem; }
.dark .section-header p { color: #c8d0cb; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.90);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(217,221,215,.7);
}
.nav-wrap { height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: flex; align-items: center; gap: 12px; font-weight: 800; letter-spacing: .08em; }
.brand-mark {
  width: 36px; height: 36px; border-radius: 8px;
  background: linear-gradient(135deg, var(--forest), var(--gold));
  position: relative;
  box-shadow: 0 10px 20px rgba(23,59,42,.16);
}
.brand-mark::after { content: "K"; color: white; position: absolute; inset: 0; display: grid; place-items: center; font-weight: 800; }
.nav-links { display: flex; gap: 24px; align-items: center; font-size: .95rem; }
.nav-links a:hover { color: var(--forest-2); }
.nav-toggle { display: none; background: none; border: 0; font-size: 1.5rem; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 20px; border-radius: 999px; border: 1px solid transparent;
  font-weight: 700; transition: .2s ease; cursor: pointer;
}
.btn.primary { background: var(--forest); color: white; }
.btn.primary:hover { background: var(--forest-2); transform: translateY(-1px); }
.btn.secondary { border-color: var(--line); background: rgba(255,255,255,.92); }
.btn.secondary:hover { border-color: var(--forest); }
.btn.gold { background: var(--gold); color: var(--ink); }

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 20%, rgba(184,154,94,.16), transparent 30%),
    linear-gradient(135deg, #fbfaf6 0%, #eef2ed 48%, #e6ece6 100%);
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.0));
}
.hero::after {
  content: ""; position: absolute; right: -90px; top: 70px; width: 420px; height: 420px;
  border: 1px solid rgba(23,59,42,.10); border-radius: 50%; box-shadow: 0 0 0 42px rgba(23,59,42,.03), 0 0 0 86px rgba(184,154,94,.04);
}
.hero-grid { min-height: 760px; display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 60px; position: relative; z-index: 2; }
.hero h1 { font-size: clamp(3.2rem, 7vw, 6.2rem); line-height: .94; margin: 16px 0 24px; letter-spacing: -.05em; }
.hero p { max-width: 760px; font-size: 1.12rem; color: #526057; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }
.hero-media { position: relative; }
.media-shell {
  position: relative; border-radius: 30px; overflow: hidden; box-shadow: var(--shadow-soft);
  min-height: 560px; background: #d9e0da;
}
.media-shell img { width: 100%; height: 100%; object-fit: cover; }
.media-shell::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(17,23,20,.04), rgba(17,23,20,.20));
}
.floating-panel, .hero-card {
  background: rgba(17,23,20,.94); color: white; border-radius: 26px; padding: 30px;
  box-shadow: var(--shadow);
}
.floating-panel {
  position: absolute; left: -20px; bottom: 24px; max-width: 340px;
  backdrop-filter: blur(8px);
}
.hero-card h3, .floating-panel h3 { margin-top: 0; font-size: 1.4rem; }
.hero-card ul, .floating-panel ul { list-style: none; padding: 0; margin: 20px 0 0; }
.hero-card li, .floating-panel li { padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.12); color: #d8ded9; }
.hero-card li:last-child, .floating-panel li:last-child { border-bottom: 0; }

.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card {
  background: rgba(255,255,255,.88); border: 1px solid rgba(217,221,215,.9); border-radius: var(--radius); padding: 28px;
  box-shadow: 0 8px 28px rgba(17,23,20,.04); backdrop-filter: blur(6px);
}
.card h3 { margin: 0 0 10px; font-size: 1.25rem; }
.card p { margin: 0; color: var(--muted); }
.card .num { font-size: 2.1rem; font-weight: 800; color: var(--forest); margin-bottom: 10px; }

.sector-card { min-height: 360px; display: flex; flex-direction: column; justify-content: space-between; overflow: hidden; padding: 0; }
.sector-card-content { padding: 24px; }
.sector-card .tag { color: var(--gold); font-size: .78rem; text-transform: uppercase; letter-spacing: .12em; font-weight: 700; }
.sector-card a { display: inline-block; margin-top: 16px; font-weight: 700; color: var(--forest); }
.card-image { height: 190px; overflow: hidden; background: #dfe5e0; }
.card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.sector-card:hover .card-image img, .image-card:hover img { transform: scale(1.04); }

.image-grid { display: grid; gap: 24px; grid-template-columns: repeat(3, minmax(0,1fr)); }
.image-card { background: white; border: 1px solid var(--line); border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-soft); }
.image-card img { width: 100%; height: 260px; object-fit: cover; }
.image-card .content { padding: 22px; }
.image-card .content h3 { margin: 0 0 8px; }
.image-card .content p { margin: 0; color: var(--muted); }

.split-feature { align-items: center; }
.feature-media { border-radius: 28px; overflow: hidden; box-shadow: var(--shadow-soft); min-height: 420px; }
.feature-media img { width: 100%; height: 100%; object-fit: cover; }

.timeline { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.step { padding: 22px; border-top: 3px solid var(--gold); background: white; border-radius: 0 0 var(--radius) var(--radius); box-shadow: 0 6px 18px rgba(17,23,20,.04); }
.step span { display: block; font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); }
.step h4 { margin: 8px 0 0; }

.quote {
  font-size: clamp(1.7rem, 3vw, 2.8rem); line-height: 1.25; max-width: 900px; margin: 0;
}

.cta {
  border-radius: 30px; padding: 42px; display: flex; justify-content: space-between; gap: 30px; align-items: center;
  background: linear-gradient(135deg, var(--forest), #0f281c); color: white;
  box-shadow: var(--shadow-soft);
}
.cta p { color: #cdd8d1; max-width: 700px; }

.page-hero {
  position: relative;
  padding: 140px 0 88px;
  background: linear-gradient(180deg, #f7f4ee 0%, #f0ede6 100%);
  overflow: hidden;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(90deg, rgba(17,23,20,.70) 0%, rgba(17,23,20,.46) 45%, rgba(17,23,20,.18) 100%), var(--hero-image, none);
  background-size: cover; background-position: center;
  opacity: var(--hero-opacity, 1);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(2.8rem, 6vw, 5.2rem); line-height: 1; margin: 10px 0 18px; color: white; letter-spacing: -.04em; }
.page-hero p { max-width: 760px; color: rgba(255,255,255,.84); font-size: 1.08rem; }
.page-hero .eyebrow { color: #d6bf92; }

.prose { max-width: 820px; }
.prose h2 { margin-top: 42px; font-size: 2rem; }
.prose p, .prose li { color: #4d5a52; }

.list-clean { list-style: none; padding: 0; margin: 0; }
.list-clean li { padding: 10px 0 10px 28px; position: relative; border-bottom: 1px solid var(--line); }
.list-clean li::before { content: "•"; position: absolute; left: 8px; color: var(--gold); }

.form { display: grid; gap: 16px; }
.form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
label { font-weight: 700; font-size: .92rem; }
input, textarea, select {
  width: 100%; padding: 14px 15px; border: 1px solid var(--line); border-radius: 12px; margin-top: 7px; background: white;
}
textarea { min-height: 150px; resize: vertical; }
.notice { font-size: .85rem; color: var(--muted); }

.site-footer { background: #0e1511; color: white; padding: 58px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 42px; }
.footer-grid p, .footer-grid a { color: #bfc8c2; }
.footer-links { display: grid; gap: 10px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 34px; padding-top: 22px; color: #98a49c; font-size: .9rem; display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }

.disclosure { background: #f3eee4; border: 1px solid #e3d6bd; color: #5c4c2c; padding: 16px 18px; border-radius: 12px; }

@media (max-width: 980px) {
  .hero-grid, .grid-3, .grid-4, .footer-grid, .image-grid { grid-template-columns: 1fr 1fr; }
  .timeline { grid-template-columns: 1fr 1fr; }
  .nav-toggle { display: block; }
  .nav-links { position: absolute; top: 78px; left: 0; right: 0; background: white; border-bottom: 1px solid var(--line); padding: 20px; display: none; flex-direction: column; align-items: flex-start; }
  .nav-links.open { display: flex; }
  .floating-panel { left: 18px; right: 18px; max-width: none; }
}
@media (max-width: 700px) {
  .section { padding: 68px 0; }
  .hero-grid, .grid-2, .grid-3, .grid-4, .footer-grid, .form-row, .image-grid { grid-template-columns: 1fr; }
  .hero-grid { min-height: auto; padding: 92px 0 70px; }
  .hero-media { margin-top: 8px; }
  .media-shell { min-height: 360px; }
  .floating-panel { position: static; margin-top: 16px; }
  .timeline { grid-template-columns: 1fr; }
  .cta { flex-direction: column; align-items: flex-start; }
  .nav-wrap { height: 70px; }
  .nav-links { top: 70px; }
  .page-hero { padding: 118px 0 72px; }
}
