*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --accent: #4F511F; /* Beyond Blinds olive (main logo) */
  --gold: #FDBC07;   /* Beyond Blinds gold (yellow logo) */
  --yellow: var(--accent); /* legacy alias used across styles */
  --black: #111111;
  --ink: #1a1a1a;
  --grey: #F5F5F5;
  --mid-grey: #888888;
  --white: #FFFFFF;
  --header-h: 6.5rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  background: var(--white);
  color: var(--black);
  overflow-x: hidden;
  padding-top: var(--header-h);
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
ul { list-style: none; }

/* ── Header ── */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  background: rgba(250, 250, 247, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(79, 81, 31, 0.14);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8), 0 8px 24px rgba(17, 17, 17, 0.04);
}

.site-header__inner {
  max-width: 90rem;
  margin: 0 auto;
  height: 100%;
  padding: 0 clamp(1rem, 3vw, 2.5rem);
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  flex-shrink: 0;
}

.logo img {
  height: 5.5rem;
  width: auto;
  max-width: 22rem;
  object-fit: contain;
}

.logo--footer img {
  height: 3.25rem;
  max-width: 14rem;
  margin-bottom: 0.85rem;
}

.logo__text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.15;
}

.logo__text span { color: var(--gold); }

.nav {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  margin-left: auto;
}

.nav__link,
.nav__trigger {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(17, 17, 17, 0.72);
  padding: 0.55rem 0.7rem;
  background: none;
  border: 0;
  cursor: pointer;
  transition: color 0.2s var(--ease);
}

.nav__link:hover,
.nav__link.is-active,
.nav__trigger:hover { color: var(--accent); }

.nav__item { position: relative; }

.nav__panel {
  position: absolute;
  top: calc(100% + 0.6rem);
  left: 0;
  min-width: 14rem;
  background: #FAFAF7;
  border: 1px solid rgba(79, 81, 31, 0.16);
  box-shadow: 0 12px 32px rgba(17, 17, 17, 0.08);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(0.4rem);
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease), visibility 0.2s;
  z-index: 20;
}

.nav__item:hover .nav__panel,
.nav__item:focus-within .nav__panel {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.nav__panel a {
  display: block;
  padding: 0.55rem 0.75rem;
  font-size: 0.85rem;
  color: rgba(17, 17, 17, 0.78);
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}

.nav__panel a:hover {
  background: rgba(79, 81, 31, 0.08);
  color: var(--accent);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.header-phone {
  display: none;
  align-items: center;
  gap: 0.4rem;
  color: var(--black);
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
}

.header-phone svg { width: 1rem; height: 1rem; fill: var(--accent); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  transition: filter 0.2s, transform 0.2s var(--ease), background 0.2s, color 0.2s;
}

.btn:hover { filter: brightness(1.05); transform: translateY(-1px); }

.btn--yellow {
  background: var(--accent);
  color: var(--white);
  padding: 0.8rem 1.15rem;
}

.btn--dark {
  background: var(--black);
  color: var(--white);
  padding: 0.95rem 1.4rem;
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.45);
  padding: 0.9rem 1.3rem;
}

.btn--outline:hover {
  border-color: var(--yellow);
  color: var(--yellow);
  filter: none;
}

.nav-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  background: transparent;
  cursor: pointer;
  margin-left: auto;
}

.nav-toggle span {
  display: block;
  width: 1.35rem;
  height: 2px;
  margin: 0.28rem auto;
  background: var(--black);
  transition: transform 0.25s, opacity 0.25s;
}

/* ── Hero slider ── */
.hero-slider {
  position: relative;
  min-height: min(92vh, 48rem);
  overflow: hidden;
  background: #0d0d0d;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.4s var(--ease), visibility 1.4s;
  z-index: 1;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.hero-slide__media {
  position: absolute;
  inset: 0;
}

.hero-slide__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  transition: transform 7s linear;
}

.hero-slide.is-active .hero-slide__media img { transform: scale(1); }

.hero-slide__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.45) 48%, rgba(0, 0, 0, 0.22) 100%),
    radial-gradient(ellipse 55% 50% at 80% 30%, rgba(253, 188, 7, 0.16), transparent 60%);
}

.hero-slide__content {
  position: relative;
  z-index: 3;
  max-width: 90rem;
  margin: 0 auto;
  min-height: min(92vh, 48rem);
  padding: clamp(3rem, 8vw, 6rem) clamp(1.25rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 42rem;
  margin-left: clamp(1.25rem, 8vw, 8rem);
}

.hero-kicker {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(0.8rem);
}

.hero-slide.is-active .hero-kicker {
  animation: rise 0.7s var(--ease) 0.15s forwards;
}

.hero-slide h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--white);
  margin-bottom: 1.1rem;
  opacity: 0;
  transform: translateY(0.8rem);
}

.hero-slide.is-active h1 {
  animation: rise 0.75s var(--ease) 0.28s forwards;
}

.hero-slide h1 em {
  font-style: normal;
  color: var(--gold);
}

.hero-slide p {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
  max-width: 32rem;
  margin-bottom: 1.75rem;
  opacity: 0;
  transform: translateY(0.8rem);
}

.hero-slide.is-active p {
  animation: rise 0.75s var(--ease) 0.4s forwards;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  opacity: 0;
  transform: translateY(0.8rem);
}

.hero-slide.is-active .hero-actions {
  animation: rise 0.75s var(--ease) 0.52s forwards;
}

.hero-controls {
  position: absolute;
  z-index: 5;
  left: clamp(1.25rem, 8vw, 8rem);
  bottom: 1.75rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.hero-dots { display: flex; gap: 0.45rem; }

.hero-dot {
  width: 2.25rem;
  height: 3px;
  border: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.28);
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
}

.hero-dot.is-active {
  background: var(--gold);
  transform: scaleY(1.35);
}

.hero-arrow {
  width: 2.4rem;
  height: 2.4rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(0, 0, 0, 0.25);
  color: var(--white);
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
  transition: border-color 0.2s, color 0.2s;
}

.hero-arrow:hover {
  border-color: var(--yellow);
  color: var(--yellow);
}

@keyframes rise {
  to { opacity: 1; transform: translateY(0); }
}

/* ── Sections ── */
.section {
  padding: clamp(3.5rem, 8vw, 6rem) clamp(1.25rem, 4vw, 2.5rem);
}

.section--grey { background: var(--grey); }
.section--dark {
  background: var(--black);
  color: var(--white);
}

.section__inner {
  max-width: 78rem;
  margin: 0 auto;
}

.section__head {
  max-width: 40rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.section__head h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(1.75rem, 3.5vw, 2.6rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.section__head p {
  color: var(--mid-grey);
  font-size: 1.05rem;
  line-height: 1.55;
}

.section--dark .section__head p { color: rgba(255, 255, 255, 0.65); }

.eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.65rem;
}

.section--dark .eyebrow,
.page-hero .eyebrow,
.hero-kicker { color: var(--gold); }

/* Trust strip */
.trust-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  background: var(--black);
  color: var(--white);
  border-top: 3px solid var(--gold);
}

.trust-strip__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 1.1rem 0.75rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-strip__item:last-child { border-right: 0; }

.trust-strip__item svg {
  width: 1.1rem;
  height: 1.1rem;
  fill: var(--gold);
  flex-shrink: 0;
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.25rem, 3vw, 2rem);
  counter-reset: step;
}

.step { position: relative; }

.step::before {
  counter-increment: step;
  content: "0" counter(step);
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 2.5rem;
  color: rgba(79, 81, 31, 0.28);
  display: block;
  line-height: 1;
  margin-bottom: 0.75rem;
}

.step h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.step p {
  color: #555;
  line-height: 1.55;
  font-size: 0.95rem;
}

.step a {
  display: inline-block;
  margin-top: 0.75rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--yellow);
  text-decoration: none;
}

/* Product showcases (HBA-style bands) */
.showcase-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1rem;
}

.showcase {
  position: relative;
  min-height: 22rem;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  text-decoration: none;
  color: var(--white);
}

.showcase--tall { min-height: 100%; grid-row: span 2; }

.showcase img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.showcase:hover img { transform: scale(1.05); }

.showcase__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(0, 0, 0, 0.78) 100%);
}

.showcase__body {
  position: relative;
  z-index: 2;
  padding: 1.75rem;
}

.showcase__body h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.45rem;
  margin-bottom: 0.4rem;
}

.showcase__body p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 0.9rem;
  max-width: 28rem;
  line-height: 1.45;
}

.showcase-stack {
  display: grid;
  gap: 1rem;
}

/* Why / compare */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
}

.why-col h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid rgba(0, 0, 0, 0.08);
}

.why-col--good h3 { border-color: var(--yellow); }

.why-col li {
  position: relative;
  padding: 0.55rem 0 0.55rem 1.5rem;
  color: #444;
  line-height: 1.45;
}

.why-col li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.95rem;
  width: 0.55rem;
  height: 0.55rem;
  background: var(--mid-grey);
}

.why-col--good li::before { background: var(--yellow); }

/* Badges */
.badges {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.badge h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
}

.badge p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
  line-height: 1.5;
}

.badge__mark {
  width: 2.5rem;
  height: 3px;
  background: var(--yellow);
  margin-bottom: 1rem;
}

/* Product tiles */
.tile-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.tile {
  display: block;
  text-decoration: none;
  color: var(--black);
  background: var(--white);
  overflow: hidden;
  transition: transform 0.25s var(--ease);
}

.tile:hover { transform: translateY(-3px); }

.tile__img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #ddd;
}

.tile__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.tile:hover .tile__img img { transform: scale(1.04); }

.tile__label {
  padding: 1rem 0.25rem 0.25rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
}

.tile__cta {
  padding: 0 0.25rem 0.5rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--yellow);
}

/* Testimonials */
.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.quote {
  padding: 0 0.5rem 0 0;
  border-left: 3px solid var(--yellow);
  padding-left: 1.25rem;
}

.quote p {
  font-size: 1.05rem;
  line-height: 1.55;
  color: #333;
  margin-bottom: 1rem;
}

.quote strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
}

.quote span {
  color: var(--mid-grey);
  font-size: 0.85rem;
}

/* FAQ */
.faq-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.faq-tab {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.65rem 1rem;
  border: 1px solid #ddd;
  background: var(--white);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.faq-tab.is-active {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}

.faq-panel { display: none; }
.faq-panel.is-active { display: block; }

.faq-item {
  border-bottom: 1px solid #e5e5e5;
}

.faq-item button {
  width: 100%;
  text-align: left;
  padding: 1.15rem 0;
  background: none;
  border: 0;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--black);
}

.faq-item button span { color: var(--yellow); font-size: 1.25rem; }

.faq-item__body {
  display: none;
  padding: 0 0 1.15rem;
  color: #555;
  line-height: 1.55;
  max-width: 48rem;
}

.faq-item.is-open .faq-item__body { display: block; }

/* CTA band */
.cta-band {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: clamp(2.5rem, 5vw, 3.5rem);
  background: var(--accent);
  color: var(--white);
}

.cta-band h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  margin-bottom: 0.4rem;
}

.cta-band p {
  max-width: 36rem;
  line-height: 1.5;
  opacity: 0.85;
  color: rgba(255, 255, 255, 0.88);
}

.cta-band .btn--dark {
  background: var(--gold);
  color: var(--black);
}

/* Page hero (inner pages) */
.page-hero {
  background:
    radial-gradient(ellipse 60% 80% at 90% 20%, rgba(79, 81, 31, 0.45), transparent 55%),
    linear-gradient(135deg, #1a1a1a 0%, #111 60%, #1f1f1f 100%);
  color: var(--white);
  padding: clamp(3.5rem, 8vw, 5.5rem) clamp(1.25rem, 4vw, 2.5rem);
}

.page-hero__inner { max-width: 48rem; }

.page-hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(2.1rem, 4.5vw, 3.25rem);
  line-height: 1.1;
  margin-bottom: 0.85rem;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.1rem;
  line-height: 1.55;
  max-width: 36rem;
}

.page-hero a { color: var(--yellow); }

/* Product bands */
.product-band {
  padding: clamp(2.5rem, 5vw, 4rem) clamp(1.25rem, 4vw, 2.5rem);
}

.product-band:nth-child(even) { background: var(--grey); }

.product-grid {
  max-width: 78rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.product-band.reverse .product-grid { direction: rtl; }
.product-band.reverse .product-grid > * { direction: ltr; }

.product-copy .bar {
  width: 2.5rem;
  height: 3px;
  background: var(--yellow);
  margin-bottom: 1rem;
}

.product-copy h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 0.85rem;
}

.product-copy p {
  color: #444;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.product-copy li {
  position: relative;
  padding-left: 1.15rem;
  margin-bottom: 0.4rem;
  color: #444;
  line-height: 1.45;
}

.product-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.45rem;
  height: 0.45rem;
  background: var(--yellow);
}

.product-copy a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.product-copy a:hover { color: var(--black); }

.product-shot {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: top center;
}

.product-shot--contain {
  aspect-ratio: 16 / 10;
  object-fit: contain;
  object-position: center;
  background: var(--grey);
  padding: 0.75rem;
}

/* About / contact */
.about-wrap,
.contact-layout {
  max-width: 78rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  padding: clamp(2.5rem, 5vw, 4rem) clamp(1.25rem, 4vw, 2.5rem);
}

.about-prose p {
  color: #444;
  line-height: 1.7;
  margin-bottom: 1.1rem;
  font-size: 1.05rem;
}

.about-highlight {
  background: var(--black);
  color: var(--white);
  padding: 1.5rem;
  margin-top: 1rem;
}

.about-highlight span { color: var(--yellow); }

.contact-details {
  background: var(--grey);
  padding: 1.75rem;
}

.contact-details h2,
.contact-form-panel h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  margin-bottom: 1.25rem;
}

.contact-row {
  display: flex;
  gap: 0.85rem;
  margin-bottom: 1.15rem;
  align-items: flex-start;
}

.contact-row svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: var(--yellow);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.contact-row a {
  color: var(--black);
  font-weight: 700;
  text-decoration: none;
}

.contact-row a:hover { color: var(--yellow); }

.contact-map {
  margin-top: 1.25rem;
  aspect-ratio: 16 / 10;
  background: #ddd;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-form-lead {
  color: #555;
  line-height: 1.55;
  margin-bottom: 1rem;
}

.contact-form-iframe {
  width: 100%;
  min-height: 32rem;
  border: 0;
  background: var(--grey);
}

.testimonial-grid {
  max-width: 78rem;
  margin: 0 auto;
  padding: clamp(2.5rem, 5vw, 4rem) clamp(1.25rem, 4vw, 2.5rem);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  border-top: 3px solid var(--yellow);
  padding-top: 1.25rem;
}

.testimonial-stars { color: var(--yellow); letter-spacing: 0.1em; margin-bottom: 0.75rem; }

.testimonial-quote {
  color: #333;
  line-height: 1.55;
  margin-bottom: 1.25rem;
  font-size: 1.02rem;
}

.testimonial-author strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
}

.testimonial-author span {
  color: var(--mid-grey);
  font-size: 0.85rem;
}

/* Footer */
.site-footer {
  background: #F7F4EC; /* warm light from palette — logo black/gold stay visible */
  color: rgba(17, 17, 17, 0.68);
  padding: 3rem clamp(1.25rem, 4vw, 2.5rem) 5.5rem;
  border-top: 3px solid var(--gold);
}

.site-footer__inner {
  max-width: 78rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
}

.site-footer .logo__text { font-size: 1.1rem; margin-bottom: 0.75rem; }

.site-footer p { line-height: 1.55; font-size: 0.95rem; max-width: 22rem; }

.site-footer h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.site-footer a {
  display: block;
  text-decoration: none;
  margin-bottom: 0.45rem;
  transition: color 0.2s;
}

.site-footer a:hover { color: var(--accent); }

.site-footer__social {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.35rem;
}

.site-footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  margin-bottom: 0;
}

.site-footer__social a:hover {
  background: var(--gold);
  color: var(--black);
}

.site-footer__social svg {
  width: 1.15rem;
  height: 1.15rem;
  fill: currentColor;
}

.site-footer__base {
  max-width: 78rem;
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(79, 81, 31, 0.16);
  font-size: 0.85rem;
}

.site-footer__base a { display: inline; color: rgba(17, 17, 17, 0.68); }
.site-footer__base a:hover { color: var(--accent); }

.mob-cta {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  background: var(--gold);
  color: var(--black);
  text-align: center;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 1rem;
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide,
  .hero-slide__media img,
  .hero-kicker,
  .hero-slide h1,
  .hero-slide p,
  .hero-actions,
  .showcase img,
  .tile,
  .tile__img img { transition: none !important; animation: none !important; }
  .hero-slide.is-active .hero-kicker,
  .hero-slide.is-active h1,
  .hero-slide.is-active p,
  .hero-slide.is-active .hero-actions {
    opacity: 1;
    transform: none;
  }
}

/* Responsive */
@media (min-width: 900px) {
  .header-phone { display: inline-flex; }
}

@media (max-width: 980px) {
  .trust-strip { grid-template-columns: 1fr 1fr; }
  .trust-strip__item:nth-child(2n) { border-right: 0; }
  .steps { grid-template-columns: 1fr 1fr; }
  .showcase-grid { grid-template-columns: 1fr; }
  .showcase--tall { grid-row: auto; min-height: 20rem; }
  .why-grid { grid-template-columns: 1fr; }
  .badges { grid-template-columns: 1fr 1fr; }
  .tile-grid { grid-template-columns: 1fr 1fr; }
  .quote-grid { grid-template-columns: 1fr; }
  .product-grid,
  .about-wrap,
  .contact-layout { grid-template-columns: 1fr; }
  .product-band.reverse .product-grid { direction: ltr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .site-footer__inner { grid-template-columns: 1fr 1fr; }
  .site-footer__inner > div:first-child { grid-column: 1 / -1; }
}

@media (max-width: 820px) {
  :root { --header-h: 5.75rem; }
  .logo img {
    height: 4.75rem;
    max-width: 16rem;
  }
  .nav-toggle { display: block; }
  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: #FAFAF7;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    gap: 0.25rem;
    transform: translateY(-110%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s var(--ease), opacity 0.3s, visibility 0.3s;
    border-bottom: 1px solid rgba(79, 81, 31, 0.14);
    box-shadow: 0 16px 32px rgba(17, 17, 17, 0.08);
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
  }
  body.nav-open .nav {
    transform: none;
    opacity: 1;
    visibility: visible;
  }
  body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .nav__panel {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    border: 0;
    background: transparent;
    padding: 0 0 0 0.75rem;
    display: none;
  }
  .nav__item.is-open .nav__panel { display: block; }
  .header-actions .btn--yellow { padding: 0.7rem 0.85rem; font-size: 0.7rem; }
  .mob-cta { display: block; }
  .hero-slide__content { margin-left: 0; max-width: none; }
  .hero-controls { left: 1.25rem; }
}

@media (max-width: 560px) {
  .trust-strip { grid-template-columns: 1fr; }
  .trust-strip__item { border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .steps { grid-template-columns: 1fr; }
  .badges { grid-template-columns: 1fr; }
  .tile-grid { grid-template-columns: 1fr; }
  .site-footer__inner { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: stretch; }
}
