/*
Theme Name: Office Heights Limited
Theme URI: https://officeheights.co.uk/
Author: OpenAI
Description: Bespoke upload-ready WordPress theme for Office Heights Limited, a professional office furniture wholesaler and trade supplier.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
Text Domain: office-heights
*/

:root {
    --ink: #10171c;
    --ink-soft: #24313a;
    --charcoal: #182228;
    --slate: #33444d;
    --brass: #c49a4f;
    --brass-deep: #9d7837;
    --sage: #7e9487;
    --cloud: #f6f3ec;
    --mist: #e9e3d7;
    --paper: #fffdf8;
    --line: rgba(16, 23, 28, 0.12);
    --shadow: 0 24px 70px rgba(15, 24, 31, 0.16);
    --shadow-soft: 0 18px 48px rgba(15, 24, 31, 0.10);
    --radius-xl: 34px;
    --radius-lg: 24px;
    --radius-md: 16px;
    --container: 1180px;
    --header-height: 86px;
}

* { box-sizing: border-box; }

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

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
}

body.no-scroll { overflow: hidden; }

a { color: inherit; text-decoration: none; }
a:hover { color: var(--brass-deep); }

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

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

.skip-link {
    position: fixed;
    left: 16px;
    top: 16px;
    z-index: 999;
    transform: translateY(-150%);
    background: var(--ink);
    color: white;
    padding: 10px 14px;
    border-radius: 999px;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    min-height: var(--header-height);
    display: flex;
    align-items: center;
    background: rgba(255, 253, 248, 0.86);
    border-bottom: 1px solid rgba(16, 23, 28, 0.08);
    backdrop-filter: blur(18px);
    transition: background 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
    background: rgba(255, 253, 248, 0.95);
    box-shadow: 0 12px 40px rgba(16, 23, 28, 0.08);
}

.header-grid {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 28px;
    align-items: center;
}

.brand img { width: 248px; }
.logo-wrap, .footer-logo-wrap { display: inline-block; }

.primary-nav { justify-self: end; }
.menu, .footer-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.menu a {
    display: inline-flex;
    padding: 10px 13px;
    border-radius: 999px;
    color: var(--ink-soft);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.01em;
}

.menu a:hover,
.current-menu-item a {
    background: rgba(196, 154, 79, 0.15);
    color: var(--ink);
}

.header-cta,
.btn,
.phone-pill,
.mini-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 999px;
    font-weight: 800;
    letter-spacing: -0.01em;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.header-cta {
    background: var(--ink);
    color: white;
    padding: 12px 18px;
    box-shadow: 0 14px 34px rgba(16, 23, 28, 0.18);
}
.header-cta:hover { color: white; transform: translateY(-2px); }

.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid var(--line);
    background: var(--paper);
    border-radius: 14px;
    padding: 10px;
}
.nav-toggle span {
    display: block;
    height: 2px;
    background: var(--ink);
    margin: 5px 0;
    border-radius: 2px;
}

.hero {
    position: relative;
    padding: clamp(76px, 8vw, 126px) 0 70px;
    overflow: hidden;
}

.hero:before {
    content: "";
    position: absolute;
    inset: -180px -180px auto auto;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(196, 154, 79, 0.24), transparent 62%);
    pointer-events: none;
}

.hero-executive {
    background:
        linear-gradient(120deg, rgba(246, 243, 236, 0.96), rgba(255, 253, 248, 0.82)),
        repeating-linear-gradient(135deg, rgba(16, 23, 28, 0.04) 0 1px, transparent 1px 22px);
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
    gap: clamp(34px, 5vw, 74px);
    align-items: center;
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--brass-deep);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 12px;
    font-weight: 900;
}

h1, h2, h3 {
    margin: 0;
    color: var(--ink);
    line-height: 1.04;
    letter-spacing: -0.045em;
}

h1 { font-size: clamp(44px, 6vw, 82px); max-width: 920px; }
h2 { font-size: clamp(31px, 4vw, 52px); }
h3 { font-size: 21px; letter-spacing: -0.025em; }

p { margin: 0; }
.hero-lead {
    max-width: 690px;
    margin-top: 24px;
    color: var(--ink-soft);
    font-size: clamp(18px, 2vw, 22px);
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.btn { padding: 14px 22px; border: 1px solid transparent; min-height: 50px; }
.btn-primary { background: var(--brass); color: var(--ink); box-shadow: 0 18px 40px rgba(196, 154, 79, 0.28); }
.btn-primary:hover { background: var(--brass-deep); color: white; transform: translateY(-2px); }
.btn-outline { border-color: rgba(16, 23, 28, 0.18); color: var(--ink); background: rgba(255,255,255,0.52); }
.btn-outline:hover { border-color: var(--brass); background: rgba(196, 154, 79, 0.11); color: var(--ink); transform: translateY(-2px); }
.btn-light { background: var(--cloud); color: var(--ink); }
.btn-light:hover { background: white; color: var(--ink); transform: translateY(-2px); }
.btn-outline.dark { border-color: rgba(255,255,255,0.24); background: transparent; color: white; }

.trust-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
}
.trust-strip span {
    padding: 9px 13px;
    border: 1px solid rgba(16, 23, 28, 0.12);
    border-radius: 999px;
    background: rgba(255,255,255,0.58);
    color: var(--ink-soft);
    font-weight: 800;
    font-size: 13px;
}

.hero-visual {
    position: relative;
    padding: 14px;
    background: linear-gradient(145deg, rgba(255,255,255,0.75), rgba(233, 227, 215, 0.68));
    border: 1px solid rgba(16, 23, 28, 0.10);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
}
.hero-visual:after {
    content: "";
    position: absolute;
    inset: auto 26px 26px auto;
    width: 110px;
    height: 110px;
    border: 1px solid rgba(196,154,79,0.42);
    border-radius: 28px;
    transform: rotate(12deg);
}
.hero-visual img { border-radius: 26px; width: 100%; }

.hero-photo { overflow: hidden; min-height: 520px; }
.hero-photo img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    object-position: center;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.4);
}
.image-caption-card {
    position: absolute;
    left: 32px;
    bottom: 32px;
    z-index: 3;
    display: grid;
    gap: 4px;
    max-width: 310px;
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(255, 253, 248, 0.9);
    border: 1px solid rgba(255,255,255,0.56);
    box-shadow: 0 18px 45px rgba(16,23,28,0.18);
    backdrop-filter: blur(12px);
}
.image-caption-card strong { color: var(--ink); line-height: 1.2; }
.image-caption-card span { color: var(--ink-soft); font-size: 13px; font-weight: 800; }
.photo-frame-dark img,
.page-photo-card img,
.image-band-photo img,
.visual-intro-photo img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
}
.slab-image.photo-frame-dark { aspect-ratio: 4 / 3; overflow: hidden; border-radius: 26px; }
.slab-image.photo-frame-dark img { border-radius: 24px; }


.intro-band {
    transform: translateY(-24px);
    position: relative;
    z-index: 2;
}
.intro-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}
.intro-card {
    background: var(--ink);
    color: white;
    padding: 28px;
    border-radius: var(--radius-lg);
    min-height: 206px;
    box-shadow: var(--shadow-soft);
}
.intro-card:nth-child(2) { background: var(--slate); }
.intro-card:nth-child(3) { background: #efe7d7; color: var(--ink); }
.intro-card h2 { color: inherit; font-size: 27px; margin-top: 34px; }
.intro-card p { margin-top: 12px; color: rgba(255,255,255,0.75); }
.intro-card:nth-child(3) p { color: var(--ink-soft); }
.card-index {
    font-weight: 900;
    color: var(--brass);
    letter-spacing: 0.1em;
}

.section { padding: clamp(68px, 8vw, 106px) 0; }
.split-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 440px);
    gap: 28px;
    align-items: end;
    margin-bottom: 36px;
}
.section-note { color: var(--ink-soft); font-size: 18px; }

.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.category-card,
.product-card,
.lane-card,
.trade-card {
    position: relative;
    border: 1px solid var(--line);
    background: rgba(255,255,255,0.72);
    border-radius: var(--radius-lg);
    padding: 28px;
    overflow: hidden;
    box-shadow: 0 10px 34px rgba(16, 23, 28, 0.06);
}
.category-card:hover,
.product-card:hover,
.lane-card:hover,
.trade-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-soft);
    color: inherit;
}
.category-icon {
    display: inline-grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 15px;
    background: rgba(196,154,79,0.16);
    color: var(--brass-deep);
    font-weight: 900;
    font-size: 23px;
    margin-bottom: 24px;
}
.category-card h3 { margin-bottom: 12px; }
.category-card p,
.product-card p,
.lane-card p,
.trade-card p { color: var(--ink-soft); margin-top: 12px; }

.dark-slab {
    background: var(--ink);
    color: white;
    padding: 32px 0;
}
.slab-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: clamp(28px, 5vw, 72px);
    align-items: center;
    background: linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-xl);
    padding: clamp(22px, 4vw, 48px);
}
.dark-slab h2,
.dark-slab .eyebrow { color: white; }
.dark-slab .eyebrow { color: var(--brass); }
.slab-copy p { color: rgba(255,255,255,0.73); margin-top: 18px; font-size: 18px; }
.slab-image img { border-radius: 24px; background: rgba(255,255,255,0.06); }
.check-list,
.support-list {
    list-style: none;
    padding: 0;
    margin: 24px 0 28px;
    display: grid;
    gap: 12px;
}
.check-list li,
.support-list li {
    position: relative;
    padding-left: 32px;
    color: rgba(255,255,255,0.82);
}
.check-list li:before,
.support-list li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--brass);
    box-shadow: inset 0 0 0 5px var(--ink);
}
.support-list li { color: var(--ink-soft); }
.support-list li:before { box-shadow: inset 0 0 0 5px var(--cloud); }

.process-section { background: var(--cloud); }
.process-line {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--paper);
}
.process-step { padding: 28px; border-right: 1px solid var(--line); }
.process-step:last-child { border-right: 0; }
.process-step span { color: var(--brass-deep); font-weight: 900; text-transform: uppercase; letter-spacing: 0.12em; font-size: 12px; }
.process-step p { margin-top: 22px; color: var(--ink-soft); }
.text-link { font-weight: 900; color: var(--brass-deep); justify-self: end; }

.cta-panel {
    padding: 76px 0;
    background:
        radial-gradient(circle at top right, rgba(196,154,79,0.22), transparent 32%),
        var(--charcoal);
    color: white;
}
.cta-panel.slim { padding: 54px 0; }
.cta-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 26px;
    align-items: center;
}
.cta-panel h2 { color: white; }
.cta-panel p { color: rgba(255,255,255,0.74); margin-top: 12px; max-width: 720px; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: flex-end; }
.phone-pill { border: 1px solid rgba(255,255,255,0.22); color: white; padding: 14px 18px; min-height: 50px; }
.phone-pill:hover { background: rgba(255,255,255,0.08); color: white; }

.page-hero {
    padding: clamp(70px, 8vw, 112px) 0;
    background: linear-gradient(145deg, var(--cloud), var(--paper));
    overflow: hidden;
}
.page-hero.compact { padding: clamp(58px, 7vw, 92px) 0; }
.page-hero p { margin-top: 22px; max-width: 760px; color: var(--ink-soft); font-size: 19px; }
.page-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
    gap: 44px;
    align-items: center;
}
.page-hero-card {
    border-radius: var(--radius-xl);
    padding: 16px;
    background: rgba(255,255,255,0.7);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
}
.page-hero-card img { border-radius: 24px; }

.content-grid.two-col,
.split-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
    gap: clamp(30px, 5vw, 70px);
    align-items: start;
}
.copy-block p { margin-top: 18px; color: var(--ink-soft); font-size: 18px; }
.values-stack { display: grid; gap: 12px; }
.values-stack div {
    padding: 22px;
    background: var(--cloud);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
}
.values-stack strong { display: block; margin-bottom: 6px; color: var(--ink); }
.values-stack span { color: var(--ink-soft); }
.pale-section { background: var(--cloud); }
.statement-panel {
    max-width: 960px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    padding: clamp(30px, 5vw, 58px);
    box-shadow: var(--shadow-soft);
}
.statement-panel p:not(.eyebrow) { margin-top: 18px; font-size: 19px; color: var(--ink-soft); }
.feature-lanes,
.trade-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.trade-grid { grid-template-columns: repeat(4, 1fr); }
.lane-card,
.trade-card { min-height: 220px; }
.trade-card span { color: var(--brass-deep); font-weight: 900; }

.filter-toolbar {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 14px;
    align-items: end;
    margin-bottom: 24px;
}
.search-label {
    grid-column: 1 / -1;
    font-weight: 900;
    color: var(--ink);
}
#productSearch,
.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
    width: 100%;
    border: 1px solid rgba(16,23,28,0.16);
    background: white;
    color: var(--ink);
    border-radius: 16px;
    padding: 14px 16px;
    font: inherit;
    outline: none;
}
#productSearch:focus,
.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus {
    border-color: var(--brass);
    box-shadow: 0 0 0 4px rgba(196,154,79,0.14);
}
.filter-buttons { display: flex; flex-wrap: wrap; gap: 8px; justify-content: flex-end; }
.filter-buttons button {
    border: 1px solid var(--line);
    background: white;
    color: var(--ink-soft);
    border-radius: 999px;
    padding: 12px 15px;
    font-weight: 900;
    cursor: pointer;
}
.filter-buttons button.active,
.filter-buttons button:hover { background: var(--ink); color: white; border-color: var(--ink); }
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.product-card { min-height: 292px; display: flex; flex-direction: column; }
.product-card > span {
    color: var(--brass-deep);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 12px;
    margin-bottom: 18px;
}
.product-card h2 { font-size: 26px; }
.availability { font-size: 14px; font-weight: 900; color: var(--ink) !important; }
.mini-cta {
    margin-top: auto;
    padding: 11px 14px;
    background: var(--cloud);
    color: var(--ink);
    align-self: flex-start;
    font-size: 14px;
}
.mini-cta:hover { background: var(--brass); color: var(--ink); }
.product-card.is-hidden { display: none; }


.image-band-section,
.visual-intro-section {
    padding: clamp(58px, 7vw, 92px) 0;
    background: var(--paper);
}
.visual-intro-section { padding-bottom: 0; }
.image-band-grid,
.visual-intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
    gap: clamp(28px, 5vw, 62px);
    align-items: center;
}
.image-band-grid.reverse { grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1.08fr); }
.image-band-grid.reverse .image-band-photo { order: 2; }
.image-band-grid.reverse .image-band-copy { order: 1; }
.image-band-photo,
.visual-intro-photo {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
    aspect-ratio: 16 / 10;
    background: var(--cloud);
}
.image-band-copy,
.visual-intro-copy {
    border-left: 4px solid var(--brass);
    padding-left: clamp(22px, 4vw, 34px);
}
.image-band-copy p:not(.eyebrow),
.visual-intro-copy p {
    margin-top: 18px;
    color: var(--ink-soft);
    font-size: 18px;
}
.page-photo-card { overflow: hidden; aspect-ratio: 4 / 3; }
.page-photo-card img { min-height: 100%; }

.contact-layout {
    display: grid;
    grid-template-columns: 0.78fr 1.22fr;
    gap: 24px;
    align-items: start;
}
.contact-card,
.enquiry-form-wrap {
    border-radius: var(--radius-xl);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
}
.contact-card {
    background: var(--ink);
    color: white;
    padding: clamp(26px, 4vw, 42px);
    position: sticky;
    top: calc(var(--header-height) + 24px);
}
.contact-card h2 { color: white; margin-bottom: 26px; }
.contact-detail { padding: 18px 0; border-top: 1px solid rgba(255,255,255,0.12); }
.contact-detail span { display: block; color: var(--brass); text-transform: uppercase; letter-spacing: 0.12em; font-size: 12px; font-weight: 900; margin-bottom: 7px; }
.contact-detail a { color: white; }
.small-note { color: rgba(255,255,255,0.72); margin: 26px 0; }
.enquiry-form-wrap { padding: clamp(24px, 4vw, 42px); background: white; }
.enquiry-form { display: grid; gap: 16px; }
.form-row label { display: block; font-weight: 900; color: var(--ink); margin-bottom: 7px; }
.form-row.split { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.form-alert { padding: 14px 16px; border-radius: 16px; margin-bottom: 18px; font-weight: 800; }
.form-alert.success { background: #edf7ec; color: #1d5a26; }
.form-alert.error { background: #fff1ee; color: #8f2f20; }
.map-section iframe { width: 100%; height: 430px; border: 0; display: block; }

.legal-content {
    max-width: 900px;
    background: white;
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    padding: clamp(28px, 5vw, 58px);
    box-shadow: var(--shadow-soft);
}
.legal-content h2 { margin-bottom: 18px; }
.legal-content h3 { margin-top: 28px; margin-bottom: 8px; }
.legal-content p { color: var(--ink-soft); margin-top: 10px; }
.legal-content a { color: var(--brass-deep); font-weight: 800; }

.site-footer {
    background: #0f171c;
    color: white;
    padding: 58px 0 24px;
}
.footer-panel {
    display: grid;
    grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr);
    gap: 44px;
    padding-bottom: 42px;
    border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-brand img { width: 220px; }
.footer-brand p { color: rgba(255,255,255,0.70); margin: 24px 0 16px; max-width: 430px; }
.footer-link { color: var(--brass); font-weight: 800; }
.footer-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}
.footer-columns h2 {
    color: white;
    font-size: 16px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.footer-columns p,
.footer-menu a { color: rgba(255,255,255,0.72); }
.footer-menu { display: grid; gap: 10px; }
.footer-menu a:hover { color: var(--brass); }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-top: 22px;
    color: rgba(255,255,255,0.56);
    font-size: 14px;
}

.protected-image {
    position: relative;
    -webkit-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
}
.protected-image img {
    pointer-events: none;
    -webkit-user-drag: none;
    user-drag: none;
}
.protected-image:before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background: transparent;
    border-radius: inherit;
}
.logo-wrap.protected-image:before,
.footer-logo-wrap.protected-image:before { display: none; }

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 700ms ease, transform 700ms ease;
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1080px) {
    .header-grid { grid-template-columns: auto auto; justify-content: space-between; }
    .nav-toggle { display: inline-block; justify-self: end; }
    .primary-nav {
        position: fixed;
        inset: var(--header-height) 18px auto 18px;
        background: rgba(255,253,248,0.98);
        border: 1px solid var(--line);
        border-radius: 24px;
        box-shadow: var(--shadow);
        padding: 18px;
        transform: translateY(-18px);
        opacity: 0;
        visibility: hidden;
        transition: 220ms ease;
    }
    .primary-nav.is-open { transform: translateY(0); opacity: 1; visibility: visible; }
    .menu { display: grid; gap: 4px; }
    .menu a { display: block; padding: 14px 16px; }
    .header-cta { display: none; }
    .hero-grid,
    .slab-grid,
    .page-hero-grid,
    .contact-layout,
    .footer-panel { grid-template-columns: 1fr; }
    .category-grid,
    .product-grid,
    .trade-grid { grid-template-columns: repeat(2, 1fr); }
    .image-band-grid,
    .visual-intro-grid,
    .image-band-grid.reverse { grid-template-columns: 1fr; }
    .image-band-grid.reverse .image-band-photo,
    .image-band-grid.reverse .image-band-copy { order: initial; }
    .intro-grid,
    .feature-lanes { grid-template-columns: 1fr; }
    .process-line { grid-template-columns: repeat(2, 1fr); }
    .process-step:nth-child(2) { border-right: 0; }
    .contact-card { position: static; }
}

@media (max-width: 760px) {
    :root { --header-height: 74px; }
    .container { width: min(100% - 28px, var(--container)); }
    .brand img { width: 176px; }
    h1 { font-size: clamp(38px, 13vw, 56px); }
    h2 { font-size: clamp(29px, 9vw, 42px); }
    .hero { padding-top: 54px; }
    .hero-grid { grid-template-columns: 1fr; }
    .intro-band { transform: none; padding-top: 14px; }
    .category-grid,
    .product-grid,
    .trade-grid,
    .filter-toolbar,
    .split-head,
    .content-grid.two-col,
    .split-content,
    .cta-grid,
    .footer-columns { grid-template-columns: 1fr; }
    .filter-buttons { justify-content: flex-start; }
    .process-line { grid-template-columns: 1fr; }
    .process-step { border-right: 0; border-bottom: 1px solid var(--line); }
    .process-step:last-child { border-bottom: 0; }
    .form-row.split { grid-template-columns: 1fr; }
    .cta-actions { justify-content: flex-start; }
    .footer-bottom { flex-direction: column; }
    .map-section iframe { height: 340px; }
}

    .hero-photo { min-height: auto; }
    .hero-photo img { height: 360px; }
    .image-caption-card { left: 22px; right: 22px; bottom: 22px; }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.001ms !important;
    }
    .reveal { opacity: 1; transform: none; }
}
