:root {
    --ink: #15251f;
    --forest: #17392b;
    --forest-deep: #0d271d;
    --forest-soft: #315845;
    --steel: #526e75;
    --gold: #c79b63;
    --gold-pale: #eadbc6;
    --paper: #f7f5f0;
    --white: #ffffff;
    --mist: #edf1ef;
    --line: #d7ddd9;
    --muted: #5b6661;
    --danger: #a23c36;
    --shadow: 0 18px 44px rgba(19, 43, 33, 0.12);
    --shell: min(1380px, calc(100% - 48px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family: "Times New Roman", Times, serif;
    font-size: 18px;
    line-height: 1.55;
    letter-spacing: 0;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; letter-spacing: 0; }
button, select { cursor: pointer; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.08; font-weight: 700; }
h1 { font-size: clamp(2.75rem, 5rem, 5rem); }
h2 { font-size: clamp(2rem, 3rem, 3rem); }
h3 { font-size: 1.35rem; }
p { color: var(--muted); }
address { font-style: normal; }
.shell { width: var(--shell); margin-inline: auto; }
.section { padding: 104px 0; }
.section-muted { background: var(--paper); }
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.skip-link { position: fixed; z-index: 1000; left: 16px; top: -80px; background: var(--white); color: var(--forest); padding: 12px 18px; }
.skip-link:focus { top: 16px; }
.eyebrow { display: block; margin: 0 0 14px; color: var(--gold); font-size: .82rem; font-weight: 700; text-transform: uppercase; }
.eyebrow.light { color: #f2d5ae; }
.button {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    padding: 12px 22px;
    border: 1px solid transparent;
    border-radius: 3px;
    text-decoration: none;
    font-weight: 700;
    line-height: 1.2;
    transition: background-color .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--white); background: var(--forest); }
.button-primary:hover { background: var(--forest-soft); }
.button-gold { color: var(--forest-deep); background: var(--gold); }
.button-gold:hover { background: #d7b582; }
.button-outline { color: var(--forest); border-color: var(--forest); background: transparent; }
.button-outline:hover { color: var(--white); background: var(--forest); }
.button-ghost-light { color: var(--white); border-color: rgba(255,255,255,.72); background: rgba(9,31,23,.2); }
.button-ghost-light:hover { background: var(--white); color: var(--forest); }
.full-width { width: 100%; }
.text-link { color: var(--forest); font-weight: 700; text-decoration-thickness: 1px; text-underline-offset: 5px; }
.text-link:hover { color: var(--gold); }

.utility-bar { background: var(--forest-deep); color: #eaf0ed; font-size: .82rem; }
.utility-inner { min-height: 34px; display: flex; justify-content: flex-end; align-items: center; gap: 28px; }
.utility-inner a { color: inherit; text-decoration: none; font-weight: 700; }
.site-header { position: relative; z-index: 100; background: rgba(255,255,255,.98); border-bottom: 1px solid var(--line); }
.site-header.sticky { position: sticky; top: 0; box-shadow: 0 8px 24px rgba(15,40,30,.08); }
.header-inner { height: 92px; display: grid; grid-template-columns: 245px 1fr auto; align-items: center; gap: 36px; }
.brand { display: block; width: 235px; height: 76px; overflow: hidden; background: var(--forest); }
.brand img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.main-nav { justify-self: center; display: flex; align-items: center; gap: 32px; }
.main-nav > a, .nav-dropdown > button { border: 0; background: none; color: var(--ink); font-size: .94rem; font-weight: 700; text-decoration: none; padding: 34px 0; }
.nav-dropdown > button { display: inline-flex; align-items: center; gap: 9px; }
.nav-dropdown > button::after { content: ""; width: 7px; height: 7px; margin-top: -4px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg); transition: transform .18s ease, margin .18s ease; }
.nav-dropdown.open > button::after { margin-top: 4px; transform: rotate(225deg); }
.main-nav > a:hover, .nav-dropdown > button:hover { color: var(--gold); }
.nav-dropdown { position: static; }
.mega-menu {
    position: absolute;
    left: 50%;
    top: calc(100% + 1px);
    width: min(1320px, calc(100vw - 48px));
    max-height: min(72vh, 670px);
    overflow: auto;
    padding: 30px;
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 8px);
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}
.nav-dropdown.open .mega-menu { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.mega-menu-head { display: flex; align-items: end; justify-content: space-between; gap: 24px; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.mega-menu-head strong { display: block; font-size: 1.65rem; }
.mega-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 26px 34px; padding-top: 26px; }
.mega-group a { display: block; color: var(--muted); font-size: .84rem; text-decoration: none; line-height: 1.35; margin-top: 8px; }
.mega-group .mega-category { color: var(--forest); font-size: .9rem; font-weight: 700; text-transform: uppercase; margin: 0 0 10px; }
.mega-group a:hover { color: var(--gold); }
.header-cta { display: inline-flex; min-height: 46px; align-items: center; padding: 10px 18px; color: var(--white); background: var(--forest); border: 1px solid var(--forest); text-decoration: none; font-weight: 700; }
.header-cta:hover { background: var(--forest-soft); }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 10px; border: 1px solid var(--line); background: var(--white); }
.menu-toggle > span:not(.sr-only) { display: block; height: 2px; margin: 5px 0; background: var(--forest); }

.home-hero { position: relative; min-height: min(760px, calc(100svh - 126px)); color: var(--white); display: flex; align-items: stretch; overflow: hidden; }
.hero-background, .category-hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-shade { position: absolute; inset: 0; background: rgba(8, 28, 22, .67); }
.hero-content { position: relative; z-index: 2; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; padding: 80px 0 130px; }
.hero-content h1 { max-width: 900px; margin-bottom: 24px; font-size: clamp(3.2rem, 5rem, 5rem); }
.hero-content > p:not(.eyebrow) { max-width: 720px; color: rgba(255,255,255,.88); font-size: 1.22rem; }
.hero-search { width: min(760px, 100%); display: grid; grid-template-columns: 1fr auto; margin: 20px 0 22px; background: var(--white); }
.hero-search input { min-width: 0; height: 60px; padding: 0 20px; border: 0; color: var(--ink); background: var(--white); outline-offset: -3px; }
.hero-search button { padding: 0 24px; border: 0; color: var(--forest-deep); background: var(--gold); font-weight: 700; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-proof { position: absolute; z-index: 2; bottom: 0; left: 0; right: 0; background: rgba(11,39,29,.92); border-top: 1px solid rgba(255,255,255,.18); }
.proof-grid { min-height: 88px; display: grid; grid-template-columns: repeat(3, 1fr); align-items: center; }
.proof-grid span { color: rgba(255,255,255,.75); padding: 0 28px; border-left: 1px solid rgba(255,255,255,.18); }
.proof-grid span:first-child { padding-left: 0; border-left: 0; }
.proof-grid strong { color: var(--white); margin-right: 8px; font-size: 1.35rem; }

.section-heading { max-width: 780px; margin-bottom: 44px; }
.section-heading h2 { margin-bottom: 0; }
.split-heading { max-width: none; display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(280px, .6fr); align-items: end; gap: 50px; }
.split-heading > p { margin-bottom: 4px; }
.category-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.category-tile { position: relative; min-height: 330px; overflow: hidden; color: var(--white); text-decoration: none; background: var(--forest); border-radius: 4px; }
.category-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.category-shade { position: absolute; inset: 0; background: rgba(8,31,23,.56); }
.category-copy { position: absolute; inset: auto 24px 24px; display: flex; flex-direction: column; align-items: flex-start; }
.category-copy small { color: #e8d0af; text-transform: uppercase; font-size: .75rem; font-weight: 700; }
.category-copy strong { font-size: 1.45rem; line-height: 1.15; margin: 5px 0 12px; }
.category-copy em { font-style: normal; text-decoration: underline; text-underline-offset: 5px; }
.category-tile:hover img { transform: scale(1.035); }
.section-action { display: flex; justify-content: center; margin-top: 36px; }

.expertise-band { background: var(--mist); }
.expertise-grid { display: grid; grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr); align-items: center; gap: 76px; }
.expertise-grid.reverse .expertise-image { order: 2; }
.expertise-image { aspect-ratio: 4 / 3; overflow: hidden; border-radius: 4px; box-shadow: var(--shadow); }
.expertise-image img { width: 100%; height: 100%; object-fit: cover; }
.expertise-copy > p { font-size: 1.08rem; }
.process-list { margin: 32px 0; border-top: 1px solid #cbd4d0; }
.process-list > div { position: relative; display: grid; grid-template-columns: 42px 1fr; gap: 4px 14px; padding: 20px 0; border-bottom: 1px solid #cbd4d0; }
.process-list span { grid-row: span 2; color: var(--gold); font-weight: 700; }
.process-list strong { font-size: 1.12rem; }
.process-list p { margin: 0; }
.principle-list > div { padding: 20px 0; border-top: 1px solid #cad2ce; }
.principle-list strong { font-size: 1.2rem; }
.principle-list p { margin: 5px 0 0; }

.product-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 22px; }
.product-card { min-width: 0; background: var(--white); border: 1px solid var(--line); border-radius: 4px; overflow: hidden; transition: box-shadow .2s ease, transform .2s ease; }
.product-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.product-image { display: block; aspect-ratio: 1 / 1; padding: 22px; overflow: hidden; background: var(--paper); }
.product-image img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; transition: transform .3s ease; }
.product-card:hover .product-image img { transform: scale(1.035); }
.product-card-body { display: flex; min-height: 205px; flex-direction: column; padding: 22px; }
.product-family { color: var(--gold); font-size: .72rem; font-weight: 700; text-transform: uppercase; }
.product-card h2 { margin: 10px 0 22px; font-size: 1.12rem; line-height: 1.28; }
.product-card h2 a { text-decoration: none; }
.product-card-actions { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.product-card-actions .text-link { font-size: .88rem; }
.icon-link { width: 36px; height: 36px; flex: 0 0 36px; display: grid; place-items: center; border: 1px solid var(--forest); text-decoration: none; font-size: 1.3rem; line-height: 1; }
.icon-link:hover { color: var(--white); background: var(--forest); }
.featured-section { background: var(--white); }
.product-grid-featured { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.service-strip { padding: 58px 0; background: var(--steel); color: var(--white); }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.service-grid > div { padding: 8px 30px; border-left: 1px solid rgba(255,255,255,.25); }
.service-grid > div:first-child { padding-left: 0; border-left: 0; }
.service-grid span { color: var(--gold-pale); font-size: .8rem; }
.service-grid h2 { margin: 10px 0; font-size: 1.45rem; }
.service-grid p { margin: 0; color: rgba(255,255,255,.78); font-size: .92rem; }
.cta-band { padding: 78px 0; color: var(--white); background: var(--forest-deep); }
.cta-inner { display: flex; justify-content: space-between; align-items: center; gap: 64px; }
.cta-inner h2 { max-width: 850px; margin: 0; }
.cta-inner > div:last-child { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.phone-link { color: var(--white); font-weight: 700; }

.page-hero { padding: 92px 0; color: var(--white); background: var(--forest-deep); }
.page-hero h1 { max-width: 960px; margin-bottom: 18px; font-size: clamp(2.8rem, 4rem, 4rem); }
.page-hero p:not(.eyebrow) { max-width: 760px; color: rgba(255,255,255,.78); font-size: 1.15rem; }
.compact-hero { padding: 74px 0; background: var(--steel); }
.compact-hero h1 { max-width: 1000px; }
.breadcrumbs { display: flex; gap: 9px; align-items: center; padding-top: 20px; color: var(--muted); font-size: .84rem; overflow: hidden; }
.breadcrumbs a { color: var(--forest); }
.breadcrumbs span[aria-current] { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.category-hero { position: relative; min-height: 470px; display: flex; align-items: center; color: var(--white); overflow: hidden; }
.category-hero-content { position: relative; z-index: 2; padding: 70px 0; }
.category-hero-content h1 { max-width: 900px; margin-bottom: 18px; }
.category-hero-content p:not(.eyebrow) { max-width: 700px; color: rgba(255,255,255,.84); font-size: 1.15rem; }
.subcategory-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.subcategory-card { display: grid; grid-template-columns: 145px 1fr; min-height: 180px; color: var(--ink); background: var(--white); border: 1px solid var(--line); border-radius: 4px; overflow: hidden; text-decoration: none; }
.subcategory-card img { width: 100%; height: 100%; object-fit: contain; padding: 12px; background: var(--paper); }
.subcategory-card > div { display: flex; flex-direction: column; justify-content: center; padding: 22px; }
.subcategory-card small { color: var(--gold); font-weight: 700; text-transform: uppercase; }
.subcategory-card h3 { margin: 8px 0 18px; font-size: 1.2rem; }
.subcategory-card span { color: var(--forest); text-decoration: underline; text-underline-offset: 4px; }
.subcategory-card:hover { border-color: var(--forest); box-shadow: var(--shadow); }
.range-hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 70px; align-items: center; }
.range-hero-grid img { width: 100%; max-height: 400px; object-fit: contain; background: var(--white); border-radius: 4px; }

.catalogue-layout { display: grid; grid-template-columns: 280px minmax(0, 1fr); gap: 42px; align-items: start; }
.catalogue-sidebar { position: sticky; top: 116px; }
.filter-panel { padding: 24px; border: 1px solid var(--line); background: var(--paper); }
.filter-panel h2 { font-size: 1.4rem; margin-bottom: 22px; }
.filter-panel label { display: block; margin-bottom: 18px; color: var(--forest); font-size: .85rem; font-weight: 700; }
.filter-panel input, .filter-panel select, .catalogue-toolbar select { width: 100%; height: 48px; margin-top: 6px; padding: 0 12px; color: var(--ink); background: var(--white); border: 1px solid #bdc8c2; border-radius: 0; }
.catalogue-toolbar { min-height: 54px; display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 22px; border-bottom: 1px solid var(--line); }
.catalogue-toolbar p { margin: 0; color: var(--muted); }
.catalogue-toolbar select { width: auto; margin: 0 0 10px; }
.catalogue-layout .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.empty-state { padding: 60px 20px; text-align: center; background: var(--paper); }

.product-detail { padding-top: 54px; }
.product-detail-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(420px, .95fr); gap: 72px; align-items: start; }
.gallery-main { aspect-ratio: 1 / 1; display: grid; place-items: center; padding: 34px; background: var(--paper); border: 1px solid var(--line); }
.gallery-main img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; }
.gallery-thumbs { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; margin-top: 12px; }
.gallery-thumbs button { aspect-ratio: 1 / 1; padding: 8px; border: 1px solid var(--line); background: var(--white); }
.gallery-thumbs button.active { border-color: var(--forest); box-shadow: inset 0 0 0 1px var(--forest); }
.gallery-thumbs img { width: 100%; height: 100%; object-fit: contain; }
.product-summary { padding-top: 22px; }
.product-summary h1 { margin-bottom: 24px; font-size: 3rem; }
.product-intro { font-size: 1.08rem; }
.summary-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 30px 0; }
.support-facts { border-top: 1px solid var(--line); }
.support-facts > div { display: grid; grid-template-columns: 130px 1fr; gap: 18px; padding: 15px 0; border-bottom: 1px solid var(--line); }
.support-facts dt { color: var(--forest); font-weight: 700; }
.support-facts dd { margin: 0; color: var(--muted); }
.product-content-grid { display: grid; grid-template-columns: minmax(0, 1fr) 390px; gap: 70px; align-items: start; }
.content-blocks { display: grid; gap: 20px; }
.content-block { padding: 28px; background: var(--white); border: 1px solid var(--line); border-radius: 3px; overflow: hidden; }
.content-block h2, .content-block h3 { margin-bottom: 18px; font-size: 1.45rem; }
.content-table-block { padding: 0; }
.content-table-block table { min-width: 640px; }
.specification-table { min-width: 760px; }
.specification-table caption { padding: 15px 18px; color: var(--white); background: var(--forest); text-align: left; font-size: 1.05rem; font-weight: 700; }
.specification-table th[scope="row"] { position: sticky; left: 0; z-index: 1; min-width: 210px; color: var(--forest-deep); background: #e7eee9; }
.specification-table td { min-width: 155px; background: var(--white); }
.specification-table tr:nth-child(even) th[scope="row"], .specification-table tr:nth-child(even) td { background: var(--paper); }
.content-block ul { margin: 0; padding-left: 22px; }
.content-block li + li { margin-top: 8px; }
.rich-copy > :last-child, .rich-copy p:last-child { margin-bottom: 0; }
.rich-copy img { height: auto; }
.table-scroll { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; font-size: .95rem; }
th, td { min-width: 130px; padding: 12px 14px; text-align: left; vertical-align: top; border: 1px solid var(--line); }
th { color: var(--white); background: var(--forest); }
tr:nth-child(even) td { background: var(--paper); }
.application-block { margin-top: 20px; }
.specifications-heading { margin-top: 60px; }
.product-specifications { margin-top: 60px; }
.product-specifications .specifications-heading { margin-top: 0; }
.enquiry-aside { position: sticky; top: 116px; }
.enquiry-panel { padding: 30px; color: var(--white); background: var(--forest-deep); border-radius: 3px; }
.enquiry-panel h2 { font-size: 2rem; }
.enquiry-panel > p:not(.eyebrow) { color: rgba(255,255,255,.76); }
.enquiry-form { display: grid; gap: 16px; }
.form-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.enquiry-form label { display: grid; gap: 6px; font-size: .84rem; font-weight: 700; }
.enquiry-form input, .enquiry-form textarea { width: 100%; min-width: 0; padding: 11px 12px; border: 1px solid #bdc8c2; background: var(--white); color: var(--ink); border-radius: 0; }
.enquiry-form textarea { resize: vertical; }
.honeypot { position: absolute; left: -10000px; }
.form-submit { display: flex; align-items: center; gap: 14px; }
.form-status { margin: 0; color: inherit; font-size: .85rem; }
.contact-form-wrap .enquiry-form { margin-top: 26px; }
.contact-form-wrap .form-status { color: var(--muted); }
.related-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.search-page-form { max-width: 760px; display: grid; grid-template-columns: 1fr auto; margin-top: 28px; }
.search-page-form input { min-width: 0; height: 58px; padding: 0 18px; border: 0; }
.search-page-form button { padding: 0 28px; border: 0; color: var(--forest-deep); background: var(--gold); font-weight: 700; }
.editorial-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; }
.large-copy p { font-size: 1.3rem; color: var(--ink); }
.numbers-band { padding: 64px 0; background: var(--gold-pale); }
.numbers-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.numbers-grid > div { padding: 10px 30px; border-left: 1px solid rgba(23,57,43,.25); }
.numbers-grid > div:first-child { padding-left: 0; border-left: 0; }
.numbers-grid strong, .numbers-grid span { display: block; }
.numbers-grid strong { color: var(--forest); font-size: 2.6rem; overflow-wrap: anywhere; }
.numbers-grid > div:first-child strong, .numbers-grid > div:last-child strong { font-size: 1.8rem; }
.numbers-grid span { color: var(--muted); }
.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 76px; }
.contact-list { margin: 30px 0; border-top: 1px solid var(--line); }
.contact-list > div { display: grid; grid-template-columns: 130px 1fr; gap: 20px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.contact-list small { color: var(--gold); font-weight: 700; text-transform: uppercase; }
.contact-list a { color: var(--forest); font-weight: 700; }
.contact-form-wrap { padding: 36px; background: var(--paper); border: 1px solid var(--line); }
.legal-copy { max-width: 900px; }
.legal-copy h2 { margin-top: 34px; font-size: 1.8rem; }
.not-found { min-height: 65vh; display: grid; place-items: center; padding: 100px 0; text-align: center; background: var(--paper); }
.not-found h1 { max-width: 800px; margin-inline: auto; }
.not-found p { font-size: 1.15rem; }
.not-found > div > div { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; margin-top: 30px; }

.site-footer { padding-top: 76px; color: var(--white); background: #101b17; }
.footer-grid { display: grid; grid-template-columns: 1.45fr .8fr .7fr 1.05fr; gap: 60px; padding-bottom: 64px; }
.footer-brand img { width: 245px; height: 104px; object-fit: cover; background: var(--forest); }
.footer-brand p { max-width: 420px; margin-top: 22px; color: rgba(255,255,255,.66); }
.footer-grid h2 { margin-bottom: 20px; font-size: 1.15rem; color: var(--gold-pale); }
.footer-grid > div:not(.footer-brand) > a { display: block; margin: 9px 0; color: rgba(255,255,255,.75); text-decoration: none; }
.footer-grid a:hover { color: var(--gold); }
.footer-contact address, .footer-contact span { display: block; margin-top: 12px; color: rgba(255,255,255,.65); }
.footer-bottom { min-height: 64px; display: flex; align-items: center; justify-content: space-between; gap: 20px; color: rgba(255,255,255,.52); border-top: 1px solid rgba(255,255,255,.12); font-size: .84rem; }
.whatsapp-float { position: fixed; z-index: 90; right: 22px; bottom: 22px; width: 56px; height: 56px; display: grid; place-items: center; color: #113726; background: #74d676; border: 3px solid var(--white); border-radius: 50%; box-shadow: 0 10px 28px rgba(0,0,0,.2); font-size: .85rem; font-weight: 700; text-decoration: none; }
.whatsapp-float svg { width: 29px; height: 29px; fill: var(--white); }

@media (max-width: 1180px) {
    :root { --shell: min(100% - 36px, 1120px); }
    .header-inner { grid-template-columns: 205px 1fr auto; gap: 20px; }
    .brand { width: 200px; height: 66px; }
    .main-nav { gap: 20px; }
    .mega-grid { grid-template-columns: repeat(4, 1fr); }
    .category-grid, .product-grid, .related-grid { grid-template-columns: repeat(3, 1fr); }
    .catalogue-layout .product-grid { grid-template-columns: repeat(2, 1fr); }
    .product-detail-grid { gap: 44px; }
    .product-content-grid { grid-template-columns: minmax(0,1fr) 350px; gap: 40px; }
}

@media (max-width: 920px) {
    .utility-inner span { margin-right: auto; }
    .header-inner { height: 78px; grid-template-columns: 190px 1fr 44px; }
    .brand { width: 180px; height: 60px; }
    .menu-toggle { display: block; grid-column: 3; }
    .header-cta { justify-self: end; }
    .main-nav { position: fixed; top: 112px; right: auto; bottom: 0; left: 0; width: 100%; justify-self: stretch; display: block; padding: 24px; overflow-y: auto; background: var(--white); transform: translateX(100%); transition: transform .25s ease; }
    .main-nav.open { transform: translateX(0); }
    .main-nav > a, .nav-dropdown > button { display: block; width: 100%; padding: 15px 0; text-align: left; border-bottom: 1px solid var(--line); }
    .mega-menu { position: static; width: 100%; max-height: none; display: none; padding: 18px 0; border: 0; box-shadow: none; opacity: 1; visibility: visible; transform: none; }
    .nav-dropdown.open .mega-menu { display: block; transform: none; }
    .mega-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-content h1 { font-size: 3.5rem; }
    .category-grid { grid-template-columns: repeat(2, 1fr); }
    .expertise-grid, .editorial-grid, .contact-grid { grid-template-columns: 1fr; gap: 44px; }
    .expertise-grid.reverse .expertise-image { order: 0; }
    .product-grid, .product-grid-featured, .related-grid { grid-template-columns: repeat(2, 1fr); }
    .service-grid, .numbers-grid { grid-template-columns: repeat(2, 1fr); gap: 30px 0; }
    .service-grid > div:nth-child(3), .numbers-grid > div:nth-child(3) { padding-left: 0; border-left: 0; }
    .subcategory-grid { grid-template-columns: repeat(2, 1fr); }
    .range-hero-grid, .product-detail-grid, .product-content-grid { grid-template-columns: 1fr; }
    .range-hero-grid img { max-height: 340px; }
    .product-summary { padding-top: 0; }
    .enquiry-aside, .catalogue-sidebar { position: static; }
    .catalogue-layout { grid-template-columns: 1fr; }
    .filter-panel { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px 18px; }
    .filter-panel h2 { grid-column: 1 / -1; margin: 0; }
    .filter-panel label { margin: 0; }
    .filter-panel .button { align-self: end; }
    .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
    .footer-contact { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
    :root { --shell: calc(100% - 28px); }
    body { font-size: 17px; }
    .section { padding: 72px 0; }
    .utility-bar { display: none; }
    .site-header.sticky { top: 0; }
    .header-inner { height: 72px; grid-template-columns: 152px 1fr 42px; gap: 10px; }
    .brand { width: 150px; height: 52px; }
    .header-cta { display: none; }
    .main-nav { inset: 72px 0 0; }
    .mega-menu-head { display: block; }
    .mega-menu-head .text-link { display: inline-block; margin-top: 14px; }
    .mega-grid { grid-template-columns: 1fr; }
    .home-hero { min-height: calc(100svh - 112px); }
    .hero-content { padding: 42px 0 122px; }
    .hero-content h1 { margin-bottom: 16px; font-size: 2.65rem; line-height: 1.02; }
    .hero-content > p:not(.eyebrow) { margin-bottom: 8px; font-size: 1rem; line-height: 1.4; }
    .hero-search, .search-page-form { grid-template-columns: 1fr; background: transparent; gap: 8px; }
    .hero-search button, .search-page-form button { height: 52px; }
    .hero-actions { width: 100%; }
    .hero-actions .button { width: 100%; }
    .hero-actions .button-ghost-light { display: none; }
    .proof-grid { grid-template-columns: 1fr; padding: 12px 0; }
    .proof-grid span { padding: 5px 0; border: 0; }
    .split-heading { grid-template-columns: 1fr; gap: 18px; }
    .category-grid, .product-grid, .product-grid-featured, .related-grid, .subcategory-grid { grid-template-columns: 1fr; }
    .category-tile { min-height: 290px; }
    .expertise-grid { gap: 34px; }
    .process-list > div { grid-template-columns: 34px 1fr; }
    .service-grid, .numbers-grid { grid-template-columns: 1fr; }
    .service-grid > div, .service-grid > div:nth-child(3), .numbers-grid > div, .numbers-grid > div:nth-child(3) { padding: 18px 0; border-left: 0; border-top: 1px solid rgba(255,255,255,.2); }
    .numbers-grid > div, .numbers-grid > div:nth-child(3) { border-color: rgba(23,57,43,.22); }
    .service-grid > div:first-child, .numbers-grid > div:first-child { border-top: 0; }
    .cta-inner { display: block; }
    .cta-inner > div:last-child { align-items: flex-start; margin-top: 28px; }
    .page-hero, .compact-hero { padding: 64px 0; }
    .page-hero h1 { font-size: 2.75rem; }
    .breadcrumbs { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 8px; white-space: nowrap; scrollbar-width: none; }
    .breadcrumbs::-webkit-scrollbar { display: none; }
    .breadcrumbs > * { flex: 0 0 auto; }
    .category-hero { min-height: 410px; }
    .subcategory-card { grid-template-columns: 105px 1fr; min-height: 155px; }
    .catalogue-toolbar { align-items: flex-start; }
    .catalogue-toolbar select { max-width: 145px; }
    .filter-panel { grid-template-columns: 1fr; }
    .catalogue-layout .product-grid { grid-template-columns: 1fr; }
    .product-detail-grid { gap: 30px; }
    .product-summary h1 { font-size: 2.05rem; }
    .summary-actions .button { width: 100%; }
    .support-facts > div, .contact-list > div { grid-template-columns: 1fr; gap: 4px; }
    .product-information { padding-top: 68px; }
    .content-block { padding: 20px; }
    .enquiry-panel, .contact-form-wrap { padding: 24px 20px; }
    .form-row { grid-template-columns: 1fr; }
    .editorial-grid { gap: 18px; }
    .large-copy p { font-size: 1.14rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 36px; }
    .footer-contact { grid-column: auto; }
    .footer-bottom { flex-direction: column; justify-content: center; align-items: flex-start; padding: 16px 0; }
    .whatsapp-float { right: 14px; bottom: 14px; width: 50px; height: 50px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
