:root {
    --green: #8fd12a;
    --green-deep: #6faa18;
    --green-soft: #e8f6c8;
    --ink: #141614;
    --ink-soft: #3a3f3a;
    --muted: #6b726b;
    --paper: #f3f5f1;
    --paper-2: #e7ebe3;
    --white: #ffffff;
    --line: rgba(20, 22, 20, 0.12);
    --shadow: 0 24px 60px rgba(20, 22, 20, 0.12);
    --font-display: "Barlow", sans-serif;
    --font-body: "IBM Plex Sans", sans-serif;
    --header-h: 4.5rem;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--ink);
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    background:
        radial-gradient(1200px 500px at 10% -10%, rgba(143, 209, 42, 0.16), transparent 55%),
        radial-gradient(900px 420px at 100% 0%, rgba(143, 209, 42, 0.08), transparent 50%),
        linear-gradient(180deg, #f7f8f5 0%, var(--paper) 40%, #eef1eb 100%);
    background-attachment: fixed;
    min-height: 100vh;
}

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

a {
    color: inherit;
    text-decoration-thickness: 0.08em;
    text-underline-offset: 0.18em;
}

a:hover {
    color: var(--green-deep);
}

h1, h2, h3, h4 {
    font-family: var(--font-display);
    line-height: 1.15;
    letter-spacing: -0.015em;
    margin: 0 0 0.55em;
    font-weight: 600;
}

h1 { font-size: clamp(2rem, 3.8vw, 3.1rem); }
h2 { font-size: clamp(1.45rem, 2.2vw, 1.95rem); }
h3 { font-size: 1.125rem; font-weight: 600; }

p {
    margin: 0 0 1em;
}

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

ul, ol {
    margin: 0;
    padding: 0;
}

.wrap {
    width: min(1120px, calc(100% - 2.5rem));
    margin-inline: auto;
}

.skip-link {
    position: absolute;
    left: 1rem;
    top: -4rem;
    background: var(--ink);
    color: var(--white);
    padding: 0.7rem 1rem;
    z-index: 100;
}

.skip-link:focus {
    top: 1rem;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(14px);
    background: rgba(247, 248, 245, 0.82);
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
    overflow: visible;
}

.site-header.is-scrolled {
    border-bottom-color: var(--line);
    background: rgba(247, 248, 245, 0.94);
}

.header-inner {
    width: 100%;
    margin-inline: 0;
    padding-inline: 0.65rem 1.25rem;
    height: var(--header-h);
    min-height: var(--header-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: var(--ink);
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    height: 100%;
}

.logo:hover {
    color: var(--ink);
}

.logo img {
    display: block;
    width: auto;
    max-width: none;
    height: calc(var(--header-h) - 0.35rem);
}

.site-nav ul {
    list-style: none;
    display: flex;
    gap: 0.25rem 1.5rem;
    align-items: center;
}

.site-nav a {
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--ink-soft);
    position: relative;
    padding: 0.35rem 0;
}

.site-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: var(--green);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s var(--ease);
}

.site-nav a:hover,
.site-nav a.is-active {
    color: var(--ink);
}

.site-nav a.is-active::after,
.site-nav a:hover::after {
    transform: scaleX(1);
}

.nav-toggle {
    display: none;
    border: 0;
    background: transparent;
    align-items: center;
    gap: 0.55rem;
    font: inherit;
    font-weight: 600;
    cursor: pointer;
    color: var(--ink);
}

.nav-toggle-bar {
    width: 1.4rem;
    height: 2px;
    background: var(--ink);
    box-shadow: 0 6px 0 var(--ink), 0 -6px 0 var(--ink);
}

.site-nav {
    margin-left: auto;
}

.header-tools {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.btn-header {
    min-height: 2.45rem;
    padding: 0.45rem 1rem;
    font-size: 0.88rem;
    white-space: nowrap;
}

.btn-header-short {
    display: none;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 3rem;
    padding: 0.75rem 1.35rem;
    border-radius: 0;
    border: 2px solid transparent;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}

.btn:hover {
    transform: translateY(-2px);
    color: inherit;
}

.btn-primary {
    background: var(--green);
    color: var(--ink);
    border-color: var(--green);
}

.btn-primary:hover {
    background: var(--green-deep);
    border-color: var(--green-deep);
    color: var(--white);
}

.btn-ghost {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.55);
}

.btn-ghost:hover {
    background: var(--white);
    color: var(--ink);
    border-color: var(--white);
}

.text-link {
    font-weight: 700;
    color: var(--ink);
    text-decoration: none;
    border-bottom: 2px solid var(--green);
    padding-bottom: 0.1rem;
}

.text-link:hover {
    color: var(--green-deep);
}

/* Hero */
.hero {
    position: relative;
    min-height: calc(100vh - var(--header-h));
    display: grid;
    align-items: center;
    color: var(--white);
    overflow: visible;
    background: #0a0c0a;
    padding-bottom: 3.5rem;
}

.hero-media {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    transform: scale(1.08);
    animation: hero-zoom 12s var(--ease) forwards;
}

.hero-veil {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg,
            rgba(255, 255, 255, 0.88) 0%,
            rgba(255, 255, 255, 0.45) 12%,
            rgba(255, 255, 255, 0.12) 22%,
            transparent 32%
        ),
        linear-gradient(105deg, rgba(10, 12, 10, 0.82) 0%, rgba(10, 12, 10, 0.55) 38%, rgba(10, 12, 10, 0.2) 68%, rgba(10, 12, 10, 0.08) 100%),
        linear-gradient(0deg, rgba(10, 12, 10, 0.55) 0%, transparent 42%);
}

.hero-brand {
    position: absolute;
    top: 1.75rem;
    left: 40%;
    z-index: 2;
    margin: 0;
    width: fit-content;
    transform: translateX(-50%);
    animation: rise 0.9s var(--ease) both;
}

.hero-brand img {
    display: block;
    width: min(24rem, 72vw);
    height: auto;
    background: transparent;
    filter: drop-shadow(0 10px 28px rgba(0, 0, 0, 0.35));
}

.hero-content {
    position: relative;
    z-index: 1;
    width: min(1120px, calc(100% - 3rem));
    margin-inline: auto;
    padding: clamp(3rem, 8vh, 5.5rem) 0;
    max-width: 42rem;
    margin-left: max(calc((100% - 1120px) / 2), 1.5rem);
    animation: rise 0.9s var(--ease) both;
}

.hero-title {
    margin-top: 0;
    margin-bottom: 1rem;
    max-width: 22ch;
    font-weight: 600;
    font-size: clamp(2.35rem, 5.2vw, 3.85rem);
    line-height: 1.05;
    letter-spacing: -0.025em;
}

.hero-lead {
    font-size: clamp(1.08rem, 1.7vw, 1.28rem);
    line-height: 1.55;
    max-width: 34ch;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
}

.hero .btn {
    min-height: 3.35rem;
    padding: 0.85rem 1.55rem;
    font-size: 1rem;
}

.btn-ghost-dark {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.45);
}

.btn-ghost-dark:hover {
    background: var(--white);
    color: var(--ink);
    border-color: var(--white);
}

.hero-stats {
    position: absolute;
    left: 50%;
    bottom: 1.35rem;
    z-index: 6;
    width: min(1120px, calc(100% - 2rem));
    transform: translate(-50%, 50%);
    background: #171917;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0.7rem;
    box-shadow: 0 16px 40px rgba(10, 12, 10, 0.28);
    padding: 0.7rem 0.85rem;
}

.hero-stats-grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.55rem 0.75rem;
}

.hero-stats-grid li {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.45rem;
    min-width: 0;
    padding: 0.15rem 0.35rem;
}

.hero-stat-icon {
    width: 5.75rem;
    height: 5.75rem;
    border-radius: 50%;
    border: 1px solid rgba(143, 209, 42, 0.45);
    color: var(--green);
    display: grid;
    place-items: center;
    flex-shrink: 0;
    overflow: hidden;
    padding: 0.5rem;
    background: rgba(143, 209, 42, 0.06);
}

.hero-stat-icon img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: contain;
    filter: invert(78%) sepia(42%) saturate(650%) hue-rotate(35deg) brightness(1.05);
}

.hero-stat-copy {
    min-width: 0;
}

.hero-stat-value {
    margin: 0;
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.02em;
    color: var(--white);
}

.hero-stat-label {
    margin: 0 0 0.25rem;
    font-family: var(--font-display);
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--green);
    line-height: 1.2;
}

.hero-stat-text {
    margin: 0;
    font-size: 0.7rem;
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.62);
}

.hero-stats-grid li + li {
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    padding-left: 0.75rem;
}

.hero-shape {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: clamp(4.5rem, 9vw, 7rem);
    z-index: 4;
    pointer-events: none;
    line-height: 0;
}

.hero-shape svg {
    display: block;
    width: 100%;
    height: 100%;
}

.hero-shape-fill {
    fill: var(--paper);
}

.hero-shape-line {
    stroke: var(--green);
    stroke-width: 3.5;
    stroke-linecap: round;
    vector-effect: non-scaling-stroke;
}

.hero-shape-accent {
    fill: var(--green);
}

/* Sections */
.section {
    padding: 5.5rem 0;
}

.section-muted {
    background: rgba(255, 255, 255, 0.45);
    border-block: 1px solid var(--line);
}

.section-head {
    max-width: 36rem;
    margin-bottom: 2.5rem;
}

.section-process {
    padding-top: 5.75rem;
    background: var(--paper);
}

.section-head p,
.page-lead {
    color: var(--ink-soft);
    font-size: 1rem;
    line-height: 1.6;
    max-width: 42ch;
}

.page-inner {
    padding-bottom: 2rem;
}

.page-hero {
    padding: 4rem 0 1rem;
}

.page-eyebrow {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--green-deep);
    margin-bottom: 0.8rem;
}

.page-hero h1 {
    max-width: 16ch;
}

/* Intro */
.intro-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 3.5rem;
    align-items: start;
}

.intro-copy h2 {
    margin-bottom: 1rem;
}

.intro-points {
    list-style: none;
    display: grid;
    gap: 0;
}

.intro-points li {
    padding: 1.35rem 0 1.35rem 1.1rem;
    border-bottom: 1px solid var(--line);
    border-left: 3px solid var(--green);
}

.intro-points li:first-child {
    padding-top: 0.15rem;
}

.intro-points li:last-child {
    border-bottom: 0;
    padding-bottom: 0.15rem;
}

.intro-points h3 {
    margin-bottom: 0.3rem;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.05rem;
    letter-spacing: 0;
}

.intro-points p {
    color: var(--ink-soft);
    font-size: 0.95rem;
}

/* Services */
.section-services {
    position: relative;
    color: var(--white);
    padding: 5.5rem 0 5rem;
    overflow: hidden;
    background: #0a0c0a;
}

.services-bg {
    position: absolute;
    inset: 0;
}

.services-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
    filter: grayscale(0.35) contrast(1.05);
}

.services-veil {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(6, 8, 6, 0.97) 0%, rgba(6, 8, 6, 0.95) 58%, rgba(6, 8, 6, 0.8) 70%, rgba(6, 8, 6, 0.4) 85%, rgba(6, 8, 6, 0.1) 100%),
        linear-gradient(0deg, rgba(6, 8, 6, 0.4) 0%, transparent 40%);
}

.services-inner {
    position: relative;
    z-index: 1;
    max-width: 100%;
    box-sizing: border-box;
}

.services-intro {
    max-width: 36rem;
    margin-bottom: 2.75rem;
}

.services-eyebrow {
    margin: 0 0 0.7rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--green);
}

.services-intro h2 {
    color: var(--white);
    margin-bottom: 0.85rem;
}

.services-intro h2::after {
    content: "";
    display: block;
    width: 3.2rem;
    height: 3px;
    margin-top: 0.75rem;
    background: var(--green);
}

.services-lead {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.02rem;
    line-height: 1.6;
    max-width: 38ch;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    width: 100%;
    max-width: 100%;
}

/* Hide carousel extras on desktop */
.services-carousel-fade,
.services-dots {
    display: none;
}

.services-carousel {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    width: 100%;
    max-width: 100%;
}

.service-block {
    padding: 1.6rem 1.4rem 1.7rem;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    background: transparent;
    min-width: 0;
    box-sizing: border-box;
    overflow-wrap: break-word;
}

.services-carousel .service-block:nth-child(3n) {
    border-right: 0;
}

.service-block-wide {
    grid-column: 1 / -1;
    border-right: 0;
}

.service-head {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    min-width: 0;
}

.service-icon {
    width: 1.7rem;
    height: 1.7rem;
    color: var(--green);
    flex-shrink: 0;
}

.service-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.service-block h3 {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--white);
    line-height: 1.25;
    min-width: 0;
    overflow-wrap: anywhere;
    hyphens: auto;
}

.service-block ul {
    list-style: none;
    display: grid;
    gap: 0.45rem;
}

.service-list-split {
    grid-template-columns: repeat(4, 1fr);
    gap: 0.45rem 1.25rem;
}

.service-block li {
    position: relative;
    padding-left: 0.95rem;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.92rem;
}

.service-block li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.45em;
    width: 0.35rem;
    height: 0.35rem;
    background: var(--green);
}

/* Process timeline */
.process-timeline {
    list-style: none;
    position: relative;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.process-timeline::before {
    content: "";
    position: absolute;
    left: 0.7rem;
    right: 0.7rem;
    top: 0.8rem;
    height: 2px;
    background: rgba(20, 22, 20, 0.12);
}

.process-timeline::after {
    content: "";
    position: absolute;
    left: 0.7rem;
    top: 0.8rem;
    width: calc(100% - 1.4rem);
    height: 2px;
    background: linear-gradient(90deg, var(--green) 0%, var(--green-deep) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.55s var(--ease);
}

.process-timeline.is-active::after {
    transform: scaleX(1);
}

.process-timeline li {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 0.85rem;
    padding: 0;
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}

.process-timeline li.is-visible {
    opacity: 1;
    transform: none;
}

.process-marker {
    width: 1.7rem;
    height: 1.7rem;
    border-radius: 50%;
    border: 2px solid var(--paper-2);
    background: var(--white);
    box-shadow: inset 0 0 0 3px var(--ink);
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    color: var(--ink);
    transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease), color 0.3s var(--ease);
}

.process-marker svg {
    width: 0.78rem;
    height: 0.78rem;
    display: block;
    opacity: 0;
    transition: opacity 0.25s var(--ease);
}

.process-marker-end svg {
    width: 0.82rem;
    height: 0.82rem;
}

.process-timeline li.is-visible .process-marker {
    background: var(--green);
    border-color: var(--green);
    box-shadow: 0 0 0 4px rgba(143, 209, 42, 0.22);
    color: var(--ink);
}

.process-timeline li.is-visible .process-marker svg {
    opacity: 1;
}

.process-body h3 {
    font-family: var(--font-body);
    font-size: 0.98rem;
    font-weight: 600;
    letter-spacing: 0;
    margin: 0 0 0.35rem;
    line-height: 1.25;
}

.process-body p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 0.84rem;
    line-height: 1.45;
    max-width: none;
}

.process-dots {
    display: none;
}

/* Reasons */
.section-reasons {
    background: #f2f4f0;
}

.reasons-intro {
    text-align: center;
    max-width: 40rem;
    margin: 0 auto 2.75rem;
}

.reasons-eyebrow {
    margin: 0 0 0.75rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--green-deep);
}

.reasons-intro h2 {
    margin: 0 0 0.9rem;
    font-size: clamp(1.7rem, 3vw, 2.35rem);
    line-height: 1.2;
}

.reasons-intro h2 span {
    color: var(--green);
}

.reasons-intro h2::after {
    content: "";
    display: block;
    width: 2.6rem;
    height: 3px;
    margin: 0.85rem auto 0;
    background: var(--green);
}

.reasons-lead {
    margin: 0 auto;
    color: var(--ink-soft);
    font-size: 1.02rem;
    line-height: 1.6;
    max-width: 38ch;
}

.reasons-grid {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.15rem;
}

.reasons-grid li {
    display: grid;
    justify-items: center;
    align-content: start;
    gap: 0.7rem;
    min-width: 0;
    width: 100%;
    padding: 1.75rem 1.25rem 1.6rem;
    background: var(--white);
    border: 0;
    border-radius: 0.9rem;
    min-height: 13.5rem;
    text-align: center;
    box-shadow: 0 10px 28px rgba(20, 22, 20, 0.06);
}

.reason-icon {
    width: 3.4rem;
    height: 3.4rem;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--green-deep);
    background: rgba(143, 209, 42, 0.16);
}

.reason-icon svg {
    width: 1.45rem;
    height: 1.45rem;
    display: block;
}

.reasons-grid h3 {
    margin: 0;
    font-family: var(--font-body);
    font-size: 1.02rem;
    font-weight: 700;
    letter-spacing: 0;
    color: var(--ink);
    line-height: 1.3;
    max-width: 100%;
    overflow-wrap: anywhere;
    hyphens: auto;
}

.reasons-grid p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 0.9rem;
    line-height: 1.45;
    max-width: 22ch;
    width: 100%;
    overflow-wrap: anywhere;
}

/* Brands */
.brand-group + .brand-group {
    margin-top: 2.25rem;
}

.brand-subtitle {
    margin: 0 0 0.85rem;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--muted);
}

.brand-grid {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.85rem;
}

.brand-grid li {
    display: grid;
    place-items: center;
    min-height: 5.5rem;
    padding: 0.85rem 1rem;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid var(--line);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.15rem;
    letter-spacing: -0.01em;
    color: var(--ink-soft);
    transition: border-color 0.25s var(--ease), color 0.25s var(--ease), background 0.25s var(--ease);
}

.brand-grid li.brand-logo img {
    display: block;
    width: auto;
    max-width: min(11rem, 78%);
    max-height: 2.85rem;
    height: auto;
    object-fit: contain;
}

.brand-grid li.brand-logo.brand-logo-lg {
    min-height: 7rem;
    padding: 0.5rem 0.65rem;
}

.brand-grid li.brand-logo.brand-logo-lg img {
    max-width: min(18rem, 96%);
    max-height: 5.25rem;
}

.brand-grid li.is-primary {
    background: var(--ink);
    border-color: var(--ink);
    color: var(--green);
}

.brand-grid li:not(.is-primary):hover {
    border-color: rgba(111, 170, 24, 0.55);
    color: var(--ink);
}

/* Materials */
.material-grid {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    gap: 0.65rem;
}

.material-grid li {
    display: grid;
    place-items: center;
    min-height: 4.25rem;
    background: var(--ink);
    color: var(--white);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.04em;
}

/* CTA */
.cta-panel {
    background: var(--ink);
    color: var(--white);
    padding: clamp(2.5rem, 5vw, 4rem);
    display: grid;
    gap: 1rem;
    justify-items: start;
    position: relative;
    overflow: hidden;
}

.cta-panel::before {
    content: "";
    position: absolute;
    right: -4rem;
    top: -4rem;
    width: 16rem;
    height: 16rem;
    background: radial-gradient(circle, rgba(143, 209, 42, 0.45), transparent 70%);
    pointer-events: none;
}

.cta-panel h2,
.cta-panel p {
    position: relative;
    max-width: 28ch;
}

.cta-panel p {
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 0.5rem;
}

.cta-panel .btn {
    position: relative;
}

.cta-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem 1.75rem;
    margin-top: 2.75rem;
    padding: 1.5rem 1.5rem;
    background: var(--ink);
    color: var(--white);
}

.cta-bar-copy {
    max-width: 36rem;
}

.cta-bar-copy h3 {
    margin: 0 0 0.35rem;
    font-size: clamp(1.15rem, 2vw, 1.4rem);
    color: var(--white);
}

.cta-bar-copy p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.95rem;
}

.cta-bar .btn-ghost-dark {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.45);
}

.cta-bar .btn-ghost-dark:hover {
    background: var(--white);
    color: var(--ink);
    border-color: var(--white);
}

/* Portfolio / CV */
.portfolio-list {
    display: grid;
    gap: 2.5rem;
}

.portfolio-item {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 1.75rem;
    align-items: center;
}

.portfolio-item figure {
    margin: 0;
    overflow: hidden;
    background: var(--paper-2);
}

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

.portfolio-body p {
    color: var(--ink-soft);
}

.tag-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.2rem;
}

.tag-list li {
    font-size: 0.82rem;
    font-weight: 600;
    padding: 0.35rem 0.7rem;
    background: var(--green-soft);
    color: var(--ink);
}

.placeholder-frame {
    aspect-ratio: 16 / 10;
    background:
        linear-gradient(135deg, var(--paper-2), #dfe5d8);
    display: grid;
    place-items: center;
    border: 1px dashed rgba(20, 22, 20, 0.2);
}

.placeholder-frame span {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--muted);
}

.section-cv {
    padding-top: 2rem;
}

.cv-shell {
    display: grid;
    grid-template-columns: minmax(16rem, 0.9fr) minmax(0, 1.6fr);
    gap: 0;
    border: 1px solid var(--line);
    background: var(--white);
    box-shadow: 0 18px 50px rgba(20, 22, 20, 0.08);
    overflow: hidden;
}

.cv-aside {
    background:
        linear-gradient(180deg, #171917 0%, #121412 100%);
    color: var(--white);
    padding: 2rem 1.6rem 2.25rem;
    display: grid;
    gap: 1.75rem;
    align-content: start;
}

.cv-identity h2 {
    margin: 0.2rem 0 0.65rem;
    color: var(--white);
    font-size: clamp(1.7rem, 2.4vw, 2.15rem);
}

.cv-role {
    margin: 0;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--green);
}

.cv-tagline {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.95rem;
    line-height: 1.5;
}

.cv-block h3 {
    margin: 0 0 0.7rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--green);
}

.cv-contact,
.cv-list {
    list-style: none;
    display: grid;
    gap: 0.4rem;
    margin: 0;
    padding: 0;
}

.cv-contact li,
.cv-list li {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.92rem;
}

.cv-contact a {
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
}

.cv-contact a:hover {
    color: var(--green);
}

.cv-chips {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin: 0;
    padding: 0;
}

.cv-chips li {
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.35rem 0.55rem;
    border: 1px solid rgba(143, 209, 42, 0.35);
    color: var(--green);
    background: rgba(143, 209, 42, 0.08);
}

.cv-list-inline {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.35rem 0.5rem;
}

.cv-main {
    padding: 2rem 2rem 2.35rem;
    background:
        linear-gradient(180deg, #ffffff 0%, #f7f8f5 100%);
}

.cv-section + .cv-section {
    margin-top: 2rem;
    padding-top: 1.75rem;
    border-top: 1px solid var(--line);
}

.cv-section > h3 {
    margin: 0 0 1rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--green-deep);
}

.cv-section > p {
    margin: 0;
    color: var(--ink-soft);
    max-width: 62ch;
}

.cv-job + .cv-job {
    margin-top: 1.5rem;
    padding-top: 1.35rem;
    border-top: 1px dashed rgba(20, 22, 20, 0.14);
}

.cv-job-head {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.5rem 1.25rem;
    margin-bottom: 0.65rem;
}

.cv-job h4 {
    margin: 0 0 0.2rem;
    font-family: var(--font-body);
    font-size: 1.08rem;
    font-weight: 700;
}

.cv-company {
    margin: 0;
    font-weight: 600;
    color: var(--ink);
}

.cv-period {
    margin: 0;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--green-deep);
}

.cv-job > p {
    margin: 0 0 0.75rem;
    color: var(--ink-soft);
}

.cv-job ul {
    margin: 0;
    padding-left: 1.1rem;
    display: grid;
    gap: 0.35rem;
    color: var(--ink-soft);
}

.cv-skills-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
}

.cv-skills-grid article {
    padding: 1rem 1.05rem;
    background: var(--white);
    border: 1px solid var(--line);
    border-left: 3px solid var(--green);
}

.cv-skills-grid h4 {
    margin: 0 0 0.35rem;
    font-family: var(--font-body);
    font-size: 0.98rem;
    font-weight: 700;
}

.cv-skills-grid p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 0.9rem;
}

.cv-steps {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.65rem;
    counter-reset: cvstep;
}

.cv-steps li {
    position: relative;
    padding: 0.85rem 0.95rem 0.85rem 3rem;
    background: var(--white);
    border: 1px solid var(--line);
    color: var(--ink-soft);
    counter-increment: cvstep;
}

.cv-steps li::before {
    content: counter(cvstep);
    position: absolute;
    left: 0.85rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1.45rem;
    height: 1.45rem;
    border-radius: 50%;
    background: var(--green);
    color: var(--ink);
    font-size: 0.75rem;
    font-weight: 700;
    display: grid;
    place-items: center;
}

.cv-steps strong {
    color: var(--ink);
}

.page-hero.wrap h1 {
    max-width: 18ch;
}

/* About */
.about-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2.5rem;
}

.about-panel {
    background: var(--ink);
    color: var(--white);
    padding: 2rem;
}

.about-panel h3 {
    color: var(--green);
    margin-bottom: 1.2rem;
}

.about-panel ul {
    list-style: none;
    display: grid;
    gap: 1rem;
}

.about-panel li {
    padding-left: 1rem;
    border-left: 3px solid var(--green);
    color: rgba(255, 255, 255, 0.86);
}

.approach-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 2.5rem;
    align-items: start;
}

.approach-steps {
    list-style: none;
    display: grid;
    gap: 0;
}

.approach-steps li {
    display: grid;
    gap: 0.3rem;
    padding: 1.15rem 0 1.15rem 1.1rem;
    border-bottom: 1px solid var(--line);
    border-left: 3px solid var(--green);
}

.approach-steps li:first-child {
    padding-top: 0.2rem;
}

.approach-steps li:last-child {
    border-bottom: 0;
    padding-bottom: 0.2rem;
}

.approach-steps strong {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 600;
}

.approach-steps span {
    color: var(--ink-soft);
    font-size: 0.95rem;
}

/* Contact */
.contact-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2.5rem;
    align-items: start;
}

.contact-form {
    display: grid;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.55);
    padding: 1.75rem;
    border: 1px solid var(--line);
}

.contact-form label {
    display: grid;
    gap: 0.4rem;
}

.contact-form span {
    font-weight: 600;
    font-size: 0.92rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid rgba(20, 22, 20, 0.18);
    background: var(--white);
    padding: 0.85rem 0.95rem;
    font: inherit;
    color: var(--ink);
    border-radius: 0;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: 2px solid var(--green);
    outline-offset: 1px;
    border-color: transparent;
}

.form-error,
.form-success {
    padding: 0.9rem 1rem;
    font-weight: 600;
}

.form-error {
    background: #fde8e6;
    color: #8a1f14;
}

.form-success {
    background: var(--green-soft);
    color: var(--ink);
}

.contact-aside h2 {
    margin-bottom: 0.6rem;
}

.contact-aside > p {
    color: var(--ink-soft);
    margin-bottom: 1.5rem;
}

.contact-details {
    display: grid;
    gap: 1.2rem;
}

.contact-details dt {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 0.25rem;
}

.contact-details dd {
    margin: 0;
    font-weight: 600;
}

.contact-details a {
    text-decoration: none;
}

.contact-details a:hover {
    color: var(--green-deep);
    text-decoration: underline;
}

.page-error {
    padding: 6rem 0;
}

/* Footer */
.site-footer {
    margin-top: 2rem;
    background: #101210;
    color: rgba(255, 255, 255, 0.78);
    padding: 3.5rem 0 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 2rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    display: inline-block;
    margin-bottom: 0.75rem;
    text-decoration: none;
}

.footer-logo img {
    display: block;
    width: auto;
    height: 2.6rem;
    background: var(--white);
    padding: 0.35rem 0.5rem;
}

.footer-tag {
    color: rgba(255, 255, 255, 0.55);
}

.footer-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 0.85rem;
}

.footer-links ul {
    list-style: none;
    display: grid;
    gap: 0.45rem;
}

.footer-links a,
.footer-contact a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.78);
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--green);
}

.footer-contact {
    display: grid;
    align-content: start;
    gap: 0.35rem;
}

.footer-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 0.85rem;
}

.footer-actions .btn-ghost {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.4);
}

.footer-actions .btn-ghost:hover {
    background: var(--white);
    color: var(--ink);
}

.footer-bottom {
    padding-top: 1.25rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.45);
}

/* Reveal motion */
[data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

[data-reveal].is-visible {
    opacity: 1;
    transform: none;
}

@keyframes hero-zoom {
    from { transform: scale(1.08); }
    to { transform: scale(1.02); }
}

@keyframes rise {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

/* Responsive */
@media (max-width: 900px) {
    .intro-layout,
    .about-layout,
    .approach-grid,
    .contact-layout,
    .portfolio-item,
    .cv-shell,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .cv-aside {
        padding: 1.6rem 1.25rem 1.75rem;
    }

    .cv-main {
        padding: 1.5rem 1.25rem 1.85rem;
    }

    .cv-skills-grid {
        grid-template-columns: 1fr;
    }

    .cv-list-inline {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .services-grid {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        gap: 0.55rem;
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .services-carousel-wrap {
        position: relative;
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .services-carousel {
        display: flex;
        gap: 0.55rem;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        scroll-padding-inline: 0;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior-x: contain;
        border-top: 0;
        padding-bottom: 0.45rem;
        width: 100%;
        max-width: 100%;
        min-width: 0;
        scrollbar-width: auto;
        scrollbar-color: var(--green) rgba(255, 255, 255, 0.16);
    }

    .services-carousel::-webkit-scrollbar {
        height: 6px;
    }

    .services-carousel::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.12);
        border-radius: 6px;
    }

    .services-carousel::-webkit-scrollbar-thumb {
        background: var(--green);
        border-radius: 6px;
    }

    .services-carousel .service-block {
        flex: 0 0 calc((100% - 0.55rem) / 2);
        width: calc((100% - 0.55rem) / 2);
        max-width: calc((100% - 0.55rem) / 2);
        scroll-snap-align: start;
        background: rgba(18, 20, 18, 0.88);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 0.45rem;
        padding: 0.75rem 0.65rem 0.85rem;
    }

    .services-carousel .service-block:nth-child(3n) {
        border-right: 1px solid rgba(255, 255, 255, 0.08);
    }

    .services-carousel-fade {
        display: none;
    }

    .services-dots {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0.5rem;
        width: 100%;
        max-width: 100%;
        margin: 0.35rem 0 0.25rem;
        padding: 0;
        box-sizing: border-box;
    }

    .services-dots button {
        width: 0.55rem;
        height: 0.55rem;
        padding: 0;
        border: 0;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.28);
        cursor: pointer;
        flex: 0 0 0.55rem;
        transition: transform 0.2s var(--ease), background 0.2s var(--ease);
    }

    .services-dots button.is-active {
        background: var(--green);
        transform: scale(1.25);
    }

    .service-block-wide {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        margin: 0;
        box-sizing: border-box;
        background: rgba(18, 20, 18, 0.88);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 0.45rem;
        padding: 0.75rem 0.85rem 0.9rem;
        overflow: hidden;
    }

    .service-block-wide li {
        min-width: 0;
        overflow-wrap: anywhere;
    }

    .service-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.35rem;
        margin-bottom: 0.55rem;
    }

    .service-icon {
        width: 1.15rem;
        height: 1.15rem;
    }

    .service-block h3 {
        font-size: 0.68rem;
        letter-spacing: 0.02em;
        line-height: 1.2;
    }

    .service-block li {
        font-size: 0.72rem;
        padding-left: 0.75rem;
        line-height: 1.35;
    }

    .service-block li::before {
        width: 0.28rem;
        height: 0.28rem;
        top: 0.4em;
    }

    .service-block ul {
        gap: 0.28rem;
    }

    .service-list-split {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.3rem 0.55rem;
        width: 100%;
        max-width: 100%;
    }

    .section-services .wrap {
        width: min(1120px, calc(100% - 1.5rem));
        max-width: 100%;
        min-width: 0;
        overflow-x: clip;
        box-sizing: border-box;
    }

    .services-bg img {
        object-position: 70% center;
        opacity: 1;
    }

    .services-veil {
        background:
            linear-gradient(90deg, rgba(6, 8, 6, 0.97) 0%, rgba(6, 8, 6, 0.95) 60%, rgba(6, 8, 6, 0.78) 74%, rgba(6, 8, 6, 0.35) 88%, rgba(6, 8, 6, 0.12) 100%),
            linear-gradient(180deg, rgba(6, 8, 6, 0.2) 0%, rgba(6, 8, 6, 0.5) 100%);
    }

    .reasons-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.85rem;
    }

    .reasons-grid li {
        min-height: 12rem;
        padding: 1.35rem 1rem 1.25rem;
    }

    .reasons-intro {
        margin-bottom: 2rem;
    }

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

    .material-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .process-timeline {
        grid-template-columns: repeat(3, 1fr);
        row-gap: 1.75rem;
    }

    .process-timeline::before,
    .process-timeline::after {
        display: none;
    }

    .hero-stats {
        width: min(1120px, calc(100% - 1.5rem));
        padding: 0.55rem 0.5rem;
    }

    .hero-stats-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 0.25rem;
    }

    .hero-content {
        margin-left: 1.5rem;
        width: calc(100% - 3rem);
        max-width: none;
        padding-block: 3.5rem;
        padding-bottom: 5rem;
    }

    .hero-title {
        max-width: none;
    }

    .hero-lead {
        max-width: 42ch;
    }
}

@media (max-width: 760px) {
    .service-block-wide .service-list-split {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.28rem 0.45rem;
    }

    .services-dots {
        justify-content: center;
        width: 100%;
    }

    .brand-group:has([data-brand-carousel]) {
        overflow: hidden;
    }

    .brand-grid[data-brand-carousel] {
        display: flex;
        width: max-content;
        gap: 0.75rem;
        overflow: visible;
        scroll-snap-type: none;
        padding-bottom: 0;
        will-change: transform;
        animation: brand-marquee 28s linear infinite;
    }

    .brand-grid[data-brand-carousel].is-paused {
        animation-play-state: paused;
    }

    .brand-grid[data-brand-carousel] li {
        flex: 0 0 clamp(9.5rem, 42vw, 12.5rem);
        width: clamp(9.5rem, 42vw, 12.5rem);
        max-width: none;
        scroll-snap-align: none;
    }

    .section-process {
        overflow-x: clip;
    }

    .section-process .wrap {
        overflow: visible;
    }

    .process-carousel-wrap {
        overflow-x: auto;
        overflow-y: visible;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior-x: contain;
        scrollbar-width: none;
    }

    .process-carousel-wrap::-webkit-scrollbar {
        display: none;
    }

    .process-timeline[data-process-carousel] {
        display: flex;
        width: max-content;
        gap: 1rem;
        grid-template-columns: none;
        padding-top: 0.1rem;
        animation: none;
        will-change: auto;
    }

    .process-timeline[data-process-carousel]::before,
    .process-timeline[data-process-carousel]::after {
        display: block;
        left: 0.85rem;
        right: auto;
        width: calc(100% - 1.7rem);
        top: 0.85rem;
    }

    .process-timeline[data-process-carousel]::after {
        transform: scaleX(1);
    }

    .process-timeline[data-process-carousel] li {
        flex: 0 0 clamp(11rem, 72vw, 16rem);
        width: clamp(11rem, 72vw, 16rem);
        scroll-snap-align: start;
        opacity: 1;
        transform: none;
    }

    .process-timeline[data-process-carousel] .process-marker {
        background: var(--green);
        border-color: var(--green);
        box-shadow: 0 0 0 4px rgba(143, 209, 42, 0.22);
        color: var(--ink);
    }

    .process-timeline[data-process-carousel] .process-marker svg {
        opacity: 1;
    }

    .process-dots {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0.55rem;
        margin-top: 1.25rem;
        padding: 0.45rem 0 0.15rem;
        overflow: visible;
        line-height: 0;
    }

    .process-dots button {
        width: 0.6rem;
        height: 0.6rem;
        padding: 0;
        border: 0;
        border-radius: 50%;
        background: rgba(20, 22, 20, 0.22);
        cursor: pointer;
        flex-shrink: 0;
        transform: none;
    }

    .process-dots button.is-active {
        background: var(--green);
        box-shadow: 0 0 0 3px rgba(143, 209, 42, 0.28);
    }

    .nav-toggle {
        display: inline-flex;
        flex-shrink: 0;
        min-width: 2.4rem;
        min-height: 2.4rem;
        justify-content: center;
        padding: 0.35rem;
    }

    .nav-toggle-label {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
    }

    .header-inner {
        gap: 0.55rem;
        padding-inline: 0.55rem 0.65rem;
        overflow: visible;
    }

    .logo {
        flex: 1 1 auto;
        min-width: 0;
        max-width: calc(100% - 8.5rem);
        height: auto;
    }

    .logo img {
        height: 2.55rem;
        max-width: 100%;
        width: auto;
    }

    .header-tools {
        gap: 0.4rem;
        margin-left: auto;
    }

    .btn-header {
        padding: 0.4rem 0.7rem;
        font-size: 0.8rem;
        min-height: 2.25rem;
    }

    .btn-header-full {
        display: none;
    }

    .btn-header-short {
        display: inline;
    }

    .cta-bar {
        flex-direction: column;
        align-items: flex-start;
        padding: 1.25rem 1.1rem;
    }

    .hero {
        padding-bottom: 5.5rem;
        min-height: auto;
    }

    .hero-content {
        padding-bottom: 2.5rem;
    }

    .hero-stats {
        width: calc(100% - 1rem);
        padding: 0.55rem 0.35rem;
        border-radius: 0.5rem;
    }

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

    .hero-stats-grid li {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.28rem;
        padding: 0.25rem 0.2rem;
    }

    .hero-stats-grid li + li {
        border-left: 1px solid rgba(255, 255, 255, 0.1);
        padding-left: 0.25rem;
    }

    .hero-stat-icon {
        display: grid;
        width: 3.75rem;
        height: 3.75rem;
        padding: 0.35rem;
    }

    .hero-stat-value {
        font-size: 1rem;
        line-height: 1;
    }

    .hero-stat-label {
        margin: 0;
        font-size: 0.62rem;
        letter-spacing: 0.03em;
        line-height: 1.2;
    }

    .hero-stat-text {
        display: none;
    }

    .section-process {
        padding-top: 4.5rem;
    }

    .site-nav {
        position: fixed;
        inset: var(--header-h) 0 auto 0;
        background: rgba(247, 248, 245, 0.98);
        border-bottom: 1px solid var(--line);
        padding: 1rem 1.25rem 1.4rem;
        transform: translateY(-120%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
        margin-left: 0;
    }

    .site-nav.is-open {
        transform: none;
        opacity: 1;
        pointer-events: auto;
    }

    .site-nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.85rem;
    }

    .section {
        padding: 4rem 0;
    }

    .page-hero {
        padding-top: 2.5rem;
    }

    .contact-form {
        padding: 1.25rem;
    }

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

    .material-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem 1rem;
    }

    .process-timeline[data-process-carousel] {
        display: flex;
        grid-template-columns: none;
    }

    .section-services {
        padding: 4rem 0 3.5rem;
        overflow-x: clip;
    }
}

@keyframes brand-marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
    }

    [data-reveal],
    .process-timeline li {
        opacity: 1;
        transform: none;
    }

    .process-timeline::after {
        transform: none;
    }

    .brand-grid[data-brand-carousel] {
        animation: none !important;
        width: auto;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        transform: none;
    }

    .process-timeline[data-process-carousel] {
        animation: none !important;
        width: auto;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        transform: none;
    }
}
