:root {
    --ink: #1b3953;
    --ink-soft: #253d4a;
    --blue: #00458c;
    --teal: #00458c;
    --teal-dark: #00458c;
    --lime: #fcc808;
    --paper: #f4f4f4;
    --white: #ffffff;
    --muted: #666666;
    --line: #d9e1e8;
    --warning: #fcc808;
    --danger: #b83e4b;
    --radius: 22px;
    --shadow: 0 22px 55px rgba(7, 27, 44, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
h1, h2, h3, h4 { margin: 0; color: var(--ink); font-weight: 780; line-height: 1.12; letter-spacing: -.035em; }
h1 { font-size: clamp(2.6rem, 6vw, 5.65rem); }
h2 { font-size: clamp(2rem, 4vw, 3.65rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.55rem); }
p { margin: 0 0 1rem; }
ul { margin: 0; padding: 0; }

.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.narrow { width: min(820px, calc(100% - 40px)); margin-inline: auto; }
.section { padding: 96px 0; }
.section--soft { background: var(--paper); }
.section--dark { color: var(--white); background: var(--blue); }
.section--dark h2, .section--dark h3 { color: var(--white); }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 42px; }
.section-head > div { max-width: 750px; }
.section-head p { max-width: 640px; margin: 14px 0 0; color: var(--muted); font-size: 1.08rem; }
.section--dark .section-head p { color: #b9cad6; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; margin: 0 0 15px; color: var(--lime); font-size: .76rem; font-weight: 820; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow::before { width: 24px; height: 3px; border-radius: 20px; background: var(--lime); content: ""; }
.section--dark .eyebrow, .hero .eyebrow { color: var(--lime); }
.section--dark .eyebrow::before, .hero .eyebrow::before { background: var(--lime); }
.page-inner main h1, .page-inner main h2, .page-inner main h3, .page-inner main h4 { color: var(--blue); }
.page-inner .page-hero h1, .page-inner .page-title h1, .page-inner .section--dark h1, .page-inner .section--dark h2, .page-inner .section--dark h3, .page-inner .section--dark h4 { color: var(--white); }
.lead { color: var(--muted); font-size: clamp(1.06rem, 2vw, 1.28rem); line-height: 1.65; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; }
.button {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 12px 21px;
    border: 1px solid transparent;
    border-radius: 999px;
    color: var(--ink);
    background: var(--lime);
    font-weight: 760;
    line-height: 1.1;
    transition: transform .2s ease, background .2s ease, border .2s ease;
}
.button:hover { color: var(--white); transform: translateY(-2px); background: var(--blue); }
.button--light { color: var(--ink); background: var(--white); }
.button--light:hover { color: var(--ink); background: var(--lime); }
.button--outline { color: var(--blue); border-color: var(--blue); background: transparent; }
.button--outline:hover { color: var(--white); border-color: var(--blue); background: var(--blue); }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--teal-dark); font-weight: 780; }
.text-link:hover { text-decoration: underline; text-underline-offset: 4px; }

.site-topbar { color: var(--blue); background: var(--lime); font-size: .84rem; }
.topbar-inner { display: flex; min-height: 38px; align-items: center; justify-content: space-between; gap: 18px; }
.topbar-inner p { margin: 0; }
.topbar-links { display: flex; gap: 22px; font-weight: 700; }
.topbar-links a:hover { color: var(--white); }
.site-header { position: sticky; z-index: 50; top: 0; border-bottom: 1px solid rgba(255,255,255,.18); color: var(--white); background: rgba(0, 69, 140, .97); backdrop-filter: blur(16px); }
.header-inner { display: flex; min-height: 80px; align-items: center; justify-content: space-between; gap: 28px; }
.site-logo { display: flex; flex: 0 0 auto; width: 200px; align-items: center; }
.site-logo img { width: 200px; height: auto; }
.site-nav { display: flex; align-items: center; gap: 4px; }
.site-nav > a, .nav-group > button { padding: 11px 12px; border: 0; border-radius: 10px; color: #dbe8ef; background: transparent; font-size: .9rem; font-weight: 700; }
.site-nav > a:hover, .site-nav > a.active, .nav-group > button:hover { color: var(--white); background: rgba(255,255,255,.09); }
.nav-group { position: relative; }
.nav-group > button { display: flex; align-items: center; gap: 6px; }
.nav-group > button::after { content: "⌄"; font-size: .8rem; }
.nav-menu { position: absolute; top: 100%; left: 0; display: grid; min-width: 225px; padding: 9px; border: 1px solid var(--line); border-radius: 15px; color: var(--ink); background: var(--white); box-shadow: var(--shadow); opacity: 0; pointer-events: none; transform: translateY(-4px); transition: .18s ease; }
.nav-menu a { padding: 10px 12px; border-radius: 9px; font-size: .9rem; font-weight: 700; }
.nav-menu a:hover { background: var(--paper); }
.nav-group:hover .nav-menu, .nav-group:focus-within .nav-menu { opacity: 1; pointer-events: auto; transform: translateY(0); }
.nav-call { margin-left: 8px; color: var(--ink) !important; background: var(--lime) !important; }
.nav-toggle { display: none; width: 44px; height: 44px; padding: 0; border: 1px solid rgba(255,255,255,.18); border-radius: 12px; color: var(--white); background: transparent; }
.nav-toggle span, .nav-toggle::before, .nav-toggle::after { display: block; width: 20px; height: 2px; margin: 5px auto; border-radius: 10px; background: currentColor; content: ""; }

.hero { position: relative; overflow: hidden; min-height: 680px; color: var(--white); background: var(--blue); }
.hero::before { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,69,140,.97) 0%, rgba(0,69,140,.86) 46%, rgba(0,69,140,.24) 100%), url('../images/main-slider/3.jpg') center/cover; content: ""; }
.hero::after { position: absolute; right: -150px; bottom: -220px; width: 520px; height: 520px; border: 100px solid rgba(252,200,8,.14); border-radius: 50%; content: ""; }
.hero-inner { position: relative; z-index: 1; display: grid; min-height: 680px; align-items: center; grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr); gap: 80px; padding: 90px 0; }
.hero h1 { max-width: 800px; color: var(--white); }
.hero h1 span { color: var(--lime); }
.hero-copy > p:not(.eyebrow) { max-width: 680px; margin: 24px 0 31px; color: #d3e0e7; font-size: clamp(1.08rem, 2vw, 1.28rem); }
.hero-panel { align-self: end; padding: 26px; border: 1px solid rgba(255,255,255,.22); border-radius: var(--radius); background: rgba(27,57,83,.78); backdrop-filter: blur(14px); box-shadow: 0 30px 70px rgba(0,0,0,.25); }
.hero-panel p { color: #b9cad6; }
.hero-panel strong { display: block; margin-bottom: 8px; color: var(--white); font-size: 1.18rem; }
.hero-panel a { color: var(--lime); font-weight: 800; }
.hero-points { display: grid; gap: 10px; margin-top: 20px; list-style: none; }
.hero-points li { display: flex; align-items: center; gap: 10px; color: #e5eef3; }
.hero-points li::before { display: grid; width: 23px; height: 23px; flex: 0 0 23px; place-items: center; border-radius: 50%; color: var(--ink); background: var(--lime); content: "✓"; font-size: .72rem; font-weight: 900; }
.trust-strip { border-bottom: 1px solid var(--line); background: var(--white); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { padding: 26px 24px; border-left: 1px solid var(--line); }
.trust-item:last-child { border-right: 1px solid var(--line); }
.trust-item strong { display: block; color: var(--ink); }
.trust-item span { color: var(--muted); font-size: .9rem; }

.category-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.category-card { position: relative; overflow: hidden; min-height: 260px; padding: 28px; border-radius: var(--radius); color: var(--white); background: var(--ink); box-shadow: var(--shadow); transition: transform .2s ease; }
.category-card:hover { transform: translateY(-5px); }
.category-card:nth-child(2) { background: var(--blue); }
.category-card:nth-child(3) { background: #2b659c; }
.category-card:nth-child(4) { color: var(--ink); background: var(--lime); }
.category-card .count { display: inline-flex; padding: 5px 10px; border: 1px solid rgba(255,255,255,.22); border-radius: 999px; color: inherit; font-size: .76rem; font-weight: 780; }
.category-card h3 { max-width: 180px; margin-top: 72px; color: inherit; font-size: 1.9rem; }
.category-card p { margin: 9px 0 0; color: rgba(255,255,255,.72); }
.category-card:nth-child(4) p { color: #5c4a00; }
.category-arrow { position: absolute; right: 24px; bottom: 23px; display: grid; width: 43px; height: 43px; place-items: center; border-radius: 50%; color: var(--ink); background: var(--white); font-size: 1.25rem; }

.stock-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.stock-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: 0 12px 30px rgba(7,27,44,.07); transition: transform .2s ease, box-shadow .2s ease; }
.stock-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.stock-image { position: relative; display: grid; aspect-ratio: 4/3; place-items: center; overflow: hidden; background: linear-gradient(135deg, #eaf0f2, #f8fafb); }
.stock-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.stock-card:hover .stock-image img { transform: scale(1.035); }
.stock-placeholder { display: grid; width: 104px; height: 104px; place-items: center; border-radius: 28px; color: var(--teal-dark); background: var(--white); box-shadow: 0 15px 40px rgba(7,27,44,.12); font-size: 3rem; font-weight: 850; }
.stock-status { position: absolute; top: 15px; left: 15px; padding: 6px 11px; border-radius: 999px; color: var(--white); background: var(--teal-dark); font-size: .73rem; font-weight: 820; letter-spacing: .04em; text-transform: uppercase; }
.stock-status--reserved, .stock-status--coming-soon { color: var(--ink); background: var(--warning); }
.stock-status--sold { background: var(--danger); }
.stock-photo-count { position: absolute; right: 15px; bottom: 15px; padding: 5px 10px; border-radius: 999px; color: var(--white); background: rgba(7,27,44,.8); font-size: .75rem; font-weight: 750; }
.stock-body { padding: 23px; }
.stock-meta { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 12px; color: var(--teal-dark); font-size: .76rem; font-weight: 820; letter-spacing: .08em; text-transform: uppercase; }
.stock-price { color: var(--ink); font-size: 1.05rem; letter-spacing: -.02em; }
.stock-body h3 { margin-bottom: 10px; font-size: 1.32rem; }
.stock-body p { min-height: 50px; margin-bottom: 17px; color: var(--muted); font-size: .94rem; }
.stock-empty { grid-column: 1 / -1; padding: 60px 30px; border: 1px dashed #b8c7cf; border-radius: var(--radius); text-align: center; background: var(--white); }
.stock-empty h3 { margin-bottom: 9px; }
.stock-empty p { color: var(--muted); }

.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card { padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.service-icon { display: grid; width: 50px; height: 50px; margin-bottom: 26px; place-items: center; border-radius: 15px; color: var(--blue); background: #e8f1f9; font-size: 1.3rem; font-weight: 850; }
.service-card h3 { margin-bottom: 12px; }
.service-card p { margin: 0; color: var(--muted); }
.split { display: grid; align-items: center; grid-template-columns: 1fr 1fr; gap: 70px; }
.split-media { position: relative; }
.split-media img { width: 100%; min-height: 490px; border-radius: var(--radius); object-fit: cover; box-shadow: var(--shadow); }
.split-badge { position: absolute; right: -18px; bottom: 24px; max-width: 220px; padding: 19px; border-radius: 16px; color: var(--ink); background: var(--lime); font-weight: 770; box-shadow: var(--shadow); }
.about-story-title { margin-bottom: 24px; color: var(--blue); }
.check-list { display: grid; gap: 13px; margin: 24px 0 31px; list-style: none; }
.check-list li { display: flex; gap: 12px; color: var(--ink-soft); }
.check-list li::before { color: var(--teal-dark); content: "✓"; font-weight: 900; }
.review-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.review-card { padding: 29px; border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); background: rgba(255,255,255,.06); }
.review-stars { color: var(--lime); letter-spacing: .18em; }
.review-card blockquote { margin: 18px 0; color: #e0eaf0; font-size: 1.08rem; }
.review-card cite { color: #9fb5c3; font-style: normal; }
.cta-band { position: relative; overflow: hidden; padding: 60px 0; color: var(--white); background: var(--blue); }
.cta-band::after { position: absolute; right: -100px; top: -250px; width: 430px; height: 430px; border: 85px solid rgba(252,200,8,.24); border-radius: 50%; content: ""; }
.cta-inner { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 35px; }
.cta-inner h2 { max-width: 720px; color: var(--white); font-size: clamp(2rem, 4vw, 3.2rem); }
.cta-inner p { margin: 10px 0 0; color: #d7eeee; }

.page-hero { padding: 76px 0 70px; color: var(--white); background: linear-gradient(110deg, rgba(0,69,140,.98), rgba(0,69,140,.76)), url('../images/background/3.jpg') center/cover; }
.page-hero h1 { max-width: 900px; color: var(--white); font-size: clamp(2.6rem, 5vw, 4.8rem); }
.page-hero p { max-width: 720px; margin: 19px 0 0; color: #c8d7e0; font-size: 1.12rem; }
.breadcrumbs { display: flex; gap: 8px; margin-bottom: 21px; color: #b6c9d5; font-size: .84rem; font-weight: 700; }
.breadcrumbs a:hover { color: var(--lime); }
.filter-bar { display: flex; flex-wrap: wrap; gap: 9px; margin: -23px auto 44px; padding: 11px; border: 1px solid var(--line); border-radius: 999px; background: var(--white); box-shadow: 0 16px 40px rgba(7,27,44,.1); }
.filter-bar a { padding: 8px 15px; border-radius: 999px; color: var(--muted); font-size: .86rem; font-weight: 780; }
.filter-bar a:hover, .filter-bar a.active { color: var(--white); background: var(--teal-dark); }

.product-layout { display: grid; align-items: start; grid-template-columns: minmax(0, 1.1fr) minmax(340px, .9fr); gap: 64px; }
.product-main-image { display: grid; aspect-ratio: 4/3; place-items: center; overflow: hidden; border-radius: var(--radius); background: var(--paper); }
.product-main-image img { width: 100%; height: 100%; object-fit: contain; }
.gallery-thumbs { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; margin-top: 12px; }
.gallery-thumb { overflow: hidden; aspect-ratio: 1; padding: 0; border: 2px solid transparent; border-radius: 12px; background: var(--paper); }
.gallery-thumb.active { border-color: var(--teal); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-info { position: sticky; top: 125px; }
.product-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.badge { padding: 6px 10px; border-radius: 999px; color: var(--blue); background: #e8f1f9; font-size: .74rem; font-weight: 820; letter-spacing: .05em; text-transform: uppercase; }
.product-info h1 { font-size: clamp(2.25rem, 4vw, 4rem); }
.product-price { margin: 20px 0; color: var(--teal-dark); font-size: 2rem; font-weight: 850; letter-spacing: -.04em; }
.product-summary { color: var(--muted); font-size: 1.08rem; }
.product-specs { display: grid; margin: 27px 0; border-top: 1px solid var(--line); }
.product-specs li { display: flex; gap: 12px; padding: 11px 0; border-bottom: 1px solid var(--line); list-style: none; }
.product-specs li::before { color: var(--teal); content: "•"; font-weight: 900; }
.warranty-note { margin: 22px 0; padding: 16px 18px; border-left: 4px solid var(--lime); border-radius: 0 12px 12px 0; background: var(--paper); }
.product-description { margin-top: 65px; padding-top: 42px; border-top: 1px solid var(--line); }
.product-description h2 { margin-bottom: 20px; font-size: 2rem; }
.product-description p { color: var(--ink-soft); white-space: pre-line; }

.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 42px; }
.contact-stack { display: grid; gap: 15px; }
.contact-card { padding: 23px; border: 1px solid var(--line); border-radius: 17px; background: var(--white); }
.contact-card span { display: block; color: var(--teal-dark); font-size: .75rem; font-weight: 820; letter-spacing: .1em; text-transform: uppercase; }
.contact-card strong { display: block; margin-top: 5px; font-size: 1.08rem; }
.contact-panel { padding: 34px; border-radius: var(--radius); color: var(--white); background: var(--ink); }
.contact-panel h2 { color: var(--white); font-size: 2rem; }
.contact-panel > p { color: #b8cad5; }
.contact-form { display: grid; gap: 15px; margin-top: 25px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.contact-form label { display: grid; gap: 6px; color: #d9e6ed; font-size: .84rem; font-weight: 720; }
.contact-form input, .contact-form textarea, .contact-form select { width: 100%; padding: 12px 14px; border: 1px solid rgba(255,255,255,.19); border-radius: 11px; color: var(--white); background: rgba(255,255,255,.08); outline: 0; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--lime); }
.contact-form textarea { min-height: 130px; resize: vertical; }
.map-card { overflow: hidden; min-height: 340px; border-radius: var(--radius); background: var(--paper); }
.map-card iframe { width: 100%; height: 100%; min-height: 340px; border: 0; }

.faq-list { display: grid; gap: 12px; }
.faq-list details { padding: 20px 22px; border: 1px solid var(--line); border-radius: 15px; background: var(--white); }
.faq-list summary { cursor: pointer; color: var(--ink); font-weight: 780; }
.faq-list details p { margin: 13px 0 0; color: var(--muted); }
.policies-section { padding: 72px 0 95px; }
.policies-section .auto-container { width: min(850px, calc(100% - 40px)); margin-inline: auto; }
.policies-section p, .policies-section li { color: var(--ink-soft); }
.policies-section a { color: var(--teal-dark); text-decoration: underline; text-underline-offset: 3px; }
.policies-section ul { padding-left: 22px; }
.policies-section b, .policies-section strong { color: var(--ink); }
.page-title { padding: 64px 0; color: var(--white); background: linear-gradient(110deg, rgba(0,69,140,.98), rgba(0,69,140,.74)), url('../images/background/3.jpg') center/cover !important; }
.page-title .auto-container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.page-title h1 { color: var(--white); font-size: clamp(2.5rem, 5vw, 4.4rem); }
.bread-crumb { display: flex; gap: 8px; margin-bottom: 13px; list-style: none; color: #bfd0da; }
.bread-crumb li + li::before { margin-right: 8px; content: "/"; }

.site-footer { color: #dce7f1; background: var(--blue); }
.footer-main { display: grid; grid-template-columns: 1.25fr .75fr .85fr .85fr; gap: 50px; padding: 70px 0 55px; }
.footer-logo { width: 200px; margin-bottom: 20px; }
.footer-main p { color: #91a8b7; }
.footer-main h3 { margin-bottom: 17px; color: var(--white); font-size: .86rem; letter-spacing: .1em; text-transform: uppercase; }
.footer-links { display: grid; gap: 8px; list-style: none; }
.footer-links a:hover { color: var(--lime); }
.footer-contact strong { display: block; color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); }
.footer-bottom-inner { display: flex; min-height: 70px; align-items: center; justify-content: space-between; gap: 20px; font-size: .82rem; }
.footer-bottom-links { display: flex; flex-wrap: wrap; gap: 17px; }
.footer-bottom a:hover { color: var(--lime); }
.error-page { display: grid; min-height: 62vh; place-items: center; padding: 80px 0; text-align: center; background: var(--paper); }
.error-page .error-code { color: var(--teal); font-size: clamp(5rem, 14vw, 10rem); font-weight: 900; line-height: .8; letter-spacing: -.08em; }
.error-page h1 { margin: 20px 0 12px; font-size: clamp(2rem, 4vw, 3.4rem); }
.error-page p { max-width: 540px; margin: 0 auto 26px; color: var(--muted); }

@media (max-width: 1020px) {
    .nav-toggle { display: block; }
    .site-nav { position: fixed; z-index: 40; inset: 118px 0 auto; display: none; max-height: calc(100vh - 118px); padding: 20px; overflow-y: auto; border-top: 1px solid rgba(255,255,255,.16); background: var(--blue); }
    .site-nav.open { display: grid; }
    .site-nav > a, .nav-group > button { width: 100%; padding: 14px; text-align: left; }
    .nav-call { margin: 8px 0 0; text-align: center !important; }
    .nav-menu { position: static; display: grid; margin: 3px 0 7px 14px; padding: 2px 0 2px 12px; border: 0; border-left: 1px solid rgba(255,255,255,.18); border-radius: 0; color: #cbd9e1; background: transparent; box-shadow: none; opacity: 1; pointer-events: auto; transform: none; }
    .nav-menu a:hover { color: var(--white); background: rgba(255,255,255,.06); }
    .hero-inner { grid-template-columns: 1fr; gap: 36px; }
    .hero-panel { align-self: auto; max-width: 500px; }
    .category-grid { grid-template-columns: 1fr 1fr; }
    .stock-grid, .service-grid { grid-template-columns: 1fr 1fr; }
    .split, .product-layout { grid-template-columns: 1fr; gap: 45px; }
    .product-info { position: static; }
    .footer-main { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
    .container, .narrow { width: min(100% - 28px, 1180px); }
    .section { padding: 70px 0; }
    .site-topbar { display: none; }
    .header-inner { min-height: 74px; }
    .site-logo, .site-logo img { width: 170px; }
    .site-nav { inset: 74px 0 auto; max-height: calc(100vh - 74px); }
    .hero, .hero-inner { min-height: auto; }
    .hero::before { background: linear-gradient(rgba(0,69,140,.9), rgba(0,69,140,.95)), url('../images/main-slider/3.jpg') 62% center/cover; }
    .hero-inner { padding: 78px 0 62px; }
    .hero-panel { padding: 22px; }
    .hero .button { width: 100%; }
    .trust-grid { grid-template-columns: 1fr 1fr; }
    .trust-item:nth-child(3) { border-top: 1px solid var(--line); }
    .trust-item:nth-child(4) { border-top: 1px solid var(--line); }
    .section-head { display: block; }
    .section-head .button, .section-head .text-link { margin-top: 20px; }
    .category-grid, .stock-grid, .service-grid, .review-grid, .contact-grid { grid-template-columns: 1fr; }
    .category-card { min-height: 220px; }
    .category-card h3 { margin-top: 48px; }
    .split { gap: 34px; }
    .split-media img { min-height: 330px; }
    .split-badge { right: 12px; bottom: 12px; }
    .cta-inner { display: block; }
    .cta-inner .button { margin-top: 25px; }
    .filter-bar { margin-top: -18px; border-radius: 20px; }
    .filter-bar a { flex: 1 1 42%; text-align: center; }
    .gallery-thumbs { grid-template-columns: repeat(4, 1fr); }
    .form-grid { grid-template-columns: 1fr; }
    .footer-main { grid-template-columns: 1fr; gap: 34px; padding: 55px 0 40px; }
    .footer-bottom-inner { display: block; padding: 22px 0; }
    .footer-bottom-links { margin-top: 10px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
