:root {
  --brand-green: #006B00;
  --brand-green-dark: #004B00;
  --brand-black: #000000;
  --brand-white: #FFFFFF;
  --brand-gray: #7F7F7F;
  --full-flavour-burgundy: #7B2228;
  --full-flavour-gold: #D9BA32;
  --menthol-green: #1E6D34;
  --menthol-silver: #A4AD9C;

  --text: #152015;
  --muted: #5d695d;
  --line: #cfe0cf;
  --surface: #f4f8f3;
  --surface-2: #e5f1e5;
  --card: #ffffff;
  --gold-soft: #fff8df;
  --green-soft: #dff0df;
  --red-soft: #f8eeee;
  --shadow: 0 18px 55px rgba(0, 75, 0, 0.15);
  --shadow-soft: 0 10px 28px rgba(0, 75, 0, 0.09);
  --radius: 22px;
  --radius-sm: 14px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--brand-white);
  line-height: 1.6;
}
img { max-width: 100%; height: auto; }
::selection { background: rgba(0, 107, 0, 0.18); color: var(--text); }
a { color: var(--brand-green-dark); text-decoration-thickness: 0.08em; text-underline-offset: 0.2em; }
a:hover { color: var(--brand-green); }
:focus-visible { outline: 3px solid rgba(217,186,50,0.95); outline-offset: 3px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(90deg, rgba(255,255,255,0.97), rgba(244,248,243,0.97));
  border-bottom: 3px solid var(--brand-green);
  box-shadow: 0 6px 22px rgba(0, 75, 0, 0.07);
  backdrop-filter: blur(14px);
}
.nav-wrap {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.logo-link { display: inline-flex; align-items: center; text-decoration: none; }
.logo-link img { width: 230px; display: block; }
.nav-toggle {
  display: none;
  border: 1px solid var(--brand-green);
  background: var(--brand-white);
  border-radius: 12px;
  padding: 10px 12px;
  color: var(--brand-green-dark);
  font-weight: 700;
  cursor: pointer;
  transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}
.nav-toggle:hover { background: var(--surface-2); transform: translateY(-1px); }
.nav-menu {
  display: flex;
  gap: 4px;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav-menu a {
  display: inline-flex;
  padding: 10px 13px;
  border-radius: 999px;
  color: var(--text);
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 600;
  transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}
.nav-menu a:hover {
  background: var(--surface-2);
  color: var(--brand-green-dark);
  transform: translateY(-1px);
}
.nav-menu a[aria-current="page"] {
  background: var(--brand-green);
  color: var(--brand-white);
  box-shadow: 0 7px 18px rgba(0, 107, 0, 0.18);
}

main { min-height: 70vh; }
.container { width: min(var(--max), calc(100% - 32px)); margin: 0 auto; }
.section { padding: 76px 0; }
.section-tight { padding: 46px 0; }
.bg-surface { background: linear-gradient(180deg, var(--surface) 0%, #eef6ee 100%); }
.bg-dark { background: #082208; color: #eaf2ea; }
.bg-dark h2, .bg-dark h3 { color: #ffffff; }
.bg-dark .lead, .bg-dark p { color: #d7e2d7; }

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(217, 186, 50, 0.23), transparent 32%),
    radial-gradient(circle at bottom left, rgba(0, 107, 0, 0.13), transparent 38%),
    linear-gradient(135deg, #f7fbf6 0%, #e5f2e5 52%, #ffffff 100%);
  border-bottom: 1px solid var(--line);
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 5px;
  background: linear-gradient(90deg, var(--brand-green-dark), var(--brand-green), var(--full-flavour-gold));
}
.hero .container {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 46px;
  align-items: center;
  min-height: 600px;
  padding: 66px 0;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand-green-dark);
  background: #dff0df;
  border: 1px solid #b9d6b9;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 5px 16px rgba(0, 75, 0, 0.07);
}
h1, h2, h3 { line-height: 1.12; margin: 0 0 18px; }
h1 { font-size: clamp(2.45rem, 6vw, 5rem); letter-spacing: -0.06em; }
h2 { font-size: clamp(2rem, 4vw, 3.35rem); letter-spacing: -0.045em; }
h3 { font-size: 1.28rem; letter-spacing: -0.015em; }
p { margin: 0 0 16px; }
.lead { color: var(--muted); font-size: clamp(1.03rem, 2vw, 1.23rem); max-width: 760px; }
.small { font-size: 0.94rem; color: var(--muted); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 19px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease, border-color 160ms ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(180deg, #087608 0%, var(--brand-green) 100%);
  color: var(--brand-white);
  box-shadow: 0 9px 22px rgba(0, 107, 0, 0.22);
}
.btn-primary:hover { background: var(--brand-green-dark); color: var(--brand-white); box-shadow: 0 12px 26px rgba(0, 75, 0, 0.28); }
.btn-secondary { border-color: #90b990; color: var(--brand-green-dark); background: rgba(255,255,255,0.92); }
.btn-secondary:hover { background: var(--surface-2); border-color: var(--brand-green); box-shadow: var(--shadow-soft); }

.hero-panel {
  background: rgba(255,255,255,0.96);
  border: 1px solid #c5dcc5;
  border-top: 5px solid var(--brand-green);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
}
.hero-panel h2 { font-size: 1.3rem; letter-spacing: -0.01em; }
.stat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 20px; }
.stat {
  padding: 18px;
  border-radius: var(--radius-sm);
  background: linear-gradient(145deg, #ffffff, var(--surface));
  border: 1px solid var(--line);
  box-shadow: 0 7px 20px rgba(0, 75, 0, 0.05);
}
.stat strong { display: block; font-size: 1.35rem; color: var(--brand-green-dark); }
.stat span { color: var(--muted); font-size: 0.92rem; }

.page-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(217, 186, 50, 0.18), transparent 32%),
    radial-gradient(circle at bottom left, rgba(0, 107, 0, 0.12), transparent 38%),
    linear-gradient(135deg, #edf7ed 0%, #ffffff 78%);
  border-bottom: 1px solid var(--line);
  box-shadow: inset 0 -5px 0 rgba(0, 107, 0, 0.82);
  padding: 80px 0 64px;
}
.page-hero h1 { font-size: clamp(2.4rem, 5vw, 4.3rem); max-width: 940px; }
.page-hero .lead { max-width: 830px; }

.kicker { color: var(--brand-green-dark); font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.82rem; margin-bottom: 10px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; align-items: start; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: 0 14px 38px rgba(0, 75, 0, 0.055);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}
.card:hover { transform: translateY(-3px); border-color: #b2d0b2; box-shadow: var(--shadow-soft); }
.card-muted { background: var(--surface); box-shadow: none; }
.card-green { background: linear-gradient(145deg, #e3f2e3, #f4faf4); border-color: #b9d6b9; box-shadow: none; }
.card h3 { color: var(--brand-green-dark); }
.card p:last-child { margin-bottom: 0; }
.icon-card { min-height: 100%; }

.check-list, .plain-list { padding-left: 0; margin: 18px 0 0; list-style: none; }
.check-list li, .plain-list li {
  position: relative;
  padding: 10px 0 10px 34px;
  border-bottom: 1px solid var(--line);
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 10px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-green);
  color: var(--brand-white);
  font-weight: 700;
  font-size: 0.78rem;
}
.plain-list li::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 19px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-green);
}

.callout {
  border-left: 5px solid var(--brand-green);
  background: var(--surface);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 18px 20px;
}
.callout.gold { border-color: var(--full-flavour-gold); background: var(--gold-soft); }
.callout.red { border-color: var(--full-flavour-burgundy); background: var(--red-soft); }

.timeline { display: grid; gap: 18px; margin-top: 24px; }
.timeline-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
}
.timeline-item strong { color: var(--brand-green-dark); }

.job-list { margin-top: 28px; display: grid; gap: 22px; }
.job-card { display: grid; gap: 12px; }
.job-meta { display: flex; flex-wrap: wrap; gap: 8px; }
.badge {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: #dcefdc;
  border: 1px solid #bdd8bd;
  color: var(--brand-green-dark);
  font-weight: 800;
  font-size: 0.82rem;
}
.job-details-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.empty-state { padding: 22px; border: 1px dashed var(--line); border-radius: var(--radius-sm); background: var(--surface); }
.status-note {
  background: var(--gold-soft);
  border: 1px solid #ead47a;
  border-radius: var(--radius-sm);
  padding: 16px;
  color: #52430b;
}

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.contact-item { padding: 20px; border: 1px solid var(--line); border-left: 4px solid var(--brand-green); border-radius: var(--radius-sm); background: var(--surface); }
.contact-item strong { display: block; color: var(--brand-green-dark); margin-bottom: 6px; }

.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius-sm); }
table { width: 100%; border-collapse: collapse; min-width: 620px; background: var(--brand-white); }
th, td { padding: 14px 16px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
th { background: #e3f0e3; color: var(--brand-green-dark); border-bottom: 2px solid #b8d3b8; }

.footer {
  background: linear-gradient(145deg, #061806 0%, #0a2b0a 100%);
  color: #dbe6db;
  border-top: 5px solid var(--brand-green);
  padding: 44px 0 24px;
}
.footer a { color: #ffffff; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 0.7fr 0.7fr; gap: 28px; }
.footer-logo { width: 230px; margin-bottom: 14px; }
.footer h2, .footer h3 { color: var(--brand-white); font-size: 1rem; letter-spacing: 0; }
.footer ul { margin: 0; padding: 0; list-style: none; }
.footer li { margin-bottom: 8px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  margin-top: 32px;
  padding-top: 18px;
  color: #acbbac;
  font-size: 0.9rem;
}
code { background: var(--surface-2); border: 1px solid var(--line); border-radius: 8px; padding: 2px 6px; }

@media (max-width: 980px) {
  .hero .container, .grid-2, .grid-3, .grid-4, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
  .hero .container { min-height: auto; }
}
@media (max-width: 760px) {
  .nav-toggle { display: inline-flex; }
  .nav-menu {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 78px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: var(--brand-white);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 10px;
    box-shadow: var(--shadow);
    z-index: 120;
  }
  .nav-menu.is-open { display: flex; }
  .nav-menu a { border-radius: 12px; }
  .logo-link img { width: 185px; }
  .section { padding: 54px 0; }
  .page-hero { padding: 56px 0 44px; }
  .stat-grid, .job-details-grid { grid-template-columns: 1fr; }
  .timeline-item { grid-template-columns: 1fr; gap: 8px; }
}


/* Motion accessibility: preserve feedback without forcing animation. */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* =========================================================
   v3.4 UX ENHANCEMENTS
   Local-only icons, dark mode, motion, and interaction polish.
   ========================================================= */

:root {
  color-scheme: light;
  --header-bg: rgba(255, 255, 255, 0.97);
  --header-bg-2: rgba(244, 248, 243, 0.97);
  --body-bg: #ffffff;
  --hero-start: #f7fbf6;
  --hero-mid: #e5f2e5;
  --hero-end: #ffffff;
  --page-hero-start: #edf7ed;
  --page-hero-end: #ffffff;
  --footer-start: #061806;
  --footer-end: #0a2b0a;
  --icon-bg: #e3f2e3;
  --icon-border: #bdd8bd;
  --icon-color: #006b00;
  --motion-fast: 160ms;
  --motion-base: 240ms;
  --motion-slow: 520ms;
}

html[data-theme="dark"] {
  color-scheme: dark;
  --text: #edf5ed;
  --muted: #b4c3b5;
  --line: #2b4430;
  --surface: #101a12;
  --surface-2: #17271a;
  --card: #132016;
  --gold-soft: #2b2714;
  --green-soft: #15331a;
  --red-soft: #301b1e;
  --shadow: 0 20px 58px rgba(0, 0, 0, 0.35);
  --shadow-soft: 0 12px 32px rgba(0, 0, 0, 0.28);
  --header-bg: rgba(10, 18, 11, 0.96);
  --header-bg-2: rgba(16, 29, 18, 0.96);
  --body-bg: #0b120c;
  --hero-start: #0d180f;
  --hero-mid: #102516;
  --hero-end: #0b120c;
  --page-hero-start: #102416;
  --page-hero-end: #0b120c;
  --footer-start: #050b06;
  --footer-end: #071408;
  --icon-bg: #17361c;
  --icon-border: #2f5935;
  --icon-color: #8fd592;
}

body {
  background: var(--body-bg);
  transition: background-color var(--motion-base) ease, color var(--motion-base) ease;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
}

.ui-icon,
.btn-icon,
.card-icon,
.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.ui-icon svg,
.btn-icon svg,
.card-icon svg,
.contact-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.site-header {
  background: linear-gradient(90deg, var(--header-bg), var(--header-bg-2));
  transition: min-height var(--motion-base) ease, background-color var(--motion-base) ease, box-shadow var(--motion-base) ease, border-color var(--motion-base) ease;
}
.site-header.is-scrolled {
  box-shadow: 0 9px 28px rgba(0, 75, 0, 0.12);
}
html[data-theme="dark"] .site-header.is-scrolled {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.38);
}
.site-header.is-scrolled .nav-wrap { min-height: 70px; }
.nav-wrap { transition: min-height var(--motion-base) ease; }
.primary-nav { margin-left: auto; }
.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.theme-toggle,
.scroll-top {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--brand-green-dark);
  background: var(--card);
  box-shadow: 0 7px 18px rgba(0, 75, 0, 0.08);
  cursor: pointer;
  transition: transform var(--motion-fast) ease, background-color var(--motion-fast) ease, color var(--motion-fast) ease, border-color var(--motion-fast) ease, box-shadow var(--motion-fast) ease;
}
.theme-toggle .ui-icon,
.scroll-top .ui-icon { width: 20px; height: 20px; }
.theme-toggle:hover,
.scroll-top:hover {
  transform: translateY(-2px);
  color: var(--brand-green);
  border-color: var(--brand-green);
  background: var(--surface-2);
  box-shadow: var(--shadow-soft);
}
html[data-theme="dark"] .theme-toggle,
html[data-theme="dark"] .scroll-top { color: #a8dfa9; }

.nav-toggle {
  gap: 8px;
  align-items: center;
}
.nav-toggle .ui-icon { width: 19px; height: 19px; }
.nav-toggle, .theme-toggle { touch-action: manipulation; -webkit-tap-highlight-color: transparent; }

.logo-link img,
.footer-logo {
  transition: transform var(--motion-base) ease, filter var(--motion-base) ease;
}
.logo-link:hover img { transform: translateY(-1px); }
html[data-theme="dark"] .logo-link img,
html[data-theme="dark"] .footer-logo {
  filter: brightness(0.94) contrast(1.04);
  border-radius: 12px;
}

.nav-menu a {
  position: relative;
  overflow: hidden;
}
.nav-menu a::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 5px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--motion-fast) ease;
  opacity: 0.55;
}
.nav-menu a:hover::after { transform: scaleX(1); }
.nav-menu a[aria-current="page"]::after { display: none; }

.hero {
  background:
    radial-gradient(circle at top right, rgba(217, 186, 50, 0.23), transparent 32%),
    radial-gradient(circle at bottom left, rgba(0, 107, 0, 0.13), transparent 38%),
    linear-gradient(135deg, var(--hero-start) 0%, var(--hero-mid) 52%, var(--hero-end) 100%);
  transition: background-color var(--motion-base) ease, border-color var(--motion-base) ease;
}
.page-hero {
  background:
    radial-gradient(circle at top right, rgba(217, 186, 50, 0.18), transparent 32%),
    radial-gradient(circle at bottom left, rgba(0, 107, 0, 0.12), transparent 38%),
    linear-gradient(135deg, var(--page-hero-start) 0%, var(--page-hero-end) 78%);
  transition: background-color var(--motion-base) ease, border-color var(--motion-base) ease;
}
.bg-surface {
  background: linear-gradient(180deg, var(--surface) 0%, color-mix(in srgb, var(--surface) 82%, var(--brand-green) 18%) 100%);
}

.hero-panel,
.card,
.stat,
.contact-item,
.timeline-item,
.table-wrap,
.empty-state,
.status-note,
.callout,
table,
th,
td,
code {
  transition: background-color var(--motion-base) ease, color var(--motion-base) ease, border-color var(--motion-base) ease, box-shadow var(--motion-base) ease, transform var(--motion-base) ease;
}

html[data-theme="dark"] a { color: #9cdb9f; }
html[data-theme="dark"] a:hover { color: #c5efc7; }
html[data-theme="dark"] .eyebrow {
  color: #b7e8b9;
  background: #17371c;
  border-color: #315c37;
}
html[data-theme="dark"] .hero-panel,
html[data-theme="dark"] .card,
html[data-theme="dark"] .timeline-item {
  background: var(--card);
  border-color: var(--line);
}
html[data-theme="dark"] .stat {
  background: linear-gradient(145deg, #162319, #101a12);
  border-color: var(--line);
}
html[data-theme="dark"] .stat strong,
html[data-theme="dark"] .card h3,
html[data-theme="dark"] .contact-item strong,
html[data-theme="dark"] .timeline-item strong,
html[data-theme="dark"] .kicker { color: #a8dfa9; }
html[data-theme="dark"] .card-green {
  background: linear-gradient(145deg, #15351a, #111f14);
  border-color: #315b37;
}
html[data-theme="dark"] .btn-secondary {
  color: #b9e8bb;
  background: rgba(19, 32, 22, 0.94);
  border-color: #456e4b;
}
html[data-theme="dark"] .btn-secondary:hover { background: #1a2d1e; }
html[data-theme="dark"] .badge {
  background: #18351d;
  border-color: #345c3a;
  color: #b5e5b7;
}
html[data-theme="dark"] .contact-item { background: #111d14; }
html[data-theme="dark"] table { background: var(--card); }
html[data-theme="dark"] th {
  background: #18311c;
  color: #b6e6b8;
  border-color: #365b3b;
}
html[data-theme="dark"] .status-note {
  background: #302a13;
  border-color: #6e5e22;
  color: #f1dfa0;
}
html[data-theme="dark"] .callout.gold { background: #2b2714; }
html[data-theme="dark"] .callout.red { background: #301b1e; }
html[data-theme="dark"] code { background: #18291b; }
html[data-theme="dark"] .footer {
  background: linear-gradient(145deg, var(--footer-start), var(--footer-end));
}

.card-icon,
.contact-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  border: 1px solid var(--icon-border);
  border-radius: 13px;
  background: var(--icon-bg);
  color: var(--icon-color);
  padding: 10px;
  box-shadow: 0 7px 18px rgba(0, 75, 0, 0.07);
  transition: transform var(--motion-base) ease, background-color var(--motion-base) ease, color var(--motion-base) ease, border-color var(--motion-base) ease;
}
.card:hover .card-icon,
.contact-item:hover .contact-icon {
  transform: translateY(-2px) rotate(-2deg);
}
.contact-item {
  position: relative;
  padding-left: 78px;
}
.contact-item .contact-icon {
  position: absolute;
  left: 20px;
  top: 20px;
  margin: 0;
}
.btn { gap: 9px; }
.btn-icon { width: 18px; height: 18px; transition: transform var(--motion-fast) ease; }
.btn:hover .btn-icon { transform: translateX(3px); }

.card:hover { transform: translateY(-5px); }
.stat:hover { transform: translateY(-3px); box-shadow: var(--shadow-soft); }

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity var(--motion-slow) cubic-bezier(.2,.7,.2,1) var(--reveal-delay, 0ms),
    transform var(--motion-slow) cubic-bezier(.2,.7,.2,1) var(--reveal-delay, 0ms),
    background-color var(--motion-base) ease,
    color var(--motion-base) ease,
    border-color var(--motion-base) ease,
    box-shadow var(--motion-base) ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

.scroll-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(0.92);
  pointer-events: none;
}
.scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

@media (max-width: 1080px) {
  .nav-menu a { padding-inline: 10px; font-size: 0.9rem; }
  .logo-link img { width: 205px; }
}

@media (max-width: 760px) {
  .primary-nav { margin-left: 0; }
  .header-actions { margin-left: auto; }
  .theme-toggle, .nav-toggle { min-width: 44px; min-height: 44px; }
  .theme-toggle { width: 44px; height: 44px; }
  .nav-menu {
    background: var(--card);
    border-color: var(--line);
  }
  .nav-menu a::after { display: none; }
  .contact-item { padding-left: 72px; }
  .scroll-top { right: 16px; bottom: 16px; }
}

@media (max-width: 430px) {
  .nav-wrap { width: min(var(--max), calc(100% - 22px)); gap: 10px; }
  .logo-link img { width: 162px; }
  .nav-toggle { padding: 9px 10px; }
  .nav-toggle-label { display: none; }
  .theme-toggle, .nav-toggle { width: 44px; height: 44px; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal.is-visible {
    opacity: 1 !important;
    transform: none !important;
  }
  .scroll-top,
  .scroll-top.is-visible { transform: none !important; }
}

/* Keep the mobile dropdown anchored to the header content area. */
.nav-wrap { position: relative; }


/* =========================================================
   v3.5 THEME-AWARE COMPANY LOGOS
   Earlier logo-switching layer retained for compatibility. Current
   package uses logo-original.svg and logo-inverted.svg.
   ========================================================= */
.logo-link {
  display: inline-grid;
  align-items: center;
}
.logo-link .site-logo {
  grid-area: 1 / 1;
  width: 230px;
  display: block;
  transition: opacity var(--motion-fast) ease, visibility var(--motion-fast) ease, transform var(--motion-base) ease;
}
.logo-link .site-logo-inverted {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
html[data-theme="dark"] .logo-link .site-logo-original {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
html[data-theme="dark"] .logo-link .site-logo-inverted {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.logo-link:hover .site-logo { transform: translateY(-1px); }
html[data-theme="dark"] .logo-link .site-logo,
html[data-theme="dark"] .footer-logo {
  filter: none;
  border-radius: 0;
}
@media (max-width: 760px) {
  .logo-link .site-logo { width: 185px; }
}

/* =========================================================
   v3.6 CORPORATE IDENTITY REFRESH
   Stronger homepage hierarchy, higher contrast, and more
   deliberate brand rhythm. Retains all v3.5 safety controls.
   ========================================================= */

:root {
  --brand-gold: #D9BA32;
  --warm-surface: #F7F4EA;
  --warm-surface-2: #EEE8D7;
  --deep-green: #003E18;
  --deep-green-2: #002B11;
  --ink-green: #092516;
}

body {
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1.7;
}

h1, h2, h3 {
  font-family: "Segoe UI", Inter, ui-sans-serif, Arial, Helvetica, sans-serif;
  font-weight: 750;
}

.site-header {
  background: rgba(255,255,255,0.98);
  border-bottom: 1px solid rgba(0,75,0,0.14);
  box-shadow: 0 8px 28px rgba(0, 40, 8, 0.07);
}
.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--brand-green) 28%, var(--brand-gold) 50%, var(--brand-green) 72%, transparent 100%);
  opacity: 0.75;
}
.nav-wrap { min-height: 82px; }
.site-header.is-scrolled .nav-wrap { min-height: 70px; }
.nav-menu { gap: 7px; }
.nav-menu a {
  border-radius: 8px;
  padding: 10px 12px;
  color: #152015;
  font-size: 0.92rem;
  font-weight: 650;
}
.nav-menu a:hover {
  background: rgba(0,107,0,0.06);
  color: var(--brand-green-dark);
}
.nav-menu a[aria-current="page"] {
  color: var(--brand-green-dark);
  background: transparent;
  box-shadow: none;
}
.nav-menu a[aria-current="page"]::after {
  display: block;
  transform: scaleX(1);
  background: var(--brand-gold);
  height: 3px;
  opacity: 1;
}
.nav-menu a.nav-contact {
  margin-left: 5px;
  border: 1px solid var(--brand-gold);
  color: #5b4700;
  background: rgba(217,186,50,0.06);
}
.nav-menu a.nav-contact:hover,
.nav-menu a.nav-contact[aria-current="page"] {
  background: var(--brand-gold);
  color: #1d1700;
}
.nav-menu a.nav-contact::after { display: none; }

.hero-corporate {
  color: #fff;
  background:
    radial-gradient(circle at 82% 22%, rgba(217,186,50,0.18), transparent 24%),
    linear-gradient(110deg, rgba(0,25,8,0.15), transparent 52%),
    linear-gradient(135deg, var(--deep-green-2) 0%, var(--deep-green) 56%, #005524 100%);
  border-bottom: 0;
}
.hero-corporate::before {
  content: "";
  position: absolute;
  width: 580px;
  height: 580px;
  right: -150px;
  bottom: -290px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 38% 62% 58% 42%;
  transform: rotate(24deg);
  box-shadow: 0 0 0 72px rgba(255,255,255,0.025), 0 0 0 144px rgba(217,186,50,0.025);
}
.hero-corporate::after {
  height: 7px;
  background: linear-gradient(90deg, var(--brand-gold) 0 24%, #fff 24% 28%, var(--brand-green) 28% 100%);
}
.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.17fr) minmax(340px, 0.83fr);
  gap: 58px;
  align-items: center;
  min-height: 680px;
  padding: 82px 0 88px;
}
.hero-copy { max-width: 760px; }
.hero-corporate .eyebrow,
.page-hero .eyebrow {
  color: #ffe890;
  background: rgba(255,255,255,0.08);
  border-color: rgba(217,186,50,0.55);
  box-shadow: none;
}
.hero-corporate h1 {
  margin: 24px 0 20px;
  color: #fff;
  font-size: clamp(3rem, 6.4vw, 6.15rem);
  line-height: 0.98;
  letter-spacing: -0.065em;
  text-wrap: balance;
}
.hero-tagline {
  margin: 0 0 18px;
  color: #f2cf4d;
  font-size: clamp(1.25rem, 2.2vw, 1.8rem);
  line-height: 1.35;
  font-weight: 750;
  letter-spacing: -0.02em;
}
.hero-corporate .lead {
  color: #e2eee5;
  max-width: 690px;
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
}
.hero-corporate .btn-primary,
.feature-band .btn-primary {
  background: linear-gradient(180deg, #efd04d 0%, var(--brand-gold) 100%);
  color: #221a00;
  box-shadow: 0 12px 28px rgba(217,186,50,0.23);
}
.hero-corporate .btn-primary:hover,
.feature-band .btn-primary:hover {
  background: #f4d85f;
  color: #151000;
  box-shadow: 0 14px 30px rgba(217,186,50,0.3);
}
.btn-on-dark {
  color: #fff;
  background: rgba(0,0,0,0.12);
  border-color: rgba(255,255,255,0.48);
}
.btn-on-dark:hover {
  color: #fff;
  background: rgba(255,255,255,0.1);
  border-color: #fff;
}
.hero-facts {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border: 1px solid rgba(255,255,255,0.18);
  border-top: 4px solid var(--brand-gold);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255,255,255,0.12), rgba(255,255,255,0.055));
  box-shadow: 0 30px 70px rgba(0,0,0,0.24);
  backdrop-filter: blur(12px);
}
.hero-facts .kicker { color: #f5d85a; }
.hero-facts h2 {
  color: #fff;
  font-size: clamp(1.55rem, 2.3vw, 2.25rem);
  letter-spacing: -0.035em;
}
.fact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}
.fact-item {
  min-height: 136px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 16px;
  background: rgba(0,0,0,0.12);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.fact-icon,
.operation-icon,
.value-icon,
.principles-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.fact-item .fact-icon {
  width: 27px;
  height: 27px;
  margin-bottom: auto;
  color: #f3d34d;
}
.fact-item strong { color: #fff; font-size: 1.12rem; line-height: 1.2; }
.fact-item > span:last-child { color: #cfded3; font-size: 0.88rem; }

.section-intro { padding: 92px 0; }
.intro-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(42px, 8vw, 108px);
  align-items: start;
}
.intro-layout h2 { max-width: 610px; }
.intro-copy { padding-top: 4px; }
.intro-copy .lead { color: var(--text); }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  color: var(--brand-green-dark);
  font-weight: 800;
  text-decoration: none;
  border-bottom: 2px solid var(--brand-gold);
}
.text-link .btn-icon { width: 17px; height: 17px; }
.text-link:hover { color: var(--brand-green); }

.operations-showcase {
  background:
    linear-gradient(90deg, rgba(217,186,50,0.055), transparent 32%),
    var(--warm-surface);
  border-top: 1px solid #e5dec8;
  border-bottom: 1px solid #e5dec8;
}
.section-heading { margin-bottom: 38px; }
.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.58fr);
  gap: 48px;
  align-items: end;
}
.split-heading > p { color: var(--muted); margin-bottom: 5px; }
.operations-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 34px;
  border-top: 1px solid #d9d0b7;
  border-bottom: 1px solid #d9d0b7;
}
.operation-item {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  padding: 34px 28px;
  border-right: 1px solid #d9d0b7;
}
.operation-item:last-child { border-right: 0; }
.operation-icon {
  width: 48px;
  height: 48px;
  padding: 11px;
  border-radius: 15px;
  color: var(--brand-green-dark);
  background: #fff;
  border: 1px solid #d7cfb8;
  box-shadow: 0 10px 24px rgba(73,58,0,0.06);
}
.operation-item h3 { color: var(--ink-green); margin-bottom: 10px; }
.operation-item p { color: #556055; margin-bottom: 0; }

.feature-band {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 84% 22%, rgba(217,186,50,0.15), transparent 25%),
    linear-gradient(120deg, var(--deep-green-2), var(--deep-green) 58%, #005125);
  border-top: 5px solid var(--brand-gold);
}
.feature-band::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -150px;
  width: 440px;
  height: 440px;
  border: 48px solid rgba(255,255,255,0.035);
  transform: rotate(35deg);
}
.feature-band-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 180px minmax(0, 720px);
  gap: 54px;
  align-items: center;
  min-height: 390px;
  padding: 72px 0;
}
.feature-mark {
  width: 168px;
  height: 168px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 36px;
  color: #f2d14e;
  background: rgba(255,255,255,0.07);
  transform: rotate(-4deg);
}
.feature-mark .ui-icon { width: 74px; height: 74px; transform: rotate(4deg); }
.feature-band .kicker { color: #f3d34d; }
.feature-band h2 { color: #fff; font-size: clamp(2.4rem, 4.4vw, 4.6rem); }
.feature-band .lead { color: #dce9df; }

.responsible-preview { padding: 96px 0; }
.responsible-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.78fr);
  gap: 70px;
  align-items: center;
}
.principles-panel {
  padding: 34px;
  border: 1px solid var(--line);
  border-left: 6px solid var(--brand-gold);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow-soft);
}
.principles-icon {
  width: 58px;
  height: 58px;
  margin-bottom: 22px;
  padding: 14px;
  border-radius: 18px;
  color: var(--brand-green-dark);
  background: var(--green-soft);
}
.contact-strip {
  color: #fff;
  background: #071d0d;
  border-top: 1px solid rgba(255,255,255,0.09);
}
.contact-strip-inner {
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.contact-strip .kicker { color: #f1d34e; }
.contact-strip h2 { color: #fff; margin-bottom: 0; font-size: clamp(1.8rem, 3.3vw, 3rem); }

.page-hero {
  color: #fff;
  background:
    radial-gradient(circle at 86% 26%, rgba(217,186,50,0.15), transparent 23%),
    linear-gradient(135deg, var(--deep-green-2), var(--deep-green) 72%, #005022);
  box-shadow: inset 0 -6px 0 var(--brand-gold);
  border-bottom: 0;
  padding: 92px 0 82px;
}
.page-hero h1 { color: #fff; max-width: 1000px; }
.page-hero .lead { color: #dce8df; max-width: 850px; }

.facts-section {
  background: var(--warm-surface);
  border-block: 1px solid #e4dcc5;
}
.centered-heading { text-align: center; max-width: 780px; margin-inline: auto; }
.facts-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid #ded4b8;
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  box-shadow: 0 18px 46px rgba(73,58,0,0.07);
}
.fact-card {
  min-height: 210px;
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-right: 1px solid #e2dac5;
}
.fact-card:last-child { border-right: 0; }
.fact-card .fact-icon {
  width: 46px;
  height: 46px;
  margin-bottom: 20px;
  padding: 10px;
  border-radius: 14px;
  color: var(--brand-green-dark);
  background: #edf5e9;
}
.fact-card strong { color: var(--ink-green); font-size: 1.45rem; }
.fact-card > span:last-child { color: var(--muted); font-size: 0.92rem; }

.purpose-section { background: #fff; }
.purpose-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.purpose-card {
  min-height: 330px;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow-soft);
}
.purpose-card h3 { font-size: clamp(1.45rem, 2.4vw, 2rem); line-height: 1.35; }
.purpose-card-dark {
  color: #fff;
  background: linear-gradient(145deg, var(--deep-green-2), var(--deep-green));
  border-color: transparent;
}
.purpose-card-dark h3 { color: #fff; }
.purpose-card-dark .kicker { color: #f0d14d; }
.purpose-card-dark .card-icon { color: #f0d14d; background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.15); }

.values-section { background: var(--surface); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}
.value-card {
  min-height: 260px;
  padding: 26px 22px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--brand-green);
  border-radius: 18px;
  background: var(--card);
  text-align: center;
  box-shadow: 0 12px 30px rgba(0,75,0,0.05);
  transition: transform var(--motion-base) ease, box-shadow var(--motion-base) ease, border-color var(--motion-base) ease;
}
.value-card:nth-child(even) { border-top-color: var(--brand-gold); }
.value-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-soft); }
.value-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 20px;
  padding: 12px;
  border-radius: 16px;
  color: var(--brand-green-dark);
  background: var(--green-soft);
}
.value-card h3 { color: var(--brand-green-dark); }
.value-card p { color: var(--muted); font-size: 1rem; }

.footer {
  border-top: 5px solid var(--brand-gold);
  background: linear-gradient(145deg, #041408 0%, #06230d 100%);
}

html[data-theme="dark"] .site-header {
  background: rgba(7,15,9,0.98);
  border-color: rgba(217,186,50,0.2);
}
html[data-theme="dark"] .nav-menu a { color: #e7f0e8; }
html[data-theme="dark"] .nav-menu a:hover { background: rgba(255,255,255,0.06); color: #fff; }
html[data-theme="dark"] .nav-menu a[aria-current="page"] { color: #f1d44e; }
html[data-theme="dark"] .nav-menu a.nav-contact { color: #f3d95d; background: rgba(217,186,50,0.08); }
html[data-theme="dark"] .nav-menu a.nav-contact:hover,
html[data-theme="dark"] .nav-menu a.nav-contact[aria-current="page"] { color: #201800; background: var(--brand-gold); }
html[data-theme="dark"] .operations-showcase,
html[data-theme="dark"] .facts-section { background: #14170f; border-color: #35351d; }
html[data-theme="dark"] .operation-item { border-color: #3d3c24; }
html[data-theme="dark"] .operation-icon,
html[data-theme="dark"] .facts-row,
html[data-theme="dark"] .fact-card { background: var(--card); border-color: var(--line); }
html[data-theme="dark"] .operation-item h3,
html[data-theme="dark"] .fact-card strong { color: #d8ead9; }
html[data-theme="dark"] .operation-item p { color: var(--muted); }
html[data-theme="dark"] .facts-row { box-shadow: var(--shadow-soft); }
html[data-theme="dark"] .fact-card .fact-icon { background: #19331d; color: #9bd79e; }
html[data-theme="dark"] .purpose-section { background: var(--body-bg); }
html[data-theme="dark"] .principles-panel,
html[data-theme="dark"] .purpose-card,
html[data-theme="dark"] .value-card { background: var(--card); border-color: var(--line); }
html[data-theme="dark"] .purpose-card-dark { background: linear-gradient(145deg, #06290f, #0a421b); }
html[data-theme="dark"] .value-card h3 { color: #afe3b1; }
html[data-theme="dark"] .text-link { color: #a8dfa9; }

@media (max-width: 1120px) {
  .hero-layout { grid-template-columns: minmax(0, 1fr) minmax(310px, 0.78fr); gap: 34px; }
  .values-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 980px) {
  .hero-layout,
  .intro-layout,
  .responsible-layout,
  .split-heading,
  .feature-band-layout { grid-template-columns: 1fr; }
  .hero-layout { min-height: auto; padding: 72px 0 82px; }
  .hero-copy { max-width: 830px; }
  .hero-facts { max-width: 720px; }
  .operations-grid { grid-template-columns: 1fr; }
  .operation-item { border-right: 0; border-bottom: 1px solid #d9d0b7; }
  .operation-item:last-child { border-bottom: 0; }
  .feature-band-layout { gap: 28px; padding: 68px 0; }
  .feature-mark { width: 105px; height: 105px; border-radius: 26px; }
  .feature-mark .ui-icon { width: 48px; height: 48px; }
  .facts-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .fact-card:nth-child(2) { border-right: 0; }
  .fact-card:nth-child(-n+2) { border-bottom: 1px solid #e2dac5; }
  .values-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  .site-header::after { opacity: 0.5; }
  .nav-menu a.nav-contact { margin-left: 0; }
  .nav-menu a[aria-current="page"] { background: var(--surface-2); }
  .nav-menu a[aria-current="page"]::after { display: none; }
  .hero-corporate h1 { font-size: clamp(2.65rem, 13vw, 4.5rem); }
  .hero-corporate h1 br { display: none; }
  .hero-tagline br { display: none; }
  .hero-facts { padding: 22px; }
  .fact-grid { grid-template-columns: 1fr 1fr; }
  .fact-item { min-height: 120px; padding: 15px; }
  .section-intro,
  .responsible-preview { padding: 64px 0; }
  .operations-showcase { padding: 62px 0; }
  .operation-item { grid-template-columns: 46px 1fr; padding: 26px 4px; }
  .operation-icon { width: 44px; height: 44px; }
  .contact-strip-inner { min-height: 220px; flex-direction: column; align-items: flex-start; justify-content: center; }
  .purpose-grid,
  .values-grid { grid-template-columns: 1fr; }
  .facts-row { grid-template-columns: 1fr; }
  .fact-card,
  .fact-card:nth-child(2) { border-right: 0; border-bottom: 1px solid #e2dac5; }
  .fact-card:last-child { border-bottom: 0; }
  .fact-card { min-height: 170px; }
  .purpose-card { min-height: 0; padding: 28px; }
}

@media (max-width: 430px) {
  .hero-layout { padding: 58px 0 72px; }
  .hero-corporate h1 { font-size: 2.7rem; }
  .hero-tagline { font-size: 1.2rem; }
  .fact-grid { grid-template-columns: 1fr; }
  .fact-item { min-height: 108px; }
}

/* =========================================================
   v3.7 DISCIPLINE & RESULT VISUAL REFRESH
   Based on v3.6. Builds a stronger, less editorial homepage
   with bolder identity, operational blocks, and GM motto cues.
   Compliance, privacy, logo switching, and confidentiality
   controls from v3.5/v3.6 remain unchanged.
   ========================================================= */

:root {
  --pop-green: #005f16;
  --pop-green-dark: #00390f;
  --pop-green-deep: #001f0b;
  --pop-gold: #D9BA32;
  --pop-gold-bright: #F2CC25;
  --pop-black: #050805;
  --pop-cream: #FBF7EA;
  --pop-line: rgba(0, 75, 0, 0.16);
  --hard-shadow: 0 22px 55px rgba(0, 40, 8, 0.18);
}

.site-header {
  background: rgba(255, 255, 255, 0.985);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}
.site-header::after {
  height: 4px;
  background: linear-gradient(90deg, var(--pop-green-dark), var(--brand-green), var(--pop-gold), var(--brand-green), var(--pop-green-dark));
  opacity: 1;
}
.nav-menu a {
  border-radius: 0;
  color: #0c120d;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-weight: 850;
}
.nav-menu a:hover {
  color: var(--pop-green-dark);
  background: transparent;
}
.nav-menu a[aria-current="page"] {
  color: var(--pop-green-dark);
  background: transparent;
}
.nav-menu a[aria-current="page"]::after {
  background: var(--brand-green);
  height: 4px;
}
.nav-menu a.nav-contact {
  border: 0;
  border-radius: 3px;
  color: #fff;
  background: linear-gradient(135deg, var(--pop-green-dark), var(--brand-green));
  box-shadow: 0 12px 24px rgba(0, 75, 0, 0.22);
}
.nav-menu a.nav-contact:hover,
.nav-menu a.nav-contact[aria-current="page"] {
  color: #fff;
  background: linear-gradient(135deg, var(--brand-green), var(--pop-green-dark));
}

/* New homepage hero */
.hero-action {
  position: relative;
  color: var(--pop-black);
  background:
    linear-gradient(120deg, rgba(0,107,0,0.055), transparent 35%),
    linear-gradient(180deg, #fff 0%, #fbfdfb 100%);
  border-bottom: 0;
}
.hero-action::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, transparent 0 30%, rgba(0,107,0,0.045) 30% 30.6%, transparent 30.6% 100%),
    radial-gradient(circle at 28% 40%, rgba(217,186,50,0.10), transparent 18%);
  pointer-events: none;
}
.hero-action::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 9px;
  background: linear-gradient(90deg, var(--brand-green-dark) 0 68%, var(--pop-gold) 68% 100%);
}
.hero-action-layout,
.hero.hero-action .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(390px, 0.92fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
  min-height: 680px;
  padding: 76px 0 86px;
}
.hero-action .eyebrow {
  color: var(--pop-green-dark);
  background: transparent;
  border: 0;
  border-left: 6px solid var(--pop-gold);
  border-radius: 0;
  padding: 2px 0 2px 12px;
  box-shadow: none;
}
.hero-action h1 {
  margin: 22px 0 20px;
  color: var(--pop-black);
  font-size: clamp(3.15rem, 7.2vw, 7rem);
  line-height: 0.89;
  letter-spacing: -0.075em;
  text-transform: uppercase;
}
.hero-action h1 span {
  display: block;
}
.hero-action h1 span:first-child {
  color: var(--brand-green-dark);
}
.hero-action .hero-tagline {
  color: var(--brand-green-dark);
  text-transform: uppercase;
  font-size: clamp(1.05rem, 2vw, 1.48rem);
  line-height: 1.18;
  letter-spacing: 0.012em;
}
.hero-action .lead {
  max-width: 660px;
  color: #243024;
  font-weight: 500;
}
.hero-action .btn {
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.hero-action .btn-primary,
.career-action-band .btn-primary,
.contact-strip-pop .btn-primary {
  background: linear-gradient(135deg, var(--brand-green-dark), var(--brand-green));
  color: #fff;
  box-shadow: 0 14px 24px rgba(0,75,0,0.25);
}
.hero-action .btn-primary:hover,
.career-action-band .btn-primary:hover,
.contact-strip-pop .btn-primary:hover {
  background: linear-gradient(135deg, var(--brand-green), var(--brand-green-dark));
  color: #fff;
}
.hero-action .btn-secondary {
  color: var(--brand-green-dark);
  border: 2px solid var(--brand-green-dark);
  background: #fff;
  box-shadow: none;
}
.hero-action .btn-secondary:hover {
  background: #f1f8f0;
}
.hero-visual-panel {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
}
.brand-chevron {
  position: absolute;
  inset: 10% -8% 10% 12%;
  background:
    linear-gradient(135deg, transparent 0 44%, var(--pop-gold) 44% 48%, var(--brand-green-dark) 48% 70%, transparent 70% 100%);
  clip-path: polygon(34% 0, 100% 50%, 34% 100%, 18% 100%, 84% 50%, 18% 0);
  filter: drop-shadow(0 26px 42px rgba(0, 35, 8, 0.27));
}
.brand-frame {
  position: relative;
  overflow: hidden;
  width: min(100%, 470px);
  min-height: 395px;
  padding: 38px;
  margin-left: auto;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(0,25,8,0.96), rgba(0,78,24,0.9)),
    radial-gradient(circle at top right, rgba(217,186,50,0.18), transparent 35%);
  border: 1px solid rgba(255,255,255,0.14);
  border-bottom: 8px solid var(--pop-gold);
  box-shadow: var(--hard-shadow);
}
.brand-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, transparent 0 58%, rgba(217,186,50,0.18) 58% 60%, transparent 60% 100%);
  pointer-events: none;
}
.brand-watermark {
  position: absolute;
  right: -8px;
  bottom: -72px;
  font-size: 22rem;
  line-height: 0.75;
  font-weight: 900;
  color: rgba(255,255,255,0.055);
  font-family: Arial, Helvetica, sans-serif;
}
.brand-frame .kicker { color: var(--pop-gold-bright); }
.brand-frame h2 {
  position: relative;
  max-width: 340px;
  color: #fff;
  font-size: clamp(1.7rem, 2.6vw, 2.4rem);
  line-height: 1.08;
  text-transform: uppercase;
}
.brand-frame ul {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}
.brand-frame li {
  min-height: 88px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
  border: 1px solid rgba(255,255,255,0.13);
  background: rgba(255,255,255,0.055);
  font-weight: 850;
  text-transform: uppercase;
  font-size: 0.82rem;
}
.brand-frame li .ui-icon {
  width: 28px;
  height: 28px;
  color: var(--pop-gold-bright);
}
.progress-badge {
  position: absolute;
  right: 4px;
  bottom: 34px;
  width: 172px;
  padding: 18px;
  color: var(--pop-black);
  background: var(--pop-gold);
  box-shadow: 0 18px 34px rgba(67,48,0,0.2);
  text-transform: uppercase;
  transform: rotate(-2deg);
}
.progress-badge span { display: block; font-size: 0.75rem; font-weight: 800; }
.progress-badge strong { display: block; font-size: 1.25rem; line-height: 1; }

.identity-summary {
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.identity-summary-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.88fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
}
.identity-copy h2 {
  text-transform: uppercase;
  font-size: clamp(2.1rem, 4.5vw, 4.25rem);
  line-height: 0.98;
}
.identity-copy h2 span { color: var(--brand-green); }
.identity-copy .lead { color: #1c281c; }
.signature-line {
  color: var(--brand-green);
  font-size: clamp(1.35rem, 3vw, 2.25rem);
  font-family: "Brush Script MT", "Segoe Script", cursive;
  line-height: 1;
}
.fact-tile-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid rgba(0,75,0,0.13);
  box-shadow: var(--shadow-soft);
  background: #fff;
}
.fact-tile {
  min-height: 168px;
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-right: 1px solid rgba(0,75,0,0.12);
  border-bottom: 1px solid rgba(0,75,0,0.12);
}
.fact-tile:nth-child(2n) { border-right: 0; }
.fact-tile:nth-last-child(-n+2) { border-bottom: 0; }
.fact-tile .fact-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  color: var(--brand-green-dark);
}
.fact-tile strong {
  color: var(--pop-black);
  font-size: 1.35rem;
  text-transform: uppercase;
}
.fact-tile span:last-child {
  color: #4d574d;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  font-weight: 750;
}

.action-ops {
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.action-ops-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.35fr) minmax(0, 1fr);
  gap: 38px;
  align-items: stretch;
}
.action-ops-heading {
  border-right: 1px solid rgba(0,75,0,0.18);
  padding-right: 32px;
}
.action-ops-heading h2 {
  text-transform: uppercase;
  font-size: clamp(2.1rem, 4.2vw, 4.05rem);
  line-height: 0.98;
}
.action-ops-heading h2 span { color: var(--brand-green); }
.ops-lineup {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.op-line-item {
  min-height: 260px;
  padding: 28px 22px;
  border-right: 1px solid rgba(0,75,0,0.15);
}
.op-line-item:last-child { border-right: 0; }
.op-line-item .operation-icon {
  color: var(--brand-green-dark);
  background: #fff;
  border: 0;
  box-shadow: none;
  width: 54px;
  height: 54px;
  padding: 0;
  margin-bottom: 20px;
}
.op-line-item h3 {
  color: var(--pop-black);
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: 0.02em;
}
.op-line-item p {
  color: #4b584b;
  margin-bottom: 0;
}

.motto-band {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.82), rgba(0,32,11,0.86)),
    radial-gradient(circle at 24% 20%, rgba(217,186,50,0.16), transparent 24%),
    linear-gradient(135deg, #061006, #001f0b 65%, #003e18);
  border-block: 7px solid var(--pop-gold);
}
.motto-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, transparent 0 35%, rgba(255,255,255,0.055) 35% 35.6%, transparent 35.6% 100%),
    linear-gradient(45deg, transparent 0 64%, rgba(217,186,50,0.12) 64% 64.5%, transparent 64.5% 100%);
  pointer-events: none;
}
.motto-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
  gap: 44px;
  align-items: center;
  padding: 70px 0;
}
.motto-band .kicker,
.motto-band h3 { color: var(--pop-gold-bright); }
.motto-copy h2 {
  color: #fff;
  font-size: clamp(2rem, 4.3vw, 4.2rem);
  line-height: 1.02;
  text-transform: uppercase;
}
.motto-copy p { color: #e9f0ea; font-size: 1.08rem; }
.motto-pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(217,186,50,0.45);
  border: 1px solid rgba(217,186,50,0.42);
}
.motto-pillars article {
  min-height: 220px;
  padding: 30px 24px;
  background: rgba(0,16,5,0.72);
}
.motto-pillars .ui-icon {
  width: 46px;
  height: 46px;
  margin-bottom: 22px;
  color: var(--pop-gold-bright);
}
.motto-pillars p { color: #dce6dd; margin-bottom: 0; }

.career-action-band {
  position: relative;
  overflow: hidden;
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.career-action-band::after {
  content: "Y";
  position: absolute;
  right: 6%;
  bottom: -80px;
  color: rgba(0,107,0,0.06);
  font-size: 23rem;
  font-weight: 900;
  line-height: 1;
}
.career-action-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  min-height: 405px;
  align-items: center;
}
.career-visual {
  align-self: stretch;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, #001d0a, #004717),
    radial-gradient(circle at top right, rgba(217,186,50,0.18), transparent 30%);
  clip-path: polygon(0 0, 92% 0, 100% 100%, 0 100%);
}
.career-panel-card {
  width: min(78%, 360px);
  min-height: 220px;
  padding: 30px;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.06);
  box-shadow: 0 22px 50px rgba(0,0,0,0.24);
}
.career-panel-card .ui-icon {
  width: 54px;
  height: 54px;
  color: var(--pop-gold-bright);
  margin-bottom: 28px;
}
.career-panel-card strong {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  font-size: 1.5rem;
  text-transform: uppercase;
}
.career-panel-card span:last-child { color: #dbe8dd; }
.career-copy {
  padding: 70px clamp(26px, 5vw, 72px);
}
.career-copy h2 {
  color: var(--pop-black);
  font-size: clamp(2.25rem, 4.6vw, 4.6rem);
  line-height: 0.98;
  text-transform: uppercase;
}
.career-copy h2::first-line { color: var(--brand-green-dark); }

.responsibility-tiles-section {
  background: #fff;
}
.responsibility-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(520px, 1.12fr);
  gap: 48px;
  align-items: center;
}
.responsibility-copy h2 {
  text-transform: uppercase;
  font-size: clamp(2.15rem, 4.4vw, 4.4rem);
  line-height: 1;
}
.responsibility-copy h2 span,
.responsibility-copy h2 strong { color: var(--brand-green); }
.responsibility-tiles {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid rgba(0,75,0,0.14);
  box-shadow: var(--shadow-soft);
}
.responsibility-tiles article {
  min-height: 210px;
  padding: 28px 18px;
  text-align: center;
  border-right: 1px solid rgba(0,75,0,0.13);
}
.responsibility-tiles article:last-child { border-right: 0; }
.responsibility-tiles .ui-icon {
  width: 44px;
  height: 44px;
  color: var(--brand-green-dark);
  margin: 0 auto 20px;
}
.responsibility-tiles h3 {
  color: var(--pop-black);
  text-transform: uppercase;
  font-size: 0.95rem;
}
.responsibility-tiles p { color: #536153; font-size: 0.95rem; margin-bottom: 0; }

.contact-strip-pop {
  background:
    linear-gradient(135deg, #031005, #003b12),
    radial-gradient(circle at 80% 25%, rgba(217,186,50,0.14), transparent 30%);
  border-top: 0;
  border-bottom: 0;
}
.contact-strip-pop .contact-strip-inner {
  min-height: 240px;
}
.contact-strip-pop .kicker { color: var(--pop-gold-bright); }
.contact-strip-pop h2 {
  max-width: 760px;
  text-transform: uppercase;
  line-height: 1.05;
}
.contact-strip-pop .btn-primary {
  background: var(--pop-gold-bright);
  color: #151100;
}
.contact-strip-pop .btn-primary:hover {
  background: #f7d84a;
  color: #151100;
}

.footer {
  border-top: 0;
  background:
    linear-gradient(135deg, #021005, #00270d 72%, #003d13),
    radial-gradient(circle at 82% 20%, rgba(217,186,50,0.12), transparent 28%);
}

/* Keep non-home pages consistent with the stronger visual language. */
.page-hero {
  background:
    linear-gradient(135deg, rgba(0,0,0,0.72), rgba(0,48,16,0.88)),
    radial-gradient(circle at 82% 18%, rgba(217,186,50,0.22), transparent 30%),
    linear-gradient(135deg, #041505, #004014);
  box-shadow: inset 0 -7px 0 var(--pop-gold);
}
.page-hero h1 { text-transform: uppercase; }
.facts-section,
.operations-showcase {
  background: linear-gradient(180deg, #fff 0%, var(--pop-cream) 100%);
}
.card,
.fact-card,
.purpose-card,
.value-card,
.principles-panel {
  border-radius: 4px;
}

html[data-theme="dark"] .site-header {
  background: rgba(4,10,5,0.985);
  border-color: rgba(217,186,50,0.25);
}
html[data-theme="dark"] .nav-menu a { color: #f0f5f0; }
html[data-theme="dark"] .nav-menu a[aria-current="page"] { color: var(--pop-gold-bright); }
html[data-theme="dark"] .nav-menu a.nav-contact,
html[data-theme="dark"] .nav-menu a.nav-contact:hover,
html[data-theme="dark"] .nav-menu a.nav-contact[aria-current="page"] { color: #071006; background: var(--pop-gold-bright); }
html[data-theme="dark"] .hero-action,
html[data-theme="dark"] .identity-summary,
html[data-theme="dark"] .action-ops,
html[data-theme="dark"] .career-action-band,
html[data-theme="dark"] .responsibility-tiles-section {
  background: var(--body-bg);
  color: var(--text);
}
html[data-theme="dark"] .hero-action h1,
html[data-theme="dark"] .identity-copy h2,
html[data-theme="dark"] .action-ops-heading h2,
html[data-theme="dark"] .career-copy h2,
html[data-theme="dark"] .responsibility-copy h2,
html[data-theme="dark"] .op-line-item h3,
html[data-theme="dark"] .responsibility-tiles h3,
html[data-theme="dark"] .fact-tile strong { color: #f4faf4; }
html[data-theme="dark"] .hero-action h1 span:first-child,
html[data-theme="dark"] .hero-action .hero-tagline,
html[data-theme="dark"] .identity-copy h2 span,
html[data-theme="dark"] .action-ops-heading h2 span { color: #8fd895; }
html[data-theme="dark"] .hero-action .lead,
html[data-theme="dark"] .identity-copy .lead,
html[data-theme="dark"] .op-line-item p,
html[data-theme="dark"] .responsibility-tiles p { color: var(--muted); }
html[data-theme="dark"] .fact-tile-grid,
html[data-theme="dark"] .fact-tile,
html[data-theme="dark"] .responsibility-tiles,
html[data-theme="dark"] .responsibility-tiles article { background: var(--card); border-color: var(--line); }
html[data-theme="dark"] .hero-action .btn-secondary { color: #d7f2d7; border-color: #7dc381; background: rgba(255,255,255,0.035); }
html[data-theme="dark"] .hero-action .btn-secondary:hover { background: rgba(255,255,255,0.08); }
html[data-theme="dark"] .brand-frame { background: linear-gradient(135deg, #001305, #003b13); }
html[data-theme="dark"] .career-action-band::after { color: rgba(255,255,255,0.035); }

@media (max-width: 1120px) {
  .ops-lineup { grid-template-columns: repeat(2, minmax(0, 1fr)); border: 1px solid rgba(0,75,0,0.15); }
  .op-line-item { border-bottom: 1px solid rgba(0,75,0,0.15); }
  .op-line-item:nth-child(2n) { border-right: 0; }
  .op-line-item:nth-last-child(-n+2) { border-bottom: 0; }
  .responsibility-tiles { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .responsibility-tiles article:nth-child(2n) { border-right: 0; }
  .responsibility-tiles article:nth-child(-n+2) { border-bottom: 1px solid rgba(0,75,0,0.13); }
}

@media (max-width: 980px) {
  .hero-action-layout,
  .hero.hero-action .container,
  .identity-summary-grid,
  .action-ops-grid,
  .motto-layout,
  .career-action-grid,
  .responsibility-grid {
    grid-template-columns: 1fr;
  }
  .hero-action-layout,
  .hero.hero-action .container { min-height: auto; padding: 60px 0 70px; }
  .hero-visual-panel { min-height: 420px; }
  .brand-chevron { inset: 8% -10% 8% 8%; }
  .brand-frame { margin: 0; width: min(100%, 620px); }
  .progress-badge { right: 22px; }
  .action-ops-heading { border-right: 0; padding-right: 0; }
  .career-action-grid { min-height: auto; }
  .career-visual { min-height: 300px; clip-path: none; }
  .motto-layout { padding: 58px 0; }
  .motto-pillars { grid-template-columns: 1fr; }
  .motto-pillars article { min-height: 0; }
}

@media (max-width: 760px) {
  .nav-menu a { text-transform: none; letter-spacing: 0; }
  .nav-menu a.nav-contact { border-radius: 8px; }
  .hero-action h1 { font-size: clamp(2.7rem, 16vw, 4.9rem); }
  .hero-action .hero-tagline br { display: none; }
  .hero-visual-panel { min-height: 380px; }
  .brand-frame { min-height: 340px; padding: 28px; }
  .brand-frame ul { grid-template-columns: 1fr 1fr; }
  .brand-watermark { font-size: 16rem; bottom: -46px; }
  .progress-badge { position: relative; right: auto; bottom: auto; justify-self: end; margin-top: -18px; }
  .fact-tile-grid,
  .ops-lineup,
  .responsibility-tiles { grid-template-columns: 1fr; }
  .fact-tile,
  .fact-tile:nth-last-child(-n+2),
  .op-line-item,
  .op-line-item:nth-last-child(-n+2),
  .responsibility-tiles article,
  .responsibility-tiles article:nth-child(-n+2) {
    border-right: 0;
    border-bottom: 1px solid rgba(0,75,0,0.13);
  }
  .fact-tile:last-child,
  .op-line-item:last-child,
  .responsibility-tiles article:last-child { border-bottom: 0; }
  .op-line-item { min-height: 0; }
  .contact-strip-pop .contact-strip-inner { min-height: 270px; }
}

@media (max-width: 430px) {
  .hero-action h1 { font-size: 3.2rem; }
  .hero-actions .btn { width: 100%; }
  .brand-frame ul { grid-template-columns: 1fr; }
  .identity-copy h2,
  .action-ops-heading h2,
  .career-copy h2,
  .responsibility-copy h2 { font-size: 2.25rem; }
}

/* =========================================================
   v3.7.1 FEEDBACK CLEANUP
   Fixes layout overlaps, removes visible internal motto wording,
   and keeps operating details more public-safe.
   ========================================================= */
.hero-action-layout,
.hero.hero-action .container {
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.62fr);
  gap: clamp(28px, 4vw, 56px);
}
.hero-action h1 {
  max-width: 760px;
  font-size: clamp(3rem, 6.3vw, 6.15rem);
  letter-spacing: -0.068em;
}
.hero-action .lead { max-width: 720px; }
.hero-brand-accent {
  min-height: 430px;
  overflow: hidden;
}
.hero-brand-accent .brand-chevron {
  inset: 4% -4% 4% 4%;
  opacity: 0.96;
}
.brand-mark-panel {
  position: relative;
  display: grid;
  place-items: center;
  width: min(100%, 330px);
  aspect-ratio: 1;
  margin-left: auto;
  color: rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(135deg, rgba(0, 31, 11, 0.95), rgba(0, 83, 28, 0.86)),
    radial-gradient(circle at 80% 18%, rgba(217, 186, 50, 0.28), transparent 32%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 8px solid var(--pop-gold);
  box-shadow: var(--hard-shadow);
  clip-path: polygon(16% 0, 100% 0, 84% 100%, 0 100%);
}
.brand-mark-panel::before,
.brand-mark-panel::after {
  content: "";
  position: absolute;
  inset: 14%;
  border: 2px solid rgba(217, 186, 50, 0.42);
  transform: skewX(-10deg);
}
.brand-mark-panel::after {
  inset: 24%;
  border-color: rgba(255, 255, 255, 0.18);
}
.brand-mark-panel span {
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(9rem, 15vw, 15rem);
  line-height: 0.8;
  font-weight: 900;
}
.action-ops-grid {
  grid-template-columns: minmax(250px, 0.32fr) minmax(0, 1fr);
  gap: 28px;
}
.action-ops-heading h2 {
  font-size: clamp(1.85rem, 3.25vw, 3.2rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
}
.op-line-item { padding: 26px 18px; }
.execution-band .motto-copy h2 {
  max-width: 680px;
  font-size: clamp(2rem, 3.8vw, 3.65rem);
}
.execution-band .motto-copy p { max-width: 660px; }
.application-guide {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.mini-guide {
  min-height: 150px;
  padding: 20px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 4px;
  box-shadow: var(--shadow-soft);
}
.mini-guide .card-icon {
  width: 34px;
  height: 34px;
  margin-bottom: 12px;
}
.mini-guide h3 {
  margin-bottom: 8px;
  font-size: 1rem;
}
.mini-guide p { margin-bottom: 0; }
.mini-guide code {
  font-size: 0.85rem;
  white-space: normal;
}
.contact-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
html[data-theme="dark"] .mini-guide {
  background: var(--card);
  border-color: var(--line);
}
html[data-theme="dark"] .brand-mark-panel {
  background: linear-gradient(135deg, #001305, #003b13);
}

@media (max-width: 1120px) {
  .hero-action-layout,
  .hero.hero-action .container {
    grid-template-columns: minmax(0, 1fr) minmax(240px, 0.48fr);
  }
  .hero-action h1 { font-size: clamp(2.85rem, 6.8vw, 5.5rem); }
  .brand-mark-panel { width: min(100%, 280px); }
}
@media (max-width: 980px) {
  .hero-action-layout,
  .hero.hero-action .container,
  .action-ops-grid {
    grid-template-columns: 1fr;
  }
  .hero-brand-accent {
    min-height: 260px;
    place-items: start;
  }
  .brand-mark-panel {
    margin-left: 0;
    width: min(100%, 260px);
  }
  .action-ops-heading {
    border-right: 0;
    padding-right: 0;
    border-bottom: 1px solid rgba(0,75,0,0.18);
    padding-bottom: 22px;
  }
  .action-ops-heading h2 { max-width: 680px; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .hero-action h1 {
    font-size: clamp(2.65rem, 13vw, 4.35rem);
    letter-spacing: -0.06em;
  }
  .hero-brand-accent { min-height: 210px; }
  .brand-mark-panel { width: min(78vw, 220px); }
  .application-guide { grid-template-columns: 1fr; }
  .mini-guide { min-height: 0; }
}
@media (max-width: 430px) {
  .hero-action h1 { font-size: clamp(2.45rem, 15vw, 3.55rem); }
  .hero-brand-accent { min-height: 180px; }
  .brand-mark-panel { width: 190px; }
}


/* v3.7.2 feedback fixes: What We Do layout, page-hero dark-mode tuning, Careers empty state, and icon/button polish. */
@media (min-width: 1181px) {
  .action-ops-grid {
    grid-template-columns: minmax(380px, 0.52fr) minmax(0, 1fr);
    gap: 20px;
  }
  .action-ops-heading {
    min-width: 0;
    padding-right: 24px;
  }
  .action-ops-heading h2 {
    max-width: 360px;
    font-size: clamp(2.35rem, 3.45vw, 3.45rem);
    line-height: 0.98;
    letter-spacing: -0.045em;
  }
  .ops-lineup {
    min-width: 0;
  }
  .op-line-item {
    min-width: 0;
    padding: 28px 18px;
  }
}

@media (max-width: 1180px) {
  .action-ops-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .action-ops-heading {
    border-right: 0;
    border-bottom: 1px solid rgba(0,75,0,0.18);
    padding-right: 0;
    padding-bottom: 22px;
  }
  .action-ops-heading h2 {
    max-width: 780px;
  }
  .ops-lineup {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border: 1px solid rgba(0,75,0,0.15);
  }
}

@media (max-width: 980px) {
  .ops-lineup {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .ops-lineup {
    grid-template-columns: 1fr;
  }
}

html[data-theme="dark"] .page-hero {
  background:
    linear-gradient(135deg, rgba(0,0,0,0.82), rgba(0,35,13,0.92)),
    radial-gradient(circle at 82% 18%, rgba(217,186,50,0.16), transparent 30%),
    linear-gradient(135deg, #020b04, #002a0e);
}

.empty-state-careers {
  display: grid;
  gap: 10px;
  max-width: 760px;
  padding: 28px;
}
.empty-state-careers .card-icon {
  margin-bottom: 4px;
}
.empty-state-careers strong {
  display: block;
  font-size: 1.25rem;
  color: var(--brand-green-dark);
}
.empty-state-careers p {
  margin: 0;
}
html[data-theme="dark"] .empty-state-careers strong {
  color: #9be0a1;
}
.contact-grid .btn,
.card .btn {
  margin-top: 12px;
}
.operation-icon svg,
.ui-icon svg,
.card-icon svg,
.contact-icon svg,
.btn-icon svg {
  overflow: visible;
}

/* =========================================================
   Admin + SEC patch
   Readability, official wordmark assets, hero icon watermark,
   SEC-supported public-address wording, and Terms safety note.
   ========================================================= */

/* Slightly stronger readability across normal content without enlarging hero headings. */
body {
  font-size: 17px;
}
p,
li,
td,
th,
.card p,
.op-line-item p,
.contact-item p,
.mini-guide p,
.empty-state p,
.callout p {
  line-height: 1.75;
}

/* Official wordmark usage: light mode original, dark mode inverted. */
.logo-link .site-logo {
  width: clamp(218px, 20vw, 270px);
  max-height: 42px;
  object-fit: contain;
  object-position: left center;
}
.footer-logo {
  width: min(270px, 100%);
  max-height: 44px;
  object-fit: contain;
  object-position: left center;
}
@media (max-width: 760px) {
  .logo-link .site-logo { width: 210px; max-height: 38px; }
}
@media (max-width: 430px) {
  .logo-link .site-logo { width: 170px; max-height: 34px; }
}

/* Homepage hero icon watermark.
   EDITABLE controls:
   - --hero-icon-width: overall mark size
   - --hero-icon-left: horizontal placement; 50% centers the mark
   - --hero-icon-top: vertical placement
   - --hero-icon-rotate: optional rotation
   - --hero-icon-opacity-light: watermark visibility in light mode
   - --hero-icon-opacity-dark: watermark visibility in dark mode
*/
.hero-action {
  --hero-icon-opacity-light: 0.15;
  --hero-icon-opacity-dark: 0.15;
  --hero-icon-opacity: var(--hero-icon-opacity-light);
  --hero-icon-width: clamp(720px, 90vw, 1920px);
  --hero-icon-left: 50%;
  --hero-icon-top: 50%;
  --hero-icon-rotate: 0deg;
}
.hero-logo-watermark {
  position: absolute;
  z-index: 0;
  top: var(--hero-icon-top);
  left: var(--hero-icon-left);
  width: var(--hero-icon-width);
  opacity: var(--hero-icon-opacity);
  transform: translate(-50%, -50%) rotate(var(--hero-icon-rotate));
  pointer-events: none;
  user-select: none;
}
.hero-logo-watermark img {
  display: block;
  width: 100%;
  height: auto;
}
.hero-logo-watermark .hero-mark-dark { display: none; }
html[data-theme="dark"] .hero-action { --hero-icon-opacity: var(--hero-icon-opacity-dark); }
html[data-theme="dark"] .hero-logo-watermark .hero-mark-light { display: none; }
html[data-theme="dark"] .hero-logo-watermark .hero-mark-dark { display: block; }

/* Remove the previous right-side decorative panel and allow the copy to breathe. */
.hero-action-layout,
.hero.hero-action .container {
  grid-template-columns: minmax(0, 1fr);
  min-height: 640px;
}
.hero-action-copy {
  position: relative;
  z-index: 1;
  max-width: 920px;
}
.hero-action .lead {
  max-width: 760px;
}
.hero-brand-accent,
.hero-visual-panel.hero-brand-accent,
.brand-mark-panel,
.brand-chevron {
  display: none;
}

/* Keep the Careers no-current-openings card proportionate when the job list is empty. */
.empty-state-careers {
  width: 100%;
  max-width: none;
  min-height: 220px;
}
.job-list .empty-state-careers {
  grid-column: 1 / -1;
}

@media (max-width: 980px) {
  .hero-action {
    --hero-icon-opacity-light: 0.24;
    --hero-icon-opacity-dark: 0.18;
    --hero-icon-width: 720px;
    --hero-icon-left: 56%;
    --hero-icon-top: 58%;
  }
  .hero-action-layout,
  .hero.hero-action .container {
    min-height: auto;
    padding: 58px 0 72px;
  }
}
@media (max-width: 760px) {
  .hero-action {
    --hero-icon-opacity-light: 0.16;
    --hero-icon-opacity-dark: 0.14;
    --hero-icon-width: 600px;
    --hero-icon-left: 58%;
    --hero-icon-top: 60%;
  }
}
/* =========================================================
   LOCAL HEADER LOGO SIZE OVERRIDE
   Adjust these variables only.
   ========================================================= */

:root {
  --header-logo-width: clamp(260px, 21vw, 330px);
  --header-logo-max-height: 64px;

  --header-logo-mobile-width: 220px;
  --header-logo-mobile-max-height: 46px;

  --header-logo-small-width: 180px;
  --header-logo-small-max-height: 38px;
}

.logo-link .site-logo,
.logo-link img.site-logo {
  width: var(--header-logo-width);
  max-height: var(--header-logo-max-height);
  height: auto;
  display: block;
  object-fit: contain;
  object-position: left center;
}

@media (max-width: 760px) {
  .logo-link .site-logo,
  .logo-link img.site-logo {
    width: var(--header-logo-mobile-width);
    max-height: var(--header-logo-mobile-max-height);
  }
}

@media (max-width: 430px) {
  .logo-link .site-logo,
  .logo-link img.site-logo {
    width: var(--header-logo-small-width);
    max-height: var(--header-logo-small-max-height);
  }
}
/* =========================================================
   LOCAL FOOTER LOGO SIZE OVERRIDE
   Adjust these variables only.
   ========================================================= */

:root {
  --footer-logo-width: clamp(260px, 22vw, 360px);
  --footer-logo-max-height: 60px;

  --footer-logo-mobile-width: 230px;
  --footer-logo-mobile-max-height: 54px;
}

.footer-logo {
  width: var(--footer-logo-width);
  max-height: var(--footer-logo-max-height);
  height: auto;
  display: block;
  object-fit: contain;
  object-position: left center;
}

@media (max-width: 760px) {
  .footer-logo {
    width: var(--footer-logo-mobile-width);
    max-height: var(--footer-logo-mobile-max-height);
  }
}
