:root {
  --orange: #e95112;
  --orange-dark: #bd3906;
  --charcoal: #1d211e;
  --ink: #303631;
  --muted: #677069;
  --cream: #f4f0e8;
  --cream-deep: #e8e0d2;
  --white: #fff;
  --line: #d9d5cd;
  --success: #17683a;
  --danger: #a82d25;
  --shadow: 0 20px 55px rgba(31, 37, 32, .12);
  --radius: 18px;
  --shell: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--white); font: 400 1rem/1.7 "DM Sans", sans-serif; }
body.no-scroll { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
h1, h2, h3 { margin: 0 0 .65em; color: var(--charcoal); font-family: "Manrope", sans-serif; line-height: 1.08; letter-spacing: -.035em; }
h1 { font-size: clamp(2.7rem, 7vw, 5.8rem); }
h2 { font-size: clamp(2rem, 4vw, 3.55rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1rem; }
.shell { width: min(calc(100% - 40px), var(--shell)); margin-inline: auto; }
.section { padding: clamp(76px, 9vw, 126px) 0; }
.section--cream { background: var(--cream); }
.section--dark { color: #dfe4df; background: var(--charcoal); }
.section--dark h2, .section--dark h3 { color: var(--white); }
.section-heading { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(280px, .65fr); gap: 50px; align-items: end; margin-bottom: 52px; }
.section-heading > p { color: var(--muted); font-size: 1.08rem; }
.section-heading--center { display: block; max-width: 760px; margin: 0 auto 52px; text-align: center; }
.eyebrow { margin-bottom: 14px; color: var(--orange-dark); font-size: .76rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow--light { color: #ffb28f; }
.lead { max-width: 700px; color: var(--muted); font-size: clamp(1.05rem, 2vw, 1.3rem); }
.skip-link { position: fixed; top: 10px; left: 10px; z-index: 100; padding: 10px 14px; transform: translateY(-150%); color: var(--white); background: var(--charcoal); }
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid #1685df; outline-offset: 4px; }

.topbar { color: #e7ece7; background: var(--charcoal); font-size: .82rem; }
.topbar__inner { min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.topbar p { margin: 0; }
.topbar a { color: var(--white); font-weight: 700; text-decoration: none; }
.site-header { position: sticky; top: 0; z-index: 50; border-bottom: 1px solid rgba(29, 33, 30, .09); background: rgba(255, 255, 255, .96); backdrop-filter: blur(14px); }
.site-header__inner { min-height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: flex; align-items: center; gap: 16px; color: var(--charcoal); text-decoration: none; }
.brand__logo { width: clamp(185px, 17vw, 230px); height: auto; }
.site-nav { display: flex; align-items: center; gap: clamp(14px, 2vw, 29px); }
.site-nav > a:not(.button) { position: relative; color: #444a45; font-size: .88rem; font-weight: 700; text-decoration: none; }
.site-nav > a:not(.button)::after { position: absolute; right: 0; bottom: -8px; left: 0; height: 2px; content: ""; transform: scaleX(0); background: var(--orange); transition: transform .2s ease; }
.site-nav > a:hover::after, .site-nav > a[aria-current="page"]::after { transform: scaleX(1); }
.menu-toggle { display: none; width: 46px; height: 46px; padding: 11px; border: 0; border-radius: 50%; background: var(--cream); }
.menu-toggle span { display: block; height: 2px; margin: 5px 0; background: var(--charcoal); }

.button { display: inline-flex; min-height: 52px; align-items: center; justify-content: center; padding: 13px 22px; border: 2px solid var(--orange); border-radius: 999px; color: var(--white); background: var(--orange); font-weight: 800; line-height: 1.2; text-decoration: none; transition: transform .2s ease, background .2s ease, border-color .2s ease; }
.button:hover { border-color: var(--orange-dark); background: var(--orange-dark); transform: translateY(-2px); }
.button--small { min-height: 42px; padding: 10px 17px; font-size: .84rem; }
.button--outline { color: var(--charcoal); border-color: var(--charcoal); background: transparent; }
.button--outline:hover { color: var(--white); background: var(--charcoal); }
.button--light { color: var(--charcoal); border-color: var(--white); background: var(--white); }
.button--light:hover { color: var(--white); border-color: var(--charcoal); background: var(--charcoal); }
.text-link { color: var(--orange-dark); font-weight: 800; text-underline-offset: 4px; }
.text-link--light { color: var(--white); }

.page-hero { padding: clamp(78px, 10vw, 132px) 0 72px; overflow: hidden; background: var(--cream); }
.page-hero__inner { max-width: 850px; }
.page-hero h1 { font-size: clamp(2.8rem, 6vw, 5.15rem); }
.breadcrumbs { display: flex; gap: 9px; margin-bottom: 24px; color: var(--muted); font-size: .85rem; }
.breadcrumbs a { color: var(--orange-dark); font-weight: 700; }

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card { min-height: 260px; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); transition: transform .2s ease, box-shadow .2s ease; }
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.service-card__number { display: grid; width: 42px; height: 42px; margin-bottom: 34px; place-items: center; border-radius: 50%; color: var(--white); background: var(--orange); font-weight: 800; }
.service-card p { color: var(--muted); }

.cta-band { padding: 68px 0; color: var(--white); background: var(--orange); }
.cta-band h2 { max-width: 760px; color: var(--white); font-size: clamp(2rem, 4vw, 3.6rem); }
.cta-band p { max-width: 680px; }
.cta-band__inner { display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.cta-band__actions { display: grid; flex: 0 0 auto; gap: 14px; text-align: center; }

.site-footer { padding: 72px 0 24px; color: #bec5bf; background: #151815; }
.footer-grid { display: grid; grid-template-columns: 1.5fr .75fr .8fr 1fr; gap: 50px; }
.footer-logo-panel { display: inline-block; margin-bottom: 22px; padding: 11px 14px; border-radius: 10px;}
.footer-logo-panel img { width: min(240px, 100%); height: auto; }
.footer-brand p { max-width: 400px; }
.site-footer h2 { color: var(--white); font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; }
.site-footer ul { margin: 0; padding: 0; list-style: none; }
.site-footer li { margin: 8px 0; }
.site-footer a { color: inherit; text-decoration-color: transparent; text-underline-offset: 4px; }
.site-footer a:hover { color: var(--white); text-decoration-color: var(--orange); }
.site-footer address { margin-bottom: 16px; font-style: normal; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 55px; padding-top: 22px; border-top: 1px solid #343934; font-size: .82rem; }
.footer-bottom p { margin: 0; }
.footer-extras { display: grid; grid-template-columns: .8fr 1.2fr; gap: 18px; margin-top: 46px; }
.footer-social, .footer-accreditation { display: flex; min-height: 132px; align-items: center; justify-content: space-between; gap: 28px; padding: 24px 28px; border: 1px solid #343934; border-radius: 14px; background: #202420; }
.footer-label { margin: 0 0 4px; color: #ff9c70; font-size: .72rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.footer-social h2 { margin: 0; font-size: 1.05rem; letter-spacing: -.015em; text-transform: none; }
.facebook-link { display: inline-flex; align-items: center; gap: 10px; color: var(--white) !important; font-weight: 800; text-decoration: none; }
.facebook-link span { display: grid; width: 42px; height: 42px; place-items: center; border-radius: 50%; color: var(--white); background: var(--orange); font: 800 1.45rem/1 Arial, sans-serif; }
.footer-accreditation { background: var(--white); }
.footer-accreditation img { width: min(245px, 46%); height: auto; }
.footer-accreditation p { max-width: 320px; margin: 0; color: #4f5851; font-size: .84rem; line-height: 1.5; }

.notice { margin-bottom: 24px; padding: 15px 18px; border-radius: 10px; font-weight: 600; }
.notice--success { color: var(--success); background: #e4f5e9; }
.notice--error { color: var(--danger); background: #fce8e5; }

.home-hero { padding: clamp(58px, 7vw, 96px) 0; overflow: hidden; background: linear-gradient(110deg, #f7f3ec 0%, #f1ebe0 100%); }
.home-hero__grid { display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: clamp(46px, 7vw, 96px); }
.home-hero h1 em { color: var(--orange); font-style: normal; }
.home-hero__content .lead { max-width: 610px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 30px; }
.trust-list { display: flex; flex-wrap: wrap; gap: 12px 24px; margin: 30px 0 0; padding: 0; color: var(--muted); font-size: .9rem; font-weight: 700; list-style: none; }
.trust-list li::before { content: "✓"; margin-right: 8px; color: var(--orange-dark); }
.hero-image-wrap { position: relative; min-height: 570px; }
.hero-image-wrap::before { position: absolute; top: 35px; right: -90px; width: 300px; height: 300px; border-radius: 50%; content: ""; background: rgba(233,81,18,.15); }
.hero-image-wrap img { position: absolute; inset: 0; width: 100%; height: 100%; border-radius: 180px 18px 18px 18px; box-shadow: var(--shadow); object-fit: cover; }
.hero-badge { position: absolute; right: -26px; bottom: 34px; display: grid; width: 160px; height: 160px; place-content: center; padding: 20px; border: 8px solid var(--cream); border-radius: 50%; color: var(--white); background: var(--orange); text-align: center; }
.hero-badge strong { font: 800 1.25rem "Manrope", sans-serif; }
.hero-badge span { font-size: .72rem; line-height: 1.35; }

.specialist-strip { padding: clamp(58px, 7vw, 82px) 0; color: #d2d8d3; background: var(--charcoal); }
.specialist-strip__heading { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(36px, 7vw, 90px); align-items: end; }
.specialist-strip__heading h2 { max-width: 690px; margin: 0; color: var(--white); font-size: clamp(2rem, 4vw, 3.35rem); }
.specialist-strip__heading > p { max-width: 510px; margin: 0; color: #bfc6c0; font-size: 1.05rem; }
.specialist-benefits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 44px; overflow: hidden; border: 1px solid #3d433e; border-radius: var(--radius); background: #3d433e; }
.specialist-benefit { display: grid; grid-template-columns: 32px 1fr; gap: 15px; padding: 25px; background: #252a26; }
.specialist-benefit > span { color: #ff9d71; font-size: .75rem; font-weight: 800; }
.specialist-benefit h3 { margin-bottom: 8px; color: var(--white); font-size: 1.08rem; }
.specialist-benefit p { margin: 0; color: #bfc6c0; font-size: .9rem; line-height: 1.6; }

.featured-blinds { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.blind-tile { display: flex; min-width: 0; flex-direction: column; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.blind-tile__image { display: block; aspect-ratio: 4 / 3; overflow: hidden; background: var(--cream); }
.blind-tile__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.blind-tile:hover .blind-tile__image img { transform: scale(1.035); }
.blind-tile__content { display: flex; min-height: 270px; flex: 1; flex-direction: column; padding: 26px 28px 28px; }
.blind-tile__content > span { color: var(--orange-dark); font-size: .75rem; font-weight: 800; }
.blind-tile h3 { margin: 25px 0 10px; font-size: 1.45rem; }
.blind-tile h3 a { color: inherit; text-decoration: none; }
.blind-tile p { color: var(--muted); font-size: .95rem; }
.blind-tile__link { margin-top: auto; color: var(--charcoal); font-size: .85rem; font-weight: 800; text-decoration: none; }
.blind-tile__link span { color: var(--orange); }
.center-action { margin: 38px 0 0; text-align: center; }

.process-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(50px, 8vw, 110px); }
.process-intro { position: sticky; top: 140px; align-self: start; }
.process-list { margin: 0; padding: 0; list-style: none; }
.process-list li { display: grid; grid-template-columns: 55px 1fr; gap: 25px; padding: 0 0 36px; border-bottom: 1px solid #d4cec2; }
.process-list li + li { padding-top: 36px; }
.process-list > li > span { color: var(--orange-dark); font-size: .76rem; font-weight: 800; }
.process-list h3 { font-size: 1.5rem; }
.process-list p { color: var(--muted); }

.review-feature { display: grid; grid-template-columns: .7fr 1.3fr; gap: clamp(50px, 8vw, 110px); }
.rating { color: #ff7b41; letter-spacing: .15em; }
.review-feature__intro > p:last-child { max-width: 390px; color: #aeb6af; }
.review-slider { min-width: 0; }
.review-slider__viewport { outline: none; }
.review-slide { min-height: 355px; margin: 0; padding: clamp(30px, 5vw, 52px); border: 1px solid #424943; border-radius: var(--radius); background: #252a26; }
.review-slide[hidden] { display: none; }
.review-slide h3 { margin: 30px 0 16px; font-size: clamp(1.35rem, 3vw, 2rem); }
.review-slide > p { color: #f6f7f6; font-size: clamp(1.05rem, 2vw, 1.22rem); line-height: 1.7; }
.review-slide cite { color: #aeb6af; font-size: .85rem; font-style: normal; font-weight: 800; }
.review-card__meta { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px 18px; margin-bottom: 12px; color: #aeb6af; font-size: .75rem; }
.review-card__meta span { color: #ffb000; letter-spacing: .08em; }
.review-slider__controls { display: flex; align-items: center; gap: 13px; margin-top: 18px; }
.review-slider__arrow { display: grid; width: 46px; height: 46px; flex: 0 0 auto; place-items: center; border: 1px solid #535a54; border-radius: 50%; color: var(--white); background: transparent; font-size: 1.15rem; }
.review-slider__arrow:hover, .review-slider__arrow:focus-visible { border-color: var(--orange); background: var(--orange); }
.review-slider__dots { display: flex; gap: 8px; }
.review-slider__dots button { width: 9px; height: 9px; padding: 0; border: 0; border-radius: 50%; background: #646c65; }
.review-slider__dots button[aria-current="true"] { width: 25px; border-radius: 999px; background: var(--orange); }
.review-slider__status { margin-left: auto; color: #aeb6af; font-size: .8rem; font-weight: 700; }

.blind-list { border-top: 1px solid var(--line); }
.blind-row { display: grid; grid-template-columns: 80px 1fr 260px; gap: 30px; align-items: center; padding: 45px 0; border-bottom: 1px solid var(--line); scroll-margin-top: 125px; }
.blind-row__number { color: var(--orange-dark); font-weight: 800; }
.blind-row h2 { margin-bottom: 8px; font-size: clamp(1.7rem, 3vw, 2.5rem); }
.blind-row p { max-width: 650px; margin: 0; color: var(--muted); }
.blind-row > a { justify-self: end; }
.safety-panel { display: grid; grid-template-columns: 1fr 1fr; align-items: end; gap: 70px; }
.safety-panel > p { color: var(--muted); font-size: 1.1rem; }

.two-panel { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(45px, 8vw, 100px); }
.two-panel--reverse .feature-image { order: -1; }
.feature-panel h2 { max-width: 590px; }
.feature-image { height: 580px; margin: 0; overflow: hidden; border-radius: 18px 150px 18px 18px; box-shadow: var(--shadow); }
.feature-image img { width: 100%; height: 100%; object-fit: cover; }
.two-panel--reverse .feature-image { border-radius: 150px 18px 18px 18px; }
.tick-list { margin: 25px 0; padding: 0; list-style: none; }
.tick-list li { position: relative; margin: 13px 0; padding-left: 30px; }
.tick-list li::before { position: absolute; left: 0; color: var(--orange-dark); content: "✓"; font-weight: 800; }

.gallery-filters { display: flex; flex-wrap: wrap; justify-content: center; gap: 9px; margin-bottom: 38px; }
.gallery-filters button { min-height: 42px; padding: 8px 17px; border: 1px solid var(--line); border-radius: 999px; color: var(--ink); background: var(--white); font-size: .83rem; font-weight: 800; }
.gallery-filters button:hover, .gallery-filters button.is-active { color: var(--white); border-color: var(--charcoal); background: var(--charcoal); }
.gallery-grid { columns: 3; column-gap: 16px; }
.gallery-grid figure { margin: 0 0 16px; break-inside: avoid; }
.gallery-grid figure[hidden] { display: none; }
.gallery-grid button { position: relative; display: block; width: 100%; padding: 0; overflow: hidden; border: 0; border-radius: 14px; background: var(--cream); }
.gallery-grid img { width: 100%; transition: transform .3s ease; }
.gallery-grid button:hover img { transform: scale(1.025); }
.gallery-grid button span { position: absolute; right: 12px; bottom: 12px; padding: 7px 12px; border-radius: 999px; color: var(--charcoal); background: rgba(255,255,255,.93); font-size: .74rem; font-weight: 800; }
.lightbox { width: min(92vw, 1050px); max-height: 92vh; padding: 0; overflow: visible; border: 0; border-radius: 14px; color: var(--white); background: #111; }
.lightbox::backdrop { background: rgba(10,12,10,.88); backdrop-filter: blur(5px); }
.lightbox__frame { max-height: 88vh; overflow: auto; }
.lightbox__frame img { width: 100%; max-height: 78vh; object-fit: contain; }
.lightbox__frame p { margin: 0; padding: 13px 20px; }
.lightbox__close { position: absolute; top: -18px; right: -18px; z-index: 2; display: grid; width: 44px; height: 44px; place-items: center; border: 2px solid var(--white); border-radius: 50%; color: var(--charcoal); background: var(--white); font-size: 1.7rem; line-height: 1; }

.area-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(50px, 9vw, 120px); align-items: center; }
.area-card { padding: 40px; border-radius: var(--radius); background: var(--cream); box-shadow: var(--shadow); }
.faq-layout { display: grid; grid-template-columns: .55fr 1.45fr; gap: clamp(45px, 8vw, 105px); }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item h2 { margin: 0; }
.faq-item button { display: flex; width: 100%; align-items: center; justify-content: space-between; gap: 20px; padding: 25px 0; border: 0; color: var(--charcoal); background: transparent; text-align: left; font-size: clamp(1.05rem, 2vw, 1.25rem); font-weight: 800; line-height: 1.35; }
.faq-item button span:last-child { color: var(--orange); font-size: 1.5rem; transition: transform .2s ease; }
.faq-item button[aria-expanded="true"] span:last-child { transform: rotate(45deg); }
.faq-answer { padding: 0 40px 22px 0; color: var(--muted); font-size: 1rem; line-height: 1.75; }
.policy-layout { display: grid; grid-template-columns: .65fr 1.35fr; gap: clamp(50px, 8vw, 110px); }
.policy-card { margin: 14px 0; padding: 25px; border-radius: 12px; background: var(--cream); }
.policy-card strong { color: var(--orange-dark); font: 800 1.6rem "Manrope", sans-serif; }
.policy-card p { margin: 6px 0 0; }
.prose { max-width: 800px; }
.prose h2 { margin-top: 1.3em; font-size: 1.7rem; }
.prose h2:first-child { margin-top: 0; }
.prose li { margin: 9px 0; }
.prose a { color: var(--orange-dark); font-weight: 700; }
.narrow { max-width: 850px; }
.policy-note { margin-bottom: 40px; padding: 28px; border-left: 5px solid var(--orange); background: var(--cream); }
.policy-note strong { font: 800 1.15rem "Manrope", sans-serif; }
.policy-note p { margin: 8px 0 0; }
.not-found { min-height: 68vh; display: grid; align-items: center; padding: 80px 0; background: var(--cream); text-align: center; }
.not-found .lead, .not-found .hero-actions { justify-content: center; margin-inline: auto; }
.not-found__code { margin: 0; color: rgba(233,81,18,.18); font: 800 clamp(6rem, 20vw, 15rem)/.75 "Manrope", sans-serif; }
.not-found h1 { font-size: clamp(2.5rem, 6vw, 4.8rem); }
.contact-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(50px, 8vw, 100px); align-items: start; }
.contact-details { position: sticky; top: 135px; }
.contact-details dl { margin: 35px 0 0; }
.contact-details dl div { padding: 18px 0; border-top: 1px solid var(--line); }
.contact-details dt { margin-bottom: 4px; color: var(--muted); font-size: .75rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.contact-details dd { margin: 0; font-weight: 700; }
.contact-details dd a { color: var(--orange-dark); }
.form-card { padding: clamp(25px, 5vw, 50px); border-radius: var(--radius); background: var(--cream); box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 20px; }
.field label { display: block; margin-bottom: 7px; color: var(--charcoal); font-size: .85rem; font-weight: 800; }
.field input, .field select, .field textarea { width: 100%; min-height: 52px; padding: 12px 14px; border: 1px solid #c9c3b8; border-radius: 9px; color: var(--charcoal); background: var(--white); }
.field textarea { min-height: 150px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--orange); outline: 3px solid rgba(233,81,18,.18); }
.field-error { display: block; margin-top: 5px; color: var(--danger); font-weight: 700; }
.form-note { margin: 14px 0 0; color: var(--muted); font-size: .78rem; }
.form-honeypot { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; }

@media (max-width: 980px) {
  .menu-toggle { display: block; }
  .site-nav { position: absolute; top: 100%; right: 0; left: 0; display: none; align-items: stretch; padding: 24px max(20px, calc((100% - var(--shell)) / 2)); border-top: 1px solid var(--line); background: var(--white); box-shadow: 0 18px 35px rgba(29,33,30,.12); }
  .site-nav.is-open { display: grid; }
  .site-nav > a:not(.button) { padding: 10px 0; font-size: 1rem; }
  .site-nav > a:not(.button)::after { display: none; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-extras { grid-template-columns: 1fr; }
  .home-hero__grid, .two-panel, .area-grid { grid-template-columns: 1fr; }
  .home-hero__content { max-width: 760px; }
  .home-hero__visual { max-width: 720px; width: 100%; }
  .hero-image-wrap { min-height: 520px; }
  .specialist-strip__heading { grid-template-columns: 1fr; }
  .specialist-benefits { grid-template-columns: 1fr; }
  .featured-blinds { grid-template-columns: repeat(2, 1fr); }
  .blind-row { grid-template-columns: 60px 1fr; }
  .blind-row > a { grid-column: 2; justify-self: start; }
  .review-feature, .faq-layout, .policy-layout { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-details { position: static; }
  .two-panel--reverse .feature-image { order: initial; }
}

@media (max-width: 680px) {
  .shell { width: min(calc(100% - 28px), var(--shell)); }
  .topbar__inner { min-height: 34px; justify-content: center; }
  .topbar p { display: none; }
  .site-header__inner { min-height: 76px; }
  .brand__logo { width: 178px; }
  .section-heading { display: block; }
  .card-grid, .footer-grid { grid-template-columns: 1fr; }
  .cta-band__inner { display: block; }
  .cta-band__actions { margin-top: 30px; }
  .footer-bottom { display: block; }
  .footer-bottom p + p { margin-top: 8px; }
  .footer-social, .footer-accreditation { align-items: flex-start; }
  .footer-accreditation { display: grid; }
  .footer-accreditation img { width: min(260px, 100%); }
  .home-hero { padding-top: 48px; }
  .hero-image-wrap { min-height: 390px; }
  .hero-image-wrap img { border-radius: 100px 14px 14px 14px; }
  .hero-badge { right: -5px; bottom: 18px; width: 125px; height: 125px; border-width: 5px; }
  .process-grid, .safety-panel { grid-template-columns: 1fr; }
  .featured-blinds { grid-template-columns: 1fr; }
  .process-intro { position: static; }
  .blind-row { grid-template-columns: 42px 1fr; gap: 14px; padding: 34px 0; }
  .feature-image { height: 390px; }
  .gallery-grid { columns: 2; }
  .review-slide { min-height: 0; }
  .review-slider__controls { flex-wrap: wrap; }
  .lightbox__close { top: 8px; right: 8px; }
  .form-grid { grid-template-columns: 1fr; gap: 0; }
}

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