:root {
    --blue: #1e73be;
    --blue-dark: #14568f;
    --blue-light: #eaf3fb;
    --ink: #14181f;
    --body: #4b5566;
    --muted: #7c8698;
    --bg: #ffffff;
    --bg-soft: #f6f8fb;
    --border: #e7eaef;
    --radius-lg: 1.25rem;
    --radius-md: 0.75rem;
    --radius-sm: 0.5rem;
    --shadow-sm: 0 1px 2px rgba(20, 24, 31, 0.06);
    --shadow-md: 0 8px 24px rgba(20, 24, 31, 0.08);
    --shadow-lg: 0 20px 48px rgba(20, 24, 31, 0.14);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
    color: var(--body);
    background: var(--bg);
    line-height: 1.7;
    font-size: 16px;
}

h1, h2, h3, h4 {
    font-family: 'Inter', sans-serif;
    color: var(--ink);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.01em;
    margin: 0 0 0.6em;
}

h1 { font-weight: 800; }

p { margin: 0 0 1em; }

a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--blue-dark); }

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

.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--blue);
    margin: 0 0 0.75rem;
}

.eyebrow::before {
    content: "";
    width: 1.5rem;
    height: 2px;
    background: var(--blue);
    display: inline-block;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--blue);
    color: #fff;
    padding: 0.8rem 1.6rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
    background: var(--blue-dark);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: none;
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.22);
    color: #fff;
}

.btn-outline {
    background: transparent;
    color: var(--blue);
    border: 1px solid var(--border);
    box-shadow: none;
}

.btn-outline:hover {
    background: var(--blue-light);
    color: var(--blue-dark);
    transform: none;
    box-shadow: none;
}

/* Header / nav */
.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 1.5rem;
    max-width: 1120px;
    margin: 0 auto;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
}

.site-logo img {
    height: 46px;
    display: block;
}

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

.site-nav a:not(.btn) {
    color: var(--ink);
    font-weight: 500;
    font-size: 0.93rem;
    padding: 0.5rem 0.9rem;
    border-radius: 999px;
}

.site-nav a:not(.btn):hover {
    background: var(--bg-soft);
    color: var(--ink);
}

.site-nav a.active:not(.btn) {
    color: var(--blue);
    background: var(--blue-light);
    font-weight: 600;
}

.site-nav .btn { margin-left: 0.5rem; }

/* Hero — full bleed, image background */
.hero-full {
    position: relative;
    min-height: 78vh;
    display: flex;
    align-items: center;
    background: var(--ink) center/cover no-repeat;
}

/* Logo intro: a dedicated scroll zone BEFORE the real hero, so the animation
   never overlaps or blocks the actual hero content. The spacer defaults to
   zero height with overflow hidden — JS opts it in via .active; if JS never
   runs, the blurred background inside it is clipped to nothing and the page
   looks exactly like the plain hero, no gap, no leftover blur. */
.hero-intro-spacer {
    position: relative;
    height: 0;
    overflow: hidden;
}

.hero-intro-spacer.active {
    height: 100vh;
}

.hero-intro-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: blur(14px) brightness(0.65);
    will-change: filter, opacity;
}

.hero-logo-reveal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    opacity: 0;
    pointer-events: none;
    will-change: transform, opacity;
}

.hero-logo-reveal.active {
    display: block;
}

.hero-logo-reveal img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hero-intro-text {
    display: none;
    position: fixed;
    top: 62%;
    left: 50%;
    z-index: 100;
    margin: 0;
    max-width: 90vw;
    color: #fff;
    font-weight: 700;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    line-height: 1.35;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-align: center;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.45);
    opacity: 0;
    pointer-events: none;
    will-change: transform, opacity;
}

.hero-intro-text.active {
    display: block;
}

.hero-full::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(11, 15, 22, 0.86) 0%, rgba(11, 15, 22, 0.55) 55%, rgba(11, 15, 22, 0.35) 100%);
}

.hero-full-content {
    position: relative;
    max-width: 640px;
    color: #fff;
}

.hero-full-content .eyebrow { color: #cfe0f2; }
.hero-full-content .eyebrow::before { background: #cfe0f2; }

.hero-full-content h1 {
    color: #fff;
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    margin-bottom: 0.75rem;
}

.hero-full-content p {
    color: rgba(255, 255, 255, 0.86);
    font-size: 1.1rem;
    max-width: 34rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 1.75rem;
}

.hero-stats {
    position: relative;
    display: flex;
    gap: 2.5rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    flex-wrap: wrap;
}

.hero-stats .stat-value {
    font-size: 1.8rem;
    font-weight: 800;
    display: block;
}

.hero-stats .stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Smaller page hero for subpages */
.hero-sub {
    position: relative;
    padding: 6.5rem 0 3.5rem;
    background: var(--ink) center/cover no-repeat;
}

.hero-sub::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11, 15, 22, 0.82), rgba(11, 15, 22, 0.6));
}

.hero-sub .container { position: relative; }
.hero-sub .eyebrow { color: #cfe0f2; }
.hero-sub .eyebrow::before { background: #cfe0f2; }
.hero-sub h1 { color: #fff; font-size: clamp(2rem, 4vw, 2.75rem); margin: 0; }
.hero-sub p { color: rgba(255, 255, 255, 0.85); max-width: 34rem; margin-top: 0.75rem; }

/* Light variant — for background images that are themselves light (e.g. white drawings) */
.hero-sub-light::before {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.65));
}
.hero-sub-light .eyebrow { color: var(--blue); }
.hero-sub-light .eyebrow::before { background: var(--blue); }
.hero-sub-light h1 { color: var(--ink); }
.hero-sub-light p { color: var(--body); }

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

.section-head {
    max-width: 40rem;
    margin: 0 0 2.5rem;
}

.section-head p { color: var(--muted); }

/* Services teaser (home) */
.services-teaser {
    background: var(--bg-soft);
}

.services-teaser-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 2rem;
    display: grid;
    gap: 0.85rem;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    color: var(--ink);
    font-weight: 500;
}

.check-list svg {
    flex-shrink: 0;
    width: 1.2rem;
    height: 1.2rem;
    color: var(--blue);
    margin-top: 0.15rem;
}

.services-teaser-card {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.services-teaser-card img {
    width: 100%;
    height: 340px;
    object-fit: cover;
}

/* Offer grid (diensten page — canonical location) */
.offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.offer-card {
    display: block;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.75rem 1.5rem;
    text-align: left;
    color: inherit;
    text-decoration: none;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.offer-card:hover { text-decoration: none; color: inherit; }

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

.offer-card h4 {
    margin: 0 0 0.6rem;
    padding-bottom: 0.6rem;
    font-size: 1.02rem;
    border-bottom: 2px solid var(--blue-light);
}

.offer-card p { margin: 0; font-size: 0.9rem; color: var(--muted); }

/* CTA band — floating card */
.cta-card {
    position: relative;
    margin: 0 auto;
    max-width: 1120px;
    background: linear-gradient(120deg, #163457, var(--blue));
    border-radius: var(--radius-lg);
    padding: 3rem 2.5rem;
    color: #fff;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.cta-card h2 { color: #fff; margin-bottom: 0.4rem; }
.cta-card .phone { font-size: 1.5rem; font-weight: 800; margin-bottom: 1.5rem; }
.cta-card .phone a { color: #fff; }
.cta-card .phone a:hover { color: #fff; text-decoration: underline; }
.cta-card .btn { background: #fff; color: var(--blue-dark); }
.cta-card .btn:hover { background: #eef4fb; color: var(--blue-dark); }

/* Gallery4 — featured projects carousel */
.gallery4 { padding: 0 0 4.5rem; }

.gallery4-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.gallery4-heading p { max-width: 34rem; color: var(--muted); margin: 0; }

.gallery4-nav { display: flex; gap: 0.5rem; flex-shrink: 0; }

.gallery4-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: #fff;
    color: var(--blue);
    cursor: pointer;
}

.gallery4-btn svg { width: 1.1rem; height: 1.1rem; }
.gallery4-btn:disabled { opacity: 0.35; cursor: default; }
.gallery4-btn:not(:disabled):hover { background: var(--blue); color: #fff; border-color: var(--blue); }

.gallery4-track {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-left: max(1.5rem, calc((100vw - 1120px) / 2 + 1.5rem));
    padding: 0 max(1.5rem, calc((100vw - 1120px) / 2 + 1.5rem)) 0.5rem max(1.5rem, calc((100vw - 1120px) / 2 + 1.5rem));
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    cursor: grab;
}

.gallery4-track::-webkit-scrollbar { display: none; }

.gallery4-track.dragging {
    cursor: grabbing;
    scroll-snap-type: none;
    user-select: none;
}

.gallery4-track.dragging .gallery4-card {
    pointer-events: none;
}

.gallery4-card {
    position: relative;
    flex: 0 0 auto;
    width: 340px;
    height: 440px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    scroll-snap-align: start;
    display: block;
    color: #fff;
    box-shadow: var(--shadow-md);
}

.gallery4-card img {
    -webkit-user-drag: none;
    user-drag: none;
    user-select: none;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery4-card:hover img { transform: scale(1.06); }

.gallery4-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.75rem;
    background: linear-gradient(180deg, rgba(11,15,22,0) 30%, rgba(11,15,22,0.55) 68%, rgba(11,15,22,0.9) 100%);
}

.gallery4-category {
    display: inline-flex;
    align-self: flex-start;
    text-transform: uppercase;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    background: rgba(255, 255, 255, 0.16);
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
    margin: 0 0 0.75rem;
}

.gallery4-overlay h3 { color: #fff; font-size: 1.2rem; margin: 0 0 0.5rem; }

.gallery4-desc {
    font-size: 0.88rem;
    line-height: 1.5;
    margin: 0 0 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    opacity: 0.88;
}

.gallery4-more { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.85rem; font-weight: 600; }
.gallery4-more svg { width: 1rem; height: 1rem; transition: transform 0.2s ease; }
.gallery4-card:hover .gallery4-more svg { transform: translateX(3px); }

.gallery4-dots { display: flex; justify-content: center; gap: 0.5rem; margin-top: 1.75rem; }
.gallery4-dot { width: 0.5rem; height: 0.5rem; border-radius: 999px; border: none; background: rgba(30, 115, 190, 0.2); cursor: pointer; padding: 0; }
.gallery4-dot.active { background: var(--blue); width: 1.35rem; transition: width 0.2s ease; }

/* About */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 3.5rem;
}

.timeline { list-style: none; padding: 0; margin: 0; position: relative; }

.timeline li {
    position: relative;
    padding: 0 0 1.75rem 1.75rem;
    border-left: 2px solid var(--border);
    font-size: 0.95rem;
    color: var(--body);
}

.timeline li:last-child { border-color: transparent; padding-bottom: 0; }

.timeline li::before {
    content: "";
    position: absolute;
    left: -0.4rem;
    top: 0.25rem;
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 999px;
    background: var(--blue);
    border: 3px solid var(--blue-light);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.team-card {
    background: var(--bg-soft);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.team-avatar {
    width: 5.5rem;
    height: 5.5rem;
    border-radius: var(--radius-md);
    flex-shrink: 0;
    object-fit: cover;
    border: 3px solid var(--blue-light);
    background: #fff;
}

.team-avatar-fallback {
    background: var(--blue);
    color: #fff;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
}

.team-card h4 { margin: 0; font-size: 1rem; }
.team-card p { margin: 0; font-size: 0.85rem; color: var(--muted); }

/* Projects page */
.project-list { display: grid; gap: 1.5rem; }

.project-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    scroll-margin-top: 5.5rem;
}

.project-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 0.5rem;
}

.pill {
    display: inline-flex;
    text-transform: uppercase;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    background: var(--blue-light);
    color: var(--blue-dark);
    padding: 0.3rem 0.75rem;
    border-radius: 999px;
}

.project-client { color: var(--muted); font-size: 0.9rem; margin: 0; }
.project-card h3 { margin: 0.5rem 0 0.75rem; font-size: 1.3rem; }

.project-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 0.85rem;
    margin-top: 1.25rem;
}

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

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 3rem;
}

.contact-form-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    scroll-margin-top: 5.5rem;
}

form.contact-form label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--ink);
    margin: 1.1rem 0 0.4rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 1.25rem;
}

form.contact-form input,
form.contact-form select,
form.contact-form textarea {
    width: 100%;
    padding: 0.75rem 0.9rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font: inherit;
    color: var(--ink);
    background: var(--bg-soft);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

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

form.contact-form input:focus,
form.contact-form select:focus,
form.contact-form textarea:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 3px var(--blue-light);
    background: #fff;
}

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

.input-check-wrap { position: relative; }

.input-check-wrap input { padding-right: 2.5rem; }

.input-check {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    width: 1.15rem;
    height: 1.15rem;
    color: #1e9e5a;
    opacity: 0;
    transform: translateY(-50%) scale(0.6);
    transition: opacity 0.15s ease, transform 0.15s ease;
    pointer-events: none;
}

.input-check-wrap.valid .input-check {
    opacity: 1;
    transform: translateY(-50%) scale(1);
}

.contact-info-card {
    background: var(--bg-soft);
    border-radius: var(--radius-lg);
    padding: 2rem;
}

.call-highlight {
    background: linear-gradient(120deg, #163457, var(--blue));
    border-radius: var(--radius-md);
    padding: 1.5rem 1.75rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.call-highlight h4 {
    margin: 0 0 0.6rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.8);
}

.call-highlight .phone-link {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
}

.call-highlight .phone-link:hover { color: #fff; text-decoration: underline; }

.call-highlight p { margin: 0.25rem 0 0; color: rgba(255, 255, 255, 0.85); font-size: 0.9rem; }
.call-highlight p a { color: inherit; }
.call-highlight p a:hover { color: #fff; text-decoration: underline; }

.phone-tag {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.6);
}

.call-highlight .phone-tag { display: block; margin-bottom: 0.2rem; }

.phone-sep { color: rgba(255, 255, 255, 0.4); margin: 0 0.15rem; }

.contact-row {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
}

.contact-row:last-of-type { border-bottom: none; }

.contact-logo {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.contact-logo img { height: 90px; margin: 0 auto; }

.contact-row .icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: var(--radius-sm);
    background: var(--blue-light);
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-row .icon svg { width: 1.15rem; height: 1.15rem; }
.contact-row h4 { margin: 0 0 0.2rem; font-size: 0.85rem; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; }
.contact-row p { margin: 0; color: var(--ink); font-weight: 500; }

.notice {
    padding: 0.85rem 1rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.notice.ok { background: #e6f4ea; color: #1e6b34; }
.notice.error { background: #fdecea; color: #a3241a; }

/* Footer */
.site-footer {
    background: var(--ink);
    color: rgba(255, 255, 255, 0.7);
    padding: 3.5rem 0 0;
    margin-top: 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 2.5rem;
    padding-bottom: 2.5rem;
}

.footer-brand img { height: 44px; margin-bottom: 1rem; border-radius: var(--radius-sm); background: #fff; padding: 0.3rem; }
.footer-brand p { max-width: 22rem; font-size: 0.9rem; }

.site-footer h5 {
    color: #fff;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 0 0 1rem;
}

.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.6rem; }
.footer-links a { color: rgba(255, 255, 255, 0.7); font-size: 0.92rem; }
.footer-links a:hover { color: #fff; }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 1.25rem 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75rem;
    font-size: 0.82rem;
}

.footer-bottom a { color: rgba(255, 255, 255, 0.7); }
.footer-bottom a:hover { color: #fff; }

@media (max-width: 860px) {
    .services-teaser-grid, .about-grid, .contact-grid, .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .site-header { flex-direction: column; align-items: flex-start; }
    .site-nav { width: 100%; }
    .gallery4-card { width: 270px; height: 380px; }
    .cta-card { padding: 2.25rem 1.5rem; }
}
