:root {
    --forest: #113b2c;
    --forest-2: #1d5b42;
    --leaf: #84b547;
    --moss: #dfe9cf;
    --earth: #8b6f47;
    --ink: #17201c;
    --muted: #607068;
    --line: #dde5df;
    --paper: #fbfcf8;
    --white: #ffffff;
    --shadow: 0 24px 70px rgba(20, 45, 34, 0.14);
    --radius: 8px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: "Albert Sans", Arial, sans-serif;
    line-height: 1.6;
}

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

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
}

.skip-link {
    position: absolute;
    left: -999px;
    top: 12px;
    z-index: 100;
    background: var(--forest);
    color: var(--white);
    padding: 10px 14px;
}

.skip-link:focus {
    left: 12px;
}

.topbar {
    background: var(--forest);
    color: rgba(255, 255, 255, 0.86);
    font-size: 13px;
}

.topbar__inner {
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.topbar__inner a,
.topbar__inner span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.topbar__inner i {
    color: var(--leaf);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(251, 252, 248, 0.94);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(221, 229, 223, 0.76);
    transition: box-shadow 180ms ease;
}

.site-header.is-scrolled {
    box-shadow: 0 12px 35px rgba(21, 39, 31, 0.08);
}

.nav-shell {
    min-height: 82px;
    display: flex;
    align-items: center;
    gap: 26px;
}

.brand img {
    width: 190px;
    height: auto;
}

.site-nav {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: 14px;
    font-weight: 700;
    color: #2c3833;
}

.site-nav a {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 28px 0;
}

.button i {
    font-size: 0.9em;
}

.site-nav i {
    display: none;
}

.site-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 22px;
    height: 2px;
    background: var(--leaf);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 180ms ease;
}

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

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: var(--radius);
    font-weight: 800;
    line-height: 1;
    transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button--primary,
.button--small {
    background: var(--forest-2);
    color: var(--white);
}

.button--primary:hover,
.button--small:hover {
    background: var(--forest);
}

.button--small {
    min-height: 42px;
    padding-inline: 17px;
}

.button--ghost {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.58);
    background: rgba(255, 255, 255, 0.08);
}

.nav-toggle {
    display: none;
}

.mobile-bottom-nav {
    display: none;
}

.back-to-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 70;
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    background: var(--forest-2);
    color: var(--white);
    box-shadow: 0 16px 38px rgba(17, 59, 44, 0.22);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease, background 180ms ease;
}

.back-to-top:hover {
    background: var(--forest);
    transform: translateY(8px);
}

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

.back-to-top.is-visible:hover {
    transform: translateY(-2px);
}

.hero {
    position: relative;
    min-height: min(720px, calc(100vh - 122px));
    display: grid;
    align-items: center;
    overflow: hidden;
    color: var(--white);
}

.hero-slider {
    display: block;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 650ms ease, visibility 650ms ease;
}

.hero-slide.is-active {
    opacity: 1;
    visibility: visible;
}

.hero__media,
.hero__shade {
    position: absolute;
    inset: 0;
}

.hero__media img,
.page-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__shade {
    background: linear-gradient(90deg, rgba(13, 45, 33, 0.88), rgba(13, 45, 33, 0.56) 48%, rgba(13, 45, 33, 0.16));
}

.hero__content {
    position: relative;
    z-index: 2;
    padding: 92px 0 120px;
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--leaf);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.hero h1,
.page-hero h1 {
    max-width: 790px;
    margin: 0;
    font-size: clamp(36px, 5vw, 64px);
    line-height: 1.02;
    letter-spacing: 0;
}

.hero__lead {
    max-width: 650px;
    margin: 22px 0 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 21px;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.hero-slider__controls {
    position: absolute;
    left: 50%;
    bottom: 28px;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 12px;
    transform: translateX(-50%);
}

.hero-slider__controls button {
    min-height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.48);
    border-radius: var(--radius);
    background: rgba(11, 45, 32, 0.42);
    color: var(--white);
    font: inherit;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.hero-slider__controls > button {
    padding: 0 13px;
}

.hero-slider__dots {
    display: flex;
    gap: 8px;
}

.hero-slider__dots button {
    width: 11px;
    min-height: 11px;
    height: 11px;
    padding: 0;
    border-radius: 50%;
    opacity: 0.68;
}

.hero-slider__dots button.is-active {
    background: var(--leaf);
    border-color: var(--leaf);
    opacity: 1;
}

.section {
    padding: 96px 0;
}

.section--tight {
    padding-top: 0;
}

.section--muted {
    background: #edf3e8;
}

.split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 64px;
    align-items: center;
}

.media-stack {
    position: relative;
    min-height: 520px;
}

.media-stack img {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    object-fit: cover;
}

.media-stack__main {
    width: 72%;
    height: 420px;
}

.media-stack__accent {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 58%;
    height: 310px;
    border: 10px solid var(--paper);
}

.media-stack--about {
    min-height: 460px;
}

.media-stack--about .media-stack__main {
    width: 84%;
    height: 430px;
}

.media-stack__badge {
    position: absolute;
    right: 0;
    bottom: 26px;
    width: 180px;
    height: 180px;
    padding: 18px;
    background: var(--white);
    border: 1px solid var(--line);
}

.section-copy h2,
.section-heading h2,
.contact-panel h2 {
    margin: 0 0 16px;
    color: var(--forest);
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.12;
    letter-spacing: 0;
}

.section-copy p,
.section-heading p,
.contact-panel p {
    color: var(--muted);
    font-size: 17px;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin: 30px 0;
}

.mission-grid article,
.value-list article,
.service-detail-grid article,
.contact-cards article {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 24px;
}

.mission-grid span,
.service-detail-grid span {
    color: var(--leaf);
    font-weight: 800;
}

.mission-grid span {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    margin-bottom: 6px;
    border-radius: 50%;
    background: var(--moss);
    color: var(--forest-2);
    font-size: 13px;
    font-weight: 900;
    box-shadow: inset 0 0 0 1px rgba(29, 91, 66, 0.08);
}

.mission-grid h3,
.value-list h3,
.service-detail-grid h2,
.contact-cards h2 {
    margin: 8px 0 8px;
    color: var(--forest);
    line-height: 1.2;
}

.text-link,
.service-card a,
.footer-grid a {
    color: var(--forest-2);
    font-weight: 800;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 42px;
}

.section-heading:has(p) {
    margin-inline: auto;
    text-align: center;
}

.service-grid,
.project-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

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

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

.service-card,
.project-grid article {
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 18px 50px rgba(25, 58, 43, 0.08);
}

.service-card img,
.project-grid img {
    width: 100%;
    height: 245px;
    object-fit: cover;
}

.service-card div,
.project-grid article {
    padding: 24px;
}

.project-grid article {
    padding: 0 0 24px;
}

.project-grid h2,
.project-grid p {
    margin-inline: 24px;
}

.service-card h3,
.project-grid h2 {
    margin: 0 0 10px;
    color: var(--forest);
    font-size: 24px;
    line-height: 1.15;
}

.service-card h3 {
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-card h3 i {
    display: inline-grid;
    place-items: center;
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--moss);
    color: var(--forest-2);
    font-size: 15px;
}

.service-card p,
.project-grid p {
    color: var(--muted);
}

.compact-list {
    display: grid;
    gap: 8px;
    margin: 12px 0 0;
    padding-left: 20px;
    color: var(--muted);
}

.compact-list li::marker {
    color: var(--leaf);
}

.service-card .compact-list {
    font-size: 15px;
}

.service-card .compact-list + a {
    display: inline-flex;
    margin-top: 16px;
}

.stats-band {
    background: var(--forest);
    color: var(--white);
}

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

.stats div {
    padding: 22px 0;
    border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.stats div:last-child {
    border-right: 0;
}

.stats strong {
    display: block;
    font-size: 38px;
    line-height: 1;
}

.stats span {
    color: rgba(255, 255, 255, 0.76);
}

.contact-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 46px;
    box-shadow: var(--shadow);
}

.contact-panel--image {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    padding: 18px;
}

.contact-panel--image > img {
    width: 100%;
    height: 430px;
    object-fit: cover;
    border-radius: var(--radius);
}

.contact-panel--image > div {
    padding: 28px;
}

.contact-panel--image .button {
    margin-top: 12px;
}

.page-hero {
    position: relative;
    min-height: 520px;
    display: grid;
    align-items: end;
    color: var(--white);
    overflow: hidden;
    background: var(--forest);
}

.page-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(10, 38, 28, 0.86), rgba(10, 38, 28, 0.3));
}

.page-hero img {
    position: absolute;
    inset: 0;
}

.page-hero .container {
    position: relative;
    z-index: 1;
    padding: 92px 0;
}

.page-hero__lead {
    max-width: 720px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 19px;
}

.page-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.breadcrumb-list {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
    font-weight: 700;
}

.breadcrumb-list a:hover {
    color: var(--white);
}

.breadcrumb-list span::before {
    content: "/";
    margin-right: 10px;
    color: var(--leaf);
}

.clients-showcase {
    padding: 26px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 18px 50px rgba(25, 58, 43, 0.08);
}

.clients-showcase img {
    width: min(860px, 100%);
    margin-inline: auto;
}

.profile-highlight-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.profile-highlight-grid article {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 26px;
    box-shadow: 0 14px 40px rgba(25, 58, 43, 0.07);
}

.profile-highlight-grid span {
    display: inline-grid;
    place-items: center;
    width: 46px;
    height: 46px;
    margin-bottom: 18px;
    border-radius: 50%;
    background: var(--moss);
    color: var(--forest-2);
}

.profile-highlight-grid h3 {
    margin: 0 0 10px;
    color: var(--forest);
    font-size: 23px;
    line-height: 1.18;
}

.profile-highlight-grid p {
    margin: 0;
    color: var(--muted);
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.expertise-grid article {
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 18px 50px rgba(25, 58, 43, 0.08);
}

.expertise-grid img {
    width: 100%;
    height: 310px;
    object-fit: cover;
    background: #edf3e8;
}

.expertise-grid h3,
.expertise-grid p {
    margin-inline: 24px;
}

.expertise-grid h3 {
    margin-top: 22px;
    margin-bottom: 8px;
    color: var(--forest);
    font-size: 24px;
    line-height: 1.15;
}

.expertise-grid p {
    margin-bottom: 24px;
    color: var(--muted);
}

.team-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin: 0 0 34px;
}

.team-filter {
    min-height: 44px;
    padding: 0 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    color: var(--forest);
    font: inherit;
    font-weight: 800;
    cursor: pointer;
}

.team-filter:hover,
.team-filter.is-active {
    background: var(--forest-2);
    color: var(--white);
    border-color: var(--forest-2);
}

.team-grid,
.team-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.team-card,
.team-preview-grid article {
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 18px 50px rgba(25, 58, 43, 0.08);
}

.team-card[hidden] {
    display: none;
}

.team-card__top {
    position: relative;
    display: grid;
    justify-items: center;
    padding: 30px 24px 26px;
    background: linear-gradient(135deg, var(--forest), var(--forest-2));
    color: var(--white);
    text-align: center;
}

.team-card__badge {
    position: absolute;
    top: 16px;
    right: 16px;
    max-width: calc(100% - 32px);
    padding: 7px 10px;
    border-radius: 999px;
    background: var(--leaf);
    color: var(--forest);
    font-size: 12px;
    font-weight: 900;
}

.team-card__photo,
.team-card__initials,
.team-preview-grid img,
.team-preview-initials {
    width: 136px;
    height: 136px;
    border-radius: 50%;
    object-fit: cover;
    background: #edf3e8;
}

.team-card__photo,
.team-card__initials {
    margin: 10px 0 18px;
    border: 5px solid rgba(255, 255, 255, 0.28);
}

.team-card__initials,
.team-preview-initials {
    display: grid;
    place-items: center;
    color: var(--forest);
    font-size: 34px;
    font-weight: 900;
}

.team-card h2 {
    margin: 0 0 8px;
    font-size: 24px;
    line-height: 1.15;
}

.team-card__top p {
    margin: 0;
    color: rgba(255, 255, 255, 0.84);
    font-weight: 700;
}

.team-card__body {
    display: grid;
    gap: 24px;
    padding: 26px;
}

.team-card__body h3 {
    margin: 0 0 12px;
    color: var(--forest);
    font-size: 18px;
}

.team-card__body ul {
    display: grid;
    gap: 10px;
    margin: 0;
    padding-left: 20px;
    color: var(--muted);
}

.team-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.team-tags span {
    padding: 8px 11px;
    border-radius: 999px;
    background: #edf3e8;
    color: var(--forest);
    font-size: 13px;
    font-weight: 800;
}

.team-card__experience {
    margin: 0;
    padding: 16px;
    border-radius: var(--radius);
    background: #f4f7f1;
    color: var(--forest);
    font-weight: 800;
}

.team-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-top: 34px;
}

.team-stats div {
    padding: 22px;
    background: var(--forest);
    color: var(--white);
    border-radius: var(--radius);
    text-align: center;
}

.team-stats strong {
    display: block;
    font-size: 38px;
    line-height: 1;
}

.team-stats span {
    color: rgba(255, 255, 255, 0.78);
    font-weight: 700;
}

.team-preview-grid article {
    padding: 24px;
    text-align: center;
}

.team-preview-grid img,
.team-preview-initials {
    margin: 0 auto 18px;
}

.team-preview-grid span {
    color: var(--leaf);
    font-weight: 900;
    font-size: 13px;
    text-transform: uppercase;
}

.team-preview-grid h3 {
    margin: 8px 0;
    color: var(--forest);
    font-size: 24px;
    line-height: 1.15;
}

.team-preview-grid p {
    margin: 0;
    color: var(--muted);
}

.section-action {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.marquee-band {
    overflow: hidden;
    background: var(--forest);
    color: var(--white);
    padding: 28px 0;
}

.marquee-track {
    display: flex;
    width: max-content;
    gap: 34px;
    animation: marquee-slide 28s linear infinite;
}

.marquee-track span {
    color: rgba(255, 255, 255, 0.88);
    font-size: clamp(22px, 3vw, 36px);
    font-weight: 800;
    white-space: nowrap;
}

.marquee-track span::after {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    margin-left: 34px;
    border-radius: 50%;
    background: var(--leaf);
    vertical-align: middle;
}

@keyframes marquee-slide {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.value-list,
.contact-cards {
    display: grid;
    gap: 16px;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.service-detail-grid ul {
    margin: 16px 0 0;
    padding-left: 20px;
    color: var(--muted);
}

.service-detail-grid .text-link {
    display: inline-flex;
    margin-top: 18px;
}

.service-overview-band,
.compliance-snapshot {
    background: var(--forest);
    color: var(--white);
}

.service-overview,
.compliance-snapshot__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    background: rgba(255, 255, 255, 0.14);
}

.service-overview div,
.compliance-snapshot article {
    min-width: 0;
    padding: 26px;
    background: var(--forest);
}

.service-overview strong,
.compliance-snapshot strong {
    display: block;
    color: var(--white);
    font-size: 34px;
    line-height: 1;
}

.service-overview span,
.compliance-snapshot span,
.compliance-snapshot p {
    color: rgba(255, 255, 255, 0.78);
}

.service-overview span,
.compliance-snapshot span {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.compliance-snapshot__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.compliance-snapshot p {
    margin: 10px 0 0;
}

.service-feature-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.service-feature-grid article {
    display: grid;
    min-width: 0;
    gap: 16px;
    align-content: start;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 0 0 24px;
    box-shadow: 0 14px 40px rgba(25, 58, 43, 0.07);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-feature-grid article:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.service-feature-card__image {
    width: 100%;
    height: 190px;
    object-fit: cover;
}

.service-feature-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 0 24px;
}

.service-feature-card__top span {
    display: inline-grid;
    place-items: center;
    flex: 0 0 46px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--moss);
    color: var(--forest-2);
}

.service-feature-card__top strong {
    min-width: 0;
    color: var(--leaf);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.service-feature-grid h2 {
    margin: 0;
    padding: 0 24px;
    color: var(--forest);
    font-size: 25px;
    line-height: 1.15;
}

.service-feature-grid p {
    margin: 0;
    padding: 0 24px;
    color: var(--muted);
}

.service-feature-grid ul {
    display: grid;
    gap: 9px;
    margin: 0;
    padding: 0 24px 0 44px;
    color: var(--muted);
}

.service-feature-card__link {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    align-self: end;
    min-height: 44px;
    margin: 4px 24px 0;
    padding: 0 14px;
    border: 1px solid rgba(29, 91, 66, 0.16);
    border-radius: var(--radius);
    background: #f4f8ef;
    color: var(--forest-2);
    font-weight: 900;
    transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.service-feature-card__link i {
    font-size: 13px;
    transition: transform 180ms ease;
}

.service-feature-card__link:hover {
    border-color: var(--forest-2);
    background: var(--forest-2);
    color: var(--white);
}

.service-feature-card__link:hover i {
    transform: translateX(3px);
}

.section-heading--left {
    margin-inline: 0;
    text-align: left;
}

.compliance-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.34fr);
    gap: 34px;
    align-items: start;
}

.compliance-main {
    min-width: 0;
}

.compliance-sidebar {
    position: sticky;
    top: 112px;
    display: grid;
    gap: 18px;
}

.compliance-alert {
    margin: 0 0 28px;
    padding: 24px;
    border-left: 5px solid var(--leaf);
    border-radius: var(--radius);
    background: var(--forest);
    color: rgba(255, 255, 255, 0.86);
}

.compliance-alert strong {
    display: block;
    margin-bottom: 6px;
    color: var(--white);
    font-size: 18px;
}

.compliance-alert p {
    margin: 0;
}

.compliance-pathway,
.compliance-decision {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 18px;
    margin-bottom: 28px;
}

.compliance-pathway article,
.compliance-mini-card,
.decision-list article {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 22px;
    box-shadow: 0 14px 40px rgba(25, 58, 43, 0.07);
}

.compliance-pathway span {
    color: var(--leaf);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.compliance-pathway h3,
.compliance-decision h2 {
    margin: 8px 0 10px;
    color: var(--forest);
    font-size: 26px;
    line-height: 1.15;
}

.compliance-pathway p,
.compliance-mini-card p,
.compliance-decision p,
.decision-list span {
    margin: 0;
    color: var(--muted);
}

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

.deliverable-grid,
.process-grid,
.resource-grid,
.checklist-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

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

.deliverable-grid article,
.process-grid article,
.resource-grid article,
.checklist-grid article,
.faq-list details {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: 0 14px 40px rgba(25, 58, 43, 0.07);
}

.process-grid article {
    position: relative;
    overflow: hidden;
    padding-top: 28px;
}

.process-grid article::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--leaf), var(--forest-2));
}

.deliverable-grid article > span,
.resource-grid article > span {
    display: inline-grid;
    place-items: center;
    width: 44px;
    height: 44px;
    margin-bottom: 16px;
    border-radius: 50%;
    background: var(--moss);
    color: var(--forest-2);
}

.deliverable-grid h2,
.resource-grid h2,
.checklist-grid h3,
.process-grid h3 {
    margin: 0 0 10px;
    color: var(--forest);
    font-size: 22px;
    line-height: 1.2;
}

.deliverable-grid p,
.resource-grid p,
.process-grid p,
.checklist-grid p {
    margin: 0;
    color: var(--muted);
}

.process-grid span {
    display: inline-grid;
    place-items: center;
    width: 48px;
    height: 48px;
    margin-bottom: 18px;
    border-radius: 50%;
    background: var(--forest-2);
    color: var(--white);
    font-size: 14px;
    font-weight: 900;
    line-height: 1;
    box-shadow: 0 12px 24px rgba(29, 91, 66, 0.18);
}

.process-grid--connected {
    counter-reset: process;
}

.process-grid--connected article {
    overflow: hidden;
}

.process-grid--connected article::after {
    content: "";
    position: absolute;
    top: 52px;
    right: -18px;
    width: 36px;
    height: 2px;
    background: rgba(132, 181, 71, 0.55);
}

.process-grid--connected article:last-child::after {
    display: none;
}

.compliance-mini-card {
    background: #f7faf4;
    box-shadow: none;
}

.compliance-mini-card strong {
    display: block;
    margin-bottom: 8px;
    color: var(--forest);
}

.compliance-decision {
    align-items: start;
}


.decision-list {
    display: grid;
    gap: 12px;
}

.decision-list article {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    box-shadow: none;
}

.decision-list i {
    display: inline-grid;
    place-items: center;
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--moss);
    color: var(--forest-2);
}

.checklist-grid ul {
    display: grid;
    gap: 9px;
    margin: 0;
    padding-left: 20px;
    color: var(--muted);
}

.checklist-grid p + .compact-list {
    margin-top: 14px;
}

.faq-list {
    display: grid;
    gap: 14px;
}

.faq-list .section-heading {
    margin-bottom: 10px;
}

.faq-list summary {
    cursor: pointer;
    color: var(--forest);
    font-size: 18px;
    font-weight: 800;
}

.faq-list p {
    margin: 14px 0 0;
    color: var(--muted);
}

.service-page-layout {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(280px, 0.8fr);
    gap: 34px;
    align-items: start;
}

.service-main,
.service-sidebar {
    min-width: 0;
}

.service-main__hero {
    width: 100%;
    height: 460px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.service-main__intro {
    margin: 34px 0;
}

.service-main__intro h2 {
    max-width: 780px;
    margin: 0 0 16px;
    color: var(--forest);
    font-size: clamp(28px, 3vw, 40px);
    line-height: 1.12;
}

.service-main__intro p {
    max-width: 780px;
    color: var(--muted);
    font-size: 17px;
}

.service-accordion {
    display: grid;
    gap: 14px;
}

.service-accordion details {
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 14px 40px rgba(25, 58, 43, 0.07);
}

.service-accordion summary {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 22px 24px;
    color: var(--forest);
    font-size: 18px;
    font-weight: 800;
    line-height: 1.25;
}

.service-accordion summary::-webkit-details-marker {
    display: none;
}

.service-accordion summary span {
    display: inline-grid;
    place-items: center;
    flex: 0 0 44px;
    height: 44px;
    border-radius: 50%;
    background: #edf3e8;
    color: var(--forest-2);
    font-size: 14px;
}

.service-accordion details p {
    margin: 0;
    padding: 0 24px 24px 84px;
    color: var(--muted);
}

.service-note {
    margin: 28px 0;
    padding: 28px;
    border-radius: var(--radius);
    background: var(--forest);
    color: var(--white);
}

.service-note p {
    margin: 0;
    font-size: 24px;
    font-weight: 800;
}

.service-gallery {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.service-gallery img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    border-radius: var(--radius);
}

.service-sidebar {
    position: sticky;
    top: 112px;
    display: grid;
    gap: 18px;
}

.sidebar-card {
    display: grid;
    gap: 10px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: 0 14px 40px rgba(25, 58, 43, 0.07);
}

.sidebar-card h2 {
    margin: 0 0 8px;
    color: var(--forest);
    font-size: 22px;
}

.sidebar-card a:not(.button) {
    display: block;
    padding: 12px 14px;
    border-radius: var(--radius);
    background: #f4f7f1;
    color: var(--forest);
    font-weight: 800;
}

.sidebar-card a:not(.button):hover,
.sidebar-card a.is-active {
    background: var(--forest-2);
    color: var(--white);
}

.sidebar-card--contact {
    background: var(--forest);
    color: rgba(255, 255, 255, 0.86);
}

.sidebar-card--contact h2 {
    color: var(--white);
}

.sidebar-card--contact a:not(.button) {
    background: rgba(255, 255, 255, 0.09);
    color: var(--white);
}

.sidebar-card--contact .button {
    margin-top: 8px;
    background: var(--leaf);
    color: var(--forest);
}

.contact-layout {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 32px;
}

.contact-form {
    display: grid;
    gap: 16px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
}

.contact-form label {
    display: grid;
    gap: 7px;
    color: var(--forest);
    font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 13px 14px;
    color: var(--ink);
    font: inherit;
    background: #fdfefb;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.contact-info-card {
    min-height: 230px;
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 0 18px 50px rgba(25, 58, 43, 0.08);
}

.contact-info-card span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-bottom: 20px;
    border-radius: 50%;
    background: var(--moss);
    color: var(--forest);
    font-weight: 800;
}

.contact-info-card span i {
    font-size: 18px;
}

.contact-info-card h2 {
    margin: 0 0 14px;
    color: var(--forest);
    font-size: 24px;
}

.contact-info-card p {
    margin: 8px 0;
    color: var(--muted);
    font-weight: 700;
}

.contact-info-card a:hover {
    color: var(--forest-2);
}

.contact-map-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 38px;
    align-items: center;
}

.contact-map {
    overflow: hidden;
    min-height: 540px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--moss);
    box-shadow: var(--shadow);
}

.contact-location-card {
    display: grid;
    align-content: center;
    justify-items: start;
    gap: 18px;
    padding: 44px;
}

.contact-location-card span {
    display: inline-grid;
    place-items: center;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: var(--forest-2);
    color: var(--white);
    font-size: 24px;
}

.contact-location-card h2 {
    margin: 0;
    color: var(--forest);
    font-size: 32px;
    line-height: 1.1;
}

.contact-location-card p {
    max-width: 430px;
    margin: 0;
    color: var(--muted);
    font-size: 18px;
}

.section-heading {
    margin: 0 0 24px;
    color: var(--forest);
    font-size: clamp(28px, 3vw, 40px);
    line-height: 1.12;
    letter-spacing: 0;
}

.contact-form--enhanced {
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.form-alert {
    margin-bottom: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 14px 16px;
    font-weight: 800;
}

.form-alert--success {
    border-color: rgba(29, 91, 66, 0.22);
    background: #edf7e6;
    color: var(--forest);
}

.form-alert--error {
    border-color: rgba(139, 80, 47, 0.28);
    background: #fff3e8;
    color: #77421d;
}

.form-field-hidden {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.form-security-question {
    max-width: 320px;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.projects-portfolio {
    background: linear-gradient(180deg, var(--paper), #eef5ea);
}

.project-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    margin-bottom: 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--line);
    box-shadow: var(--shadow);
}

.project-stats div {
    padding: 26px;
    background: var(--white);
}

.project-stats strong {
    display: block;
    color: var(--forest-2);
    font-size: 36px;
    line-height: 1;
}

.project-stats span {
    display: block;
    margin-top: 8px;
    color: var(--muted);
    font-weight: 800;
}

.project-toolbar,
.project-filter-panel,
.active-project-filters,
.project-table-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
}

.project-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px;
}

.project-filter-group,
.project-filter-panel,
.active-project-filters,
.project-pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.project-filter,
.project-filter-panel button,
.active-project-filters button,
.project-pagination button,
.project-table th button {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #f7faf4;
    color: var(--forest);
    font: inherit;
    font-weight: 800;
    cursor: pointer;
    transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.project-filter,
.project-filter-panel button,
.active-project-filters button,
.project-pagination button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 42px;
    padding: 0 15px;
}

.project-filter:hover,
.project-filter-panel button:hover,
.active-project-filters button:hover,
.project-pagination button:hover:not(:disabled),
.project-filter.is-active,
.project-filter-panel button.is-active,
.project-pagination button.is-active {
    border-color: var(--forest-2);
    background: var(--forest-2);
    color: var(--white);
    transform: translateY(-1px);
}

.project-search {
    display: grid;
    min-width: min(390px, 100%);
    gap: 6px;
    color: var(--forest);
    font-size: 13px;
    font-weight: 800;
}

.project-search input {
    min-height: 44px;
    width: 100%;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 0 14px;
    color: var(--ink);
    font: inherit;
}

.project-search input:focus {
    outline: 3px solid rgba(132, 181, 71, 0.26);
    border-color: var(--leaf);
}

.project-filter-panel,
.active-project-filters {
    margin-top: 16px;
    padding: 18px;
}

.active-project-filters {
    align-items: center;
    box-shadow: none;
}

.active-project-filters span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: var(--radius);
    background: var(--moss);
    color: var(--forest);
    font-size: 14px;
    font-weight: 800;
}

.project-table-card {
    overflow: hidden;
    margin-top: 24px;
}

.project-table-header {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 20px;
    border-bottom: 1px solid var(--line);
}

.project-table-header strong {
    color: var(--forest-2);
}

.project-table-header span {
    color: var(--muted);
    font-size: 14px;
    font-weight: 700;
}

.project-table-wrap {
    overflow-x: auto;
}

.project-table {
    width: 100%;
    min-width: 980px;
    border-collapse: collapse;
}

.project-table th {
    background: var(--forest-2);
    color: var(--white);
    text-align: left;
}

.project-table th,
.project-table td {
    padding: 15px;
    vertical-align: top;
    border-bottom: 1px solid var(--line);
}

.project-table th button {
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    text-align: left;
}

.project-table tbody tr:hover {
    background: rgba(132, 181, 71, 0.09);
}

.project-table td:nth-child(1) {
    width: 95px;
    color: var(--forest);
    font-weight: 800;
}

.project-category,
.project-sector {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 5px 10px;
    border-radius: var(--radius);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.25;
}

.project-category--1 {
    background: #e7f2dc;
    color: var(--forest);
}

.project-category--2 {
    background: #e6f0f7;
    color: #174d6d;
}

.project-category--3 {
    background: #f5ead8;
    color: #6f4b17;
}

.project-sector {
    background: #edf3e8;
    color: var(--forest-2);
}

.project-empty {
    padding: 46px 20px;
    color: var(--muted);
    text-align: center;
    font-weight: 800;
}

.project-pagination {
    justify-content: center;
    margin-top: 22px;
}

.project-pagination button:disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

.site-footer {
    background: #0e2d22;
    color: rgba(255, 255, 255, 0.76);
    padding: 70px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 36px;
}

.footer-logo img {
    width: 210px;
    filter: brightness(0) invert(1);
}

.footer-grid h2 {
    margin: 0 0 18px;
    color: var(--white);
    font-size: 18px;
}

.footer-grid a {
    display: block;
    margin: 9px 0;
    color: rgba(255, 255, 255, 0.86);
}

.social-links {
    display: flex;
    gap: 14px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.social-links i {
    display: inline-grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--leaf);
}

.footer-bottom {
    margin-top: 44px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.13);
    font-size: 14px;
}

@media (max-width: 980px) {
    .topbar {
        display: none;
    }

    .nav-shell {
        min-height: 76px;
    }

    .nav-toggle {
        margin-left: auto;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        min-height: 44px;
        border: 1px solid rgba(29, 91, 66, 0.18);
        border-radius: 999px;
        background: linear-gradient(180deg, var(--white), #f3f8ee);
        padding: 7px 14px 7px 9px;
        color: var(--forest);
        font-weight: 800;
        box-shadow: 0 10px 28px rgba(20, 45, 34, 0.08);
    }

    .nav-toggle__icon {
        display: grid;
        place-items: center;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        background: var(--forest-2);
    }

    .nav-toggle__icon span {
        display: block;
        grid-area: 1 / 1;
        width: 15px;
        height: 2px;
        border-radius: 999px;
        background: var(--white);
        transition: transform 180ms ease, opacity 180ms ease;
    }

    .nav-toggle__icon span:nth-child(1) {
        transform: translateY(-5px);
    }

    .nav-toggle__icon span:nth-child(3) {
        transform: translateY(5px);
    }

    .nav-toggle.is-open .nav-toggle__icon span:nth-child(1) {
        transform: rotate(45deg);
    }

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

    .nav-toggle.is-open .nav-toggle__icon span:nth-child(3) {
        transform: rotate(-45deg);
    }

    .site-nav {
        position: absolute;
        left: 20px;
        right: 20px;
        top: calc(100% + 8px);
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
        padding: 12px;
        background: rgba(255, 255, 255, 0.97);
        border: 1px solid rgba(29, 91, 66, 0.14);
        border-radius: 18px;
        box-shadow: var(--shadow);
        backdrop-filter: blur(18px);
    }

    .site-nav.is-open {
        display: flex;
    }

    .site-nav a {
        padding: 13px 14px;
        border-radius: 12px;
        color: var(--forest);
    }

    .site-nav a i {
        display: inline-grid;
        place-items: center;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        background: #edf3e8;
        color: var(--forest-2);
    }

    .site-nav a:hover,
    .site-nav a.is-active {
        background: #edf3e8;
    }

    .site-nav a::after {
        display: none;
    }

    .nav-shell > .button {
        display: none;
    }

    .split,
    .contact-layout,
    .contact-map-layout,
    .footer-grid,
    .contact-panel--image,
    .service-page-layout,
    .compliance-layout {
        grid-template-columns: 1fr;
    }

    .service-sidebar,
    .compliance-sidebar {
        position: static;
    }

    .service-grid,
    .service-grid--two,
    .service-feature-grid,
    .project-grid,
    .contact-info-grid,
    .project-stats,
    .service-overview,
    .compliance-snapshot__grid,
    .stats,
    .service-detail-grid,
    .expertise-grid,
    .profile-highlight-grid,
    .team-grid,
    .team-preview-grid,
    .team-stats,
    .deliverable-grid,
    .process-grid,
    .resource-grid,
    .checklist-grid,
    .compliance-pathway,
    .compliance-decision {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .process-grid--connected article::after {
        display: none;
    }
}

@media (max-width: 760px) {
    body {
        padding-bottom: calc(88px + env(safe-area-inset-bottom));
    }

    .mobile-bottom-nav {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 80;
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 2px;
        min-height: calc(70px + env(safe-area-inset-bottom));
        padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
        border-top: 1px solid rgba(17, 59, 44, 0.12);
        background: rgba(251, 252, 248, 0.96);
        box-shadow: 0 -10px 30px rgba(17, 59, 44, 0.12);
        backdrop-filter: blur(18px);
    }

    .mobile-bottom-nav a {
        position: relative;
        display: grid;
        justify-items: center;
        align-content: center;
        gap: 4px;
        min-width: 0;
        border-radius: 18px;
        color: var(--muted);
        font-size: 11px;
        font-weight: 800;
        line-height: 1;
        transition: transform 180ms ease, color 180ms ease, background 180ms ease;
    }

    .mobile-bottom-nav a i {
        display: grid;
        place-items: center;
        width: 34px;
        height: 34px;
        border-radius: 50%;
        color: var(--forest-2);
        font-size: 16px;
        transition: transform 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
    }

    .mobile-bottom-nav a.is-active {
        color: var(--forest);
        background: #edf3e8;
    }

    .mobile-bottom-nav a.is-active i {
        background: var(--forest-2);
        color: var(--white);
        box-shadow: none;
        transform: none;
    }

    .back-to-top {
        right: 16px;
        bottom: calc(86px + env(safe-area-inset-bottom));
        z-index: 90;
        width: 46px;
        height: 46px;
    }
}

@media (max-width: 680px) {
    .container {
        width: min(100% - 28px, 1180px);
    }

    .brand img {
        width: 155px;
    }

    .hero {
        min-height: 590px;
    }

    .hero__shade {
        background: linear-gradient(180deg, rgba(13, 45, 33, 0.88), rgba(13, 45, 33, 0.5));
    }

    .hero h1,
    .page-hero h1 {
        font-size: 36px;
    }

    .hero__lead {
        font-size: 17px;
    }

    .hero__content {
        padding: 70px 0 112px;
    }

    .page-hero {
        min-height: 430px;
    }

    .page-hero .container {
        padding: 72px 0;
    }

    .hero-slider__controls {
        bottom: 20px;
        width: calc(100% - 28px);
        justify-content: center;
    }

    .section {
        padding: 64px 0;
    }

    .media-stack {
        min-height: auto;
    }

    .media-stack__main,
    .media-stack__accent,
    .media-stack__badge {
        position: static;
        width: 100%;
        height: auto;
        border: 0;
        margin-bottom: 14px;
    }

    .mission-grid,
    .service-grid,
    .service-grid--two,
    .service-feature-grid,
    .project-grid,
    .service-overview,
    .compliance-snapshot__grid,
    .stats,
    .service-detail-grid,
    .expertise-grid,
    .profile-highlight-grid,
    .team-grid,
    .team-preview-grid,
    .team-stats,
    .deliverable-grid,
    .process-grid,
    .resource-grid,
    .checklist-grid,
    .compliance-pathway,
    .compliance-decision {
        grid-template-columns: 1fr;
    }

    .service-overview div,
    .compliance-snapshot article {
        padding: 22px;
    }

    .page-hero__lead {
        font-size: 17px;
    }

    .stats div {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    }

    .contact-panel {
        display: grid;
        padding: 28px;
    }

    .contact-panel--image > img {
        height: 280px;
    }

    .contact-panel--image > div {
        padding: 10px;
    }

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

    .contact-map {
        min-height: 360px;
        height: 360px;
    }

    .service-main__hero {
        height: 300px;
    }

    .service-accordion summary {
        align-items: flex-start;
        padding: 18px;
        font-size: 16px;
    }

    .service-accordion details p {
        padding: 0 18px 18px;
    }

    .service-gallery {
        grid-template-columns: 1fr;
    }

    .project-toolbar,
    .project-table-header {
        align-items: stretch;
        flex-direction: column;
    }

    .project-stats {
        grid-template-columns: 1fr;
    }
}

/* ================================
   CONTACT FORM ENHANCEMENTS
   ================================ */

/* Honeypot fields - completely hidden */
.form-field-hidden {
    position: absolute !important;
    left: -9999px !important;
    top: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    z-index: -1 !important;
}

/* Security question styling */
.form-security-question {
    max-width: 400px;
    margin-top: 8px;
    padding: 16px 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #f7faf4;
}

.form-security-question span {
    display: block;
    margin-bottom: 8px;
    color: var(--forest);
    font-weight: 700;
    font-size: 15px;
}

.form-security-question input {
    width: 100%;
    max-width: 180px;
    padding: 10px 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    font: inherit;
    background: var(--white);
}

/* Form alert improvements */
.form-alert {
    margin-bottom: 18px;
    padding: 14px 18px;
    border-radius: var(--radius);
    font-weight: 700;
    border-left: 4px solid transparent;
}

.form-alert--success {
    border-color: var(--leaf);
    background: #edf7e6;
    color: var(--forest);
}

.form-alert--error {
    border-color: #d9534f;
    background: #fdf0ed;
    color: #a94442;
}

/* Contact form grid improvements */
.contact-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.contact-form-grid label {
    display: grid;
    gap: 6px;
    color: var(--forest);
    font-weight: 700;
    font-size: 14px;
}

.contact-form-grid input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    font: inherit;
    background: var(--white);
    transition: border-color 180ms ease, box-shadow 180ms ease;
}

.contact-form-grid input:focus,
.contact-form textarea:focus,
.form-security-question input:focus {
    outline: none;
    border-color: var(--leaf);
    box-shadow: 0 0 0 3px rgba(132, 181, 71, 0.15);
}

.contact-form label:has(textarea) {
    display: grid;
    gap: 6px;
    color: var(--forest);
    font-weight: 700;
    font-size: 14px;
}

.contact-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    font: inherit;
    background: var(--white);
    resize: vertical;
    min-height: 140px;
    transition: border-color 180ms ease, box-shadow 180ms ease;
}

.contact-form .button {
    justify-self: start;
    min-width: 180px;
    margin-top: 4px;
}

/* Responsive adjustments */
@media (max-width: 680px) {
    .contact-form-grid {
        grid-template-columns: 1fr;
    }
    
    .form-security-question {
        max-width: 100%;
    }
    
    .contact-form .button {
        width: 100%;
        justify-self: stretch;
    }
}

/* Loading state for submit button */
.contact-form .button[disabled] {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Success animation */
@keyframes fadeSlideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-alert {
    animation: fadeSlideIn 0.4s ease-out;
}
