/* ==========================================================
   Empowered Estates + Senior Social - Shared Brand Stylesheet
   ========================================================== */

:root {
  --brown-deep: #2B1502;
  --brown-mid: #391E03;
  --brown-soft: #40240A;
  --brown-warm: #5A3516;
  --gold: #C9992E;
  --gold-light: #E4B84A;
  --gold-glow: #F0CB65;
  --copper: #B56E31;
  --copper-light: #D18A4F;
  --copper-glow: #FCAD79;
  --cream: #F5EFE8;
  --cream-warm: #EDE3D5;
  --cream-light: #FBF7F1;
  --beige: #CAA18C;
  --beige-soft: #DBD1CC;
  --white: #FDFDFD;
  --ink: #1B1B1B;
  --gray: #3A3A3A;
  --gray-light: #6B6362;

  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --script: 'Dancing Script', cursive;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  font-family: var(--sans);
  color: var(--brown-deep);
  background: var(--cream);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  font-weight: 400;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; transition: color 0.25s ease; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--brown-deep);
}

.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 18px;
  display: inline-block;
}

.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }

em { font-style: italic; color: var(--copper); font-weight: 400; }

/* ============ BUTTONS ============ */
.btn-primary {
  padding: 13px 28px;
  background: var(--copper);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border-radius: 2px;
  display: inline-block;
  border: 1px solid var(--copper);
  cursor: pointer;
  font-family: var(--sans);
}
.btn-primary:hover {
  background: var(--copper-light);
  border-color: var(--copper-light);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px -10px rgba(181,110,49,0.5);
}
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  padding: 12px 26px;
  border: 1px solid var(--copper);
  color: var(--copper);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border-radius: 2px;
  display: inline-block;
  font-family: var(--sans);
  background: transparent;
}
.btn-outline:hover { background: var(--copper); color: var(--white); border-color: var(--copper); }

/* Outline button becomes light on dark surfaces */
.hero .btn-outline,
.section-dark .btn-outline,
.cta-banner .btn-outline,
.page-hero .btn-outline {
  color: var(--white);
  border-color: var(--gold-light);
}
.hero .btn-outline:hover,
.section-dark .btn-outline:hover,
.cta-banner .btn-outline:hover,
.page-hero .btn-outline:hover {
  background: var(--gold-light);
  color: var(--brown-deep);
  border-color: var(--gold-light);
}

.btn-ghost {
  padding: 13px 28px;
  color: var(--brown-deep);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  border: 1px solid var(--brown-deep);
  border-radius: 2px;
  display: inline-block;
  font-family: var(--sans);
  transition: all 0.3s ease;
  background: transparent;
  cursor: pointer;
}
.btn-ghost:hover { background: var(--brown-deep); color: var(--white); }

.btn-lg { padding: 16px 34px; font-size: 13.5px; }

/* ============ NAV ============ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: all 0.3s ease;
  background: rgba(43, 21, 2, 0.92);
  backdrop-filter: blur(6px);
}
.nav.scrolled {
  background: rgba(43, 21, 2, 0.97);
  padding: 10px 0;
  box-shadow: 0 2px 20px rgba(43,21,2,0.25);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: nowrap;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-logo-img {
  height: 52px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.25));
  transition: transform 0.3s ease, height 0.3s ease;
}
.nav-brand:hover .nav-logo-img {
  transform: translateY(-1px);
}
.nav.scrolled .nav-logo-img { height: 44px; }
.logo-text {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
}
.logo-text span {
  display: block;
  font-size: 9px;
  font-family: var(--sans);
  font-weight: 500;
  letter-spacing: 2.5px;
  color: var(--gold-glow);
  text-transform: uppercase;
  margin-top: 4px;
}
.nav-links {
  display: none;
  align-items: center;
  gap: 22px;
  list-style: none;
  flex-wrap: nowrap;
}
.nav-links li { flex: 0 0 auto; }
.nav-links a {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.2px;
  white-space: nowrap;
}
.nav-links a.active,
.nav-links a:hover { color: var(--gold-light); }

.nav-cta {
  display: none;
  align-items: center;
  gap: 12px;
  flex-wrap: nowrap;
  flex-shrink: 0;
}
.nav-cta .btn-primary {
  padding: 10px 18px;
  font-size: 12.5px;
  letter-spacing: 1px;
  white-space: nowrap;
}
.nav-phone {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--white);
  white-space: nowrap;
  letter-spacing: 0.3px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav-phone::before {
  content: "\260E";
  font-size: 14px;
  color: var(--gold-light);
}
.nav-phone:hover { color: var(--gold-light); }
.nav-util-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--beige);
  white-space: nowrap;
  letter-spacing: 0.3px;
  padding: 6px 14px;
  border: 1px solid rgba(202,161,140,0.3);
  border-radius: 3px;
  transition: color 0.3s ease, border-color 0.3s ease;
}
.nav-util-link:hover {
  color: var(--gold-light);
  border-color: var(--gold-light);
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  width: 22px; height: 2px;
  background: var(--white);
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--brown-deep);
  z-index: 99;
  padding: 90px 32px 32px;
  flex-direction: column;
  gap: 20px;
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--white);
  font-size: 22px;
  font-family: var(--serif);
  font-weight: 500;
  padding: 10px 0;
  border-bottom: 1px solid rgba(201,153,46,0.2);
}
.mobile-menu a:last-of-type { border-bottom: none; }
.mobile-menu .btn-primary { margin-top: 16px; text-align: center; font-family: var(--sans); font-size: 13px; }
.mobile-menu-divider {
  height: 1px;
  background: rgba(240,203,101,0.15);
  margin: 8px 0;
}
.mobile-menu-util {
  font-size: 16px !important;
  font-family: var(--sans) !important;
  font-weight: 600 !important;
  letter-spacing: 0.5px;
  color: var(--beige) !important;
  border-bottom: none !important;
}

/* Mobile phone button in nav bar */
.mobile-phone-btn {
  display: flex;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--copper);
  color: var(--white);
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 94vh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  background:
    radial-gradient(ellipse at top right, rgba(201,153,46,0.15), transparent 60%),
    radial-gradient(ellipse at bottom left, rgba(181,110,49,0.10), transparent 55%),
    linear-gradient(145deg, #1a0d01 0%, #2B1502 40%, #391E03 100%);
  color: var(--white);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(240,203,101,0.06) 1px, transparent 1px),
    radial-gradient(circle at 70% 60%, rgba(202,161,140,0.04) 1px, transparent 1px);
  background-size: 60px 60px, 90px 90px;
  pointer-events: none;
  z-index: 3;
}

/* Full-bleed video background */
.hero-bg-video {
  background: linear-gradient(135deg, #1a0d01 0%, #2B1502 50%, #40240A 100%);
}
.hero-bg-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  pointer-events: none;
  background: #1a0d01;
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(26,13,1,0.78) 0%, rgba(26,13,1,0.55) 45%, rgba(26,13,1,0.35) 100%),
    linear-gradient(180deg, rgba(26,13,1,0.25) 0%, rgba(26,13,1,0) 40%, rgba(26,13,1,0.55) 100%);
  pointer-events: none;
}
.hero-bg-video .container {
  position: relative;
  z-index: 4;
  max-width: none;
  margin: 0;
  padding: 0 clamp(24px, 6vw, 96px);
}

.hero-inner {
  position: relative;
  z-index: 4;
  max-width: 720px;
  margin-left: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-text .eyebrow,
.hero-inner .eyebrow { color: var(--gold-light); }
.hero h1 {
  font-size: clamp(2.4rem, 6.5vw, 4.4rem);
  color: var(--white);
  font-weight: 500;
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-glow);
  font-weight: 400;
}
.hero .lead {
  font-size: clamp(1rem, 2.1vw, 1.15rem);
  color: var(--beige);
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.65;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.hero-sub {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold-light);
  font-size: 1.1rem;
  margin-bottom: 20px;
  font-weight: 400;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 36px 44px;
  margin-top: 56px;
  padding-top: 36px;
  border-top: 1px solid rgba(240,203,101,0.28);
  max-width: 760px;
}
.hero-trust-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1 1 200px;
  max-width: 260px;
}
.hero-trust-num {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 3.6vw, 3.2rem);
  font-style: italic;
  color: var(--gold-glow);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.01em;
}
.hero-trust-label {
  font-family: var(--serif);
  font-size: clamp(0.95rem, 1.15vw, 1.05rem);
  font-style: italic;
  color: #F5E6C8;
  letter-spacing: 0.2px;
  line-height: 1.45;
  text-transform: none;
  max-width: 26ch;
}
.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 4px;
  overflow: hidden;
  display: none;
  background: linear-gradient(135deg, var(--brown-mid) 0%, var(--brown-soft) 100%);
  box-shadow: 0 40px 80px -20px rgba(0,0,0,0.6);
}
.hero-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-visual-inner {
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(201,153,46,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.hero-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  color: var(--cream);
  line-height: 1.45;
  text-align: center;
}

/* Hero video variant */
.hero-visual-video {
  aspect-ratio: 4/5;
  background: var(--brown-deep);
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 1;
}
.hero-video-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(26,13,1,0.10) 0%, rgba(26,13,1,0.35) 55%, rgba(26,13,1,0.85) 100%),
    linear-gradient(135deg, rgba(43,21,2,0.22) 0%, rgba(43,21,2,0) 60%);
  z-index: 2;
  pointer-events: none;
}
.hero-visual-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 28px 32px 32px;
  z-index: 3;
  color: var(--cream);
  text-align: left;
}
.hero-visual-caption-label {
  display: inline-block;
  font-family: var(--sans);
  font-size: 10.5px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(240,203,101,0.35);
}
.hero-visual-caption p {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1rem, 1.6vw, 1.35rem);
  color: var(--cream);
  line-height: 1.4;
  margin: 0;
  max-width: 420px;
}

/* ============ PAGE HERO (inner pages) ============ */
.page-hero {
  position: relative;
  padding: 180px 0 80px;
  background:
    radial-gradient(ellipse at center, rgba(201,153,46,0.10), transparent 65%),
    linear-gradient(145deg, #1a0d01 0%, #2B1502 50%, #391E03 100%);
  color: var(--white);
  text-align: center;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(240,203,101,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; }
.page-hero h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 20px;
}
.page-hero h1 em { color: var(--gold-glow); font-style: italic; font-weight: 400; }
.page-hero p {
  color: var(--beige);
  font-size: clamp(1rem, 2vw, 1.15rem);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.6;
}
.page-hero .eyebrow { color: var(--gold-light); }

/* ============ TRUST BAR (light) ============ */
.trust-bar {
  background: var(--cream);
  padding: 30px 0;
  border-top: 1px solid rgba(181,110,49,0.18);
  border-bottom: 1px solid rgba(181,110,49,0.18);
  overflow: hidden;
}
.trust-bar-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}
.trust-bar-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px 12px;
  text-align: center;
}
.trust-item {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--brown-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.trust-item::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--copper);
  flex-shrink: 0;
}
/* Desktop/tablet: hide the duplicate set used only for mobile marquee */
.trust-item-dup { display: none; }

/* ============ SECTION BASICS ============ */
.section {
  padding: clamp(3.5rem, 8vw, 6.5rem) 0;
}
.section-light { background: var(--cream); }
.section-warm { background: var(--cream-warm); }
.section-cream-light { background: var(--cream-light); }
.section-dark {
  background: var(--brown-deep);
  color: var(--cream);
}
.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4,
.section-dark h5,
.section-dark h6 { color: var(--white); }
.section-dark p { color: var(--cream-warm); }
.section-dark em { color: var(--gold-glow); }
.section-dark .eyebrow { color: var(--gold-light); }

/* subtle gold hairline divider between stacked light sections */
.section-divider {
  position: relative;
}
.section-divider::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: min(92%, 1200px);
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(181,110,49,0.15) 20%,
    rgba(201,153,46,0.32) 50%,
    rgba(181,110,49,0.15) 80%,
    transparent 100%);
}

.section-header {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-header h2 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 500;
  margin-bottom: 18px;
  line-height: 1.1;
}
.section-header p {
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto;
  color: var(--brown-soft);
}
.section-dark .section-header p { color: var(--cream-warm); }

/* ============ SPLIT (used on many pages) ============ */
.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
.split h2 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 500;
  margin-bottom: 22px;
}
.split p {
  color: var(--brown-deep);
  font-size: 1.08rem;
  line-height: 1.75;
  margin-bottom: 18px;
  max-width: 620px;
}
.section-dark .split p { color: var(--cream-warm); }

.split-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 8px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--brown-deep) 0%, var(--brown-mid) 100%);
  max-width: 520px;
  width: 100%;
  justify-self: center;
  box-shadow:
    0 30px 60px -30px rgba(43,21,2,0.45),
    0 10px 30px -15px rgba(43,21,2,0.3);
}
.split-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(240,203,101,0.35);
  border-radius: 8px;
  margin: 14px;
  z-index: 3;
  pointer-events: none;
}
.split-visual img { width: 100%; height: 100%; object-fit: cover; }
.split-visual-text {
  position: absolute;
  inset: 0;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--cream);
  background:
    linear-gradient(180deg, rgba(26,13,1,0.62) 0%, rgba(26,13,1,0.12) 28%, rgba(26,13,1,0) 50%, rgba(26,13,1,0.25) 72%, rgba(26,13,1,0.88) 100%);
  z-index: 2;
}
.split-visual-quote {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.4vw, 1.85rem);
  font-style: italic;
  line-height: 1.35;
  color: var(--white);
}
.split-visual-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-glow);
  text-shadow: 0 1px 3px rgba(0,0,0,0.55), 0 0 18px rgba(26,13,1,0.45);
  align-self: flex-start;
  padding: 7px 14px;
  background: rgba(26,13,1,0.42);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-radius: 2px;
  border: 1px solid rgba(240,203,101,0.18);
}
.split-visual-footer {
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}
.split-visual-footer strong {
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}
.split-visual-footer {
  font-size: 12px;
  color: var(--beige);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-top: 1px solid rgba(202,161,140,0.3);
  padding-top: 18px;
}
.split-visual-footer strong {
  display: block;
  font-family: var(--serif);
  font-size: 16px;
  color: var(--white);
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  margin-bottom: 2px;
}

/* ============ SERVICES GRID (2 up) ============ */
.services-duo {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
.service-card {
  background: var(--white);
  padding: 40px 32px;
  border-radius: 2px;
  border: 1px solid rgba(181,110,49,0.18);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  border-color: var(--copper);
  box-shadow: 0 20px 50px -20px rgba(43,21,2,0.2);
}
.service-card-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 14px;
}
.service-card h3 {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 600;
  margin-bottom: 16px;
  line-height: 1.2;
}
.service-card p {
  color: var(--brown-deep);
  font-size: 1.02rem;
  line-height: 1.7;
  margin-bottom: 24px;
  flex: 1;
}
.service-card-link {
  color: var(--copper);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin-top: auto;
}
.service-card-link:hover { color: var(--brown-deep); gap: 12px; }

/* ============ WHO IT'S FOR GRID (photo cards) ============ */
.who-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
.who-card {
  background: var(--white);
  border-radius: 2px;
  border: 1px solid rgba(181,110,49,0.18);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s ease, box-shadow 0.35s ease, transform 0.35s ease;
}
.who-card:hover {
  border-color: var(--copper);
  box-shadow: 0 24px 52px -22px rgba(43,21,2,0.28);
  transform: translateY(-4px);
}
.who-card-image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--brown-soft);
}
.who-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.22,0.61,0.36,1);
}
.who-card:hover .who-card-image img { transform: scale(1.05); }
.who-card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(43,21,2,0.25) 100%);
  pointer-events: none;
}
.who-card-body {
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.who-card-body h3 {
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.25;
  color: var(--brown-deep);
}
.who-card-body p {
  color: var(--brown-deep);
  font-size: 1.02rem;
  line-height: 1.7;
  margin: 0;
}

/* ============ FOOTER LOGO ============ */
.footer-logo {
  display: inline-block;
  margin-bottom: 18px;
  text-decoration: none;
}
.footer-logo img {
  height: 56px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.25));
  transition: transform 0.3s ease;
}
.footer-logo:hover img { transform: translateY(-1px); }

/* ============ SERVICE ROWS (alternating long-form) ============ */
.service-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
  padding: 40px 0;
  border-bottom: 1px solid rgba(202,161,140,0.15);
}
.service-row:last-child { border-bottom: none; }
.service-num {
  font-family: var(--serif);
  font-size: 14px;
  color: var(--gold-glow);
  letter-spacing: 4px;
  font-weight: 500;
}
.section-light .service-num,
.section-cream-light .service-num,
.section-warm .service-num { color: var(--copper); }
.service-row h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 500;
  margin: 8px 0 16px;
}
.service-row p {
  font-size: 1.08rem;
  line-height: 1.75;
  margin-bottom: 18px;
  max-width: 620px;
  color: var(--brown-deep);
}
.service-list {
  list-style: none;
  margin-bottom: 24px;
}
.service-list li {
  font-size: 1rem;
  padding: 7px 0 7px 22px;
  position: relative;
  color: var(--brown-deep);
  line-height: 1.6;
}
.section-light .service-list li,
.section-cream-light .service-list li,
.section-warm .service-list li { color: var(--brown-soft); }
.service-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 16px;
  width: 10px; height: 1px;
  background: var(--copper);
}

/* ============ SERVICES AS CARDS (tight, 2-up on desktop) ============ */
.services-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 16px;
}
.service-card-pro {
  position: relative;
  background: var(--white);
  border: 1px solid rgba(181,110,49,0.18);
  border-radius: 6px;
  padding: 38px 32px 30px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.22,0.61,0.36,1),
              box-shadow 0.4s ease,
              border-color 0.3s ease;
}
.service-card-pro::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--copper) 0%, var(--gold-glow) 55%, var(--copper) 100%);
  transform: scaleX(0.65);
  transform-origin: left center;
  transition: transform 0.5s cubic-bezier(0.22,0.61,0.36,1);
}
.service-card-pro:hover {
  transform: translateY(-4px);
  border-color: var(--copper);
  box-shadow: 0 30px 60px -28px rgba(43,21,2,0.28);
}
.service-card-pro:hover::before {
  transform: scaleX(1);
}
.service-card-top {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-bottom: 22px;
  margin-bottom: 22px;
  border-bottom: 1px solid rgba(181,110,49,0.18);
}
.service-num-big {
  font-family: var(--serif);
  font-size: 2.15rem;
  font-weight: 500;
  font-style: italic;
  color: var(--copper);
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #FAF4EB 0%, #F1E3CA 100%);
  border: 1px solid rgba(181,110,49,0.28);
  border-radius: 4px;
  flex-shrink: 0;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8), 0 1px 2px rgba(43,21,2,0.04);
}
.service-num-label {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--copper);
}
.service-card-pro h3 {
  font-size: clamp(1.35rem, 2.2vw, 1.7rem);
  font-weight: 500;
  line-height: 1.25;
  margin-bottom: 14px;
  color: var(--brown-deep);
}
.service-card-pro > p {
  font-size: 1.04rem;
  line-height: 1.7;
  color: var(--brown-deep);
  margin-bottom: 20px;
}
.service-card-pro .service-list { margin-bottom: 24px; }
.service-card-cta { margin-top: auto; align-self: flex-start; }

/* ============ HOW IT WORKS (steps) ============ */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  counter-reset: step;
  max-width: 980px;
  margin: 0 auto;
}
.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: start;
  padding: 32px 0;
  border-bottom: 1px solid rgba(181,110,49,0.2);
  counter-increment: step;
}
.step:last-child { border-bottom: none; }
.step-num {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 500;
  color: var(--copper);
  line-height: 1;
  font-style: italic;
  min-width: 80px;
}
.section-dark .step-num { color: var(--gold-glow); }
.step-content h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 600;
  margin-bottom: 10px;
}
.step-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 8px;
}
.section-dark .step-label { color: var(--gold-light); }
.step-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--brown-soft);
  max-width: 620px;
}
.section-dark .step-content p { color: var(--cream-warm); }

/* ============ VALUES ============ */
.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}
.values-intro { display: flex; flex-direction: column; }
.values-quote {
  margin-top: 36px;
  padding: 24px 28px;
  border-left: 3px solid var(--copper);
  background: rgba(255,255,255,0.55);
  border-radius: 0 4px 4px 0;
}
.values-quote blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.08rem;
  line-height: 1.55;
  color: var(--brown-deep);
  margin: 0 0 14px;
}
.values-quote figcaption {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.values-quote-name {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--brown-deep);
}
.values-quote-role {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--copper);
}
.values-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
}
.value-item {
  padding: 24px 0;
  border-top: 1px solid rgba(181,110,49,0.25);
}
.value-item:last-child { border-bottom: 1px solid rgba(181,110,49,0.25); }
.value-item-header {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 8px;
}
.value-num {
  font-family: var(--serif);
  font-size: 14px;
  color: var(--copper);
  font-weight: 600;
  letter-spacing: 2px;
  flex-shrink: 0;
}
.value-item h3 {
  font-size: 1.22rem;
  font-weight: 600;
  font-family: var(--sans);
}
.value-item p {
  color: var(--brown-deep);
  font-size: 1.02rem;
  line-height: 1.72;
  padding-left: 28px;
  margin: 0;
}
.value-item p strong {
  color: var(--copper);
  font-weight: 600;
  letter-spacing: 0.2px;
}
.value-item p em {
  color: var(--brown-deep);
  font-weight: 500;
}

/* ============ TESTIMONIALS ============ */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: stretch;
}
.testimonial {
  background: rgba(201,153,46,0.05);
  border: 1px solid rgba(201,153,46,0.2);
  padding: 36px 32px;
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.section-light .testimonial,
.section-cream-light .testimonial,
.section-warm .testimonial {
  background: var(--white);
  border-color: rgba(181,110,49,0.2);
  box-shadow: 0 12px 40px -24px rgba(43,21,2,0.2);
}
.section-testimonials-light .testimonial {
  border-top: 3px solid var(--copper);
  background: var(--white);
  box-shadow: 0 20px 50px -24px rgba(43,21,2,0.22);
}
.testimonial-stars {
  color: var(--gold-light);
  font-size: 14px;
  letter-spacing: 4px;
  margin-bottom: 20px;
}
.testimonial-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--white);
  line-height: 1.6;
  margin-bottom: 24px;
  flex: 1 1 auto;
}
.section-light .testimonial-quote,
.section-cream-light .testimonial-quote,
.section-warm .testimonial-quote { color: var(--brown-deep); }
.testimonial-cite {
  padding-top: 20px;
  margin-top: auto;
  border-top: 1px solid rgba(202,161,140,0.2);
  font-size: 13px;
  color: var(--beige);
  flex-shrink: 0;
}
.section-light .testimonial-cite,
.section-cream-light .testimonial-cite,
.section-warm .testimonial-cite {
  color: var(--gray);
  border-color: rgba(181,110,49,0.2);
}
.testimonial-cite strong {
  display: block;
  color: var(--white);
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 2px;
}
.section-light .testimonial-cite strong,
.section-cream-light .testimonial-cite strong,
.section-warm .testimonial-cite strong { color: var(--brown-deep); }

/* ============ CTA BANNER ============ */
.cta-banner {
  background: linear-gradient(135deg, #1a0d01 0%, var(--brown-deep) 60%, var(--brown-mid) 100%);
  color: var(--white);
  padding: clamp(3.5rem, 7vw, 5rem) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(201,153,46,0.12), transparent 60%);
}
.cta-banner-inner { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }
.cta-banner h1,
.cta-banner h2,
.cta-banner h3 {
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 500;
  margin-bottom: 16px;
}
.cta-banner h2 em { color: var(--gold-glow); font-style: italic; font-weight: 400; }
.cta-banner p {
  color: rgba(255,255,255,0.92);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.6;
}
.cta-banner-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============ CONTACT ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid rgba(181,110,49,0.25);
}
.contact-detail-item { display: flex; flex-direction: column; gap: 4px; }
.contact-detail-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--copper);
}
.contact-detail-value {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--brown-deep);
  font-weight: 500;
}
.contact-detail-value a:hover { color: var(--copper); }

.contact-form-wrap {
  background: var(--white);
  padding: 36px 28px;
  border-radius: 2px;
  box-shadow: 0 20px 60px -20px rgba(43,21,2,0.22);
  border: 1px solid rgba(181,110,49,0.15);
}
.contact-form-wrap h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 6px;
}
.contact-form-wrap .form-intro {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 28px;
}

.form-field { margin-bottom: 20px; }
.form-field label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--brown-soft);
  margin-bottom: 8px;
}
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid rgba(181,110,49,0.3);
  border-radius: 2px;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--brown-deep);
  background: var(--cream-light);
  transition: all 0.25s ease;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--copper);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(181,110,49,0.1);
}
.form-field textarea { min-height: 110px; resize: vertical; }
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.form-submit {
  width: 100%;
  padding: 16px 28px;
  background: var(--brown-deep);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--sans);
  margin-top: 8px;
}
.form-submit:hover { background: var(--copper); }
.form-note {
  font-size: 12px;
  color: var(--gray);
  margin-top: 16px;
  text-align: center;
}

/* ============ FOOTER ============ */
.footer {
  background: #1a0d01;
  color: var(--beige);
  padding: 56px 0 24px 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand p {
  color: var(--beige);
  font-size: 14px;
  line-height: 1.7;
  max-width: 320px;
  margin-top: 16px;
}
.footer h4 {
  color: var(--white);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  color: var(--beige);
  font-size: 14px;
}
.footer-links a:hover { color: var(--gold-light); }
.footer-contact p {
  color: var(--beige);
  font-size: 14px;
  margin-bottom: 12px;
  line-height: 1.6;
}
.footer-contact a { color: var(--beige); }
.footer-contact a:hover { color: var(--gold-light); }
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(202,161,140,0.15);
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 12px;
  color: var(--beige);
}

/* ============ STICKY MOBILE CTA ============ */
.mobile-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--brown-deep);
  border-top: 1px solid rgba(201,153,46,0.25);
  padding: 10px 14px;
  display: flex;
  gap: 10px;
  z-index: 90;
  box-shadow: 0 -10px 30px rgba(43,21,2,0.3);
}
.mobile-cta a {
  flex: 1;
  padding: 13px;
  text-align: center;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 2px;
}
.mobile-cta .mc-primary { background: var(--copper); color: var(--white); }
.mobile-cta .mc-secondary { background: transparent; color: var(--white); border: 1px solid var(--copper); }

/* ============ SENIOR SOCIAL SUBBRAND STYLING ============ */
.subbrand-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  background: rgba(201,153,46,0.12);
  border: 1px solid rgba(201,153,46,0.3);
  border-radius: 40px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 16px;
}
.subbrand-chip::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--gold-light);
  border-radius: 50%;
}

/* ============ RESPONSIVE ============ */
@media (min-width: 600px) {
  .trust-bar-inner { grid-template-columns: repeat(4, 1fr); }
  .form-row { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .services-duo { grid-template-columns: repeat(2, 1fr); }
  .services-cards { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .who-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 768px) {
  .nav-links { display: flex; }
  .nav-cta { display: flex; }
  .hamburger, .mobile-phone-btn, .mobile-cta { display: none; }
  /* Medium desktop: hide Client Login to free up room so nothing wraps */
  .nav-util-link { display: none; }
  .nav-logo-img { height: 42px; max-width: 190px; }
  .nav-links { gap: 14px; }
  .nav-links a { font-size: 12.5px; }
  .nav-cta { gap: 10px; }
  .nav-phone { font-size: 13.5px; }
  .nav-cta .btn-primary { padding: 9px 14px; font-size: 12px; }
}
@media (min-width: 1180px) {
  /* Wide desktop: bring Client Login back, open the spacing */
  .nav-util-link { display: inline-flex; }
  .nav-logo-img { height: 50px; max-width: 230px; }
  .nav-links { gap: 20px; }
  .nav-links a { font-size: 13px; }
  .nav-cta { gap: 12px; }
  .nav-phone { font-size: 14.5px; }
  .nav-cta .btn-primary { padding: 10px 18px; font-size: 12.5px; }
}
@media (min-width: 1360px) {
  /* Extra wide: full comfort */
  .nav-links { gap: 26px; }
  .nav-links a { font-size: 13.5px; }
}
  .hero { padding: 170px 0 100px; }
  .hero-grid { grid-template-columns: 1.1fr 1fr; gap: 72px; }
  .hero-visual { display: block; }
  .split { grid-template-columns: 1fr 1.3fr; gap: 72px; }
  .split-visual { max-width: none; }
  .split.reverse { grid-template-columns: 1.3fr 1fr; }
  .split.reverse .split-visual { order: 2; }
  .service-row { grid-template-columns: 1fr 1.8fr; gap: 48px; padding: 56px 0; }
  .values-grid { grid-template-columns: 1fr 1.4fr; gap: 72px; }
  .values-intro { position: sticky; top: 120px; }
  .contact-grid { grid-template-columns: 1fr 1fr; gap: 64px; }
  .contact-form-wrap { padding: 44px 40px; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 44px; }
  .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; }
  .page-hero { padding: 210px 0 100px; }
}
@media (min-width: 1024px) {
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-grid { gap: 96px; }
  .services-duo { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .who-grid { grid-template-columns: repeat(3, 1fr); gap: 32px; }
}

/* ============ MOBILE LAYOUT TWEAKS ============ */
@media (max-width: 599px) {
  /* Trust bar: single-line auto-scrolling marquee */
  .trust-bar { padding: 22px 0; }
  .trust-bar-container {
    padding: 0;
    max-width: none;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
            mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  }
  .trust-bar-inner {
    display: flex;
    grid-template-columns: none;
    gap: 0;
    width: max-content;
    flex-wrap: nowrap;
    animation: trust-marquee 26s linear infinite;
    will-change: transform;
  }
  .trust-item,
  .trust-item-dup {
    display: flex;
    flex-shrink: 0;
    white-space: nowrap;
    padding: 0 28px;
  }
  @keyframes trust-marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }

  /* Hero trust items: horizontal row instead of stacked */
  .hero-trust {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px 10px;
    margin-top: 38px;
    padding-top: 26px;
    max-width: none;
  }
  .hero-trust-item {
    flex: none;
    max-width: none;
    gap: 6px;
  }
  .hero-trust-num {
    font-size: 1.75rem;
  }
  .hero-trust-label {
    font-size: 0.78rem;
    line-height: 1.38;
    max-width: none;
  }

  /* Four pillars (services): horizontal scroll carousel */
  .services-cards {
    display: flex;
    grid-template-columns: none;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding: 4px 24px 24px;
    margin: 16px -24px 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .services-cards::-webkit-scrollbar { display: none; }
  .services-cards .service-card-pro {
    flex: 0 0 86%;
    min-width: 280px;
    max-width: 340px;
    scroll-snap-align: center;
  }
  /* Subtle hint that there's more to the right */
  .services-cards .service-card-pro:last-child {
    margin-right: 4px;
  }

  /* Why Us / Not like other agencies: horizontal scroll carousel */
  .values-list {
    display: flex;
    grid-template-columns: none;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding: 4px 24px 24px;
    margin: 24px -24px 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .values-list::-webkit-scrollbar { display: none; }
  .values-list .value-item {
    flex: 0 0 86%;
    min-width: 280px;
    max-width: 340px;
    scroll-snap-align: center;
    padding: 26px 24px;
    border: 1px solid rgba(181,110,49,0.22);
    border-radius: 6px;
    background: var(--white);
    box-shadow: 0 10px 30px -22px rgba(43,21,2,0.12);
  }
  .values-list .value-item:last-child {
    border-bottom: 1px solid rgba(181,110,49,0.22);
    margin-right: 4px;
  }
  .values-list .value-item p {
    padding-left: 0;
    font-size: 0.97rem;
    line-height: 1.65;
  }
  .values-list .value-item-header {
    flex-wrap: wrap;
    gap: 10px 14px;
    margin-bottom: 10px;
  }
  .values-list .value-item h3 {
    font-size: 1.08rem;
    line-height: 1.3;
  }
}

/* mobile nav phone visibility */
@media (max-width: 767px) {
  .mobile-phone-btn { display: flex; }
  .nav-logo-img { height: 42px; max-width: 180px; }
}

/* ============ REVEAL / SCROLL ANIMATIONS ============ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s cubic-bezier(0.22, 0.61, 0.36, 1),
              transform 0.9s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: opacity, transform;
}
.reveal.in-view { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

/* Staggered reveal for stacked children */
.stagger > * {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.8s cubic-bezier(0.22, 0.61, 0.36, 1),
              transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.stagger.in-view > *:nth-child(1) { transition-delay: 0.05s; opacity: 1; transform: none; }
.stagger.in-view > *:nth-child(2) { transition-delay: 0.15s; opacity: 1; transform: none; }
.stagger.in-view > *:nth-child(3) { transition-delay: 0.25s; opacity: 1; transform: none; }
.stagger.in-view > *:nth-child(4) { transition-delay: 0.35s; opacity: 1; transform: none; }
.stagger.in-view > *:nth-child(5) { transition-delay: 0.45s; opacity: 1; transform: none; }

/* ============ MICRO-INTERACTIONS ============ */
.service-row {
  transition: background 0.4s ease, padding 0.4s ease, transform 0.4s ease;
}
.service-row:hover {
  background: rgba(181,110,49,0.04);
  transform: translateX(4px);
}
.service-row h3 { transition: color 0.3s ease; }
.service-row:hover h3 { color: var(--copper); }

.service-card {
  transition: transform 0.4s cubic-bezier(0.22,0.61,0.36,1),
              box-shadow 0.4s ease,
              border-color 0.4s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px -28px rgba(43,21,2,0.28);
}

.value-item { transition: padding 0.3s ease, background 0.3s ease; }
.value-item:hover {
  background: rgba(181,110,49,0.03);
}

.testimonial {
  transition: transform 0.4s cubic-bezier(0.22,0.61,0.36,1),
              box-shadow 0.4s ease,
              border-color 0.3s ease;
}
.testimonial:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -30px rgba(43,21,2,0.3);
  border-color: var(--copper);
}

/* Service card CTA arrow slide */
.service-card-link, .service-row .btn-outline { position: relative; }
.service-row .btn-outline { overflow: hidden; }
.service-row .btn-outline::after {
  content: "";
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: var(--copper);
  transition: left 0.4s cubic-bezier(0.22,0.61,0.36,1);
  z-index: -1;
}
.service-row .btn-outline:hover::after { left: 0; }

/* Trust item pop on hover */
.trust-item {
  transition: color 0.3s ease, letter-spacing 0.3s ease;
}
.trust-item:hover {
  color: var(--copper);
  letter-spacing: 2.8px;
}

/* Hero quote subtle float */
@keyframes floatQuote {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.hero-visual .hero-quote {
  animation: floatQuote 7s ease-in-out infinite;
}

/* Hero trust numbers - small glow pulse on load */
@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(16px); }
  100% { opacity: 1; transform: translateY(0); }
}
.hero h1 { animation: fadeUp 1s cubic-bezier(0.22,0.61,0.36,1) both; }
.hero .lead { animation: fadeUp 1s cubic-bezier(0.22,0.61,0.36,1) 0.15s both; }
.hero-cta { animation: fadeUp 1s cubic-bezier(0.22,0.61,0.36,1) 0.3s both; }
.hero-trust { animation: fadeUp 1s cubic-bezier(0.22,0.61,0.36,1) 0.45s both; }
.hero-text .eyebrow { animation: fadeUp 0.8s cubic-bezier(0.22,0.61,0.36,1) both; }

/* Split visual - subtle zoom-on-hover for images */
.split-visual {
  overflow: hidden;
}
.split-visual img {
  transition: transform 1.2s cubic-bezier(0.22,0.61,0.36,1);
}
.split-visual:hover img { transform: scale(1.04); }

/* Nav shrink/polish */
.nav { transition: background 0.35s ease, padding 0.35s ease, box-shadow 0.35s ease, transform 0.4s cubic-bezier(0.22,0.61,0.36,1); }
.nav.hide-nav { transform: translateY(-100%); }

/* Section-divider gold line shimmer */
@keyframes shimmer {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}
.section-divider::before { animation: shimmer 6s ease-in-out infinite; }

/* ============ FORM FOCUS POLISH ============ */
.form-field input,
.form-field textarea,
.form-field select {
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.form-field input:hover:not(:focus),
.form-field textarea:hover:not(:focus),
.form-field select:hover:not(:focus) {
  border-color: var(--copper-light);
}
.form-submit {
  transition: background 0.3s ease, transform 0.25s ease, box-shadow 0.3s ease, letter-spacing 0.3s ease;
}
.form-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px -12px rgba(43,21,2,0.4);
  letter-spacing: 2.3px;
}

/* ============ FOCUS-VISIBLE (a11y) ============ */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--copper);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ============ IMAGE FADE-IN ON LOAD ============ */
img {
  opacity: 0;
  transition: opacity 0.6s ease;
}
img.loaded,
img[src=""],
.nav-logo-mark img,
.hero-visual img,
.split-visual img,
.footer img { opacity: 1; }

/* Footer links nudge */
.footer-links a { transition: color 0.25s ease, padding-left 0.25s ease; }
.footer-links a:hover { color: var(--gold-light); padding-left: 4px; }

/* Nav link underline draw */
.nav-links a { position: relative; padding-bottom: 4px; }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--gold-light);
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.4s cubic-bezier(0.22,0.61,0.36,1);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
  transform-origin: left center;
}

/* ============ SAFEGUARDS SECTION ============ */
.safeguards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: 1160px;
  margin: 0 auto;
}
.safeguard-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(240,203,101,0.18);
  border-radius: 6px;
  padding: 32px 28px;
  position: relative;
  transition: border-color 0.35s ease, transform 0.35s ease, background 0.35s ease;
}
.safeguard-card:hover {
  border-color: rgba(240,203,101,0.45);
  background: rgba(255,255,255,0.06);
  transform: translateY(-2px);
}
.safeguard-num {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--gold-glow);
  letter-spacing: 1px;
  display: block;
  margin-bottom: 14px;
}
.safeguard-card h3 {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.3;
}
.safeguard-card p {
  font-size: 0.97rem;
  color: var(--beige);
  line-height: 1.65;
  margin: 0;
}
.safeguards-footnote {
  max-width: 760px;
  margin: 48px auto 0;
  text-align: center;
  padding-top: 28px;
  border-top: 1px solid rgba(240,203,101,0.18);
}
.safeguards-footnote p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--gold-light);
  line-height: 1.6;
  margin: 0;
}

/* ============ PRIVACY / LEGAL PAGE ============ */
.legal-page {
  background: var(--cream-light);
  padding: clamp(8rem, 12vw, 10rem) 0 clamp(4rem, 8vw, 6rem);
}
.legal-wrap {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 24px;
}
.legal-wrap .eyebrow { color: var(--copper); }
.legal-wrap h1 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.2vw, 3rem);
  font-weight: 500;
  color: var(--brown-deep);
  line-height: 1.15;
  margin: 8px 0 18px;
}
.legal-wrap .legal-meta {
  font-size: 0.92rem;
  color: var(--gray-light);
  letter-spacing: 0.4px;
  margin-bottom: 40px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(181,110,49,0.18);
}
.legal-wrap h2 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--brown-deep);
  margin: 40px 0 14px;
  line-height: 1.25;
}
.legal-wrap h3 {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--brown-deep);
  margin: 26px 0 8px;
  letter-spacing: 0.2px;
}
.legal-wrap p,
.legal-wrap li {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--gray);
}
.legal-wrap p { margin-bottom: 16px; }
.legal-wrap ul {
  margin: 0 0 16px 22px;
}
.legal-wrap li { margin-bottom: 8px; }
.legal-wrap a {
  color: var(--copper);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 500;
}
.legal-wrap a:hover { color: var(--brown-deep); }
.legal-wrap strong { color: var(--brown-deep); }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
  .reveal, .stagger > * { opacity: 1 !important; transform: none !important; }
}
