/* ==========================================================
   TheBlinds -- Plain CSS Stylesheet
   Mobile-first, semantic, no frameworks
   ========================================================== */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,400;0,600;0,700;0,800;1,600&family=Montserrat:wght@400;500;700');

/* ---------- Design Tokens ---------- */
:root {
  --primary:        #e20431;
  --primary-light:  #cc0830;
  --primary-fg:     #fdfaf7;
  --ink:            #181c26;
  --ink-70:         rgba(24,28,38,.70);
  --ink-85:         rgba(24,28,38,.85);
  --bg:             #faf9f6;
  --fg:             #1a1e2b;
  --card:           #ffffff;
  --border:         #ece9e3;
  --muted:          #f2ede6;
  --muted-fg:       #6b6860;
  --white-10:       rgba(255,255,255,.10);
  --white-20:       rgba(255,255,255,.20);
  --white-60:       rgba(255,255,255,.60);
  --white-70:       rgba(255,255,255,.70);
  --white-80:       rgba(255,255,255,.80);
  --white-90:       rgba(255,255,255,.90);

  --font-display:   'Raleway', sans-serif;
  --font-sans:      'Montserrat', sans-serif;

  --shadow-elegant: 0 24px 60px -20px rgba(24,28,38,.45);
  --shadow-sm:      0 1px 3px rgba(0,0,0,.08);

  --max-w:          88rem;
  --px:             1.5rem;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-sans);
  background-color: var(--bg);
  color: var(--fg);
  line-height: 1.7;
  font-size: 1.0625rem;
}

img { display: block; max-width: 100%; height: auto; }
a  { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.05;
}

/* ---------- Utility Classes ---------- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--px);
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.label-overline {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .25em;
  color: var(--primary);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: unset;
  transition: opacity .2s, filter .2s;
  font-family: var(--font-sans);
  line-height: 1.3;
  border-radius: 10px;
}
.btn:hover { opacity: .92; }
.btn-primary { background: var(--primary); color: var(--primary-fg); }
.btn-primary:hover { filter: brightness(1.08); opacity: 1; }
.btn-ink { background: var(--ink); color: #fff; }
.btn-white { background: #fff; color: var(--ink); }

.icon { width: 1em; height: 1em; display: inline-block; vertical-align: middle; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.icon-sm { font-size: .9rem; }
.icon-md { font-size: 1.1rem; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250,249,246,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: background .3s;
}
.site-header.transparent {
  position: absolute;
  top: 0; left: 0; right: 0;
  background: transparent;
  border-bottom: none;
  color: #fff;
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-shrink: 0;
}
.logo__icon {
  width: 2.5rem; height: 2.5rem;
  border-radius: .375rem;
  background: var(--primary);
  color: var(--primary-fg);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  flex-shrink: 0;
}
.logo__text { line-height: 1; }
.logo__name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: .08em;
  font-weight: 600;
}
.logo__sub {
  font-size: .6rem;
  text-transform: uppercase;
  letter-spacing: .2em;
  opacity: .65;
  margin-top: .1rem;
}
.logo__img {
  height: 40px;
  width: auto;
  display: block;
  border-radius: 0;
}

/* Keep logo visible on both transparent and solid headers */
.site-header.transparent .logo__img {
  filter: brightness(0) invert(1);
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}
.nav-desktop a {
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .15em;
  transition: color .2s;
}
.nav-desktop a:hover,
.nav-desktop a.active { color: var(--primary); }
.header-actions {
  display: none;
  align-items: center;
  gap: 1.25rem;
}
.header-phone {
  font-size: 1.1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: .4rem;
  transition: color .2s;
}
.header-phone:hover { color: var(--primary); }
.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem; height: 2.5rem;
  color: inherit;
}
.nav-toggle svg { width: 1.5rem; height: 1.5rem; }
.nav-toggle .icon-close { display: none; }
.nav-toggle.open .icon-open  { display: none; }
.nav-toggle.open .icon-close { display: block; }
.nav-mobile {
  display: none;
  background: var(--bg);
  color: var(--fg);
  border-top: 1px solid var(--border);
  padding: 1rem var(--px) 1.5rem;
}
.nav-mobile.open { display: block; }
.nav-mobile a {
  display: block;
  padding: .6rem 0;
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .15em;
  transition: color .2s;
}
.nav-mobile a:hover { color: var(--primary); }
.nav-mobile .btn-primary {
  display: block;
  text-align: center;
  margin-top: .75rem;
  width: 100%;
}
.site-header.transparent .logo__name,
.site-header.transparent .logo__sub,
.site-header.transparent .nav-desktop a,
.site-header.transparent .header-phone { color: #fff; }
.site-header.transparent .nav-toggle { color: #fff; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 47.5rem;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(24,28,38,.88) 0%, rgba(24,28,38,.7) 55%, rgba(24,28,38,.7) 100%);
}
.hero__inner {
  position: relative;
  display: grid;
  gap: 2.5rem;
  width: 100%;
  padding-top: 9rem;
  padding-bottom: 5rem;
}
.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--primary);
  margin-bottom: 1.25rem;
}
.hero__eyebrow--img {
  justify-content: flex-start;
  margin-bottom: .25rem;
}
.hero__canadian-badge {
  height: auto;
  width: 100%;
  max-width: 250px;
  border-radius: 0;
}
.hero__title {
  font-size: 3rem;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  text-wrap: balance;
}
.hero__title .accent { color: var(--primary); font-style: normal; }
.hero__body {
  font-size: 1.1rem;
  color: var(--white-80);
  max-width: 36rem;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}
.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.hero__badge {
  display: flex;
  align-items: center;
  gap: .5rem;
  border: 1px solid var(--white-20);
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(6px);
  padding: .5rem 1rem;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .15em;
}
.hero__badge svg { color: var(--primary); }
.hero__form-card {
  background: rgba(24,28,38,.6);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--white-10);
  padding: 2rem;
  box-shadow: var(--shadow-elegant);
}
.hero__form-head {
  text-align: center;
  margin-bottom: 1.25rem;
}
.hero__form-label {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: 1.3rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #fff;
}
.hero__form-label svg,
.hero__form-label .icon { color: var(--primary); }
.hero__phone {
  display: block;
  font-family: var(--font-sans);
  font-size: 3rem;
  font-weight: 500;
  color: var(--primary);
  margin-top: 0;
  margin-bottom: 0;
  transition: opacity .2s;
  white-space: nowrap;
}
.hero__phone:hover { opacity: .85; }
.hero__form-sub {
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  color: #fff;
}


/* ============================================================
   QUOTE FORM - Phone field with Canadian flag prefix
   ============================================================ */
.quote-form__phone-row {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
}
.quote-form__phone-wrap {
  display: flex;
  align-items: stretch;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255,255,255,.95);
  transition: box-shadow .2s;
}
.quote-form__phone-wrap:focus-within {
  box-shadow: 0 0 0 2px var(--primary);
}
.quote-form__phone-prefix {
  display: flex;
  align-items: center;
  gap: .35rem;
  padding: 0 .75rem;
  background: rgba(230,227,222,.95);
  border-right: 1px solid rgba(24,28,38,.1);
  flex-shrink: 0;
}
.quote-form__phone-code {
  font-size: .82rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: .02em;
}
.quote-form__input--phone {
  border: none;
  border-radius: 0;
  flex: 1;
  min-width: 0;
  background: transparent;
  padding: .65rem .9rem;
  font-size: .875rem;
  font-family: var(--font-sans);
  color: var(--ink);
  outline: none;
}
.quote-form__input--phone::placeholder { color: rgba(24,28,38,.45); }
.quote-form__input--phone:focus { box-shadow: none; outline: none; border: none; }

/* ============================================================
   QUOTE FORM (hero compact)
   ============================================================ */
.quote-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: .75rem;
  row-gap: 20px;
}
.quote-form input,
.quote-form textarea {
  width: 100%;
  background: rgba(255,255,255,.95);
  color: var(--ink);
  padding: .65rem .9rem;
  font-size: .875rem;
  font-family: var(--font-sans);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 8px;
  outline: none;
  transition: box-shadow .2s;
}
.quote-form input::placeholder,
.quote-form textarea::placeholder { color: rgba(24,28,38,.45); }
.quote-form input:focus,
.quote-form textarea:focus { box-shadow: 0 0 0 2px var(--primary); }
.quote-form textarea { grid-column: 1 / -1; resize: none; }
.quote-form .btn { grid-column: 1 / -1; }
.quote-form .form-msg {
  grid-column: 1 / -1;
  padding: .6rem .75rem;
  font-size: .8rem;
  border-radius: .5rem;
  display: none;
}
.quote-form .form-msg.success { background: #d4edda; color: #1a5e2a; display: block; }
.quote-form .form-msg.error   { background: #f8d7da; color: #721c24; display: block; }

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding-block: 6rem; }
.opacity-section { background: #fff; }
.section--sm { padding-block: 4rem; }
.section--dark { background: var(--ink); color: #fff; }
.section__overline { margin-bottom: .75rem; }
.section__title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
}
.section__title .accent { color: var(--primary); }
.section__title .italic-accent { color: var(--primary); font-style: italic; }

/* ============================================================
   PRODUCTS GRID -- original (inner pages)
   ============================================================ */
.products-section .section__header {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}
.view-all {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .15em;
  transition: color .2s;
  flex-shrink: 0;
}
.view-all:hover { color: var(--primary); }
.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.product-card__link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--primary);
  margin-top: .5rem;
}
.product-card__link .icon { font-size: .65rem; }
.product-card { display: block; }
.product-card__img-wrap {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--muted);
}
.product-card__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.16,1,.3,1);
}
.product-card:hover .product-card__img { transform: scale(1.05); }
.product-card__body { padding-top: 1.25rem; }
.product-card__title { font-size: 1.2rem; }
.product-card__copy {
  font-size: .875rem;
  color: var(--muted-fg);
  margin-top: .25rem;
}

/* ============================================================
   PRODUCT CARDS -- Rounded style (homepage)
   ============================================================ */
.product-grid--new {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.product-card--rounded {
  border-radius: 1rem;
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(24,28,38,.06);
  transition: box-shadow .3s, transform .3s;
  display: block;
}

.product-card--rounded:hover {
  box-shadow: 0 8px 32px rgba(24,28,38,.12);
  transform: translateY(-3px);
}
.product-card--rounded .product-card__img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 0;
  overflow: hidden;
}
.product-card--rounded .product-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform .6s cubic-bezier(.16,1,.3,1);
}
.product-card--rounded:hover .product-card__img { transform: scale(1.04); }
.product-card--rounded .product-card__body {
  padding: 1.25rem 1.25rem 1.5rem;
}
.product-card--rounded .product-card__title {
  font-size: 1.15rem;
  margin-bottom: .4rem;
}
.product-card--rounded .product-card__copy {
  font-size: .875rem;
  color: var(--muted-fg);
  line-height: 1.65;
  margin-bottom: .85rem;
}
.product-card__cta {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--fg);
  background: var(--muted);
  padding: .55rem 1rem;
  border-radius: 2rem;
  transition: background .2s, color .2s;
}
.product-card--rounded:hover .product-card__cta {
  background: var(--primary);
  color: #fff;
}

/* ============================================================
   WHY US
   ============================================================ */
.why-grid { display: grid; gap: 3rem; }
.why-intro .section__body {
  color: var(--white-70);
  margin-top: 1.5rem;
  line-height: 1.75;
}
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.feature-card {
  border: 1px solid var(--white-10);
  padding: 1.5rem;
  transition: border-color .2s;
}
.feature-card:hover { border-color: var(--primary); }
.feature-icon {
  width: 2.5rem; height: 2.5rem;
  display: grid;
  place-items: center;
  background: var(--primary);
  color: var(--primary-fg);
  margin-bottom: 1rem;
  border-radius: .5rem;
}
.feature-icon svg { width: 1.1rem; height: 1.1rem; }
.feature-card h3 { font-size: 1.15rem; margin-bottom: .5rem; }
.feature-card p  { font-size: .875rem; color: var(--white-70); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 3.5rem;
}
.testimonial-card {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}
.stars { display: flex; gap: .2rem; color: var(--primary); margin-bottom: 1rem; }
.stars svg { width: 1rem; height: 1rem; fill: currentColor; }
.testimonial-card blockquote {
  color: rgba(26,30,43,.8);
  line-height: 1.75;
  margin-bottom: 1.5rem;
  font-size: .95rem;
}
.testimonial-card cite {
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .15em;
  font-style: normal;
}
.testimonial-card cite span { color: var(--muted-fg); font-weight: 400; }

/* ============================================================
   CTA FORM SECTION
   ============================================================ */
.cta-section { padding-bottom: 6rem; }
.cta-form-section {
  background: var(--muted);
  color: var(--fg);
  padding: 5rem var(--px) 5rem;
}
.cta-form-section__inner {
  max-width: 900px;
  margin-inline: auto;
}
.cta-form-section__head {
  text-align: center;
  margin-bottom: 3rem;
}
.cta-form-section__head h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
}
.cta-form-section__head p {
  color: var(--muted-fg);
  margin-top: .75rem;
  font-size: 1.05rem;
}

/* ============================================================
   INSTALLATION SECTION
   ============================================================ */
.install-section {
  padding-block: 6rem;
  background: #fff;
}
.install-grid {
  display: grid;
  gap: 0;
  align-items: stretch;
}
.install-grid__body {
  padding: 3rem var(--px) 3rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}
.install-grid__body h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  line-height: 1.05;
}
.install-grid__body p { color: var(--muted-fg); line-height: 1.8; }
.install-grid__img-wrap { overflow: hidden; min-height: 28rem; }
.install-grid__img { width: 100%; height: 100%; object-fit: cover; display: block; }

.quote-form--full { grid-template-columns: 1fr 1fr; }
.quote-form--full input,
.quote-form--full textarea {
  background: #fff;
  color: var(--fg);
  border: 1px solid var(--border);
}
.quote-form--full input::placeholder,
.quote-form--full textarea::placeholder { color: var(--muted-fg); }
.quote-form--full input:focus,
.quote-form--full textarea:focus { box-shadow: 0 0 0 2px var(--primary); border-color: var(--primary); }
.quote-form--full textarea { grid-column: 1 / -1; min-height: 7rem; }
.quote-form--full .btn { grid-column: 1 / -1; padding: 1.1rem; font-size: .85rem; }

/* ============================================================
   HOW WE WORK
   ============================================================ */
.how-we-work {
  background: var(--ink);
  color: #fff;
  padding: 5rem var(--px);
}
.hww-header {
  display: grid;
  gap: 2rem;
  margin-bottom: 3.5rem;
}
.hww-title {
  font-size: clamp(3rem, 7vw, 5rem);
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1;
  color: #fff;
}
.hww-desc {
  color: rgba(255,255,255,.65);
  line-height: 1.8;
  max-width: 38rem;
  align-self: center;
}
.hww-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
.hww-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: .75rem;
  padding: 2rem 1.75rem;
  transition: background .2s, border-color .2s;
}
.hww-card:hover {
  background: rgba(255,255,255,.11);
  border-color: var(--primary);
}
.hww-card__icon {
  color: var(--primary);
  margin-bottom: 1.25rem;
  display: block;
}
.hww-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: .6rem;
  letter-spacing: 0;
  line-height: 1.3;
}
.hww-card__body {
  font-size: .875rem;
  color: rgba(255,255,255,.6);
  line-height: 1.75;
}

/* ============================================================
   FLOATING CALL BUTTON - Desktop
   ============================================================ */
@keyframes vibrate {
  0%   { transform: rotate(0deg); }
  15%  { transform: rotate(-12deg); }
  30%  { transform: rotate(12deg); }
  45%  { transform: rotate(-8deg); }
  60%  { transform: rotate(8deg); }
  75%  { transform: rotate(-4deg); }
  90%  { transform: rotate(4deg); }
  100% { transform: rotate(0deg); }
}
@keyframes pulse-ring {
  0%   { transform: scale(1);    opacity: .6; }
  100% { transform: scale(1.65); opacity: 0; }
}
.float-call-desktop {
  display: none;
  position: fixed;
  bottom: 2.5rem;
  right: 2.5rem;
  z-index: 999;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
}
.float-call-desktop__ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--primary);
  animation: pulse-ring 1.6s ease-out infinite;
  pointer-events: none;
}
.float-call-desktop__btn {
  position: relative;
  width: 3.75rem;
  height: 3.75rem;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 24px rgba(183,7,43,.5);
  animation: vibrate 1.8s ease-in-out infinite;
  animation-delay: .4s;
  transition: transform .2s, box-shadow .2s;
  text-decoration: none;
}
.float-call-desktop__btn:hover {
  animation: none;
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(183,7,43,.65);
}
.float-call-desktop__btn svg { width: 1.5rem; height: 1.5rem; stroke: #fff; fill: none; }
.float-call-desktop__label {
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--ink);
  background: #fff;
  padding: .25rem .6rem;
  border-radius: 2rem;
  box-shadow: 0 2px 8px rgba(0,0,0,.12);
  white-space: nowrap;
}

/* ============================================================
   FLOATING CALL BAR - Mobile
   ============================================================ */
.float-call-mobile {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  transform: translateY(100%);
  transition: transform .35s cubic-bezier(.16,1,.3,1);
}
.float-call-mobile.visible { transform: translateY(0); }
.float-call-mobile__quote,
.float-call-mobile__call {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: 1.1rem .75rem;
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
}
.float-call-mobile__quote {
  background: var(--ink);
  color: #fff;
}
.float-call-mobile__call {
  background: var(--primary);
  color: #fff;
}
.float-call-mobile__call svg { flex-shrink: 0; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: var(--ink);
  color: #fff;
  padding: 5rem var(--px) 6rem;
}
.page-hero--img {
  min-height: 24rem;
  display: flex;
  align-items: center;
}
.page-hero--img .label-overline { color: var(--primary); }
.page-hero--img h1,
.page-hero--img p { color: #fff; }
.page-hero--img p { color: rgba(255,255,255,.8); }
.page-hero h1 {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  max-width: 40rem;
  line-height: 1.02;
  margin-top: 1rem;
}
.page-hero p {
  color: var(--white-70);
  margin-top: 1.5rem;
  max-width: 40rem;
  font-size: 1.1rem;
  line-height: 1.75;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-intro {
  display: grid;
  gap: 3rem;
  align-items: center;
  padding-block: 5rem;
}
.about-intro__img-wrap { aspect-ratio: 4/3; overflow: hidden; }
.about-intro__img { width: 100%; height: 100%; object-fit: cover; }
.about-intro p { color: rgba(26,30,43,.75); font-size: 1.05rem; line-height: 1.8; margin-top: 1rem; }
.about-intro p + p { margin-top: .75rem; }
.stats-band { background: var(--ink); color: #fff; padding: 5rem var(--px); }
.stats-grid { display: grid; gap: 2rem; text-align: center; }
.stat-value { font-family: var(--font-display); font-size: 3.5rem; color: var(--primary); font-weight: 600; line-height: 1; }
.stat-label { font-size: .7rem; text-transform: uppercase; letter-spacing: .2em; color: var(--white-70); margin-top: .5rem; }
.process-section { padding-block: 5rem; }
.process-section h2 { text-align: center; font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 2.5rem; }
.process-grid { display: grid; gap: 2rem; margin-top: 2.5rem; }
.process-step { border-top: 2px solid var(--primary); padding-top: 1.25rem; }
.process-step__num { font-family: var(--font-display); font-size: 1.5rem; color: var(--primary); font-weight: 600; }
.process-step h3 { font-size: 1.15rem; margin: .5rem 0 .4rem; }
.process-step p  { font-size: .875rem; color: var(--muted-fg); }
.process-section .btn-wrap { text-align: center; margin-top: 3rem; }

/* ============================================================
   PRODUCTS PAGE
   ============================================================ */
.products-list { padding-block: 5rem; }
.products-list__inner { display: grid; gap: 6rem; }
.product-row { display: grid; gap: 2.5rem; align-items: center; scroll-margin-top: 6rem; }
.product-row__img-wrap { width: 100%; max-width: 600px; aspect-ratio: 1/1; overflow: hidden; background: var(--muted); border-radius: .5rem; }
.product-row__img { width: 100%; height: 100%; object-fit: contain; background: var(--muted); }
.product-row h2 { font-size: clamp(2rem, 3.5vw, 3rem); margin-bottom: 1rem; }
.product-row p  { color: rgba(26,30,43,.75); font-size: 1.05rem; line-height: 1.75; margin-bottom: 1.5rem; }
.product-features { display: grid; gap: .6rem; margin-bottom: 2rem; }
.product-feature { display: flex; align-items: center; gap: .75rem; font-size: .875rem; font-weight: 500; }
.check-icon {
  width: 1.25rem; height: 1.25rem;
  border-radius: 50%;
  background: var(--primary);
  color: var(--primary-fg);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.check-icon svg { width: .7rem; height: .7rem; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section { padding-block: 5rem; }
.contact-grid { display: grid; gap: 3rem; }
.contact-info h1 { font-size: clamp(2.8rem, 5vw, 3.8rem); margin-block: .75rem 1.5rem; }
.contact-info__lead { color: rgba(26,30,43,.75); line-height: 1.75; margin-bottom: 2.5rem; }
.contact-details { display: grid; gap: 1.25rem; }
.contact-detail { display: flex; align-items: flex-start; gap: 1rem; }
.contact-detail a { transition: color .2s; }
.contact-detail a:hover { color: var(--primary); }
.detail-icon { width: 2.5rem; height: 2.5rem; display: grid; place-items: center; background: var(--primary); color: var(--primary-fg); flex-shrink: 0; border-radius: .5rem; }
.detail-icon svg { width: 1rem; height: 1rem; }
.detail-label { font-size: .65rem; text-transform: uppercase; letter-spacing: .2em; color: var(--muted-fg); }
.detail-value { font-weight: 600; margin-top: .1rem; font-size: .9rem; }
.contact-form-card { background: var(--ink); color: #fff; padding: 2.5rem; box-shadow: var(--shadow-elegant); }
.contact-form-card h2 { font-size: 2rem; margin-bottom: .5rem; }
.contact-form-card .sub { color: var(--white-70); font-size: .875rem; margin-bottom: 1.75rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--ink); color: var(--white-80); margin-top: 0; }
.footer-grid { display: grid; gap: 3rem; padding-block: 4rem; }
.footer-brand p { font-size: .875rem; line-height: 1.7; max-width: 22rem; margin-top: 1rem; }
.footer-logo { display: flex; align-items: center; gap: .75rem; margin-bottom: 1rem; }
.footer-logo__icon {
  width: 2.5rem; height: 2.5rem;
  border-radius: .375rem;
  background: var(--primary);
  color: var(--primary-fg);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
}
.footer-logo__name { font-family: var(--font-display); font-size: 1.35rem; letter-spacing: .08em; color: #fff; }
.footer-col-title { font-size: .7rem; text-transform: uppercase; letter-spacing: .2em; color: var(--primary); font-weight: 700; margin-bottom: 1rem; }
.footer-links { display: grid; gap: .75rem; }
.footer-links a { font-size: .875rem; transition: color .2s; }
.footer-links a:hover { color: var(--primary); }
.footer-address { display: grid; gap: .75rem; }
.footer-address li { display: flex; align-items: flex-start; gap: .5rem; font-size: .875rem; }
.footer-address svg { width: 1rem; height: 1rem; flex-shrink: 0; margin-top: .15rem; }
.footer-bottom { border-top: 1px solid var(--white-10); }
.footer-bottom__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: .5rem;
  padding-block: 1.5rem;
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: rgba(255,255,255,.4);
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section { background: var(--bg); }
.faq-inner { display: grid; gap: 3rem; }
.faq-header { max-width: 28rem; }
.faq-list { display: grid; gap: 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 0;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  line-height: 1.4;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--primary);
  flex-shrink: 0;
  transition: transform .25s;
}
details[open] .faq-question::after { transform: rotate(45deg); }
.faq-answer { padding-bottom: 1.25rem; }
.faq-answer p { color: var(--muted-fg); line-height: 1.8; }

/* ============================================================
   CTA FORM (card style)
   ============================================================ */
.cta-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  max-width: 900px;
  margin-inline: auto;
  background: #fff;
  padding: 2.5rem;
  box-shadow: 0 4px 32px rgba(24,28,38,.08);
  border-radius: .75rem;
}
.cta-form__field { display: flex; flex-direction: column; gap: .4rem; }
.cta-form__field--full { grid-column: 1 / -1; }
.cta-form__label {
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--muted-fg);
}
.cta-form__input {
  width: 100%;
  background: var(--bg);
  color: var(--fg);
  padding: .9rem 1rem;
  font-size: 1rem;
  font-family: var(--font-sans);
  border: 1.5px solid var(--border);
  border-radius: .5rem;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.cta-form__input::placeholder { color: var(--muted-fg); opacity: .7; }
.cta-form__input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(183,7,43,.12);
}
.cta-form__phone-wrap {
  display: flex;
  align-items: stretch;
  border: 1.5px solid var(--border);
  border-radius: .5rem;
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.cta-form__phone-wrap:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(183,7,43,.12);
}
.cta-form__phone-prefix {
  display: flex;
  align-items: center;
  gap: .4rem;
  padding: 0 .85rem;
  background: var(--muted);
  border-right: 1.5px solid var(--border);
  flex-shrink: 0;
  white-space: nowrap;
}
.cta-form__phone-code {
  font-size: .85rem;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: .02em;
}
.cta-form__input--phone {
  border: none;
  border-radius: 0;
  flex: 1;
  min-width: 0;
}
.cta-form__input--phone:focus {
  box-shadow: none;
  border-color: transparent;
}

/* Select wrapper */
.cta-form__select-wrap {
  position: relative;
}
.cta-form__select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  padding-right: 2.5rem;
}
.cta-form__select-arrow {
  position: absolute;
  right: .9rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--muted-fg);
  display: flex;
  align-items: center;
}
.cta-form__textarea { resize: vertical; min-height: 7rem; }
.cta-form__btn {
width: 100%;
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 1.1rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    text-transform: unset;
    letter-spacing: unset;
    font-family: var(--font-sans);
    cursor: pointer;
    border-radius: .5rem;
    transition: filter .2s, opacity .2s;
}
.cta-form__btn:hover  { filter: brightness(1.08); }
.cta-form__btn:active { opacity: .9; }
.cta-form__btn:disabled { opacity: .6; cursor: not-allowed; }
.form-msg {
  padding: .6rem .75rem;
  font-size: .8rem;
  border-radius: .5rem;
  display: none;
}
.form-msg.success { background: #d4edda; color: #1a5e2a; display: block; }
.form-msg.error   { background: #f8d7da; color: #721c24; display: block; }

/* ============================================================
   FABRIC GALLERY + LIGHTBOX
   ============================================================ */
.fabric-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.fabric-thumb {
  position: relative;
  display: block;
  overflow: hidden;
  cursor: zoom-in;
  padding: 0;
  border: none;
  background: none;
  width: 100%;
  aspect-ratio: 3/4;
}
.fabric-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s cubic-bezier(.16,1,.3,1); display: block; }
.fabric-thumb:hover img { transform: scale(1.05); }
.fabric-thumb__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(24,28,38,.82) 0%, transparent 50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
  opacity: 0;
  transition: opacity .3s;
}
.fabric-thumb:hover .fabric-thumb__overlay,
.fabric-thumb:focus .fabric-thumb__overlay { opacity: 1; }
.fabric-thumb__label { font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: #fff; display: block; }
.fabric-thumb__desc { font-size: .75rem; color: rgba(255,255,255,.75); display: block; margin-top: .2rem; }
.fabric-thumb__zoom { display: inline-flex; align-items: center; gap: .3rem; font-size: .65rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--primary); margin-top: .5rem; }
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(10,10,10,.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity .25s;
}
.lightbox:not([hidden]) { opacity: 1; }
.lightbox[hidden] { display: none; }
.lightbox__close { position: absolute; top: 1.25rem; right: 1.5rem; background: none; border: none; color: #fff; font-size: 2.5rem; line-height: 1; cursor: pointer; opacity: .7; transition: opacity .2s; padding: 0; }
.lightbox__close:hover { opacity: 1; }
.lightbox__inner { max-width: 52rem; width: 100%; text-align: center; }
.lightbox__img { max-height: 78vh; max-width: 100%; width: auto; object-fit: contain; display: block; margin: 0 auto; border-radius: .5rem; }
.lightbox__caption { margin-top: 1rem; display: flex; flex-direction: column; gap: .25rem; color: #fff; }
.lightbox__caption strong { font-size: .85rem; text-transform: uppercase; letter-spacing: .15em; }
.lightbox__caption span { font-size: .8rem; color: rgba(255,255,255,.6); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fade-up .7s cubic-bezier(.16,1,.3,1) both; }
.fade-up--delay { animation-delay: .15s; }


/* ============================================================
   GLOBAL IMAGE ROUNDED CORNERS
   ============================================================ */
img:not(.hero__bg):not(.product-card__img):not(.logo__icon):not([class*="avatar"]) {
  border-radius: .5rem;
}
.hero__bg { border-radius: 0; }
.product-card__img { border-radius: 0; }
.install-grid__img { border-radius: 0; }


/* ============================================================
   ANCHOR SCROLL OFFSET (accounts for sticky header)
   ============================================================ */
[id] { scroll-margin-top: 6rem; }

/* ============================================================
   RESPONSIVE - Mobile only (< 768px)
   ============================================================ */
@media (max-width: 767px) {
  .float-call-mobile { display: flex !important; }
  .cta-form { grid-template-columns: 1fr; padding: 1.5rem; }
  .cta-form__field--full { grid-column: 1; }
  .fabric-gallery { grid-template-columns: repeat(2, 1fr); }
  .quote-form { grid-template-columns: 1fr; }
  .quote-form textarea,
  .quote-form .btn,
  .quote-form .form-msg { grid-column: 1; }
}

/* ============================================================
   RESPONSIVE - Tablet (>= 640px)
   ============================================================ */
@media (min-width: 640px) {
  .product-grid          { grid-template-columns: 1fr 1fr; }
  .product-grid--new     { grid-template-columns: 1fr 1fr; }
  .hww-grid              { grid-template-columns: 1fr 1fr; }
  .features-grid         { grid-template-columns: 1fr 1fr; }
  .testimonials-grid     { grid-template-columns: 1fr 1fr; }
  .stats-grid            { grid-template-columns: repeat(3, 1fr); }
  .process-grid          { grid-template-columns: repeat(3, 1fr); }
  .footer-grid           { grid-template-columns: 1fr 1fr; }
  .footer-bottom__inner  { flex-direction: column; justify-content: center; align-items: center; }
}

/* ============================================================
   RESPONSIVE - Desktop (>= 768px)
   ============================================================ */
@media (min-width: 768px) {
  .nav-toggle            { display: none; }
  .float-call-mobile     { display: none !important; }
  .nav-desktop           { display: flex; }
  .header-actions        { display: flex; }
  .float-call-desktop    { display: flex; }

  .hero__inner           { grid-template-columns: 7fr 5fr; }

  .products-section .section__header { flex-direction: row; align-items: flex-end; justify-content: space-between; }

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

  .about-intro           { grid-template-columns: 1fr 1fr; }
  .about-intro--reverse > *:first-child { order: 2; }
  .install-grid          { grid-template-columns: 1fr 1fr; }
  .install-grid__body    { padding: 3rem 3rem 3rem 0; }

  .product-row           { grid-template-columns: 1fr 1fr; }
  .product-row--alt > *:first-child { order: 2; }

  .contact-grid          { grid-template-columns: 2fr 3fr; }
  .footer-grid           { grid-template-columns: 2fr 1fr 1fr; }

  .faq-inner             { grid-template-columns: 1fr 2fr; align-items: start; }
  .faq-header            { position: sticky; top: 7rem; }

  .hww-header            { grid-template-columns: 1fr 1fr; align-items: center; }
}

/* ============================================================
   RESPONSIVE - Wide (>= 1024px)
   ============================================================ */
@media (min-width: 1024px) {
  .product-grid          { grid-template-columns: repeat(4, 1fr); }
  .product-grid--new     { grid-template-columns: repeat(3, 1fr); }
  .hww-grid              { grid-template-columns: repeat(4, 1fr); }
  .footer-grid           { grid-template-columns: 2fr 1fr 1fr; }
}

/* ============================================================
   TRUST SECTION
   ============================================================ */
.trust-section { background: var(--muted); }
.trust-head {
  text-align: center;
  margin-bottom: 3rem;
}
.trust-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.05;
  color: var(--ink);
}
.trust-title .accent {
  color: var(--primary);
  font-style: italic;
}
.trust-sub {
  color: var(--muted-fg);
  margin-top: .75rem;
  font-size: 1rem;
}
.trust-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
.trust-card {
  border: 1px solid var(--ink-70);
  border-radius: .75rem;
  padding: 2rem;
  transition: box-shadow .2s;
}
.trust-card:hover { box-shadow: 0 4px 20px rgba(24,28,38,.08); }
.trust-card__check {
  width: 2rem; height: 2rem;
  display: grid;
  place-items: center;
  color: var(--ink);
  margin-bottom: 1.25rem;
}
.trust-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: .75rem;
  letter-spacing: 0;
  line-height: 1.3;
}
.trust-card__body {
  font-size: .9rem;
  color: var(--muted-fg);
  line-height: 1.75;
}

/* ============================================================
   PREMIUM QUALITY SECTION
   ============================================================ */
.quality-section { background: var(--bg); }
.quality-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}
.quality-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: .5rem;
}
.quality-body { display: flex; flex-direction: column; gap: 1.25rem; }
.quality-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.05;
  color: var(--ink);
}
.quality-title .accent {
  color: var(--primary);
  font-style: italic;
}
.quality-text {
  color: var(--muted-fg);
  line-height: 1.8;
  font-size: .95rem;
}

/* ============================================================
   GOOGLE REVIEWS SECTION
   ============================================================ */
.reviews-section { background: var(--bg); }
.reviews-head {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.reviews-rating-block {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.reviews-score {
  display: flex;
  align-items: center;
  gap: .5rem;
}
.reviews-score__num {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink);
}
.reviews-stars { display: flex; gap: .15rem; }
.reviews-count {
  font-size: .8rem;
  color: var(--muted-fg);
  margin-top: .2rem;
}
.reviews-sub {
  color: var(--muted-fg);
  font-size: .95rem;
}
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.review-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: .75rem;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.review-card__header {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.review-card__avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.review-card__meta {
  flex: 1;
  min-width: 0;
}
.review-card__meta strong {
  display: block;
  font-size: .875rem;
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.review-card__meta span {
  font-size: .75rem;
  color: var(--muted-fg);
}
.review-card__google { flex-shrink: 0; }
.review-card__stars { display: flex; gap: .1rem; }
.review-card__text {
  font-size: .875rem;
  color: var(--fg);
  line-height: 1.7;
}

/* ============================================================
   INSTALL GRID - image first on mobile
   ============================================================ */
.install-grid--img-first .install-grid__img-wrap { order: -1; }

/* ============================================================
   RESPONSIVE additions
   ============================================================ */
@media (min-width: 640px) {
  .trust-grid    { grid-template-columns: repeat(3, 1fr); }
  .reviews-grid  { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 768px) {
  .reviews-head  { flex-direction: row; align-items: center; justify-content: space-between; }
  .quality-grid  { grid-template-columns: 1fr 1fr; }

  .install-grid--img-first .install-grid__img-wrap { order: 0; }
}
@media (min-width: 1024px) {
  .reviews-grid  { grid-template-columns: repeat(4, 1fr); }
}


/* ============================================================
   PRODUCT CARD BADGE (reusable overlay label)
   ============================================================ */
.product-card__badge {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: .35rem .85rem;
  border-radius: 2rem;
  z-index: 2;
}
.product-card__badge--popular   { background: #fff3e8; color: var(--primary); }
.product-card__badge--versatile { background: #f0f0f0; color: #555; }
.product-card__badge--sleep     { background: var(--ink); color: #fff; }

/* ============================================================
   LANDING PAGE HEADER
   ============================================================ */
.lp-header-phone-mobile {
  display: none;
  align-items: center;
  gap: .4rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: inherit;
  transition: color .2s;
}
.lp-header-phone-mobile:hover { color: var(--primary); }
.lp-header-phone-mobile svg { color: var(--primary); }

@media (max-width: 767px) {
  .site-header--lp .header-actions { display: none; }
  .lp-header-phone-mobile          { display: flex; }
}
@media (min-width: 768px) {
  .lp-header-phone-mobile { display: none; }
}

/* ============================================================
   HOW WE WORK -- Background image variant
   ============================================================ */
.how-we-work--bg-img {
  position: relative;
  overflow: hidden;
}
.how-we-work__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
}
.how-we-work__overlay {
  position: absolute;
  inset: 0;
  background: rgba(24,28,38,.87);
}

/* ============================================================
   HERO BADGES IMAGE
   ============================================================ */
.hero__badges-img {
  max-width: max-content;
  max-height: 140px;
  width: 100%;
  border-radius: 0;
  margin-top: -30px;
}

/* ============================================================
   HERO - Mobile text centering & badge spacing
   ============================================================ */
@media (max-width: 767px) {
  .hero__overlay {
    background: linear-gradient(to bottom, rgba(24,28,38,.88) 0%, rgba(24,28,38,.8) 50%, rgba(24,28,38,.6) 100%);
  }
  .hero__content {
    text-align: center;
  }
  .hero__eyebrow {
    justify-content: center;
  }
  .hero__eyebrow--img {
    justify-content: center;
  }
  .hero__title {
    font-size: 2.6rem;
  }
  .hero__body {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    line-height: 1.4;
    color: #ffffff;
  }
  .hero__badges-img {
    margin-top: 0 !important;
    display: block;
    margin-inline: auto;
    max-height: 120px;
  }
  .hero__form-card {
    margin-top: 0;
  }
  .hero__inner {
    gap: 1rem;
  }
}

/* ============================================================
   GALLERY OF INSTALLATIONS
   ============================================================ */
.gallery-section { padding-block: 5rem; }

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
  align-items: start;
}

.gallery-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.gallery-col--offset {
  margin-top: 2.5rem;
}

.gallery-item {
  overflow: hidden;
  border-radius: .75rem;
  background: var(--muted);
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform .45s ease, filter .45s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
  filter: brightness(1.05);
}

@media (max-width: 640px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: .6rem;
  }
  .gallery-col--offset { margin-top: 0; }
  .gallery-col:nth-child(3) { display: none; }
}

@media (min-width: 641px) and (max-width: 900px) {
  .gallery-col--offset { margin-top: 1.5rem; }
}

@media (max-width: 480px) {
  .hero__phone { font-size: 2.7rem; }
}