/* ============================================
   CMS v2 — Section partial styles + circle removal
   Appended to override legacy decorative shapes.
   ============================================ */

/* --- Strip legacy circle/blob backdrops --- */
.hero-blob,
.service-blob,
.about-hero-blob,
.story-circle,
.people-first-circle,
.value-circle,
.service-category-circle,
.service-category-circle-donut,
.service-category-circle-overlap,
.discovery-blob {
    display: none !important;
}

/* Convert legacy .circle-image (CSS circle frame around team photos) into a clean rounded card */
.circle-image,
.circle-image img {
    border-radius: 16px !important;
}
.circle-image {
    aspect-ratio: 1 / 1;
    width: 220px;
    max-width: 100%;
    background: #fafaf9 !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
}
.circle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* --- MOBILE NAV DROPDOWN OVERRIDE -----------------------------------------
   The slide-in drawer only gets `.nav-links.active` on mobile (the hamburger
   handler), so we can target that without a media query. Doing it this way
   avoids the legacy desktop styles (e.g. position:absolute, display:flex)
   leaking into the drawer regardless of viewport width.
   --------------------------------------------------------------------------- */
.nav-links.active li.nav-dropdown {
    display: block !important;
    flex-direction: column !important;
    align-items: stretch !important;
    position: relative !important; /* containing block for any leftover absolutes */
}
.nav-links.active .nav-dropdown > a {
    display: block !important;
    width: 100% !important;
}
.nav-links.active .nav-dropdown .dropdown-menu {
    position: static !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
    float: none !important;
    min-width: 0 !important;
    width: 100% !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
    background: rgba(255,255,255,0.55) !important;
    display: none !important;
    z-index: auto !important;
}
.nav-links.active .nav-dropdown:hover .dropdown-menu { display: none !important; }
.nav-links.active .nav-dropdown.active .dropdown-menu { display: block !important; }
.nav-links.active .nav-dropdown .dropdown-menu li {
    display: block !important;
    width: 100% !important;
    min-width: 0 !important;
    border: none !important;
    border-bottom: 1px solid rgba(0,0,0,0.06) !important;
    background: transparent !important;
}
.nav-links.active .nav-dropdown .dropdown-menu li:last-child { border-bottom: none !important; }
.nav-links.active .nav-dropdown .dropdown-menu li a {
    display: block !important;
    padding: 0.7rem 2rem 0.7rem 3rem !important;
    font-size: 0.85rem !important;
    color: var(--lote-dark) !important;
    text-align: left !important;
}

/* --- PAGE HEADER — matches .insights-hero / .case-studies-hero (green bg, white text, centered) --- */
.page-header {
    padding: 7.5rem 5% 5rem;
    text-align: center;
}
.page-header-green  { background: var(--lote-tertiary); color: var(--lote-white); }
.page-header-cream  { background: var(--lote-bg-cream); }
.page-header-yellow { background: var(--lote-bg-yellow); }
.page-header-white  { background: var(--lote-white); }
.page-header-dark   { background: var(--lote-dark); color: var(--lote-white); }

.page-header-inner {
    max-width: 800px;
    margin: 0 auto;
}

.page-header-eyebrow {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--lote-tertiary);
    margin-bottom: 1rem;
    opacity: 0.85;
}
/* On coloured/dark backgrounds the eyebrow needs a contrasting tint */
.page-header-green .page-header-eyebrow,
.page-header-dark  .page-header-eyebrow { color: rgba(255,255,255,0.85); }

.page-header h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1rem;
}
.page-header-lead {
    font-size: clamp(1.05rem, 1.6vw, 1.2rem);
    line-height: 1.5;
    max-width: 700px;
    margin: 0 auto;
    color: inherit;
}
.page-header-green .page-header-lead,
.page-header-dark  .page-header-lead { color: rgba(255,255,255,0.92); }

@media (max-width: 800px) {
    .page-header { padding: 6rem 5% 3.5rem; }
    .page-header h1 { font-size: 2.2rem; }
    .page-header-lead { font-size: 1rem; }
}

/* --- HERO OVERRIDES (replace legacy full-viewport + circle image) --- */
.hero {
    min-height: 0;
    padding: 6rem 5% 4rem;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 3rem;
    align-items: center;
}
.hero-content { max-width: none; }
.hero h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
.hero-image {
    position: static;
    width: 100%;
    height: auto;
    top: auto;
    right: auto;
    border-radius: 18px;
    aspect-ratio: 4 / 3;
    box-shadow: 0 14px 40px rgba(0,0,0,0.08);
    overflow: hidden;
}
.hero-image img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: inherit; }

/* Service hero (government / business / nonprofits) used the same pattern — give it the same treatment */
.service-hero { min-height: 0; padding: 6rem 5% 4rem; }
.service-hero-wrapper { gap: 3rem; }
.service-hero-image {
    position: static;
    width: 100%;
    height: auto;
    border-radius: 18px;
    aspect-ratio: 4 / 3;
    box-shadow: 0 14px 40px rgba(0,0,0,0.08);
    overflow: hidden;
}
.service-hero-image img { width: 100%; height: 100%; object-fit: cover; border-radius: inherit; }

@media (max-width: 800px) {
    .hero { grid-template-columns: 1fr; padding: 5rem 5% 3rem; gap: 2rem; }
    .hero-image { display: block; max-height: 360px; }
    .service-hero { padding: 5rem 5% 3rem; }
}

/* --- Shared helpers --- */
.section-eyebrow,
.hero-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--lote-tertiary);
    margin-bottom: 1rem;
}
.bg-default { background: transparent; }
.bg-tinted { background: var(--lote-bg-cream); }
.bg-dark   { background: var(--lote-dark); color: var(--lote-white); }
.bg-dark h2, .bg-dark h3 { color: var(--lote-white); }
.rich-text p { margin-bottom: 1em; }
.rich-text ul, .rich-text ol { margin: 0 0 1em 1.2em; }
.rich-text li { margin-bottom: 0.3em; }
.rich-text a { color: var(--lote-tertiary); text-decoration: underline; }
.rich-text strong { font-weight: 700; }

/* --- TEXT + IMAGE SPLIT --- */
.text-image-split { padding: 5rem 5%; }
.text-image-split-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.text-image-split.image-left .text-image-photo  { order: 1; }
.text-image-split.image-left .text-image-content{ order: 2; }
.text-image-split.image-right .text-image-photo  { order: 2; }
.text-image-split.image-right .text-image-content{ order: 1; }
.text-image-content h2 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    letter-spacing: 0.02em;
    margin-bottom: 1rem;
}
.text-image-content .btn { margin-top: 1.2rem; }
.text-image-photo {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 14px 40px rgba(0,0,0,0.08);
    aspect-ratio: 4 / 3;
    background: #f0eee9;
}
.text-image-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* --- CARD GRID --- */
.card-grid { padding: 4rem 5%; }
.card-grid > h2 {
    text-align: center;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
    font-weight: 800;
}
.card-grid-intro {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 2.5rem;
    color: #555;
}
.cards { display: grid; gap: 1.5rem; max-width: 1200px; margin: 0 auto; }
.cards-cols-2 { grid-template-columns: repeat(2, 1fr); }
.cards-cols-3 { grid-template-columns: repeat(3, 1fr); }
.cards-cols-4 { grid-template-columns: repeat(4, 1fr); }
.card {
    background: var(--lote-white);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 14px 36px rgba(0,0,0,0.10); }
.card .card-image { aspect-ratio: 4 / 3; overflow: hidden; }
.card .card-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.card .card-content { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.card .card-content h3 { font-size: 1.1rem; margin-bottom: 0.6rem; font-weight: 800; letter-spacing: 0.02em; }
.card .card-content p { color: #555; flex: 1; }
.card .card-link { display: inline-block; margin-top: 1rem; font-weight: 700; color: var(--lote-tertiary); }

/* Service variant: image on the side */
.card-style-service .cards-cols-3 { grid-template-columns: 1fr; gap: 1.5rem; }
.card-style-service .card { flex-direction: row; align-items: stretch; }
.card-style-service .card .card-image { aspect-ratio: auto; flex: 0 0 45%; }
.card-style-service .card .card-content { padding: 2rem; }

/* Sector variant: image is background with overlay */
.card-style-sector .card { position: relative; min-height: 280px; color: var(--lote-white); }
.card-style-sector .card .card-image { position: absolute; inset: 0; aspect-ratio: auto; }
.card-style-sector .card .card-image::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.7) 100%);
}
.card-style-sector .card .card-content { position: relative; justify-content: flex-end; z-index: 2; }
.card-style-sector .card .card-content h3,
.card-style-sector .card .card-content p,
.card-style-sector .card .card-link { color: var(--lote-white); }

/* --- STAT ROW --- */
.stat-row { padding: 4rem 5%; background: var(--lote-bg-cream); text-align: center; }
.stat-row h2 { max-width: 900px; margin: 0 auto 2rem; font-size: clamp(1.3rem, 2.2vw, 1.8rem); font-weight: 700; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; max-width: 900px; margin: 0 auto; }
.stat-item h3 { font-size: clamp(2.5rem, 6vw, 4rem); color: var(--lote-tertiary); margin-bottom: 0.4rem; font-weight: 800; }
.stat-item p { color: #555; }

/* --- LOGO GRID --- */
.logo-grid { padding: 4rem 5%; text-align: center; }
.logo-grid > h2 { font-size: clamp(1.3rem, 2.2vw, 1.8rem); margin-bottom: 2rem; font-weight: 800; letter-spacing: 0.02em; }
.logo-grid .client-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem 3rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}
/* Override legacy .client-logo (which forced height:80px, white bg, border-radius) */
.logo-grid .client-logo {
    height: auto;
    background: transparent;
    border-radius: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.logo-grid .client-logo img { width: auto; height: auto; opacity: 0.85; transition: opacity 0.2s; display: block; }
.logo-grid .client-logo:hover img { opacity: 1; }

.logo-grid-small  .client-logo     { min-height: 40px; }
.logo-grid-small  .client-logo img { max-height: 40px; max-width: 120px; }

.logo-grid-medium .client-logo     { min-height: 60px; }
.logo-grid-medium .client-logo img { max-height: 60px; max-width: 160px; }

.logo-grid-large  .client-logo     { min-height: 110px; }
.logo-grid-large  .client-logo img { max-height: 110px; max-width: 220px; opacity: 1; }
.logo-grid-large  .client-logos    { gap: 2rem 2.5rem; }

/* --- FEATURE LIST --- */
.feature-list { padding: 4rem 5%; max-width: 1200px; margin: 0 auto; }
.feature-list > h2 { text-align: center; margin-bottom: 1rem; font-weight: 800; }
.feature-list-intro { text-align: center; max-width: 720px; margin: 0 auto 2.5rem; color: #555; }
.features-grid { display: grid; gap: 1.5rem; }
.feature-cols-1 .features-grid { grid-template-columns: 1fr; }
.feature-cols-2 .features-grid { grid-template-columns: repeat(2, 1fr); }
.feature-cols-3 .features-grid { grid-template-columns: repeat(3, 1fr); }
.feature-cols-4 .features-grid { grid-template-columns: repeat(4, 1fr); }
.feature-list .feature-item h3 { font-size: 1.1rem; margin-bottom: 0.4rem; font-weight: 700; letter-spacing: 0.01em; }
.feature-list .feature-item p { color: #555; line-height: 1.55; }

/* Card style — default */
.feature-style-card .feature-item {
    background: var(--lote-white);
    border-radius: 18px;
    padding: 1.75rem 1.5rem 1.5rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border-top: 4px solid var(--lote-primary);
}
.feature-style-card .feature-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 36px rgba(0,0,0,0.10);
}
/* Alternate brand-colour accent stripes for visual rhythm */
.feature-style-card .feature-item:nth-child(4n+2) { border-top-color: var(--lote-tertiary); }
.feature-style-card .feature-item:nth-child(4n+3) { border-top-color: var(--lote-secondary); }
.feature-style-card .feature-item:nth-child(4n+4) { border-top-color: var(--lote-bg-yellow); }

/* Icon badge — circle of brand cream with brand-green icon stroke */
.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--lote-bg-cream);
    color: var(--lote-tertiary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: background 0.2s, color 0.2s;
}
.feature-icon svg { width: 26px; height: 26px; }
.feature-icon img { width: 30px; height: 30px; object-fit: contain; }
.feature-style-card .feature-item:hover .feature-icon {
    background: var(--lote-tertiary);
    color: #fff;
}

/* Plain style — no card, restore old look (for when card vibe is too much) */
.feature-style-plain .feature-item { padding: 1rem 0; }
.feature-style-plain .feature-item .feature-icon { background: transparent; padding: 0; width: 32px; height: 32px; margin-bottom: 0.5rem; }
.feature-style-plain .feature-item .feature-icon svg { width: 28px; height: 28px; }

/* --- FEATURED CONTENT --- */
.featured-content { padding: 5rem 5%; background: var(--lote-bg-cream); }
.featured-content-wrapper { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.featured-content.image-right .featured-image { order: 2; }
.featured-image { border-radius: 18px; overflow: hidden; box-shadow: 0 14px 40px rgba(0,0,0,0.10); aspect-ratio: 4 / 3; }
.featured-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.featured-text h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); margin: 0.6rem 0 1rem; font-weight: 800; }
.featured-text .pull-quote { margin: 1.2rem 0; padding-left: 1rem; border-left: 3px solid var(--lote-secondary); font-style: italic; color: #555; }
.featured-text .pull-quote cite { display: block; margin-top: 0.5rem; font-style: normal; font-size: 0.9rem; color: #888; }

/* --- FULL TEXT --- */
.full-text { padding: 4rem 5%; }
.full-text-wrapper { margin: 0 auto; }
.full-text.width-narrow .full-text-wrapper { max-width: 640px; }
.full-text.width-medium .full-text-wrapper { max-width: 820px; }
.full-text.width-wide .full-text-wrapper { max-width: 1100px; }
.full-text.align-centre { text-align: center; }
.full-text h2 { margin-bottom: 1.2rem; font-size: clamp(1.5rem, 2.8vw, 2.2rem); font-weight: 800; }
.full-text .rich-text { font-size: 1.05rem; }

/* --- PEOPLE GRID --- */
/* Reset legacy .people-grid display:grid so section reverts to block layout */
.people-grid {
    padding: 4rem 5%;
    display: block;
    grid-template-columns: none;
    max-width: none;
    margin: 0;
    gap: 0;
}
.people-grid > h2 { text-align: center; margin-bottom: 1rem; font-weight: 800; }
.people-grid-intro { text-align: center; max-width: 720px; margin: 0 auto 2.5rem; color: #555; }
.people-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 2rem; max-width: 1200px; margin: 0 auto; }
.person-card { text-align: center; }
.person-card .person-photo { aspect-ratio: 1 / 1; border-radius: 16px; overflow: hidden; margin-bottom: 0.8rem; background: #fafaf9; box-shadow: 0 8px 24px rgba(0,0,0,0.06); }
.person-card .person-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.person-card h3 { font-size: 1rem; margin-bottom: 0.2rem; }
.person-card p { color: #777; font-size: 0.9rem; }

/* --- CTA BAND --- */
.cta-band { padding: 4rem 5%; text-align: center; }
.cta-band h2 { font-size: clamp(1.5rem, 2.5vw, 2rem); margin-bottom: 1rem; font-weight: 800; }
.cta-band p { max-width: 600px; margin: 0 auto 1.5rem; color: #555; }
.cta-band.bg-dark p { color: rgba(255,255,255,0.9); }

/* --- EVENTS LIST --- */
.events-list { padding: 4rem 5%; max-width: 1100px; margin: 0 auto; }
.events-list > h2 { text-align: center; margin-bottom: 1rem; font-weight: 800; }
.events-list-intro { text-align: center; max-width: 720px; margin: 0 auto 2.5rem; color: #555; }
.events { display: flex; flex-direction: column; gap: 2rem; }
.event {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
    gap: 2rem;
    background: var(--lote-white);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.event-image {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #f0eee9;
}
.event-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.event-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(0,0,0,0.65);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
}
.event-body { padding: 1.5rem 2rem 2rem 0; display: flex; flex-direction: column; gap: 0.8rem; }
.event-body h3 { font-size: 1.3rem; font-weight: 800; line-height: 1.25; }
.event-meta { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: 0.4rem 1rem; color: var(--lote-tertiary); font-weight: 600; font-size: 0.85rem; letter-spacing: 0.04em; text-transform: uppercase; }
.event-meta li { position: relative; }
.event-meta li + li::before {
    content: '·';
    margin-right: 1rem;
    color: #bbb;
    position: absolute;
    left: -1rem;
}
.event-about { font-size: 0.95rem; color: #444; }
.event-about ul { margin-left: 1.2rem; }
.event-about li { margin-bottom: 0.25em; }
.event .btn { align-self: flex-start; margin-top: 0.4rem; }
.event-past .event-image img { filter: saturate(0.85) brightness(0.95); }
.event-ctas { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 0.4rem; }

@media (max-width: 800px) {
    .event { grid-template-columns: 1fr; }
    .event-body { padding: 0 1.5rem 1.8rem; }
}

/* --- CMS-DRIVEN CONTACT FORM SECTION --- */
.contact-form-section { padding: 5rem 5%; background: var(--lote-bg-cream); }
.contact-form-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.2fr; gap: 3rem; align-items: center; }
.contact-form-image { border-radius: 18px; overflow: hidden; aspect-ratio: 4 / 5; box-shadow: 0 14px 40px rgba(0,0,0,0.10); }
.contact-form-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.contact-form-content h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; letter-spacing: 0.02em; margin-bottom: 0.5rem; }
.contact-form-content .cf-highlight { color: var(--lote-tertiary); }
.contact-form-subtitle { color: #555; margin-bottom: 1.6rem; }

/* --- GALLERY PAGE (public) --- */
.gallery-page { padding: 6rem 5% 4rem; max-width: 1200px; margin: 0 auto; }
.gallery-header { text-align: center; margin-bottom: 2.5rem; }
.gallery-header h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; margin: 0.4rem 0 0.8rem; }
.gallery-description { color: #555; max-width: 720px; margin: 0 auto; }
.gallery-empty { text-align: center; color: #777; padding: 3rem 0; }
.gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 12px;
}
.gallery-thumb {
    aspect-ratio: 1;
    background: #fafaf9;
    border: none;
    padding: 0;
    overflow: hidden;
    border-radius: 12px;
    cursor: zoom-in;
    transition: transform 0.15s, box-shadow 0.15s;
}
.gallery-thumb:hover { transform: scale(1.02); box-shadow: 0 8px 24px rgba(0,0,0,0.12); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Lightbox */
.lightbox {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox .lb-figure {
    max-width: 92%;
    max-height: 88vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
}
.lightbox img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 6px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.lightbox figcaption {
    color: #fff;
    text-align: center;
    margin-top: 1rem;
    max-width: 600px;
    font-size: 0.95rem;
}
.lightbox button {
    position: absolute;
    background: rgba(255,255,255,0.1);
    color: #fff;
    border: none;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s;
}
.lightbox button:hover { background: rgba(255,255,255,0.25); }
.lightbox .lb-close { top: 16px; right: 16px; width: 44px; height: 44px; border-radius: 50%; }
.lightbox .lb-prev,
.lightbox .lb-next { top: 50%; transform: translateY(-50%); width: 56px; height: 56px; border-radius: 50%; font-size: 2.5rem; }
.lightbox .lb-prev { left: 16px; }
.lightbox .lb-next { right: 16px; }

@media (max-width: 600px) {
    .gallery-thumbs { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .lightbox .lb-prev, .lightbox .lb-next { width: 44px; height: 44px; font-size: 1.8rem; }
}

/* --- Responsive --- */
@media (max-width: 900px) {
    .text-image-split-wrapper { grid-template-columns: 1fr; }
    .text-image-split.image-left .text-image-photo,
    .text-image-split.image-left .text-image-content,
    .text-image-split.image-right .text-image-photo,
    .text-image-split.image-right .text-image-content { order: initial; }
    .cards-cols-3, .cards-cols-4 { grid-template-columns: repeat(2, 1fr); }
    .feature-cols-3 .features-grid, .feature-cols-4 .features-grid { grid-template-columns: repeat(2, 1fr); }
    .featured-content-wrapper { grid-template-columns: 1fr; }
    .featured-content.image-right .featured-image { order: initial; }
    .contact-form-grid { grid-template-columns: 1fr; }
    .card-style-service .card { flex-direction: column; }
    .card-style-service .card .card-image { flex: initial; aspect-ratio: 4 / 3; }
}
@media (max-width: 600px) {
    .cards-cols-2, .cards-cols-3, .cards-cols-4 { grid-template-columns: 1fr; }
    .feature-cols-2 .features-grid, .feature-cols-3 .features-grid, .feature-cols-4 .features-grid { grid-template-columns: 1fr; }
    .people-cards { grid-template-columns: repeat(2, 1fr); }
}
