/* =========================
   RESET & BASE
========================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: #0e1320;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* =========================
   TOP GLASS NAVBAR
========================= */

.top-navbar {
  background: linear-gradient(
    135deg,
    rgba(10, 12, 18, 0.98) 0%,
    rgba(15, 18, 26, 0.95) 100%
  );
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.75rem;
  padding: 10px 0;
  position: relative;
  z-index: 1002;
}

.top-nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.insurance-badge {
  background: rgba(199, 178, 124, 0.15);
  color: #c7b27c;
  padding: 6px 14px;
  border-radius: 4px;
  border: 1px solid rgba(199, 178, 124, 0.3);
  font-weight: 500;
  white-space: nowrap;
}

.underwritten {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.7rem;
  margin-left: 12px;
}

.top-nav-utils {
  display: flex;
  align-items: center;
  gap: 24px;
}

.location {
  display: flex;
  align-items: center;
  gap: 8px;
}

.change-location {
  color: #c7b27c;
  text-decoration: underline;
}

.contact-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.phone {
  font-weight: 500;
  color: white;
}

.hours {
  font-size: 0.7rem;
  opacity: 0.8;
}

/* =========================
   MAIN HEADER
========================= */

.main-header {
  position: sticky;
  top: 0;
  z-index: 1001;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(14, 19, 32, 0.08);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.main-nav {
  height: 83px; /* Increased for bigger logo */
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

/* =========================
   LOGO SYSTEM - IMPROVED
========================= */
.nav-logo {
  display: flex;
  align-items: center; /* This keeps them vertically centered */
  gap: 6px; /* This is the space between them - reduce this too */
  flex-shrink: 0;
  height: 100%;
  padding: 8px 0;
}

.logo-icon {
  height: 90px;
  width: auto;
  display: block;
  object-fit: contain;
}

.logo-wordmark {
  height: 240px;
  width: auto;
  display: block;
  object-fit: contain;
  margin-left: -70px;
  margin-top: 34px; /* Add this line to push it down */
}

/* =========================
   NAVIGATION MENU
========================= */

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-grow: 1;
  justify-content: flex-end;
}

.nav-link {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #5b6478;
  padding: 12px 0;
  position: relative;
  transition: color 0.25s ease;
  white-space: nowrap;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #c7b27c;
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: #0a0c12;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link.active {
  color: #0a0c12;
}

/* CTA BUTTON */

.nav-cta {
  padding: 12px 28px;
  border-radius: 6px;
  background: linear-gradient(135deg, #c7b27c 0%, #d4c29d 100%);
  color: #0a0c12;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: none;
  cursor: pointer;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(199, 178, 124, 0.2);
}

/* =========================
   MOBILE TOGGLE
========================= */

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 4px;
}

.toggle-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: #0a0c12;
  transition: 0.3s ease;
}


/* =========================
   MAIN HEADER — Glass White (Premium)
   Paste BELOW your current navbar styles
========================= */

.main-header{
  position: sticky;
  top: 0;
  z-index: 1001;

  /* glass */
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.82),
    rgba(255,255,255,0.68)
  );
  backdrop-filter: blur(18px) saturate(170%);
  -webkit-backdrop-filter: blur(18px) saturate(170%);

  /* edges + depth */
  border-bottom: 1px solid rgba(14,19,32,0.10);
  box-shadow:
    0 10px 30px rgba(10,12,18,0.08),
    0 1px 0 rgba(255,255,255,0.65) inset;
}

/* subtle “live” highlight bar across the top */
.main-header::before{
  content:"";
  position:absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(199,178,124,0.45),
    transparent
  );
  opacity: 0.75;
  pointer-events: none;
}

/* optional: make nav links feel crisper on glass */
.nav-link{
  color: rgba(18,22,34,0.62);
}
.nav-link:hover,
.nav-link.active{
  color: rgba(10,12,18,0.92);
}

/* optional: CTA pops more on glass */
.nav-cta{
  box-shadow:
    0 10px 24px rgba(199,178,124,0.18),
    0 1px 0 rgba(255,255,255,0.35) inset;
}

/* =========================
   LAYERED HERO
========================= */

.hero-section {
  padding: 15px 0 90px;
  background: #ffffff;
}

.hero-wrapper {
  position: relative;
  min-height: 500px;
  overflow: hidden;
}

/* Base sharp image */
.hero-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 28px;

  background:
    linear-gradient(
      rgba(10, 12, 18, 0.35),
      rgba(10, 12, 18, 0.35)
    ),
    url('../images/herobk.png') center center no-repeat;

  background-size: cover;
  z-index: 1;
}

/* Very subtle left blur */
.hero-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 28px;

  background: url('../images/herobk.png') center center no-repeat;
  background-size: cover;

  filter: blur(4px);         /* softer blur */
  transform: scale(1.02);

  -webkit-mask-image: linear-gradient(
    to right,
    black 0%,
    black 38%,                /* blur ends sooner */
    rgba(0,0,0,0.4) 45%,      /* smoother lighter fade */
    transparent 55%           /* sharp from here onward */
  );

  mask-image: linear-gradient(
    to right,
    black 0%,
    black 38%,
    rgba(0,0,0,0.4) 45%,
    transparent 55%
  );

  z-index: 2;
}

/* Card stays above */
.hero-card {
  position: relative;
  z-index: 3;
  max-width: 570px;
  padding: 35px 60px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(6px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

/* Typography */
.hero-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  line-height: 1.1;
  margin-bottom: 24px;
  color: #0a0c12;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: #4a5468;
  margin-bottom: 40px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}


/* =========================
   TOP BAR INTERACTIONS (Badge Menu + Location Modal)
   Add to: css/style.css
========================= */

/* Make badge act like a clickable chip */
.insurance-badge {
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.92);
  padding: 7px 12px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
}
.insurance-badge:hover {
  transform: translateY(-1px);
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.30);
}

/* Underwritten line (now generic) */
.underwritten {
  color: rgba(255,255,255,0.72);
  font-size: 0.92rem;
  margin-left: 10px;
}

/* Insurance mini menu popover */
.insurance-info {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.ins-pop {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  width: 280px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(10,12,18,0.88);
  backdrop-filter: blur(14px);
  box-shadow: 0 26px 80px rgba(0,0,0,0.55);
  padding: 12px;
  display: none;
  z-index: 9999;
}
.ins-pop.open { display: block; }

.ins-pop-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
  padding: 4px 2px 10px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
  margin-bottom: 10px;
}
.ins-title{
  font-weight: 800;
  letter-spacing: .2px;
  color: rgba(255,255,255,0.92);
}
.ins-x{
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.90);
  border-radius: 10px;
  padding: 6px 9px;
  cursor: pointer;
}

.ins-links{
  display:flex;
  flex-direction:column;
  gap: 8px;
}
.ins-link{
  text-decoration:none;
  padding: 10px 10px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.88);
  font-weight: 600;
  transition: background .12s ease, border-color .12s ease, transform .12s ease;
}
.ins-link:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,215,120,0.25);
}
.ins-micro{
  margin-top: 10px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.35;
}

/* ===== Location modal ===== */
.loc-modal{
  position: fixed;
  inset: 0;
  display: none;
  z-index: 10000;
}
.loc-modal.open{ display:block; }

.loc-backdrop{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(6px);
}

.loc-card{
  position: relative;
  width: min(520px, 92vw);
  margin: 90px auto 0;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(10,12,18,0.92);
  box-shadow: 0 30px 90px rgba(0,0,0,0.65);
  padding: 18px;
}

.loc-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 12px;
}
.loc-kicker{
  font-size: 0.82rem;
  color: rgba(255,215,120,0.75);
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.loc-card h3{
  margin: 0;
  font-size: 1.2rem;
  color: rgba(255,255,255,0.95);
}
.loc-x{
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.92);
  border-radius: 12px;
  padding: 8px 10px;
  cursor: pointer;
}

.loc-sub{
  margin: 10px 0 14px;
  color: rgba(255,255,255,0.72);
  line-height: 1.45;
}

.loc-label{
  display:block;
  font-size: 0.86rem;
  color: rgba(255,255,255,0.78);
  margin-bottom: 6px;
}

.loc-row{
  display:flex;
  gap: 10px;
  align-items:center;
}

.loc-row input{
  flex: 1;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  color: #fff;
  outline: none;
}
.loc-row input::placeholder{
  color: rgba(255,255,255,0.45);
}

.loc-btn{
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.92);
  font-weight: 800;
  cursor: pointer;
}
.loc-btn.primary{
  border-color: rgba(255,215,120,0.55);
  background: linear-gradient(180deg, rgba(255,215,120,0.22), rgba(255,215,120,0.08));
}

.loc-status{
  margin-top: 10px;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.70);
}
.loc-status.ok{ color: rgba(170, 255, 200, 0.92); }
.loc-status.error{ color: rgba(255, 170, 170, 0.92); }

.loc-mini{
  margin-top: 10px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.35;
}


/* =========================
   TOP NAVBAR - SMALL BANNER OVERRIDE
   Paste at bottom of css/style.css
========================= */

.top-navbar{
  padding: 0; /* keep it tight */
}

.top-nav-content{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  padding: 8px 0;                 /* ↓ smaller */
  min-height: 44px;               /* ↓ smaller than main navbar */
}

.insurance-info{
  display:flex;
  align-items:center;
  gap: 10px;
  flex-wrap: wrap;
}

.insurance-badge{
  font-size: 0.78rem;             /* ↓ smaller */
  padding: 6px 10px;              /* ↓ smaller */
  line-height: 1;
}

.underwritten{
  font-size: 0.78rem;             /* ↓ smaller */
  line-height: 1.2;
  opacity: .82;
}

.top-nav-utils{
  display:flex;
  align-items:center;
  gap: 18px;
}

.location span,
.contact-info .hours{
  font-size: 0.78rem;             /* ↓ smaller */
  opacity: .85;
}

.change-location{
  font-size: 0.78rem;
  margin-left: 8px;
  text-decoration: underline;
  opacity: .95;
}

.contact-info .phone{
  font-size: 0.82rem;             /* ↓ smaller */
  font-weight: 700;
}

/* =========================
   HERO BUTTONS (FIX)
========================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}

/* Primary */
.btn-primary {
  background: linear-gradient(135deg, #c7b27c 0%, #d4c29d 100%);
  color: #0a0c12;
  box-shadow: 0 8px 20px rgba(199, 178, 124, 0.28);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(199, 178, 124, 0.38);
}

.btn-primary:active {
  transform: translateY(0px);
  box-shadow: 0 6px 16px rgba(199, 178, 124, 0.22);
}

/* Secondary */
.btn-secondary {
  background: rgba(255, 255, 255, 0.65);
  color: #0a0c12;
  border-color: rgba(14, 19, 32, 0.22);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.06);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(14, 19, 32, 0.32);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.10);
}

.btn-secondary:active {
  transform: translateY(0px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.06);
}

/* =========================
   FOOTER
========================= */

.footer {
  background: #0a0c12;
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 0 40px;
  margin-top: 80px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-brand {
  font-family: 'DM Serif Display', serif;
  font-size: 1.5rem;
  color: white;
}

.footer-info {
  flex: 1;
  max-width: 600px;
}

.footer-info p {
  margin-bottom: 8px;
  font-size: 0.9rem;
  opacity: 0.8;
}

/* =========================
   FAMILY FOCUS SECTION
========================= */

.family-focus {
  padding: 110px 0;
  background: #f8f9fb;
}

.section-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 3vw, 2.6rem);
  text-align: center;
  margin-bottom: 24px;
  color: #0a0c12;
}

.section-intro {
  max-width: 760px;
  margin: 0 auto 70px;
  text-align: center;
  font-size: 1.05rem;
  line-height: 1.75;
  color: #5a6375;
}

.family-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 50px;
}

.family-item {
  text-align: center;
  padding: 20px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.family-item:hover {
  transform: translateY(-6px);
}

.family-item h3 {
  font-size: 1.2rem;
  margin-bottom: 14px;
  color: #0a0c12;
}

.family-item p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #6b7280;
}

.family-cta {
  margin-top: 60px;
  text-align: center;
}

.btn-gold {
  display: inline-block;
  padding: 16px 36px;
  background: linear-gradient(135deg, #c7b27c 0%, #d4c29d 100%);
  color: #0a0c12;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(199, 178, 124, 0.35);
}


/* =========================
   WHY SECTION (REFINED LAYERED)
========================= */

.why-section {
  padding: 120px 0;
  background: #ffffff;
}

.why-wrapper {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Background Image Layer */
.why-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 32px;

  background:
    linear-gradient(
      rgba(10, 12, 18, 0.45),
      rgba(10, 12, 18, 0.45)
    ),
    url('../images/bk2.png') center / cover no-repeat;

  z-index: 1;
}

/* White Card Overlay */
.why-card {
  position: relative;
  z-index: 2;

  width: 75%;                 /* smaller so image shows on sides */
  max-width: 820px;           /* tighter premium width */

  padding: 70px 80px;
  border-radius: 28px;

  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);

  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.18);

  text-align: center;
}

/* Typography */
.why-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin-bottom: 24px;
  color: #0a0c12;
}

.why-subtitle {
  font-size: 1.05rem;
  color: #4a5468;
  margin-bottom: 55px;
  line-height: 1.7;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* 3 Column Layout */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 50px;
}

.why-item h3 {
  font-size: 1.15rem;
  margin-bottom: 14px;
  color: #0a0c12;
}

.why-item p {
  color: #4a5468;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* CTA Area */
.why-actions {
  margin-top: 10px;
}

/* ABOUT HERO PARALLAX (Fixed + Cleaner Rendering) */
.about-hero {
  height: 500px;
  background: url('../images/aboutbk.png') center center no-repeat;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;

  /* improves rendering quality */
  transform: translateZ(0);
  backface-visibility: hidden;
  will-change: transform;
}

/* Dark overlay */
.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10,12,18,0.6);
  z-index: 1;
}

.about-overlay {
  position: relative;
  z-index: 2;
  padding: 60px;
  border-radius: 20px;
  text-align: center;
  color: white;
}

.about-overlay h1 {
  font-family: 'DM Serif Display', serif;
  font-size: 3rem;
}

/* CONTENT SECTIONS */
.about-section {
  padding: 100px 0;
  background: #ffffff;
}

.about-section.light {
  background: #f8f9fb;
}

.about-section h2 {
  font-family: 'DM Serif Display', serif;
  margin-bottom: 20px;
}

.about-section p {
  max-width: 800px;
  margin-bottom: 20px;
  color: #4a5468;
}

/* MID PARALLAX SECTION */
.about-parallax {
  padding: 120px 0;
  background: url('../images/aboutbk.png') center center no-repeat;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  color: white;

  transform: translateZ(0);
  backface-visibility: hidden;
  will-change: transform;
}

.about-parallax::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10,12,18,0.7);
}

.about-content {
  position: relative;
  z-index: 2;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 40px;
  margin-top: 40px;
}

/* =========================
   ABOUT PAGE – FIXED BACKGROUND (PHOTO STAYS)
========================= */

body.about-page{
  background: transparent !important;
  position: relative;
}

body.about-page::before{
  content:"";
  position: fixed;
  inset: 0;
  z-index: -2;
  background: url("../images/aboutbk.png") center / cover no-repeat;
  transform: translateZ(0);
  will-change: transform;
}

body.about-page::after{
  content:"";
  position: fixed;
  inset: 0;
  z-index: -1;
  background: rgba(10,12,18,0.28);
}

body.about-page .about-hero,
body.about-page .about-parallax{
  background: none !important;
  background-attachment: initial !important;
}

body.about-page .about-section{
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(4px);
  border-top: 1px solid rgba(14, 19, 32, 0.08);
}

body.about-page .about-section.light{
  background: rgba(248,249,251,0.98);
}

/* =========================
   HOME: Family Focus (Luxury background like other tabs)
========================= */

.family-focus.luxe-bg{
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 110px 0;
  background: transparent;
}

.family-focus.luxe-bg::before{
  content:"";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(1200px 600px at 20% 10%, rgba(255, 215, 120, 0.14), transparent 60%),
    radial-gradient(900px 520px at 80% 15%, rgba(120, 170, 255, 0.10), transparent 55%),
    linear-gradient(180deg, rgba(0,0,0,0.55), rgba(0,0,0,0.88)),
    url("../images/seconpage.png") center / cover no-repeat;
  transform: translateZ(0);
}

.family-focus.luxe-bg::after{
  content:"";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(6,8,12,0.55);
  backdrop-filter: blur(2px);
}

.family-focus.luxe-bg .section-title{
  color: rgba(255,255,255,0.96);
}

.family-focus.luxe-bg .section-intro{
  color: rgba(255,255,255,0.78);
}

.family-focus.luxe-bg .family-grid{
  margin-top: 55px;
}

.family-focus.luxe-bg .family-item{
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
  border-radius: 18px;
  box-shadow: 0 25px 70px rgba(0,0,0,0.35);
}

.family-focus.luxe-bg .family-item h3{
  color: rgba(255,255,255,0.92);
}

.family-focus.luxe-bg .family-item p{
  color: rgba(255,255,255,0.72);
}

.family-focus.luxe-bg .family-cta .btn-gold{
  box-shadow: 0 12px 28px rgba(199, 178, 124, 0.22);
}

html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}
