﻿:root {
    --ink-950: #0f1814;
    --ink-900: #18231d;
    --ink-700: #31443a;
    --ink-500: #5e7268;
    --ink-300: #a6b5ad;
    --paper-100: #f6f6f2;
    --paper-50: #fcfcf9;
    --white: #ffffff;
    --forest-700: #1f6026;
    --forest-600: #287830;
    --forest-500: #36943d;
    --forest-100: #e7f1e6;
    --amber-500: #b9772e;
    --rule: rgba(14, 26, 19, 0.12);
    --shadow-soft: 0 1px 2px rgba(15, 24, 20, 0.06), 0 8px 28px rgba(15, 24, 20, 0.08);
    --shadow-mid: 0 2px 8px rgba(15, 24, 20, 0.12), 0 20px 46px rgba(15, 24, 20, 0.14);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --max-width: 1200px;
    --space-1: 8px;
    --space-2: 12px;
    --space-3: 16px;
    --space-4: 20px;
    --space-5: 28px;
    --space-6: 36px;
    --space-7: 48px;
    --space-8: 64px;
    --space-9: 88px;
    --body-size: 17px;
    --line: 1.65;
    --ease: cubic-bezier(0.2, 0.9, 0.2, 1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    font-family: 'Source Sans 3', 'Segoe UI', sans-serif;
    font-size: var(--body-size);
    line-height: 1.72;
    color: var(--ink-900);
    background: radial-gradient(circle at 10% -10%, #f0f6ef 0%, transparent 40%), var(--paper-50);
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: var(--forest-700);
    text-decoration: none;
}

a:hover {
    color: var(--forest-600);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--forest-600);
    outline-offset: 3px;
}

h1,
h2,
h3 {
    margin: 0;
    font-family: 'DM Serif Display', Georgia, serif;
    font-weight: 400;
    letter-spacing: -0.02em;
    color: var(--ink-950);
    line-height: 1.08;
}

h1 {
    font-size: clamp(2.4rem, 4.7vw, 4.6rem);
}

h2 {
    font-size: clamp(2rem, 3.6vw, 3.2rem);
}

h3 {
    font-size: clamp(1.4rem, 2.4vw, 2rem);
}

h4,
h5,
h6 {
    margin: 0;
    font-family: 'Source Sans 3', 'Segoe UI', sans-serif;
    color: var(--ink-900);
}

p {
    margin: 0 0 0.95em;
    color: var(--ink-700);
    max-width: 72ch;
}

p:last-child {
    margin-bottom: 0;
}

ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

.container {
    width: min(var(--max-width), 100% - 2.2rem);
    margin-inline: auto;
}

.section {
    padding-block: var(--space-9);
}

.section--tight-top {
    padding-top: clamp(36px, 4.2vw, 54px);
}

.section--alt {
    background: linear-gradient(180deg, rgba(223, 234, 221, 0.38) 0%, rgba(252, 252, 249, 0.8) 100%);
}

.section--dark {
    background: linear-gradient(140deg, #101a15 0%, #172620 54%, #1f382d 100%);
    color: var(--white);
}

.section--dark h2,
.section--dark h3,
.section--dark h4,
.section--dark p {
    color: var(--white);
}

.section--dark .process-step h3,
.section--dark .process-step p {
    color: var(--ink-900);
}

.section--dark .text-label {
    color: #a7dca8;
}

.section--dark .text-label::before {
    background: #a7dca8;
}

.text-label {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.74rem;
    font-weight: 700;
    color: var(--forest-700);
    margin-bottom: var(--space-3);
}

.text-label::before {
    content: '';
    width: 26px;
    height: 2px;
    border-radius: 4px;
    background: var(--forest-600);
}

.section-heading {
    margin-bottom: var(--space-7);
    max-width: 720px;
}

.section-heading p {
    margin-top: var(--space-3);
}

.section-heading.center {
    margin-inline: auto;
    text-align: center;
}

.section-heading.center .text-label {
    justify-content: center;
}

.section-heading.center .text-label::before {
    display: none;
}

.skip-to-content {
    position: fixed;
    left: var(--space-3);
    top: -120px;
    z-index: 9999;
    background: var(--forest-600);
    color: var(--white);
    padding: 10px 18px;
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    font-weight: 700;
    transition: top 0.2s ease;
}

.skip-to-content:focus {
    top: 0;
    color: var(--white);
}

.utility-bar {
    background: #131c17;
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.92rem;
}

.utility-bar .container {
    padding-block: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-4);
    flex-wrap: wrap;
}

.utility-group,
.utility-social {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    flex-wrap: wrap;
}

.utility-group a,
.utility-social a {
    color: rgba(255, 255, 255, 0.9);
}

.utility-group i,
.utility-social i {
    margin-right: 6px;
    color: #8fd68d;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 80;
    background: rgba(252, 252, 249, 0.92);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(17, 34, 25, 0.1);
    transition: background 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.site-header.scrolled {
    background: rgba(252, 252, 249, 0.97);
    border-color: var(--rule);
    box-shadow: 0 4px 20px rgba(11, 20, 16, 0.08);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 84px;
    gap: var(--space-5);
}

.site-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--ink-950);
    font-weight: 700;
    letter-spacing: 0.01em;
}

.site-logo__image {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    object-fit: cover;
}

.site-logo__text {
    line-height: 1.1;
}

.site-logo__text strong {
    display: block;
    font-size: 1.03rem;
}

.site-logo__text span {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink-500);
    font-weight: 700;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: var(--space-5);
}

.site-nav__list {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.site-nav__item {
    position: relative;
}

.site-nav__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--ink-900);
    font-weight: 600;
    padding: 10px 2px;
    border-bottom: 2px solid transparent;
    transition: color 0.25s ease, border-color 0.25s ease;
}

.site-nav__link:hover,
.site-nav__link.active {
    color: var(--forest-700);
    border-color: var(--forest-600);
}

.site-nav__dropdown {
    position: absolute;
    inset: 100% auto auto 0;
    margin-top: 10px;
    min-width: 230px;
    background: var(--white);
    border: 1px solid rgba(27, 42, 33, 0.12);
    border-radius: var(--radius-md);
    padding: var(--space-2);
    box-shadow: var(--shadow-mid);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 40;
}

/* Invisible bridge to prevent hover loss */
.site-nav__dropdown::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 0;
    right: 0;
    height: 15px;
}

.site-nav__dropdown li a {
    display: block;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    color: var(--ink-700);
}

.site-nav__dropdown li a:hover {
    background: var(--forest-100);
    color: var(--forest-700);
}

.site-nav__item--has-dropdown:hover .site-nav__dropdown,
.site-nav__item--has-dropdown:focus-within .site-nav__dropdown,
.site-nav__dropdown:hover,
.site-nav__dropdown.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(23, 41, 32, 0.2);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.88);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.nav-toggle span {
    width: 20px;
    height: 2px;
    background: var(--ink-900);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.nav-overlay {
    display: none;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 12px 22px;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn--primary {
    background: linear-gradient(135deg, var(--forest-700), var(--forest-500));
    color: var(--white);
    box-shadow: 0 6px 14px rgba(31, 96, 38, 0.22);
}

.btn--primary:hover {
    color: var(--white);
    box-shadow: 0 10px 24px rgba(31, 96, 38, 0.26);
}

.btn--secondary {
    border-color: rgba(34, 88, 39, 0.25);
    color: var(--forest-700);
    background: rgba(231, 241, 230, 0.55);
}

.btn--light {
    background: var(--white);
    color: var(--ink-900);
    border-color: rgba(255, 255, 255, 0.36);
}

.btn--light:hover {
    color: var(--ink-900);
    background: #f4f7f4;
}

.btn--sm {
    padding: 10px 16px;
    font-size: 0.88rem;
}

.hero {
    position: relative;
    padding-block: clamp(90px, 14vw, 150px);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, rgba(9, 20, 14, 0.92) 0%, rgba(11, 23, 17, 0.85) 45%, rgba(18, 34, 26, 0.65) 100%);
    z-index: 1;
}

.hero__media {
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
    transform: scale(1.03);
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero__content {
    max-width: 760px;
    color: var(--white);
}

.hero__content h1,
.hero__content p {
    color: var(--white);
}

.hero__content p {
    margin-top: var(--space-4);
    font-size: clamp(1rem, 1.7vw, 1.28rem);
    max-width: 660px;
}

.hero__actions {
    margin-top: var(--space-6);
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3);
}

.hero-points {
    margin-top: var(--space-6);
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--space-3);
}

/* 1984 Badge Specific to About Page */
.about-story .feature-media {
    overflow: visible;
    /* Allow badge to break out */
}

.about-story .badge-card {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--ink-950);
    color: var(--white);
    padding: var(--space-5);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-heavy);
    max-width: 240px;
    z-index: 10;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.about-story .badge-card strong {
    font-size: 2.2rem;
    font-family: 'DM Serif Display', Georgia, serif;
    display: block;
    line-height: 1;
    margin-bottom: 8px;
    color: #a7dca8;
}

.about-story .badge-card span {
    font-size: 0.9rem;
    line-height: var(--line);
    display: block;
    color: rgba(255, 255, 255, 0.85);
}

.hero-point {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    padding: var(--space-3) var(--space-4);
    backdrop-filter: blur(4px);
}

.hero-point strong {
    display: block;
    font-size: 1.45rem;
    font-family: 'DM Serif Display', Georgia, serif;
    letter-spacing: -0.01em;
    margin-bottom: 3px;
}

.hero-point span {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.86);
}

.stats-strip {
    margin-top: -38px;
    position: relative;
    z-index: 2;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: var(--space-3);
}

.stat {
    background: var(--white);
    border: 1px solid var(--rule);
    border-radius: var(--radius-md);
    padding: var(--space-4);
    box-shadow: var(--shadow-soft);
}

.stat strong {
    display: block;
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 2rem;
    color: var(--forest-700);
    line-height: 1;
    margin-bottom: 6px;
}

.stat span {
    display: block;
    color: var(--ink-700);
    font-size: 0.94rem;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
    margin-top: var(--space-6);
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--space-5);
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: var(--space-5);
}

.card {
    border: 1px solid var(--rule);
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.product-card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-mid);
}

.product-card img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.product-card__body {
    padding: var(--space-5);
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    flex: 1;
}

.product-card__meta {
    color: var(--ink-500);
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    font-weight: 700;
}

.product-card__link {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
}

.feature-layout {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: var(--space-7);
    align-items: start;
}

.feature-media {
    position: relative;
}

.feature-media img {
    border-radius: var(--radius-lg);
    width: 100%;
    object-fit: cover;
    box-shadow: var(--shadow-mid);
}

.badge-card {
    position: absolute;
    right: var(--space-4);
    bottom: var(--space-4);
    background: rgba(17, 28, 22, 0.88);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    padding: var(--space-3) var(--space-4);
}

.badge-card strong {
    display: block;
    font-size: 1.5rem;
    font-family: 'DM Serif Display', Georgia, serif;
}

.feature-media--stack {
    display: flex;
    flex-direction: column;
}

.media-insight {
    margin-top: var(--space-4);
    border: 1px solid rgba(20, 37, 28, 0.14);
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: var(--shadow-soft);
    padding: var(--space-4);
}

.media-insight.span-full {
    margin-top: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-6);
    align-items: center;
    padding: var(--space-6);
}

.margin-top-lg {
    margin-top: var(--space-8);
}

.media-insight h4 {
    font-size: 1.15rem;
}

.media-insight p {
    margin-top: 8px;
    max-width: none;
}

.insight-list {
    margin-top: var(--space-3);
    display: grid;
    gap: 10px;
}

.insight-list li {
    border-left: 2px solid rgba(31, 96, 38, 0.32);
    padding-left: 10px;
    font-size: 0.94rem;
    color: var(--ink-700);
}

.insight-list li strong {
    color: var(--ink-900);
}

.mini-proof-grid {
    margin-top: var(--space-3);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.mini-proof-item {
    border: 1px solid rgba(20, 37, 28, 0.12);
    border-radius: 10px;
    padding: 10px 12px;
    background: #f7faf6;
}

.mini-proof-item strong {
    display: block;
    color: var(--ink-900);
    font-size: 0.92rem;
}

.mini-proof-item span {
    display: block;
    color: var(--ink-700);
    font-size: 0.85rem;
    margin-top: 3px;
}

.list-check {
    display: grid;
    gap: 10px;
    margin-top: var(--space-4);
}

.list-check li {
    display: flex;
    gap: 10px;
    color: var(--ink-700);
}

.list-check li::before {
    content: '•';
    color: var(--forest-600);
    font-weight: 800;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: var(--space-4);
}

.process-step {
    position: relative;
    background: var(--white);
    border: 1px solid rgba(17, 35, 26, 0.13);
    border-radius: var(--radius-md);
    padding: var(--space-5);
}

.process-step span {
    display: inline-flex;
    width: 30px;
    height: 30px;
    border-radius: 999px;
    align-items: center;
    justify-content: center;
    background: var(--forest-100);
    color: var(--forest-700);
    font-size: 0.86rem;
    font-weight: 700;
    margin-bottom: var(--space-3);
}

.capability-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--space-4);
}

.capability-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius-md);
    padding: var(--space-5);
}

.capability-card h3,
.capability-card p {
    color: var(--white);
}

.evidence-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--space-4);
}

.evidence-card {
    border: 1px solid rgba(17, 35, 26, 0.13);
    border-radius: var(--radius-md);
    background: var(--white);
    padding: var(--space-5);
    box-shadow: var(--shadow-soft);
}

.evidence-card h3 {
    font-size: 1.6rem;
    margin-bottom: 6px;
}

.client-strip {
    border: 1px solid var(--rule);
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-5);
    box-shadow: var(--shadow-soft);
}

.client-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-5);
    flex-wrap: wrap;
    margin-bottom: var(--space-4);
}

.client-logos img {
    max-height: 46px;
    width: auto;
    opacity: 0.8;
    filter: grayscale(0.1);
}

.client-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.client-list span {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(31, 96, 38, 0.16);
    background: #f0f5ee;
    color: var(--ink-700);
    font-size: 0.88rem;
}

.cta-panel {
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, #111f18 0%, #1a3026 58%, #245036 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--white);
    padding: clamp(26px, 4vw, 54px);
    display: flex;
    justify-content: space-between;
    gap: var(--space-6);
    align-items: center;
}

.cta-panel h2,
.cta-panel p {
    color: var(--white);
}

.cta-panel p {
    margin-top: var(--space-3);
    max-width: 660px;
    color: rgba(255, 255, 255, 0.84);
}

.page-hero {
    position: relative;
    overflow: hidden;
    padding-block: clamp(44px, 6.4vw, 72px);
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, rgba(9, 20, 14, 0.88) 0%, rgba(11, 23, 17, 0.78) 45%, rgba(18, 34, 26, 0.6) 100%);
    z-index: 1;
}

.page-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-hero h1,
.page-hero p {
    color: var(--white);
}

.page-hero p {
    margin-top: var(--space-3);
    max-width: 760px;
}

.page-hero+.section {
    padding-top: clamp(40px, 5vw, 56px);
}

.intro-band {
    padding-block: 28px 22px;
    border-bottom: 1px solid rgba(20, 37, 28, 0.12);
    background: linear-gradient(180deg, rgba(230, 239, 228, 0.56) 0%, rgba(252, 252, 249, 0.8) 100%);
}

.intro-band h1 {
    font-size: clamp(2rem, 4.1vw, 3rem);
    line-height: 1.12;
}

.intro-band p {
    margin-top: 10px;
}

.breadcrumb--ink {
    color: var(--ink-700);
    margin-top: 12px;
}

.breadcrumb--ink a {
    color: var(--forest-700);
}

.breadcrumb--ink span[aria-current='page'] {
    color: var(--ink-500);
}

.breadcrumb {
    margin-top: var(--space-3);
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.94rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.95);
}

.breadcrumb span[aria-current='page'] {
    color: rgba(255, 255, 255, 0.72);
}

.about-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-6);
    align-items: start;
}

.pillar-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--space-4);
}

.pillar-card {
    border: 1px solid rgba(20, 37, 28, 0.14);
    border-radius: var(--radius-md);
    padding: var(--space-5);
    background: var(--white);
}

.pillar-card i {
    color: var(--forest-600);
    font-size: 1.2rem;
    margin-bottom: var(--space-3);
}

.timeline {
    display: grid;
    gap: var(--space-3);
}

.timeline-item {
    border-left: 3px solid var(--forest-600);
    background: rgba(255, 255, 255, 0.82);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    padding: var(--space-3) var(--space-4);
}

.timeline-item strong {
    font-family: 'DM Serif Display', Georgia, serif;
    color: var(--forest-700);
    font-size: 1.35rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: var(--space-4);
}

.team-card {
    border: 1px solid var(--rule);
    background: var(--white);
    border-radius: var(--radius-md);
    padding: var(--space-4);
    box-shadow: var(--shadow-soft);
}

.team-card__avatar {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: var(--forest-100);
    color: var(--forest-700);
    font-weight: 700;
    margin-bottom: var(--space-3);
}

.team-card p {
    margin-top: 8px;
    font-size: 0.92rem;
}

.detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: var(--space-6);
    align-items: start;
}

.detail-main {
    display: grid;
    gap: var(--space-5);
}

.detail-main__hero {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-mid);
}

.detail-main__hero img {
    width: 100%;
    aspect-ratio: 16 / 8.8;
    object-fit: cover;
}

.detail-main blockquote {
    margin: 0;
    border-left: 3px solid var(--forest-600);
    background: #edf4eb;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    padding: var(--space-4);
    color: var(--ink-700);
    font-style: italic;
}

.spec-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-4);
}

.spec-card {
    border: 1px solid rgba(20, 37, 28, 0.14);
    border-radius: var(--radius-md);
    padding: var(--space-4);
    background: var(--white);
}

.spec-card h4 {
    margin-bottom: 6px;
}

.detail-image-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-4);
}

.detail-image-grid img {
    width: 100%;
    border-radius: var(--radius-md);
    border: 1px solid rgba(20, 37, 28, 0.14);
    background: #f2f4f1;
}

.detail-sidebar {
    position: sticky;
    top: 98px;
    display: grid;
    gap: var(--space-4);
}

.sidebar-card {
    border: 1px solid rgba(20, 37, 28, 0.15);
    border-radius: var(--radius-md);
    padding: var(--space-4);
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.sidebar-card h4,
.sidebar-card h5 {
    margin-bottom: 10px;
}

.sidebar-nav,
.download-list {
    display: grid;
    gap: 8px;
}

.sidebar-nav a,
.download-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-2);
    border: 1px solid rgba(20, 37, 28, 0.12);
    border-radius: var(--radius-sm);
    padding: 10px 12px;
    color: var(--ink-700);
    font-weight: 600;
    background: #fbfcfa;
}

.sidebar-nav a:hover,
.download-list a:hover,
.sidebar-nav a.active {
    color: var(--forest-700);
    border-color: rgba(31, 96, 38, 0.4);
    background: var(--forest-100);
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: var(--space-6);
    align-items: start;
}

.contact-form-panel,
.contact-aside,
.map-frame {
    border: 1px solid rgba(20, 37, 28, 0.13);
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.contact-form-panel,
.contact-aside {
    padding: var(--space-6);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-3);
    margin-top: var(--space-5);
}

.form-grid .full {
    grid-column: 1 / -1;
}

.form-group {
    display: grid;
    gap: 8px;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--ink-900);
}

.form-control,
input[type='text'],
input[type='email'],
textarea {
    width: 100%;
    border: 1px solid rgba(20, 37, 28, 0.2);
    border-radius: 10px;
    padding: 12px 13px;
    font-family: inherit;
    font-size: 0.96rem;
    color: var(--ink-900);
    background: #fbfdfb;
}

textarea.form-control,
textarea {
    min-height: 140px;
    resize: vertical;
}

.validation-error {
    color: #a53d29;
    font-size: 0.84rem;
}

.form-messages {
    margin-top: var(--space-3);
    font-weight: 700;
}

.spaced-copy {
    margin-top: 10px;
}

.section-action {
    margin-top: 20px;
}

.section-action--lg {
    margin-top: 22px;
}

.timeline--spaced {
    margin-top: 20px;
}

.link-stack {
    margin-top: 14px;
    display: grid;
    gap: 8px;
}

.form-grid--tight {
    margin-top: 0;
}

.inline-note {
    margin: 0;
}

.action-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.honeypot {
    display: none !important;
}

.contact-info-list {
    display: grid;
    gap: var(--space-3);
    margin-top: var(--space-4);
}

.contact-info-item {
    display: flex;
    gap: var(--space-3);
    align-items: flex-start;
}

.contact-info-item i {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: var(--forest-100);
    color: var(--forest-700);
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.map-frame {
    padding: 0;
    overflow: hidden;
    margin-top: var(--space-5);
}

.map-frame iframe {
    display: block;
    width: 100%;
    min-height: 340px;
    border: 0;
}

.site-footer {
    margin-top: var(--space-9);
    padding-block: var(--space-8) var(--space-6);
    background: linear-gradient(140deg, #101914 0%, #16231d 50%, #1d3529 100%);
    color: rgba(255, 255, 255, 0.88);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
    gap: var(--space-6);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: var(--space-4);
}

.footer-brand .site-logo__image {
    width: 36px;
    height: 36px;
}

.footer-brand strong {
    display: block;
    color: var(--white);
}

.footer-brand span {
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    font-weight: 700;
}

.footer-col h5 {
    color: var(--white);
    margin-bottom: var(--space-3);
}

.footer-links {
    display: grid;
    gap: 8px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.86);
}

.footer-links a:hover {
    color: #9cdd9d;
}

.footer-contact-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact-item i {
    color: #8fd68d;
    margin-top: 4px;
}

.footer-contact-item a {
    color: rgba(255, 255, 255, 0.9);
}

.footer-bottom {
    margin-top: var(--space-6);
    padding-top: var(--space-4);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    justify-content: space-between;
    gap: var(--space-3);
    flex-wrap: wrap;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.65);
}

.back-to-top {
    position: fixed;
    right: 18px;
    bottom: 18px;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(31, 96, 38, 0.25);
    background: rgba(255, 255, 255, 0.95);
    color: var(--forest-700);
    display: grid;
    place-items: center;
    box-shadow: var(--shadow-soft);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    z-index: 60;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
}

.revealed {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }

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

@media (max-width: 1199px) {

    .grid-4,
    .team-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .process-grid,
    .capability-grid,
    .evidence-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991px) {
    .site-header__inner {
        min-height: 78px;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .site-nav {
        gap: var(--space-3);
    }

    .site-nav__list {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(84vw, 360px);
        height: 100vh;
        background: var(--white);
        box-shadow: -10px 0 40px rgba(11, 20, 15, 0.2);
        padding: 96px 22px 24px;
        display: grid;
        align-content: start;
        gap: 0;
        transition: right 0.24s ease;
        z-index: 92;
    }

    .site-nav__list.open {
        right: 0;
    }

    .site-nav__item {
        border-bottom: 1px solid rgba(20, 37, 28, 0.1);
    }

    .site-nav__link {
        width: 100%;
        padding-block: 14px;
        border-bottom: 0;
        justify-content: space-between;
    }

    .site-nav__dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: 0;
        border-radius: 0;
        padding: 0 0 10px;
        min-width: unset;
        display: none;
    }

    .site-nav__dropdown.open {
        display: block;
    }

    .site-nav .btn {
        display: none;
    }

    .nav-overlay {
        position: fixed;
        inset: 0;
        background: rgba(13, 24, 18, 0.56);
        z-index: 90;
    }

    .nav-overlay.open {
        display: block;
    }

    .hero-points,
    .stats-grid,
    .grid-2,
    .feature-layout,
    .about-story,
    .pillar-grid,
    .detail-layout,
    .contact-layout,
    .spec-grid,
    .detail-image-grid,
    .cta-panel,
    .process-grid,
    .capability-grid,
    .evidence-grid {
        grid-template-columns: 1fr;
    }

    .detail-sidebar {
        position: static;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .utility-bar .container {
        justify-content: center;
    }

    .mini-proof-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .section {
        padding-block: 68px;
    }

    .container {
        width: min(var(--max-width), 100% - 1.4rem);
    }

    .site-logo__text span {
        display: none;
    }

    .hero {
        padding-block: 90px;
    }

    .hero__actions {
        width: 100%;
    }

    .hero__actions .btn {
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
    }
}