/* ============================================================
   BOXABL CLONE – Faithful CSS (v2)
   ============================================================ */

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

:root {
  --black:      #000000;
  --dark:       #111111;
  --dark-2:     #1a1a1a;
  --dark-3:     #222222;
  --gray-1:     #444444;
  --gray-2:     #666666;
  --gray-3:     #999999;
  --gray-4:     #bbbbbb;
  --gray-5:     #dddddd;
  --light:      #f2f2f2;
  --white:      #ffffff;
  --orange:     #f5a623;   /* Boxabl invest/CTA orange */
  --orange-dk:  #d4901d;

  --announce-h: 40px;
  --nav-h:      72px;
  --sticky-h:   60px;
  --total-top:  calc(var(--announce-h) + var(--nav-h));

  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: var(--font);
  background: var(--white);
  color: var(--dark);
  line-height: 1.5;
  overflow-x: hidden;
  max-width: 100%;
  padding-bottom: var(--sticky-h);
}

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

/* ============================================================
   BOXABL LOGO STYLE
   The real logo has a custom "A" with a house/roof shape
   We simulate it with a raised caret inside the A
   ============================================================ */
.logo-text, .hero-logo-text, .footer-logo-text {
  font-weight: 900;
  letter-spacing: -1px;
  font-size: inherit;
  line-height: 1;
  display: inline-block;
}

.logo-a, .hero-logo-a, .footer-logo-a {
  position: relative;
  display: inline-block;
}

/* Small orange square inside the A — mimicking Boxabl's logo detail */
.logo-a::after, .hero-logo-a::after, .footer-logo-a::after {
  content: '■';
  position: absolute;
  font-size: .28em;
  top: .18em;
  left: 50%;
  transform: translateX(-50%);
  color: var(--orange);
  line-height: 1;
}

/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */
.announce-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--announce-h);
  background: var(--dark);
  color: var(--gray-4);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 0 24px;
  z-index: 1002;
  font-size: .75rem;
  font-weight: 500;
}

.announce-bar p { flex: 1; text-align: center; max-width: 700px; }

.ticker-sym {
  color: var(--orange);
  font-weight: 700;
}

.announce-bar a:not(.announce-cta) {
  color: var(--gray-4);
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,.3);
  transition: color .2s;
}

.announce-bar a:not(.announce-cta):hover { color: var(--white); }

.announce-cta {
  background: var(--orange);
  color: var(--black);
  font-size: .72rem;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: 3px;
  letter-spacing: .5px;
  white-space: nowrap;
  transition: background .2s;
  flex-shrink: 0;
}

.announce-cta:hover { background: var(--orange-dk); }

/* ============================================================
   NAVBAR (WHITE)
   ============================================================ */
#navbar {
  position: fixed;
  top: var(--announce-h);
  left: 0; right: 0;
  height: var(--nav-h);
  background: var(--white);
  border-bottom: 1px solid var(--gray-5);
  z-index: 1000;
}

.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 40px;
}

/* Logo */
.nav-logo { flex-shrink: 0; }
.nav-logo-img {
  height: 52px;
  width: auto;
  display: block;
}

/* Center nav links */
.nav-links {
  display: flex;
  list-style: none;
  gap: 0;
  flex: 1;
  justify-content: center;
}

.nav-links > li { position: relative; }

.nav-links > li > a {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--dark);
  font-size: .9rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 6px;
  transition: background .2s, color .2s;
}

.nav-links > li > a:hover,
.nav-links > li:hover > a {
  background: var(--light);
  color: var(--black);
}

/* Dropdowns */
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--gray-5);
  border-radius: 8px;
  min-width: 200px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all .2s;
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
  z-index: 10;
}

.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.dropdown a {
  display: block;
  padding: 10px 20px;
  font-size: .875rem;
  color: var(--gray-2);
  transition: background .15s, color .15s;
}

.dropdown a:hover {
  background: var(--light);
  color: var(--black);
}

/* Right side: contact + CTAs */
.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.nav-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  border-right: 1px solid var(--gray-5);
  padding-right: 16px;
}

.nav-contact a {
  font-size: .75rem;
  color: var(--gray-2);
  transition: color .2s;
}

.nav-contact a:hover { color: var(--black); }

.nav-ctas {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-faq {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: .875rem;
  color: var(--gray-2);
  font-weight: 500;
  padding: 7px 12px;
  border-radius: 6px;
  transition: background .2s, color .2s;
}

.nav-faq:hover { background: var(--light); color: var(--black); }

.btn-order {
  background: var(--dark);
  color: var(--white);
  font-size: .8rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 6px;
  transition: background .2s;
}

.btn-order:hover { background: var(--black); }

.btn-invest {
  background: var(--orange);
  color: var(--white);
  font-size: .8rem;
  font-weight: 800;
  padding: 8px 18px;
  border-radius: 999px;
  letter-spacing: .5px;
  transition: background .2s;
}

.btn-invest:hover { background: var(--orange-dk); }

/* Language switcher */
.lang-switcher {
  display: flex;
  gap: 3px;
  align-items: center;
  flex-shrink: 0;
}

.lang-btn {
  background: none;
  border: 1px solid var(--gray-5);
  border-radius: 4px;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .5px;
  padding: 3px 6px;
  cursor: pointer;
  color: var(--gray-3);
  font-family: var(--font);
  transition: color .15s, border-color .15s, background .15s;
  line-height: 1.4;
}

.lang-btn:hover { border-color: var(--gray-3); color: var(--dark); }
.lang-btn.active { background: var(--dark); color: var(--white); border-color: var(--dark); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--dark);
  border-radius: 2px;
}

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--gray-5);
  padding: 8px 24px 20px;
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  color: var(--gray-2);
  font-size: .95rem;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-5);
  transition: color .2s;
}

.mobile-menu a:hover { color: var(--black); }
.mobile-invest { color: var(--orange) !important; font-weight: 700 !important; }

/* ============================================================
   HERO  — ~55% of viewport (not full screen, like real Boxabl)
   ============================================================ */
.hero {
  position: relative;
  height: 55vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: var(--total-top);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: #1a2535;
}

/* Add factory grid pattern to simulate rooftop */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      90deg,
      rgba(0,0,0,.04) 0, rgba(0,0,0,.04) 1px,
      transparent 1px, transparent 80px
    ),
    repeating-linear-gradient(
      0deg,
      rgba(0,0,0,.04) 0, rgba(0,0,0,.04) 1px,
      transparent 1px, transparent 80px
    );
}

.hero-bg::after { content: none; }

/* When a real photo/video is loaded, hide the CSS placeholder overlays */
.hero-bg.has-image::before,
.hero-bg.has-image::after { display: none; }

/* Fullscreen video overlay for hero and carousel slides */
.hp-video-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
  transition: transform .6s ease;
}
.slide:hover .hp-video-overlay { transform: scale(1.03); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(0,0,0,.15) 0%,
      rgba(0,0,0,.05) 40%,
      rgba(0,0,0,.35) 100%
    );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
}

.hero-logo { margin-bottom: 20px; }

.hero-logo-img {
  height: clamp(60px, 10vw, 120px);
  width: auto;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 2px 16px rgba(0,0,0,.35));
}

.hero-eyebrow {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -.5px;
  text-shadow: 0 2px 20px rgba(0,0,0,.45);
  margin-bottom: 20px;
}

.hero-sub {
  font-size: clamp(.8rem, 1.4vw, 1rem);
  font-weight: 400;
  color: rgba(255, 255, 255, .75);
  letter-spacing: .2px;
  text-shadow: 0 1px 6px rgba(0,0,0,.3);
}

/* ============================================================
   MEDIA TICKER (light background)
   ============================================================ */
.ticker-wrap {
  background: var(--white);
  border-top: 1px solid var(--gray-5);
  border-bottom: 1px solid var(--gray-5);
  padding: 20px 0;
  overflow: hidden;
}

.ticker-track { overflow: hidden; }

.ticker {
  display: flex;
  align-items: center;
  gap: 40px;
  white-space: nowrap;
  animation: ticker 28s linear infinite;
}

.ticker-logo {
  height: 24px;
  width: auto;
  flex-shrink: 0;
  object-fit: contain;
  filter: grayscale(1) opacity(.55);
  transition: filter .2s;
}

.ticker-logo:hover { filter: grayscale(0) opacity(1); }

@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   CAROUSEL / PRODUCT SLIDER
   Structure:
     .carousel-section          (no overflow clip)
       .carousel-wrapper        (clips peek overflow, positions arrows)
         .carousel-viewport     (overflow visible, so peek works)
           .carousel-track      (flex row of slides)
         .carousel-arrow ×2     (absolute inside wrapper)
       .carousel-dots           (below wrapper)
   ============================================================ */
.carousel-section {
  background: var(--white);
  /* spacing between carousel sections — dots + gap */
  margin-bottom: 48px;
}

.carousel-section:last-of-type { margin-bottom: 0; }

/* Wrapper clips the peek and anchors arrows */
.carousel-wrapper {
  position: relative;
  overflow: hidden;
}

/* Dots — below the slides */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 18px 0 0;
  background: var(--white);
}

.dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--gray-5);
  border: none;
  cursor: pointer;
  transition: background .2s, transform .2s;
  padding: 0;
}

.dot.active {
  background: var(--dark);
  transform: scale(1.15);
}

/* Viewport — overflow visible so peeked slides show */
.carousel-viewport {
  width: 100%;
  overflow: visible;
}

.carousel-track {
  display: flex;
  gap: 16px;
  padding-left: 6.5vw;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}

/* Each slide — 87vw: leaves 6.5vw peek on each side */
.slide {
  position: relative;
  flex: 0 0 87vw;
  width: 87vw;
  height: 72vh;
  min-height: 460px;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .6s ease;
}

.slide:hover .slide-bg { transform: scale(1.03); }

/* Slide backgrounds — colored with structure until real images added */
/* Carousel 1 — Models */
.slide-bg--casita    { background: #1a2a1a; }
.slide-bg--dev       { background: #1a1f2e; }
.slide-bg--baby      { background: #1a1508; }
.slide-bg--public    { background: #0d1520; }
.slide-bg--financing { background: #0a1a0a; }
.slide-bg--projects  { background: #1a1008; }
.slide-bg--invest    { background: #0a0a1a; }

/* Carousel 2 — Interiors */
.slide-bg--bath    { background: #b0bec5; }
.slide-bg--kitchen { background: #c8c4b8; }
.slide-bg--living  { background: #d0cfc8; }
.slide-bg--bedroom { background: #b8c0c8; }
.slide-bg--outdoor { background: #7a9e7e; }

/* Carousel 3 — Régions norvégiennes */
.slide-bg--nevada     { background: #c8b090; }
.slide-bg--california { background: #7098b8; }
.slide-bg--texas      { background: #9e7858; }
.slide-bg--military   { background: #4a5a40; }
.slide-bg--tour       { background: #303848; }

/* Add subtle texture to all slide backgrounds */
.slide-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 60px 60px;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 20%,
    rgba(0,0,0,.5) 100%
  );
}

.slide-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 14% 24px 0;   /* push down ~14% from top — matches Boxabl upper-third positioning */
  max-width: 600px;
  width: 100%;
}

.slide-content h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.6rem);   /* same proportion as real Boxabl */
  font-weight: 700;
  color: var(--white);
  letter-spacing: -.5px;
  margin-bottom: 10px;
  text-shadow: 0 1px 8px rgba(0,0,0,.4);
}

.slide-content p {
  font-size: .95rem;
  color: rgba(255,255,255,.85);
  margin-bottom: 0;
  line-height: 1.5;
}

.slide-price {
  font-size: .9rem;
  color: rgba(255,255,255,.7);
  margin-bottom: 0;
}

.btn-orange {
  display: inline-block;
  align-self: flex-start;
  background: var(--orange);
  color: var(--white);
  font-size: .9rem;
  font-weight: 700;
  padding: 12px 32px;
  border-radius: 999px;
  margin-top: 16px;
  transition: background .2s, transform .15s;
  letter-spacing: .2px;
}

.btn-orange:hover {
  background: var(--orange-dk);
  transform: translateY(-2px);
}

/* Carousel arrows — positioned inside .carousel-wrapper */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 50%;
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background .2s, box-shadow .2s;
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
}

.carousel-arrow:hover {
  background: var(--white);
  box-shadow: 0 4px 16px rgba(0,0,0,.2);
}

.carousel-prev { left: 20px; }
.carousel-next { right: 20px; }

/* ============================================================
   FINANCING + PROJECTS CARDS (above footer)
   ============================================================ */
.info-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  border-top: 1px solid var(--gray-5);
  background: var(--white);
  padding: 48px 64px;
}

.info-card {
  background: #f7f7f7;
  border-radius: 0;
  padding: 36px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.ic-text h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}

.ic-text p {
  font-size: .875rem;
  color: var(--gray-2);
  margin-bottom: 24px;
  line-height: 1.5;
}

.btn-outline-dark {
  display: inline-block;
  align-self: flex-start;
  border: 1.5px solid var(--dark);
  color: var(--dark);
  font-size: .85rem;
  font-weight: 600;
  padding: 9px 22px;
  border-radius: 999px;
  transition: background .2s, color .2s;
}

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

/* Projects card photo */
.info-card--projects { overflow: hidden; padding-right: 0; }

.ic-photo {
  flex-shrink: 0;
  width: 200px;
  height: 130px;
  border-radius: 6px;
  overflow: hidden;
  align-self: stretch;
}
.ic-product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ic-photo-inner {
  width: 100%; height: 100%;
  display: flex;
  align-items: flex-end;
  padding: 0 8px 8px;
  background: linear-gradient(to bottom, #87CEEB 30%, #c8a96e 100%);
}

.house-row {
  display: flex;
  gap: 4px;
  align-items: flex-end;
  width: 100%;
}

.mini-house {
  flex: 1;
  height: 60px;
  border-radius: 3px 3px 0 0;
  position: relative;
}

.mini-house::before {
  content: '';
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  width: 0; height: 0;
  border-left: 18px solid transparent;
  border-right: 18px solid transparent;
  border-bottom: 14px solid rgba(0,0,0,.25);
}

/* ============================================================
   FOOTER (white background — exact Boxabl layout)
   ============================================================ */

/* ── Quote CTA band ─────────────────────────────────────── */
.quote-cta-band {
  background: var(--dark);
  padding: 48px 24px;
}
.qcta-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.qcta-inner h3 {
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.qcta-inner p {
  color: #aaa;
  font-size: .9rem;
}
@media (max-width: 700px) {
  .qcta-inner { flex-direction: column; text-align: center; }
}

/* ══════════════════════════════════════
   GOOGLE REVIEWS CAROUSEL
══════════════════════════════════════ */
.reviews-section {
  padding: 80px 0 64px;
  background: #f9fafb;
  overflow: hidden;
}

.reviews-header {
  text-align: center;
  margin-bottom: 40px;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.reviews-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #5f6368;
  margin-bottom: 10px;
}

.reviews-g-icon {
  flex-shrink: 0;
  vertical-align: middle;
}

.reviews-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 14px;
}

.reviews-rating-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.reviews-stars {
  color: #f59e0b;
  font-size: 1.3rem;
  letter-spacing: 2px;
}

.reviews-score {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--dark);
}

.reviews-count {
  font-size: .85rem;
  color: var(--gray-2);
}

.reviews-google-logo {
  height: 20px;
  width: auto;
  opacity: .8;
}

.reviews-carousel-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.reviews-viewport {
  overflow: hidden;
  flex: 1;
}

.reviews-track {
  display: flex;
  gap: 24px;
  transition: transform .4s cubic-bezier(.25,.46,.45,.94);
}

.review-card {
  flex: 0 0 calc((100% - 48px) / 3);
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,.05);
}

.review-card-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-size: .8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.review-name {
  font-size: .9rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
}

.review-date {
  font-size: .75rem;
  color: var(--gray-2);
  margin-top: 1px;
}

.review-stars-sm {
  color: #f59e0b;
  font-size: 1rem;
  margin-left: auto;
  flex-shrink: 0;
}

.review-text {
  font-size: .875rem;
  color: var(--gray-1);
  line-height: 1.6;
}

.reviews-nav {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid #e5e7eb;
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, border-color .2s;
}

.reviews-nav:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}

.reviews-nav:hover svg { stroke: #fff; }

.reviews-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-top: 28px;
  min-height: 16px;
}

.rev-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: #d1d5db;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  transition: background .2s, transform .25s;
}

.rev-dot.active {
  background: var(--orange);
  transform: scale(1.25) !important;
}

@media (max-width: 1100px) {
  .review-card { flex: 0 0 calc((100% - 24px) / 2); }
}

@media (max-width: 767px) {
  .review-card { flex: 0 0 100%; }

  .reviews-carousel-wrap {
    padding: 0 14px;
    gap: 0;
    position: relative;   /* anchor for absolute nav buttons */
  }

  /* Pull arrows out of flex flow → card takes full width */
  .reviews-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 26px;
    height: 26px;
    background: rgba(255, 255, 255, 0.45);
    border: 1px solid rgba(0, 0, 0, 0.06);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    box-shadow: none;
  }
  .reviews-nav svg { width: 11px; height: 11px; stroke-width: 2.5; }
  .reviews-nav--prev { left: 14px; }
  .reviews-nav--next { right: 14px; }
  .reviews-nav:hover {
    background: rgba(245, 98, 15, 0.75);
    border-color: transparent;
  }
}

.reviews-certified {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  max-width: 1200px;
  margin: 16px auto 0;
  padding: 0 24px;
  font-size: .72rem;
  font-weight: 600;
  color: #5f6368;
  letter-spacing: .03em;
}

.footer {
  background: var(--white);
  border-top: 1px solid var(--gray-5);
  padding-top: 0;
}

.footer-top-row {
  padding: 56px 64px 48px;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 64px;
}

/* Newsletter column */
.footer-newsletter {}

.footer-logo { display: block; margin-bottom: 28px; }

.footer-logo-img {
  height: 40px;
  width: auto;
  display: block;
  opacity: .85;
}

.footer-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-form input[type="email"],
.footer-form input[type="tel"] {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--gray-5);
  border-radius: 999px;
  font-family: var(--font);
  font-size: .9rem;
  color: var(--dark);
  background: var(--white);
  transition: border-color .2s;
  outline: none;
}

.footer-form input::placeholder { color: var(--gray-3); }

.footer-form input:focus { border-color: var(--gray-3); }

.phone-row {
  display: flex;
  gap: 8px;
  align-items: center;
}

.phone-prefix {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 13px 16px;
  border: 1.5px solid var(--gray-5);
  border-radius: 999px;
  font-size: .875rem;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  white-space: nowrap;
  transition: border-color .2s;
  flex-shrink: 0;
}

.phone-row input { flex: 1; }

.btn-stay-updated {
  width: 100%;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font);
  font-size: .9rem;
  font-weight: 700;
  padding: 14px;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  letter-spacing: .3px;
  transition: background .2s;
}

.btn-stay-updated:hover { background: var(--orange-dk); }

.footer-sms-note {
  margin-top: 14px;
  font-size: .72rem;
  color: var(--gray-3);
  line-height: 1.6;
}

/* Footer columns */
.footer-cols {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px;
}

.footer-col h5 {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--dark);
  margin-bottom: 14px;
}

.footer-col a {
  display: block;
  font-size: .82rem;
  color: var(--gray-2);
  margin-bottom: 9px;
  transition: color .2s;
  line-height: 1.4;
}

.footer-col a:hover { color: var(--dark); }

/* Social icons grid (2 rows × 5 cols) */
.social-grid {
  display: grid;
  grid-template-columns: repeat(5, 36px);
  gap: 8px;
  margin-top: 4px;
}

.social-grid a {
  color: var(--gray-2);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--gray-5);
  border-radius: 6px;
  transition: color .2s, border-color .2s;
  margin-bottom: 0 !important;
}

.social-grid a:hover { color: var(--dark); border-color: var(--gray-3); }

.footer-disclaimer {
  border-top: 1px solid var(--gray-5);
  padding: 20px 64px 24px;
}

.footer-disclaimer p {
  font-size: .72rem;
  color: var(--gray-3);
  line-height: 1.7;
}

/* ============================================================
   STICKY BOTTOM BAR
   ============================================================ */
.sticky-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: var(--sticky-h);
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--gray-5);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  z-index: 999;
  padding: 0 24px;
}

.sticky-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--dark);
  font-size: .875rem;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 8px;
  border: 1.5px solid var(--gray-5);
  transition: border-color .2s, background .2s, transform .15s;
}

.sticky-btn:hover {
  border-color: var(--gray-3);
  background: var(--light);
  transform: translateY(-1px);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .nav-right   { display: none; }
  .hamburger   { display: flex; margin-left: 8px; }
  .nav-links   { display: none; }
  .nav-inner   { gap: 0; padding: 0 16px; }
  .nav-logo    { margin-right: auto; }
  .footer-cols { grid-template-columns: repeat(3, 1fr); }
  .footer-top-row { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 900px) {
  .info-cards { grid-template-columns: 1fr; padding: 24px; }
  .ic-photo   { width: 140px; height: 100px; }
}

@media (max-width: 768px) {
  .announce-bar p  { display: block; font-size: .65rem; }
  .hero-logo-img   { height: clamp(50px, 14vw, 90px); }
  .hero h1         { font-size: clamp(1.7rem, 8vw, 2.4rem); letter-spacing: -.3px; }
  .hero-sub        { font-size: .78rem; }
  .slide           { height: 58vh; min-height: 380px; }
  .slide-content h2{ font-size: 2rem; }
  .footer-top-row  { padding: 40px 24px 32px; }
  .footer-cols     { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-col--social { grid-column: span 2; }
  .footer-disclaimer { padding: 16px 24px; }
  .carousel-arrow  { width: 36px; height: 36px; }
  .carousel-prev   { left: 10px; }
  .carousel-next   { right: 10px; }
  .info-cards      { padding: 24px 16px; }
}

@media (max-width: 480px) {
  :root { --announce-h: 36px; }
  .announce-cta    { font-size: .65rem; padding: 4px 10px; }
  .footer-cols     { grid-template-columns: 1fr; }
  .footer-col--social { grid-column: span 1; }
  .sticky-bar      { gap: 8px; }
  .sticky-btn      { font-size: .78rem; padding: 8px 14px; }
  .slide           { flex: 0 0 94%; width: 94%; border-radius: 4px; }
  .carousel-track  { padding: 0 3%; }
}

/* ============================================================
   MEGA DROPDOWN — Products nav
   ============================================================ */
.megadrop {
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  padding: 10px;
  min-width: 420px;
}

.megadrop-card {
  display: flex;
  flex-direction: column;
  border-radius: 8px;
  overflow: hidden;
  padding: 0;
  color: var(--dark);
  transition: opacity .2s;
}

.megadrop-card:hover { background: transparent; opacity: .88; }

.megadrop-img {
  width: 100%;
  height: 88px;
  flex-shrink: 0;
}

.megadrop-img--casita { background: linear-gradient(135deg, #1a2a1a 0%, #2d4a2d 100%); }
.megadrop-img--dev    { background: linear-gradient(135deg, #1a1f2e 0%, #253450 100%); }
.megadrop-img--baby   { background: linear-gradient(135deg, #1a1508 0%, #3a2f10 100%); }
.megadrop-img--public { background: linear-gradient(135deg, #0d1520 0%, #1a2535 100%); }

.megadrop-text {
  padding: 8px 10px 10px;
  background: var(--white);
}

.megadrop-text strong {
  display: block;
  font-size: .82rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1px;
}

.megadrop-text span {
  font-size: .72rem;
  color: var(--gray-2);
}

/* ============================================================
   PRODUCT PAGE — HERO
   ============================================================ */
.prod-hero {
  position: relative;
  height: 70vh;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  margin-top: var(--total-top);
}

.prod-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a1e2e 0%, #232d3a 50%, #1c2830 100%);
  background-size: cover;
  background-position: center;
}

.prod-hero-bg--casita {
  background:
    linear-gradient(135deg, #111820 0%, #1c2c3a 40%, #243040 100%);
}

/* Subtle interior room texture */
.prod-hero-bg--casita::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 80%, rgba(245,166,35,.08) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 20%, rgba(100,160,200,.07) 0%, transparent 50%);
}

/* Simulated window light streaks */
.prod-hero-bg--casita::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 45%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255,240,200,.04) 50%,
    rgba(255,240,200,.07) 55%,
    rgba(255,240,200,.03) 60%,
    transparent 70%
  );
}

.prod-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.08) 0%,
    rgba(0,0,0,.15) 40%,
    rgba(0,0,0,.65) 100%
  );
}

.prod-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 64px 64px;
  max-width: 680px;
}

.prod-hero-tag {
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--orange);
  margin-bottom: 14px;
}

.prod-hero-content h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -1.5px;
  margin-bottom: 10px;
}

.prod-hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,.78);
  margin-bottom: 32px;
  font-weight: 400;
}

.prod-hero-ctas {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.btn-outline-white {
  display: inline-block;
  border: 1.5px solid rgba(255,255,255,.65);
  color: var(--white);
  font-size: .9rem;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 999px;
  transition: background .2s, border-color .2s;
  letter-spacing: .2px;
}

.btn-outline-white:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
}


/* ============================================================
   FLOOR PLANS SECTION
   ============================================================ */
.floorplans-section {
  padding: 72px 64px 56px;
  background: var(--white);
}

.section-title {
  font-size: clamp(1.3rem, 2.2vw, 2rem);
  font-weight: 700;
  color: var(--dark);
  text-align: center;
  margin-bottom: 20px;
  letter-spacing: -.4px;
  line-height: 1.2;
}

.section-hr {
  border: none;
  border-top: 1.5px solid var(--gray-5);
  margin: 0 0 32px;
}

.section-hr--narrow {
  max-width: 200px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Variants carousel ──────────────────────────────────── */
.fp-carousel {
  position: relative;
  margin-bottom: 56px;
}

.fp-viewport {
  overflow: hidden;
  width: 100%;
  /* give room for the ±20px arrow buttons so they never clip the cards */
  padding: 0 28px;
  box-sizing: border-box;
}

/* ── Carousel mobile ──────────────────────────────────────────── */
@media (max-width: 899px) {
  /* On mobile, arrows sit inside section padding — no extra padding on viewport */
  .fp-viewport {
    padding: 0;
  }
  /* JS translateX drives everything; disable any CSS scrolling */
  #floorplanCards, .floorplan-cards {
    flex-wrap: nowrap !important;
    justify-content: flex-start !important;
    overflow-x: visible !important;
    scroll-snap-type: none !important;
  }
  .floorplan-card {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    min-width: 100% !important;
  }
}

.floorplan-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  transition: transform .35s cubic-bezier(.25,.46,.45,.94);
  will-change: transform;
}

.floorplan-card {
  flex: 0 0 calc(33.333% - 14px);
  min-width: 0;
  background: var(--white);
  border: 1px solid var(--gray-5);
  overflow: hidden;
  transition: box-shadow .2s;
}

.floorplan-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
}

.fp-nav {
  position: absolute;
  top: calc(50% - 24px);
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: transparent;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background .15s, color .15s;
}
.fp-nav:hover { background: rgba(0,0,0,.12); color: var(--dark); }
.fp-nav:disabled { opacity: .25; cursor: default; pointer-events: none; }
.fp-prev { left: -20px; }
.fp-next { right: -20px; }

.fp-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}
.fp-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--gray-5);
  cursor: pointer;
  padding: 0;
  transition: background .2s, transform .2s;
}
.fp-dot.active { background: var(--orange); transform: scale(1.3); }

.fp-img {
  height: 200px;
  background: #f0f0ec;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fp-img--studio  { background: linear-gradient(135deg, #eeecea 0%, #f4f2ee 100%); }
.fp-img--1br     { background: linear-gradient(135deg, #eaeef4 0%, #eef2f8 100%); }
.fp-img--2br     { background: linear-gradient(135deg, #eaf0ea 0%, #eef4ee 100%); }

/* CSS floor plan drawing */
.fp-drawing {
  position: absolute;
  inset: 16px;
  border: 1.5px solid rgba(0,0,0,.18);
}

.fp-drawing--studio::before {
  content: '';
  position: absolute;
  top: 20%; left: 10%; right: 10%; bottom: 20%;
  border: 1px solid rgba(0,0,0,.12);
  background: rgba(0,0,0,.02);
}

.fp-drawing--1br::before {
  content: '';
  position: absolute;
  top: 10%; left: 10%; right: 10%; bottom: 50%;
  border: 1px solid rgba(0,0,0,.12);
  background: rgba(0,0,0,.02);
}

.fp-drawing--1br::after {
  content: '';
  position: absolute;
  top: 55%; left: 10%; right: 10%; bottom: 10%;
  border: 1px solid rgba(0,0,0,.12);
  background: rgba(0,0,0,.02);
}

.fp-drawing--2br::before {
  content: '';
  position: absolute;
  top: 10%; left: 10%; right: 55%; bottom: 10%;
  border: 1px solid rgba(0,0,0,.12);
  background: rgba(0,0,0,.02);
}

.fp-drawing--2br::after {
  content: '';
  position: absolute;
  top: 10%; left: 50%; right: 10%; bottom: 10%;
  border: 1px solid rgba(0,0,0,.12);
  background: rgba(0,0,0,.02);
}

.fp-info {
  padding: 24px 24px 28px;
}

.fp-info h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.fp-desc {
  font-size: .82rem;
  color: var(--gray-2, #6b7280);
  line-height: 1.45;
  margin-bottom: 8px;
}

.fp-size {
  font-size: .875rem;
  color: var(--gray-1);
  font-weight: 500;
  margin-bottom: 2px;
}

.fp-dims {
  font-size: .8rem;
  color: var(--gray-3);
  margin-bottom: 14px;
}

.fp-price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 18px;
}

.fp-price-orig {
  font-size: .85rem;
  font-weight: 500;
  color: var(--gray-2, #6b7280);
  text-decoration: line-through;
  margin-right: 4px;
}

.fp-price-disc {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
}

.fp-price-tag {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .04em;
  padding: 2px 7px;
  border-radius: 20px;
  vertical-align: middle;
  margin-left: 5px;
}

.btn-orange-sm {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-size: .8rem;
  font-weight: 700;
  padding: 9px 22px;
  border-radius: 999px;
  transition: background .2s;
  letter-spacing: .2px;
}

.btn-orange-sm:hover { background: var(--orange-dk); }

.features-heading {
  font-size: clamp(1.3rem, 2vw, 1.9rem);
  font-weight: 700;
  color: var(--dark);
  text-align: center;
  margin-bottom: 18px;
  letter-spacing: -.3px;
}

/* ============================================================
   ALTERNATING FEATURES
   ============================================================ */
.alt-features { background: var(--white); }

.alt-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}

.alt-feature--flip .af-text { order: -1; }

.af-photo {
  position: relative;
  overflow: hidden;
  min-height: 400px;
  background-size: cover;
  background-position: center;
}

.af-photo--delivery {
  background: linear-gradient(135deg, #1a2e1a 0%, #2d4a2d 60%, #3a5030 100%);
}
.af-photo--delivery::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 60% 40%, rgba(100,180,120,.12) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(245,166,35,.06) 0%, transparent 45%);
}

.af-photo--quality {
  background: linear-gradient(135deg, #1c1c24 0%, #2a2a38 60%, #222232 100%);
}
.af-photo--quality::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 40% 50%, rgba(180,180,220,.08) 0%, transparent 55%);
}

.af-photo--smart {
  background: linear-gradient(135deg, #101820 0%, #182028 60%, #142030 100%);
}
.af-photo--smart::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 60%, rgba(80,160,240,.09) 0%, transparent 55%),
    radial-gradient(ellipse at 30% 30%, rgba(245,166,35,.06) 0%, transparent 40%);
}

/* Simulated interior scene lines */
.af-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 48px 48px;
}

.af-text {
  padding: 72px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
}

.af-tag {
  display: inline-block;
  font-size: .68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--orange);
  margin-bottom: 14px;
}

.af-text h2 {
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -.5px;
  margin-bottom: 20px;
  line-height: 1.15;
}

.af-text p {
  font-size: .95rem;
  color: var(--gray-2);
  line-height: 1.75;
  margin-bottom: 14px;
}

.af-text a { margin-top: 8px; align-self: flex-start; }

/* ============================================================
   APPLIANCES — mini carousel + text
   ============================================================ */
.appliances-section {
  background: var(--light);
}

.appliances-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 460px;
}

/* Mini carousel container */
.appliances-carousel {
  position: relative;
  overflow: hidden;
  background: var(--dark);
}

.mini-carousel-wrap {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.mini-track {
  display: flex;
  height: 100%;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}

.mini-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  min-height: 460px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.mini-slide--kitchen { background: linear-gradient(135deg, #c8c4b8 0%, #e8e4d8 50%, #c0bcb0 100%); background-size: cover; background-position: center; }
.mini-slide--bath    { background: linear-gradient(135deg, #b0bec5 0%, #eceff1 50%, #b0bec5 100%); background-size: cover; background-position: center; }
.mini-slide--living  { background: linear-gradient(135deg, #d0cfc8 0%, #eeecea 50%, #c8c7c0 100%); background-size: cover; background-position: center; }

/* Mini carousel arrows */
.mini-prev, .mini-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px; height: 38px;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(0,0,0,.1);
  border-radius: 50%;
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background .2s;
  box-shadow: 0 2px 8px rgba(0,0,0,.12);
}

.mini-prev:hover, .mini-next:hover { background: var(--white); }
.mini-prev { left: 14px; }
.mini-next { right: 14px; }

/* Mini carousel dots */
.mini-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.mini-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.5);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background .2s;
}

.mini-dot.active { background: var(--white); }

.appliances-text {
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--light);
}

.appliances-text h2 {
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
  letter-spacing: -.3px;
}

.appliances-text > p {
  font-size: .95rem;
  color: var(--gray-2);
  line-height: 1.7;
  margin-bottom: 20px;
}

.appliance-list {
  list-style: none;
}

.appliance-list li {
  font-size: .9rem;
  color: var(--gray-1);
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-5);
  display: flex;
  align-items: center;
  gap: 12px;
}

.appliance-list li::before {
  content: '';
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
}

/* ============================================================
   BENEFITS SECTION
   ============================================================ */
.benefits-section {
  background: var(--white);
  padding: 80px 64px;
}

.benefit-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 56px;
}

.benefit-card {
  padding: 40px 40px 48px;
  position: relative;
  overflow: hidden;
}

.benefit-card--earn    { background: var(--orange); color: var(--white); }
.benefit-card--utility { background: var(--dark);   color: var(--white); }

.benefit-card h3 {
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  font-weight: 700;
  margin-bottom: 14px;
  line-height: 1.2;
  max-width: 280px;
}

.benefit-card p {
  font-size: .925rem;
  line-height: 1.7;
  opacity: .88;
  max-width: 360px;
}

.benefit-card-icon {
  position: absolute;
  right: 32px;
  top: 32px;
  width: 52px; height: 52px;
  border-radius: 10px;
  background: rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.reasons-section { }

.reasons-section > h2 {
  font-size: clamp(1.3rem, 2vw, 1.9rem);
  font-weight: 700;
  color: var(--dark);
  text-align: center;
  margin-bottom: 28px;
  letter-spacing: -.3px;
}

.reasons-card {
  background: var(--light);
  padding: 48px 48px 48px 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.reasons-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  flex: 1;
}

.reasons-stat h3 {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -1.5px;
  line-height: 1;
  margin-bottom: 6px;
}

.reasons-stat p {
  font-size: .82rem;
  color: var(--gray-2);
  line-height: 1.45;
}

/* ============================================================
   SPECS + TOUR VIDEOS
   ============================================================ */
.specs-section {
  background: var(--white);
  padding: 80px 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.specs-card {
  background: var(--light);
  border-radius: 16px;
  padding: 44px;
}

.specs-card h3 {
  font-size: .88rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 32px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 40px;
  row-gap: 0;
}

.spec-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid var(--gray-5);
}

.spec-row svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--dark);
}

.spec-row span {
  font-size: .875rem;
  font-weight: 500;
  color: var(--dark);
  line-height: 1.3;
}

/* Show-more toggle — desktop: hidden */
.specs-toggle-btn { display: none; }

.tour-section h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
  letter-spacing: -.3px;
}

.video-row {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.video-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: #1a1e24;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
}

.video-thumb {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.video-thumb--1 { background: linear-gradient(135deg, #c8c4b8 0%, #e8e4d8 100%); opacity: .55; }
.video-thumb--2 { background: linear-gradient(135deg, #b0bec5 0%, #cfd8dc 100%); opacity: .55; }

.video-play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 52px; height: 52px;
  background: rgba(0,0,0,.55);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background .2s;
}

.video-embed:hover .video-play-btn { background: var(--orange); }

.video-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 10px 14px;
  font-size: .78rem;
  color: rgba(255,255,255,.85);
  font-weight: 500;
  background: linear-gradient(to top, rgba(0,0,0,.7) 0%, transparent 100%);
  z-index: 2;
}

/* ============================================================
   WHAT'S INCLUDED + DESIGNER EXTERIORS
   ============================================================ */
.included-section {
  background: var(--light);
  padding: 80px 64px;
}

.included-section > h2 {
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 40px;
  letter-spacing: -.4px;
}

.included-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 72px;
  row-gap: 0;
  margin-bottom: 72px;
}

.included-item {
  padding: 20px 0;
  border-bottom: 1px solid var(--gray-5);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.included-item svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--dark);
}

.included-item h4 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.included-item p {
  font-size: .855rem;
  color: var(--gray-2);
  line-height: 1.55;
}

.included-ctas {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.included-ctas .btn-orange,
.included-ctas .btn-outline-dark {
  margin-top: 0;
}

.exteriors-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-top: 64px;
}

.exteriors-text h2 {
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
  letter-spacing: -.4px;
}

.exteriors-text p {
  font-size: .925rem;
  color: var(--gray-2);
  line-height: 1.75;
  margin-bottom: 14px;
}

.exterior-render {
  height: 320px;
  background: linear-gradient(160deg, #d8e4ec 0%, #c8d8e4 100%);
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.render-house {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  width: 220px; height: 140px;
  background: linear-gradient(to bottom, #c8d4dc 0%, #b0c0cc 100%);
  clip-path: polygon(12% 55%, 12% 100%, 88% 100%, 88% 55%, 50% 18%);
}

.render-ground {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 36px;
  background: linear-gradient(to top, #b8c8b0 0%, #c8d8c0 100%);
}

/* ============================================================
   CONTACT FORM SECTION
   ============================================================ */
.contact-section {
  background: var(--white);
  padding: 80px 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.contact-render {
  height: 520px;
  background: linear-gradient(160deg, #dce8f0 0%, #c8d8e8 100%);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.render-3d-sky {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, #c8dce8 0%, #d8e8f0 60%, transparent 100%);
}

.render-3d-house {
  position: absolute;
  bottom: 72px;
  left: 50%;
  transform: translateX(-50%);
  width: 300px; height: 180px;
  background: linear-gradient(to bottom right, #c0ccd8 0%, #a8b8c8 50%, #98a8b8 100%);
  clip-path: polygon(8% 52%, 8% 100%, 92% 100%, 92% 52%, 50% 14%);
  filter: drop-shadow(0 8px 24px rgba(0,0,0,.15));
}

.render-3d-house::before {
  content: '';
  position: absolute;
  bottom: 0; left: 30%; right: 30%;
  height: 50%;
  background: rgba(255,255,255,.2);
}

.render-3d-ground {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to top, #a8b8a0 0%, #b8c8b0 100%);
}

.contact-form-wrap h2 {
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
  letter-spacing: -.3px;
}

.contact-form-wrap > p {
  font-size: .9rem;
  color: var(--gray-2);
  line-height: 1.65;
  margin-bottom: 28px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--gray-5);
  border-radius: 8px;
  font-family: var(--font);
  font-size: .9rem;
  color: var(--dark);
  background: var(--white);
  transition: border-color .2s;
  outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--gray-3); }

.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--gray-3); }

.contact-form textarea {
  height: 120px;
  resize: vertical;
}

.contact-form .btn-orange {
  display: block;
  width: 100%;
  padding: 15px;
  font-size: .95rem;
  text-align: center;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  font-weight: 700;
  letter-spacing: .2px;
}

/* ============================================================
   PRODUCT PAGE RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
  .floorplan-cards { gap: 16px; }
  .fp-prev { left: -16px; }
  .fp-next { right: -16px; }
}

@media (max-width: 1100px) {
  .alt-feature { grid-template-columns: 1fr; }
  .alt-feature--flip .af-text { order: 0; }
  .alt-feature:not(.alt-feature--flip) .af-photo { order: 1; }
  .af-photo { min-height: 300px; }
  .appliances-inner { grid-template-columns: 1fr; }
  .mini-slide { min-height: 300px; }
  .specs-section { grid-template-columns: 1fr; gap: 40px; }
  .contact-section { grid-template-columns: 1fr; gap: 40px; }
  .contact-render { height: 280px; order: 1; }
  .exteriors-section { grid-template-columns: 1fr; }
  .exterior-render { height: 240px; }
  .benefit-cards { grid-template-columns: 1fr; }
  .reasons-card { flex-direction: column; align-items: flex-start; gap: 32px; }
  .megadrop { min-width: 340px; }
}

@media (max-width: 900px) {
  .fp-prev { left: 4px; }
  .fp-next { right: 4px; }
  .included-grid { grid-template-columns: 1fr; }
  .reasons-stats { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .prod-hero-content { padding: 0 24px 48px; }
  .floorplans-section { padding: 48px 24px 40px; }
  .af-text { padding: 48px 24px; }
  .appliances-text { padding: 40px 24px; }
  .benefits-section { padding: 56px 24px; }
  .benefit-card { padding: 32px 28px 36px; }
  .specs-section { padding: 56px 24px; }
  .specs-card { padding: 28px 20px; overflow: hidden; }
  .specs-grid { grid-template-columns: 1fr; column-gap: 0; }
  .spec-row { padding: 12px 0; }
  .spec-row svg { width: 18px; height: 18px; }

  /* Collapsed: hide rows past 5th */
  .specs-grid.specs-collapsed .spec-row:nth-child(n+6) { display: none; }

  /* Show-more button */
  .specs-toggle-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    margin-top: 10px;
    padding: 11px 16px;
    background: none;
    border: 1.5px solid var(--gray-5);
    border-radius: 8px;
    font-family: var(--font);
    font-size: .875rem;
    font-weight: 600;
    color: var(--dark);
    cursor: pointer;
    transition: background .2s, border-color .2s;
  }
  .specs-toggle-btn:hover {
    background: var(--light);
    border-color: var(--gray-3);
  }
  .specs-toggle-btn svg {
    transition: transform .25s ease;
    flex-shrink: 0;
  }
  .specs-toggle-btn.expanded svg {
    transform: rotate(180deg);
  }
  .included-section { padding: 56px 24px; }

  .included-item {
    display: grid;
    grid-template-columns: 24px 1fr;
    column-gap: 14px;
    align-items: start;
  }
  .included-item svg {
    grid-row: 1 / 3;
    margin-top: 2px;
  }
  .included-item h4,
  .included-item p { grid-column: 2; }

  .included-ctas { gap: 12px; }
  .included-ctas .btn-outline-dark,
  .included-ctas .btn-orange {
    flex: 1;
    text-align: center;
    align-self: auto;
    padding: 12px 12px;
  }

  .exteriors-text { order: -1; }
  .contact-section { padding: 56px 24px; }
  .reasons-stats { grid-template-columns: 1fr; gap: 24px; }
  .form-row { grid-template-columns: 1fr; }
}

/* ============================================================
   PRODUCTS CATALOG PAGE  (products.html)
   ============================================================ */

/* ── Nav active state */
.nav-active { font-weight: 600; }

/* ── Hero */
.catalog-hero {
  padding: 80px 64px 72px;
  padding-top: calc(var(--total-top) + 64px);
  text-align: center;
  background: var(--white);
  border-bottom: 1px solid var(--gray-5);
}

.catalog-eyebrow {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--orange);
  margin-bottom: 18px;
}

.catalog-title {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 900;
  letter-spacing: -1.5px;
  line-height: 1.08;
  color: var(--dark);
  margin-bottom: 20px;
}

.catalog-sub {
  max-width: 540px;
  margin: 0 auto;
  font-size: .975rem;
  color: var(--gray-2);
  line-height: 1.75;
}

/* ── Grid section */
.catalog-section {
  padding: 48px 64px 80px;
  background: var(--light);
}

.catalog-search-wrap {
  position: relative;
  max-width: 460px;
  margin: 0 auto 40px;
}
.catalog-search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray-2);
  pointer-events: none;
}
.catalog-search {
  width: 100%;
  padding: 12px 40px 12px 42px;
  border: 1.5px solid var(--gray-5);
  border-radius: 10px;
  font-size: .95rem;
  background: var(--white);
  color: var(--dark);
  outline: none;
  box-sizing: border-box;
  transition: border-color .15s;
}
.catalog-search:focus { border-color: var(--orange); }
.catalog-search-clear {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 1.2rem;
  color: var(--gray-2);
  cursor: pointer;
  line-height: 1;
  padding: 2px 4px;
}
.catalog-search-clear:hover { color: var(--dark); }

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

/* ── Card */
.cat-card {
  background: var(--white);
  border-radius: 0;
  overflow: hidden;
  border: 1px solid var(--gray-5);
}

.cat-card-link {
  display: block;
  color: inherit;
}

/* ── Card image area */
.cat-card-img {
  height: 260px;
  position: relative;
  overflow: hidden;
}

.cat-card-img--casita { background: linear-gradient(155deg, #f0e6d0 0%, #e0caa8 100%); }
.cat-card-img--baby   { background: linear-gradient(155deg, #d8ecf8 0%, #aacce8 100%); }
.cat-card-img--dev    { background: linear-gradient(155deg, #daecd6 0%, #aacca4 100%); }
.cat-card-img--public { background: linear-gradient(155deg, #e8e8e8 0%, #c4c4c4 100%); }

/* ── Badge */
.cat-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: .66rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  padding: 5px 11px;
  border-radius: 20px;
  z-index: 2;
}

.cat-badge--popular    { background: var(--orange); color: var(--white); }
.cat-badge--new        { background: var(--dark);   color: var(--white); }
.cat-badge--commercial { background: var(--gray-2); color: var(--white); }

/* ── CSS house illustrations */
.cat-house {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.cat-house--casita {
  width: 200px; height: 130px;
  background: rgba(0,0,0,.12);
  clip-path: polygon(12% 45%, 12% 100%, 88% 100%, 88% 45%, 50% 14%);
  bottom: 32px;
}

.cat-house--baby {
  width: 140px; height: 100px;
  background: rgba(0,0,0,.12);
  clip-path: polygon(10% 42%, 10% 100%, 90% 100%, 90% 42%, 50% 12%);
  bottom: 28px;
}

.cat-house--pub {
  width: 220px; height: 120px;
  background: rgba(0,0,0,.11);
  clip-path: polygon(5% 48%, 5% 100%, 95% 100%, 95% 48%, 50% 16%);
  bottom: 32px;
}

/* Multi-unit: three houses side by side */
.cat-house--dev-a {
  width: 110px; height: 90px;
  background: rgba(0,0,0,.13);
  clip-path: polygon(10% 44%, 10% 100%, 90% 100%, 90% 44%, 50% 12%);
  left: 20%;
  bottom: 32px;
  transform: none;
}

.cat-house--dev-b {
  width: 130px; height: 108px;
  background: rgba(0,0,0,.10);
  clip-path: polygon(10% 44%, 10% 100%, 90% 100%, 90% 44%, 50% 12%);
  left: 50%;
  bottom: 32px;
  transform: translateX(-50%);
  z-index: 1;
}

.cat-house--dev-c {
  width: 110px; height: 90px;
  background: rgba(0,0,0,.13);
  clip-path: polygon(10% 44%, 10% 100%, 90% 100%, 90% 44%, 50% 12%);
  left: auto;
  right: 20%;
  bottom: 32px;
  transform: none;
}

/* ── Ground strip */
.cat-ground {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  height: 32px;
}

.cat-ground--casita { background: linear-gradient(to top, rgba(0,0,0,.08), transparent); }
.cat-ground--baby   { background: linear-gradient(to top, rgba(0,0,0,.07), transparent); }
.cat-ground--dev    { background: linear-gradient(to top, rgba(0,0,0,.08), transparent); }
.cat-ground--pub    { background: linear-gradient(to top, rgba(0,0,0,.07), transparent); }

/* ── Card body */
.cat-card-body {
  padding: 28px 28px 24px;
}

.cat-name {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -.4px;
  color: var(--dark);
  margin-bottom: 10px;
}

.cat-desc {
  font-size: .875rem;
  color: var(--gray-2);
  line-height: 1.65;
  margin-bottom: 0;
}

/* ── Feature list */
.cat-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 18px 0;
  padding: 16px 0;
  border-top: 1px solid var(--gray-5);
  border-bottom: 1px solid var(--gray-5);
}

.cat-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .825rem;
  color: var(--gray-1);
  padding: 7px 0;
}

.cat-features svg {
  width: 15px; height: 15px;
  color: var(--gray-3);
  flex-shrink: 0;
}

/* ── Card footer */
.cat-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cat-price {
  font-size: .875rem;
  color: var(--gray-2);
}

.cat-price strong {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--dark);
  margin-right: 1px;
}

.cat-price span { font-size: .8rem; }

.cat-price-orig {
  display: block;
  font-size: .78rem;
  font-weight: 400;
  color: var(--gray-3, #9ca3af);
  text-decoration: line-through;
  line-height: 1;
  margin-bottom: 2px;
}

.cat-price-tag {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .04em;
  padding: 2px 6px;
  border-radius: 20px;
  vertical-align: middle;
  margin-left: 4px;
}

.cat-cta {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: .825rem;
  font-weight: 600;
  color: var(--dark);
  transition: gap .2s;
}

.cat-card:hover .cat-cta { gap: 8px; }

/* ── Advisor CTA */
.catalog-advisor {
  padding: 80px 64px;
  text-align: center;
  background: var(--dark);
  color: var(--white);
}

.catalog-advisor-tag {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--orange);
  margin-bottom: 14px;
}

.catalog-advisor h2 {
  font-size: clamp(1.4rem, 2.8vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -.5px;
  margin-bottom: 12px;
}

.catalog-advisor p {
  color: rgba(255,255,255,.6);
  font-size: .95rem;
  margin-bottom: 32px;
}

/* ── Responsive */
@media (max-width: 900px) {
  .catalog-section { padding: 48px 24px 56px; }
  .catalog-grid { grid-template-columns: 1fr; max-width: 520px; margin-left: auto; margin-right: auto; }
}

@media (max-width: 768px) {
  .catalog-hero { padding: 52px 24px 52px; padding-top: calc(var(--total-top) + 40px); }
  .catalog-advisor { padding: 56px 24px; }
}

/* ============================================================
   GUIDES LISTING PAGE
   ============================================================ */
.guides-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.guide-card {
  background: var(--white);
  border: 1px solid var(--gray-5);
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s, transform .2s;
}

.guide-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  transform: translateY(-2px);
}

.guide-card-link {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 32px 28px;
  color: inherit;
  text-decoration: none;
}

.guide-card-tag {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}

.guide-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--dark);
  margin-bottom: 14px;
  letter-spacing: -.2px;
}

.guide-card-intro {
  font-size: .875rem;
  color: var(--gray-2);
  line-height: 1.75;
  flex: 1;
  margin-bottom: 24px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.guide-card-cta {
  font-size: .82rem;
  font-weight: 700;
  color: var(--orange);
  display: flex;
  align-items: center;
  gap: 6px;
}

@media (max-width: 1000px) {
  .guides-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .guides-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */

/* ── Hero */
.about-hero {
  padding: 96px 64px 80px;
  padding-top: calc(var(--total-top) + 72px);
  text-align: center;
  background: var(--dark);
  color: var(--white);
}
.about-hero-eyebrow {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--orange);
  margin-bottom: 20px;
}
.about-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 900;
  letter-spacing: -1.2px;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 20px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.about-hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,.7);
  line-height: 1.75;
  max-width: 520px;
  margin: 0 auto;
}

/* ── Stats */
.about-stats {
  padding: 72px 64px;
  background: var(--white);
  border-bottom: 1px solid var(--gray-5);
}
.about-stats-header {
  text-align: center;
  margin-bottom: 52px;
}
.about-stats-header h2 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -.5px;
  margin-bottom: 8px;
}
.about-stats-header p {
  font-size: .9rem;
  color: var(--gray-2);
}
.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
  border: 1px solid var(--gray-5);
}
.about-stat {
  padding: 32px 20px;
  text-align: center;
  border-right: 1px solid var(--gray-5);
}
.about-stat:last-child { border-right: none; }
.about-stat-number {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--dark);
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 8px;
}
.about-stat-number sup { font-size: 1rem; font-weight: 700; }
.about-stat-label {
  font-size: .8rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}
.about-stat-sub {
  font-size: .72rem;
  color: var(--gray-2);
}

/* ── Story */
.about-story {
  padding: 96px 64px;
  background: var(--light);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}
.about-story-text .eyebrow {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--orange);
  margin-bottom: 16px;
}
.about-story-text h2 {
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -.4px;
  line-height: 1.2;
  margin-bottom: 28px;
}
.about-story-text p {
  font-size: .925rem;
  color: var(--gray-2);
  line-height: 1.85;
  margin-bottom: 18px;
}
.about-photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 220px 220px;
  gap: 12px;
  position: sticky;
  top: 100px;
}
.about-photo {
  background: #d0d5dd;
  overflow: hidden;
}
.about-photo:first-child {
  grid-row: span 2;
}
.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Values */
.about-values {
  padding: 96px 64px;
  background: var(--white);
  text-align: center;
}
.about-values-header {
  margin-bottom: 56px;
}
.about-values-header .eyebrow {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--orange);
  margin-bottom: 12px;
}
.about-values-header h2 {
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -.4px;
}
.about-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.about-value-card {
  padding: 36px 28px;
  border: 1px solid var(--gray-5);
  text-align: left;
}
.about-value-icon {
  width: 44px;
  height: 44px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--white);
}
.about-value-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.about-value-card p {
  font-size: .85rem;
  color: var(--gray-2);
  line-height: 1.7;
}

/* ── Timeline */
.about-timeline {
  padding: 96px 64px;
  background: var(--dark);
  text-align: center;
}
.about-timeline-header {
  margin-bottom: 64px;
}
.about-timeline-header .eyebrow {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--orange);
  margin-bottom: 12px;
}
.about-timeline-header h2 {
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.4px;
}
.about-tl-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 1000px;
  margin: 0 auto;
}
.about-tl-item {
  padding: 36px 28px;
  text-align: left;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
}
.about-tl-year {
  font-size: 2rem;
  font-weight: 900;
  color: var(--orange);
  letter-spacing: -1px;
  margin-bottom: 8px;
}
.about-tl-item h3 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.about-tl-item p {
  font-size: .83rem;
  color: rgba(255,255,255,.55);
  line-height: 1.7;
}

/* ── Team */
.about-team {
  padding: 96px 64px;
  background: var(--light);
  text-align: center;
}
.about-team-header {
  margin-bottom: 56px;
}
.about-team-header .eyebrow {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--orange);
  margin-bottom: 12px;
}
.about-team-header h2 {
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -.4px;
  margin-bottom: 12px;
}
.about-team-header p {
  font-size: .9rem;
  color: var(--gray-2);
}
.about-team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
.about-member {
  background: var(--white);
  border: 1px solid var(--gray-5);
  padding: 36px 28px;
  text-align: center;
}
.about-member-avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1a1e2e, #2d3748);
  margin: 0 auto 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
}
.about-member-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-member h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}
.about-member-role {
  font-size: .78rem;
  font-weight: 600;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}
.about-member p {
  font-size: .85rem;
  color: var(--gray-2);
  line-height: 1.7;
  margin-bottom: 16px;
}
.about-member-email {
  font-size: .78rem;
  color: var(--gray-3);
}

/* ── About responsive */
@media (max-width: 1100px) {
  .about-stats-grid { grid-template-columns: repeat(3, 1fr); }
  .about-stat:nth-child(3) { border-right: none; }
  .about-stat:nth-child(n+4) { border-top: 1px solid var(--gray-5); }
  .about-tl-items { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .about-story { grid-template-columns: 1fr; gap: 48px; padding: 64px 32px; }
  .about-photo-grid { position: static; }
  .about-values-grid { grid-template-columns: repeat(2, 1fr); }
  .about-team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .about-hero { padding: 64px 24px; padding-top: calc(var(--total-top) + 48px); }
  .about-stats { padding: 48px 24px; }
  .about-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .about-stat:nth-child(2) { border-right: none; }
  .about-stat:nth-child(3) { border-right: 1px solid var(--gray-5); }
  .about-stat:nth-child(4) { border-right: none; }
  .about-values { padding: 64px 24px; }
  .about-values-grid { grid-template-columns: 1fr; }
  .about-timeline { padding: 64px 24px; }
  .about-tl-items { grid-template-columns: 1fr; }
  .about-team { padding: 64px 24px; }
  .about-team-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════
   BLOG PAGE
═══════════════════════════════════════ */
.blog-intro {
  background: #fff;
  padding: 56px 48px;
  max-width: 860px;
  margin: 0 auto;
}
.blog-intro p {
  color: var(--gray-3);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 16px;
}
.blog-intro p:last-child { margin-bottom: 0; }

/* Featured */
.blog-featured {
  background: var(--gray-6);
  padding: 56px 48px;
}
.blog-featured-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.blog-featured-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.blog-featured-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 32px rgba(0,0,0,.08);
  text-decoration: none;
  color: inherit;
  transition: box-shadow .2s, transform .2s;
}
.blog-featured-card:hover {
  box-shadow: 0 8px 48px rgba(0,0,0,.14);
  transform: translateY(-2px);
}
.blog-featured-img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  display: block;
}
.blog-featured-body {
  padding: 40px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}
.blog-featured-cat {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(0,87,255,.08);
  padding: 4px 10px;
  border-radius: 20px;
  align-self: flex-start;
}
.blog-featured-body h2 {
  font-size: 1.55rem;
  font-weight: 800;
  line-height: 1.3;
  color: var(--dark);
}
.blog-featured-body p {
  color: var(--gray-3);
  font-size: 0.97rem;
  line-height: 1.65;
}
.blog-featured-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.82rem;
  color: var(--gray-4);
}
.blog-featured-meta span { display: flex; align-items: center; gap: 5px; }
.blog-featured-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--accent);
  margin-top: 4px;
}

/* Articles section */
.blog-section {
  padding: 56px 48px 80px;
  max-width: 1296px;
  margin: 0 auto;
}
.blog-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  gap: 16px;
  flex-wrap: wrap;
}
.blog-section-header h2 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--dark);
}
.blog-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.blog-filter-btn {
  border: 1.5px solid var(--gray-5);
  background: #fff;
  color: var(--gray-3);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 20px;
  cursor: pointer;
  transition: border-color .15s, background .15s, color .15s;
  white-space: nowrap;
}
.blog-filter-btn:hover,
.blog-filter-btn.active {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}

/* Grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,.06);
  transition: box-shadow .2s, transform .2s;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  box-shadow: 0 6px 32px rgba(0,0,0,.12);
  transform: translateY(-3px);
}
.blog-card-link {
  display: flex;
  flex-direction: column;
  flex: 1;
  text-decoration: none;
  color: inherit;
}
.blog-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}
.blog-card-body {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 8px;
}
.blog-card-cat {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
}
.blog-card-title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--dark);
}
.blog-card-excerpt {
  font-size: 0.85rem;
  color: var(--gray-3);
  line-height: 1.6;
  flex: 1;
}
.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--gray-6);
  font-size: 0.78rem;
  color: var(--gray-4);
}
.blog-card-footer span { display: flex; align-items: center; gap: 4px; }
.blog-card-read {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 4px;
}

@media (max-width: 1100px) {
  .blog-featured-card { grid-template-columns: 1fr; }
  .blog-featured-img { min-height: 260px; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .blog-featured { padding: 40px 24px; }
  .blog-section { padding: 40px 24px 64px; }
  .blog-intro { padding: 40px 24px; }
}
@media (max-width: 640px) {
  .blog-featured-body { padding: 28px 24px; }
  .blog-featured-body h2 { font-size: 1.2rem; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-section-header { flex-direction: column; align-items: flex-start; }
}

/* ═══════════════════════════════════════
   POST DETAIL PAGE
═══════════════════════════════════════ */
.post-hero {
  background: var(--dark);
  padding: 80px 48px 56px;
  padding-top: calc(var(--total-top) + 56px);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.post-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .18;
}
.post-hero-inner {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
}
.post-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .8rem;
  color: rgba(255,255,255,.55);
  margin-bottom: 20px;
}
.post-breadcrumb a { color: inherit; text-decoration: none; }
.post-breadcrumb a:hover { color: #fff; }
.post-hero-cat {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(255,107,0,.12);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.post-hero h1 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 20px;
}
.post-hero-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: .83rem;
  color: rgba(255,255,255,.6);
  flex-wrap: wrap;
}
.post-hero-meta span { display: flex; align-items: center; gap: 6px; }
.post-author-name { color: rgba(255,255,255,.9); font-weight: 600; }

/* ── Body layout ── */
.post-body {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 56px 48px 80px;
}
.post-article { min-width: 0; }

/* ── Content blocks ── */
.post-section { margin-bottom: 44px; }
.post-section h2 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gray-6);
}
.post-section h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin: 18px 0 8px;
}
.post-section p {
  color: var(--gray-2);
  font-size: .97rem;
  line-height: 1.75;
  margin-bottom: 12px;
}
.post-section ul, .post-section ol {
  padding-left: 1.4em;
  margin-bottom: 14px;
}
.post-section li {
  color: var(--gray-2);
  font-size: .95rem;
  line-height: 1.7;
  margin-bottom: 5px;
}

/* ── Tables ── */
.post-table-wrap { overflow-x: auto; margin: 16px 0 24px; }
.post-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .88rem;
}
.post-table th {
  background: var(--dark);
  color: #fff;
  padding: 10px 14px;
  text-align: left;
  font-weight: 600;
  white-space: nowrap;
}
.post-table td {
  padding: 9px 14px;
  border-bottom: 1px solid var(--gray-6);
  color: var(--gray-2);
}
.post-table tr:nth-child(even) td { background: #fafafa; }
.post-table tr:last-child td { font-weight: 700; color: var(--dark); }

/* ── FAQ ── */
.post-faq { margin-top: 48px; }
.post-faq h2 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 20px;
}
.post-faq-item {
  border: 1px solid var(--gray-6);
  border-radius: 10px;
  margin-bottom: 10px;
  overflow: hidden;
}
.post-faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 16px 20px;
  font-size: .95rem;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.post-faq-q:hover { background: #fafafa; }
.post-faq-q svg { flex-shrink: 0; transition: transform .2s; }
.post-faq-item.open .post-faq-q svg { transform: rotate(180deg); }
.post-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.post-faq-item.open .post-faq-a { max-height: 500px; }
.post-faq-a p {
  padding: 0 20px 18px;
  font-size: .9rem;
  color: var(--gray-2);
  line-height: 1.7;
  margin: 0;
}

/* ── Tags ── */
.post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-6);
}
.post-tag {
  font-size: .75rem;
  color: var(--gray-3);
  background: var(--gray-6);
  padding: 4px 10px;
  border-radius: 12px;
}

/* ── Sidebar ── */
.post-sidebar { position: sticky; top: calc(var(--total-top) + 24px); align-self: start; }
.post-sidebar-block {
  background: #fff;
  border: 1px solid var(--gray-6);
  border-radius: 14px;
  padding: 22px;
  margin-bottom: 20px;
}
.post-sidebar-block h3 {
  font-size: .9rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 14px;
}
.post-related-link {
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-6);
  text-decoration: none;
  font-size: .85rem;
  color: var(--gray-2);
  line-height: 1.4;
}
.post-related-link:last-child { border-bottom: none; }
.post-related-link:hover { color: var(--accent); }
.post-related-cat {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--accent);
  display: block;
  margin-bottom: 3px;
}
.post-sidebar-cta {
  background: var(--dark);
  color: #fff;
  border-radius: 14px;
  padding: 24px;
}
.post-sidebar-cta h3 { color: #fff; margin-bottom: 10px; }
.post-sidebar-cta p { font-size: .85rem; color: rgba(255,255,255,.65); line-height: 1.5; margin-bottom: 16px; }
.post-sidebar-cta a {
  display: block;
  background: var(--orange);
  color: #fff;
  text-align: center;
  padding: 12px;
  border-radius: 8px;
  font-weight: 700;
  font-size: .88rem;
  text-decoration: none;
}

@media (max-width: 1024px) {
  .post-body { grid-template-columns: 1fr; gap: 32px; padding: 40px 32px 64px; }
  .post-sidebar { position: static; }
}
@media (max-width: 640px) {
  .post-hero { padding: 56px 24px 40px; padding-top: calc(var(--total-top) + 40px); }
  .post-body { padding: 32px 20px 56px; }
}

/* ── Homepage FAQ ───────────────────────────────────────────── */
.home-faq {
  background: #f9f9f9;
  padding: 80px 24px;
}
.home-faq-inner {
  max-width: 760px;
  margin: 0 auto;
}
.home-faq-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 40px;
  text-align: center;
}
.faq-list .faq-item {
  border-bottom: 1px solid #e5e5e5;
}
.faq-list .faq-item:first-child {
  border-top: 1px solid #e5e5e5;
}
.faq-list .faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  text-align: left;
  font-family: var(--font);
  font-size: .97rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.4;
  transition: color .15s;
}
.faq-list .faq-question:hover { color: var(--orange); }
.faq-list .faq-chevron {
  flex-shrink: 0;
  transition: transform .25s ease;
  color: #888;
}
.faq-list .faq-answer {
  display: none;
  padding: 0 0 20px;
}
.faq-list .faq-answer p {
  font-size: .93rem;
  color: #555;
  line-height: 1.75;
}
.faq-list .faq-item.open .faq-answer { display: block; }
.faq-list .faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-list .faq-item.open .faq-question { color: var(--orange); }

/* ── Shared phone strip ─────────────────────────────────────────── */
.phone-strip-anchor { position:relative; width:110px; flex-shrink:0; height:44px; }
.phone-strip { display:flex; flex-direction:column; overflow:hidden; max-height:44px; width:110px; border:1.5px solid #ddd; padding:0; cursor:pointer; background:#fff; position:absolute; top:0; left:0; z-index:5; }
.phone-strip .pcs-btn:not(.active) { display:none; }
.phone-strip .pcs-btn.active::after { content:''; display:inline-block; width:0; height:0; border-left:5px solid transparent; border-right:5px solid transparent; border-top:6px solid #111; margin-left:8px; vertical-align:middle; flex-shrink:0; }
.phone-strip.open { max-height:220px; overflow-y:auto; box-shadow:0 4px 14px rgba(0,0,0,.13); }
.phone-strip.open .pcs-btn { display:block; }
.phone-strip.open .pcs-btn.active::after { content:''; }
.pcs-btn { padding:10px 10px; border:none; border-bottom:1px solid #f0f0f0; background:#fff; font-family:var(--font,'Inter',sans-serif); font-size:.85rem; cursor:pointer; white-space:nowrap; transition:background .12s; color:#333; text-align:left; width:100%; box-sizing:border-box; display:flex; align-items:center; }
.phone-strip .pcs-btn.active { justify-content:space-between; }
.pcs-btn:last-child { border-bottom:none; }
.pcs-btn:hover { background:#f7f7f7; }
.pcs-btn.active { background:rgba(245,98,15,.06); font-weight:700; color:var(--dark); }
.phone-field-wrap { display:flex; gap:0; align-items:flex-start; }
.phone-number-input { flex:1; padding:12px 14px; border:1.5px solid #ddd; border-left:none; font-family:var(--font,'Inter',sans-serif); font-size:.92rem; outline:none; transition:border-color .2s; color:var(--dark); min-width:0; }
.phone-number-input:focus { border-color: var(--dark); }
.form-err { display:none; font-size:.75rem; color:#e53e3e; margin-top:3px; }
@media(max-width:480px) {
  .phone-strip-anchor { width:90px; }
  .phone-strip { width:90px; }
  .pcs-btn { font-size:.8rem; padding:10px 8px; }
}

/* ============================================================
   PRODUCT PAGE — FAQ ACCORDION
   ============================================================ */
.prod-faq-section {
  padding: 72px 24px;
  background: #F8F6F3;
}
.prod-faq-inner {
  max-width: 760px;
  margin: 0 auto;
}
.prod-faq-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--dark);
  margin: 0 0 36px;
  letter-spacing: -.3px;
}
.prod-faq-item {
  border-bottom: 1px solid #e2ddd8;
}
.prod-faq-item:first-child {
  border-top: 1px solid #e2ddd8;
}
.prod-faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--font, 'Inter', sans-serif);
  font-size: .97rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.4;
  transition: color .15s;
}
.prod-faq-q:hover { color: var(--orange); }
.prod-faq-icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1.5px solid #bbb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1;
  color: #888;
  transition: transform .25s ease, border-color .15s, color .15s;
}
.prod-faq-q[aria-expanded="true"] .prod-faq-icon {
  transform: rotate(45deg);
  border-color: var(--orange);
  color: var(--orange);
}
.prod-faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height .3s ease, padding .3s ease;
  padding: 0;
}
.prod-faq-a.open {
  max-height: 600px;
  padding-bottom: 20px;
}
.prod-faq-a p {
  margin: 0;
  font-size: .93rem;
  color: #555;
  line-height: 1.75;
}
@media (max-width: 640px) {
  .prod-faq-section { padding: 48px 16px; }
  .prod-faq-q { font-size: .9rem; padding: 16px 0; }
}

/* ── Catalog pagination ─────────────────────────────── */
.catalog-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 32px 24px 16px;
  flex-wrap: wrap;
}
.cat-pg-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 6px;
  border: 1.5px solid #e2ddd8;
  border-radius: 8px;
  background: #fff;
  color: #333;
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color .15s, background .15s, color .15s;
}
.cat-pg-btn:hover:not(.active):not(.disabled) {
  border-color: var(--orange);
  color: var(--orange);
}
.cat-pg-btn.active {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}
.cat-pg-btn.disabled {
  opacity: .35;
  cursor: default;
}
.cat-pg-ellipsis {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 40px;
  color: #aaa;
  font-size: .9rem;
  user-select: none;
}

/* ─── Lightbox ──────────────────────────────────────── */
[data-lb] { cursor: zoom-in; }

.lb-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 20, 0.68);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 52px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}
.lb-backdrop.lb-open {
  opacity: 1;
  pointer-events: auto;
}
.lb-panel {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.60),
    0 0 0 1px rgba(255, 255, 255, 0.08);
  transform: scale(0.88) translateY(12px);
  transition: transform 0.32s cubic-bezier(0.22, 1.4, 0.36, 1);
  max-width: min(88vw, 1200px);
  max-height: calc(100vh - 104px);
  background: #0e0e12;
  cursor: zoom-out;
}
.lb-backdrop.lb-open .lb-panel {
  transform: scale(1) translateY(0);
}
.lb-panel img {
  display: block;
  max-width: 100%;
  max-height: calc(100vh - 104px);
  width: auto;
  height: auto;
  object-fit: contain;
}
.lb-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.52);
  border: 1px solid rgba(255, 255, 255, 0.20);
  color: #fff;
  font-size: 16px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1;
  transition: background 0.15s, transform 0.15s;
}
.lb-close:hover {
  background: rgba(0, 0, 0, 0.85);
  transform: scale(1.12);
}
@media (max-width: 600px) {
  .lb-backdrop { padding: 20px; }
  .lb-panel { border-radius: 10px; }
}

/* ─── Lightbox carousel controls ───────────────────── */
.lb-panel img { transition: opacity 0.14s ease; }

.lb-prev,
.lb-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.52);
  border: 1px solid rgba(255, 255, 255, 0.20);
  color: #fff;
  font-size: 26px;
  line-height: 1;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition: background 0.15s, transform 0.15s;
  padding: 0;
}
.lb-prev { left: 14px; }
.lb-next { right: 14px; }
.lb-is-carousel .lb-prev,
.lb-is-carousel .lb-next { display: flex; }
.lb-prev:hover { background: rgba(0,0,0,.88); transform: translateY(-50%) scale(1.1); }
.lb-next:hover { background: rgba(0,0,0,.88); transform: translateY(-50%) scale(1.1); }

.lb-footer {
  position: absolute;
  bottom: 14px;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  pointer-events: none;
}
.lb-counter {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 500;
  letter-spacing: 0.05em;
  display: none;
}
.lb-is-carousel .lb-counter { display: block; }

.lb-dots { display: flex; gap: 6px; }
.lb-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.38);
  transition: background 0.2s;
}
.lb-dot--on { background: #fff; }

/* ============================================================
   WHATSAPP STICKY BUTTON
   ============================================================ */
.sticky-btn--whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  border: none;
  flex-shrink: 0;
  transition: background .2s, transform .15s;
  text-decoration: none;
}
.sticky-btn--whatsapp:hover {
  background: #1ebe5d;
  transform: scale(1.08);
}
