/* ============================================================
   UNICARE HEALTH GROUP — GLOBAL STYLESHEET
   Premium Mobile Primary Care | Los Angeles, CA
   ============================================================ */

/* ---- GOOGLE FONTS ---- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Playfair+Display:wght@400;600;700&family=Montserrat:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

/* ---- CSS VARIABLES ---- */
:root {
  /* Backgrounds */
  --bg-page:        #FAFAF7;
  --bg-white:       #FFFFFF;
  --bg-cream:       #F9F5EC;
  --bg-cream-deep:  #F3EBDA;
  --bg-dark:        #111111;
  --bg-black:       #0A0A0A;

  /* Gold Palette */
  --gold:           #C9941A;
  --gold-light:     #F1BD40;
  --gold-bright:    #F5D87A;
  --gold-dark:      #7A5218;
  --gold-muted:     #E2C06B;
  --gold-subtle-bg: #FDF8EC;

  /* Gradient */
  --grad-gold:      linear-gradient(135deg, #F5D87A 0%, #F1BD40 42%, #C9941A 100%);
  --grad-gold-soft: linear-gradient(135deg, #FDF8EC 0%, #FAF0D5 100%);
  --grad-hero:      linear-gradient(148deg, #FFFDF9 0%, #FBF5E4 48%, #F5EDD0 100%);

  /* Text */
  --text-ink:       #1A1A1A;
  --text-warm:      #5C4F3D;
  --text-muted:     #9A8F7E;
  --text-light:     rgba(255,255,255,0.65);

  /* Typography */
  --font-display:   'Cormorant Garamond', Georgia, serif;
  --font-heading:   'Playfair Display', Georgia, serif;
  --font-ui:        'Montserrat', -apple-system, sans-serif;
  --font-body:      'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Sizing */
  --max-w:          1200px;
  --max-w-wide:     1360px;

  /* Radius */
  --r-sm:  6px;
  --r-md:  12px;
  --r-lg:  20px;
  --r-xl:  28px;

  /* Shadow */
  --sh-sm:   0 2px 12px rgba(0,0,0,0.06);
  --sh-md:   0 8px 32px rgba(0,0,0,0.09);
  --sh-lg:   0 20px 60px rgba(0,0,0,0.12);
  --sh-gold: 0 8px 28px rgba(201,148,26,0.22);

  /* Motion */
  --ease:   cubic-bezier(0.4, 0, 0.2, 1);
  --t:      all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --t-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  /* Section spacing */
  --section-y: 110px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; overflow-x: clip; max-width: 100%; }
body {
  font-family: var(--font-body);
  background: var(--bg-page);
  color: var(--text-ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
  max-width: 100%;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, select, textarea { font-family: inherit; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, .h1 {
  font-family: var(--font-display);
  font-size: clamp(46px, 6.5vw, 78px);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--text-ink);
}
h2, .h2 {
  font-family: var(--font-heading);
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: -0.01em;
  color: var(--text-ink);
}
h3, .h3 {
  font-family: var(--font-heading);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-ink);
}
p {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.78;
  color: var(--text-warm);
}
.lead {
  font-size: 19px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-warm);
}
.label-tag {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
}
.container--wide {
  max-width: var(--max-w-wide);
  margin: 0 auto;
  padding: 0 28px;
}
.section { padding: var(--section-y) 0; }
.section--cream     { background: var(--bg-cream); }
.section--white     { background: var(--bg-white); }
.section--dark      { background: var(--bg-dark); }
.section--gold-soft { background: var(--grad-gold-soft); }
.text-center { text-align: center; }

.section-header { margin-bottom: 60px; }
.section-header .label-tag { margin-bottom: 14px; }
.section-header h2 { margin-bottom: 18px; }
.section-header p { max-width: 580px; }
.section-header.centered { text-align: center; }
.section-header.centered p { margin: 0 auto; }

.gold-line {
  display: block;
  width: 48px;
  height: 3px;
  background: var(--grad-gold);
  border-radius: 2px;
  margin: 20px 0;
}
.section-header.centered .gold-line { margin: 20px auto; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 36px;
  border-radius: var(--r-sm);
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: var(--t);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.22), transparent);
  transition: left 0.55s ease;
}
.btn:hover::before { left: 100%; }

.btn-gold {
  background: var(--grad-gold);
  color: var(--bg-dark);
  box-shadow: var(--sh-gold);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(201,148,26,0.32);
}

.btn-outline {
  background: transparent;
  color: var(--text-ink);
  border: 1.5px solid rgba(26,26,26,0.25);
}
.btn-outline:hover {
  background: var(--text-ink);
  color: var(--bg-white);
  border-color: var(--text-ink);
  transform: translateY(-2px);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid rgba(201,148,26,0.4);
}
.btn-outline-gold:hover {
  background: var(--grad-gold);
  color: var(--bg-dark);
  border-color: transparent;
  transform: translateY(-2px);
}

.btn-white {
  background: var(--bg-white);
  color: var(--bg-dark);
}
.btn-white:hover {
  background: var(--bg-cream);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: var(--bg-white);
  border: 1.5px solid rgba(255,255,255,0.3);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
  transform: translateY(-2px);
}

.btn-lg { padding: 18px 48px; font-size: 14px; }
.btn-sm { padding: 10px 24px; font-size: 12px; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 22px 0;
  transition: var(--t);
}
/* Suppress transition on initial solid-state paint (dark-hero pages) */
.navbar.no-transition {
  transition: none !important;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 14px 0;
  box-shadow: 0 2px 24px rgba(0,0,0,0.07);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo img {
  height: 42px;
  width: auto;
  transition: var(--t);
}
.navbar.scrolled .nav-logo img { height: 36px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 38px;
}
.nav-links a {
  font-family: var(--font-ui);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-ink);
  position: relative;
  transition: var(--t);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1.5px;
  background: var(--grad-gold);
  transition: width 0.3s var(--ease);
  border-radius: 2px;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav-phone {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-ink);
  letter-spacing: 0.03em;
  transition: var(--t);
}
.nav-phone i { color: var(--gold); font-size: 13px; }
.nav-phone:hover { color: var(--gold); }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text-ink);
  border-radius: 2px;
  transition: var(--t);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg-white);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  padding: 80px 24px 48px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 600;
  color: var(--text-ink);
  text-align: center;
  transition: var(--t);
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav .btn { margin-top: 8px; }
.mobile-nav-close {
  position: absolute;
  top: 22px; right: 24px;
  font-size: 22px;
  color: var(--text-ink);
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
  transition: var(--t);
}
.mobile-nav-close:hover { color: var(--gold); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(148deg, rgba(255,253,249,0.83) 0%, rgba(251,245,228,0.81) 48%, rgba(245,237,208,0.81) 100%),
    url('../Images/Hero_Home.webp') center / cover no-repeat;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}
.hero::before {
  content: '';
  position: absolute;
  top: -20%; right: -15%;
  width: 65vw; height: 65vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(241,189,64,0.10) 0%, transparent 68%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -10%; left: -10%;
  width: 44vw; height: 44vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,148,26,0.07) 0%, transparent 68%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-content { max-width: 640px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 20px;
  border-radius: 100px;
  background: rgba(201,148,26,0.08);
  border: 1px solid rgba(201,148,26,0.22);
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 30px;
  max-width: 100%;
}
.hero-badge .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: blink 2.2s ease-in-out infinite;
}
@keyframes blink {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.35; transform: scale(0.75); }
}

.hero h1 { margin-bottom: 26px; }
.hero h1 em {
  font-style: italic;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc {
  font-size: 19px;
  line-height: 1.73;
  color: var(--text-warm);
  margin-bottom: 42px;
}
.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  padding-top: 36px;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 500;
  color: var(--text-warm);
  letter-spacing: 0.03em;
}
.hero-trust-item i { color: var(--gold); font-size: 14px; }

/* Hero Card (right side) */
.hero-visual {
  display: flex;
  justify-content: center;
}
.hero-card {
  background: var(--bg-white);
  border-radius: var(--r-xl);
  padding: 48px 40px;
  box-shadow: var(--sh-lg);
  border: 1px solid rgba(201,148,26,0.12);
  width: 100%;
  max-width: 430px;
  position: relative;
  overflow: hidden;
}
.hero-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--grad-gold);
}
.hero-card-logo {
  display: block;
  width: 100px;
  margin: 0 auto 30px;
}
.hero-card-tagline {
  text-align: center;
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 600;
  color: var(--text-ink);
  margin-bottom: 6px;
}
.hero-card-sub {
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 32px;
}
.hero-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}
.hero-stat {
  background: var(--bg-cream);
  border-radius: var(--r-md);
  padding: 18px 12px;
  text-align: center;
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 5px;
}
.hero-stat-lbl {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--text-warm);
}
.hero-card-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.hero-card-contact a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-warm);
  transition: var(--t);
}
.hero-card-contact i { color: var(--gold); width: 16px; font-size: 13px; }
.hero-card-contact a:hover { color: var(--gold); }

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--bg-dark);
  padding: 22px 0;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-ui);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}
.trust-item i { color: var(--gold-light); font-size: 15px; }
.trust-sep {
  width: 1px; height: 22px;
  background: rgba(255,255,255,0.12);
}

/* ============================================================
   WHAT WE DO (Intro)
   ============================================================ */
.intro-section { padding: var(--section-y) 0; }
.intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
.intro-content .label-tag { margin-bottom: 14px; }
.intro-content h2 { margin-bottom: 22px; }
.intro-content .lead { margin-bottom: 18px; }
.intro-content p:not(.lead) { margin-bottom: 32px; }
.intro-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}
.pill {
  padding: 7px 18px;
  border-radius: 100px;
  border: 1.5px solid rgba(201,148,26,0.28);
  background: var(--gold-subtle-bg);
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  color: var(--gold-dark);
  letter-spacing: 0.04em;
}
.intro-visual { position: relative; }
.intro-visual-card {
  border-radius: var(--r-xl);
  aspect-ratio: 3/4;
  background: var(--grad-gold-soft);
  border: 1px solid rgba(201,148,26,0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.intro-visual-icon {
  font-size: 110px;
  color: var(--gold);
  opacity: 0.18;
}
.intro-logo-centered {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.intro-logo-centered img {
  width: 180px;
  opacity: 0.55;
}
/* Full-bleed photo inside intro card */
.intro-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius: inherit;
}
.intro-visual-card picture {
  display: contents;
}
.intro-float-badge {
  position: absolute;
  bottom: -18px;
  left: -24px;
  background: var(--bg-white);
  border-radius: var(--r-md);
  padding: 18px 22px;
  box-shadow: var(--sh-md);
  border: 1px solid rgba(201,148,26,0.12);
  display: flex;
  align-items: center;
  gap: 14px;
}
.float-badge-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--grad-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-dark);
  font-size: 20px;
  flex-shrink: 0;
  box-shadow: var(--sh-gold);
}
.float-badge-lbl {
  font-family: var(--font-ui);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 3px;
}
.float-badge-val {
  font-family: var(--font-ui);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-ink);
}

/* ============================================================
   SERVICES GRID
   ============================================================ */
.services-section { padding: var(--section-y) 0; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 60px;
}
.svc-card {
  background: var(--bg-white);
  border-radius: var(--r-lg);
  padding: 38px 34px;
  border: 1px solid rgba(0,0,0,0.05);
  transition: var(--t);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.svc-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.svc-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--sh-md);
  border-color: rgba(201,148,26,0.14);
}
.svc-card:hover::after { transform: scaleX(1); }
.svc-icon {
  width: 62px; height: 62px;
  border-radius: 16px;
  background: var(--gold-subtle-bg);
  border: 1px solid rgba(201,148,26,0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--gold);
  margin-bottom: 26px;
  transition: var(--t);
}
.svc-card:hover .svc-icon {
  background: var(--grad-gold);
  color: var(--bg-dark);
  border-color: transparent;
  box-shadow: var(--sh-gold);
}
.svc-card h3 { font-size: 21px; margin-bottom: 12px; }
.svc-card p { font-size: 15px; line-height: 1.72; margin-bottom: 22px; }
.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-ui);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--gold);
  transition: var(--t);
}
.svc-link i { transition: transform 0.3s var(--ease); }
.svc-card:hover .svc-link i { transform: translateX(5px); }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-section { padding: var(--section-y) 0; }
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.why-visual { position: relative; overflow: hidden; }
.why-img-wrap {
  border-radius: var(--r-xl);
  aspect-ratio: 3/4;
  background: linear-gradient(145deg, #FDF6E3 0%, #F5E8B0 100%);
  border: 1px solid rgba(201,148,26,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.why-img-logo {
  width: 55%;
  opacity: 0.35;
}
/* Full-bleed photo inside why card */
.why-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius: inherit;
}
.why-img-wrap picture {
  display: contents;
}
.why-float {
  position: absolute;
  top: 36px; right: -16px;
  background: var(--bg-dark);
  color: var(--bg-white);
  border-radius: var(--r-md);
  padding: 22px 26px;
  text-align: center;
  box-shadow: var(--sh-md);
}
.why-float-num {
  display: block;
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}
.why-float-lbl {
  font-family: var(--font-ui);
  font-size: 9.5px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 5px;
}

.why-content .label-tag { margin-bottom: 14px; }
.why-content h2 { margin-bottom: 18px; }
.why-content > p { margin-bottom: 38px; }
.why-list { display: flex; flex-direction: column; gap: 22px; }
.why-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.why-item-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--grad-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-dark);
  font-size: 17px;
  flex-shrink: 0;
  box-shadow: var(--sh-gold);
}
.why-item-body h4 {
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 700;
  color: var(--text-ink);
  margin-bottom: 5px;
  letter-spacing: 0;
  text-transform: none;
}
.why-item-body p { font-size: 14px; line-height: 1.65; }

/* ============================================================
   BENEFITS
   ============================================================ */
.benefits-section { padding: var(--section-y) 0; }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 60px;
}
.benefit-card {
  background: var(--bg-white);
  border-radius: var(--r-lg);
  padding: 40px 34px;
  text-align: center;
  border: 1px solid rgba(0,0,0,0.05);
  transition: var(--t);
  position: relative;
}
.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-md);
}
.benefit-icon {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--gold-subtle-bg);
  border: 1px solid rgba(201,148,26,0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 26px;
  font-size: 30px;
  color: var(--gold);
  transition: var(--t);
}
.benefit-card:hover .benefit-icon {
  background: var(--grad-gold);
  color: var(--bg-dark);
  border-color: transparent;
  box-shadow: var(--sh-gold);
}
.benefit-card h3 { font-size: 20px; margin-bottom: 12px; }
.benefit-card p { font-size: 15px; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.hiw-section {
  background: var(--bg-dark);
  padding: var(--section-y) 0;
  position: relative;
  overflow: hidden;
}
.hiw-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 75% 40%, rgba(201,148,26,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.hiw-section .section-header .label-tag { color: var(--gold-light); }
.hiw-section h2 { color: var(--bg-white); }
.hiw-section .section-header p { color: var(--text-light); }
.hiw-section .gold-line { margin: 20px auto; }

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 60px;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 44px;
  left: calc(16.7% + 22px);
  right: calc(16.7% + 22px);
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(201,148,26,0.35) 20%,
    rgba(241,189,64,0.50) 50%,
    rgba(201,148,26,0.35) 80%,
    transparent 100%
  );
}
.step { text-align: center; }
.step-num {
  width: 88px; height: 88px;
  border-radius: 50%;
  background: rgba(201,148,26,0.09);
  border: 1px solid rgba(201,148,26,0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 26px;
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 700;
  color: var(--gold-light);
  position: relative;
  z-index: 1;
  transition: var(--t);
}
.step:hover .step-num {
  background: rgba(201,148,26,0.16);
  border-color: rgba(201,148,26,0.5);
}
.step-i {
  font-size: 22px;
  color: var(--gold-light);
  margin-bottom: 14px;
}
.step h3 { color: var(--bg-white); font-size: 21px; margin-bottom: 12px; }
.step p { color: var(--text-light); font-size: 15px; line-height: 1.72; }

/* ============================================================
   STATS
   ============================================================ */
.stats-section {
  padding: 80px 0;
  background: var(--grad-gold-soft);
  border-top: 1px solid rgba(201,148,26,0.14);
  border-bottom: 1px solid rgba(201,148,26,0.14);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
}
.stat-item {
  padding: 32px 24px;
  position: relative;
}
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 20%; right: 0;
  height: 60%;
  width: 1px;
  background: rgba(201,148,26,0.22);
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(44px, 5vw, 64px);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-lbl {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--text-warm);
}

/* ============================================================
   WHO WE SERVE
   ============================================================ */
.serve-section { padding: var(--section-y) 0; }
.serve-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 60px;
}
.serve-card {
  background: var(--bg-white);
  border-radius: var(--r-lg);
  padding: 30px 26px;
  border: 1px solid rgba(201,148,26,0.09);
  display: flex;
  align-items: flex-start;
  gap: 18px;
  transition: var(--t);
}
.serve-card:hover {
  background: var(--gold-subtle-bg);
  border-color: rgba(201,148,26,0.22);
  transform: translateY(-3px);
  box-shadow: var(--sh-sm);
}
.serve-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--grad-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-dark);
  font-size: 17px;
  flex-shrink: 0;
}
.serve-card h4 {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-ink);
  margin-bottom: 5px;
  letter-spacing: 0;
  text-transform: none;
}
.serve-card p { font-size: 13px; line-height: 1.62; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { padding: var(--section-y) 0; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 60px;
}
.t-card {
  background: var(--bg-white);
  border-radius: var(--r-lg);
  padding: 34px 30px;
  border: 1px solid rgba(0,0,0,0.05);
  position: relative;
  overflow: hidden;
  transition: var(--t);
}
.t-card::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 130px;
  color: rgba(201,148,26,0.08);
  position: absolute;
  top: -14px; left: 16px;
  line-height: 1;
  pointer-events: none;
}
.t-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.t-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 18px;
}
.t-stars i { color: var(--gold-light); font-size: 13px; }
.t-text {
  font-size: 15px;
  font-style: italic;
  line-height: 1.78;
  color: var(--text-warm);
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}
.t-author {
  display: flex;
  align-items: center;
  gap: 13px;
  padding-top: 18px;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.t-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--grad-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 700;
  color: var(--bg-dark);
  flex-shrink: 0;
}
.t-name {
  font-family: var(--font-ui);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-ink);
  margin-bottom: 2px;
}
.t-role { font-size: 12px; color: var(--text-muted); }

/* ============================================================
   INSURANCE
   ============================================================ */
.insurance-section { padding: 80px 0; }
.insurance-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 40px;
}
.ins-pill {
  padding: 11px 26px;
  border-radius: 100px;
  border: 1.5px solid rgba(201,148,26,0.24);
  background: var(--gold-subtle-bg);
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-ink);
  letter-spacing: 0.04em;
  transition: var(--t);
}
.ins-pill:hover {
  background: var(--grad-gold);
  color: var(--bg-dark);
  border-color: transparent;
  transform: translateY(-2px);
}
.ins-note {
  text-align: center;
  margin-top: 28px;
  font-size: 14px;
  color: var(--text-muted);
}
.ins-note a {
  color: var(--gold);
  font-weight: 500;
  transition: var(--t);
}
.ins-note a:hover { text-decoration: underline; }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: var(--bg-dark);
  padding: var(--section-y) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 900px; height: 900px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,148,26,0.07) 0%, transparent 68%);
  pointer-events: none;
}
.cta-section .label-tag { color: var(--gold-light); margin-bottom: 18px; }
.cta-section h2 { color: var(--bg-white); max-width: 680px; margin: 0 auto 18px; }
.cta-section > .container > p {
  color: var(--text-light);
  font-size: 18px;
  max-width: 540px;
  margin: 0 auto 42px;
}
.cta-btns {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-contacts {
  display: flex;
  gap: 52px;
  justify-content: center;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.07);
  flex-wrap: wrap;
}
.cta-contact-i {
  display: flex;
  align-items: center;
  gap: 16px;
}
.cta-icon-box {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(201,148,26,0.11);
  border: 1px solid rgba(201,148,26,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: 17px;
}
.cta-contact-lbl {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 4px;
}
.cta-contact-val {
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 600;
  color: var(--bg-white);
  transition: var(--t);
}
.cta-contact-i a:hover .cta-contact-val { color: var(--gold-light); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bg-black);
  padding: 84px 0 40px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 36px;
}
.footer-logo { height: 34px; width: auto; margin-bottom: 22px; display: block; }
.footer-brand p {
  font-size: 13.5px;
  line-height: 1.75;
  color: rgba(255,255,255,0.45);
  margin-bottom: 28px;
}
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 36px; height: 36px;
  border-radius: 9px;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.45);
  font-size: 14px;
  transition: var(--t);
}
.footer-socials a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,148,26,0.08);
}
.footer-col h5 {
  font-family: var(--font-ui);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bg-white);
  margin-bottom: 22px;
}
.footer-links { display: flex; flex-direction: column; gap: 11px; }
.footer-links a {
  font-size: 13.5px;
  color: rgba(255,255,255,0.45);
  transition: var(--t);
}
.footer-links a:hover { color: var(--gold); }
.footer-contact-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 12px;
}
.footer-contact-row i {
  color: var(--gold-light);
  font-size: 12.5px;
  margin-top: 2px;
  flex-shrink: 0;
  width: 14px;
}
.footer-contact-row span,
.footer-contact-row a {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.55;
  transition: var(--t);
}
.footer-contact-row a:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}
.footer-bottom p {
  font-size: 12.5px;
  color: rgba(255,255,255,0.28);
}
.footer-legal {
  display: flex;
  gap: 22px;
}
.footer-legal a {
  font-size: 12.5px;
  color: rgba(255,255,255,0.28);
  transition: var(--t);
}
.footer-legal a:hover { color: var(--gold); }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: var(--bg-dark);
  padding: 164px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 25% 55%, rgba(201,148,26,0.09) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--grad-gold);
}
.page-hero .label-tag { color: var(--gold-light); margin-bottom: 18px; }
.page-hero h1 { color: var(--bg-white); margin-bottom: 18px; }
.page-hero .lead { color: var(--text-light); max-width: 620px; margin: 0 auto; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  margin-top: 28px;
  font-family: var(--font-ui);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.35);
  position: relative;
  z-index: 1;
}
.breadcrumb a { color: var(--gold-light); transition: var(--t); }
.breadcrumb a:hover { color: var(--bg-white); }
.breadcrumb i { font-size: 9px; }
.page-hero > .container { position: relative; z-index: 1; }

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.svc-detail { padding: var(--section-y) 0; }
.svc-detail.alt { background: var(--bg-cream); }
.svc-detail-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.svc-detail.alt .svc-detail-inner { direction: rtl; }
.svc-detail.alt .svc-detail-content { direction: ltr; }
.svc-detail-visual {
  --svc-bg-position: center;
  --svc-bg-size: cover;
  border-radius: var(--r-xl);
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, rgba(253,248,236,0.34) 0%, rgba(245,216,122,0.10) 46%, rgba(201,148,26,0.16) 100%);
  border: 1px solid rgba(201,148,26,0.13);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.52),
    0 14px 40px rgba(122,82,24,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  direction: ltr;
}
/* Photo layer fills the card and stays clipped to the existing rounded corners. */
.svc-detail-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--svc-bg);
  background-size: var(--svc-bg-size);
  background-position: var(--svc-bg-position);
  background-repeat: no-repeat;
  opacity: 1;
  filter: saturate(0.96) contrast(1.02) brightness(0.94);
  transform: scale(1.01);
  z-index: 0;
}
.svc-detail-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(145deg, rgba(255,250,241,0.08) 0%, rgba(241,189,64,0.08) 42%, rgba(201,148,26,0.18) 100%),
    radial-gradient(circle at 50% 46%, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0) 36%, rgba(122,82,24,0.08) 100%);
  z-index: 1;
}
/* The icon remains centered as a soft brand mark above image and glaze. */
.svc-detail-visual i {
  font-size: clamp(86px, 9vw, 110px);
  color: rgba(255,247,226,0.52);
  filter: drop-shadow(0 8px 22px rgba(122,82,24,0.10));
  position: relative;
  z-index: 2;
}
.svc-detail-content .label-tag { margin-bottom: 14px; }
.svc-detail-content h2 { margin-bottom: 18px; }
.svc-detail-content > p { margin-bottom: 30px; }
.svc-feat-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 34px; }
.svc-feat-item {
  display: flex;
  align-items: flex-start;
  gap: 13px;
}
.svc-feat-item i {
  color: var(--gold);
  font-size: 15px;
  margin-top: 3px;
  flex-shrink: 0;
}
.svc-feat-item span { font-size: 15px; color: var(--text-warm); line-height: 1.62; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.mission-visual-wrap {
  position: relative;
  overflow: hidden;
}
.mission-visual-card {
  border-radius: var(--r-xl);
  aspect-ratio: 3 / 4;
  background: linear-gradient(145deg, #FDF6E3 0%, #F5E8B0 100%);
  border: 1px solid rgba(201,148,26,0.13);
  overflow: hidden;
  position: relative;
}
.mission-visual-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}
.mission-quote-card {
  position: absolute;
  right: 0;
  bottom: 0;
  background: var(--bg-dark);
  color: white;
  border-radius: var(--r-md);
  padding: 28px 32px;
  max-width: 280px;
  box-shadow: var(--sh-lg);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 60px;
}
.value-card {
  background: var(--bg-white);
  border-radius: var(--r-lg);
  padding: 36px 30px;
  text-align: center;
  border: 1px solid rgba(0,0,0,0.05);
  transition: var(--t);
}
.value-card:hover { transform: translateY(-5px); box-shadow: var(--sh-md); }
.value-icon {
  width: 72px; height: 72px;
  border-radius: 20px;
  background: var(--gold-subtle-bg);
  border: 1px solid rgba(201,148,26,0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  font-size: 26px;
  color: var(--gold);
  transition: var(--t);
}
.value-card:hover .value-icon {
  background: var(--grad-gold);
  color: var(--bg-dark);
  border-color: transparent;
  box-shadow: var(--sh-gold);
}
.value-card h3 { font-size: 19px; margin-bottom: 12px; }
.value-card p { font-size: 14px; line-height: 1.72; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 60px;
}
.team-card {
  background: var(--bg-white);
  border-radius: var(--r-lg);
  padding: 36px 30px;
  text-align: center;
  border: 1px solid rgba(0,0,0,0.05);
  transition: var(--t);
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.team-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--grad-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 30px;
  color: var(--bg-dark);
}
.team-card h3 { font-size: 18px; margin-bottom: 5px; }
.team-role {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.team-card p { font-size: 14px; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section { padding: var(--section-y) 0; }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
}
.contact-info .label-tag { margin-bottom: 14px; }
.contact-info h2 { margin-bottom: 18px; }
.contact-info > p { margin-bottom: 40px; }
.contact-items { display: flex; flex-direction: column; gap: 24px; }
.c-item { display: flex; gap: 18px; align-items: flex-start; }
.c-icon {
  width: 50px; height: 50px;
  border-radius: 12px;
  background: var(--grad-gold);
  display: flex; align-items: center; justify-content: center;
  color: var(--bg-dark);
  font-size: 18px;
  flex-shrink: 0;
  box-shadow: var(--sh-gold);
}
.c-lbl {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.c-val {
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-ink);
}
.c-val a { transition: var(--t); }
.c-val a:hover { color: var(--gold); }

.form-wrap {
  background: var(--bg-cream);
  border-radius: var(--r-xl);
  padding: 48px;
  border: 1px solid rgba(201,148,26,0.1);
}
.form-wrap h3 { margin-bottom: 8px; }
.form-wrap > p { margin-bottom: 32px; font-size: 15px; }
.form-group { margin-bottom: 22px; }
.form-label {
  display: block;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--text-warm);
  margin-bottom: 8px;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid rgba(0,0,0,0.1);
  border-radius: var(--r-sm);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-ink);
  background: var(--bg-white);
  transition: var(--t);
  outline: none;
  appearance: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,148,26,0.1);
}
.form-textarea { resize: vertical; min-height: 130px; line-height: 1.65; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-section { padding: var(--section-y) 0; }
.faq-list { max-width: 780px; margin: 60px auto 0; }
.faq-item { border-bottom: 1px solid rgba(0,0,0,0.08); }
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-ink);
  gap: 24px;
  transition: var(--t);
  user-select: none;
}
.faq-q:hover { color: var(--gold); }
.faq-q i { color: var(--gold); font-size: 13px; transition: transform 0.3s var(--ease); flex-shrink: 0; }
.faq-item.open .faq-q i { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease), padding 0.3s ease;
}
.faq-a-inner { padding: 0 0 24px; font-size: 15px; color: var(--text-warm); line-height: 1.78; }
.faq-item.open .faq-a { max-height: 400px; }

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.72s var(--ease), transform 0.72s var(--ease);
}
.reveal.in { opacity: 1; transform: translateY(0); }

.reveal-l {
  opacity: 0;
  transform: translateX(-42px);
  transition: opacity 0.72s var(--ease), transform 0.72s var(--ease);
}
.reveal-l.in { opacity: 1; transform: translateX(0); }

.reveal-r {
  opacity: 0;
  transform: translateX(42px);
  transition: opacity 0.72s var(--ease), transform 0.72s var(--ease);
}
.reveal-r.in { opacity: 1; transform: translateX(0); }

.d1 { transition-delay: 0.08s; }
.d2 { transition-delay: 0.16s; }
.d3 { transition-delay: 0.24s; }
.d4 { transition-delay: 0.32s; }
.d5 { transition-delay: 0.40s; }
.d6 { transition-delay: 0.48s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  :root { --section-y: 86px; }

  .hero-inner,
  .intro-grid,
  .why-inner,
  .about-story-inner,
  .contact-inner { grid-template-columns: 1fr; gap: 52px; }

  .hero {
    text-align: center;
    padding: 140px 0 80px;
    background:
      linear-gradient(148deg, rgba(255,253,249,0.83) 0%, rgba(251,245,228,0.81) 48%, rgba(245,237,208,0.81) 100%),
      url('../Images/Hero_Home_mobile.webp') right center / cover no-repeat;
  }
  .hero-content { max-width: 100%; }
  .hero-cta, .hero-trust { justify-content: center; }
  .hero-visual { display: none; }

  .footer-top { grid-template-columns: 1fr 1fr; gap: 48px; }

  .services-grid,
  .benefits-grid,
  .values-grid,
  .team-grid { grid-template-columns: repeat(2, 1fr); }

  .steps { grid-template-columns: 1fr 1fr; }
  .steps::before { display: none; }

  .testimonials-grid { grid-template-columns: 1fr 1fr; }

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

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2)::after { display: none; }

  .svc-detail.alt .svc-detail-inner { direction: ltr; }
  .svc-detail-inner { grid-template-columns: 1fr; gap: 48px; }

  .intro-float-badge { position: static; margin-top: 20px; }
  .why-float { right: 0; }
}

@media (max-width: 768px) {
  :root { --section-y: 68px; }

  .nav-links, .nav-phone { display: none; }
  .nav-toggle { display: flex; }

  .services-grid,
  .benefits-grid,
  .values-grid,
  .team-grid,
  .steps,
  .testimonials-grid,
  .serve-grid,
  .stats-grid,
  .footer-top,
  .form-row { grid-template-columns: 1fr; }

  .stat-item::after { display: none; }

  .cta-contacts { flex-direction: column; align-items: center; gap: 24px; }

  .form-wrap { padding: 32px 22px; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }

  .trust-bar-inner { gap: 20px; }
  .trust-sep { display: none; }

  .hero-trust { flex-direction: column; gap: 14px; }

  .why-float { position: static; margin-top: -16px; }
  /* Mobile WebP is now cropped to the subject area (y=650–1950 of original).
     aspect-ratio matches the 600×435 crop; object-position centers it. */
  .why-img-wrap { aspect-ratio: 4/3; }
  .why-photo    { object-position: center center; }
}

@media (max-width: 520px) {
  .container { padding: 0 18px; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }
  .cta-btns { flex-direction: column; align-items: center; }
  .cta-btns .btn { width: 100%; max-width: 300px; }
  .footer-top { grid-template-columns: 1fr; }
  .insurance-pills { gap: 10px; }
  /* Prevent any standalone button from blowing out its container */
  .btn { white-space: normal; max-width: 100%; }
}
