/* ================================================================
   BELL VITA — style.css
   Sky Glass Luxury Palette | Cormorant Garamond + Jost
   Clean rewrite — no duplicates, no dead code
   ================================================================ */

/* ─── VARIABLES ──────────────────────────────────────────────── */
:root {
  /* Sky Glass Luxury Palette */
  --cream:        #F7F9FB;
  --linen:        #EAF4FF;
  --sand:         #BFDFFF;
  --stone:        #6FAFEA;
  --bark:         #4a7ab0;
  --charcoal:     #2F5D8C;
  --white:        #ffffff;

  /* Accent scale */
  --gold:         #6FAFEA;
  --gold-dark:    #2F5D8C;
  --gold-light:   #BFDFFF;
  --gold-pale:    #EAF4FF;

  /* Layout */
  --nav-h:        72px;

  /* Motion */
  --ease:         cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --fast:         0.25s;
  --mid:          0.45s;

  /* Shadow */
  --shadow:       0 8px 32px rgba(47, 93, 140, 0.10);

  /* Alias */
  --blush-soft:   #EAF4FF;   /* used by legal pages */
}

/* ─── RESET ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html  { scroll-behavior: smooth; }
body  {
  font-family: "Jost", "Inter", sans-serif;
  background: var(--cream);
  color: white;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  font-weight: 300;
}
img { display: block; max-width: 100%; }
a   { text-decoration: none; color: inherit; }
h1, h2, h3, h4, .section-title {
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

/* ─── EYEBROW + SECTION RULE ─────────────────────────────────── */
.eyebrow {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dark);
  display: block;
}
.section-title { font-size: clamp(2rem, 4vw, 3rem); margin-top: 0.6rem; 
    color: var(--charcoal); }
.section-subtitle { font-size: 0.9rem; color: var(--bark); line-height: 1.85; margin-top: 1.2rem; max-width: 560px; margin-left: auto; margin-right: auto; }
.section-rule { width: 40px; height: 1px; background: var(--gold); margin: 1.1rem auto 0; display: block; }

/* ─── NAVBAR ─────────────────────────────────────────────────── */
.navbar {
  display: grid !important;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 2.5rem !important;
  height: var(--nav-h);
  background: transparent !important;
  transition: background var(--mid) var(--ease), box-shadow var(--mid) var(--ease);
  position: fixed !important;
  top: 0; left: 0; right: 0;
  z-index: 1030;
}
.navbar.scrolled,
.navbar.nav-solid {
  background: rgba(247,249,251,0.97) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 24px rgba(47,93,140,0.08) !important;
}
.nav-group { display: flex; align-items: center; gap: 2rem; }
.nav-group--right { justify-content: flex-end; }

.bv-nav-link {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-align: center;
  text-transform: uppercase;
  font-weight: 400;
  color: rgba(255,255,255,0.82);
  transition: color var(--fast) var(--ease);
}
.bv-nav-link p{
  margin-top: auto !important;
}
.bv-nav-link:hover, .bv-nav-link.active { color: rgba(255,255,255,1); }
.navbar.scrolled .bv-nav-link,
.navbar.nav-solid .bv-nav-link { color: var(--bark); }
.navbar.scrolled .bv-nav-link:hover,
.navbar.nav-solid .bv-nav-link:hover,
.navbar.scrolled .bv-nav-link.active,
.navbar.nav-solid .bv-nav-link.active { color: var(--charcoal); }

/* Dropdown */
.bv-dropdown { position: relative; cursor: pointer; }
.bv-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--sand);
  box-shadow: var(--shadow);
  min-width: 180px;
  padding: 0.5rem 0;
  z-index: 200;
}
.bv-dropdown.open .bv-dropdown-menu { display: block; }
.bv-dropdown-menu a {
  display: block;
  padding: 0.65rem 1.2rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bark);
  transition: background var(--fast), color var(--fast);
}
.bv-dropdown-menu a:hover { background: var(--linen); color: var(--charcoal); }


/* Logo */
.nav-logo { display: flex; align-items: center; justify-content: center; }
.nav-logo img {
  height: 70px; width: 200px;
  filter: drop-shadow(0px 1px 1px rgb(49, 99, 148));
  transition: filter var(--mid) var(--ease);
}
.navbar.scrolled .nav-logo img,
.navbar.nav-solid .nav-logo img { filter:drop-shadow(0px 1px 1px rgb(26, 54, 82));; }

/* CTA button */
.nav-cta {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 8px 18px;
  border: 1px solid rgba(255,255,255,0.5);
  color: rgba(255,255,255,0.9);
  font-weight: 400;
  transition: all var(--fast) var(--ease);
  white-space: nowrap;
}
.nav-cta:hover { background: rgba(255,255,255,0.12); }
.navbar.scrolled .nav-cta,
.navbar.nav-solid .nav-cta {
  border-color: var(--gold);
  color: var(--gold-dark);
}
.navbar.scrolled .nav-cta:hover,
.navbar.nav-solid .nav-cta:hover {
  background: var(--gold);
  color: var(--white);
}

/* Burger */
.bv-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.bv-burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: rgba(255,255,255,0.9);
  transition: background var(--fast);
}
.navbar.scrolled .bv-burger span,
.navbar.nav-solid .bv-burger span { background: var(--charcoal); }

/* Mobile fullscreen menu */
.bv-mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--charcoal);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 3rem 2.5rem;
  gap: 2rem;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
}
.bv-mobile-menu.open { transform: translateX(0); }
.bv-mobile-menu a {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 300;
  color: var(--linen);
  letter-spacing: 0.06em;
  transition: color var(--fast);
}
.bv-mobile-menu a:hover { color: var(--gold-light); }
.bv-mobile-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: rgba(255,255,255,0.5);
  font-size: 1.4rem;
  cursor: pointer;
  transition: color var(--fast);
}
.bv-mobile-close:hover { color: var(--white); }

/* Responsive navbar */
@media (max-width: 991px) {
  .navbar { padding: 0 1.5rem !important; }
  .bv-nav-link { display: none !important; }
  .nav-group--right > .bv-nav-link{ display: none; }
  .nav-group--right > .nav-cta { display: none; }
  .bv-burger { display: flex; }
}

/* ─── HERO ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-slider { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s var(--ease);
  will-change: opacity;
}
.hero-slide.active { opacity: 1; }

.hero-slider-dots {
  position: absolute; bottom: 2.5rem; right: 3rem;
  z-index: 4; display: flex; gap: 8px; align-items: center;
}
.hero-dot {
  width: 28px; height: 2px;
  background: rgba(255,255,255,0.3);
  border: none; cursor: pointer; padding: 0;
  transition: background var(--mid) var(--ease), width var(--mid) var(--ease);
}
.hero-dot.active { background: var(--gold); width: 44px; }

.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg, rgba(47,93,140,0.55) 0%, rgba(47,93,140,0.15) 60%, transparent 100%);
}
.hero-content {
  position: relative; z-index: 2;
  padding: 0 4rem 4rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: 100%;
}
.hero-headline {
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  color: var(--white);
  font-weight: 300;
  line-height: 1.05;
  max-width: 640px;
}
.hero-headline em { font-style: italic; color: var(--gold-light); }
.hero-meta { text-align: right; flex-shrink: 0; }
.hero-meta p {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1.5rem;
}

.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%); z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.hero-scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.4));
  animation: scrollPulse 2s infinite;
}
.hero-scroll span { font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.4); }
@keyframes scrollPulse { 0%,100%{opacity:.4} 50%{opacity:1} }

@media (max-width: 768px) {
  .hero-content { flex-direction: column; align-items: flex-start; padding: 0 1.5rem 5rem; gap: 2rem; }
  .hero-meta { text-align: left; }
  .hero-slider-dots { right: 1.5rem; bottom: 2rem; }
}

/* ─── TRUST BAR ──────────────────────────────────────────────── */
.trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: var(--charcoal);
  padding: 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2rem;
  border-right: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.65);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.trust-item:last-child { border-right: none; }
.trust-item i { color: var(--gold-light); font-size: 1rem; }
@media (max-width: 768px) {
  .trust-bar { flex-wrap: wrap; }
  .trust-item { flex: 1 1 50%; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); justify-content: center; }
}

/* ─── BUTTONS ─────────────────────────────────────────────────── */
.btn-accent {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 12px 28px;
  border: 1px solid var(--gold);
  transition: background var(--fast), border-color var(--fast), color var(--fast);
}
.btn-accent:hover { background: var(--gold-dark); border-color: var(--gold-dark); color: var(--white); }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--gold-dark);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 12px 28px;
  border: 1px solid var(--gold);
  transition: background var(--fast), color var(--fast);
}
.btn-outline:hover { background: var(--gold); color: var(--white); }

.btn-outline-light-bv {
  display: inline-block;
  background: transparent;
  color: rgba(255,255,255,0.88);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 12px 28px;
  border: 1px solid rgba(255,255,255,0.45);
  transition: background var(--fast), color var(--fast), border-color var(--fast);
}
.btn-outline-light-bv:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.85); }

.btn-submit {
  width: 100%;
  background: var(--charcoal);
  color: var(--white);
  font-family: "Jost", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 14px 32px;
  border: none;
  cursor: pointer;
  transition: background var(--fast);
  margin-top: 0.5rem;
}
.btn-submit:hover { background: var(--gold-dark); }

/* ─── PRODUCT SECTION ────────────────────────────────────────── */
.product-section { padding: 5rem 0; background: var(--cream); }
.product-section--alt { background: var(--linen); }

.product-section-head {
  text-align: center;
  padding: 0 2rem 3.5rem;
  max-width: 720px;
  margin: 0 auto;
}
.product-section-head .section-title { font-size: clamp(2.2rem, 4vw, 3.2rem); color: var(--charcoal); }
.product-section-cta { text-align: center; padding-top: 3rem; }

/* Product card grid */
.product-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  grid-template-rows: 380px 380px;
  gap: 1px;
  background: var(--sand);
  max-width: 1400px;
  margin: 0 auto;
}
.product-grid .card-large { grid-column: 1; grid-row: 1 / 3; }

.product-card-overlay {
  position: relative;
  overflow: hidden;
  background: var(--charcoal);
  cursor: pointer;
}
.product-card-overlay.large { max-height: none; }
.product-img-overlay {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.65s var(--ease);
  will-change: transform;
}
.product-card-overlay:hover .product-img-overlay { transform: scale(1.04); }

.card-label {
  position: absolute; inset: auto 0 0 0;
  background: linear-gradient(transparent, rgba(47,93,140,0.86) 30%, rgba(47,93,140,0.97) 100%);
  padding: 3rem 2rem 2rem;
  transform: translateY(100%);
  transition: transform 0.5s var(--ease);
}
.product-card-overlay:hover .card-label { transform: translateY(0); }

.card-label-eyebrow {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  display: block;
  margin-bottom: 0.5rem;
}
.card-label-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 300;
  color: var(--white);
  margin: 0 0 0.8rem;
}
.card-label-title--sm { font-size: clamp(1.1rem, 2vw, 1.4rem); }
.card-label-desc {
  font-size: 0.82rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.7);
  margin-bottom: 1.2rem;
  opacity: 0;
  transition: opacity 0.3s var(--ease) 0.1s;
}
.product-card-overlay:hover .card-label-desc { opacity: 1; }
.card-label-cta {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.card-label-cta i { transition: transform var(--fast) var(--ease); }
.card-label-cta:hover i { transform: translateX(4px); }

/* Card overlay center (on hover, for windows page) */
.card-overlay-center {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 2rem;
  background: rgba(47,93,140,0.72);
  opacity: 0;
  transition: opacity var(--mid) var(--ease);
  color: var(--white); text-align: center;
}
.product-card-overlay:hover .card-overlay-center { opacity: 1; }

@media (max-width: 1100px) {
  .product-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .product-grid .card-large { grid-column: auto; grid-row: auto; min-height: 500px; }
  .card-label {            
        transform: translateY(-0%);
        text-align: center;
        width: 100%;
        height: 100% !important;

         background: linear-gradient(transparent, rgba(47,93,140,0.86) 30%, rgba(47,93,140,0.97) 80%, transparent 100%);
        color: white;
    }
    .card-label-eyebrowñ{
      font-size: 1.2em;
    }
    .card-label-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8em;
  font-weight: 500;
  color: var(--white);
  margin: 0 0 0.8rem;
}
.card-label-title--sm {   font-size: 1.5em;
  font-weight: 300;; }
  .card-label-desc { opacity: 1;   font-size: 1.2em !important;}
  .product-card-overlay:hover .card-label { transform: translateY(-0%); }
}
@media (max-width: 768px) {
  .product-section { padding: 4rem 0; }
  .product-grid { grid-template-rows: 380px 340px 340px; }
}

/* ─── WHY SECTION ─────────────────────────────────────────────── */
.why-section { padding: 5rem 2rem; background: var(--linen); }
.why-inner { max-width: 1100px; margin: 0 auto; }
.why-head { text-align: center; margin-bottom: 3.5rem; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.why-card { text-align: center; padding: 2rem 1rem; }
.why-icon {
  font-size: 2rem;
  color: var(--gold);
  display: block;
  margin: 0 auto 1rem;
}
.why-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 0.8rem;
  color: var(--charcoal);
}
.why-card p { font-size: 0.85rem; line-height: 1.8; color: var(--bark); }
@media (max-width: 900px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .why-grid { grid-template-columns: 1fr; } }

/* ─── NUMBERS STRIP ───────────────────────────────────────────── */
.numbers-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--charcoal);
  padding: 3.5rem 2rem;
  text-align: center;
  gap: 2rem;
}
.number-val {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  color: var(--gold-light);
  font-weight: 300;
  line-height: 1;
}
.number-val sup { font-size: 1rem; }
.number-label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stone);
  margin-top: 0.4rem;
}
.number-rule { width: 24px; height: 1px; background: var(--bark); margin: 1rem auto 0; }
@media (max-width: 768px) { .numbers-strip { grid-template-columns: repeat(2, 1fr); } }

/* ─── ABOUT STRIP ─────────────────────────────────────────────── */
.about-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--charcoal);
  min-height: 500px;
}
.about-strip-img { position: relative; overflow: hidden; }
.about-strip-img::before {
  content: "";
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to right, rgba(47,93,140,0.3), transparent);
}
.about-strip-img img { width: 100%; height: 100%; object-fit: cover; }
.about-strip-text {
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}
.about-strip-text .section-title { color: var(--linen); font-size: clamp(2rem,3vw,2.8rem); margin-top: 0.7rem; }
.about-strip-text p { font-size: 0.9rem; line-height: 1.9; color: rgba(234,244,255,0.6); margin-top: 1.2rem; }
.about-strip-text .eyebrow { color: var(--gold-light); }
.about-strip-text .section-rule { background: var(--gold-light); margin: 0; }
.about-strip-text .btn-outline {
  margin-top: 2rem; align-self: flex-start;
  border-color: rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.7);
}
.about-strip-text .btn-outline:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }
@media (max-width: 1024px) { .about-strip { grid-template-columns: 1fr; } }
@media (max-width: 768px)  { .about-strip-text { padding: 3rem 1.5rem; } }

/* ─── MAP SECTION ─────────────────────────────────────────────── */
.map-section { background: var(--linen); padding: 5rem 2rem; }
.map-section-inner { display: grid; grid-template-columns: 1fr 1.6fr; gap: 4rem; align-items: center; max-width: 1200px; margin: 0 auto; }

.map-section-text .section-title { color: var(--charcoal); text-align: left; font-size: clamp(1.8rem,3vw,2.6rem); margin-top: 0.5rem; }
.map-section-text .section-rule { margin: 1rem 0 1.5rem; }
.map-section-text p { font-size: 0.88rem; line-height: 1.9; color: var(--bark); }
.map-svg-wrap { position: relative; }
.map-svg-wrap img:first-child { width: 100%; opacity: 0.85; }


/* Map pulsing dots */
.map-dot {
  position: absolute;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold-light);
  animation: mapPulse 2.4s ease-in-out infinite;
}
.map-dot-m { position: absolute; 
  width: auto; 
  height: 10%; 
  background: none; 
  animation: none; }

@keyframes mapPulse {
  0%  { box-shadow: 0 0 0 0   rgba(111,175,234,0.7); }
  70% { box-shadow: 0 0 0 14px rgba(111,175,234,0); }
  100%{ box-shadow: 0 0 0 0   rgba(111,175,234,0); }
}

/* Dot positions (approximate world map regions) */
.map-dot--1  { top: 40%; left: 21%; }
.map-dot--2  { top: 35%; left: 26%; }
.map-dot--3  { top: 73%; left: 27%; }
.map-dot--4  { top: 60%; left: 30%; }
.map-dot--5  { top: 40%; left: 78%; }
.map-dot--6  { top: 70%; left: 80%; }
.map-dot--7  { top: 35%; left: 45%; }
.map-dot--8  { top: 45%; left: 55%; }
.map-dot--9  { top: 30%; left: 68%; }
.map-dot--10 { top: 35%; left: 50%; }
.map-dot--11 { top: 50%; left: 45%; }
.map-dot--12 { top: 60%; left: 50%; }
.map-dot--13 { top: 68%; left: 24%; }
.map-dot--14 { top: 55%; left: 55%; }
.map-dot--15 { top: 25%; left: 50%; }
.map-dot-16 { top: 80%; right: 25%; width: 40%; filter: drop-shadow(1px 1px 4px rgba(54, 54, 182, 0.849)); }

@media (max-width: 900px) {
  .map-section-inner { grid-template-columns: 1fr; }
  .map-section-text .section-title { text-align: center; }
  .map-section-text .section-rule { margin: 1rem auto 1.5rem; }
}

/* ─── CONTACT SECTION ─────────────────────────────────────────── */
.contact-section { padding: 5rem 2rem; background: var(--cream); }
.contact-section-inner { max-width: 1100px; margin: 0 auto; }
.contact-section-inner .eyebrow { text-align: center; }
.contact-section-inner .section-title { text-align: center; }
.contact-section-inner .section-subtitle { text-align: center; margin-bottom: 3.5rem; }
.contact-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 4rem; align-items: start; }
.contact-info-col {}
.contact-info-block { padding-bottom: 1.5rem; border-bottom: 1px solid var(--sand); }
.contact-info-label { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--bark); margin-bottom: 0.4rem; }
.contact-info-value { font-family: "Cormorant Garamond", serif; font-size: 1.1rem; color: var(--charcoal); }
.contact-info-value a { color: var(--charcoal); transition: color var(--fast); }
.contact-info-value a:hover { color: var(--gold-dark); }

.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.contact-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-field { display: flex; flex-direction: column; gap: 0.35rem; }
.form-label { font-size: 0.65rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--bark); }
.form-label--dark { color: var(--bark); }
.form-input {
  border: 1px solid var(--sand);
  background: var(--white);
  padding: 10px 14px;
  font-family: "Jost", sans-serif;
  font-size: 0.87rem;
  color: var(--charcoal);
  outline: none;
  transition: border-color var(--fast);
}
.form-input:focus { border-color: var(--gold); }
.form-input--light { background: var(--white); }
textarea.form-input { min-height: 100px; resize: vertical; }
select.form-input { cursor: pointer; }
.form-checkbox { display: flex; align-items: flex-start; gap: 0.75rem; margin-top: 0.5rem; }
.form-checkbox input { flex-shrink: 0; margin-top: 3px; accent-color: var(--gold-dark); }
.form-checkbox label { font-size: 0.75rem; color: var(--bark); line-height: 1.55; }

.form-success {
  text-align: center;
  padding: 3rem;
  background: var(--linen);
}
.success-icon { font-size: 2.5rem; color: var(--gold); margin-bottom: 1rem; }
.form-success p { font-size: 0.9rem; color: var(--bark); margin: 0; line-height: 1.7; }

@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
@media (max-width: 600px) { .contact-form-row { grid-template-columns: 1fr; } }

/* ─── SCROLL REVEAL ───────────────────────────────────────────── */
.card-reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.card-reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── FOOTER ──────────────────────────────────────────────────── */
.bv-footer { background: var(--charcoal); padding: 4rem 3rem 2rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto 3rem;
}
.footer-brand {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--linen);
  margin-bottom: 0.8rem;
}
.footer-tagline { color: white;  font-size: .85rem; line-height: 1.85;  max-width: 270px; margin-bottom: 1.5rem; }
.footer-head {  color: white; font-size: 1rem; letter-spacing: 0.24em; text-transform: uppercase; margin-bottom: 1.1rem; }
.bv-footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.7rem; }
.bv-footer ul li a { font-size: .85rem; transition: color var(--fast); }
.bv-footer ul li a:hover { color: var(--gold-light); }
.footer-social { display: flex; gap: 1rem; }
.social-icon { color: rgba(255,255,255,0.3); font-size: 1.05rem; transition: color var(--fast), transform var(--fast); }
.social-icon:hover { color: var(--gold-light); transform: translateY(-2px); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: .70rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.92rem;

  max-width: 1200px;
  margin: 0 auto;
}
.footer-bottom a {  margin-left: 1rem; transition: color var(--fast); }
.footer-bottom a:hover { color: var(--gold-light); }
@media (max-width: 1024px) {.footer-tagline { color: white;  font-size: 1.2rem; line-height: 1.85;  max-width: 270px; margin-bottom: 1.5rem; }
.footer-head {  color: white; font-size: 1rem; letter-spacing: 0.24em; text-transform: uppercase; margin-bottom: 1.1rem; }
.bv-footer ul li a { font-size: 1rem; transition: color var(--fast); }
 .footer-grid { grid-template-columns: 2fr 1fr;} }
@media (max-width: 768px) {
  .bv-footer { padding: 3.5rem 1.2rem 2rem; }
  .footer-grid { gap: 2rem; grid-template-columns: 1frr;}
  .footer-bottom { font-size: 1.2rem ;flex-direction: column; gap: 0.8rem; text-align: center; }
  .footer-bottom a { margin: 0 0.5rem; }
}

/* ─── PAGE HERO (subpages) ────────────────────────────────────── */
.bv-page-hero {
  position: relative;
  height: 100%;
  min-height: 400px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.bv-page-hero-bg { position: absolute; inset: 0; }
.bv-page-hero-bg img { width: 100%; 
  height: 100%; 
  object-fit: cover; 
  object-position: center 30%; }
.bv-page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(47,93,140,0.7) 0%, rgba(47,93,140,0.3) 70%, transparent 100%);
}
.bv-page-hero-content { position: relative; z-index: 2; padding: 0 4rem 3.5rem; }
.bv-page-hero-eyebrow { font-size: 0.65rem; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.55); display: block; margin-bottom: 0.8rem; }
.bv-page-hero-title { font-family: "Cormorant Garamond", serif; font-size: clamp(2.2rem,5vw,4rem); font-weight: 300; color: var(--white); margin: 0; }
.bv-page-hero-title em { font-style: italic; color: var(--gold-light); }
.bv-page-hero-rule { width: 40px; height: 1px; background: var(--gold); margin: 1.2rem 0 0; }
@media (max-width: 768px) { .bv-page-hero-content { padding: 0 1.5rem 2.5rem; } }

/* ─── SUBPAGE GALLERY ─────────────────────────────────────────── */
.subpage-gallery-section { padding: 4.5rem 0 2rem; }
.subpage-detail-section  { padding: 0 0 4rem; }
.subpage-section-head { max-width: 680px; margin: 0 auto 2.5rem; text-align: center; }
.subpage-section-sub { font-size: 0.9rem; color: var(--bark); line-height: 1.85; }

/* ─── WINDOWS PAGE SPECIFICS ─────────────────────────────────── */
.windows-intro-strip {
  padding: 4rem 3rem 2.5rem;
  background: var(--linen);
  border-bottom: 1px solid var(--sand);
}
.windows-intro-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr auto;
  gap: 3rem; align-items: center;
}
.windows-intro-inner p { font-size: 0.9rem; line-height: 1.9; color: var(--bark); max-width: 560px; margin: 0.8rem 0 0; }
.windows-intro-stats { display: flex; gap: 2.5rem; flex-shrink: 0; }
.windows-stat { text-align: center; }
.windows-stat-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.4rem; font-weight: 300;
  color: var(--gold-dark); line-height: 1; display: block;
}
.windows-stat-num sup { font-size: 1rem; }
.windows-stat-label { font-size: 0.65rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--bark); display: block; margin-top: 0.3rem; }

/* Filter bar */
.windows-filter-bar {
  position: sticky; top: 0; z-index: 90;
  background: var(--cream);
  border-bottom: 1px solid var(--sand);
  box-shadow: 0 2px 12px rgba(47,93,140,0.06);
}
.windows-filter-inner {
  display: flex; overflow-x: auto;
  scrollbar-width: none; padding: 0 2rem;
}
.windows-filter-inner::-webkit-scrollbar { display: none; }
.wf-btn {
  flex-shrink: 0;
  background: none; border: none; border-bottom: 2px solid transparent;
  padding: 1rem 1.2rem;
  font-family: "Jost", sans-serif; font-size: 0.72rem;
  font-weight: 400; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--bark); cursor: pointer; white-space: nowrap;
  transition: color var(--fast), border-color var(--fast);
}
.wf-btn:hover { color: var(--gold-dark); }
.wf-btn.active { color: var(--gold-dark); border-bottom-color: var(--gold); font-weight: 500; }

/* Product badge */
.product-card-badge {
  position: absolute; top: 14px; right: 14px;
  background: var(--gold); color: var(--white);
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 10px; z-index: 3; pointer-events: none;
}

/* Card overlay internals */
.card-overlay-name { font-family: "Cormorant Garamond", serif; font-size: 1.4rem; font-weight: 400; margin: 0 0 0.3rem; color: var(--white); }
.card-overlay-sub  { font-size: 0.78rem; letter-spacing: 0.08em; color: var(--gold-light); display: block; margin-bottom: 0.8rem; }
.card-overlay-desc { font-size: 0.82rem; line-height: 1.7; color: rgba(255,255,255,0.8); margin-bottom: 1.2rem; padding: 0 0.5rem; }
.btn-detail {
  background: transparent; border: 1px solid var(--gold);
  color: var(--gold-light); font-size: 0.75rem; letter-spacing: 0.08em;
  padding: 8px 22px; cursor: pointer; font-family: "Jost", sans-serif;
  transition: background var(--fast), color var(--fast);
}
.btn-detail:hover { background: var(--gold); color: var(--white); }

/* Load more */
.btn-load-more {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: transparent; border: 1.5px solid var(--gold);
  color: var(--gold-dark); font-family: "Jost", sans-serif;
  font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 14px 40px; cursor: pointer;
  transition: background var(--fast), color var(--fast);
}
.btn-load-more:hover { background: var(--gold); color: var(--white); }
.btn-load-more-count { font-size: 0.72rem; opacity: 0.65; }

/* Detail panel */
.detail-wrap { padding: 3rem 0 4rem; }
.detail-close {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: none; border: 1px solid var(--sand);
  color: var(--bark); font-family: "Jost", sans-serif;
  font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 8px 18px; cursor: pointer; margin-bottom: 2.5rem;
  transition: border-color var(--fast), color var(--fast);
}
.detail-close:hover { border-color: var(--gold); color: var(--gold-dark); }
.detail-head { text-align: center; margin-bottom: 2.5rem; }
.detail-category-pill {
  display: inline-block; background: var(--gold-pale); color: var(--gold-dark);
  font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 5px 18px; margin-bottom: 1rem;
}
.detail-title { font-family: "Cormorant Garamond", serif; font-size: clamp(2rem,4vw,3rem); font-weight: 400; color: var(--charcoal); margin: 0 0 0.4rem; }
.detail-subtitle { font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin: 0; }
.detail-hero-wrap { position: relative; overflow: hidden; margin-bottom: 10px; }
.detail-hero-img { width: 100%; height: clamp(420px,65vw,720px); object-fit: cover; display: block; transition: opacity 0.3s ease; }
.detail-hero-gradient { position: absolute; inset: auto 0 0 0; height: 180px; background: linear-gradient(transparent,rgba(47,93,140,0.55)); pointer-events: none; }
.detail-hero-caption { position: absolute; bottom: 26px; left: 32px; color: var(--white); display: flex; flex-direction: column; gap: 3px; }
.detail-hero-brand { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.65; }
.detail-hero-name { font-family: "Cormorant Garamond", serif; font-size: 1.25rem; font-weight: 400; }
.detail-thumb { width: 100%; aspect-ratio: 4/3; object-fit: cover; cursor: pointer; transition: opacity 0.2s ease, transform 0.2s ease; display: block; }
.detail-thumb:hover { opacity: 0.78; transform: scale(1.02); }
.detail-marketing { border-left: 3px solid var(--gold); background: var(--gold-pale); padding: 1.4rem 1.8rem; margin-bottom: 3rem; }
.detail-marketing p { font-style: italic; font-size: 1rem; line-height: 1.75; color: var(--bark); margin: 0; }
.detail-body-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; margin-bottom: 3.5rem; }
.detail-section-head { font-family: "Cormorant Garamond", serif; font-size: 1.6rem; font-weight: 400; color: var(--charcoal); margin-bottom: 1rem; }
.detail-description { font-size: 0.95rem; line-height: 1.9; color: var(--bark); margin: 0; }
.detail-highlights-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem 1.5rem; }
.detail-highlight { text-align: center; }
.detail-highlight-icon { font-size: 1.6rem; color: var(--gold); display: block; margin-bottom: 0.5rem; }
.detail-highlight-label { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--charcoal); font-weight: 500; }
.detail-divider { display: flex; align-items: center; gap: 1.5rem; margin: 3rem 0; }
.detail-divider-line { flex: 1; height: 1px; background: var(--sand); }
.detail-divider-label { font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--bark); white-space: nowrap; }
.detail-specs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; margin-bottom: 3rem; }
.detail-col-head { font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--charcoal); font-weight: 500; margin-bottom: 1.2rem; }
.detail-spec-row { display: flex; justify-content: space-between; align-items: flex-start; padding: 0.8rem 0; border-bottom: 1px solid var(--sand); gap: 1rem; }
.detail-spec-label { font-size: 0.75rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--bark); flex-shrink: 0; min-width: 130px; }
.detail-spec-value { font-size: 0.85rem; color: var(--charcoal); text-align: right; }
.detail-feature-item { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 0.9rem; font-size: 0.87rem; line-height: 1.6; color: var(--bark); }
.detail-feature-check { color: var(--gold); flex-shrink: 0; margin-top: 2px; font-size: 1rem; }
.detail-tech-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; margin-bottom: 3rem; padding-top: 2rem; border-top: 1px solid var(--sand); }
.detail-tech-img { width: 100%; max-height: 220px; object-fit: cover; margin-bottom: 1.2rem; border: 1px solid var(--sand); }
.detail-table { width: 100%; font-size: 0.82rem; border-collapse: collapse; }
.detail-table-key { color: var(--bark); min-width: 120px; padding: 0.45rem 0.6rem 0.45rem 0; vertical-align: top; text-transform: capitalize; }
.detail-table td { padding: 0.45rem 0; border-bottom: 1px solid var(--sand); }
.detail-cta-strip { background: var(--gold-pale); text-align: center; padding: 3.5rem 2rem; margin-top: 2rem; }
.detail-cta-title { font-family: "Cormorant Garamond", serif; font-size: clamp(1.6rem,3vw,2rem); font-weight: 400; color: var(--charcoal); margin-bottom: 0.6rem; }
.detail-cta-sub { font-size: 0.87rem; color: var(--bark); line-height: 1.7; margin-bottom: 1.8rem; }
.detail-cta-btns { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }
@media (max-width: 900px) {
  .detail-body-grid  { grid-template-columns: 1fr; gap: 2.5rem; }
  .detail-specs-grid { grid-template-columns: 1fr; gap: 2rem; }
  .detail-tech-grid  { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 600px) {
  .detail-hero-img { height: 320px; }
  .detail-title { font-size: 1.7rem; }
  .detail-cta-strip { padding: 2.5rem 1.2rem; }
}
@media (max-width: 900px) {
  .windows-intro-inner { grid-template-columns: 1fr; gap: 2rem; }
  .windows-intro-stats { justify-content: flex-start; }
  .windows-intro-strip { padding: 3rem 1.5rem; }
  .windows-intro-stats { gap: 1.5rem; }
}
@media (max-width: 768px) { .wf-btn { padding: 0.9rem; font-size: 0.68rem; } }

/* ─── ABOUT PAGE ──────────────────────────────────────────────── */
.about-manifesto { padding: 5rem 2rem; background: var(--linen); text-align: center; }
.about-manifesto-inner { max-width: 760px; margin: 0 auto; }
.about-quote {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.5;
  margin: 0 0 1.5rem;
  border: none;
  padding: 0;
}
.about-values { padding: 5rem 2rem; background: var(--cream); }
.about-values-head { text-align: center; max-width: 600px; margin: 0 auto 3.5rem; }
.about-values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; max-width: 1100px; margin: 0 auto; }
.about-value-card { padding: 2.5rem; background: var(--linen); }
.about-value-num { font-family: "Cormorant Garamond", serif; font-size: 3rem; font-weight: 300; color: var(--gold-light); line-height: 1; margin-bottom: 1rem; }
.about-value-title { font-family: "Cormorant Garamond", serif; font-size: 1.3rem; font-weight: 400; color: var(--charcoal); margin-bottom: 0.8rem; }
.about-value-text { font-size: 0.85rem; line-height: 1.85; color: var(--bark); }
@media (max-width: 900px) { .about-values-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .about-values-grid { grid-template-columns: 1fr; } }

/* ─── COLORS / FINISHES NOTE SECTION ─────────────────────────── */
.colors-note-section { padding: 4rem 2rem; background: var(--linen); text-align: center; }
.colors-note-inner { max-width: 680px; margin: 0 auto; }
.colors-note-inner p { font-size: 0.88rem; line-height: 1.9; color: var(--bark); margin: 1.5rem 0; }

/* ─── LEGAL PAGES ─────────────────────────────────────────────── */
.legal-page,
.legal-section { padding: 4rem 2rem 5rem; max-width: 860px; margin: 0 auto; }
.legal-page h1, .legal-section h1 { font-size: clamp(2rem, 4vw, 3rem); color: var(--charcoal); margin-bottom: 0.5rem; }
.legal-page h2, .legal-section h2 { font-size: 1.4rem; margin: 2rem 0 0.8rem; color: var(--charcoal); }
.legal-page p, .legal-page li,
.legal-section p, .legal-section li { font-size: 0.87rem; line-height: 1.9; color: var(--bark); }
.legal-page ul, .legal-section ul { padding-left: 1.5rem; margin-bottom: 1rem; }
.legal-date { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--bark); opacity: 0.6; display: block; margin-bottom: 2.5rem; }
.legal-back { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--bark); margin-bottom: 3rem; }
.legal-back:hover { color: var(--gold-dark); }

/* ─── CONTACT PAGE ────────────────────────────────────────────── */
.contact-page-section { padding: 4rem 2rem 5rem; }
.contact-page-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; }
.contact-page-info h2 { font-size: clamp(1.8rem,3vw,2.5rem); margin-bottom: 1.5rem; color: var(--charcoal); }
.contact-page-info p { font-size: 0.88rem; line-height: 1.9; color: var(--bark); margin-bottom: 2rem; }
@media (max-width: 900px) { .contact-page-inner { grid-template-columns: 1fr; } }

/* ─── WINDOWS PAGE — TABS + PANELS + PALETTE ──────────────── */

/* Intro strip */
.win-intro {
  background: var(--white);
  padding: 4rem 3rem;
  text-align: center;
  border-bottom: 1px solid var(--sand);
}
.win-intro-inner {
  max-width: 700px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.8rem;
}
.win-intro-text {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-style: italic;
  color: var(--bark);
  line-height: 1.75;
}
@media (max-width: 768px) {  .win-intro { padding: 3rem 1.5rem; } }

/* ─── WINDOWS PAGE LAYOUT ─────────────────────────────────────── */

/* Wrapper: sidebar + content side by side */
.window {
  display: flex;
  align-items: flex-start;
  position: relative;
}

/* ── Sidebar (desktop) ────────────────────────────────────────── */
.win-tabs-nav {
  position: sticky;
  top: var(--nav-h, 72px);
  flex-shrink: 0;
  width: 210px;
  height: calc(100vh - var(--nav-h, 72px));
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: none;
  background: var(--cream);
  border-right: 1px solid var(--sand);
  box-shadow: 2px 0 16px rgba(47,93,140,0.05);
  z-index: 90;
  padding: 2rem 0 3rem;
}
.win-tabs-nav::-webkit-scrollbar { display: none; }

/* "Collection" eyebrow label inside sidebar */
.win-tabs-label {
  font-family: "Jost", sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bark);
  opacity: 0.5;
  padding: 0 1.8rem 1rem;
  border-bottom: 1px solid var(--sand);
  margin-bottom: 0.5rem;
  display: block;
}

/* ── Tab buttons (desktop) ────────────────────────────────────── */
.win-tab {
  display: block;
  width: 100%;
  text-align: left;
  flex-shrink: 0;
  background: none;
  border: none;
  border-left: 2px solid transparent;
  padding: 1.1rem 1.8rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.05rem;
  font-weight: 300;
  letter-spacing: 0.02em;
  color: var(--bark);
  cursor: pointer;
  white-space: nowrap;
  line-height: 1.2;
  transition: color 0.2s, border-color 0.2s, background 0.5s;
  position: relative;
}
.win-tab::after {
  content: '';
  display: block;
  width: 18px;
  height: 1px;
  background: var(--sand);
  margin-top: 0.45rem;
  transition: width 0.4s, background 0.5s;
}
.win-tab:hover { color: var(--charcoal); }
.win-tab:hover::after { width: 32px; background: var(--gold); }
.win-tab.active {
  color: var(--charcoal);
  border-left-color: var(--gold);
  font-weight: 400;
  background: linear-gradient(90deg, rgba(111,175,234,0.10) 0%, transparent 100%);
}
.win-tab.active::after { width: 32px; background: var(--gold); }

/* ── Content area ─────────────────────────────────────────────── */
.win-detail {
  flex: 1;
  min-width: 0;
  position: relative;   /* ← required for brand flash overlay */
}

/* ── Brand flash overlay ─────────────────────────────────────── */
.win-brand-flash {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(247,249,251,0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 50;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease;
}
.win-brand-flash.show { opacity: 1; }
.win-brand-flash img {
  width: 180px;
  max-width: 45%;
  filter: drop-shadow(0 4px 24px rgba(47,93,140,0.2));
  animation: brandPulse 0.55s cubic-bezier(0.25,0.46,0.45,0.94);
}
@keyframes brandPulse {
  0%   { transform: scale(0.82); opacity: 0; }
  60%  { transform: scale(1.04); opacity: 1; }
  100% { transform: scale(1);    opacity: 1; }
}

/* ── Mobile menu — windows submenu ───────────────────────────── */
.mobile-windows-group {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.mobile-main-link {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem !important;
  font-weight: 300;
  color: var(--linen);
  letter-spacing: 0.06em;
}
.mobile-win-tabs {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding-left: 1.4rem;
  margin-top: 0.5rem;
  border-left: 1px solid rgba(111,175,234,0.35);
}
.mobile-win-tabs a {
  font-size: 0.82rem !important;
  letter-spacing: 0.1em;
  opacity: 0.72;
  font-family: "Jost", sans-serif !important;
  text-transform: uppercase;
}
.mobile-win-tabs a:hover { opacity: 1; color: var(--gold-light) !important; }

/* ── Panels ─────────────────────────────────────────────────── */
.win-panel { display: none; }
.win-panel.active { display: block; }

/* ── MOBILE: flip sidebar to horizontal pill bar ─────────────── */
@media (max-width: 900px) {
  .window {
    flex-direction: column;
  }
  .win-tabs-nav {
    /* reset desktop styles */
    position: sticky;
    top: var(--nav-h, 72px);
    width: 100%;
    height: auto;
    /* go horizontal */
    flex-direction: row;
    align-items: center;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0;
    border-right: none;
    border-bottom: 1px solid var(--sand);
    box-shadow: 0 3px 16px rgba(47,93,140,0.08);
    background: rgba(247,249,251,0.97);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    z-index: 100;
  }
  /* Hide the "Collection" label on mobile — no room */
  .win-tabs-label { display: none; }

  .win-tab {
    /* reset desktop */
    display: inline-flex;
    width: auto;
    flex-shrink: 0;
    border-left: none;
    border-bottom: 2px solid transparent;
    background: none !important;
    padding: 0.9rem 1.1rem;
    /* mobile type */
    font-family: "Jost", sans-serif;
    font-size: 0.68rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-align: center;
    white-space: nowrap;
  }
  .win-tab::after { display: none; }
  .win-tab.active {
    border-bottom-color: var(--gold);
    color: var(--charcoal);
    font-weight: 500;
  }
  .win-detail { width: 100%; }
}

@media (max-width: 480px) {
  .win-tab { padding: 0.85rem 0.85rem; font-size: 0.62rem; }
}

.win-panel-hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  overflow: hidden;
}
.win-panel-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 6s ease;
}
.win-panel.active .win-panel-hero img { transform: scale(1.03); }

.win-panel-hero-caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 2.5rem 3rem;
  background: linear-gradient(transparent, rgba(47,93,140,0.82));
}
.win-panel-series {
  font-family: "Jost", sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-light);
  display: block;
  margin-bottom: 0.5rem;
}
.win-panel-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.05;
  margin: 0;
}

/* Panel body */
.win-panel-body {
  max-width: 1360px;
  margin-inline: auto;
  padding: 4rem 3rem;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: start;
}
.win-panel-marketing {
  background: var(--gold-pale);
  border-left: 3px solid var(--gold);
  padding: 1.8rem 2rem;
  margin-bottom: 2rem;
}
.win-panel-marketing p {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--bark);
  line-height: 1.75;
  margin: 0;
}

/* Highlights */
.win-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}
.win-highlight-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.82rem;
  color: var(--bark);
}
.win-highlight-item .bi {
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}

/* Gallery */
.win-gallery-main { overflow: hidden; margin-bottom: 8px; }
.win-gallery-main img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  transition: opacity 0.2s ease;
}
.win-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}
.win-gallery-thumbs img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.3s;
}
.win-gallery-thumbs img:hover { opacity: 0.8; transform: scale(1.03); }

/* Detail strip */
.win-detail-strip {
  background: var(--charcoal);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
}
.win-detail-block img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  filter: brightness(0.72);
  transition: filter 0.4s ease;
}
.win-detail-block:hover img { filter: brightness(0.92); }
.win-detail-block-text { padding: 1.4rem 1.8rem 2rem; }
.win-detail-block-text h4 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
}
.win-detail-block-text p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.48);
  line-height: 1.7;
  margin: 0;
}

/* Responsive panels */
@media (max-width: 1024px) {
  .win-panel-body { grid-template-columns: 1fr; gap: 3rem; }
  .win-panel-hero { height: 50vh; }
}
@media (max-width: 768px) {
  .win-panel-body { padding: 2.5rem 1.5rem; }
  .win-panel-hero-caption { padding: 2rem 1.5rem; }
  .win-detail-strip { grid-template-columns: 1fr; }
  .win-gallery-main img { height: 260px; }
}
@media (max-width: 600px) { .win-highlights { grid-template-columns: 1fr; } }

/* Technical Specifications Block */
.win-tech-specs {
  background: var(--linen);
  border-top: 1px solid var(--sand);
  padding: 4rem 3rem;
}
.win-tech-specs-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.win-tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.win-tech-col-head {
  font-family: "Jost", sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin: 0 0 1.2rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--gold);
}
.win-spec-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(191,223,255,0.5);
  gap: 1rem;
}
.win-spec-label {
  font-size: 0.73rem;
  letter-spacing: 0.04em;
  color: var(--bark);
  flex-shrink: 0;
  min-width: 115px;
}
.win-spec-val {
  font-size: 0.78rem;
  color: var(--charcoal);
  text-align: right;
  font-weight: 400;
}
@media (max-width: 900px) {
  .win-tech-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 600px) {
  .win-tech-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .win-tech-specs { padding: 3rem 1.5rem; }
}

/* CTA Banner */
.win-cta-banner {
  background: var(--charcoal);
  padding: 6rem 3rem;
  text-align: center;
}
.win-cta-banner-inner { max-width: 640px; margin-inline: auto; }
.win-cta-banner .section-title { color: var(--linen); }
.win-cta-banner .section-title em { font-style: italic; color: var(--gold-light); }
.win-cta-banner p {
  font-size: 0.9rem;
  color: rgba(234,244,255,0.55);
  margin-top: 1rem;
  line-height: 1.8;
}
.win-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}
@media (max-width: 768px) { .win-cta-banner { padding: 4rem 1.5rem; } }

/* ─── COLOR PALETTE SECTION ──────────────────────────────── */
.win-palette-section {
  background: var(--linen);
  padding: 5rem 3rem;
  border-top: 1px solid var(--sand);
  border-bottom: 1px solid var(--sand);
}
.win-palette-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}
.win-palette-lead {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.6;
  margin: 0 0 1rem;
  border-left: 3px solid var(--gold);
  padding-left: 1rem;
}
.win-palette-text p:not(.win-palette-lead) {
  font-size: 0.87rem;
  line-height: 1.9;
  color: var(--bark);
}
.win-palette-text .section-title { color: var(--charcoal); text-align: left; }
.win-palette-text .section-title em { font-style: italic; color: var(--gold-dark); }

/* Swatch grid */
.win-swatch-grid {
  display: grid;
  filter: drop-shadow(2px 2px 10px var(--charcoal));
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.win-swatch { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
.win-swatch-color {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(47,93,140,0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.win-swatch:hover .win-swatch-color {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(47,93,140,0.18);
}
.win-swatch-label {
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bark);
  text-align: center;
}

/* Special finishes */
.win-swatch-wood-fill {
  background: linear-gradient(135deg, #c8a97a 0%, #a07840 40%, #c8a97a 60%, #8b5e2a 100%);
}
.win-swatch-anodized-fill {
  background: linear-gradient(135deg, #d4d4d4 0%, #a8a8a8 40%, #e0e0e0 60%, #b0b0b0 100%);
}

.win-palette-note {
  font-size: 0.75rem;
  color: var(--bark);
  opacity: 0.75;
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .win-palette-inner { grid-template-columns: 1fr; gap: 3rem; }
  .win-swatch-grid { grid-template-columns: repeat(1, 1fr); }
}
@media (max-width: 600px) {
  .win-palette-section { padding: 3.5rem 1.5rem; }
  .win-swatch-grid { grid-template-columns: repeat(4, 1fr); gap: 0.75rem; }
}


  /* ---- Full-screen split layout ---- */
    .err-wrap {
      flex: 1;
      display: grid;
      grid-template-columns: 1fr 1fr;
      min-height: 100vh;
    }

    /* Left: image */
    .err-img {
      position: relative;
      overflow: hidden;
    }

    .err-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      filter: brightness(.88);
    }

    .err-img-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(20,35,55,.35) 0%, rgba(20,35,55,.08) 100%);
    }

    /* Logo watermark over image */
    .err-logo-over {
      position: absolute;
      top: 2rem;
      left: 2rem;
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.5rem;
      font-weight: 300;
      color: rgba(255,255,255,.9);
      letter-spacing: .08em;
      text-decoration: none;
    }

    /* Right: content */
    .err-content {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: flex-start;
      padding: 5rem 4rem;
      background: #fff;
    }

    .err-eyebrow {
      font-family: 'Jost', sans-serif;
      font-size: .7rem;
      letter-spacing: .22em;
      text-transform: uppercase;
      color: #9ab0c0;
      margin-bottom: 1.5rem;
    }

    .err-code {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(6rem, 12vw, 9rem);
      font-weight: 300;
      line-height: 1;
      color: #dde7ef;
      margin-bottom: .5rem;
      letter-spacing: -.02em;
    }

    .err-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.6rem, 3vw, 2.4rem);
      font-weight: 300;
      color: #2c4055;
      line-height: 1.2;
      margin-bottom: 1.5rem;
    }

    .err-title em {
      font-style: italic;
      color: #7aadcc;
    }

    .err-rule {
      width: 48px;
      height: 1px;
      background: #b8d0de;
      margin-bottom: 1.8rem;
    }

    .err-text {
      font-size: .92rem;
      font-weight: 300;
      color: #6a8599;
      line-height: 1.75;
      max-width: 380px;
      margin-bottom: 2.5rem;
    }

    .err-actions {
      display: flex;
      flex-wrap: wrap;
      gap: .85rem;
    }

    .err-btn-primary {
      display: inline-flex;
      align-items: center;
      gap: .5rem;
      padding: .85rem 2rem;
      background: #7aadcc;
      color: #fff;
      font-family: 'Jost', sans-serif;
      font-size: .75rem;
      font-weight: 500;
      letter-spacing: .14em;
      text-transform: uppercase;
      text-decoration: none;
      border: none;
      cursor: pointer;
      transition: background .2s, transform .2s;
    }

    .err-btn-primary:hover { background: #5f97b8; transform: translateY(-1px); color: #fff; }

    .err-btn-ghost {
      display: inline-flex;
      align-items: center;
      gap: .5rem;
      padding: .85rem 2rem;
      background: transparent;
      color: #7aadcc;
      font-family: 'Jost', sans-serif;
      font-size: .75rem;
      font-weight: 400;
      letter-spacing: .14em;
      text-transform: uppercase;
      text-decoration: none;
      border: 1px solid #b8d0de;
      transition: border-color .2s, color .2s, transform .2s;
    }

    .err-btn-ghost:hover { border-color: #7aadcc; color: #5f97b8; transform: translateY(-1px); }

    /* Quick links */
    .err-links {
      margin-top: 3rem;
      padding-top: 2rem;
      border-top: 1px solid #edf2f5;
      width: 100%;
    }

    .err-links-label {
      font-size: .68rem;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: #9ab0c0;
      margin-bottom: 1rem;
      display: block;
    }

    .err-links-list {
      display: flex;
      flex-wrap: wrap;
      gap: .5rem 1.5rem;
      list-style: none;
    }

    .err-links-list a {
      font-size: .8rem;
      color: #5a7585;
      text-decoration: none;
      letter-spacing: .05em;
      display: flex;
      align-items: center;
      gap: .35rem;
      transition: color .15s;
    }

    .err-links-list a:hover { color: #7aadcc; }
    .err-links-list a i { font-size: .7rem; }

    /* Mobile */
    @media (max-width: 768px) {
      .err-wrap { grid-template-columns: 1fr; }

      .err-img {
        height: 40vh;
        min-height: 220px;
      }

      .err-content {
        padding: 3rem 1.75rem;
      }

      .err-code { font-size: 5rem; }
    }


    .fst{
      color: #6285e4;
      font-weight: 600;
      text-transform: uppercase;
      font-size: 1em;
    }