:root {
  --navy: #0a1628;
  --navy-dark: #050b15;
  --navy-light: #1e293b;
  --blue: #2563eb;
  --blue-light: #3b82f6;
  --blue-glow: #60a5fa;
  --gold: #2563eb;
  --gold-light: #3b82f6;
  --cream: #ffffff;
  --cream-dark: #f8fafc;
  --charcoal: #0f172a;
  --gray: #475569;
  --gray-light: #94a3b8;
  --gray-soft: #cbd5e1;
  --border: #e2e8f0;
  --border-soft: #f1f5f9;
  --white: #ffffff;
  --shadow-xs: 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
  --shadow-lg: 0 24px 60px rgba(15, 23, 42, 0.12);
  --shadow-xl: 0 40px 80px rgba(15, 23, 42, 0.18);
  --shadow-blue: 0 20px 60px rgba(37, 99, 235, 0.25);
  --serif: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max-width: 1280px;
  --max-width-narrow: 880px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

::selection {
  background: var(--blue);
  color: var(--white);
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.7;
  color: var(--charcoal);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'ss01', 'ss02', 'cv01', 'cv11';
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--navy);
  text-decoration: none;
  transition: color 0.3s var(--ease-out);
}

a:hover { color: var(--blue); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--sans);
  font-weight: 600;
  line-height: 1.1;
  color: var(--navy);
  letter-spacing: -0.025em;
}

h1 {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  letter-spacing: -0.04em;
  font-weight: 600;
  line-height: 1.05;
}

h1 em {
  font-style: italic;
  font-weight: 500;
  color: var(--blue-glow);
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 1.2rem;
  letter-spacing: -0.035em;
  font-weight: 600;
  line-height: 1.15;
}

h2 em {
  font-style: italic;
  font-weight: 500;
  color: var(--blue);
}

h3 {
  font-size: clamp(1.3rem, 2.4vw, 1.65rem);
  margin-bottom: 0.85rem;
  letter-spacing: -0.022em;
  font-weight: 600;
}

h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  letter-spacing: -0.015em;
  font-weight: 600;
}

p { margin-bottom: 1.2rem; }

ul, ol { margin: 0 0 1.5rem 1.5rem; }

li { margin-bottom: 0.5rem; }

strong {
  font-weight: 600;
  color: var(--navy);
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.8rem;
}

.container-narrow {
  max-width: var(--max-width-narrow);
  margin: 0 auto;
  padding: 0 1.8rem;
}

/* FLOATING CTA */
.floating-cta {
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  bottom: max(1.4rem, env(safe-area-inset-bottom));
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  align-items: flex-end;
}

.fab {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  transition: all 0.3s var(--ease-out);
  border: none;
  cursor: pointer;
}

.fab svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  display: block;
  position: relative;
  z-index: 2;
}

.fab-phone {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%);
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.45);
  animation: fabPulse 2.4s ease-out infinite;
}

.fab-phone:hover {
  background: linear-gradient(135deg, var(--blue-light) 0%, var(--blue) 100%);
  transform: scale(1.08) translateY(-2px);
  color: var(--white);
}

.fab-email {
  background: var(--navy);
  box-shadow: 0 8px 24px rgba(10, 22, 40, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.fab-email:hover {
  background: var(--navy-light);
  transform: scale(1.08) translateY(-2px);
  color: var(--white);
}

.fab::after {
  content: attr(data-tooltip);
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  background: var(--navy);
  color: var(--white);
  padding: 0.55rem 0.95rem;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s var(--ease-out);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.25);
  font-family: var(--sans);
}

.fab::before {
  content: '';
  position: absolute;
  right: calc(100% + 6px);
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 6px solid var(--navy);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s var(--ease-out);
}

.fab:hover::after,
.fab:hover::before {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

@keyframes fabPulse {
  0% { box-shadow: 0 10px 30px rgba(37, 99, 235, 0.45), 0 0 0 0 rgba(59, 130, 246, 0.55); }
  70% { box-shadow: 0 10px 30px rgba(37, 99, 235, 0.45), 0 0 0 18px rgba(59, 130, 246, 0); }
  100% { box-shadow: 0 10px 30px rgba(37, 99, 235, 0.45), 0 0 0 0 rgba(59, 130, 246, 0); }
}

@media (max-width: 600px) {
  .floating-cta {
    right: 1rem;
    bottom: 1rem;
    bottom: max(1rem, env(safe-area-inset-bottom));
    gap: 0.6rem;
  }
  .fab {
    width: 52px;
    height: 52px;
  }
  .fab svg {
    width: 20px;
    height: 20px;
  }
  .fab::after,
  .fab::before { display: none; }
}

/* SCROLL REVEAL */
[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.1s var(--ease-out), transform 1.1s var(--ease-out);
  will-change: opacity, transform;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal-delay="1"].is-visible { transition-delay: 0.1s; }
[data-reveal-delay="2"].is-visible { transition-delay: 0.2s; }
[data-reveal-delay="3"].is-visible { transition-delay: 0.3s; }
[data-reveal-delay="4"].is-visible { transition-delay: 0.4s; }
[data-reveal-delay="5"].is-visible { transition-delay: 0.5s; }

[data-reveal="left"] { transform: translateX(-50px); }
[data-reveal="left"].is-visible { transform: translateX(0); }

[data-reveal="right"] { transform: translateX(50px); }
[data-reveal="right"].is-visible { transform: translateX(0); }

[data-reveal="scale"] { transform: scale(0.95); }
[data-reveal="scale"].is-visible { transform: scale(1); }

/* HEADER */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 22, 40, 0.0);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(0);
  transition: all 0.4s var(--ease-out);
}

.site-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 22, 40, 0.6) 0%, rgba(10, 22, 40, 0) 100%);
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.4s var(--ease-out);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.92);
  border-bottom-color: var(--border);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
}

.site-header.scrolled::before { opacity: 0; }

.site-header .header-inner { position: relative; z-index: 1; }

.site-header .logo {
  color: var(--white);
  display: inline-flex;
  flex-direction: column;
  line-height: 1.05;
}
.site-header .logo > span:first-of-type { color: var(--blue-glow); font-style: italic; }
.site-header .logo .logo-sub {
  color: rgba(255, 255, 255, 0.7);
  font-style: normal;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-top: 0.3rem;
  font-family: var(--sans);
}
.site-header .main-nav > a,
.site-header .main-nav > .has-dropdown > a {
  color: rgba(255, 255, 255, 0.92);
}
.site-header .menu-toggle span { background: var(--white); }

.site-header.scrolled .logo,
.site-header .main-nav.open ~ .logo { color: var(--navy); }
.site-header.scrolled .logo > span:first-of-type { color: var(--blue); }
.site-header.scrolled .logo .logo-sub { color: var(--gray); }
.site-header.scrolled .main-nav > a,
.site-header.scrolled .main-nav > .has-dropdown > a {
  color: var(--navy);
}
.site-header.scrolled .menu-toggle span { background: var(--navy); }

.main-nav.open > a,
.main-nav.open > .has-dropdown > a { color: var(--navy) !important; }

.header-cta,
.site-header .header-cta {
  background: var(--white) !important;
  color: var(--navy) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.8);
}

.site-header.scrolled .header-cta {
  background: var(--navy) !important;
  color: var(--white) !important;
  border-color: var(--navy);
}

body.has-fixed-header { padding-top: 0; }

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.4rem 1.8rem;
  max-width: var(--max-width);
  margin: 0 auto;
  transition: padding 0.4s var(--ease-out);
}

.scrolled .header-inner { padding: 1rem 1.8rem; }

.logo {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.025em;
  transition: opacity 0.3s var(--ease-out);
  display: inline-flex !important;
  flex-direction: column !important;
  line-height: 1.05;
  text-decoration: none;
  align-items: flex-start;
}

.logo > span {
  display: block;
  width: 100%;
}

.logo > span:first-of-type {
  color: var(--blue);
  font-style: italic;
  font-weight: 600;
}

.logo .logo-sub {
  font-size: 0.6rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.22em !important;
  text-transform: uppercase !important;
  color: inherit;
  font-style: normal !important;
  margin-top: 0.35rem !important;
  opacity: 0.7;
  font-family: var(--sans) !important;
  display: block !important;
}

.logo:hover { opacity: 0.85; }
.logo:hover .logo-sub { opacity: 1; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 2.4rem;
}

.main-nav > a,
.main-nav > .has-dropdown > a {
  font-size: 0.88rem;
  color: var(--navy);
  font-weight: 500;
  letter-spacing: -0.005em;
  position: relative;
  padding: 0.4rem 0;
}

.main-nav > a::after,
.main-nav > .has-dropdown > a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s var(--ease-out);
}

.main-nav > a:hover::after,
.main-nav > .has-dropdown:hover > a::after {
  transform: scaleX(1);
  transform-origin: left;
}

.main-nav > a:hover,
.main-nav > .has-dropdown > a:hover { color: var(--blue); }

.has-dropdown { position: relative; }

.dropdown {
  position: absolute;
  top: 100%;
  left: -1rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  min-width: 260px;
  padding: 0.8rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.4s var(--ease-out);
  margin-top: 0.6rem;
}

.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a {
  display: block;
  padding: 0.65rem 1.4rem;
  color: var(--charcoal);
  font-size: 0.92rem;
  transition: all 0.25s var(--ease-out);
}

.dropdown a:hover {
  background: var(--cream-dark);
  color: var(--blue);
  padding-left: 1.7rem;
}

.header-cta {
  background: var(--navy);
  color: var(--white) !important;
  padding: 0.75rem 1.5rem;
  border-radius: 100px;
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: -0.005em;
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.header-cta::after { display: none !important; }

.header-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%);
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
  z-index: 0;
}

.header-cta span,
.header-cta { z-index: 1; position: relative; }

.header-cta:hover::before { opacity: 1; }

.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-blue);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 101;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 1.5px;
  background: var(--navy);
  margin: 6px 0;
  transition: 0.4s var(--ease-out);
  transform-origin: center;
}

.menu-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
.menu-toggle.open span { background: var(--navy) !important; }

@media (max-width: 980px) {
  .menu-toggle { display: block; }
  .main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100vh;
    height: 100dvh;
    width: 100%;
    background: #ffffff;
    background: rgba(255, 255, 255, 0.985);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 5.5rem 1.8rem 3rem;
    transform: translateX(100%);
    transition: transform 0.5s var(--ease-out);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 99;
  }
  .main-nav.open { transform: translateX(0); }
  .site-header.scrolled .main-nav { background: #ffffff; }
  .main-nav > a,
  .main-nav > .has-dropdown > a {
    padding: 0.95rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 1.25rem;
    font-family: var(--sans);
    font-weight: 600;
    letter-spacing: -0.015em;
    color: var(--navy);
  }
  .main-nav > a::after,
  .main-nav > .has-dropdown > a::after { display: none; }
  .main-nav .dropdown {
    position: static;
    box-shadow: none;
    border: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
    padding: 0.4rem 0 0.6rem 0.5rem;
    margin: 0;
    border-radius: 0;
    min-width: 0;
  }
  .main-nav .dropdown a {
    padding: 0.45rem 0;
    font-family: var(--sans);
    color: var(--gray);
    font-size: 0.96rem;
    font-weight: 400;
  }
  .main-nav .has-dropdown { border-bottom: 1px solid var(--border); }
  .main-nav .has-dropdown > a { border-bottom: none; }
  .header-cta,
  .site-header .header-cta {
    margin: 1.4rem 0 0;
    text-align: center;
    padding: 1rem;
    font-size: 1rem;
    background: var(--navy) !important;
    color: var(--white) !important;
    display: block;
  }
}

/* HERO */
.hero {
  background: var(--navy);
  color: var(--white);
  padding: 11rem 0 7rem;
  position: relative;
  overflow: hidden;
  min-height: 92vh;
  display: flex;
  align-items: center;
}

.hero-image {
  position: absolute;
  inset: -10% -8% -8% -8%;
  width: 116%;
  height: 118%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  opacity: 0.55;
  filter: saturate(1.08) contrast(1.02);
  will-change: transform;
  transform-origin: 50% 50%;
  animation: kenBurns 20s linear infinite alternate;
}

@keyframes kenBurns {
  from {
    transform: scale(1.08) translate(-1.5%, 1%);
  }
  to {
    transform: scale(1.28) translate(2%, -1.5%);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 22, 40, 0.55) 0%, rgba(10, 22, 40, 0.7) 60%, rgba(10, 22, 40, 0.92) 100%),
    linear-gradient(135deg, rgba(10, 22, 40, 0.45) 0%, rgba(10, 22, 40, 0.2) 50%, rgba(10, 22, 40, 0.65) 100%);
  z-index: 1;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 30%, rgba(59, 130, 246, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse 70% 50% at 85% 80%, rgba(37, 99, 235, 0.15) 0%, transparent 55%);
  pointer-events: none;
  animation: heroGlow 18s ease-in-out infinite alternate;
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 30%, transparent 80%);
  pointer-events: none;
}

@keyframes heroGlow {
  0% { opacity: 0.85; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.05); }
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.8rem;
  max-width: 1000px;
  font-weight: 300;
}

.hero h1 em {
  font-style: italic;
  color: var(--blue-glow);
  font-weight: 400;
}

.hero .subhead {
  font-size: clamp(1.1rem, 1.6vw, 1.3rem);
  color: rgba(255, 255, 255, 0.78);
  max-width: 720px;
  margin-bottom: 2.5rem;
  line-height: 1.6;
  font-weight: 300;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue-glow);
  margin-bottom: 1.6rem;
  font-weight: 500;
  font-family: var(--sans);
}

.hero-eyebrow::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--blue-glow);
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.5rem;
}

/* PAGE HEADER */
.page-header {
  background: var(--navy);
  color: var(--white);
  padding: 9rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 80% 30%, rgba(59, 130, 246, 0.25) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(37, 99, 235, 0.15) 0%, transparent 55%);
  pointer-events: none;
}

.page-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 30%, transparent 80%);
  pointer-events: none;
}

.page-header-content {
  position: relative;
  z-index: 1;
}

.page-header h1 {
  color: var(--white);
  margin-bottom: 1.2rem;
  font-weight: 300;
  max-width: 900px;
}

.page-header h1 em {
  font-style: italic;
  color: var(--blue-glow);
  font-weight: 400;
}

.page-header .subhead {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.18rem;
  max-width: 740px;
  line-height: 1.6;
  font-weight: 300;
}

.breadcrumb {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 1.3rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}

.breadcrumb a { color: rgba(255, 255, 255, 0.7); }
.breadcrumb a:hover { color: var(--blue-glow); }

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1.05rem 2rem;
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: -0.005em;
  border-radius: 100px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.4s var(--ease-out);
  text-align: center;
  line-height: 1.2;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--blue-light) 0%, var(--blue) 100%);
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
  z-index: -1;
  border-radius: inherit;
}

.btn-gold {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.35);
}

.btn-gold:hover {
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 18px 50px rgba(37, 99, 235, 0.5);
}

.btn-gold:hover::before { opacity: 1; }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.95);
  color: var(--navy);
  border-color: rgba(255, 255, 255, 0.95);
  transform: translateY(-2px);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.btn-navy:hover {
  color: var(--white);
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 18px 50px rgba(37, 99, 235, 0.4);
}

.btn-navy:hover::before { opacity: 1; }

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

/* SECTIONS */
.section {
  padding: 7rem 0;
  position: relative;
}

.section-sm { padding: 4rem 0; }

.section-cream {
  background: var(--cream-dark);
}

.section-navy {
  background: var(--navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.section-navy::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(59, 130, 246, 0.18) 0%, transparent 60%);
  pointer-events: none;
}

.section-navy > * { position: relative; z-index: 1; }

.section-navy h2,
.section-navy h3 { color: var(--white); }

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 1.4rem;
  font-weight: 600;
  font-family: var(--sans);
}

.section-eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--blue);
}

.text-center .section-eyebrow,
.section-intro .section-eyebrow { justify-content: center; }

.section-intro {
  max-width: 760px;
  margin: 0 auto 4rem;
  text-align: center;
}

.section-intro h2 { margin-bottom: 1.2rem; }

.section-intro p {
  font-size: 1.15rem;
  color: var(--gray);
  font-weight: 300;
}

/* GRID */
.grid {
  display: grid;
  gap: 2rem;
}

.grid-2 { grid-template-columns: repeat(auto-fit, minmax(380px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(310px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }

/* CARDS */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 2.4rem;
  border-radius: 16px;
  transition: all 0.5s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s var(--ease-out);
}

.card:hover::before { transform: scaleX(1); }

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--blue);
}

.card h3 { margin-bottom: 0.5rem; }

.card-meta {
  font-size: 0.76rem;
  color: var(--blue);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
  font-weight: 600;
  font-family: var(--sans);
}

.neighborhood-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 0;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.5s var(--ease-out);
  display: flex;
  flex-direction: column;
  position: relative;
}

.neighborhood-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.5s var(--ease-out);
  pointer-events: none;
}

.neighborhood-card:hover::before { opacity: 1; }

.neighborhood-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(37, 99, 235, 0.4);
}

.neighborhood-card .card-body {
  padding: 2.4rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

.neighborhood-card .card-meta {
  font-size: 0.72rem;
  color: var(--blue);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.7rem;
  font-weight: 600;
}

.neighborhood-card h3 {
  font-family: var(--serif);
  margin-bottom: 0.85rem;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.neighborhood-card p {
  color: var(--gray);
  font-size: 0.97rem;
  line-height: 1.65;
  flex: 1;
  font-weight: 300;
}

.neighborhood-card .card-link {
  color: var(--navy);
  font-weight: 500;
  font-size: 0.86rem;
  letter-spacing: 0.04em;
  margin-top: 1.4rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  text-transform: uppercase;
  transition: all 0.4s var(--ease-out);
}

.neighborhood-card .card-link::after {
  content: '→';
  transition: transform 0.4s var(--ease-out);
  display: inline-block;
  font-size: 1.1em;
}

.neighborhood-card:hover .card-link {
  color: var(--blue);
  gap: 0.7rem;
}

.neighborhood-card:hover .card-link::after { transform: translateX(6px); }

/* CONTENT */
.content {
  max-width: var(--max-width-narrow);
  margin: 0 auto;
}

.content h2 {
  margin-top: 4rem;
  margin-bottom: 1.4rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--border);
}

.content h2:first-child { margin-top: 0; }

.content h3 {
  margin-top: 2.4rem;
  margin-bottom: 0.8rem;
  color: var(--navy);
}

.content p {
  margin-bottom: 1.3rem;
  font-size: 1.08rem;
  color: #1e293b;
  line-height: 1.75;
}

.content ul, .content ol {
  margin-bottom: 1.6rem;
  padding-left: 1.5rem;
}

.content li {
  margin-bottom: 0.6rem;
  font-size: 1.05rem;
  color: #1e293b;
  line-height: 1.7;
}

.content blockquote {
  border-left: 3px solid var(--blue);
  padding: 0.8rem 0 0.8rem 1.8rem;
  margin: 2.4rem 0;
  font-style: italic;
  color: var(--gray);
  font-size: 1.2rem;
  font-family: var(--serif);
  font-weight: 400;
}

/* CALLOUT */
.callout {
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  border: 1px solid var(--border);
  border-left: 3px solid var(--blue);
  padding: 1.8rem 2rem;
  margin: 2.4rem 0;
  border-radius: 0 12px 12px 0;
  box-shadow: var(--shadow-xs);
  position: relative;
  overflow: hidden;
}

.callout::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.callout strong { color: var(--navy); }
.callout p:last-child { margin-bottom: 0; }

.callout-navy,
.content .callout-navy {
  background: linear-gradient(135deg, var(--navy) 0%, #0a1628 100%);
  color: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(96, 165, 250, 0.2);
  border-left: 3px solid var(--blue-glow);
}

.callout-navy p,
.content .callout-navy p {
  color: rgba(255, 255, 255, 0.92);
}

.callout-navy strong,
.content .callout-navy strong { color: var(--blue-glow); }

.callout-navy::before {
  background: radial-gradient(circle, rgba(96, 165, 250, 0.15) 0%, transparent 70%);
}

/* QUICK FACTS */
.facts-box {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid var(--border);
  padding: 2.2rem;
  border-radius: 16px;
  margin: 2.4rem 0;
  box-shadow: var(--shadow-xs);
  position: relative;
  overflow: hidden;
}

.facts-box::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.facts-box h4 {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 1.3rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--border);
  font-weight: 500;
  letter-spacing: -0.02em;
  position: relative;
}

.facts-box dl {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 0.7rem 1.2rem;
  font-size: 0.96rem;
  position: relative;
}

.facts-box dt {
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.005em;
}

.facts-box dd { color: var(--charcoal); }

@media (max-width: 600px) {
  .facts-box dl {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }
  .facts-box dd {
    margin-bottom: 0.7rem;
    color: var(--gray);
  }
}

/* PROS / CONS */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.8rem;
  margin: 2.4rem 0;
}

@media (max-width: 700px) {
  .pros-cons { grid-template-columns: 1fr; }
}

.pros, .cons {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 1.8rem 2rem;
  border-radius: 16px;
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.pros:hover, .cons:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.pros::before, .cons::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
}

.pros::before { background: linear-gradient(90deg, var(--blue), var(--blue-light)); }
.cons::before { background: linear-gradient(90deg, var(--gray-light), var(--gray-soft)); }

.pros h4, .cons h4 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.pros h4 { color: var(--blue); }
.cons h4 { color: var(--gray); }

.pros ul, .cons ul {
  margin: 0;
  padding-left: 1.2rem;
}

.pros li, .cons li {
  font-size: 0.97rem;
  margin-bottom: 0.7rem;
  line-height: 1.6;
}

/* CTA STRIP */
.cta-strip {
  background: linear-gradient(135deg, var(--navy) 0%, #0a1628 50%, var(--navy-light) 100%);
  color: var(--white);
  padding: 4.5rem 3rem;
  border-radius: 24px;
  text-align: center;
  margin: 4rem 0;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.cta-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 80% 50%, rgba(59, 130, 246, 0.3) 0%, transparent 60%),
    radial-gradient(ellipse 50% 35% at 20% 100%, rgba(37, 99, 235, 0.2) 0%, transparent 60%);
  pointer-events: none;
}

.cta-strip::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  pointer-events: none;
}

.cta-strip > * { position: relative; z-index: 1; }

.cta-strip h3 {
  color: var(--white);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 0.8rem;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.cta-strip h3 em {
  font-style: italic;
  color: var(--blue-glow);
}

.cta-strip p {
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 1.8rem;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
  font-size: 1.08rem;
}

/* TESTIMONIALS */
.testimonial {
  background: var(--white);
  padding: 2.5rem 2.4rem;
  border-radius: 16px;
  border: 1px solid var(--border);
  position: relative;
  transition: all 0.5s var(--ease-out);
  overflow: hidden;
}

.testimonial::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 24px;
  font-family: var(--serif);
  font-size: 8rem;
  color: var(--blue);
  opacity: 0.12;
  line-height: 1;
  font-style: italic;
}

.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(37, 99, 235, 0.3);
}

.testimonial p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--charcoal);
  line-height: 1.65;
  margin-bottom: 1.2rem;
  position: relative;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.testimonial cite {
  font-style: normal;
  font-weight: 600;
  color: var(--blue);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: var(--sans);
}

/* FORMS */
.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 3rem;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.3rem;
  margin-bottom: 1.3rem;
}

@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 2rem; }
}

.form-group { margin-bottom: 1.3rem; }

.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.95rem 1.1rem;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: var(--sans);
  font-size: 1rem;
  background: var(--white);
  color: var(--charcoal);
  transition: all 0.3s var(--ease-out);
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
  border-color: var(--gray-soft);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
  min-height: 130px;
  resize: vertical;
}

.form-note {
  font-size: 0.85rem;
  color: var(--gray);
  margin-top: 0.6rem;
}

/* LIFESTYLE */
.lifestyle-block {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 2.2rem;
  border-radius: 16px;
  margin-bottom: 1.6rem;
  transition: all 0.4s var(--ease-out);
}

.lifestyle-block:hover {
  border-color: rgba(37, 99, 235, 0.3);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.lifestyle-block h3 {
  color: var(--navy);
  font-size: 1.5rem;
  margin-bottom: 0.9rem;
}

.lifestyle-block ul { margin-bottom: 0; }

/* DECISION GRID */
.decision-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem;
  margin: 2.4rem 0;
}

.decision-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  padding: 1.3rem 1.6rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  align-items: center;
  transition: all 0.4s var(--ease-out);
}

.decision-item:hover {
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  border-color: var(--blue);
  transform: translateX(6px);
  box-shadow: var(--shadow);
}

.decision-item .want {
  font-weight: 500;
  color: var(--charcoal);
}

.decision-item .recommend {
  color: var(--blue);
  font-weight: 600;
  font-family: var(--serif);
  font-size: 1.05rem;
  letter-spacing: -0.015em;
}

@media (max-width: 600px) {
  .decision-item {
    grid-template-columns: 1fr;
    gap: 0.4rem;
  }
}

/* BLOG */
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 2.2rem;
  border-radius: 16px;
  transition: all 0.5s var(--ease-out);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.blog-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s var(--ease-out);
}

.blog-card:hover::before { transform: scaleX(1); }

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(37, 99, 235, 0.4);
}

.blog-card .blog-tag {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.9rem;
  font-weight: 600;
}

.blog-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.8rem;
  flex: 1;
  line-height: 1.25;
}

.blog-card p {
  font-size: 0.97rem;
  color: var(--gray);
  margin-bottom: 1.2rem;
  line-height: 1.65;
  font-weight: 300;
}

.blog-card .read-more {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: all 0.4s var(--ease-out);
}

.blog-card .read-more::after {
  content: '→';
  transition: transform 0.4s var(--ease-out);
}

.blog-card:hover .read-more {
  color: var(--blue);
  gap: 0.7rem;
}

.blog-card:hover .read-more::after { transform: translateX(4px); }

/* FOOTER */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.65);
  padding: 6rem 0 2rem;
  font-size: 0.93rem;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
}

.site-footer::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(37, 99, 235, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.site-footer .container { position: relative; z-index: 1; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

@media (max-width: 800px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

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

.footer-brand .logo {
  color: var(--white);
  font-size: 1.7rem;
  display: inline-flex;
  flex-direction: column;
  margin-bottom: 1.3rem;
  line-height: 1.05;
}

.footer-brand .logo > span:first-of-type { color: var(--blue-glow); }

.footer-brand .logo .logo-sub {
  color: rgba(255, 255, 255, 0.65);
  font-style: normal;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-top: 0.4rem;
  font-family: var(--sans);
}

.footer-brand p {
  font-size: 0.93rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 1rem;
  font-weight: 300;
}

.footer-col h4 {
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
  font-weight: 600;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col li { margin-bottom: 0.7rem; }

.footer-col a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.92rem;
  transition: all 0.3s var(--ease-out);
  position: relative;
  display: inline-block;
}

.footer-col a:hover {
  color: var(--blue-glow);
  transform: translateX(4px);
}

.footer-contact a {
  display: block;
  color: var(--white);
  font-size: 0.92rem;
  margin-bottom: 0.7rem;
}

.footer-contact .phone {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--blue-glow);
  margin-bottom: 0.5rem;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.footer-contact .social-links {
  display: flex !important;
  gap: 0.7rem;
  margin-top: 1.2rem;
  margin-bottom: 0.5rem;
}

.footer-contact a.social-link,
.social-links a.social-link {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 38px !important;
  height: 38px !important;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.75);
  transition: all 0.3s var(--ease-out);
  background: transparent;
  margin-bottom: 0 !important;
  padding: 0;
  flex-shrink: 0;
  font-size: 0;
  line-height: 0;
}

.footer-contact a.social-link svg,
.social-links a.social-link svg {
  width: 16px !important;
  height: 16px !important;
  fill: currentColor;
  display: block;
}

.footer-contact a.social-link:hover,
.social-links a.social-link:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.35);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.02em;
}

.footer-bottom .dre { letter-spacing: 0.08em; }

.footer-disclosure {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2rem 0 1.5rem;
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.6rem;
  align-items: start;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}

@media (max-width: 600px) {
  .footer-disclosure {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }
}

.eho-badge {
  width: 56px;
  height: 56px;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
  background: transparent;
}

.eho-badge::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
}

.eho-badge::after {
  content: '=';
  font-family: var(--sans);
  font-weight: 700;
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1;
  z-index: 1;
}

.footer-disclosure-text strong {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
}

.footer-disclosure-text p {
  margin-bottom: 0.6rem;
}

.footer-disclosure-text p:last-child { margin-bottom: 0; }


/* UTILITIES */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.divider {
  height: 1px;
  background: var(--border);
  border: none;
  margin: 4rem 0;
}

.divider-gold {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
  border: none;
  margin: 1.4rem 0 1.8rem;
}

.divider-gold-center {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
  border: none;
  margin: 1.4rem auto 1.8rem;
}

[id] { scroll-margin-top: 100px; }

/* STATS */
.stat-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 3rem 0;
}

.stat {
  text-align: center;
  padding: 2.2rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: all 0.5s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.stat::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.5s var(--ease-out);
  pointer-events: none;
}

.stat:hover::before { opacity: 1; }

.stat:hover {
  transform: translateY(-6px);
  border-color: rgba(37, 99, 235, 0.3);
  box-shadow: var(--shadow-lg);
}

.stat .num {
  font-family: var(--serif);
  font-size: 2.8rem;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 500;
  display: block;
  line-height: 1;
  margin-bottom: 0.7rem;
  letter-spacing: -0.03em;
}

.stat .label {
  font-size: 0.78rem;
  color: var(--gray);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
}

/* AGENT INTRO */
.agent-intro {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}

@media (max-width: 900px) {
  .agent-intro { grid-template-columns: 1fr; gap: 2.5rem; }
}

.agent-photo-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.6s var(--ease-out);
  isolation: isolate;
  box-shadow: var(--shadow-xl);
  background: #e2e8f0;
}

.agent-photo-frame::before {
  content: '';
  position: absolute;
  inset: -8%;
  background-image: url('/images/office-bg.jpg');
  background-size: cover;
  background-position: center;
  filter: blur(14px) brightness(1.05) saturate(0.85);
  z-index: 0;
  transform: scale(1.05);
}

.agent-photo-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(15, 23, 42, 0.18) 100%),
    radial-gradient(ellipse at 70% 30%, rgba(255, 255, 255, 0.25) 0%, transparent 60%);
  z-index: 0;
  pointer-events: none;
}

.agent-photo-frame:hover {
  transform: translateY(-8px);
  box-shadow: 0 50px 100px rgba(15, 23, 42, 0.25);
}

.agent-photo-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  mix-blend-mode: multiply;
  filter: contrast(1.06) brightness(1.06) saturate(1.05);
  transition: transform 1.2s var(--ease-out);
  z-index: 1;
}

.agent-photo-frame:hover img { transform: scale(1.04); }

.agent-photo-frame .accent-block { display: none; }

.agent-credentials {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.agent-credentials .credential {
  display: flex;
  flex-direction: column;
}

.agent-credentials .label {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 0.3rem;
  font-weight: 600;
}

.agent-credentials .value {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--navy);
  font-weight: 500;
  letter-spacing: -0.015em;
}

.signature {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.6rem;
  color: var(--navy);
  margin-top: 1.5rem;
  font-weight: 400;
  letter-spacing: -0.02em;
}

/* PHOTO PLACEHOLDER */
.photo-placeholder {
  position: relative;
  background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 60%, #94a3b8 100%);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(15, 23, 42, 0.5);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  text-align: center;
  padding: 1.5rem;
}

.photo-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.04) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.photo-placeholder .ph-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  opacity: 0.3;
}

.photo-placeholder .ph-label {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.85);
  padding: 0.5rem 1rem;
  border-radius: 100px;
  backdrop-filter: blur(8px);
  font-size: 0.72rem;
  color: var(--navy);
  border: 1px solid rgba(15, 23, 42, 0.1);
}

/* NEIGHBORHOOD CARD WITH IMAGE */
.neighborhood-card .card-image {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
}

.neighborhood-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease-out);
}

.neighborhood-card:hover .card-image img { transform: scale(1.08); }

.neighborhood-card .card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10, 22, 40, 0.4) 100%);
}

.neighborhood-card .card-image .photo-placeholder {
  position: absolute;
  inset: 0;
  border-radius: 0;
}

/* FEATURED LISTINGS */
.listing-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.5s var(--ease-out);
}

.listing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.listing-card .listing-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
}

.listing-card .listing-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease-out);
}

.listing-card:hover .listing-image img { transform: scale(1.06); }

.listing-card .listing-image .photo-placeholder {
  position: absolute;
  inset: 0;
  border-radius: 0;
}

.listing-card .listing-body { padding: 1.6rem 1.8rem 1.8rem; }

.listing-card .listing-price {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--navy);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 0.4rem;
}

.listing-card .listing-address {
  font-size: 0.95rem;
  color: var(--gray);
  margin-bottom: 0.8rem;
}

.listing-card .listing-specs {
  display: flex;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--charcoal);
  font-weight: 500;
  padding-top: 0.8rem;
  border-top: 1px solid var(--border);
}

.listing-card .listing-specs span {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

/* PHOTO COLLAGE */
.photo-collage {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1rem;
  aspect-ratio: 4 / 3.2;
}

.photo-collage > *:nth-child(1) { grid-row: span 2; }

.photo-collage img,
.photo-collage .photo-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  transition: transform 1s var(--ease-out);
}

.photo-collage img:hover { transform: scale(1.03); }

/* MARQUEE */
.marquee {
  background: var(--navy);
  color: var(--white);
  padding: 1.4rem 0;
  overflow: hidden;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.marquee-track {
  display: flex;
  gap: 4rem;
  animation: marquee 40s linear infinite;
  width: max-content;
}

.marquee-item {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.5);
  white-space: nowrap;
  letter-spacing: -0.02em;
  font-weight: 400;
}

.marquee-item::before {
  content: '✦';
  margin-right: 4rem;
  color: var(--blue-glow);
  font-style: normal;
}

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

/* SPLIT FEATURE */
.split-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

@media (max-width: 900px) {
  .split-feature { grid-template-columns: 1fr; gap: 3rem; }
}

.feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.feature-list li {
  padding: 1.3rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 1.02rem;
  line-height: 1.6;
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  transition: all 0.4s var(--ease-out);
}

.feature-list li::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--blue);
  border-radius: 50%;
  margin-top: 0.55rem;
  flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.15);
  transition: all 0.4s var(--ease-out);
}

.feature-list li:hover { padding-left: 0.5rem; }
.feature-list li:hover::before {
  box-shadow: 0 0 0 6px rgba(37, 99, 235, 0.2);
  transform: scale(1.2);
}

.feature-list li:last-child { border-bottom: none; }

/* CALCULATOR */
.calc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

@media (max-width: 980px) {
  .calc-grid { grid-template-columns: 1fr; gap: 2rem; }
}

.calc-inputs {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 2.4rem;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.calc-inputs h3 {
  font-size: 1.3rem;
  margin-bottom: 0.4rem;
  color: var(--navy);
}

.calc-inputs .calc-subtitle {
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 1.8rem;
}

.calc-input-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-bottom: 1.2rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--border-soft);
}

.calc-input-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.calc-input-row label {
  display: block;
  font-size: 0.84rem;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 0.5rem;
  letter-spacing: 0.01em;
}

.calc-input-row .input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.calc-input-row .input-prefix,
.calc-input-row .input-suffix {
  position: absolute;
  color: var(--gray);
  font-size: 0.95rem;
  font-weight: 500;
  pointer-events: none;
}

.calc-input-row .input-prefix { left: 1rem; }
.calc-input-row .input-suffix { right: 1rem; }

.calc-input-row input[type="number"],
.calc-input-row input[type="text"] {
  width: 100%;
  padding: 0.85rem 1rem 0.85rem 2.2rem;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: var(--sans);
  font-size: 1.05rem;
  background: var(--white);
  color: var(--navy);
  font-weight: 600;
  transition: all 0.3s var(--ease-out);
  -moz-appearance: textfield;
}

.calc-input-row input.no-prefix { padding-left: 1rem; }
.calc-input-row input.with-suffix { padding-right: 2.5rem; }

.calc-input-row input::-webkit-outer-spin-button,
.calc-input-row input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.calc-input-row input:hover { border-color: var(--gray-soft); }

.calc-input-row input:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.calc-input-row .input-helper {
  font-size: 0.8rem;
  color: var(--gray);
  margin-top: 0.4rem;
  font-weight: 400;
}

.calc-input-row input[type="range"] {
  width: 100%;
  margin-top: 0.6rem;
  accent-color: var(--blue);
}

.calc-tabs {
  display: flex;
  gap: 0.5rem;
  background: var(--cream-dark);
  border-radius: 100px;
  padding: 0.3rem;
  margin-bottom: 1.4rem;
}

.calc-tab {
  flex: 1;
  background: transparent;
  border: none;
  padding: 0.55rem 0.8rem;
  border-radius: 100px;
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray);
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
}

.calc-tab.active {
  background: var(--white);
  color: var(--navy);
  box-shadow: var(--shadow-xs);
}

.calc-results {
  background: linear-gradient(135deg, var(--navy) 0%, #0a1628 50%, var(--navy-light) 100%);
  color: var(--white);
  padding: 2.8rem 2.4rem;
  border-radius: 16px;
  position: sticky;
  top: 110px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.calc-results::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 80% 30%, rgba(59, 130, 246, 0.25) 0%, transparent 60%),
    radial-gradient(ellipse 50% 35% at 20% 90%, rgba(37, 99, 235, 0.18) 0%, transparent 60%);
  pointer-events: none;
}

.calc-results > * { position: relative; z-index: 1; }

.calc-results .results-eyebrow {
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue-glow);
  font-weight: 600;
  margin-bottom: 0.8rem;
  display: block;
}

.calc-results .results-headline {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 400;
  line-height: 1;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 0.4rem;
}

.calc-results .results-headline .num {
  background: linear-gradient(135deg, var(--white) 0%, var(--blue-glow) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.calc-results .results-sub {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 300;
  margin-bottom: 2rem;
}

.calc-breakdown {
  list-style: none;
  margin: 0;
  padding: 1.8rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.calc-breakdown li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.7rem 0;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.calc-breakdown li:last-child { border-bottom: none; }

.calc-breakdown .label {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
}

.calc-breakdown .value {
  color: var(--white);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

.calc-breakdown li.total {
  margin-top: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 1.05rem;
}

.calc-breakdown li.total .label { color: var(--white); font-weight: 600; }

.calc-breakdown li.total .value {
  color: var(--blue-glow);
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.calc-bar {
  margin: 1.5rem 0;
  height: 10px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  overflow: hidden;
  display: flex;
}

.calc-bar-segment {
  height: 100%;
  transition: width 0.5s var(--ease-out);
}

.calc-bar-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.4rem;
  margin-top: 1rem;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.7);
}

.calc-bar-legend .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-right: 0.5rem;
  vertical-align: middle;
}

.calc-cta-block {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.15) 0%, rgba(96, 165, 250, 0.1) 100%);
  border: 1px solid rgba(96, 165, 250, 0.25);
  border-radius: 12px;
  padding: 1.4rem 1.6rem;
  margin-top: 2rem;
}

.calc-cta-block h4 {
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  font-weight: 500;
  letter-spacing: -0.015em;
}

.calc-cta-block p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1rem;
  font-weight: 300;
}

/* BLOG POST */
.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  align-items: center;
  margin-top: 1.5rem;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.04em;
}

.post-meta .meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.post-meta .meta-item::before {
  content: '';
  width: 4px;
  height: 4px;
  background: var(--blue-glow);
  border-radius: 50%;
}

.post-meta .meta-item:first-child::before { display: none; }

.post-author-bio {
  display: flex;
  gap: 1.4rem;
  align-items: center;
  background: var(--cream-dark);
  padding: 1.6rem 1.8rem;
  border-radius: 16px;
  margin: 3rem 0;
}

.post-author-bio .author-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 600;
  font-size: 1.2rem;
  letter-spacing: -0.01em;
}

.post-author-bio .author-text {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.55;
}

.post-author-bio .author-text strong {
  color: var(--navy);
  display: block;
  margin-bottom: 0.2rem;
  font-size: 1rem;
}

.post-author-bio .author-text a {
  color: var(--blue);
  font-weight: 500;
}

.post-tags {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin: 1rem 0 2rem;
}

.post-tag {
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(37, 99, 235, 0.08);
  padding: 0.4rem 0.85rem;
  border-radius: 100px;
  font-weight: 600;
}

.related-posts {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
}

.related-posts h3 {
  margin-bottom: 1.8rem;
  font-size: 1.5rem;
}

.blog-card.coming-soon {
  opacity: 0.55;
  cursor: not-allowed;
  pointer-events: none;
  position: relative;
}

.blog-card.coming-soon::after {
  content: 'Coming Soon';
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--cream-dark);
  color: var(--gray);
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 0.3rem 0.7rem;
  border-radius: 100px;
  z-index: 2;
}

.blog-card.coming-soon:hover {
  transform: none;
  box-shadow: var(--shadow-xs);
  border-color: var(--border);
}

.blog-card.coming-soon::before { display: none; }

/* GUIDE DOWNLOAD BLOCK */
.guide-download {
  display: grid;
  grid-template-columns: 130px 1fr auto;
  gap: 2.2rem;
  align-items: center;
  background: linear-gradient(135deg, var(--navy) 0%, #0a1628 60%, var(--navy-light) 100%);
  color: var(--white);
  padding: 2.2rem 2.6rem;
  border-radius: 20px;
  margin: 3rem 0;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.guide-download::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 30%, rgba(59, 130, 246, 0.28) 0%, transparent 60%),
    radial-gradient(ellipse 40% 30% at 15% 85%, rgba(37, 99, 235, 0.18) 0%, transparent 60%);
  pointer-events: none;
}

.guide-download > * { position: relative; z-index: 1; }

.guide-download .guide-cover {
  aspect-ratio: 8.5 / 11;
  background: var(--white);
  border-radius: 3px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.1);
  transform: rotate(-2deg);
  transition: all 0.5s var(--ease-out);
}

.guide-download:hover .guide-cover {
  transform: rotate(0deg) translateY(-4px) scale(1.03);
  box-shadow: 0 30px 55px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.15);
}

.guide-download .guide-cover img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  background: var(--white);
}

.guide-download .guide-cover::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 5px;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.16) 0%, transparent 100%);
  pointer-events: none;
}

.guide-download .guide-content {
  min-width: 0;
}

.guide-download .guide-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue-glow);
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.guide-download .guide-eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--blue-glow);
}

.guide-download h3 {
  color: var(--white);
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  margin-bottom: 0.6rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.guide-download p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.98rem;
  line-height: 1.6;
  margin-bottom: 0;
  font-weight: 300;
  max-width: 500px;
}

.guide-download .guide-meta {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.02em;
}

.guide-download .guide-meta span::before {
  content: '◆';
  margin-right: 0.5rem;
  color: var(--blue-glow);
  font-size: 0.6em;
  vertical-align: middle;
}

.guide-download .guide-actions {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  align-items: stretch;
  min-width: 200px;
}

.guide-download .guide-actions .btn { white-space: nowrap; }

.guide-download .guide-actions .secondary-link {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  margin-top: 0.2rem;
  letter-spacing: 0.04em;
}

.guide-download .guide-actions .secondary-link:hover {
  color: var(--blue-glow);
}

@media (max-width: 900px) {
  .guide-download {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 2.5rem 2rem;
    gap: 1.8rem;
  }
  .guide-download .guide-cover {
    max-width: 120px;
    margin: 0 auto;
  }
  .guide-download .guide-eyebrow { justify-content: center; }
  .guide-download p { margin-left: auto; margin-right: auto; }
  .guide-download .guide-meta { justify-content: center; flex-wrap: wrap; }
  .guide-download .guide-actions {
    align-items: center;
  }
  .guide-download .guide-actions .btn { width: 100%; max-width: 280px; }
}

/* RESOURCE CARD */
.resource-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.4rem;
  transition: all 0.5s var(--ease-out);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.resource-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s var(--ease-out);
}

.resource-card:hover::before { transform: scaleX(1); }

.resource-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(37, 99, 235, 0.35);
}

.resource-card .resource-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 1.4rem;
  letter-spacing: -0.02em;
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.resource-card h3 {
  font-size: 1.45rem;
  margin-bottom: 0.7rem;
  color: var(--navy);
}

.resource-card p {
  color: var(--gray);
  font-size: 0.97rem;
  line-height: 1.65;
  font-weight: 300;
  flex: 1;
}

.resource-card .resource-link {
  margin-top: 1.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: all 0.4s var(--ease-out);
}

.resource-card .resource-link::after {
  content: '→';
  transition: transform 0.4s var(--ease-out);
}

.resource-card:hover .resource-link {
  color: var(--blue);
  gap: 0.7rem;
}

.resource-card:hover .resource-link::after { transform: translateX(4px); }

/* PAGE TRANSITIONS */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.hero h1,
.hero .subhead,
.hero-eyebrow,
.hero-cta-row,
.page-header h1,
.page-header .subhead,
.breadcrumb {
  animation: fadeInUp 1s var(--ease-out) backwards;
}

.hero-eyebrow, .breadcrumb { animation-delay: 0.1s; }
.hero h1, .page-header h1 { animation-delay: 0.25s; }
.hero .subhead, .page-header .subhead { animation-delay: 0.45s; }
.hero-cta-row { animation-delay: 0.65s; }

/* RESPONSIVE TWEAKS */
@media (max-width: 600px) {
  .hero { padding: 8rem 0 4rem; min-height: auto; }
  .page-header { padding: 7rem 0 3.5rem; }
  .section { padding: 4.5rem 0; }
  .container, .container-narrow { padding: 0 1.3rem; }
  body { font-size: 16px; }
  .form-card { padding: 1.8rem; }
  .cta-strip { padding: 3rem 1.8rem; }
}

/* CURSOR */
@media (hover: hover) and (pointer: fine) {
  .cursor-dot,
  .cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    border-radius: 50%;
    mix-blend-mode: difference;
  }
  .cursor-dot {
    width: 6px;
    height: 6px;
    background: var(--white);
    transform: translate(-50%, -50%);
    transition: width 0.3s var(--ease-out), height 0.3s var(--ease-out);
  }
  .cursor-ring {
    width: 32px;
    height: 32px;
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    transform: translate(-50%, -50%);
    transition: all 0.4s var(--ease-out);
  }
  .cursor-active .cursor-dot {
    width: 12px;
    height: 12px;
  }
  .cursor-active .cursor-ring {
    width: 56px;
    height: 56px;
    border-color: rgba(255, 255, 255, 0.8);
  }
}

/* PROGRESS BAR */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
  z-index: 200;
  transition: width 0.1s linear;
  box-shadow: 0 0 8px rgba(37, 99, 235, 0.5);
}

/* REDUCED MOTION */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
