/* ============================================================
   1. CSS Custom Properties
   ============================================================ */
:root {
    /* Brand Colours */
    --green: #b2d234;
    --green-dark: #91ab28;
    --green-light: #c8e44f;
    --grey: #c7c8c9;
    --grey-mid: #9a9b9c;
    --grey-dark: #4a4b4c;

    /* Neutrals */
    --white: #ffffff;
    --off-white: #f7f8f3;
    --near-white: #f0f1ec;
    --charcoal: #1e1f1a;
    --charcoal-light: #2e2f2a;
    --body-text: #3a3b36;
    --text-muted: #6b6c67;
    --border: #e2e3de;

    /* Typography */
    --font-heading: 'Exo 2', sans-serif;
    --font-body: 'DM Sans', sans-serif;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;

    /* Layout */
    --container-max: 1200px;
    --container-pad: 1.5rem;
    --radius: 3px;
    --radius-md: 6px;

    /* Transitions */
    --trans: 0.25s ease;
    --trans-slow: 0.45s cubic-bezier(0.4, 0, 0.2, 1);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(30,31,26,0.08);
    --shadow-md: 0 6px 24px rgba(30,31,26,0.12);
    --shadow-lg: 0 16px 48px rgba(30,31,26,0.16);

    /* Header height for offset */
    --header-height: 100px;
    --topbar-height: 40px;
}

/* ============================================================
   2. Reset & Base
   ============================================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--body-text);
    background-color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--trans);
}

ul, ol {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: var(--font-body);
}

/* ============================================================
   3. Skip Link
   ============================================================ */
.skip-link {
    position: absolute;
    top: -100px;
    left: 1rem;
    background: var(--green);
    color: var(--charcoal);
    padding: 0.5rem 1rem;
    font-weight: 600;
    z-index: 9999;
    border-radius: var(--radius);
    transition: top var(--trans);
}

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

/* ============================================================
   4. Typography
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.15;
    color: var(--charcoal);
    letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
h4 { font-size: 1.1rem; }

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

.text-accent { color: var(--green-dark); }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }

/* ============================================================
   5. Layout Utilities
   ============================================================ */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-pad);
}

.section {
    padding: var(--space-2xl) 0;
}

.mt-lg { margin-top: var(--space-lg); }
.mt-md { margin-top: var(--space-md); }
.mb-0 { margin-bottom: 0; }

/* ============================================================
   6. Section Header
   ============================================================ */
.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto var(--space-xl);
}

.section-header__label {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--green-dark);
    margin-bottom: 1rem;
}

.section-header__label::before {
    content: '';
    display: block;
    width: 24px;
    height: 2px;
    background: var(--green);
}

.section-header__title {
    margin-bottom: 1rem;
    color: var(--charcoal);
}

.section-header__text {
    color: var(--text-muted);
    font-size: 1.05rem;
}

.section-header--light .section-header__title,
.section-header--light .section-header__text {
    color: var(--white);
}

.section-header--light .section-header__label {
    color: var(--green-light);
}

.section-header--light .section-header__label::before {
    background: var(--green-light);
}

/* ============================================================
   7. Buttons
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius);
    transition: all var(--trans);
    cursor: pointer;
    border: 2px solid transparent;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
    white-space: nowrap;
}

.btn--lg {
    padding: 0.9rem 2.2rem;
    font-size: 0.95rem;
}

.btn--full {
    width: 100%;
    justify-content: center;
}

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

.btn--primary:hover {
    background: var(--green-dark);
    border-color: var(--green-dark);
    color: var(--charcoal);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(178, 210, 52, 0.35);
}

.btn--outline {
    background: transparent;
    color: var(--green-dark);
    border-color: var(--green);
}

.btn--outline:hover {
    background: var(--green);
    color: var(--charcoal);
    transform: translateY(-2px);
}

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

.btn--ghost:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.7);
    transform: translateY(-2px);
}

.btn--white {
    background: var(--white);
    color: var(--charcoal);
    border-color: var(--white);
}

.btn--white:hover {
    background: var(--off-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.btn--outline-white:hover {
    background: rgba(255,255,255,0.12);
    border-color: var(--white);
    transform: translateY(-2px);
}

/* ============================================================
   8. Top Bar
   ============================================================ */
.top-bar {
    background: var(--charcoal);
    color: var(--grey);
    height: var(--topbar-height);
    font-size: 0.8rem;
    font-weight: 400;
    position: relative;
    z-index: 200;
    display: flex;
}

.top-bar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.top-bar__left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.top-bar__item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--grey);
    transition: color var(--trans);
}

.top-bar__item:hover {
    color: var(--green);
}

.top-bar__item svg {
    color: var(--green);
    flex-shrink: 0;
}

.top-bar__right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.top-bar__badge {
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--grey-mid);
    border-left: 2px solid var(--green);
    padding-left: 0.75rem;
}

.top-bar__social {
    color: var(--grey);
    transition: color var(--trans);
    line-height: 1;
}

.top-bar__social:hover {
    color: var(--green);
}

/* ============================================================
   9. Header
   ============================================================ */
.header {
    background: var(--white);
    height: var(--header-height);
    position: sticky;
    top: 0;
    z-index: 190;
    box-shadow: 0 1px 0 var(--border);
    transition: box-shadow var(--trans), background var(--trans);
}

.header.is-scrolled {
    box-shadow: var(--shadow-md);
}

.header__inner {
    display: flex;
    align-items: center;
    gap: 2rem;
    height: var(--header-height);
}

.header__logo {
    flex-shrink: 0;
}

.header__logo-img {
    height: 72px;
    width: auto;
}

.header__nav {
    flex: 1;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-menu__item {
    position: relative;
}

.nav-menu__link {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.88rem;
    letter-spacing: 0.03em;
    color: var(--grey-dark);
    padding: 0.5rem 0.85rem;
    border-radius: var(--radius);
    transition: color var(--trans), background var(--trans);
    position: relative;
}

.nav-menu__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--green);
    transition: width var(--trans);
    border-radius: 1px;
}

.nav-menu__link:hover,
.nav-menu__link.is-active {
    color: var(--charcoal);
}

.nav-menu__link:hover::after,
.nav-menu__link.is-active::after {
    width: calc(100% - 1.7rem);
}

/* Dropdown */
.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    background: var(--white);
    border: 1px solid var(--border);
    border-top: 3px solid var(--green);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    min-width: 200px;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transition: all var(--trans);
    z-index: 100;
}

.dropdown-menu li a {
    display: block;
    padding: 0.6rem 1.25rem;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.85rem;
    color: var(--body-text);
    transition: background var(--trans), color var(--trans);
    border-left: 3px solid transparent;
}

.dropdown-menu li a:hover {
    background: var(--off-white);
    color: var(--charcoal);
    border-left-color: var(--green);
}

.header__cta {
    flex-shrink: 0;
    margin-left: auto;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
    margin-left: 0.5rem;
    flex-shrink: 0;
}

.hamburger__line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--charcoal);
    transition: all var(--trans);
    border-radius: 2px;
}

.hamburger.is-open .hamburger__line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.is-open .hamburger__line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.is-open .hamburger__line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ============================================================
   10. Mobile Navigation
   ============================================================ */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    max-width: 90vw;
    height: 100vh;
    background: var(--charcoal);
    z-index: 300;
    transition: right var(--trans-slow);
    overflow-y: auto;
}

.mobile-nav.is-open {
    right: 0;
}

.mobile-nav__inner {
    padding: 5rem 2rem 3rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.mobile-nav__menu {
    margin-bottom: 2rem;
}

.mobile-nav__menu li {
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.mobile-nav__link {
    display: block;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--white);
    padding: 1rem 0;
    transition: color var(--trans);
    letter-spacing: 0.02em;
}

.mobile-nav__link:hover {
    color: var(--green);
}

.mobile-nav__sub {
    padding: 0.25rem 0 0.75rem 1rem;
}

.mobile-nav__sub li a {
    display: block;
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 0.9rem;
    color: var(--grey);
    padding: 0.4rem 0;
    transition: color var(--trans);
    border-left: 2px solid transparent;
    padding-left: 0.75rem;
}

.mobile-nav__sub li a:hover {
    color: var(--green);
    border-left-color: var(--green);
}

.mobile-nav__cta {
    margin-bottom: 1.5rem;
}

.mobile-nav__contact {
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.mobile-nav__contact-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 1rem;
    color: var(--green);
    padding: 0.5rem 0;
}

.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 290;
    opacity: 0;
    visibility: hidden;
    transition: all var(--trans-slow);
    backdrop-filter: blur(2px);
}

.mobile-nav-overlay.is-active {
    opacity: 1;
    visibility: visible;
}

/* ============================================================
   11. Hero Section
   ============================================================ */
.hero {
    background: var(--charcoal);
    color: var(--white);
    min-height: calc(90vh - var(--header-height) - var(--topbar-height));
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Diagonal geometric pattern overlay */
.hero__bg-pattern {
  position: absolute;
  inset: 0;
  background-image: url(/media/wkuhqjsa/home-bg.jpg);
  background-size: cover;
  background-position: center;
  pointer-events: none;
  opacity: .4;
}

/* Right-side diagonal accent block */
.hero::before {
    content: '';
    position: absolute;
    top: -5%;
    right: -8%;
    width: 55%;
    height: 120%;
    background: linear-gradient(135deg, var(--charcoal-light) 0%, rgba(46,47,42,0.95) 100%);
    clip-path: polygon(12% 0, 100% 0, 100% 100%, 0% 100%);
    pointer-events: none;
}

/* Bottom diagonal cut */
.hero__diagonal-cut {
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 80px;
    background: var(--white);
    clip-path: polygon(0 80px, 100% 0, 100% 80px);
    z-index: 2;
}

.hero .container {
    position: relative;
    z-index: 3;
    padding-top: 5rem;
    padding-bottom: 6rem;
}

.hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero__label {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 1.5rem;
}

.hero__label-line {
    display: inline-block;
    width: 32px;
    height: 2px;
    background: var(--green);
    flex-shrink: 0;
}

.hero__title {
    color: var(--white);
    line-height: 1.05;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero__title-accent {
    color: var(--green);
    display: block;
}

.hero__intro {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.7);
    font-weight: 300;
    margin-bottom: 2.5rem;
    max-width: 520px;
}

.hero__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero__stats {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.hero__stat {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.hero__stat-number {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--green);
    line-height: 1;
}

.hero__stat-label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.55);
    font-weight: 300;
    letter-spacing: 0.03em;
}

.hero__stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.15);
    flex-shrink: 0;
}

/* Hero Visual */
.hero__visual {
    position: relative;
    z-index: 4;
}

.hero__image-frame {
    position: relative;
}

/* Clipped-corner frame around the image */
.hero__image-placeholder {
    background: linear-gradient(135deg, var(--charcoal-light), rgba(178,210,52,0.1));
    border: 1px solid rgba(178,210,52,0.2);
    aspect-ratio: 4/3;
    clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 24px 100%, 0 calc(100% - 24px));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero__placeholder-inner {
    text-align: center;
    color: rgba(255,255,255,0.25);
}

.hero__placeholder-inner p {
    font-size: 0.8rem;
    margin-top: 0.75rem;
    font-family: var(--font-heading);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.hero__image-badge {
    position: absolute;
    bottom: -1.5rem;
    left: -1.5rem;
    background: var(--green);
    color: var(--charcoal);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.05em;
    padding: 0.6rem 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}

/* ============================================================
   12. Trust Strip
   ============================================================ */
.trust-strip {
    background: var(--off-white);
    border-bottom: 1px solid var(--border);
    padding: 1.75rem 0;
}

.trust-strip__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.trust-strip__item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 0.03em;
    color: var(--grey-dark);
}

.trust-strip__item svg {
    color: var(--green-dark);
    flex-shrink: 0;
}

.trust-strip__divider {
    width: 1px;
    height: 28px;
    background: var(--border);
}

/* ============================================================
   13. Services Section
   ============================================================ */
.services-section {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

/* Large background shape — diagonal parallelogram */
.services-section__bg-shape {
    position: absolute;
    top: -100px;
    right: -200px;
    width: 700px;
    height: 900px;
    background: var(--off-white);
    clip-path: polygon(20% 0, 100% 0, 80% 100%, 0% 100%);
    pointer-events: none;
    z-index: 0;
}

@media(max-width:767px){
    .services-section__bg-shape {
        display: none;
    }
}

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

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    position: relative;
    overflow: hidden;
    transition: all var(--trans-slow);
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--green);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--trans-slow);
}

.service-card:hover {
    border-color: rgba(178,210,52,0.4);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    text-decoration: none;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card__icon-wrap {
    width: 60px;
    height: 60px;
    background: var(--off-white);
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
    color: var(--green-dark);
    flex-shrink: 0;
    transition: background var(--trans), color var(--trans);
}

.service-card:hover .service-card__icon-wrap {
    background: var(--green);
    color: var(--charcoal);
}

.service-card__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.service-card__title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--charcoal);
}

.service-card__text {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    flex: 1;
    margin: 0;
}

.service-card__link {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--green-dark);
    margin-top: 0.75rem;
    transition: gap var(--trans);
}

.service-card:hover .service-card__link {
    gap: 0.7rem;
}

.service-card__accent {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, transparent 50%, rgba(178,210,52,0.06) 50%);
    pointer-events: none;
}

/* ============================================================
   14. About Split Section
   ============================================================ */
.about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 580px;
}

.about-split__image-col {
    background: var(--charcoal-light);
    position: relative;
    overflow: hidden;
}

.about-split__image-col::after {
    content: '';
    position: absolute;
    top: 0;
    right: -1px;
    bottom: 0;
    width: 80px;
    background: var(--white);
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
    z-index: 2;
}

.about-split__image-wrap {
    position: relative;
    height: 100%;
    min-height: 500px;
}

.about-split__img-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, var(--charcoal-light), var(--charcoal));
}

.about-split__placeholder-inner {
    text-align: center;
    color: rgba(255,255,255,0.2);
}

.about-split__placeholder-inner p {
    font-size: 0.8rem;
    margin-top: 0.75rem;
    font-family: var(--font-heading);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.about-split__image-tag {
    position: absolute;
    bottom: 2rem;
    right: 2.5rem;
    background: var(--green);
    color: var(--charcoal);
    padding: 0.75rem 1.25rem;
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 700;
    z-index: 3;
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.about-split__image-tag strong {
    display: block;
}

.about-split__image-tag span {
    font-weight: 400;
    font-size: 0.72rem;
    opacity: 0.75;
}

.about-split__content-col {
    background: var(--white);
    display: flex;
    align-items: center;
}

.about-split__content {
    padding: 4rem 3.5rem 4rem 4.5rem;
    max-width: 560px;
}

.about-split__title {
    margin-bottom: 1.25rem;
}

.about-split__text {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.about-split__checklist {
    margin: 1.75rem 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.about-split__checklist li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--body-text);
}

.checklist__icon {
    width: 22px;
    height: 22px;
    background: var(--green);
    color: var(--charcoal);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    clip-path: polygon(0 0, calc(100% - 5px) 0, 100% 5px, 100% 100%, 5px 100%, 0 calc(100% - 5px));
}

/* ============================================================
   15. Process Section
   ============================================================ */
.process-section {
    background: var(--off-white);
    position: relative;
    overflow: hidden;
}

.process-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: var(--charcoal);
    clip-path: polygon(0 100%, 100% 0, 100% 100%);
}

.process-steps {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    padding-bottom: 2rem;
}

.process-step {
    flex: 1;
    min-width: 200px;
    max-width: 260px;
    background: var(--white);
    border: 1px solid var(--border);
    padding: 2rem 1.5rem;
    position: relative;
    clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
}

.process-step__number {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 3rem;
    color: var(--green);
    line-height: 1;
    margin-bottom: 0.75rem;
    opacity: 0.9;
}

.process-step__title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
}

.process-step__text {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

.process-step__connector {
    color: var(--green-dark);
    opacity: 0.6;
    flex-shrink: 0;
}

/* ============================================================
   16. Projects Teaser
   ============================================================ */
.projects-teaser {
    background: var(--charcoal);
    color: var(--white);
    position: relative;
    overflow: hidden;
    padding: var(--space-2xl) 0 calc(var(--space-2xl) + 2rem);
}

.projects-teaser__diagonal {
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 80px;
    background: var(--white);
    clip-path: polygon(0 80px, 100% 20px, 100% 80px);
}

.projects-teaser .section-header__text {
    color: rgba(255,255,255,0.6);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.project-card {
    background: var(--charcoal-light);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform var(--trans-slow), box-shadow var(--trans-slow);
    clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 0 100%);
}

.project-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.project-card__image {
    aspect-ratio: 4/3;
    position: relative;
    overflow: hidden;
}

.project-card__img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, rgba(178,210,52,0.08), rgba(255,255,255,0.03));
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.2);
    min-height: 200px;
}

.project-card__tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--green);
    color: var(--charcoal);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.3rem 0.75rem;
    clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 6px, 100% 100%, 6px 100%, 0 calc(100% - 6px));
}

.project-card__info {
    padding: 1.25rem 1.5rem;
}

.project-card__title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.project-card__location {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.45);
    font-weight: 300;
}

/* ============================================================
   17. Testimonials
   ============================================================ */
.testimonials-section {
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.testimonial-card {
    background: var(--off-white);
    border: 1px solid var(--border);
    border-top: 3px solid var(--green);
    padding: 2rem;
    position: relative;
    clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
    transition: box-shadow var(--trans), transform var(--trans);
}

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

.testimonial-card__quote-mark {
    font-family: Georgia, serif;
    font-size: 4rem;
    line-height: 1;
    color: var(--green);
    margin-bottom: -0.5rem;
    display: block;
    opacity: 0.7;
}

.testimonial-card__text {
    font-size: 0.9rem;
    color: var(--body-text);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.testimonial-card__author-initial {
    width: 38px;
    height: 38px;
    background: var(--green);
    color: var(--charcoal);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
    flex-shrink: 0;
}

.testimonial-card__author strong {
    display: block;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--charcoal);
}

.testimonial-card__author span {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.testimonial-card__stars {
    color: var(--green-dark);
    font-size: 0.9rem;
    letter-spacing: 0.1em;
}

/* ============================================================
   18. Coverage Section
   ============================================================ */
.coverage-section {
    background: var(--off-white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: var(--space-2xl) 0;
}

.coverage-section__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.coverage-section__title {
    margin-bottom: 1rem;
    line-height: 1.2;
}

.coverage-section__text {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.coverage-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.4rem 1.5rem;
    margin-bottom: 2rem;
}

.coverage-list li {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.88rem;
    color: var(--body-text);
    padding-left: 1rem;
    position: relative;
}

.coverage-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 6px;
    height: 6px;
    background: var(--green);
}

.coverage-section__map-placeholder {
    background: var(--white);
    border: 1px solid var(--border);
    aspect-ratio: 1;
    max-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(0 0, calc(100% - 32px) 0, 100% 32px, 100% 100%, 32px 100%, 0 calc(100% - 32px));
    width: 100%;
}

.coverage-map-inner {
    text-align: center;
    color: var(--grey);
}

.coverage-map-inner p {
    font-size: 0.8rem;
    margin-top: 0.75rem;
    font-family: var(--font-heading);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--grey-mid);
}

/* ============================================================
   19. CTA Banner
   ============================================================ */
.cta-banner {
    background: var(--charcoal);
    color: var(--white);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(178,210,52,0.12) 0%, transparent 60%);
    pointer-events: none;
}

.cta-banner__diagonal {
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(135deg, rgba(178,210,52,0.08), transparent);
    clip-path: polygon(0 0, 100% 0, 70% 100%, 0 100%);
}

.cta-banner__inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
}

.cta-banner__title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--white);
    margin-bottom: 0.5rem;
}

.cta-banner__text {
    color: rgba(255,255,255,0.65);
    font-size: 0.95rem;
    max-width: 520px;
    margin: 0;
}

.cta-banner__actions {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
    flex-wrap: wrap;
}

/* ============================================================
   20. Footer
   ============================================================ */
.footer {
    background: var(--charcoal);
    color: var(--grey);
}

.footer__top-accent {
    height: 3px;
    background: linear-gradient(90deg, var(--green) 0%, var(--green-dark) 50%, transparent 100%);
    margin-bottom: 4rem;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer__logo img {
    height: 48px;
    width: auto;
    margin-bottom: 1.25rem;
    filter: brightness(0) invert(1);
}

.footer__tagline {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer__social {
    display: flex;
    gap: 0.75rem;
}

.footer__social-link {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--grey);
    transition: all var(--trans);
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}

.footer__social-link:hover {
    background: var(--green);
    color: var(--charcoal);
}

.footer__heading {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--green);
    display: inline-block;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer__links li a {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.5);
    transition: color var(--trans);
    padding-left: 0.75rem;
    position: relative;
}

.footer__links li a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 5px solid var(--green);
    opacity: 0;
    transition: opacity var(--trans);
}

.footer__links li a:hover {
    color: var(--white);
}

.footer__links li a:hover::before {
    opacity: 1;
}

.footer__contact-list {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.footer__contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.5);
}

.footer__contact-list li svg {
    color: var(--green);
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.footer__contact-list a {
    color: rgba(255,255,255,0.5);
    transition: color var(--trans);
}

.footer__contact-list a:hover {
    color: var(--green);
}

.footer__bottom {
    padding: 1.5rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer__copyright,
.footer__credit {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.3);
    margin: 0;
}

.footer__credit a {
    color: var(--green);
}

.footer__legal {
    display: flex;
    gap: 1.5rem;
}

.footer__legal a {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.35);
    transition: color var(--trans);
}

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

/* ============================================================
   21. Back to Top
   ============================================================ */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 44px;
    height: 44px;
    background: var(--green);
    color: var(--charcoal);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all var(--trans);
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}

.back-to-top:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
}

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

/* ============================================================
   22. Animations
   ============================================================ */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.animate-fade-up {
    animation: fadeUp 0.7s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.animate-fade-up:nth-child(2) { animation-delay: 0.1s; }
.animate-fade-up:nth-child(3) { animation-delay: 0.2s; }
.animate-fade-up:nth-child(4) { animation-delay: 0.3s; }

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.is-revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ============================================================
   23. Responsive — Tablet (max 1024px)
   ============================================================ */
@media (max-width: 1024px) {
    .hero__inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero__visual {
        display: none;
    }

    .hero::before {
        display: none;
    }

    .hero__intro {
        max-width: 100%;
    }

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

    .about-split {
        grid-template-columns: 1fr;
    }

    .about-split__image-col {
        min-height: 300px;
    }

    .about-split__image-col::after {
        display: none;
    }

    .about-split__content {
        padding: 3rem 2rem;
        max-width: 100%;
    }

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

    .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .footer__col--brand {
        grid-column: 1 / -1;
    }

    .coverage-section__inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .coverage-section__map-placeholder {
        max-height: 300px;
        aspect-ratio: 2/1;
    }
}

/* ============================================================
   24. Responsive — Mobile (max 768px)
   ============================================================ */
@media (max-width: 768px) {
    :root {
        --topbar-height: 0px;
        --header-height: 85px;
    }

    .top-bar {
        display: none;
    }

    .header__nav,
    .header__cta {
        display: none;
    }

    .hamburger {
        display: flex;
        margin-left: auto;
    }

    .hero {
        min-height: 70vh;
    }

    .hero .container {
        padding-top: 3.5rem;
        padding-bottom: 5rem;
    }

    .hero__stats {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .hero__stat-divider {
        display: none;
    }

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

    .process-steps {
        flex-direction: column;
        align-items: stretch;
    }

    .process-step {
        min-width: unset;
        max-width: unset;
    }

    .process-step__connector {
        transform: rotate(90deg);
        align-self: center;
    }

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

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

    .cta-banner__inner {
        flex-direction: column;
        text-align: center;
    }

    .cta-banner__actions {
        justify-content: center;
    }

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

    .footer__col--brand {
        grid-column: auto;
    }

    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }

    .trust-strip__divider {
        display: none;
    }

    .trust-strip__inner {
        gap: 1rem 2rem;
    }

    .coverage-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero__actions {
        flex-direction: column;
    }

    .hero__actions .btn {
        justify-content: center;
    }

    .about-split__content {
        padding: 2.5rem 1.5rem;
    }
}

/* ============================================================
   25. Page Banner (for inner pages)
   ============================================================ */
.page-banner {
    background: var(--charcoal);
    color: var(--white);
    padding: 4rem 0 5rem;
    position: relative;
    overflow: hidden;
}

.page-banner__diagonal {
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 60px;
    background: var(--white);
    clip-path: polygon(0 60px, 100% 0, 100% 60px);
}

.page-banner__label {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 0.75rem;
}

.page-banner__label::before {
    content: '';
    display: block;
    width: 24px;
    height: 2px;
    background: var(--green);
}

.page-banner__title {
    color: var(--white);
    margin-bottom: 0.75rem;
}

.page-banner__intro {
    color: rgba(255,255,255,0.65);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    font-family: var(--font-heading);
    margin-bottom: 1.5rem;
}

.breadcrumb a {
    color: rgba(255,255,255,0.45);
    transition: color var(--trans);
}

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

.breadcrumb__sep {
    color: rgba(255,255,255,0.2);
    font-size: 0.7rem;
}

.breadcrumb__current {
    color: var(--green);
}

/* ============================================================
   26. Utility Classes
   ============================================================ */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.icon {
    flex-shrink: 0;
}

.prose p { margin-bottom: 1rem; }
.prose h2 { margin: 2rem 0 1rem; }
.prose h3 { margin: 1.5rem 0 0.75rem; }
.prose ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1rem; }
.prose li { margin-bottom: 0.3rem; }

/* ============================================================
   INNER PAGE STYLES — appended to jm-style.css
   ============================================================ */

/* ============================================================
   About Page
   ============================================================ */
.about-intro {
    overflow: hidden;
}

.about-intro__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-intro__title {
    margin-bottom: 1.25rem;
}

.about-intro__content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.about-intro__stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.about-stat {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.about-stat__number {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 2.2rem;
    color: var(--green-dark);
    line-height: 1;
}

.about-stat__label {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 300;
}

.about-intro__image {
    position: relative;
}

.about-intro__img-frame {
    position: relative;
}

.about-intro__accent-block {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    background: var(--green);
    color: var(--charcoal);
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 600;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
    z-index: 2;
}

.about-intro__accent-block strong {
    display: block;
    font-size: 0.9rem;
}

.about-intro__accent-block span {
    font-weight: 300;
    font-size: 0.75rem;
    opacity: 0.8;
}

/* Values Section */
.values-section {
    background: var(--off-white);
    position: relative;
}

.values-section__bg {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        -55deg,
        transparent,
        transparent 40px,
        rgba(178,210,52,0.03) 40px,
        rgba(178,210,52,0.03) 42px
    );
    pointer-events: none;
}

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

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.value-card {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 2rem 1.5rem;
    clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
    transition: transform var(--trans), box-shadow var(--trans);
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.value-card__icon {
    width: 56px;
    height: 56px;
    background: var(--off-white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-dark);
    margin-bottom: 1.25rem;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
    border: 1px solid var(--border);
    transition: background var(--trans), color var(--trans);
}

.value-card:hover .value-card__icon {
    background: var(--green);
    color: var(--charcoal);
}

.value-card__title {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--charcoal);
}

.value-card__text {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.team-card {
    background: var(--white);
    border: 1px solid var(--border);
    overflow: hidden;
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 0 100%);
    transition: transform var(--trans), box-shadow var(--trans);
}

.team-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.team-card__image {
    aspect-ratio: 1;
    background: var(--off-white);
    border-bottom: 3px solid var(--green);
}

.team-card__info {
    padding: 1.5rem;
}

.team-card__name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--charcoal);
    margin-bottom: 0.2rem;
}

.team-card__role {
    display: block;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--green-dark);
    margin-bottom: 0.75rem;
}

.team-card__bio {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

/* Accreditations */
.accreditations-section {
    background: var(--charcoal);
    padding: var(--space-2xl) 0;
}

.accreditations-section__inner {
    text-align: center;
}

.accreditations-section__title {
    color: var(--white);
    margin-bottom: var(--space-xl);
}

.accreditations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.accreditation-item {
    border: 1px solid rgba(255,255,255,0.08);
    padding: 2rem 1.5rem;
    clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
    text-align: center;
}

.accreditation-item__icon {
    color: var(--green);
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
}

.accreditation-item h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.accreditation-item p {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.45);
    margin: 0;
}

/* ============================================================
   Services Listing Page
   ============================================================ */
.services-listing__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.service-listing-card {
    display: block;
    background: var(--white);
    border: 1px solid var(--border);
    overflow: hidden;
    clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 24px 100%, 0 calc(100% - 24px));
    transition: transform var(--trans-slow), box-shadow var(--trans-slow);
    text-decoration: none;
}

.service-listing-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.service-listing-card__image {
    aspect-ratio: 16/9;
    overflow: hidden;
    position: relative;
    background: var(--off-white);
}

.service-listing-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-listing-card:hover .service-listing-card__image img {
    transform: scale(1.05);
}

.service-listing-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(30,31,26,0.4), transparent);
    transition: opacity var(--trans);
}

.service-listing-card:hover .service-listing-card__overlay {
    opacity: 0.8;
}

.service-listing-card__content {
    padding: 2rem;
}

.service-listing-card__title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.35rem;
    color: var(--charcoal);
    margin-bottom: 0.75rem;
}

.service-listing-card__text {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

.service-listing-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--green-dark);
    transition: gap var(--trans);
}

.service-listing-card:hover .service-listing-card__cta {
    gap: 0.8rem;
}

/* Why Strip */
.why-strip {
    background: var(--charcoal);
    padding: 3rem 0;
}

.why-strip__inner {
    display: flex;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.why-strip__heading {
    flex-shrink: 0;
}

.why-strip__heading h2 {
    color: var(--white);
    font-size: 1.5rem;
}

.why-strip__points {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem 2rem;
    flex: 1;
}

.why-point {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.75);
}

.why-point__icon {
    width: 24px;
    height: 24px;
    background: var(--green);
    color: var(--charcoal);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    clip-path: polygon(0 0, calc(100% - 5px) 0, 100% 5px, 100% 100%, 5px 100%, 0 calc(100% - 5px));
}

/* ============================================================
   Service Item / Detail Page
   ============================================================ */
.service-detail__grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 3rem;
    align-items: start;
}

.service-detail__hero-image {
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 2.5rem;
    clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 24px 100%, 0 calc(100% - 24px));
}

.service-detail__hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.service-detail__body {
    margin-bottom: 3rem;
}

.service-detail__gallery-title,
.news-article__gallery-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--green);
    display: inline-block;
}

/* Sidebar Boxes */
.sidebar-box {
    background: var(--off-white);
    border: 1px solid var(--border);
    padding: 1.75rem;
    margin-bottom: 1.5rem;
    clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
}

.sidebar-box--cta {
    background: var(--charcoal);
    border-color: transparent;
}

.sidebar-box--cta .sidebar-box__title {
    color: var(--white);
}

.sidebar-box--cta p {
    color: rgba(255,255,255,0.6);
    font-size: 0.88rem;
    margin-bottom: 1.25rem;
}

.sidebar-box__title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--charcoal);
    margin-bottom: 1rem;
    padding-bottom: 0.6rem;
    border-bottom: 2px solid var(--green);
}

.sidebar-box__tel {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    color: var(--green);
    margin-top: 1rem;
    transition: color var(--trans);
}

.sidebar-box__tel:hover {
    color: var(--green-light);
}

.sidebar-checklist {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.sidebar-checklist li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.85rem;
    color: var(--body-text);
}

.sidebar-links {
    display: flex;
    flex-direction: column;
}

.sidebar-links li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.88rem;
    color: var(--body-text);
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--border);
    transition: color var(--trans);
}

.sidebar-links li:last-child a {
    border-bottom: none;
}

.sidebar-links li a:hover {
    color: var(--green-dark);
}

.sidebar-links li a svg {
    color: var(--green);
    flex-shrink: 0;
}

/* ============================================================
   Gallery Page
   ============================================================ */
.gallery-filter-bar {
    background: var(--off-white);
    border-bottom: 1px solid var(--border);
    padding: 1rem 0;
    position: sticky;
    top: var(--header-height);
    z-index: 50;
}

.gallery-filter-bar__inner {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.gallery-filter-bar__label {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    flex-shrink: 0;
}

.gallery-filter-bar__buttons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.filter-btn {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.45rem 1rem;
    border: 1px solid var(--border);
    background: var(--white);
    color: var(--text-muted);
    cursor: pointer;
    transition: all var(--trans);
    clip-path: polygon(0 0, calc(100% - 7px) 0, 100% 7px, 100% 100%, 7px 100%, 0 calc(100% - 7px));
}

.filter-btn:hover,
.filter-btn.is-active {
    background: var(--green);
    color: var(--charcoal);
    border-color: var(--green);
}

.gallery-section {
    background: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
    background: var(--off-white);
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item__overlay {
    position: absolute;
    inset: 0;
    background: rgba(30,31,26,0.5);
    opacity: 0;
    transition: opacity var(--trans);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item:hover .gallery-item__overlay {
    opacity: 1;
}

.gallery-item__zoom {
    width: 52px;
    height: 52px;
    background: var(--green);
    color: var(--charcoal);
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
    transform: scale(0.8);
    transition: transform var(--trans);
}

.gallery-item:hover .gallery-item__zoom {
    transform: scale(1);
}

/* ============================================================
   News Page
   ============================================================ */
.news-featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--white);
    border: 1px solid var(--border);
    overflow: hidden;
    margin-bottom: 3rem;
    clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 24px 100%, 0 calc(100% - 24px));
    transition: box-shadow var(--trans), transform var(--trans);
    text-decoration: none;
    color: inherit;
}

.news-featured:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.news-featured__image {
    position: relative;
    overflow: hidden;
    background: var(--off-white);
    min-height: 360px;
}

.news-featured__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.news-featured:hover .news-featured__image img {
    transform: scale(1.04);
}

.news-featured__badge {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    background: var(--green);
    color: var(--charcoal);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.3rem 0.85rem;
    clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 6px, 100% 100%, 6px 100%, 0 calc(100% - 6px));
}

.news-featured__content {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news-featured__title {
    font-size: clamp(1.3rem, 2.5vw, 1.7rem);
    margin-bottom: 1rem;
    color: var(--charcoal);
    line-height: 1.25;
}

.news-featured__excerpt {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.news-featured__readmore {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--green-dark);
    transition: gap var(--trans);
}

.news-featured:hover .news-featured__readmore {
    gap: 0.8rem;
}

.news-card__date {
    display: block;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--green-dark);
    margin-bottom: 0.5rem;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.news-card {
    background: var(--white);
    border: 1px solid var(--border);
    overflow: hidden;
    clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
    transition: transform var(--trans), box-shadow var(--trans);
    display: block;
    text-decoration: none;
    color: inherit;
}

.news-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.news-card__image {
    aspect-ratio: 16/10;
    overflow: hidden;
    background: var(--off-white);
}

.news-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.news-card:hover .news-card__image img {
    transform: scale(1.05);
}

.news-card__content {
    padding: 1.5rem;
}

.news-card__title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.news-card__excerpt {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--green-dark);
    transition: gap var(--trans);
}

.news-card:hover .news-card__link {
    gap: 0.7rem;
}

/* ============================================================
   News Article / Item Page
   ============================================================ */
.news-article__grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3rem;
    align-items: start;
}

.news-article__hero {
    margin-bottom: 2.5rem;
    overflow: hidden;
    clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 24px 100%, 0 calc(100% - 24px));
}

.news-article__hero img {
    width: 100%;
    height: auto;
    display: block;
}

.news-article__body {
    margin-bottom: 2.5rem;
}

.news-article__gallery {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.news-article__back {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.sidebar-news-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.sidebar-news-item {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
    transition: color var(--trans);
}

.sidebar-news-item time {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--green-dark);
}

.sidebar-news-item span {
    font-size: 0.85rem;
    color: var(--body-text);
    line-height: 1.4;
    font-weight: 400;
    transition: color var(--trans);
}

.sidebar-news-item:hover span {
    color: var(--green-dark);
}

.related-news {
    background: var(--off-white);
    border-top: 1px solid var(--border);
}

/* ============================================================
   Contact Page
   ============================================================ */
.contact-section__grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 4rem;
    align-items: start;
}

.contact-form-wrap__title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.contact-form-wrap__intro {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-row {
    display: flex;
    gap: 1.25rem;
}

.form-row--2col > .form-group {
    flex: 1;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-label {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.04em;
    color: var(--charcoal);
}

.form-input {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 0.95rem;
    color: var(--charcoal);
    background: var(--white);
    border: 1px solid var(--border);
    padding: 0.75rem 1rem;
    border-radius: var(--radius);
    transition: border-color var(--trans), box-shadow var(--trans);
    width: 100%;
    appearance: none;
}

.form-input:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(178,210,52,0.15);
}

.form-textarea {
    min-height: 160px;
    resize: vertical;
}

.form-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b6c67' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

/* Honeypot — visually hidden */
.contact-form__honeypot {
    position: absolute;
    left: -9999px;
    top: -9999px;
    visibility: hidden;
}

.form-success {
    background: var(--off-white);
    border: 1px solid var(--border);
    border-top: 4px solid var(--green);
    padding: 3rem;
    text-align: center;
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
}

.form-success__icon {
    width: 64px;
    height: 64px;
    background: var(--green);
    color: var(--charcoal);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}

.form-success__title {
    font-size: 1.6rem;
    margin-bottom: 0.75rem;
}

.form-success p {
    color: var(--text-muted);
    margin-bottom: 1.75rem;
}

.form-error-banner {
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-left: 4px solid #ef4444;
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.9rem;
    color: #dc2626;
    margin-bottom: 1.5rem;
    border-radius: var(--radius);
}

/* Contact Info Box */
.contact-info-box {
    background: var(--charcoal);
    padding: 2rem;
    margin-bottom: 1.5rem;
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
}

.contact-info-box__title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--green);
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
}

.contact-info-list__icon {
    width: 38px;
    height: 38px;
    background: rgba(178,210,52,0.12);
    color: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    clip-path: polygon(0 0, calc(100% - 7px) 0, 100% 7px, 100% 100%, 7px 100%, 0 calc(100% - 7px));
}

.contact-info-list strong {
    display: block;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    margin-bottom: 0.2rem;
}

.contact-info-list span,
.contact-info-list a {
    display: block;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.5;
}

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

.contact-coverage-box {
    background: var(--off-white);
    border: 1px solid var(--border);
    padding: 1.75rem;
    clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
}

.contact-coverage-box__title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--charcoal);
    margin-bottom: 0.75rem;
    padding-bottom: 0.6rem;
    border-bottom: 2px solid var(--green);
}

.contact-coverage-box p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.coverage-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.coverage-tags li {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.75rem;
    background: var(--white);
    border: 1px solid var(--border);
    padding: 0.25rem 0.7rem;
    color: var(--grey-dark);
    clip-path: polygon(0 0, calc(100% - 5px) 0, 100% 5px, 100% 100%, 5px 100%, 0 calc(100% - 5px));
}

/* ============================================================
   Shared Inner Page — img placeholders
   ============================================================ */
.img-placeholder {
    width: 100%;
    height: 100%;
    min-height: 200px;
    background: linear-gradient(145deg, var(--near-white), var(--off-white));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--grey);
    gap: 0.75rem;
}

.img-placeholder p {
    font-family: var(--font-heading);
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--grey-mid);
    margin: 0;
}

.img-placeholder--tall {
    min-height: 460px;
}

.img-placeholder--wide {
    min-height: 320px;
}

.img-placeholder--square {
    aspect-ratio: 1;
}

/* ============================================================
   Inner Page Responsive
   ============================================================ */
@media (max-width: 1024px) {
    .about-intro__grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

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

    .services-listing__grid {
        grid-template-columns: 1fr;
    }

    .service-detail__grid,
    .news-article__grid {
        grid-template-columns: 1fr;
    }

    .contact-section__grid {
        grid-template-columns: 1fr;
    }

    .news-featured {
        grid-template-columns: 1fr;
    }

    .news-featured__image {
        min-height: 260px;
    }

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

@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr;
    }

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

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

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

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

    .about-intro__stats {
        flex-wrap: wrap;
        gap: 1.25rem;
    }

    .form-row--2col {
        flex-direction: column;
    }

    .why-strip__inner {
        flex-direction: column;
        gap: 1.5rem;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

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

    .about-intro__accent-block {
        right: 0.5rem;
        bottom: -1rem;
    }
}

/* ============================================================
   Gallery — filter count badges + image service label
   ============================================================ */
.filter-btn__count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.15);
    color: inherit;
    font-size: 0.65rem;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    border-radius: 3px;
    margin-left: 0.35rem;
    line-height: 1;
}
 
.filter-btn.is-active .filter-btn__count {
    background: rgba(30,31,26,0.15);
}
 
.gallery-item__label {
    position: absolute;
    bottom: 0.75rem;
    left: 0.75rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--white);
    background: rgba(30,31,26,0.6);
    padding: 0.25rem 0.6rem;
    clip-path: polygon(0 0, calc(100% - 5px) 0, 100% 5px, 100% 100%, 5px 100%, 0 calc(100% - 5px));
    opacity: 0;
    transform: translateY(4px);
    transition: opacity var(--trans), transform var(--trans);
}
 
.gallery-item:hover .gallery-item__label {
    opacity: 1;
    transform: translateY(0);
}
 
.gallery-empty-note {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.88rem;
    margin-top: 2rem;
    font-style: italic;
}
 
 /* ============================================================
   Cookie Consent Banner
   ============================================================ */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--charcoal);
    border-top: 3px solid var(--green);
    z-index: 9999;
    padding: 1.1rem 0;
    box-shadow: 0 -4px 24px rgba(0,0,0,0.25);
}
 
.cookie-consent__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: space-between;
}
 
.cookie-consent__text {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    flex: 1;
    min-width: 260px;
}
 
.cookie-consent__text svg {
    color: var(--green);
    flex-shrink: 0;
    margin-top: 1px;
}
 
.cookie-consent__text p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.75);
    margin: 0;
    line-height: 1.55;
}
 
.cookie-consent__text p a {
    color: var(--green);
    text-decoration: underline;
    transition: color var(--trans);
}
 
.cookie-consent__text p a:hover {
    color: var(--green-light);
}
 
.cookie-consent__buttons {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}
 
/* Ghost dark variant for decline button */
.btn--ghost-dark {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.6rem 1.25rem;
    background: transparent;
    color: rgba(255,255,255,0.5);
    border: 1px solid rgba(255,255,255,0.2);
    cursor: pointer;
    transition: all var(--trans);
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}
 
.btn--ghost-dark:hover {
    color: rgba(255,255,255,0.85);
    border-color: rgba(255,255,255,0.4);
}
 
@media (max-width: 600px) {
    .cookie-consent__inner {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    .cookie-consent__buttons {
        width: 100%;
    }
    .cookie-consent__buttons .btn {
        flex: 1;
        justify-content: center;
    }
}
