/* ============================================================
   NEW Look Windows & Doors — style.css
   Premium, mobile-first, responsive stylesheet
   Palette: white, charcoal, warm beige, soft grey, dark navy
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  /* Colours */
  --white: #ffffff;
  --off-white: #faf9f7;
  --soft-grey: #f2f1ee;
  --grey-300: #d9d6d0;
  --grey-500: #8a877f;
  --charcoal: #2e2c29;
  --navy: #14355f;
  --navy-deep: #0c2444;
  --beige: #e9e0d2;
  --beige-warm: #cbb38a;
  --gold: #e09a2f;
  --gold-light: #f2b95c;
  --blue: #1e7fd0;
  --blue-light: #4aa3e8;

  /* Typography */
  --font-head: "Fraunces", Georgia, serif;
  --font-body: "Manrope", -apple-system, "Segoe UI", sans-serif;

  /* Layout */
  --container: 1280px;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow-sm: 0 4px 14px rgba(16, 28, 44, 0.07);
  --shadow-md: 0 12px 34px rgba(16, 28, 44, 0.12);
  --shadow-lg: 0 24px 60px rgba(16, 28, 44, 0.18);
  --header-h: 76px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset & base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 20px);
}

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

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

ul,
ol {
  list-style: none;
}

button {
  font: inherit;
  background: none;
  border: none;
  cursor: pointer;
  color: inherit;
}

/* Icon defaults: all sprite icons are stroke-based */
svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.85rem 1.7rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s, color 0.3s;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s var(--ease);
}

.btn:hover svg {
  transform: translateX(4px);
}

.btn--gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy-deep);
  box-shadow: 0 8px 22px rgba(185, 141, 79, 0.35);
}

.btn--gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(185, 141, 79, 0.45);
}

.btn--dark {
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.btn--dark:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  background: var(--navy-deep);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(6px);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-3px);
}

.btn--outline {
  border: 1.5px solid var(--navy);
  color: var(--navy);
}

.btn--outline:hover {
  background: var(--navy);
  color: var(--white);
}

.btn--lg {
  padding: 1.05rem 2.2rem;
  font-size: 1.02rem;
}

.btn--sm {
  padding: 0.6rem 1.2rem;
  font-size: 0.85rem;
}

.btn--block {
  width: 100%;
}

/* Shine sweep on hover */
.btn--shine::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.55) 50%, transparent 60%);
  transform: translateX(-120%);
}

.btn--shine:hover::after {
  transform: translateX(120%);
  transition: transform 0.7s var(--ease);
}

/* ---------- Glassmorphism helpers ---------- */
.glass {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: var(--shadow-md);
}

.glass-dark {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

/* ---------- Scroll progress bar ---------- */
.progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 200;
  pointer-events: none;
}

.progress span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--blue), var(--gold));
  border-radius: 0 3px 3px 0;
}

/* ---------- Announcement bar ---------- */
.announce {
  background: var(--navy-deep);
  color: var(--beige);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-align: center;
  padding: 0.5rem 1rem;
  position: relative;
  overflow: hidden;
}

.announce i {
  margin: 0 0.9rem;
  font-style: normal;
  color: var(--gold);
}

/* Slow shimmer sweep across the bar */
.announce::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 42%, rgba(255, 255, 255, 0.14) 50%, transparent 58%);
  animation: announceShine 6s linear infinite;
}

@keyframes announceShine {
  from {
    transform: translateX(-100%);
  }

  to {
    transform: translateX(100%);
  }
}

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.35s, border-color 0.35s, background 0.35s;
}

.header.is-scrolled {
  box-shadow: 0 6px 24px rgba(16, 28, 44, 0.09);
  border-color: var(--soft-grey);
  background: rgba(255, 255, 255, 0.96);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: var(--header-h);
}

/* Logo — inline SVG recreation of the brand artwork */
.logo {
  display: flex;
  align-items: center;
  flex: none;
}

.logo-svg {
  height: 50px;
  aspect-ratio: 2000 / 520;
  width: auto;
  color: var(--navy);
  /* "NEW" + subtitle inherit this */
  fill: currentColor;
  stroke: none;
  transition: transform 0.35s var(--ease);
}

.logo:hover .logo-svg {
  transform: scale(1.03);
}

.logo-svg--light {
  color: var(--white);
  height: 62px;
  --logo-ink: #dfe9f5;
}

.logo-svg text {
  stroke: none;
}

/* Desktop nav */
.nav {
  display: none;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.nav__link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.55rem 0.85rem;
  border-radius: 10px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--charcoal);
  transition: color 0.25s, background 0.25s;
  position: relative;
  white-space: nowrap;
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.25rem;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.nav__link:hover {
  color: var(--navy);
}

.nav__link:hover::after {
  transform: scaleX(1);
}

.nav__caret {
  width: 14px;
  height: 14px;
  transition: transform 0.3s var(--ease);
}

/* Mega menu */
.nav__item--mega {
  position: static;
}

.mega {
  position: absolute;
  left: 50%;
  top: calc(100% + 2px);
  transform: translateX(-50%) translateY(14px);
  width: min(920px, calc(100vw - 3rem));
  background: var(--white);
  border: 1px solid var(--soft-grey);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 1.6rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0.3s;
}

/* Invisible bridge so the cursor can travel from the nav button
   down to the panel without the hover state dropping out */
.mega::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -34px;
  height: 34px;
}

.nav__item--mega.is-open .mega,
.nav__item--mega:hover .mega,
.nav__item--mega:focus-within .mega {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav__item--mega.is-open .nav__caret,
.nav__item--mega:hover .nav__caret {
  transform: rotate(180deg);
}

/* Two columns: product list left, live preview right */
.mega__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.4rem;
  align-items: stretch;
}

.mega__list {
  display: grid;
  gap: 0.15rem;
  align-content: start;
}

/* Hover preview panel — swapped by JS as you move over products */
.mega__preview {
  border-radius: 18px;
  overflow: hidden;
  background: var(--off-white);
  border: 1px solid var(--soft-grey);
  display: flex;
  flex-direction: column;
}

.mega__preview-media {
  height: 210px;
  display: grid;
  place-items: center;
  position: relative;
}

.mega__preview-media svg {
  width: 84px;
  height: 84px;
  color: rgba(255, 255, 255, 0.94);
  stroke-width: 1.2;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.3));
  animation: previewIn 0.45s var(--ease);
}

.mega__preview-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 90% at 20% 0%, rgba(255, 255, 255, 0.22), transparent 55%);
}

@keyframes previewIn {
  from {
    opacity: 0;
    transform: scale(0.8) translateY(8px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.mega__preview-body {
  padding: 1.1rem 1.3rem 1.3rem;
  display: grid;
  gap: 0.3rem;
}

.mega__preview-body strong {
  font-family: var(--font-head);
  font-size: 1.25rem;
  color: var(--navy);
}

.mega__preview-body p {
  font-size: 0.86rem;
  color: var(--grey-500);
  line-height: 1.5;
}

.mega__preview-link {
  font-weight: 700;
  font-size: 0.86rem;
  color: var(--blue);
  margin-top: 0.3rem;
}

/* Preview media — real product photography (assets/images/) */
.pv-windows,
.pv-doors,
.pv-roller-blinds,
.pv-curtains,
.pv-flyscreens,
.pv-roller-shutters,
.pv-plantation-shutters {
  background-size: cover;
  background-position: center;
  background-color: var(--navy);
}

.pv-windows {
  background-image: url("assets/images/windows.jpg");
}

.pv-doors {
  background-image: url("assets/images/doors.jpg");
}

.pv-roller-blinds {
  background-image: url("assets/images/roller-blinds.jpg");
}

.pv-curtains {
  background-image: url("assets/images/curtains.jpg");
}

.pv-flyscreens {
  background-image: url("assets/images/flyscreens.jpg");
}

.pv-roller-shutters {
  background-image: url("assets/images/roller-shutters.jpg");
}

.pv-plantation-shutters {
  background-image: url("assets/images/plantation-shutters.jpg");
}

/* Photos replace the placeholder icons/labels inside these boxes */
.mega__preview-media svg,
.ph[class*="pv-"] svg,
.ph[class*="pv-"] span {
  display: none;
}

.mega__item {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 0.85rem;
  border-radius: 14px;
  opacity: 0;
  transform: translateY(10px);
  transition: background 0.25s, transform 0.35s var(--ease), opacity 0.35s var(--ease);
}

/* Staggered entrance for menu items when the panel opens */
.nav__item--mega.is-open .mega__item,
.nav__item--mega:hover .mega__item,
.nav__item--mega:focus-within .mega__item {
  opacity: 1;
  transform: translateY(0);
}

.mega__item:nth-child(2) {
  transition-delay: 0.04s;
}

.mega__item:nth-child(3) {
  transition-delay: 0.08s;
}

.mega__item:nth-child(4) {
  transition-delay: 0.12s;
}

.mega__item:nth-child(5) {
  transition-delay: 0.16s;
}

.mega__item:nth-child(6) {
  transition-delay: 0.2s;
}

.mega__item:nth-child(7) {
  transition-delay: 0.24s;
}

.mega__item:nth-child(8) {
  transition-delay: 0.28s;
}

.mega__item:nth-child(9) {
  transition-delay: 0.32s;
}

.mega__item:hover {
  background: var(--off-white);
  transform: translateY(-2px);
}

.mega__icon {
  flex: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--beige), var(--soft-grey));
  display: grid;
  place-items: center;
  color: var(--navy);
  transition: background 0.25s, color 0.25s;
}

.mega__item:hover .mega__icon {
  background: linear-gradient(135deg, var(--navy), var(--navy-deep));
  color: var(--gold-light);
}

.mega__icon svg {
  width: 22px;
  height: 22px;
}

.mega__item strong {
  display: block;
  font-size: 0.95rem;
  color: var(--navy);
}

.mega__item small {
  display: block;
  font-size: 0.8rem;
  color: var(--grey-500);
  line-height: 1.45;
}

.mega__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.2rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--soft-grey);
}

.mega__footer p {
  font-size: 0.9rem;
  color: var(--grey-500);
}

/* Header actions */
.header__actions {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.header__phone {
  display: none;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--navy);
  white-space: nowrap;
}

.header__phone svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
}

.header__cta {
  display: none;
}

/* Hamburger */
.hamburger {
  display: grid;
  gap: 5px;
  padding: 10px;
  border-radius: 10px;
}

.hamburger span {
  width: 24px;
  height: 2.5px;
  background: var(--navy);
  border-radius: 3px;
  transition: transform 0.35s var(--ease), opacity 0.25s;
}

.hamburger.is-active span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-active span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* Mobile menu */
.mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--soft-grey);
  box-shadow: var(--shadow-lg);
  max-height: 0;
  overflow: hidden;
  visibility: hidden;
  transition: max-height 0.45s var(--ease), visibility 0.45s;
}

.mobile-menu.is-open {
  max-height: calc(100vh - var(--header-h));
  overflow-y: auto;
  visibility: visible;
}

.mobile-menu__list {
  padding: 0.8rem 1.4rem;
}

.mobile-menu__list>li {
  border-bottom: 1px solid var(--soft-grey);
}

.mobile-menu__list>li:last-child {
  border-bottom: none;
}

.mobile-menu__list a,
.mobile-menu__acc-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.9rem 0.2rem;
  font-weight: 600;
  font-size: 1rem;
  color: var(--charcoal);
}

.mobile-menu__acc-btn svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s var(--ease);
}

.mobile-menu__acc.is-open .mobile-menu__acc-btn svg {
  transform: rotate(180deg);
}

.mobile-menu__sub {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
  padding-left: 0.9rem;
}

.mobile-menu__acc.is-open .mobile-menu__sub {
  max-height: 500px;
}

.mobile-menu__sub a {
  font-weight: 500;
  font-size: 0.93rem;
  color: var(--grey-500);
  padding: 0.55rem 0.2rem;
}

.mobile-menu__cta {
  display: grid;
  gap: 0.7rem;
  padding: 1rem 1.4rem 1.5rem;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 55%, #1a4272 100%);
  color: var(--white);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-color: #0c2444;
}

.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.5;
}

.hero__blob--1 {
  width: 480px;
  height: 480px;
  background: rgba(185, 141, 79, 0.35);
  top: -160px;
  right: -120px;
  animation: blobDrift 14s ease-in-out infinite alternate;
}

.hero__blob--2 {
  width: 380px;
  height: 380px;
  background: rgba(233, 224, 210, 0.14);
  bottom: -140px;
  left: -100px;
  animation: blobDrift 18s ease-in-out infinite alternate-reverse;
}

.hero__blob--3 {
  width: 260px;
  height: 260px;
  background: rgba(216, 181, 126, 0.2);
  top: 40%;
  left: 42%;
  animation: blobDrift 22s ease-in-out infinite alternate;
}

@keyframes blobDrift {
  from {
    transform: translate(0, 0) scale(1);
  }

  to {
    transform: translate(40px, 30px) scale(1.12);
  }
}

/* Full-bleed background video + readability overlay */
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(100deg, rgba(8, 18, 34, 0.9) 0%, rgba(10, 26, 48, 0.78) 45%, rgba(8, 18, 34, 0.55) 100%),
    linear-gradient(0deg, rgba(6, 14, 26, 0.55), transparent 55%);
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image: none;
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 30%, transparent 75%);
}

/* On the video hero the grid sits above the overlay */
.hero--video .hero__grid {
  z-index: 2;
}

.hero--video .hero__inner {
  z-index: 3;
  grid-template-columns: 1fr;
}

.hero--video .hero__content {
  max-width: 46rem;
}

.hero--video .hero__title {
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.4);
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 3rem;
  padding: 4.5rem 0 5.5rem;
}

.hero__eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  border: 1px solid rgba(216, 181, 126, 0.4);
  border-radius: 999px;
  padding: 0.45rem 1.1rem;
  margin-bottom: 1.4rem;
  background: rgba(216, 181, 126, 0.08);
}

.hero__title {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(2.3rem, 5.4vw, 3.9rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
}

.hero__title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero__sub {
  max-width: 34rem;
  margin-top: 1.3rem;
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.78);
}

.hero__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2.1rem;
}

.hero__points {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  margin-top: 2.2rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
}

.hero__points li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.hero__points svg {
  width: 17px;
  height: 17px;
  color: var(--gold-light);
}

/* Hero visual — stylised window illustration */
.hero__visual {
  position: relative;
  display: none;
}

.hero__frame {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 4 / 5;
  margin-inline: auto;
  border-radius: var(--radius-lg);
  background: linear-gradient(150deg, rgba(233, 224, 210, 0.16), rgba(233, 224, 210, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 1.4rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero__window {
  height: 100%;
  border-radius: 16px;
  background: linear-gradient(160deg, #2d5c8f 0%, #14355f 100%);
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 8px;
  padding: 10px;
  border: 2px solid rgba(216, 181, 126, 0.5);
}

.hero__sash {
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(216, 181, 126, 0.28), rgba(255, 255, 255, 0.07) 45%, rgba(255, 255, 255, 0.16));
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.hero__blind {
  position: absolute;
  left: 1.4rem;
  right: 1.4rem;
  top: 1.4rem;
  height: 34%;
  border-radius: 16px 16px 10px 10px;
  background: repeating-linear-gradient(180deg, var(--beige) 0 14px, var(--grey-300) 14px 16px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
  animation: blindBreathe 7s ease-in-out infinite alternate;
}

@keyframes blindBreathe {
  from {
    height: 30%;
  }

  to {
    height: 42%;
  }
}

.hero__card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1.15rem;
  border-radius: 16px;
  color: var(--navy);
  bottom: 8%;
  left: -6%;
}

.hero__card--2 {
  top: 6%;
  right: -4%;
  left: auto;
  bottom: auto;
}

.hero__card svg {
  width: 26px;
  height: 26px;
  color: var(--gold);
  flex: none;
}

.hero__card strong {
  display: block;
  font-size: 0.92rem;
  line-height: 1.2;
}

.hero__card small {
  font-size: 0.78rem;
  color: var(--grey-500);
}

/* Floating animations */
.float-anim {
  animation: floatY 6s ease-in-out infinite alternate;
}

.float-anim-slow {
  animation: floatY 9s ease-in-out infinite alternate-reverse;
}

@keyframes floatY {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-14px);
  }
}

/* ---------- Trust badges ---------- */
.trust {
  background: var(--off-white);
  border-bottom: 1px solid var(--soft-grey);
}

.trust__row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.1rem;
  padding: 2.2rem 0;
}

.trust__row li {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-weight: 700;
  font-size: 0.88rem;
  line-height: 1.35;
  color: var(--navy);
}

.trust__row li small {
  display: block;
  font-weight: 500;
  color: var(--grey-500);
  font-size: 0.74rem;
}

.trust__row svg {
  flex: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border-radius: 13px;
  color: var(--blue);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), color 0.35s;
}

.trust__row li:hover svg {
  transform: translateY(-4px) rotate(-6deg);
  color: var(--gold);
}

/* ---------- Section scaffolding ---------- */
.section {
  padding: 5.5rem 0;
}

.section__head {
  max-width: 46rem;
  margin: 0 auto 3.2rem;
  text-align: center;
}

.section__eyebrow {
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.8rem;
}

.section__eyebrow--light {
  color: var(--gold-light);
}

.section__title {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  line-height: 1.18;
  color: var(--navy);
}

.section__title em {
  font-style: italic;
  color: var(--gold);
}

.section__title--light {
  color: var(--white);
}

.section__title--light em {
  color: var(--gold-light);
}

.section__sub {
  margin-top: 1rem;
  color: var(--grey-500);
  font-size: 1.02rem;
}

/* ---------- Product cards grid ---------- */
.products {
  background: var(--white);
}

.products__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
}

.pcard {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--soft-grey);
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.pcard:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.pcard__media {
  height: 170px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s var(--ease);
}

/* Real photos in place — hide the placeholder icon, zoom the photo on hover */
.pcard__media svg {
  display: none;
}

.pcard:hover .pcard__media {
  transform: scale(1.06);
}

.pcard__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 90% at 20% 0%, rgba(255, 255, 255, 0.22), transparent 55%);
}

/* Diagonal shine sweep across the card image on hover */
.pcard__media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(115deg, transparent 35%, rgba(255, 255, 255, 0.28) 50%, transparent 65%);
  transform: translateX(-130%) skewX(-8deg);
}

.pcard:hover .pcard__media::before {
  transform: translateX(130%) skewX(-8deg);
  transition: transform 0.8s var(--ease);
}

/* Per-product photography (assets/images/) */
.pcard__media--windows {
  background-image: url("assets/images/windows.jpg");
}

.pcard__media--doors {
  background-image: url("assets/images/doors.jpg");
}

.pcard__media--rollerblinds {
  background-image: url("assets/images/roller-blinds.jpg");
}

.pcard__media--curtains {
  background-image: url("assets/images/curtains.jpg");
}

.pcard__media--flyscreens {
  background-image: url("assets/images/flyscreens.jpg");
}

.pcard__media--rollershutters {
  background-image: url("assets/images/roller-shutters.jpg");
}

.pcard__media--plantation {
  background-image: url("assets/images/plantation-shutters.jpg");
}

.pcard__body {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 1.4rem 1.5rem 1.6rem;
}

.pcard__body strong {
  font-family: var(--font-head);
  font-size: 1.28rem;
  font-weight: 600;
  color: var(--navy);
}

.pcard__body small {
  font-size: 0.9rem;
  color: var(--grey-500);
  line-height: 1.55;
}

.pcard__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.5rem;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--blue);
}

.pcard__link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s var(--ease);
}

.pcard:hover .pcard__link svg {
  transform: translateX(5px);
}

/* ---------- Stats strip ---------- */
.stats {
  background: var(--navy-deep);
  color: var(--white);
}

.stats__row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  padding: 3.4rem 0;
  text-align: center;
}

.stat strong {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 2.9rem);
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1.1;
}

.stat>span {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.04em;
}

/* ---------- Featured showcase ---------- */
.showcase {
  background: var(--off-white);
}

.feature {
  display: grid;
  gap: 2rem;
  align-items: center;
  padding: 2.6rem 0;
  scroll-margin-top: calc(var(--header-h) + 30px);
}

.feature+.feature {
  border-top: 1px solid var(--soft-grey);
}

.feature__tag {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.6rem;
}

.feature__body h3 {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.9rem;
}

.feature__body>p {
  color: var(--grey-500);
  margin-bottom: 1.2rem;
}

.feature__list {
  display: grid;
  gap: 0.55rem;
  margin-bottom: 1.6rem;
}

.feature__list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
  font-size: 0.94rem;
}

.feature__list svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex: none;
}

/* Image placeholders — replace with real photography */
.ph {
  border-radius: var(--radius-lg);
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}

.ph:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
}

.ph::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 100% at 15% 0%, rgba(255, 255, 255, 0.2), transparent 55%);
}

.ph svg {
  width: 72px;
  height: 72px;
  stroke-width: 1.2;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.3));
}

.ph span {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  opacity: 0.75;
  padding: 0 1.5rem;
  position: relative;
}

.ph--rollerblinds,
.ph--security,
.ph--plantation,
.ph--rollershutters,
.ph--curtains,
.ph--retail {
  background-size: cover;
  background-position: center;
  background-color: var(--navy);
}

/* Photos in place — hide the placeholder icon + label */
.ph--rollerblinds svg,
.ph--rollerblinds span,
.ph--security svg,
.ph--security span,
.ph--plantation svg,
.ph--plantation span,
.ph--rollershutters svg,
.ph--rollershutters span,
.ph--curtains svg,
.ph--curtains span,
.ph--retail svg,
.ph--retail span {
  display: none;
}

.ph--rollerblinds {
  background-image: url("assets/images/roller-blinds.jpg");
}

.ph--security {
  background-image: url("assets/images/doors.jpg");
}

/* Doors showcase */
.ph--plantation {
  background-image: url("assets/images/plantation-shutters.jpg");
}

.ph--rollershutters {
  background-image: url("assets/images/roller-shutters.jpg");
}

.ph--curtains {
  background-image: url("assets/images/curtains.jpg");
}

.ph--retail {
  background-image: url("assets/images/curtains.jpg");
  aspect-ratio: 4 / 4.4;
}

/* Compact product rows */
.minis {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.3rem;
  margin-top: 3rem;
}

.mini {
  background: var(--white);
  border: 1px solid var(--soft-grey);
  border-radius: var(--radius);
  padding: 1.7rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  scroll-margin-top: calc(var(--header-h) + 30px);
}

.mini:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.mini>svg {
  width: 40px;
  height: 40px;
  color: var(--gold);
  margin-bottom: 0.9rem;
}

.mini h3 {
  font-family: var(--font-head);
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.mini p {
  font-size: 0.92rem;
  color: var(--grey-500);
  margin-bottom: 0.9rem;
}

.mini a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--navy);
}

.mini a svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s var(--ease);
}

.mini a:hover svg {
  transform: translateX(5px);
}

/* ---------- Wholesale ---------- */
.wholesale {
  background: linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 70%, #1a4272 100%);
  color: rgba(255, 255, 255, 0.82);
  position: relative;
  overflow: hidden;
}

.wholesale::before {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: rgba(185, 141, 79, 0.14);
  filter: blur(90px);
  top: -180px;
  right: -160px;
  pointer-events: none;
}

.wholesale__inner {
  display: grid;
  gap: 3rem;
  position: relative;
}

.wholesale__intro>p {
  margin: 1.1rem 0 1.4rem;
  max-width: 32rem;
}

.wholesale__supply {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.6rem;
  max-width: 34rem;
}

.wholesale__supply li {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--beige);
  border: 1px solid rgba(216, 181, 126, 0.35);
  border-radius: 999px;
  padding: 0.3rem 0.85rem;
  background: rgba(216, 181, 126, 0.08);
}

.ycard__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.6rem;
}

.ycard__tags li {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
  background: var(--beige);
  border-radius: 999px;
  padding: 0.25rem 0.8rem;
}

.wholesale__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.wcard {
  border-radius: var(--radius);
  padding: 1.4rem 1.5rem;
  transition: transform 0.35s var(--ease), background 0.35s, border-color 0.35s;
}

.wcard:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(216, 181, 126, 0.4);
}

.wcard svg {
  width: 30px;
  height: 30px;
  color: var(--gold-light);
  margin-bottom: 0.8rem;
}

.wcard strong {
  display: block;
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.wcard small {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}

/* ---------- Retail ---------- */
.retail {
  background: var(--white);
}

.retail__inner {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.retail__media {
  position: relative;
}

.retail__badge {
  position: absolute;
  bottom: -1.2rem;
  right: 1rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.9rem 1.2rem;
  border-radius: 16px;
  color: var(--navy);
}

.retail__badge svg {
  width: 26px;
  height: 26px;
  color: var(--gold);
}

.retail__badge strong {
  display: block;
  font-size: 0.9rem;
  line-height: 1.2;
}

.retail__badge small {
  font-size: 0.78rem;
  color: var(--grey-500);
}

.retail__body .section__title {
  margin-bottom: 1rem;
}

.retail__body>p {
  color: var(--grey-500);
  margin-bottom: 1.6rem;
}

.retail__list {
  display: grid;
  gap: 1.05rem;
  margin-bottom: 1.9rem;
}

.retail__list li {
  display: flex;
  gap: 0.95rem;
  align-items: flex-start;
}

.retail__list svg {
  flex: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border-radius: 12px;
  color: var(--gold);
  background: var(--off-white);
  border: 1px solid var(--soft-grey);
}

.retail__list strong {
  display: block;
  font-size: 0.98rem;
  color: var(--navy);
}

.retail__list small {
  font-size: 0.87rem;
  color: var(--grey-500);
}

/* ---------- Why choose us ---------- */
.why {
  background: var(--beige);
}

.why .section__title {
  color: var(--navy);
}

.why__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.3rem;
}

.ycard {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.9rem 1.7rem;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.ycard:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-md);
}

.ycard__num {
  position: absolute;
  top: 0.9rem;
  right: 1.2rem;
  font-family: var(--font-head);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--soft-grey);
  line-height: 1;
  user-select: none;
}

.ycard>svg {
  width: 34px;
  height: 34px;
  color: var(--gold);
  margin-bottom: 0.9rem;
}

.ycard h3 {
  font-family: var(--font-head);
  font-size: 1.22rem;
  color: var(--navy);
  margin-bottom: 0.45rem;
}

.ycard p {
  font-size: 0.9rem;
  color: var(--grey-500);
}

/* ---------- Process timeline ---------- */
.process {
  background: var(--white);
}

.timeline {
  position: relative;
  display: grid;
  gap: 2rem;
  padding-left: 2.2rem;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 17px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: linear-gradient(var(--gold), var(--beige));
}

.tstep {
  position: relative;
}

.tstep__dot {
  position: absolute;
  left: -2.2rem;
  top: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy-deep);
  font-weight: 800;
  font-size: 0.95rem;
  display: grid;
  place-items: center;
  box-shadow: 0 0 0 6px var(--white), var(--shadow-sm);
  transform: scale(0);
}

/* Dots pop in as each step reveals */
.tstep.is-visible .tstep__dot {
  animation: dotPop 0.55s var(--ease) forwards;
}

@keyframes dotPop {
  0% {
    transform: scale(0);
  }

  70% {
    transform: scale(1.25);
  }

  100% {
    transform: scale(1);
  }
}

.tstep__card {
  background: var(--off-white);
  border: 1px solid var(--soft-grey);
  border-radius: var(--radius);
  padding: 1.5rem 1.6rem;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.tstep__card:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
}

.tstep__card svg {
  width: 30px;
  height: 30px;
  color: var(--gold);
  margin-bottom: 0.7rem;
}

.tstep__card h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 0.35rem;
}

.tstep__card p {
  font-size: 0.92rem;
  color: var(--grey-500);
}

/* ---------- Industries ---------- */
.industries {
  background: var(--off-white);
  padding-bottom: 4.5rem;
}

.industries__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.75rem 1.3rem;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--soft-grey);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--charcoal);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), border-color 0.3s, color 0.3s;
}

.chip:hover {
  transform: translateY(-4px) scale(1.04);
  border-color: var(--blue);
  color: var(--navy);
}

.chip svg {
  width: 18px;
  height: 18px;
  color: var(--blue);
}

/* Chips pop in with a little scale on reveal */
.chip.reveal {
  transform: translateY(20px) scale(0.9);
}

.chip.reveal.is-visible {
  transform: translateY(0) scale(1);
}

/* ---------- Service areas ---------- */
.areas {
  background: var(--white);
}

.areas__inner {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.areas__map {
  position: relative;
  aspect-ratio: 1;
  max-width: 380px;
  margin-inline: auto;
  width: 100%;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 45%, var(--beige) 0%, var(--off-white) 62%, transparent 70%);
  display: grid;
  place-items: center;
  align-content: center;
  gap: 1rem;
}

.areas__pin {
  position: relative;
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
}

.areas__pin>svg {
  width: 52px;
  height: 52px;
  color: var(--gold);
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 8px 14px rgba(185, 141, 79, 0.4));
}

.areas__pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--gold);
  animation: pulse 2.6s ease-out infinite;
}

.areas__pulse--2 {
  animation-delay: 1.3s;
}

@keyframes pulse {
  from {
    transform: scale(0.5);
    opacity: 0.9;
  }

  to {
    transform: scale(1.7);
    opacity: 0;
  }
}

.areas__label {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
}

.areas__body .section__title {
  margin-bottom: 1rem;
}

.areas__body>p {
  color: var(--grey-500);
  margin-bottom: 1.6rem;
}

.areas__cols {
  display: grid;
  gap: 1.2rem;
  margin-bottom: 1.8rem;
}

.areas__cols>div {
  background: var(--off-white);
  border: 1px solid var(--soft-grey);
  border-radius: var(--radius);
  padding: 1.3rem 1.4rem;
}

.areas__cols h3 {
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 0.35rem;
}

.areas__cols p {
  font-size: 0.88rem;
  color: var(--grey-500);
}

/* ---------- Advantage / warranty ---------- */
.advantage {
  background: var(--off-white);
  padding-top: 0;
}

.advantage__card {
  background: linear-gradient(155deg, var(--navy-deep) 0%, var(--navy) 60%, #1a4272 100%);
  border-radius: var(--radius-lg);
  padding: 2.6rem 1.8rem;
  color: rgba(255, 255, 255, 0.8);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.advantage__card::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(216, 181, 126, 0.16);
  filter: blur(80px);
  bottom: -160px;
  right: -120px;
}

.advantage__head {
  display: flex;
  gap: 1.3rem;
  align-items: center;
  margin-bottom: 2rem;
  position: relative;
}

.advantage__seal {
  flex: none;
  width: 72px;
  height: 72px;
  padding: 16px;
  border-radius: 50%;
  color: var(--gold-light);
  background: rgba(216, 181, 126, 0.12);
  border: 1.5px solid rgba(216, 181, 126, 0.45);
}

.advantage__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  position: relative;
}

.advantage__grid li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 1rem 1.15rem;
}

.advantage__grid svg {
  width: 20px;
  height: 20px;
  color: var(--gold-light);
  flex: none;
  margin-top: 2px;
}

.advantage__grid strong {
  display: block;
  color: var(--white);
  font-size: 0.95rem;
}

.advantage__grid small {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
}

.advantage__terms {
  margin-top: 1.6rem;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
  position: relative;
}

/* ---------- Quote form ---------- */
.quote {
  background: linear-gradient(180deg, var(--white) 0%, var(--beige) 100%);
}

.quote__inner {
  display: grid;
  gap: 3rem;
}

.quote__info .section__title {
  margin-bottom: 1rem;
}

.quote__info>p {
  color: var(--grey-500);
  margin-bottom: 2rem;
  max-width: 30rem;
}

.quote__contacts {
  display: grid;
  gap: 1.2rem;
}

.quote__contacts li {
  display: flex;
  align-items: center;
  gap: 0.95rem;
}

.quote__contacts svg {
  flex: none;
  width: 46px;
  height: 46px;
  padding: 12px;
  border-radius: 14px;
  color: var(--gold);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.quote__contacts small {
  display: block;
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-500);
}

.quote__contacts a,
.quote__contacts span {
  font-weight: 700;
  color: var(--navy);
  font-size: 1rem;
}

.quote__contacts a:hover {
  color: var(--gold);
}

.qform {
  border-radius: var(--radius-lg);
  padding: 2rem 1.6rem;
  position: relative;
}

.qform h3 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 1.4rem;
}

.qform__row {
  display: grid;
  gap: 1rem;
}

.qform__field {
  margin-bottom: 1rem;
}

.qform__field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.35rem;
}

.qform__field input,
.qform__field select,
.qform__field textarea {
  width: 100%;
  font: inherit;
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--white);
  border: 1.5px solid var(--grey-300);
  border-radius: 12px;
  padding: 0.8rem 1rem;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.qform__field textarea {
  resize: vertical;
  min-height: 100px;
}

.qform__field input:focus,
.qform__field select:focus,
.qform__field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(185, 141, 79, 0.15);
}

.qform__field input.is-invalid,
.qform__field select.is-invalid {
  border-color: #c0392b;
}

.qform__note {
  margin-top: 0.9rem;
  text-align: center;
  font-size: 0.8rem;
  color: var(--grey-500);
}

.qform__success {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: rgba(250, 249, 247, 0.97);
  display: grid;
  place-items: center;
  align-content: center;
  gap: 0.6rem;
  text-align: center;
  padding: 2rem;
  animation: fadeIn 0.5s var(--ease);
}

.qform__success[hidden] {
  display: none;
}

.qform__success svg {
  width: 64px;
  height: 64px;
  padding: 16px;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  stroke-width: 2.4;
  margin-bottom: 0.4rem;
}

.qform__success strong {
  font-family: var(--font-head);
  font-size: 1.5rem;
  color: var(--navy);
}

.qform__success p {
  font-size: 0.92rem;
  color: var(--grey-500);
  max-width: 24rem;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.97);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ---------- Product pages ---------- */
.phero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 55%, #1a4272 100%);
  color: var(--white);
  padding: 4.2rem 0 4.6rem;
}

.phero .hero__blob {
  position: absolute;
}

.phero__inner {
  position: relative;
  z-index: 1;
  max-width: 46rem;
}

.crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1.3rem;
}

.crumbs a {
  color: var(--gold-light);
  transition: color 0.25s;
}

.crumbs a:hover {
  color: var(--white);
}

.crumbs i {
  font-style: normal;
  opacity: 0.5;
}

.phero h1 {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(2.1rem, 4.6vw, 3.3rem);
  line-height: 1.12;
}

.phero h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.phero__sub {
  margin-top: 1.1rem;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.78);
  max-width: 36rem;
}

.phero__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.9rem;
}

/* Overview: text + media */
.pbody {
  background: var(--white);
}

.pbody__inner {
  display: grid;
  gap: 2.6rem;
  align-items: center;
}

.pbody__text h2 {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--navy);
  margin-bottom: 1rem;
}

.pbody__text h2 em {
  font-style: italic;
  color: var(--blue);
}

.pbody__text p {
  color: var(--grey-500);
  margin-bottom: 1rem;
}

.pbody__text .feature__list {
  margin-top: 1.4rem;
}

/* Benefit cards */
.pbenefits {
  background: var(--off-white);
}

.pbenefits__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
}

/* Gallery placeholders */
.pgal__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
}

.pgal__grid .ph {
  aspect-ratio: 4 / 3;
}

.pgal__grid .ph svg {
  width: 52px;
  height: 52px;
}

/* CTA band */
.cta-band {
  background: linear-gradient(150deg, var(--navy-deep) 0%, var(--navy) 60%, #1a4272 100%);
  color: var(--white);
  text-align: center;
  padding: 4.2rem 0;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: rgba(216, 181, 126, 0.15);
  filter: blur(85px);
  top: -160px;
  right: -120px;
}

.cta-band h2 {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  position: relative;
}

.cta-band h2 em {
  font-style: italic;
  color: var(--gold-light);
}

.cta-band p {
  margin: 0.9rem auto 1.8rem;
  max-width: 34rem;
  color: rgba(255, 255, 255, 0.75);
  position: relative;
}

.cta-band__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  justify-content: center;
  position: relative;
}

@media (min-width: 900px) {
  .phero {
    padding: 5.5rem 0 6rem;
  }

  .pbody__inner {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 4rem;
  }

  .pbenefits__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .pgal__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 600px) and (max-width: 899px) {
  .pbenefits__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pgal__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ---------- Footer ---------- */
.footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.65);
}

.footer__grid {
  display: grid;
  gap: 2.4rem;
  padding: 4rem 0 2.5rem;
}

.footer__brand>p {
  margin: 1.1rem 0 1.4rem;
  font-size: 0.92rem;
  max-width: 22rem;
}

.footer__col h3 {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1rem;
}

.footer__col ul {
  display: grid;
  gap: 0.55rem;
}

.footer__col a {
  font-size: 0.92rem;
  transition: color 0.25s, padding-left 0.25s;
}

.footer__col a:hover {
  color: var(--gold-light);
  padding-left: 4px;
}

.footer__contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
}

.footer__contact svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex: none;
  margin-top: 4px;
}

.footer__contact span {
  font-size: 0.9rem;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__bottom-inner {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  align-items: center;
  padding: 1.3rem 0;
  font-size: 0.8rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.4);
}

/* ---------- Sticky mobile CTA ---------- */
.sticky-cta {
  position: fixed;
  left: 0.9rem;
  right: 0.9rem;
  bottom: 0.9rem;
  z-index: 90;
  display: flex;
  gap: 0.7rem;
  align-items: stretch;
  transform: translateY(140%);
  transition: transform 0.45s var(--ease);
}

.sticky-cta.is-visible {
  transform: translateY(0);
}

.sticky-cta__call {
  flex: none;
  width: 52px;
  border-radius: 999px;
  background: var(--navy);
  color: var(--gold-light);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-md);
}

.sticky-cta__call svg {
  width: 22px;
  height: 22px;
}

.sticky-cta .btn {
  box-shadow: var(--shadow-lg);
}

/* ---------- Back to top ---------- */
.to-top {
  position: fixed;
  right: 1.2rem;
  bottom: 5.4rem;
  z-index: 89;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--white);
  color: var(--navy);
  border: 1px solid var(--soft-grey);
  box-shadow: var(--shadow-md);
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.35s, transform 0.35s var(--ease), visibility 0.35s;
}

.to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.to-top:hover {
  color: var(--gold);
}

.to-top svg {
  width: 20px;
  height: 20px;
}

/* ---------- Scroll reveal & entrance animations ---------- */
.reveal,
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.is-visible,
.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays */
.d-1 {
  transition-delay: 0.1s;
}

.d-2 {
  transition-delay: 0.2s;
}

.d-3 {
  transition-delay: 0.3s;
}

.d-4 {
  transition-delay: 0.4s;
}

/* Respect reduced-motion preferences */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
  }

  .reveal,
  .fade-up,
  .chip.reveal {
    opacity: 1;
    transform: none;
  }

  .tstep__dot {
    transform: scale(1);
  }

  .mega__item {
    opacity: 1;
    transform: none;
  }
}

/* ============================================================
   RESPONSIVE BREAKPOINTS (mobile-first)
   ============================================================ */

/* ---- ≥ 600px ---- */
@media (min-width: 600px) {
  .products__grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

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

  .qform__row {
    grid-template-columns: 1fr 1fr;
  }

  .qform {
    padding: 2.4rem 2.2rem;
  }

  .trust__row {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer__bottom-inner {
    flex-direction: row;
    justify-content: space-between;
  }

  .advantage__card {
    padding: 3rem 2.6rem;
  }
}

/* ---- ≥ 900px ---- */
@media (min-width: 900px) {
  .hero__inner {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    padding: 5.5rem 0 6.5rem;
  }

  .hero__visual {
    display: block;
  }

  .trust__row {
    grid-template-columns: repeat(5, 1fr);
  }

  .stats__row {
    grid-template-columns: repeat(4, 1fr);
  }

  .feature {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 3.4rem 0;
  }

  .feature--flip .feature__media {
    order: 2;
  }

  .feature--flip .feature__body {
    order: 1;
  }

  .wholesale__inner {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4rem;
    align-items: center;
  }

  .retail__inner {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 4.5rem;
  }

  .areas__inner {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 4rem;
  }

  .areas__cols {
    grid-template-columns: 1fr 1fr;
  }

  .quote__inner {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4.5rem;
    align-items: start;
  }

  .why__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .ycard--wide {
    grid-column: span 3;
    display: grid;
    grid-template-columns: auto auto 1fr;
    align-items: center;
    gap: 1.2rem;
  }

  .ycard--wide h3 {
    margin: 0;
  }

  .ycard--wide>svg {
    margin: 0;
  }

  .minis {
    grid-template-columns: repeat(4, 1fr);
  }

  /* Horizontal timeline on desktop */
  .timeline {
    grid-template-columns: repeat(5, 1fr);
    gap: 1.2rem;
    padding-left: 0;
    padding-top: 2.6rem;
  }

  .timeline::before {
    left: 8%;
    right: 8%;
    top: 17px;
    bottom: auto;
    width: auto;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--beige));
  }

  .tstep__dot {
    left: 50%;
    top: -2.6rem;
    margin-left: -18px;
  }

  .tstep__card {
    height: 100%;
    text-align: center;
  }

  .tstep__card svg {
    margin-inline: auto;
  }

  .tstep__card:hover {
    transform: translateY(-6px);
  }
}

/* ---- ≥ 1080px ---- */
@media (min-width: 1080px) {
  .nav {
    display: block;
  }

  .hamburger {
    display: none;
  }

  .header__phone {
    display: inline-flex;
  }

  .header__cta {
    display: inline-flex;
  }

  .mobile-menu {
    display: none;
  }

  .products__grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .footer__grid {
    grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
  }

  .sticky-cta {
    display: none;
  }

  .to-top {
    bottom: 1.4rem;
  }
}

/* ---- ≥ 1280px ---- */
@media (min-width: 1280px) {
  .section {
    padding: 6.5rem 0;
  }

  .advantage__grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

/* ---- ≥ 1440px: use more of the screen ---- */
@media (min-width: 1440px) {
  :root {
    --container: 1380px;
  }

  .products__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .mega {
    width: min(1000px, calc(100vw - 3rem));
  }
}

/* ---- Very small phones (≤ 420px) ---- */
@media (max-width: 420px) {
  .container {
    width: calc(100% - 1.8rem);
  }

  .announce {
    font-size: 0.64rem;
    letter-spacing: 0.12em;
  }

  .announce i {
    margin: 0 0.45rem;
  }

  .logo-svg {
    height: 40px;
  }

  :root {
    --header-h: 64px;
  }

  .section {
    padding: 4rem 0;
  }

  .hero__inner {
    padding: 3.2rem 0 4.2rem;
  }

  .hero__btns .btn {
    width: 100%;
  }

  .hero__points {
    gap: 0.7rem 1.2rem;
  }

  .stats__row {
    gap: 1.6rem 1rem;
    padding: 2.6rem 0;
  }

  .trust__row {
    grid-template-columns: 1fr;
    gap: 0.9rem;
    padding: 1.8rem 0;
  }

  .qform {
    padding: 1.6rem 1.2rem;
  }

  .advantage__card {
    padding: 2.1rem 1.3rem;
  }

  .footer__grid {
    padding: 3rem 0 2rem;
  }

  .logo-svg--light {
    height: 48px;
  }
}

/* ---- Small phones/phablets (421–599px) ---- */
@media (min-width: 421px) and (max-width: 599px) {
  .trust__row {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ---- Tablets (768–899px): show the hero visual earlier ---- */
@media (min-width: 768px) and (max-width: 899px) {
  .hero__visual {
    display: block;
    max-width: 460px;
    margin-inline: auto;
  }
}

/* ---- Compact desktop nav (1080–1219px) ---- */
@media (min-width: 1080px) and (max-width: 1219px) {
  .nav__link {
    padding: 0.55rem 0.55rem;
    font-size: 0.86rem;
  }

  .header__phone span {
    display: none;
  }

  .logo-svg {
    height: 44px;
  }
}

/* ---- Large desktops (≥ 1600px) ---- */
@media (min-width: 1600px) {
  :root {
    --container: 1480px;
  }

  .hero__inner {
    padding: 7rem 0 8rem;
  }

  .hero__title {
    font-size: 4.3rem;
  }

  .hero__frame {
    max-width: 470px;
  }
}

/* ---- Ultra-wide (≥ 2200px): keep sections from feeling stretched ---- */
@media (min-width: 2200px) {
  :root {
    --container: 1720px;
  }

  html {
    font-size: 18px;
  }
}