/* ============================================================
   PRIME TIME INSURANCE — MAIN STYLESHEET
   Luxury Editorial Global Styles
   ============================================================ */

/* ─── GOOGLE FONTS ─── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,600&family=Inter:wght@300;400;500;600&display=swap');

/* ─── BASE ─── */
body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-graphite);
  background-color: var(--color-white);
  line-height: var(--leading-relaxed);
  overflow-x: hidden;
}

/* ─── CONTAINER ─── */
.container {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.container--wide {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.container--text {
  max-width: var(--container-text);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

/* ─── SECTION RHYTHM ─── */
.section {
  padding: var(--section-md) 0;
}

.section--sm {
  padding: var(--section-sm) 0;
}

.section--lg {
  padding: var(--section-lg) 0;
}

/* ─── BACKGROUND VARIANTS ─── */
.bg-white   { background-color: var(--color-white); }
.bg-pearl   { background-color: var(--color-pearl); }
.bg-pearl-2 { background-color: var(--color-pearl-2); }
.bg-navy    { background-color: var(--color-navy); }
.bg-midnight{ background-color: var(--color-midnight); }

/* ─── TYPOGRAPHY ─── */
.display-1 {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7vw, var(--text-8xl));
  font-weight: 700;
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
  color: var(--color-midnight);
}

.display-2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, var(--text-6xl));
  font-weight: 700;
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
  color: var(--color-midnight);
}

.display-3 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, var(--text-5xl));
  font-weight: 600;
  line-height: var(--leading-snug);
  letter-spacing: var(--tracking-tight);
  color: var(--color-midnight);
}

.heading-1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, var(--text-4xl));
  font-weight: 600;
  line-height: var(--leading-snug);
  letter-spacing: var(--tracking-tight);
  color: var(--color-midnight);
}

.heading-2 {
  font-family: var(--font-display);
  font-size: clamp(1.375rem, 2.5vw, var(--text-3xl));
  font-weight: 600;
  line-height: var(--leading-snug);
  color: var(--color-midnight);
}

.eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--color-gold);
}

.eyebrow--light {
  color: var(--color-gold-light);
}

.body-lg {
  font-size: clamp(1rem, 1.2vw, var(--text-md));
  line-height: var(--leading-relaxed);
  color: var(--color-muted);
}

.body-md {
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  color: var(--color-muted);
}

/* On dark backgrounds */
.text-white   { color: var(--color-white); }
.text-pearl   { color: var(--color-pearl); }
.text-gold    { color: var(--color-gold); }
.text-muted-light { color: rgba(248,248,246,0.65); }
.text-midnight { color: var(--color-midnight); }

/* ─── GOLD RULE ─── */
.gold-rule {
  display: inline-block;
  width: 48px;
  height: 2px;
  background: var(--color-gold);
  border-radius: var(--radius-full);
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 0.875rem 2.25rem;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  border-radius: var(--radius-full);
  transition: all var(--dur-normal) var(--ease-luxury);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  opacity: 0;
  transition: opacity var(--dur-fast) var(--ease-luxury);
}

.btn:hover::after { opacity: 1; }

.btn--gold {
  background: var(--color-gold);
  color: var(--color-midnight);
  box-shadow: 0 4px 24px rgba(212,175,55,0.30);
}

.btn--gold:hover {
  background: var(--color-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(212,175,55,0.40);
}

.btn--outline {
  background: transparent;
  color: var(--color-midnight);
  border: 1.5px solid rgba(8,17,32,0.25);
}

.btn--outline:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
  transform: translateY(-2px);
}

.btn--outline-light {
  background: transparent;
  color: var(--color-white);
  border: 1.5px solid rgba(255,255,255,0.35);
}

.btn--outline-light:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
  transform: translateY(-2px);
}

.btn--ghost-gold {
  background: transparent;
  color: var(--color-gold);
  border: 1.5px solid var(--color-gold);
}

.btn--ghost-gold:hover {
  background: var(--color-gold);
  color: var(--color-midnight);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

/* ─── GSAP ANIMATION BASE CLASSES ─── */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
}

.fade-in {
  opacity: 0;
}

.fade-left {
  opacity: 0;
  transform: translateX(-40px);
}

.fade-right {
  opacity: 0;
  transform: translateX(40px);
}

/* ─────────────────────────────────────────────────
   HEADER
   ───────────────────────────────────────────────── */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  display: flex;
  align-items: center;
  transition: background var(--dur-slow) var(--ease-luxury),
              box-shadow var(--dur-slow) var(--ease-luxury),
              backdrop-filter var(--dur-slow) var(--ease-luxury);
}

.site-header.scrolled {
  background: rgba(13, 27, 42, 0.88);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 1px 0 rgba(212,175,55,0.12), var(--shadow-md);
}

.header__inner {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo {
  flex-shrink: 0;
  position: relative;
  height: 44px;
  width: 180px; /* fixed width prevents layout shift during logo swap */
  display: flex;
  align-items: center;
}

.header__logo img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  object-position: left center;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity var(--dur-normal) var(--ease-luxury);
  transform: translateZ(0);
  will-change: opacity;
}

.header__logo .logo-dark {
  opacity: 1;
}

.header__logo .logo-light {
  opacity: 0;
}

.site-header.scrolled .logo-dark {
  opacity: 0;
}

.site-header.scrolled .logo-light {
  opacity: 1;
}

/* For pages with dark hero */
.site-header.dark-mode .logo-dark {
  opacity: 0;
}
.site-header.dark-mode .logo-light {
  opacity: 1;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: var(--space-10);
}

.nav__list {
  display: flex;
  align-items: center;
  gap: var(--space-10);
}

.nav__link {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 400;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--color-graphite);
  transition: color var(--dur-fast) var(--ease-luxury);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--color-gold);
  transition: width var(--dur-normal) var(--ease-luxury);
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

.nav__link:hover {
  color: var(--color-gold);
}

.site-header.scrolled .nav__link {
  color: rgba(248,248,246,0.80);
}

.site-header.scrolled .nav__link:hover {
  color: var(--color-gold);
}

/* Dark mode nav (for dark hero pages) */
.site-header.dark-mode .nav__link {
  color: rgba(248,248,246,0.80);
}
.site-header.dark-mode .nav__link:hover {
  color: var(--color-gold);
}

.header__cta {
  margin-left: var(--space-6);
}

/* ─── HAMBURGER ─── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 5px;
  width: 32px;
  height: 32px;
  cursor: pointer;
  z-index: 1100;
}

.hamburger span {
  display: block;
  height: 1.5px;
  background: var(--color-midnight);
  border-radius: 2px;
  transition: all var(--dur-normal) var(--ease-luxury);
}

.hamburger span:nth-child(1) { width: 28px; }
.hamburger span:nth-child(2) { width: 20px; }
.hamburger span:nth-child(3) { width: 24px; }

.hamburger.open span:nth-child(1) {
  width: 24px;
  transform: translateY(6.5px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
  width: 24px;
  transform: translateY(-6.5px) rotate(-45deg);
}

.site-header.scrolled .hamburger span,
.site-header.dark-mode .hamburger span {
  background: var(--color-pearl);
}

/* ─── MOBILE MENU ─── */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -55%;
  width: 50%;
  min-width: 280px;
  max-width: 400px;
  height: 100vh;
  background: var(--color-midnight);
  z-index: 1050;
  display: flex;
  flex-direction: column;
  padding: calc(var(--header-height) + 2rem) 2.5rem 3rem;
  transition: right 0.55s var(--ease-cinematic);
  box-shadow: -20px 0 80px rgba(8,17,32,0.4);
}

.mobile-menu.open {
  right: 0;
}

.mobile-menu__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(8,17,32,0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1040;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur-slow) var(--ease-luxury);
}

.mobile-menu__backdrop.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu__logo {
  margin-bottom: var(--space-12);
}

.mobile-menu__logo img {
  height: 36px;
  width: auto;
}

.mobile-nav__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  flex: 1;
}

.mobile-nav__item {
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.4s var(--ease-luxury), transform 0.4s var(--ease-luxury);
}

.mobile-menu.open .mobile-nav__item {
  opacity: 1;
  transform: translateX(0);
}

.mobile-menu.open .mobile-nav__item:nth-child(1) { transition-delay: 0.15s; }
.mobile-menu.open .mobile-nav__item:nth-child(2) { transition-delay: 0.22s; }
.mobile-menu.open .mobile-nav__item:nth-child(3) { transition-delay: 0.29s; }
.mobile-menu.open .mobile-nav__item:nth-child(4) { transition-delay: 0.36s; }
.mobile-menu.open .mobile-nav__item:nth-child(5) { transition-delay: 0.43s; }

.mobile-nav__link {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 5vw, 2.25rem);
  font-weight: 400;
  color: var(--color-pearl);
  padding: var(--space-3) 0;
  border-bottom: 1px solid rgba(248,248,246,0.08);
  transition: color var(--dur-fast) var(--ease-luxury);
  letter-spacing: -0.01em;
}

.mobile-nav__link:hover {
  color: var(--color-gold);
}

.mobile-menu__footer {
  margin-top: auto;
  padding-top: var(--space-8);
  border-top: 1px solid rgba(248,248,246,0.08);
}

.mobile-menu__footer p {
  font-size: var(--text-xs);
  color: rgba(248,248,246,0.35);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
}

/* ─────────────────────────────────────────────────
   HOME — HERO SECTION
   ───────────────────────────────────────────────── */

.hero {
  min-height: 100vh;
  background-color: var(--color-pearl);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--header-height);
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -10%;
  width: 60%;
  height: 120%;
  background: radial-gradient(ellipse at 30% 50%, rgba(212,175,55,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: center;
  min-height: calc(100vh - var(--header-height));
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.hero__content {
  padding: var(--space-16) 0;
  padding-right: var(--space-16);
  max-width: 640px;
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5.5vw, 5.25rem);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: var(--color-midnight);
  margin-bottom: var(--space-8);
}

.hero__headline em {
  font-style: italic;
  color: var(--color-gold);
}

.hero__subheading {
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  line-height: var(--leading-relaxed);
  color: var(--color-muted);
  margin-bottom: var(--space-12);
  max-width: 480px;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.hero__trust {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  margin-top: var(--space-12);
  padding-top: var(--space-8);
  border-top: 1px solid var(--color-border-light);
}

.hero__trust-item {
  display: flex;
  flex-direction: column;
}

.hero__trust-number {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-midnight);
  line-height: 1;
}

.hero__trust-label {
  font-size: var(--text-xs);
  color: var(--color-muted);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  margin-top: 4px;
}

.hero__visual {
  position: relative;
  height: 100%;
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.hero__image-wrap {
  position: relative;
  width: 100%;
  height: 85vh;
  border-radius: var(--radius-xl) 0 0 var(--radius-xl);
  overflow: hidden;
}

.hero__image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(248,248,246,0.7) 0%, transparent 40%);
  pointer-events: none;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  will-change: transform;
}

.hero__float-badge {
  position: absolute;
  bottom: 2.5rem;
  left: -1.5rem;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-4) var(--space-6);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  z-index: 10;
}

.hero__badge-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero__badge-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--color-midnight);
  stroke-width: 2;
}

.hero__badge-text strong {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-midnight);
}

.hero__badge-text span {
  font-size: var(--text-xs);
  color: var(--color-muted);
}

/* ─────────────────────────────────────────────────
   MARQUEE — SHARED COMPONENT
   ───────────────────────────────────────────────── */

.marquee-section {
  padding: var(--section-sm) 0;
  overflow: hidden;
}

.marquee-section__header {
  text-align: center;
  margin-bottom: var(--space-16);
  padding: 0 var(--container-pad);
}

.marquee-track-wrap {
  position: relative;
  overflow: hidden;
  cursor: grab;
  -webkit-user-select: none;
  user-select: none;
}

.marquee-track-wrap:active {
  cursor: grabbing;
}

.marquee-track {
  display: flex;
  gap: var(--space-6);
  will-change: transform;
}

.marquee-section__footer {
  text-align: center;
  margin-top: var(--space-12);
}

/* ─────────────────────────────────────────────────
   SERVICE CARD (MARQUEE)
   ───────────────────────────────────────────────── */

.service-card {
  flex: 0 0 auto;
  width: 380px;
  background: var(--color-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--color-border-light);
  box-shadow: var(--shadow-sm);
  transition: all var(--dur-slow) var(--ease-luxury);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(212,175,55,0.20);
}

.service-card__image {
  width: 100%;
  height: 240px;
  overflow: hidden;
  position: relative;
}

.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-xslow) var(--ease-luxury);
}

.service-card:hover .service-card__image img {
  transform: scale(1.04);
}

.service-card__body {
  padding: var(--space-6) var(--space-6) var(--space-8);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card__tag {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-3);
}

.service-card__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--color-midnight);
  margin-bottom: var(--space-3);
  line-height: var(--leading-snug);
}

.service-card__copy {
  font-size: var(--text-sm);
  color: var(--color-muted);
  line-height: var(--leading-relaxed);
  flex: 1;
}

.service-card__arrow {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-top: var(--space-5);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--color-gold);
  transition: gap var(--dur-fast) var(--ease-luxury);
}

.service-card:hover .service-card__arrow {
  gap: var(--space-4);
}

.service-card__arrow svg {
  width: 14px;
  height: 14px;
}

/* ─────────────────────────────────────────────────
   LUIS FOUNDER SECTION
   ───────────────────────────────────────────────── */

.founder-section {
  background: var(--color-pearl);
}

.founder-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: start;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.founder-section__portrait-col {
  position: sticky;
  top: 12vh;
  padding: var(--section-sm) var(--space-16) var(--section-sm) 0;
  align-self: start;
}

.founder-portrait-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.founder-portrait-wrap::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(8,17,32,0.45) 0%, transparent 100%);
  pointer-events: none;
}

.founder-portrait-wrap img {
  width: 100%;
  max-height: 75vh;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
}

.founder-portrait-badge {
  position: absolute;
  bottom: var(--space-6);
  left: var(--space-6);
  z-index: 2;
}

.founder-portrait-badge h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--color-white);
  line-height: 1.2;
}

.founder-portrait-badge p {
  font-size: var(--text-xs);
  color: var(--color-gold);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  margin-top: 4px;
}

.founder-section__content-col {
  padding: var(--section-sm) 0 var(--section-md) var(--space-16);
  border-left: 1px solid var(--color-border-light);
}

.founder-section__lead {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 400;
  font-style: italic;
  color: var(--color-navy);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-10);
}

.founder-section__body p {
  font-size: var(--text-base);
  line-height: var(--leading-loose);
  color: var(--color-muted);
  margin-bottom: var(--space-6);
}

.founder-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
  margin: var(--space-10) 0;
}

.founder-value-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-5) var(--space-5);
  border: 1px solid var(--color-border-light);
  transition: border-color var(--dur-normal) var(--ease-luxury),
              box-shadow var(--dur-normal) var(--ease-luxury);
}

.founder-value-card:hover {
  border-color: var(--color-border);
  box-shadow: var(--shadow-md);
}

.founder-value-card__icon {
  font-size: 1.5rem;
  margin-bottom: var(--space-3);
}

.founder-value-card h4 {
  font-family: var(--font-display);
  font-size: var(--text-md);
  font-weight: 600;
  color: var(--color-midnight);
  margin-bottom: var(--space-2);
}

.founder-value-card p {
  font-size: var(--text-sm);
  color: var(--color-muted);
  line-height: var(--leading-relaxed);
}

/* ─────────────────────────────────────────────────
   WHY PRIME TIME SECTION
   ───────────────────────────────────────────────── */

.why-section {
  background: var(--color-white);
}

.why-section__header {
  max-width: 640px;
  margin-bottom: var(--space-20);
}

.why-blocks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-1);
}

.why-block {
  padding: var(--space-10) var(--space-8);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
  transition: all var(--dur-slow) var(--ease-luxury);
  background: var(--color-pearl);
}

.why-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-gold), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-slow) var(--ease-luxury);
}

.why-block:hover::before {
  transform: scaleX(1);
}

.why-block:hover {
  background: var(--color-white);
  box-shadow: var(--shadow-md);
}

.why-block__number {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  color: rgba(212,175,55,0.15);
  line-height: 1;
  margin-bottom: var(--space-4);
  letter-spacing: -0.04em;
}

.why-block h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--color-midnight);
  margin-bottom: var(--space-4);
  line-height: var(--leading-snug);
}

.why-block p {
  font-size: var(--text-sm);
  color: var(--color-muted);
  line-height: var(--leading-relaxed);
}

/* ─────────────────────────────────────────────────
   REVIEW CARD (MARQUEE)
   ───────────────────────────────────────────────── */

.review-card {
  flex: 0 0 auto;
  width: 360px;
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  border: 1px solid var(--color-border-light);
  box-shadow: var(--shadow-sm);
  transition: all var(--dur-slow) var(--ease-luxury);
  display: flex;
  flex-direction: column;
}

.review-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(212,175,55,0.15);
}

.review-card__stars {
  display: flex;
  gap: 3px;
  margin-bottom: var(--space-5);
}

.review-card__stars svg {
  width: 16px;
  height: 16px;
  fill: var(--color-gold);
}

.review-card__quote {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 400;
  font-style: normal;
  color: var(--color-graphite);
  line-height: var(--leading-loose);
  flex: 1;
  margin-bottom: var(--space-6);
}

.review-card__author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  border-top: 1px solid var(--color-border-light);
  padding-top: var(--space-5);
}

.review-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-midnight);
  flex-shrink: 0;
}

.review-card__name {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-midnight);
}

.review-card__role {
  font-size: var(--text-xs);
  color: var(--color-muted);
  margin-top: 2px;
}

/* ─────────────────────────────────────────────────
   REVIEW GRID
   ───────────────────────────────────────────────── */

.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: var(--space-6);
  margin-bottom: var(--space-8);
}

.review-grid .review-card {
  width: 100%;
  flex: none;
  height: 100%;
}

.review-grid__footer {
  text-align: center;
  margin-top: var(--space-8);
}

/* ─────────────────────────────────────────────────
   FINAL CTA SECTION
   ───────────────────────────────────────────────── */

.final-cta {
  background: var(--color-midnight);
  padding: var(--section-lg) 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../assets/texture_navy_depth.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.08;
}

.final-cta::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(212,175,55,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.final-cta__inner {
  position: relative;
  z-index: 1;
}

.final-cta__eyebrow {
  margin-bottom: var(--space-6);
}

.final-cta__headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 700;
  line-height: var(--leading-tight);
  color: var(--color-white);
  letter-spacing: var(--tracking-tight);
  margin-bottom: var(--space-6);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta__headline em {
  font-style: italic;
  color: var(--color-gold);
}

.final-cta__sub {
  font-size: var(--text-md);
  color: rgba(248,248,246,0.60);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-12);
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

/* ─────────────────────────────────────────────────
   FOOTER
   ───────────────────────────────────────────────── */

.site-footer {
  background: var(--color-navy);
  color: var(--color-pearl);
  padding: var(--section-md) 0 0;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: var(--space-16);
  margin-bottom: var(--space-16);
}

.footer__brand-logo {
  height: 44px;
  width: auto;
  margin-bottom: var(--space-6);
}

.footer__brand-tagline {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 300;
  font-style: normal;
  color: rgba(248,248,246,0.60);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-8);
  max-width: 300px;
  letter-spacing: 0.01em;
}

.footer__brand-social {
  display: flex;
  gap: var(--space-3);
}

.footer__social-link {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(248,248,246,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(248,248,246,0.50);
  transition: all var(--dur-fast) var(--ease-luxury);
}

.footer__social-link:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
  background: rgba(212,175,55,0.08);
}

.footer__social-link svg {
  width: 16px;
  height: 16px;
}

.footer__col-title {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-6);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer__link {
  font-size: var(--text-base);
  color: rgba(248,248,246,0.55);
  transition: color var(--dur-fast) var(--ease-luxury);
  line-height: 2.1;
}

.footer__link:hover {
  color: var(--color-gold);
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.footer__contact-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--color-gold);
}

.footer__contact-icon svg {
  width: 100%;
  height: 100%;
}

.footer__contact-text {
  font-size: var(--text-sm);
  color: rgba(248,248,246,0.55);
  line-height: var(--leading-relaxed);
}

.footer__bottom {
  border-top: 1px solid rgba(248,248,246,0.08);
  padding: var(--space-6) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.footer__copyright {
  font-size: var(--text-xs);
  color: rgba(248,248,246,0.30);
  letter-spacing: 0.03em;
}

.footer__legal {
  display: flex;
  gap: var(--space-6);
}

.footer__legal-link {
  font-size: var(--text-xs);
  color: rgba(248,248,246,0.30);
  transition: color var(--dur-fast) var(--ease-luxury);
}

.footer__legal-link:hover {
  color: var(--color-gold);
}

/* ─────────────────────────────────────────────────
   PAGE HERO — SHARED (ABOUT, SERVICES, REVIEWS, CONTACT)
   ───────────────────────────────────────────────── */

.page-hero {
  background: var(--color-pearl);
  padding: calc(var(--header-height) + var(--section-sm)) 0 var(--section-sm);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--color-white), transparent);
}

.page-hero--dark {
  background: var(--color-midnight);
}

.page-hero--dark::before {
  background: linear-gradient(to top, var(--color-midnight), transparent);
}

.page-hero__eyebrow {
  margin-bottom: var(--space-5);
}

.page-hero__headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 700;
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
  color: var(--color-midnight);
  max-width: 900px;
  margin-bottom: var(--space-6);
}

.page-hero--dark .page-hero__headline {
  color: var(--color-white);
}

.page-hero__sub {
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  color: var(--color-muted);
  line-height: var(--leading-relaxed);
  max-width: 560px;
}

.page-hero--dark .page-hero__sub {
  color: rgba(248,248,246,0.60);
}

/* ─────────────────────────────────────────────────
   ABOUT — ADVOCACY SECTION
   ───────────────────────────────────────────────── */

.advocacy-section {
  background: var(--color-white);
}

.advocacy-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-24);
  align-items: center;
}

.advocacy-section__text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 700;
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
  color: var(--color-midnight);
  margin-bottom: var(--space-8);
}

.advocacy-section__text h2 em {
  font-style: italic;
  color: var(--color-gold);
}

.advocacy-section__text p {
  font-size: var(--text-md);
  color: var(--color-muted);
  line-height: var(--leading-loose);
  margin-bottom: var(--space-6);
}

.advocacy-section__image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.advocacy-section__image img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.12);
  transform-origin: center center;
  will-change: transform;
}

.advocacy-section__image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212,175,55,0.10) 0%, transparent 60%);
  z-index: 1;
  pointer-events: none;
}

/* ─────────────────────────────────────────────────
   ABOUT — CORE TENETS
   ───────────────────────────────────────────────── */

.tenets-section {
  background: var(--color-pearl);
}

.tenets-section__header {
  text-align: center;
  margin-bottom: var(--space-16);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.tenets-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
}

.tenet-card {
  display: flex;
  align-items: flex-start;
  gap: var(--space-5);
  padding: var(--space-6) var(--space-8);
  background: var(--color-white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border-light);
  transition: all var(--dur-slow) var(--ease-luxury);
}

.tenet-card:hover {
  border-color: var(--color-border);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.tenet-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(212,175,55,0.12), rgba(212,175,55,0.06));
  border: 1px solid rgba(212,175,55,0.20);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.3rem;
}

.tenet-card__text h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-midnight);
  margin-bottom: var(--space-2);
  line-height: var(--leading-snug);
}

.tenet-card__text p {
  font-size: var(--text-sm);
  color: var(--color-muted);
  line-height: var(--leading-relaxed);
}

/* ─────────────────────────────────────────────────
   ABOUT — LUIS STORY
   ───────────────────────────────────────────────── */

.story-section {
  background: var(--color-midnight);
  position: relative;
  overflow: hidden;
}

.story-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../assets/texture_navy_depth.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.06;
}

.story-section__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-24);
  align-items: center;
}

.story-section__content .eyebrow {
  margin-bottom: var(--space-6);
}

.story-section__content h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  font-weight: 700;
  color: var(--color-white);
  line-height: var(--leading-snug);
  letter-spacing: var(--tracking-tight);
  margin-bottom: var(--space-8);
}

.story-section__content p {
  font-size: var(--text-base);
  color: rgba(248,248,246,0.60);
  line-height: var(--leading-loose);
  margin-bottom: var(--space-6);
}

.story-section__content p:last-of-type {
  margin-bottom: 0;
}

.about-story__body {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
  margin-top: var(--space-8);
}

.about-story__block h3 {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--color-gold);
  margin-bottom: var(--space-3);
  letter-spacing: var(--tracking-wide);
}

.about-story__block p {
  margin-bottom: var(--space-4) !important;
}

.about-story__block p:last-child {
  margin-bottom: 0 !important;
}

.story-section__image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.story-section__image img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}

/* ─────────────────────────────────────────────────
   SERVICES PAGE — EXPANDABLE CARDS
   ───────────────────────────────────────────────── */

.services-grid-section {
  background: var(--color-white);
}

.services-strip {
  background: var(--color-pearl);
  padding: var(--space-12) 0;
  border-bottom: 1px solid var(--color-border-light);
}

.services-strip__inner {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  flex-wrap: wrap;
  justify-content: center;
}

.services-strip__item {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--color-muted);
  display: flex;
  align-items: center;
  gap: var(--space-2);
  cursor: pointer;
  transition: color var(--dur-fast);
}

.services-strip__item:hover {
  color: var(--color-gold);
}

.services-strip__dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--color-gold);
}

.services-cards {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  padding: var(--section-sm) 0;
}

.expand-card {
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--color-pearl);
  transition: all var(--dur-slow) var(--ease-luxury);
  cursor: pointer;
}

.expand-card:hover {
  border-color: rgba(212,175,55,0.25);
  box-shadow: var(--shadow-md);
}

.expand-card.active {
  border-color: rgba(212,175,55,0.30);
}

.expand-card__header {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: var(--space-6) var(--space-8);
  gap: var(--space-6);
}

.expand-card__header-left {
  display: flex;
  align-items: center;
  gap: var(--space-5);
}

.expand-card__number {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: rgba(212,175,55,0.30);
  min-width: 2rem;
}

.expand-card__title-wrap h3 {
  font-family: var(--font-display);
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 600;
  color: var(--color-midnight);
  line-height: var(--leading-snug);
}

.expand-card__title-wrap span {
  font-size: var(--text-xs);
  color: var(--color-gold);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  margin-top: 4px;
  display: block;
}

.expand-card__toggle {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--color-border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--dur-normal) var(--ease-luxury);
  flex-shrink: 0;
}

.expand-card.active .expand-card__toggle {
  background: var(--color-gold);
  border-color: var(--color-gold);
  transform: rotate(45deg);
}

.expand-card__toggle svg {
  width: 18px;
  height: 18px;
  stroke: var(--color-muted);
  transition: stroke var(--dur-fast);
}

.expand-card.active .expand-card__toggle svg {
  stroke: var(--color-midnight);
}

.expand-card__body {
  display: none;
  overflow: hidden;
}

.expand-card.active .expand-card__body {
  display: grid;
}

.expand-card__body-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 0;
  border-top: 1px solid var(--color-border-light);
}

.expand-card__image {
  position: relative;
  overflow: hidden;
}

.expand-card__image img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  display: block;
}

.expand-card__content {
  padding: var(--space-10) var(--space-10);
  background: var(--color-white);
}

.expand-card__content h4 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--color-midnight);
  margin-bottom: var(--space-4);
  line-height: var(--leading-snug);
}

.expand-card__content p {
  font-size: var(--text-sm);
  color: var(--color-muted);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-6);
}

.expand-card__benefits {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-bottom: var(--space-8);
}

.expand-card__benefit {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--color-graphite);
}

.expand-card__benefit::before {
  content: '';
  width: 18px;
  height: 18px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23081120' stroke-width='2.5'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 11px;
  background-repeat: no-repeat;
  background-position: center;
}

/* ─────────────────────────────────────────────────
   REVIEWS PAGE
   ───────────────────────────────────────────────── */

.featured-review {
  background: var(--color-pearl);
}

.featured-review__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-20);
  align-items: center;
}

.featured-review__accent {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
}

.featured-review__accent .gold-rule {
  width: 56px;
  flex-shrink: 0;
}

.featured-review__accent-label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--color-gold);
}

.featured-review__quote {
  font-family: var(--font-body);
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 400;
  font-style: normal;
  color: var(--color-graphite);
  line-height: var(--leading-loose);
  margin-bottom: var(--space-10);
}

.featured-review__author-name {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-midnight);
}

.featured-review__author-role {
  font-size: var(--text-sm);
  color: var(--color-gold);
  margin-top: var(--space-1);
}

.featured-review__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.featured-review__stat {
  text-align: center;
  padding: var(--space-6);
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-light);
}

.featured-review__stat-number {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 700;
  color: var(--color-midnight);
  line-height: 1;
}

.featured-review__stat-label {
  font-size: var(--text-xs);
  color: var(--color-muted);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  margin-top: var(--space-2);
}

/* ─── REVIEW FORM ─── */
.review-form-section {
  background: var(--color-white);
}

.review-form {
  max-width: 680px;
  margin: 0 auto;
}

/* ─────────────────────────────────────────────────
   CONTACT PAGE
   ───────────────────────────────────────────────── */

.contact-section {
  padding: calc(var(--header-height) + var(--section-sm)) 0 var(--section-md);
  background: var(--color-pearl);
  min-height: 100vh;
}

.contact-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-20);
  align-items: start;
}

.contact-info__eyebrow {
  margin-bottom: var(--space-6);
}

.contact-info h2 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--color-midnight);
  letter-spacing: var(--tracking-tight);
  line-height: var(--leading-snug);
  margin-bottom: var(--space-6);
}

.contact-info__sub {
  font-size: var(--text-md);
  color: var(--color-muted);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-10);
  max-width: 420px;
}

.contact-info__portrait {
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: var(--space-10);
  box-shadow: var(--shadow-lg);
}

.contact-info__portrait img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.contact-detail__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(212,175,55,0.10);
  border: 1px solid rgba(212,175,55,0.20);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail__icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--color-gold);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-detail__text strong {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-midnight);
}

.contact-detail__text span {
  font-size: var(--text-sm);
  color: var(--color-muted);
}

/* ─── FORM ─── */
.form-card {
  background: var(--color-midnight);
  border-radius: var(--radius-xl);
  padding: var(--space-10) var(--space-10);
  box-shadow: var(--shadow-xl);
  position: sticky;
  top: calc(var(--header-height) + 2rem);
}

.form-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: var(--space-2);
  line-height: var(--leading-snug);
}

.form-card__sub {
  font-size: var(--text-sm);
  color: rgba(248,248,246,0.55);
  margin-bottom: var(--space-8);
  line-height: var(--leading-relaxed);
}

.form-gold-rule {
  width: 40px;
  height: 2px;
  background: var(--color-gold);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-8);
}

.form-group {
  margin-bottom: var(--space-5);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
  margin-bottom: var(--space-5);
}

.form-label {
  display: block;
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: rgba(248,248,246,0.50);
  margin-bottom: var(--space-2);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: rgba(248,248,246,0.06);
  border: 1px solid rgba(248,248,246,0.12);
  border-radius: var(--radius-md);
  padding: 0.875rem 1.125rem;
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-white);
  transition: border-color var(--dur-fast) var(--ease-luxury),
              background var(--dur-fast) var(--ease-luxury);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(248,248,246,0.25);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: rgba(212,175,55,0.50);
  background: rgba(248,248,246,0.09);
}

.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='rgba(248,248,246,0.35)' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  background-color: rgba(248,248,246,0.06);
}

.form-select option {
  background: var(--color-navy);
  color: var(--color-white);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  width: 100%;
  padding: 1rem 2rem;
  background: var(--color-gold);
  color: var(--color-midnight);
  border: none;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--dur-normal) var(--ease-luxury);
  margin-top: var(--space-4);
}

.form-submit:hover {
  background: var(--color-gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

/* ─── REVIEW FORM (lighter) ─── */
.review-form-card {
  background: var(--color-pearl);
  border-radius: var(--radius-xl);
  padding: var(--space-10);
  border: 1px solid var(--color-border-light);
  box-shadow: var(--shadow-md);
}

.review-form-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 600;
  color: var(--color-midnight);
  margin-bottom: var(--space-2);
}

.review-form-card__sub {
  font-size: var(--text-sm);
  color: var(--color-muted);
  margin-bottom: var(--space-8);
}

.review-form-card .form-label {
  color: var(--color-muted);
}

.review-form-card .form-input,
.review-form-card .form-textarea {
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  color: var(--color-graphite);
}

.review-form-card .form-input::placeholder,
.review-form-card .form-textarea::placeholder {
  color: rgba(107,114,128,0.5);
}

.review-form-card .form-input:focus,
.review-form-card .form-textarea:focus {
  border-color: rgba(212,175,55,0.40);
  background: var(--color-white);
}

/* ─── STAR RATING INPUT ─── */
.star-rating-input {
  display: flex;
  gap: var(--space-2);
  margin-bottom: var(--space-5);
}

.star-rating-input label {
  cursor: pointer;
  font-size: 1.75rem;
  color: rgba(107,114,128,0.3);
  transition: color var(--dur-fast);
}

.star-rating-input input {
  display: none;
}

.star-rating-input input:checked ~ label {
  color: var(--color-gold);
}

.star-rating-input:hover label {
  color: rgba(107,114,128,0.3);
}

.star-rating-input label:hover,
.star-rating-input label:hover ~ label {
  color: var(--color-gold);
}

.star-rating-input {
  flex-direction: row-reverse;
  justify-content: flex-end;
}

/* ─────────────────────────────────────────────────
   UTILITY CLASSES
   ───────────────────────────────────────────────── */

.text-center { text-align: center; }
.text-left   { text-align: left; }
.mb-2 { margin-bottom: var(--space-2); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-5 { margin-bottom: var(--space-5); }
.mb-6 { margin-bottom: var(--space-6); }
.mb-8 { margin-bottom: var(--space-8); }
.mb-10 { margin-bottom: var(--space-10); }
.mb-12 { margin-bottom: var(--space-12); }
.mt-4 { margin-top: var(--space-4); }
.mt-6 { margin-top: var(--space-6); }
.mt-8 { margin-top: var(--space-8); }
.mt-12 { margin-top: var(--space-12); }

/* ─────────────────────────────────────────────────
   RESPONSIVE — TABLET
   ───────────────────────────────────────────────── */

@media (max-width: 1024px) {
  .header__nav { display: none; }
  .hamburger { display: flex; }
  .header__cta { display: none; }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: var(--space-12);
  }

  .hero__content {
    padding-right: 0;
    padding-bottom: 0;
    max-width: 100%;
    order: 1;
  }

  .hero__visual {
    order: 2;
    min-height: 60vw;
    max-height: 70vh;
  }

  .hero__image-wrap {
    height: 100%;
    border-radius: var(--radius-xl);
  }

  .founder-section__inner {
    grid-template-columns: 1fr;
  }

  .founder-section__portrait-col {
    position: relative;
    top: auto;
    padding: var(--section-sm) 0 0;
    max-width: 480px;
    margin: 0 auto;
  }

  .founder-section__content-col {
    padding: var(--space-12) 0 var(--section-sm);
    border-left: none;
    border-top: 1px solid var(--color-border-light);
  }

  .why-blocks {
    grid-template-columns: 1fr 1fr;
  }

  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
  }

  .advocacy-section__inner { grid-template-columns: 1fr; }
  .tenets-grid { grid-template-columns: 1fr; }
  .story-section__inner { grid-template-columns: 1fr; }
  .featured-review__inner { grid-template-columns: 1fr; }
  .contact-section__inner { grid-template-columns: 1fr; }
  .form-card { position: static; }

  .expand-card__body-inner { grid-template-columns: 1fr; }
  .expand-card__image img { min-height: 280px; }
}

@media (max-width: 768px) {
  .mobile-menu {
    width: 80%;
    right: -85%;
  }

  .hero__headline {
    font-size: clamp(2.5rem, 8vw, 4rem);
  }

  .why-blocks { grid-template-columns: 1fr; }

  .footer__top { grid-template-columns: 1fr; gap: var(--space-10); }

  .founder-values { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .page-hero__headline { font-size: clamp(2.25rem, 7vw, 3.5rem); }

  .services-strip__inner {
    gap: var(--space-5);
  }

  .featured-review__stats { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .mobile-menu { width: 90%; right: -95%; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .hero__trust { flex-wrap: wrap; gap: var(--space-5); }
}
