:root {
  --teal: #0584F1;
  --teal-dark: #0584F1;
  --teal-muted: #0584F1;
  --promo: #3d3f49;
  --ink: #3d3f49;
  --rule: #3d3f49;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: Montserrat, Arial, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  width: 100%;
  background: #fff;
}

.mobile-header {
  display: none;
}

.mobile-specialist-bar {
  display: none;
}

.mobile-call-bar {
  display: none;
}

.benefits-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  min-height: 46px;
  column-gap: 14px;
  padding: 0 18px;
  color: #fff;
  background: var(--teal);
}

.benefit {
  display: flex;
  align-items: center;
  gap: clamp(9px, .8vw, 16px);
  min-width: 0;
  font-size: clamp(14px, .95vw, 18px);
  font-weight: 400;
  line-height: 1;
  white-space: nowrap;
}

.benefit:nth-child(2),
.benefit:nth-child(3) {
  justify-content: center;
}

.benefit:nth-child(4) {
  justify-content: flex-end;
}

.benefit svg {
  width: 24px;
  height: 28px;
  flex: 0 0 auto;
  fill: none;
  stroke: #edf7f9;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.benefit:nth-child(2) svg,
.benefit:nth-child(3) svg {
  width: 28px;
  height: 28px;
  opacity: .55;
  stroke-width: 1.7;
}

.promo-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 22px;
  background: var(--promo);
  color: #fff;
  font-size: clamp(17px, 1vw, 21px);
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
}

.brand-row {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 98px;
  padding: 0 24px;
  background: #fff;
}

.contact-block {
  display: flex;
  flex-direction: column;
  gap: 3px;
  color: #0584F1;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.contact-block a:first-child {
  font-size: clamp(18px, 1.05vw, 22px);
  line-height: 1;
}

.contact-block a:last-child {
  font-size: clamp(15px, .95vw, 19px);
  line-height: 1;
}

.logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(285px, 25vw, 430px);
  height: auto;
}

.logo img {
  display: block;
  width: 100%;
  height: auto;
}

.account-block {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  color: var(--teal);
  font-size: clamp(15px, 1vw, 20px);
  font-weight: 700;
  letter-spacing: 1.8px;
  line-height: 1.15;
  text-align: right;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 7px clamp(12px, 1.8vw, 30px);
  border-top: 4px solid var(--rule);
  background: var(--teal);
}

.main-nav a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 0;
  min-width: 0;
  min-height: 58px;
  padding: 0 clamp(10px, 1.1vw, 20px);
  border-left: 1px solid rgba(255, 255, 255, .38);
  color: #fff;
  font-size: clamp(14px, .86vw, 17px);
  font-weight: 700;
  letter-spacing: clamp(1.4px, .12vw, 2.4px);
  line-height: 1.22;
  text-align: center;
  text-transform: uppercase;
}

.main-nav .nav-cta {
  flex: 0 1 230px;
  color: var(--teal);
  background: #fff;
  min-width: 0;
  max-width: 250px;
  min-height: 44px;
  padding: 0 16px;
  border-left: 0;
  font-size: clamp(15px, .9vw, 18px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
}

.main-nav a:first-child {
  border-left: 0;
}

.main-nav .nav-cta:first-child {
  margin-right: clamp(8px, 1.4vw, 24px);
}

.main-nav .nav-quote {
  margin-left: clamp(8px, 1.4vw, 24px);
  max-width: 210px;
  font-size: clamp(15px, .9vw, 17px);
}

.location-strip {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2.4vw, 44px);
  min-height: 38px;
  overflow: hidden;
  padding: 7px clamp(18px, 3vw, 52px);
  background:
    linear-gradient(90deg, rgba(137, 16, 27, .92) 0%, rgba(183, 28, 42, .86) 48%, rgba(82, 12, 20, .93) 100%),
    url("images/sale-shutters-banner-bg.webp") center / cover;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
}

.location-strip::before,
.location-strip::after {
  position: absolute;
  inset: auto;
  width: 250px;
  height: 250px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.location-strip::before {
  left: -92px;
  top: -116px;
}

.location-strip::after {
  right: -118px;
  bottom: -138px;
}

.sale-kicker,
.sale-detail,
.sale-badge,
.sale-saving {
  position: relative;
  z-index: 1;
}

.sale-kicker {
  color: #ffd6dc;
  font-size: clamp(17px, 1.6vw, 28px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
  text-transform: none;
}

.sale-saving {
  color: #fff;
  font-size: clamp(29px, 3vw, 50px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: .85;
  white-space: nowrap;
}

.sale-detail {
  max-width: 300px;
  color: #fff;
  font-size: clamp(12px, .9vw, 16px);
  font-weight: 800;
  letter-spacing: 2px;
  line-height: 1.08;
}

.sale-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(64px, 4.7vw, 82px);
  aspect-ratio: 1;
  border: 2px solid rgba(255, 255, 255, .68);
  border-radius: 50%;
  background: #fff;
  color: #9d1324;
  font-size: clamp(11px, .8vw, 14px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.12;
  text-transform: none;
}

.area-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-height: clamp(440px, 31vw, 620px);
  background:
    linear-gradient(90deg, rgba(5, 132, 241, .92) 0%, rgba(5, 132, 241, .82) 50%, rgba(5, 132, 241, .08) 50%, rgba(5, 132, 241, .08) 100%),
    url("images/stanza-installer-hero.webp") center / cover;
}

.blinds-page .area-hero {
  background:
    linear-gradient(90deg, rgba(5, 132, 241, .92) 0%, rgba(5, 132, 241, .82) 50%, rgba(5, 132, 241, .08) 50%, rgba(5, 132, 241, .08) 100%),
    url("images/blinds-white-venetian-living-room-hero.png") center / cover;
}

.shutters-page .area-hero {
  background:
    linear-gradient(90deg, rgba(5, 132, 241, .92) 0%, rgba(5, 132, 241, .82) 50%, rgba(5, 132, 241, .08) 50%, rgba(5, 132, 241, .08) 100%),
    url("images/shutters-white-plantation-living-room-hero.png") center / cover;
}

.locations-page .area-hero {
  background:
    linear-gradient(90deg, rgba(5, 132, 241, .92) 0%, rgba(5, 132, 241, .82) 50%, rgba(5, 132, 241, .08) 50%, rgba(5, 132, 241, .08) 100%),
    url("images/locations-blinds-yorkshire-hero.png") center / cover;
}

.contact-page .area-hero {
  background:
    linear-gradient(90deg, rgba(5, 132, 241, .92) 0%, rgba(5, 132, 241, .82) 50%, rgba(5, 132, 241, .08) 50%, rgba(5, 132, 241, .08) 100%),
    url("images/contact-house-shutters-hero.png") center / cover;
}

.wooden-blinds-page .area-hero {
  background:
    linear-gradient(90deg, rgba(5, 132, 241, .92) 0%, rgba(5, 132, 241, .82) 50%, rgba(5, 132, 241, .08) 50%, rgba(5, 132, 241, .08) 100%),
    url("images/blind-wooden.webp") center / cover;
}

.roller-blinds-page .area-hero { background: linear-gradient(90deg, rgba(5, 132, 241, .92) 0%, rgba(5, 132, 241, .82) 50%, rgba(5, 132, 241, .08) 50%, rgba(5, 132, 241, .08) 100%), url("images/blind-roller.webp") center / cover; }
.roman-blinds-page .area-hero { background: linear-gradient(90deg, rgba(5, 132, 241, .92) 0%, rgba(5, 132, 241, .82) 50%, rgba(5, 132, 241, .08) 50%, rgba(5, 132, 241, .08) 100%), url("images/blind-roman.webp") center / cover; }
.perfect-fit-blinds-page .area-hero { background: linear-gradient(90deg, rgba(5, 132, 241, .92) 0%, rgba(5, 132, 241, .82) 50%, rgba(5, 132, 241, .08) 50%, rgba(5, 132, 241, .08) 100%), url("images/blind-perfect-fit.webp") center / cover; }
.vertical-blinds-page .area-hero { background: linear-gradient(90deg, rgba(5, 132, 241, .92) 0%, rgba(5, 132, 241, .82) 50%, rgba(5, 132, 241, .08) 50%, rgba(5, 132, 241, .08) 100%), url("images/blind-vertical.webp") center / cover; }
.venetian-blinds-page .area-hero { background: linear-gradient(90deg, rgba(5, 132, 241, .92) 0%, rgba(5, 132, 241, .82) 50%, rgba(5, 132, 241, .08) 50%, rgba(5, 132, 241, .08) 100%), url("images/blind-venetian.webp") center / cover; }
.curtains-page .area-hero { background: linear-gradient(90deg, rgba(5, 132, 241, .92) 0%, rgba(5, 132, 241, .82) 50%, rgba(5, 132, 241, .08) 50%, rgba(5, 132, 241, .08) 100%), url("images/blind-curtains.webp") center / cover; }
.motorised-blinds-page .area-hero { background: linear-gradient(90deg, rgba(5, 132, 241, .92) 0%, rgba(5, 132, 241, .82) 50%, rgba(5, 132, 241, .08) 50%, rgba(5, 132, 241, .08) 100%), url("images/blind-motorised.webp") center / cover; }
.day-night-blinds-page .area-hero { background: linear-gradient(90deg, rgba(5, 132, 241, .92) 0%, rgba(5, 132, 241, .82) 50%, rgba(5, 132, 241, .08) 50%, rgba(5, 132, 241, .08) 100%), url("images/blind-day-night.webp") center / cover; }
.commercial-blinds-page .area-hero { background: linear-gradient(90deg, rgba(5, 132, 241, .92) 0%, rgba(5, 132, 241, .82) 50%, rgba(5, 132, 241, .08) 50%, rgba(5, 132, 241, .08) 100%), url("images/blind-commercial.webp") center / cover; }
.full-height-shutters-page .area-hero { background: linear-gradient(90deg, rgba(5, 132, 241, .92) 0%, rgba(5, 132, 241, .82) 50%, rgba(5, 132, 241, .08) 50%, rgba(5, 132, 241, .08) 100%), url("images/shutter-full-height-hero.png") center / cover; }
.tier-on-tier-shutters-page .area-hero { background: linear-gradient(90deg, rgba(5, 132, 241, .92) 0%, rgba(5, 132, 241, .82) 50%, rgba(5, 132, 241, .08) 50%, rgba(5, 132, 241, .08) 100%), url("images/shutter-tier-on-tier-hero.png") center / cover; }
.cafe-style-shutters-page .area-hero { background: linear-gradient(90deg, rgba(5, 132, 241, .92) 0%, rgba(5, 132, 241, .82) 50%, rgba(5, 132, 241, .08) 50%, rgba(5, 132, 241, .08) 100%), url("images/shutter-cafe-style-hero.png") center / cover; }
.bay-window-shutters-page .area-hero { background: linear-gradient(90deg, rgba(5, 132, 241, .92) 0%, rgba(5, 132, 241, .82) 50%, rgba(5, 132, 241, .08) 50%, rgba(5, 132, 241, .08) 100%), url("images/shutter-bay-window-hero.png") center / cover; }
.special-shaped-shutters-page .area-hero { background: linear-gradient(90deg, rgba(5, 132, 241, .92) 0%, rgba(5, 132, 241, .82) 50%, rgba(5, 132, 241, .08) 50%, rgba(5, 132, 241, .08) 100%), url("images/shutter-special-shaped-hero.png") center / cover; }
.tracked-window-shutters-page .area-hero { background: linear-gradient(90deg, rgba(5, 132, 241, .92) 0%, rgba(5, 132, 241, .82) 50%, rgba(5, 132, 241, .08) 50%, rgba(5, 132, 241, .08) 100%), url("images/shutter-tracked-window-hero.png") center / cover; }
.shutter-and-shade-shutters-page .area-hero { background: linear-gradient(90deg, rgba(5, 132, 241, .92) 0%, rgba(5, 132, 241, .82) 50%, rgba(5, 132, 241, .08) 50%, rgba(5, 132, 241, .08) 100%), url("images/shutter-shade-hero.png") center / cover; }
.solid-panel-shutters-page .area-hero { background: linear-gradient(90deg, rgba(5, 132, 241, .92) 0%, rgba(5, 132, 241, .82) 50%, rgba(5, 132, 241, .08) 50%, rgba(5, 132, 241, .08) 100%), url("images/shutter-solid-panel-hero.png") center / cover; }
.french-door-shutters-page .area-hero { background: linear-gradient(90deg, rgba(5, 132, 241, .92) 0%, rgba(5, 132, 241, .82) 50%, rgba(5, 132, 241, .08) 50%, rgba(5, 132, 241, .08) 100%), url("images/shutter-french-door-hero.png") center / cover; }

.area-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(46px, 4vw, 82px) clamp(30px, 4vw, 72px);
  color: #fff;
}

.area-hero-copy h1 {
  margin: 0 0 14px;
  font-size: clamp(18px, 1.35vw, 26px);
  font-weight: 700;
  letter-spacing: 4px;
  line-height: 1.2;
  text-transform: uppercase;
}

.area-hero-copy strong {
  display: block;
  margin: 0 0 clamp(22px, 2vw, 36px);
  color: #fff;
  font-size: clamp(38px, 3.1vw, 58px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.05;
}

.area-hero-copy .area-hero-main-title {
  display: block;
  margin: 0 0 clamp(22px, 2vw, 36px);
  color: #fff;
  font-size: clamp(38px, 3.1vw, 58px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.05;
  text-transform: none;
}

.area-hero-copy p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, .82);
  font-size: clamp(16px, 1vw, 20px);
  font-weight: 400;
  line-height: 1.5;
}

.area-hero-copy p + p {
  margin-top: 18px;
}

.area-hero-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  margin-top: clamp(26px, 2.2vw, 40px);
  padding: 0 clamp(28px, 3vw, 54px);
  background: #fff;
  color: var(--teal);
  font-size: clamp(16px, 1vw, 20px);
  font-weight: 800;
  letter-spacing: 3px;
  line-height: 1.15;
  text-align: center;
  text-transform: uppercase;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  padding: 16px clamp(22px, 5vw, 96px);
  border-top: 1px solid rgba(61, 63, 73, .08);
  background: #fff;
  color: rgba(61, 63, 73, .72);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.2px;
  line-height: 1.2;
  text-transform: uppercase;
}

.breadcrumbs a {
  color: var(--teal);
}

.breadcrumbs span:last-child {
  color: var(--ink);
}

.action-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  min-height: 158px;
  border-bottom: 8px solid #e9eef2;
  background: #fff;
}

.action-tile {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  align-items: center;
  gap: clamp(16px, 1.5vw, 28px);
  padding: 28px clamp(22px, 2.5vw, 48px);
  color: var(--teal);
}

.action-tile svg {
  width: clamp(34px, 2.5vw, 48px);
  height: clamp(34px, 2.5vw, 48px);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.action-tile span {
  display: block;
  font-size: clamp(15px, 1.02vw, 21px);
  font-weight: 700;
  letter-spacing: clamp(2px, .28vw, 5px);
  line-height: 1.22;
  text-transform: uppercase;
}

.action-tile-blue {
  background: var(--teal);
  color: #fff;
}

.action-tile-white {
  background: #fff;
  color: var(--teal);
}

.intro-section {
  background: #fff;
}

.intro-copy {
  max-width: 1900px;
  margin: 0 auto;
  padding: clamp(18px, 2vw, 34px) clamp(34px, 3.5vw, 70px) clamp(58px, 4.4vw, 86px);
  text-align: center;
}

.intro-logo {
  display: block;
  width: min(650px, 74vw);
  margin: 0 auto clamp(10px, .9vw, 18px);
}

.intro-collage {
  display: grid;
  grid-template-columns: 1.35fr .9fr .9fr;
  grid-template-rows: repeat(2, clamp(180px, 14vw, 270px));
  gap: clamp(14px, 1.2vw, 24px);
  width: min(1500px, 100%);
  margin: 0 auto clamp(48px, 4.8vw, 84px);
  padding: clamp(14px, 1.1vw, 22px);
  background: #f3f7fb;
  box-shadow: 0 26px 70px rgba(61, 63, 73, .12);
}

.intro-collage img {
  display: block;
  width: 100%;
  height: 100%;
  min-width: 0;
  border: 4px solid var(--teal);
  object-fit: cover;
  box-shadow: 0 12px 26px rgba(5, 132, 241, .2);
}

.intro-collage-large {
  grid-row: span 2;
}

.intro-mobile-image {
  display: none;
}

.intro-copy h2 {
  max-width: 1650px;
  margin: 0 auto 36px;
  color: var(--teal);
  font-size: clamp(34px, 3.1vw, 58px);
  font-weight: 700;
  letter-spacing: 8px;
  line-height: 1.25;
  text-transform: uppercase;
}

.intro-copy p {
  margin: 0 auto;
  color: #3d3f49;
  font-size: clamp(22px, 1.75vw, 34px);
  font-weight: 400;
  line-height: 1.55;
}

.intro-cta-buttons {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 2vw, 34px);
  margin-top: clamp(30px, 2.8vw, 52px);
}

.intro-cta-buttons a {
  display: inline-flex;
  min-width: clamp(220px, 14vw, 310px);
  min-height: 68px;
  align-items: center;
  justify-content: center;
  padding: 16px 28px;
  background: var(--teal);
  color: #fff;
  font-size: clamp(18px, 1.1vw, 22px);
  font-weight: 800;
  letter-spacing: 2px;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
  box-shadow: 0 14px 30px rgba(5, 132, 241, .22);
}

.why-choose {
  padding: clamp(58px, 5.6vw, 104px) clamp(30px, 5vw, 96px);
  background: #f7f9fc;
  text-align: left;
}

.why-choose-layout {
  display: grid;
  grid-template-columns: minmax(320px, .9fr) minmax(0, 1.1fr);
  gap: clamp(38px, 4vw, 76px);
  max-width: 1620px;
  margin: 0 auto;
  align-items: center;
}

.why-choose-image {
  position: relative;
  min-height: clamp(620px, 45vw, 820px);
  overflow: hidden;
  border-radius: 8px;
  background: #e8edf3;
  box-shadow: 0 22px 54px rgba(61, 63, 73, .14);
}

.why-choose-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(5, 132, 241, .2));
  content: "";
  pointer-events: none;
}

.why-choose-image img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.why-choose-content {
  min-width: 0;
}

.why-choose-heading {
  max-width: 760px;
  margin: 0 0 clamp(30px, 3vw, 48px);
  text-align: left;
}

.why-choose-heading h2 {
  margin: 0 0 18px;
  color: var(--teal);
  font-size: clamp(34px, 3vw, 58px);
  font-weight: 800;
  letter-spacing: 8px;
  line-height: 1.15;
  text-transform: uppercase;
}

.why-choose-heading p {
  max-width: 720px;
  margin: 0;
  color: #3d3f49;
  font-size: clamp(20px, 1.45vw, 28px);
  line-height: 1.45;
}

.why-choose-heading::after {
  content: "";
  display: block;
  width: 120px;
  height: 4px;
  margin: 28px 0 0;
  background: var(--teal);
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 1.4vw, 24px);
  max-width: none;
  margin: 0;
}

.why-choose-grid article {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  gap: 14px 16px;
  align-items: start;
  min-height: 186px;
  padding: clamp(22px, 2vw, 32px);
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #fff;
  color: #3d3f49;
  box-shadow: 0 16px 34px rgba(61, 63, 73, .07);
}

.why-choose-grid span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
}

.why-choose-grid svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.why-choose-grid h3 {
  grid-column: 2;
  align-self: center;
  margin: 0;
  color: #3d3f49;
  font-size: clamp(19px, 1.25vw, 25px);
  font-weight: 800;
  letter-spacing: 1px;
  line-height: 1.18;
}

.why-choose-grid p {
  grid-column: 1 / -1;
  margin: 0;
  color: #5d6470;
  font-size: clamp(16px, .95vw, 18px);
  line-height: 1.55;
}

.process-section {
  padding: clamp(50px, 4.4vw, 78px) clamp(22px, 4vw, 72px);
  background: #f3f7fb;
}

.process-copy {
  max-width: 1320px;
  margin: 0 auto clamp(26px, 2.4vw, 38px);
  text-align: center;
}

.process-copy h2 {
  margin: 0 0 12px;
  color: #152244;
  font-size: clamp(34px, 3vw, 58px);
  font-weight: 800;
  letter-spacing: 7px;
  line-height: 1.08;
  text-transform: uppercase;
}

.process-copy h2 span {
  color: var(--teal);
}

.process-copy p {
  max-width: 1080px;
  margin: 0 auto;
  color: #3d3f49;
  font-size: clamp(16px, 1.05vw, 20px);
  line-height: 1.45;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 1.45vw, 26px);
  max-width: 1620px;
  margin: 0 auto;
}

.process-card {
  position: relative;
  display: flex;
  min-height: clamp(330px, 25vw, 430px);
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  padding: 0 0 clamp(24px, 2vw, 34px);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 32px rgba(61, 63, 73, .1);
  text-align: center;
}

.process-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.process-card:nth-child(2) img,
.process-card:nth-child(4) img {
  object-position: 72% center;
}

.process-card span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  margin: -23px 0 clamp(18px, 1.5vw, 24px);
  border: 4px solid #fff;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  box-shadow: 0 8px 18px rgba(5, 132, 241, .28);
}

.process-card:nth-child(1) span::before {
  content: "1";
}

.process-card:nth-child(2) span::before {
  content: "2";
}

.process-card:nth-child(3) span::before {
  content: "3";
}

.process-card:nth-child(4) span::before {
  content: "4";
}

.process-card svg {
  display: none;
}

.process-card h3 {
  margin: 0 20px 16px;
  color: #3d3f49;
  font-size: clamp(15px, 1vw, 19px);
  font-weight: 800;
  letter-spacing: 1.7px;
  line-height: 1.2;
  text-transform: uppercase;
}

.process-card p {
  margin: 0 20px;
  color: #3d3f49;
  font-size: clamp(14px, .92vw, 17px);
  font-weight: 600;
  line-height: 1.45;
}

.shutters-section {
  padding: clamp(58px, 5.6vw, 104px) clamp(30px, 5vw, 96px);
  background: #fff;
}

.shutters-heading {
  max-width: 980px;
  margin: 0 auto 46px;
  text-align: center;
}

.shutters-heading h2 {
  margin: 0 0 18px;
  color: var(--teal);
  font-size: clamp(34px, 2.8vw, 52px);
  font-weight: 800;
  letter-spacing: 8px;
  line-height: 1.15;
  text-transform: uppercase;
}

.shutters-heading p {
  margin: 0 auto 26px;
  color: #3d3f49;
  font-size: clamp(18px, 1.25vw, 24px);
  line-height: 1.45;
}

.shutters-heading::after {
  content: "";
  display: block;
  width: 120px;
  height: 4px;
  margin: 0 auto;
  background: var(--teal);
}

.new-build-offer {
  padding: clamp(42px, 5vw, 88px) clamp(30px, 5vw, 96px) clamp(20px, 3vw, 44px);
  background: #fff;
}

.new-build-offer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 1.8vw, 34px);
  max-width: 1530px;
  margin: 0 auto;
}

.new-build-offer-card {
  position: relative;
  display: flex;
  min-height: clamp(540px, 39vw, 680px);
  align-items: flex-end;
  border-radius: clamp(18px, 2.2vw, 34px);
  overflow: hidden;
  background: #3d3f49;
  box-shadow: 0 24px 58px rgba(61, 63, 73, .14);
}

.new-build-offer-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.new-build-offer-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(15, 18, 24, .86) 0%, rgba(15, 18, 24, .62) 44%, rgba(15, 18, 24, .08) 82%),
    linear-gradient(180deg, rgba(15, 18, 24, .03) 18%, rgba(15, 18, 24, .82) 100%);
}

.new-build-offer-copy {
  position: relative;
  z-index: 2;
  max-width: 560px;
  padding: clamp(28px, 3.4vw, 52px);
  color: #fff;
}

.new-build-offer-copy p:first-child {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  margin: 0 0 18px;
  padding: 0 18px;
  border-radius: 8px;
  background: var(--teal);
  color: #fff;
  font-size: clamp(14px, 1vw, 19px);
  font-weight: 800;
  letter-spacing: 2px;
  line-height: 1;
  text-transform: uppercase;
}

.new-build-offer-copy h2 {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: clamp(62px, 6.2vw, 118px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: .82;
  text-transform: uppercase;
  text-shadow: 0 8px 28px rgba(0, 0, 0, .3);
}

.new-build-offer-copy h3 {
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(25px, 2.05vw, 38px);
  font-weight: 900;
  letter-spacing: 1px;
  line-height: 1;
  text-transform: uppercase;
  text-shadow: 0 5px 22px rgba(0, 0, 0, .36);
}

.new-build-offer-copy span {
  display: inline-flex;
  align-items: center;
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(15px, 1vw, 18px);
  font-weight: 700;
}

.new-build-offer-copy span::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-right: 10px;
  border: 3px solid var(--teal);
  border-radius: 50%;
}

.new-build-offer-copy p:last-of-type {
  max-width: 520px;
  margin: 0 0 28px;
  padding-top: 18px;
  border-top: 3px solid var(--teal);
  color: #fff;
  font-size: clamp(15px, 1.05vw, 18px);
  font-weight: 600;
  line-height: 1.45;
}

.new-build-offer-copy a {
  display: inline-flex;
  min-height: 62px;
  align-items: center;
  justify-content: center;
  padding: 0 34px;
  border-radius: 999px;
  background: var(--teal);
  color: #fff;
  font-size: clamp(15px, 1vw, 19px);
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.product-journey {
  display: grid;
  gap: 0;
  padding: 0;
  background: #fff;
}

.product-detail-section {
  display: block;
  max-width: none;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border: 0;
  border-top: 1px solid rgba(61, 63, 73, .1);
  background:
    linear-gradient(90deg, rgba(5, 132, 241, .06), rgba(255, 255, 255, 0) 45%),
    #fff;
  box-shadow: none;
}

.product-detail-content {
  display: grid;
  gap: clamp(22px, 2vw, 36px);
  align-content: center;
  padding: clamp(44px, 5.4vw, 94px) clamp(36px, 6vw, 112px);
}

.product-detail-heading {
  display: grid;
  max-width: 980px;
  gap: 14px;
}

.product-detail-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(38px, 4vw, 76px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: .95;
}

.product-detail-heading p {
  margin: 0;
  color: rgba(61, 63, 73, .78);
  font-size: clamp(18px, 1.35vw, 26px);
  font-weight: 500;
  line-height: 1.42;
}

.product-feature-grid,
.finish-swatch-grid,
.room-tile-grid,
.fitting-step-grid {
  display: grid;
  gap: clamp(16px, 1.5vw, 28px);
}

.product-feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.finish-swatch-grid,
.room-tile-grid,
.fitting-step-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-feature-grid article,
.finish-swatch-grid article,
.room-tile-grid article,
.fitting-step-grid article {
  min-height: clamp(170px, 11vw, 220px);
  padding: clamp(24px, 2vw, 36px);
  border: 1px solid rgba(5, 132, 241, .18);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(5, 132, 241, .06), #fff 62%);
}

.product-feature-grid h3,
.finish-swatch-grid h3,
.room-tile-grid h3,
.fitting-step-grid h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: clamp(21px, 1.55vw, 30px);
  font-weight: 800;
  line-height: 1.1;
}

.product-feature-grid p,
.finish-swatch-grid p,
.room-tile-grid p,
.fitting-step-grid p {
  margin: 0;
  color: rgba(61, 63, 73, .76);
  font-size: clamp(15px, 1.05vw, 19px);
  font-weight: 500;
  line-height: 1.45;
}

.finish-swatch-grid article {
  display: grid;
  align-content: start;
  gap: 10px;
}

.finish-swatch-grid article > span {
  display: block;
  width: 100%;
  height: clamp(62px, 5vw, 96px);
  border: 1px solid rgba(61, 63, 73, .18);
  border-radius: 8px;
}

.room-tile-grid article {
  border-color: rgba(5, 132, 241, .2);
  background: linear-gradient(180deg, rgba(5, 132, 241, .08), #fff 70%);
}

.fitting-step-grid article {
  position: relative;
  padding-top: clamp(76px, 5.5vw, 104px);
}

.fitting-step-grid article > span {
  position: absolute;
  top: clamp(24px, 2vw, 34px);
  left: clamp(24px, 2vw, 36px);
  display: inline-flex;
  width: clamp(42px, 3vw, 56px);
  height: clamp(42px, 3vw, 56px);
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  font-size: clamp(18px, 1.2vw, 24px);
  font-weight: 900;
  line-height: 1;
}

.blinds-section {
  padding: clamp(42px, 4.8vw, 86px) clamp(30px, 5vw, 96px) clamp(58px, 5.6vw, 104px);
  background: #fff;
}

.blinds-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 1.6vw, 34px);
  max-width: 1530px;
  margin: 0 auto;
}

.blinds-grid-single {
  max-width: 520px;
}

.shutters-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(22px, 1.6vw, 34px);
  max-width: 1530px;
  margin: 0 auto;
}

.shutter-card,
.blind-card {
  position: relative;
  display: flex;
  min-height: clamp(330px, 25vw, 470px);
  align-items: flex-end;
  justify-content: flex-start;
  overflow: hidden;
  border-radius: 8px;
  background: #eee;
  box-shadow: 0 18px 42px rgba(0, 0, 0, .1);
}

.shutter-card img,
.blind-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.shutter-card::before,
.blind-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .02) 10%, rgba(0, 0, 0, .74) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, .42), rgba(0, 0, 0, 0) 64%);
}

.shutter-card::after,
.blind-card::after {
  position: absolute;
  right: clamp(18px, 1.8vw, 34px);
  bottom: clamp(20px, 2vw, 38px);
  z-index: 2;
  display: flex;
  width: clamp(58px, 4.6vw, 86px);
  aspect-ratio: 1;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  content: "→";
  font-size: clamp(34px, 2.8vw, 54px);
  font-weight: 500;
  line-height: 1;
  transition: background .25s ease, transform .25s ease;
}

.service-card-copy {
  position: absolute;
  right: clamp(96px, 8vw, 150px);
  bottom: clamp(22px, 2.2vw, 40px);
  left: clamp(22px, 2.4vw, 42px);
  z-index: 2;
  display: grid;
  gap: clamp(11px, .9vw, 16px);
  color: #fff;
}

.shutter-card span,
.blind-card span {
  display: flex;
  width: auto;
  align-items: center;
  justify-content: flex-start;
  margin: 0;
  padding: 0;
  color: inherit;
  background: transparent;
  font-size: clamp(24px, 1.95vw, 38px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.05;
  text-align: left;
  text-transform: none;
  text-shadow: 0 3px 18px rgba(0, 0, 0, .42);
}

.service-card-copy ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0 0 0 1.1em;
  color: #fff;
  font-size: clamp(14px, 1vw, 18px);
  font-weight: 700;
  line-height: 1.25;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .5);
}

.service-card-copy li::marker {
  color: var(--teal);
}

.shutter-card em,
.blind-card em {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 15px;
  border: 2px solid #fff;
  border-radius: 999px;
  background: var(--teal);
  color: #fff;
  font-size: clamp(12px, .82vw, 15px);
  font-style: normal;
  font-weight: 800;
  letter-spacing: 1px;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 0 8px 18px rgba(0, 0, 0, .18);
}

.shutter-card:hover img,
.blind-card:hover img {
  transform: scale(1.05);
}

.shutter-card:hover::after,
.blind-card:hover::after {
  background: #056dca;
  transform: translateX(4px);
}

.google-reviews {
  margin: 0;
  padding: clamp(56px, 5vw, 92px) clamp(28px, 4vw, 76px);
  background: #f4f6f8;
}

.google-reviews-summary {
  max-width: 1720px;
  margin: 0 auto 34px;
  padding: clamp(34px, 3.2vw, 58px);
  background: #202127;
  color: #fff;
  text-align: center;
}

.google-brand {
  margin-bottom: 12px;
  font-size: clamp(28px, 2.2vw, 42px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
}

.google-reviews-summary h2 {
  margin: 0 0 12px;
  font-size: clamp(28px, 2.45vw, 46px);
  font-weight: 800;
  letter-spacing: 4px;
  line-height: 1.16;
  text-transform: uppercase;
}

.google-reviews-summary p {
  margin: 0 auto 18px;
  max-width: 980px;
  color: rgba(255, 255, 255, .82);
  font-size: clamp(18px, 1.25vw, 24px);
  line-height: 1.45;
}

.review-stars {
  color: #f1d38d;
  font-size: clamp(22px, 1.8vw, 34px);
  letter-spacing: 3px;
  line-height: 1;
}

.google-review-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 1.6vw, 32px);
  max-width: 1720px;
  margin: 0 auto;
}

.google-review-grid article {
  display: flex;
  min-height: 310px;
  flex-direction: column;
  gap: 20px;
  padding: clamp(24px, 2vw, 34px);
  background: #202127;
  color: #fff;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 16px;
}

.review-header > span {
  display: grid;
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  font-size: 25px;
  font-weight: 700;
}

.review-header h3 {
  margin: 0 0 6px;
  color: #fff;
  font-size: clamp(19px, 1.25vw, 24px);
  font-weight: 700;
  line-height: 1.15;
}

.review-header p {
  margin: 0;
  color: rgba(255, 255, 255, .6);
  font-size: 15px;
  line-height: 1.2;
}

.google-review-grid article > p {
  margin: 0;
  color: rgba(255, 255, 255, .86);
  font-size: clamp(17px, 1.08vw, 21px);
  line-height: 1.45;
}

.locations-section {
  padding: clamp(62px, 5.6vw, 110px) clamp(30px, 5vw, 96px);
  background: #f7f9fc;
  border-bottom: 10px solid #eef3f7;
}

.locations-heading {
  max-width: 1160px;
  margin: 0 auto clamp(38px, 3.5vw, 62px);
  text-align: center;
}

.locations-heading h2 {
  margin: 0 0 18px;
  color: var(--teal);
  font-size: clamp(42px, 3.7vw, 72px);
  font-weight: 800;
  letter-spacing: 6px;
  line-height: 1.12;
  text-transform: uppercase;
}

.locations-heading p {
  margin: 0 auto;
  color: #3d3f49;
  font-size: clamp(20px, 1.45vw, 28px);
  font-weight: 600;
  line-height: 1.45;
}

.locations-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(12px, 1vw, 18px);
  max-width: 1620px;
  margin: 0 auto;
}

.location-card {
  position: relative;
  display: grid;
  min-height: 104px;
  gap: 18px;
  padding: 24px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #fff;
  color: #3d3f49;
  text-align: left;
  box-shadow: 0 12px 28px rgba(61, 63, 73, .06);
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.location-card:hover {
  border-color: rgba(5, 132, 241, .38);
  box-shadow: 0 16px 32px rgba(61, 63, 73, .1);
  transform: translateY(-2px);
}

.location-card h3 {
  margin: 0;
  font-size: clamp(21px, 1.35vw, 28px);
  font-weight: 800;
  line-height: 1.1;
}

.location-card-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.location-card-actions a {
  display: grid;
  min-height: 42px;
  place-items: center;
  border-radius: 6px;
  background: rgba(5, 132, 241, .1);
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  text-align: center;
  text-transform: uppercase;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.location-card-actions a:hover {
  background: var(--teal);
  color: #fff;
  transform: translateY(-1px);
}

.faq-section {
  padding: clamp(62px, 5.4vw, 104px) clamp(30px, 5vw, 96px);
  background: #fff;
}

.faq-heading {
  max-width: 980px;
  margin: 0 auto clamp(34px, 3vw, 52px);
  text-align: center;
}

.faq-heading h2 {
  margin: 0 0 18px;
  color: var(--teal);
  font-size: clamp(34px, 2.8vw, 52px);
  font-weight: 800;
  letter-spacing: 6px;
  line-height: 1.15;
  text-transform: uppercase;
}

.faq-heading p {
  margin: 0 auto;
  color: #3d3f49;
  font-size: clamp(18px, 1.25vw, 24px);
  font-weight: 600;
  line-height: 1.45;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 1.2vw, 20px);
  max-width: 1320px;
  margin: 0 auto;
}

.faq-grid details {
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(61, 63, 73, .06);
  overflow: hidden;
}

.faq-grid summary {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 24px;
  color: #3d3f49;
  cursor: pointer;
  font-size: clamp(16px, 1vw, 20px);
  font-weight: 800;
  letter-spacing: 1.2px;
  line-height: 1.25;
  list-style: none;
  text-transform: uppercase;
}

.faq-grid summary::-webkit-details-marker {
  display: none;
}

.faq-grid summary::after {
  display: grid;
  width: 34px;
  aspect-ratio: 1;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: rgba(5, 132, 241, .1);
  color: var(--teal);
  content: "+";
  font-size: 25px;
  font-weight: 800;
  line-height: 1;
}

.faq-grid details[open] {
  border-color: rgba(5, 132, 241, .3);
}

.faq-grid details[open] summary::after {
  background: var(--teal);
  color: #fff;
  content: "−";
}

.faq-grid details p {
  margin: -4px 24px 24px;
  padding-top: 18px;
  border-top: 2px solid rgba(5, 132, 241, .18);
  color: #3d3f49;
  font-size: clamp(15px, .95vw, 18px);
  font-weight: 600;
  line-height: 1.5;
}

.site-footer {
  overflow: hidden;
  background: #fff;
  color: var(--ink);
}

.site-footer-main {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1fr;
  gap: clamp(36px, 5vw, 78px);
  padding: clamp(52px, 6vw, 96px) clamp(30px, 6vw, 104px);
}

.footer-logo {
  display: inline-flex;
  max-width: 245px;
}

.footer-logo img {
  display: block;
  width: 100%;
  height: auto;
}

.footer-brand-column p {
  max-width: 460px;
  margin: clamp(26px, 2.4vw, 38px) 0 0;
  color: rgba(61, 63, 73, .76);
  font-size: clamp(18px, 1.22vw, 23px);
  font-weight: 700;
  line-height: 1.58;
}

.footer-column h2 {
  margin: 0 0 clamp(22px, 2vw, 32px);
  color: var(--teal);
  font-size: clamp(22px, 1.55vw, 30px);
  font-weight: 900;
  letter-spacing: 3px;
  line-height: 1;
  text-transform: uppercase;
}

.footer-column ul {
  display: grid;
  gap: clamp(14px, 1.2vw, 20px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-column li,
.footer-contact-list a,
.footer-contact-list div {
  color: var(--ink);
  font-size: clamp(18px, 1.25vw, 24px);
  font-weight: 800;
  line-height: 1.25;
}

.footer-column a {
  transition: color .2s ease;
}

.footer-column a:hover {
  color: var(--teal);
}

.footer-button {
  display: inline-grid;
  width: fit-content;
  min-height: 58px;
  place-items: center;
  margin-top: clamp(24px, 2.4vw, 38px);
  padding: 0 28px;
  background: var(--teal);
  color: #fff;
  font-size: clamp(14px, .92vw, 17px);
  font-weight: 900;
  letter-spacing: 1.8px;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.footer-button:hover {
  color: #fff;
  background: #056dca;
}

.footer-contact-list {
  display: grid;
  gap: clamp(17px, 1.4vw, 24px);
}

.footer-contact-list a,
.footer-contact-list div {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.footer-contact-list svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: var(--teal);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.3;
}

.footer-credit {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  background: var(--teal);
  color: #fff;
  font-size: clamp(14px, 1vw, 18px);
  font-weight: 800;
  line-height: 1.3;
  text-align: center;
}

.footer-credit span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.footer-credit span + span::before {
  content: "|";
  margin-right: 8px;
}

.footer-credit a {
  color: #fff;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.contact-section {
  position: relative;
  overflow: hidden;
  padding: clamp(64px, 6vw, 118px) clamp(30px, 5vw, 96px);
  background:
    linear-gradient(90deg, rgba(5, 132, 241, .94) 0%, rgba(5, 132, 241, .86) 48%, rgba(5, 132, 241, .48) 100%),
    url("images/cta-window-dressings-bg.webp") center / cover;
}

.contact-section::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(61, 63, 73, .34), transparent 45%),
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, .2), transparent 26%);
  content: "";
  pointer-events: none;
}

.contact-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(42px, 5vw, 86px);
  max-width: 1640px;
  margin: 0 auto;
  align-items: center;
}

.contact-details {
  color: #fff;
}

.contact-details h2 {
  margin: 0 0 clamp(22px, 2.2vw, 38px);
  font-size: clamp(44px, 4vw, 76px);
  font-weight: 800;
  letter-spacing: 6px;
  line-height: 1.05;
  text-transform: uppercase;
}

.contact-details > p {
  max-width: 720px;
  margin: 0 0 clamp(30px, 3vw, 50px);
  font-size: clamp(22px, 1.55vw, 30px);
  font-weight: 600;
  line-height: 1.52;
}

.contact-methods {
  display: grid;
  gap: 14px;
  max-width: 720px;
}

.contact-methods a,
.contact-methods div {
  display: flex;
  min-height: 88px;
  align-items: center;
  gap: 26px;
  padding: 18px clamp(24px, 2.4vw, 42px);
  border: 2px solid rgba(255, 255, 255, .5);
  border-radius: 8px;
  background: rgba(255, 255, 255, .22);
  backdrop-filter: blur(10px);
  color: #fff;
  font-size: clamp(21px, 1.45vw, 30px);
  font-weight: 800;
  line-height: 1.2;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .18);
  box-shadow: 0 14px 30px rgba(0, 0, 0, .14);
}

.contact-methods svg {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.contact-form {
  display: grid;
  gap: 17px;
  padding: clamp(34px, 3.4vw, 56px);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 28px 70px rgba(0, 0, 0, .22);
}

.form-heading {
  display: grid;
  gap: 8px;
  margin-bottom: 4px;
}

.form-heading h3 {
  margin: 0;
  color: var(--teal);
  font-size: clamp(26px, 1.9vw, 38px);
  font-weight: 800;
  letter-spacing: 2px;
  line-height: 1.05;
  text-transform: uppercase;
}

.form-heading p {
  margin: 0;
  color: #5f6670;
  font-size: clamp(16px, 1vw, 19px);
  font-weight: 600;
  line-height: 1.45;
}

.contact-form > label {
  display: grid;
  gap: 11px;
}

.contact-form > label span {
  color: #3d3f49;
  font-size: clamp(16px, 1vw, 20px);
  font-weight: 800;
  letter-spacing: 1px;
  line-height: 1;
  text-transform: uppercase;
}

.contact-form > label input,
.contact-form > label textarea {
  width: 100%;
  border: 2px solid #dde4eb;
  border-radius: 6px;
  background: #fbfcfd;
  color: #3d3f49;
  font: inherit;
  font-size: 18px;
  font-weight: 600;
}

.contact-form > label input {
  min-height: 62px;
  padding: 0 18px;
}

.contact-form > label textarea {
  min-height: 150px;
  padding: 18px;
  resize: vertical;
}

.contact-form > label input::placeholder,
.contact-form > label textarea::placeholder {
  color: #9b9fa7;
}

.contact-form button {
  min-height: 68px;
  border: 0;
  border-radius: 6px;
  background: var(--teal);
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-size: clamp(17px, 1.15vw, 22px);
  font-weight: 800;
  letter-spacing: 3px;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 0 14px 24px rgba(5, 132, 241, .28);
}

.intro-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: clamp(50px, 4.8vw, 78px) clamp(42px, 3.5vw, 82px);
  background:
    linear-gradient(rgba(5, 132, 241, .9), rgba(5, 132, 241, .9)),
    url("images/cta-window-dressings-bg.webp") center / cover;
  text-align: center;
}

.intro-actions h2 {
  max-width: 1350px;
  margin: 0;
  color: #fff;
  font-size: clamp(32px, 2.7vw, 52px);
  font-weight: 700;
  letter-spacing: 4px;
  line-height: 1.22;
  text-transform: uppercase;
}

.intro-actions p {
  max-width: 1100px;
  margin: 0 0 12px;
  color: #fff;
  font-size: clamp(20px, 1.45vw, 28px);
  font-weight: 500;
  line-height: 1.45;
}

.intro-buttons {
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 520px));
  gap: clamp(28px, 3vw, 58px);
  width: min(100%, 1120px);
}

.intro-buttons a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 94px;
  padding: 18px 28px;
  background: #fff;
  color: var(--teal);
  font-size: clamp(20px, 1.45vw, 29px);
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
}

@media (max-width: 1500px) {
  .benefit {
    gap: 10px;
    font-size: 16px;
  }

  .promo-strip {
    font-size: 18px;
  }

  .brand-row {
    min-height: 88px;
  }

  .logo {
    width: 340px;
    height: auto;
  }

  .contact-block a:first-child {
    font-size: 20px;
  }

  .contact-block a:last-child {
    font-size: 16px;
  }

  .main-nav a {
    font-size: 15px;
  }

  .main-nav .nav-cta {
    font-size: 16px;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-choose-layout,
  .why-choose-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .google-review-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .locations-links {
    grid-template-columns: repeat(2, 1fr);
  }

  .shutters-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 981px) and (max-width: 1500px) {
  .benefits-bar {
    min-height: 30px;
    column-gap: 10px;
    padding: 0 16px;
  }

  .benefit {
    gap: 8px;
    font-size: 12px;
  }

  .benefit svg,
  .benefit:nth-child(2) svg,
  .benefit:nth-child(3) svg {
    width: 16px;
    height: 18px;
  }

  .promo-strip {
    min-height: 32px;
    font-size: 14px;
  }

  .brand-row {
    min-height: 72px;
    padding: 0 22px;
  }

  .contact-block {
    letter-spacing: 1.1px;
  }

  .contact-block a:first-child {
    font-size: 16px;
  }

  .contact-block a:last-child {
    font-size: 13px;
  }

  .logo {
    width: 280px;
  }

  .account-block {
    font-size: 12px;
    letter-spacing: 1.5px;
  }

  .main-nav {
    min-height: 44px;
    padding: 6px 18px;
    border-top-width: 3px;
  }

  .main-nav a {
    min-height: 44px;
    padding: 0 12px;
    font-size: 12px;
    letter-spacing: 1.5px;
  }

  .main-nav .nav-cta {
    flex-basis: 180px;
    max-width: 190px;
    min-height: 34px;
    padding: 0 12px;
    font-size: 12px;
  }

  .main-nav .nav-quote {
    max-width: 170px;
    font-size: 12px;
  }

  .location-strip {
    min-height: 48px;
    gap: 22px;
    padding: 6px 24px;
  }

  .sale-kicker {
    font-size: 18px;
  }

  .sale-saving {
    font-size: 34px;
  }

  .sale-detail {
    max-width: 230px;
    font-size: 12px;
    letter-spacing: 1.5px;
  }

  .sale-badge {
    width: 58px;
    font-size: 9px;
  }

  .breadcrumbs {
    padding: 12px 64px;
    font-size: 11px;
  }

  .area-hero {
    min-height: 395px;
  }

  .area-hero-copy {
    padding: 48px 64px;
  }

  .area-hero-copy h1 {
    margin-bottom: 12px;
    font-size: 14px;
    letter-spacing: 3px;
  }

  .area-hero-copy strong,
  .area-hero-copy .area-hero-main-title {
    margin-bottom: 20px;
    font-size: 40px;
  }

  .area-hero-copy p {
    max-width: 560px;
    font-size: 16px;
    line-height: 1.45;
  }

  .area-hero-button {
    min-height: 46px;
    padding: 0 28px;
    font-size: 13px;
  }

  .action-strip {
    min-height: 62px;
  }

  .action-tile {
    min-height: 62px;
    gap: 14px;
    padding: 12px 18px;
    font-size: 12px;
    letter-spacing: 1px;
  }

  .action-tile svg {
    width: 22px;
    height: 22px;
  }

  .intro-section,
  .blinds-section,
  .shutters-section,
  .process-section,
  .why-choose,
  .locations-section,
  .faq-section,
  .contact-section,
  .google-reviews {
    padding-top: 48px;
    padding-bottom: 56px;
  }

  .new-build-offer {
    padding: 46px 64px;
  }

  .new-build-offer-grid,
  .blinds-grid,
  .shutters-grid,
  .process-grid,
  .locations-links,
  .faq-grid,
  .google-review-grid {
    max-width: 1120px;
    gap: 22px;
  }

  .new-build-offer-card {
    min-height: 315px;
  }

  .new-build-offer-copy {
    max-width: 360px;
    padding: 28px;
  }

  .new-build-offer-copy h2 {
    font-size: 56px;
  }

  .new-build-offer-copy h3 {
    font-size: 20px;
  }

  .new-build-offer-copy p:last-of-type {
    font-size: 13px;
  }

  .new-build-offer-copy a {
    min-height: 38px;
    padding: 0 18px;
    font-size: 10px;
  }

  .shutters-heading {
    max-width: 760px;
    margin-bottom: 34px;
  }

  .shutters-heading h2,
  .why-choose-heading h2,
  .process-copy h2,
  .locations-heading h2,
  .faq-heading h2,
  .google-reviews-summary h2 {
    font-size: 30px;
    letter-spacing: 4px;
  }

  .shutters-heading p,
  .why-choose-heading p,
  .process-copy p,
  .locations-heading p,
  .faq-heading p,
  .google-reviews-summary p {
    font-size: 14px;
  }

  .shutter-card,
  .blind-card {
    min-height: 270px;
  }

  .service-card-copy {
    right: 82px;
    bottom: 22px;
    left: 22px;
  }

  .shutter-card span,
  .blind-card span {
    font-size: 22px;
  }

  .service-card-copy ul {
    font-size: 12px;
  }

  .shutter-card::after,
  .blind-card::after {
    width: 46px;
    right: 18px;
    bottom: 22px;
    font-size: 28px;
  }

  .process-card {
    min-height: 260px;
  }

  .process-card-copy {
    padding: 18px;
  }

  .process-card-copy h3,
  .why-choose-grid h3,
  .locations-links h3,
  .faq-grid summary {
    font-size: 14px;
  }

  .process-card-copy p,
  .why-choose-grid p,
  .faq-grid details p {
    font-size: 12px;
  }

  .why-choose-layout {
    max-width: 1120px;
    gap: 36px;
  }

  .why-choose-image {
    min-height: 430px;
  }

  .why-choose-grid {
    gap: 16px;
  }

  .why-choose-grid article {
    min-height: 120px;
    padding: 18px;
  }

  .google-reviews-summary {
    max-width: 1120px;
    padding: 32px;
  }

  .google-review-card {
    min-height: 190px;
    padding: 20px;
  }

  .location-card {
    min-height: 92px;
    padding: 18px;
  }

  .location-card-actions a {
    min-height: 34px;
    font-size: 10px;
  }

  .faq-grid details {
    min-height: 76px;
  }

  .faq-grid summary {
    padding: 18px;
  }

  .contact-panel {
    max-width: 1120px;
    gap: 42px;
  }

  .contact-details h2 {
    font-size: 38px;
    letter-spacing: 4px;
  }

  .contact-details > p {
    font-size: 16px;
  }

  .contact-methods a,
  .contact-methods div {
    min-height: 58px;
    padding: 12px 16px;
    font-size: 13px;
  }

  .contact-form {
    padding: 28px;
  }

  .site-footer-main {
    gap: 40px;
    padding: 44px 64px;
  }

  .footer-logo {
    max-width: 190px;
  }

  .footer-brand-column p,
  .footer-column li,
  .footer-contact-list a,
  .footer-contact-list div {
    font-size: 13px;
  }

  .footer-column h2 {
    margin-bottom: 18px;
    font-size: 16px;
    letter-spacing: 2px;
  }

  .footer-column ul,
  .footer-contact-list {
    gap: 10px;
  }

  .footer-button {
    min-height: 38px;
    padding: 0 18px;
    font-size: 10px;
  }
}

@media (max-width: 980px) {
  body {
    padding-bottom: 58px;
  }

  .benefits-bar,
  .promo-strip,
  .brand-row,
  .main-nav {
    display: none;
  }

  .mobile-header {
    display: block;
    background: #fff;
    border-bottom: 6px solid var(--teal);
  }

  .mobile-specialist-bar {
    display: block;
    padding: 9px 14px;
    background: #3d3f49;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .8px;
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
  }

  .mobile-header-top {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 8px;
    padding: 12px 14px;
    background: #3d3f49;
    color: #fff;
  }

  .mobile-header-top a:first-child {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: .5px;
    line-height: 1;
    white-space: nowrap;
  }

  .mobile-header-top a:last-child {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    background: var(--teal);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .8px;
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
  }

  .mobile-header-main {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 54px;
    align-items: center;
    gap: 16px;
    min-height: 86px;
    padding: 14px 16px;
    background: #fff;
  }

  .mobile-logo {
    display: inline-flex;
    width: min(260px, 68vw);
    align-items: center;
  }

  .mobile-logo img {
    display: block;
    width: 100%;
    height: auto;
  }

  .mobile-menu {
    position: static;
  }

  .mobile-menu summary {
    display: flex;
    flex-direction: column;
    width: 54px;
    height: 54px;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    background: var(--teal);
    cursor: pointer;
    list-style: none;
  }

  .mobile-menu summary::-webkit-details-marker {
    display: none;
  }

  .mobile-menu summary span {
    display: block;
    width: 24px;
    height: 3px;
    margin: 3px 0;
    border-radius: 999px;
    background: #fff;
  }

  .mobile-menu nav {
    position: absolute;
    right: 16px;
    left: 16px;
    top: calc(100% - 2px);
    z-index: 10;
    display: grid;
    gap: 8px;
    padding: 10px;
    background: var(--teal);
    box-shadow: 0 18px 38px rgba(61, 63, 73, .22);
  }

  .mobile-menu nav a {
    display: flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .38);
    color: #fff;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
  }

  .mobile-call-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 50;
    display: flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 0;
    background: #16a34a;
    color: #fff;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: .3px;
    box-shadow: 0 12px 28px rgba(22, 163, 74, .28);
  }

  .mobile-call-bar svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: #fff;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
  }

  .location-strip {
    display: grid;
    grid-template-columns: auto auto 1fr;
    min-height: 0;
    gap: 5px 8px;
    align-items: center;
    padding: 8px 14px;
    background:
      linear-gradient(90deg, rgba(137, 16, 27, .94) 0%, rgba(183, 28, 42, .9) 52%, rgba(82, 12, 20, .94) 100%),
      url("images/sale-shutters-banner-bg.webp") center / cover;
    text-align: left;
  }

  .location-strip::before,
  .location-strip::after,
  .sale-badge {
    display: none;
  }

  .sale-kicker {
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
  }

  .sale-saving {
    font-size: 22px;
    line-height: .9;
  }

  .sale-detail {
    max-width: none;
    font-size: 10px;
    letter-spacing: .8px;
    line-height: 1.1;
  }

  .area-hero {
    display: block;
    min-height: auto;
    background:
      radial-gradient(circle at 58% 18%, rgba(4, 7, 11, .38) 0%, rgba(4, 7, 11, .2) 28%, rgba(4, 7, 11, 0) 52%),
      linear-gradient(180deg, rgba(8, 10, 14, .24) 0%, rgba(8, 10, 14, .48) 38%, rgba(5, 7, 10, .84) 72%, rgba(5, 7, 10, .94) 100%),
      url("images/stanza-installer-hero.webp") 68% center / cover;
  }

  .blinds-page .area-hero {
    background:
      radial-gradient(circle at 58% 18%, rgba(4, 7, 11, .38) 0%, rgba(4, 7, 11, .2) 28%, rgba(4, 7, 11, 0) 52%),
      linear-gradient(180deg, rgba(8, 10, 14, .24) 0%, rgba(8, 10, 14, .48) 38%, rgba(5, 7, 10, .84) 72%, rgba(5, 7, 10, .94) 100%),
      url("images/blinds-white-venetian-living-room-hero.png") center / cover;
  }

  .shutters-page .area-hero {
    background:
      radial-gradient(circle at 58% 18%, rgba(4, 7, 11, .38) 0%, rgba(4, 7, 11, .2) 28%, rgba(4, 7, 11, 0) 52%),
      linear-gradient(180deg, rgba(8, 10, 14, .24) 0%, rgba(8, 10, 14, .48) 38%, rgba(5, 7, 10, .84) 72%, rgba(5, 7, 10, .94) 100%),
      url("images/shutters-white-plantation-living-room-hero.png") center / cover;
  }

  .locations-page .area-hero {
    background:
      radial-gradient(circle at 58% 18%, rgba(4, 7, 11, .38) 0%, rgba(4, 7, 11, .2) 28%, rgba(4, 7, 11, 0) 52%),
      linear-gradient(180deg, rgba(8, 10, 14, .24) 0%, rgba(8, 10, 14, .48) 38%, rgba(5, 7, 10, .84) 72%, rgba(5, 7, 10, .94) 100%),
      url("images/locations-blinds-yorkshire-hero.png") center / cover;
  }

  .contact-page .area-hero {
    background:
      radial-gradient(circle at 58% 18%, rgba(4, 7, 11, .38) 0%, rgba(4, 7, 11, .2) 28%, rgba(4, 7, 11, 0) 52%),
      linear-gradient(180deg, rgba(8, 10, 14, .24) 0%, rgba(8, 10, 14, .48) 38%, rgba(5, 7, 10, .84) 72%, rgba(5, 7, 10, .94) 100%),
      url("images/contact-house-shutters-hero.png") center / cover;
  }

  .wooden-blinds-page .area-hero {
    background:
      radial-gradient(circle at 58% 18%, rgba(4, 7, 11, .38) 0%, rgba(4, 7, 11, .2) 28%, rgba(4, 7, 11, 0) 52%),
      linear-gradient(180deg, rgba(8, 10, 14, .24) 0%, rgba(8, 10, 14, .48) 38%, rgba(5, 7, 10, .84) 72%, rgba(5, 7, 10, .94) 100%),
      url("images/blind-wooden.webp") center / cover;
  }

  .roller-blinds-page .area-hero { background: radial-gradient(circle at 58% 18%, rgba(4, 7, 11, .38) 0%, rgba(4, 7, 11, .2) 28%, rgba(4, 7, 11, 0) 52%), linear-gradient(180deg, rgba(8, 10, 14, .24) 0%, rgba(8, 10, 14, .48) 38%, rgba(5, 7, 10, .84) 72%, rgba(5, 7, 10, .94) 100%), url("images/blind-roller.webp") center / cover; }
  .roman-blinds-page .area-hero { background: radial-gradient(circle at 58% 18%, rgba(4, 7, 11, .38) 0%, rgba(4, 7, 11, .2) 28%, rgba(4, 7, 11, 0) 52%), linear-gradient(180deg, rgba(8, 10, 14, .24) 0%, rgba(8, 10, 14, .48) 38%, rgba(5, 7, 10, .84) 72%, rgba(5, 7, 10, .94) 100%), url("images/blind-roman.webp") center / cover; }
  .perfect-fit-blinds-page .area-hero { background: radial-gradient(circle at 58% 18%, rgba(4, 7, 11, .38) 0%, rgba(4, 7, 11, .2) 28%, rgba(4, 7, 11, 0) 52%), linear-gradient(180deg, rgba(8, 10, 14, .24) 0%, rgba(8, 10, 14, .48) 38%, rgba(5, 7, 10, .84) 72%, rgba(5, 7, 10, .94) 100%), url("images/blind-perfect-fit.webp") center / cover; }
  .vertical-blinds-page .area-hero { background: radial-gradient(circle at 58% 18%, rgba(4, 7, 11, .38) 0%, rgba(4, 7, 11, .2) 28%, rgba(4, 7, 11, 0) 52%), linear-gradient(180deg, rgba(8, 10, 14, .24) 0%, rgba(8, 10, 14, .48) 38%, rgba(5, 7, 10, .84) 72%, rgba(5, 7, 10, .94) 100%), url("images/blind-vertical.webp") center / cover; }
  .venetian-blinds-page .area-hero { background: radial-gradient(circle at 58% 18%, rgba(4, 7, 11, .38) 0%, rgba(4, 7, 11, .2) 28%, rgba(4, 7, 11, 0) 52%), linear-gradient(180deg, rgba(8, 10, 14, .24) 0%, rgba(8, 10, 14, .48) 38%, rgba(5, 7, 10, .84) 72%, rgba(5, 7, 10, .94) 100%), url("images/blind-venetian.webp") center / cover; }
  .curtains-page .area-hero { background: radial-gradient(circle at 58% 18%, rgba(4, 7, 11, .38) 0%, rgba(4, 7, 11, .2) 28%, rgba(4, 7, 11, 0) 52%), linear-gradient(180deg, rgba(8, 10, 14, .24) 0%, rgba(8, 10, 14, .48) 38%, rgba(5, 7, 10, .84) 72%, rgba(5, 7, 10, .94) 100%), url("images/blind-curtains.webp") center / cover; }
  .motorised-blinds-page .area-hero { background: radial-gradient(circle at 58% 18%, rgba(4, 7, 11, .38) 0%, rgba(4, 7, 11, .2) 28%, rgba(4, 7, 11, 0) 52%), linear-gradient(180deg, rgba(8, 10, 14, .24) 0%, rgba(8, 10, 14, .48) 38%, rgba(5, 7, 10, .84) 72%, rgba(5, 7, 10, .94) 100%), url("images/blind-motorised.webp") center / cover; }
  .day-night-blinds-page .area-hero { background: radial-gradient(circle at 58% 18%, rgba(4, 7, 11, .38) 0%, rgba(4, 7, 11, .2) 28%, rgba(4, 7, 11, 0) 52%), linear-gradient(180deg, rgba(8, 10, 14, .24) 0%, rgba(8, 10, 14, .48) 38%, rgba(5, 7, 10, .84) 72%, rgba(5, 7, 10, .94) 100%), url("images/blind-day-night.webp") center / cover; }
  .commercial-blinds-page .area-hero { background: radial-gradient(circle at 58% 18%, rgba(4, 7, 11, .38) 0%, rgba(4, 7, 11, .2) 28%, rgba(4, 7, 11, 0) 52%), linear-gradient(180deg, rgba(8, 10, 14, .24) 0%, rgba(8, 10, 14, .48) 38%, rgba(5, 7, 10, .84) 72%, rgba(5, 7, 10, .94) 100%), url("images/blind-commercial.webp") center / cover; }
  .full-height-shutters-page .area-hero { background: radial-gradient(circle at 58% 18%, rgba(4, 7, 11, .38) 0%, rgba(4, 7, 11, .2) 28%, rgba(4, 7, 11, 0) 52%), linear-gradient(180deg, rgba(8, 10, 14, .24) 0%, rgba(8, 10, 14, .48) 38%, rgba(5, 7, 10, .84) 72%, rgba(5, 7, 10, .94) 100%), url("images/shutter-full-height-hero.png") center / cover; }
  .tier-on-tier-shutters-page .area-hero { background: radial-gradient(circle at 58% 18%, rgba(4, 7, 11, .38) 0%, rgba(4, 7, 11, .2) 28%, rgba(4, 7, 11, 0) 52%), linear-gradient(180deg, rgba(8, 10, 14, .24) 0%, rgba(8, 10, 14, .48) 38%, rgba(5, 7, 10, .84) 72%, rgba(5, 7, 10, .94) 100%), url("images/shutter-tier-on-tier-hero.png") center / cover; }
  .cafe-style-shutters-page .area-hero { background: radial-gradient(circle at 58% 18%, rgba(4, 7, 11, .38) 0%, rgba(4, 7, 11, .2) 28%, rgba(4, 7, 11, 0) 52%), linear-gradient(180deg, rgba(8, 10, 14, .24) 0%, rgba(8, 10, 14, .48) 38%, rgba(5, 7, 10, .84) 72%, rgba(5, 7, 10, .94) 100%), url("images/shutter-cafe-style-hero.png") center / cover; }
  .bay-window-shutters-page .area-hero { background: radial-gradient(circle at 58% 18%, rgba(4, 7, 11, .38) 0%, rgba(4, 7, 11, .2) 28%, rgba(4, 7, 11, 0) 52%), linear-gradient(180deg, rgba(8, 10, 14, .24) 0%, rgba(8, 10, 14, .48) 38%, rgba(5, 7, 10, .84) 72%, rgba(5, 7, 10, .94) 100%), url("images/shutter-bay-window-hero.png") center / cover; }
  .special-shaped-shutters-page .area-hero { background: radial-gradient(circle at 58% 18%, rgba(4, 7, 11, .38) 0%, rgba(4, 7, 11, .2) 28%, rgba(4, 7, 11, 0) 52%), linear-gradient(180deg, rgba(8, 10, 14, .24) 0%, rgba(8, 10, 14, .48) 38%, rgba(5, 7, 10, .84) 72%, rgba(5, 7, 10, .94) 100%), url("images/shutter-special-shaped-hero.png") center / cover; }
  .tracked-window-shutters-page .area-hero { background: radial-gradient(circle at 58% 18%, rgba(4, 7, 11, .38) 0%, rgba(4, 7, 11, .2) 28%, rgba(4, 7, 11, 0) 52%), linear-gradient(180deg, rgba(8, 10, 14, .24) 0%, rgba(8, 10, 14, .48) 38%, rgba(5, 7, 10, .84) 72%, rgba(5, 7, 10, .94) 100%), url("images/shutter-tracked-window-hero.png") center / cover; }
  .shutter-and-shade-shutters-page .area-hero { background: radial-gradient(circle at 58% 18%, rgba(4, 7, 11, .38) 0%, rgba(4, 7, 11, .2) 28%, rgba(4, 7, 11, 0) 52%), linear-gradient(180deg, rgba(8, 10, 14, .24) 0%, rgba(8, 10, 14, .48) 38%, rgba(5, 7, 10, .84) 72%, rgba(5, 7, 10, .94) 100%), url("images/shutter-shade-hero.png") center / cover; }
  .solid-panel-shutters-page .area-hero { background: radial-gradient(circle at 58% 18%, rgba(4, 7, 11, .38) 0%, rgba(4, 7, 11, .2) 28%, rgba(4, 7, 11, 0) 52%), linear-gradient(180deg, rgba(8, 10, 14, .24) 0%, rgba(8, 10, 14, .48) 38%, rgba(5, 7, 10, .84) 72%, rgba(5, 7, 10, .94) 100%), url("images/shutter-solid-panel-hero.png") center / cover; }
  .french-door-shutters-page .area-hero { background: radial-gradient(circle at 58% 18%, rgba(4, 7, 11, .38) 0%, rgba(4, 7, 11, .2) 28%, rgba(4, 7, 11, 0) 52%), linear-gradient(180deg, rgba(8, 10, 14, .24) 0%, rgba(8, 10, 14, .48) 38%, rgba(5, 7, 10, .84) 72%, rgba(5, 7, 10, .94) 100%), url("images/shutter-french-door-hero.png") center / cover; }

  .area-hero-copy {
    align-items: center;
    justify-content: flex-end;
    max-width: 430px;
    min-height: auto;
    margin: 0 auto;
    padding: 50px 26px 34px;
    text-align: center;
  }

  .area-hero-copy h1 {
    position: relative;
    margin-bottom: 28px;
    color: #fff;
    font-size: 17px;
    letter-spacing: 6px;
  }

  .area-hero-copy h1::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    width: 60px;
    height: 4px;
    background: var(--teal);
    transform: translateX(-50%);
  }

  .area-hero-copy .area-hero-main-title::after {
    display: none;
  }

  .area-hero-copy h1 span,
  .area-hero-copy strong span {
    color: var(--teal);
    text-shadow: 0 2px 12px rgba(0, 0, 0, .72);
  }

  .area-hero-copy strong {
    margin-bottom: 24px;
    font-size: 46px;
    line-height: .98;
    text-shadow: 0 3px 18px rgba(0, 0, 0, .56);
  }

  .area-hero-copy .area-hero-main-title {
    margin-bottom: 24px;
    color: #fff;
    font-size: 46px;
    line-height: .98;
    text-shadow: 0 3px 18px rgba(0, 0, 0, .56);
  }

  .area-hero-copy .area-hero-main-title span {
    color: #fff;
  }

  .area-hero-copy p {
    max-width: 380px;
    color: #fff;
    font-size: 17px;
    line-height: 1.48;
  }

  .area-hero-copy p + p {
    margin-top: 16px;
  }

  .area-hero-button {
    width: min(100%, 372px);
    min-height: 62px;
    margin: 28px auto 0;
    padding: 0 18px;
    background: var(--teal);
    color: #fff;
    font-size: 15px;
    letter-spacing: 2px;
    border-radius: 4px;
  }

  .area-hero-image {
    display: none;
  }

  .action-strip {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .action-tile {
    grid-template-columns: 46px minmax(0, 1fr);
    min-height: 104px;
    padding: 24px 22px;
  }

  .action-tile svg {
    width: 38px;
    height: 38px;
  }

  .action-tile span {
    font-size: 16px;
    letter-spacing: 3px;
  }

  .intro-copy {
    padding: 18px 18px 44px;
  }

  .intro-logo {
    width: min(360px, 82vw);
    margin-bottom: 10px;
  }

  .intro-collage {
    display: none;
  }

  .intro-mobile-image {
    display: block;
    width: min(100%, 360px);
    height: 430px;
    margin: 0 auto 30px;
    border: 4px solid var(--teal);
    border-radius: 8px;
    object-fit: cover;
    object-position: 72% center;
    box-shadow: 0 16px 34px rgba(61, 63, 73, .16);
  }

  .intro-copy h2 {
    margin-bottom: 22px;
    font-size: 27px;
    letter-spacing: 3px;
  }

  .intro-copy p {
    font-size: 18px;
    line-height: 1.55;
  }

  .intro-cta-buttons {
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
  }

  .intro-cta-buttons a {
    width: 100%;
    min-width: 0;
    min-height: 58px;
    font-size: 16px;
  }

  .why-choose {
    margin-top: 38px;
    padding: 42px 18px;
  }

  .why-choose-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .why-choose-image {
    min-height: 360px;
  }

  .why-choose-heading {
    margin-bottom: 30px;
  }

  .why-choose-heading h2 {
    font-size: 28px;
    letter-spacing: 4px;
  }

  .why-choose-heading p {
    font-size: 18px;
  }

  .why-choose-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .why-choose-grid article {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 16px;
    min-height: auto;
    padding: 24px;
  }

  .why-choose-grid span {
    width: 42px;
    height: 42px;
  }

  .why-choose-grid svg {
    width: 24px;
    height: 24px;
  }

  .why-choose-grid h3 {
    margin-bottom: 10px;
    font-size: 21px;
  }

  .why-choose-grid p {
    font-size: 17px;
  }

  .process-section {
    padding: 38px 18px;
  }

  .process-copy {
    margin-bottom: 34px;
  }

  .process-copy h2 {
    font-size: 28px;
    letter-spacing: 3px;
  }

  .process-copy p {
    font-size: 18px;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .process-card {
    min-height: auto;
    padding-bottom: 28px;
  }

  .process-card span {
    width: 44px;
    height: 44px;
    margin-top: -22px;
  }

  .new-build-offer {
    padding: 34px 18px 12px;
  }

  .new-build-offer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .new-build-offer-card {
    min-height: 620px;
    border-radius: 18px;
  }

  .new-build-offer-card img {
    object-position: 62% center;
  }

  .new-build-offer-card::before {
    background:
      linear-gradient(180deg, rgba(15, 18, 24, .06) 0%, rgba(15, 18, 24, .88) 52%, rgba(15, 18, 24, .92) 100%),
      linear-gradient(90deg, rgba(15, 18, 24, .56), rgba(15, 18, 24, .08));
  }

  .new-build-offer-copy {
    max-width: none;
    padding: 28px 22px;
  }

  .new-build-offer-copy p:first-child {
    min-height: 42px;
    margin-bottom: 16px;
    padding: 0 15px;
    font-size: 14px;
    letter-spacing: 1.3px;
  }

  .new-build-offer-copy h2 {
    font-size: 66px;
  }

  .new-build-offer-copy h3 {
    font-size: 28px;
    line-height: 1.08;
  }

  .new-build-offer-copy p:last-of-type {
    font-size: 16px;
  }

  .new-build-offer-copy a {
    width: 100%;
    min-height: 56px;
  }

  .product-journey {
    gap: 18px;
    padding: 34px 18px 18px;
    background: #f4f7fb;
  }

  .product-detail-section {
    min-height: auto;
    border: 1px solid rgba(61, 63, 73, .1);
    border-radius: 8px;
    background: #fff;
  }

  .product-detail-content {
    gap: 20px;
    padding: 24px 20px;
  }

  .product-detail-heading h2 {
    font-size: 28px;
    line-height: 1.05;
  }

  .product-detail-heading p {
    font-size: 16px;
  }

  .product-feature-grid,
  .finish-swatch-grid,
  .room-tile-grid,
  .fitting-step-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .product-feature-grid article,
  .finish-swatch-grid article,
  .room-tile-grid article,
  .fitting-step-grid article {
    min-height: auto;
    padding: 18px;
  }

  .fitting-step-grid article {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 8px 12px;
    align-items: center;
    padding-top: 18px;
  }

  .fitting-step-grid article > span {
    position: static;
    grid-row: 1;
    grid-column: 1;
    width: 42px;
    height: 42px;
  }

  .fitting-step-grid article h3 {
    grid-row: 1;
    grid-column: 2;
    margin: 0;
  }

  .fitting-step-grid article p {
    grid-row: 2;
    grid-column: 1 / -1;
  }

  .blinds-section {
    padding: 42px 18px;
  }

  .blinds-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .shutters-section {
    padding: 42px 18px;
  }

  .shutters-heading {
    margin-bottom: 28px;
  }

  .shutters-heading h2 {
    font-size: 28px;
    letter-spacing: 4px;
  }

  .shutters-heading p {
    font-size: 18px;
  }

  .shutters-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .shutter-card,
  .blind-card {
    min-height: 285px;
  }

  .service-card-copy {
    right: 86px;
    left: 20px;
    bottom: 22px;
    gap: 10px;
  }

  .shutter-card span,
  .blind-card span {
    font-size: 26px;
    letter-spacing: 0;
  }

  .service-card-copy ul {
    gap: 5px;
    font-size: 14px;
  }

  .shutter-card::after,
  .blind-card::after {
    right: 20px;
    bottom: 22px;
    width: 54px;
    font-size: 32px;
  }

  .google-reviews {
    padding: 38px 18px;
  }

  .google-reviews-summary {
    padding: 28px 20px;
  }

  .google-reviews-summary h2 {
    font-size: 26px;
    letter-spacing: 3px;
  }

  .google-review-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .google-review-grid article {
    min-height: auto;
  }

  .locations-section {
    padding: 42px 18px;
  }

  .locations-heading h2 {
    font-size: 30px;
    letter-spacing: 3px;
  }

  .locations-heading p {
    font-size: 18px;
  }

  .locations-links {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .location-card {
    min-height: 82px;
    padding: 18px;
  }

  .location-card-actions a {
    min-height: 40px;
    font-size: 12px;
  }

  .faq-section {
    padding: 42px 18px;
  }

  .faq-heading {
    margin-bottom: 28px;
  }

  .faq-heading h2 {
    font-size: 26px;
    letter-spacing: 2px;
  }

  .faq-heading p {
    font-size: 18px;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .faq-grid summary {
    min-height: 76px;
    padding: 18px;
    font-size: 15px;
    letter-spacing: .8px;
  }

  .faq-grid details p {
    margin: -2px 18px 20px;
    font-size: 15px;
  }

  .site-footer-main {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 42px 22px 32px;
  }

  .footer-logo {
    max-width: 190px;
  }

  .footer-brand-column p {
    margin-top: 20px;
    font-size: 17px;
  }

  .footer-column h2 {
    margin-bottom: 18px;
    font-size: 20px;
    letter-spacing: 2px;
  }

  .footer-column ul {
    gap: 12px;
  }

  .footer-column li,
  .footer-contact-list a,
  .footer-contact-list div {
    font-size: 17px;
  }

  .footer-button {
    width: 100%;
    min-height: 52px;
    margin-top: 20px;
    font-size: 13px;
  }

  .footer-contact-list {
    gap: 14px;
  }

  .footer-contact-list a,
  .footer-contact-list div {
    grid-template-columns: 24px minmax(0, 1fr);
    gap: 12px;
  }

  .footer-contact-list svg {
    width: 22px;
    height: 22px;
  }

  .footer-credit {
    flex-direction: column;
    min-height: 72px;
    gap: 5px;
    margin-bottom: 74px;
    padding: 12px 18px;
    font-size: 12px;
  }

  .footer-credit span {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3px;
    max-width: 100%;
  }

  .footer-credit span + span::before {
    display: none;
  }

  .footer-credit a {
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
  }

  .contact-section {
    padding: 42px 18px;
  }

  .contact-panel {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-details h2 {
    font-size: 38px;
    letter-spacing: 4px;
  }

  .contact-details > p {
    font-size: 20px;
  }

  .contact-methods a,
  .contact-methods div {
    min-height: 78px;
    gap: 16px;
    padding: 15px 18px;
    font-size: 18px;
  }

  .contact-methods svg {
    width: 30px;
    height: 30px;
  }

  .contact-form {
    padding: 24px 18px;
  }

  .intro-actions {
    gap: 18px;
    padding: 34px 18px;
  }

  .intro-actions h2 {
    font-size: 25px;
    letter-spacing: 2px;
  }

  .intro-actions p {
    font-size: 18px;
  }

  .intro-buttons {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .intro-buttons a {
    min-height: 68px;
    font-size: 18px;
  }

}
