/* =========================================
   CSS CUSTOM PROPERTIES
   ========================================= */
:root {
  --deep-red: #93272c;
  --deep-red-light: rgba(147, 39, 44, 0.15);
  --deep-red-glow: rgba(147, 39, 44, 0.35);
  --black: #000000;
  --near-black: #0a0a0f;
  --charcoal: #111114;
  --charcoal-mid: #1a1a1f;
  --silver: #676767;
  --silver-light: #8a8a8a;
  --cream: #f5f2ed;
  --cream-dark: #e5dfd4;
  --white: #ffffff;
  --font-serif: 'Noto Serif Display', Georgia, 'Times New Roman', serif;
  --font-sans: 'Urbanist', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --container: 1200px;
  --nav-height: 80px;
}

/* =========================================
   RESET & BASE
   ========================================= */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: var(--silver);
  background: var(--near-black);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* WordPress admin bar offset */
.admin-bar .nav {
  top: 32px;
}

@media screen and (max-width: 782px) {
  .admin-bar .nav {
    top: 46px;
  }
}

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

/* =========================================
   KEYFRAMES
   ========================================= */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to { opacity: 1; transform: translateY(0); }
}

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

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.85) rotate(45deg); }
  to { opacity: 1; transform: scale(1) rotate(45deg); }
}

@keyframes diamondRing {
  from { opacity: 0; transform: scale(0.7) rotate(45deg); }
  to { opacity: 1; transform: scale(1) rotate(45deg); }
}

@keyframes lineExpand {
  from { width: 0; }
  to { width: 60px; }
}

.anim-ready { opacity: 0; }
.anim-ready.anim-visible {
  animation: fadeUp 0.7s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

/* Stagger delays */
.anim-delay-1 { animation-delay: 0.1s !important; }
.anim-delay-2 { animation-delay: 0.2s !important; }
.anim-delay-3 { animation-delay: 0.3s !important; }
.anim-delay-4 { animation-delay: 0.4s !important; }
.anim-delay-5 { animation-delay: 0.5s !important; }
.anim-delay-6 { animation-delay: 0.6s !important; }
.anim-delay-7 { animation-delay: 0.7s !important; }
.anim-delay-8 { animation-delay: 0.8s !important; }
.anim-delay-9 { animation-delay: 0.9s !important; }

/* =========================================
   TYPOGRAPHY HELPERS
   ========================================= */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--deep-red);
  margin-bottom: 20px;
}

.eyebrow::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--deep-red);
  border-radius: 1px;
  transform: rotate(45deg);
  flex-shrink: 0;
}

.section-title {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.section-title--dark {
  color: var(--charcoal);
}

.section-title--light {
  color: var(--cream);
}

/* =========================================
   1. NAVIGATION
   ========================================= */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(245, 242, 237, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--cream-dark);
  transition: box-shadow 0.3s ease;
}

.nav.scrolled {
  box-shadow: 0 2px 40px rgba(0, 0, 0, 0.08);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

.nav__logo img {
  height: 52px;
  width: auto;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav__links a {
  font-family: var(--font-sans);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--charcoal);
  transition: color 0.3s ease;
  position: relative;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--deep-red);
  transition: width 0.3s ease;
}

.nav__links a:hover {
  color: var(--deep-red);
}

.nav__links a:hover::after {
  width: 100%;
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: var(--deep-red);
  color: var(--white) !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 2.5px !important;
  text-transform: uppercase;
  border: 1px solid var(--deep-red);
  transition: all 0.3s ease;
}

.nav__cta::after { display: none !important; }

.nav__cta:hover {
  background: var(--near-black) !important;
  color: var(--white) !important;
  border-color: var(--charcoal-mid);
}

/* Mobile menu toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.nav__toggle span {
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  transition: all 0.3s ease;
}

/* Mobile menu overlay */
.mobile-menu {
  display: none;
}

@media (max-width: 640px) {
  .mobile-menu {
    display: block;
  }
}

.mobile-menu__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 15, 0.6);
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.mobile-menu.is-open .mobile-menu__backdrop {
  opacity: 1;
  visibility: visible;
}

.mobile-menu__panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 300px;
  max-width: 85vw;
  background: var(--cream);
  z-index: 1101;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 40px rgba(0, 0, 0, 0.15);
}

.mobile-menu.is-open .mobile-menu__panel {
  transform: translateX(0);
}

.mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 20px 24px;
  border-bottom: 1px solid var(--cream-dark);
}








.mobile-menu__logo img {
  height: 40px;
  width: auto;
}

.mobile-menu__close {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--charcoal);
  transition: color 0.3s ease;
}











.mobile-menu__close:hover {
  color: var(--deep-red);
}

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  padding: 32px 24px;
  gap: 0;
}

.mobile-menu__nav a {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--charcoal);
  padding: 16px 0;
  border-bottom: 1px solid var(--cream-dark);
  transition: color 0.3s ease;
}

.mobile-menu__nav a:last-child {
  border-bottom: none;
}

.mobile-menu__nav a:hover {
  color: var(--deep-red);
}

.mobile-menu__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
  padding: 14px 28px !important;
  background: var(--deep-red);
  color: var(--white) !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 2.5px !important;
  text-transform: uppercase;
  border: 1px solid var(--deep-red);
  border-bottom: none !important;
  transition: all 0.3s ease;
}

.mobile-menu__cta:hover {
  background: var(--near-black) !important;
  color: var(--white) !important;
  border-color: var(--charcoal-mid) !important;
}

/* Lock body scroll when menu is open */
body.mobile-menu-open {
  overflow: hidden;
}

/* =========================================
   2. HERO SECTION
   ========================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--near-black);
  padding-top: var(--nav-height);
  overflow: hidden;
}

/* Subtle grid lines */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(147, 39, 44, 0.08) 30%, rgba(147, 39, 44, 0.08) 70%, transparent);
  pointer-events: none;
}

.hero__grid-lines {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.hero__grid-lines::before,
.hero__grid-lines::after {
  content: '';
  position: absolute;
  top: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(103, 103, 103, 0.06) 20%, rgba(103, 103, 103, 0.06) 80%, transparent);
}

.hero__grid-lines::before { left: 25%; }
.hero__grid-lines::after { right: 25%; }

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: center;
  padding: 80px 0;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: rgba(147, 39, 44, 0.08);
  border: 1px solid rgba(147, 39, 44, 0.2);
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.7s cubic-bezier(0.23, 1, 0.32, 1) 0.2s forwards;
}

.hero__badge-dot {
  width: 6px;
  height: 6px;
  background: var(--deep-red);
  border-radius: 50%;
}

.hero__badge span {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--silver-light);
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(42px, 5vw, 62px);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: var(--cream);
  margin-bottom: 12px;
  opacity: 0;
  animation: fadeUp 0.8s cubic-bezier(0.23, 1, 0.32, 1) 0.35s forwards;
}

.hero__title em {
  font-style: italic;
  color: var(--deep-red);
}

.hero__tagline {
  font-family: var(--font-serif);
  font-size: 18px;
  font-style: italic;
  font-weight: 400;
  color: var(--silver-light);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.7s cubic-bezier(0.23, 1, 0.32, 1) 0.5s forwards;
}

.hero__body {
  font-family: var(--font-sans);
  font-size: 16.5px;
  line-height: 1.8;
  color: var(--silver);
  max-width: 540px;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.7s cubic-bezier(0.23, 1, 0.32, 1) 0.6s forwards;
}

.hero__ctas {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 56px;
  opacity: 0;
  animation: fadeUp 0.7s cubic-bezier(0.23, 1, 0.32, 1) 0.7s forwards;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: var(--deep-red);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid var(--deep-red);
  transition: all 0.35s ease;
  cursor: pointer;
}

.btn-primary:hover {
  background: transparent;
  color: var(--deep-red);
}

.btn-primary svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s ease;
}

.btn-primary:hover svg {
  transform: translateX(3px);
}

.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--silver-light);
  transition: color 0.3s ease;
  cursor: pointer;
}

.btn-text:hover {
  color: var(--deep-red);
}

.btn-text svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.btn-text:hover svg {
  transform: translateX(3px);
}

/* Social Proof */
.hero__proof {
  display: flex;
  align-items: center;
  gap: 0;
  opacity: 0;
  animation: fadeUp 0.7s cubic-bezier(0.23, 1, 0.32, 1) 0.85s forwards;
}

.hero__proof-item {
  padding: 0 32px;
  text-align: center;
  position: relative;
}

.hero__proof-item:first-child {
  padding-left: 0;
}

.hero__proof-item:last-child {
  padding-right: 0;
}

.hero__proof-item + .hero__proof-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 36px;
  background: var(--deep-red);
  opacity: 0.4;
}

.hero__proof-value {
  display: block;
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.hero__proof-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--silver);
  margin-top: 4px;
}

/* Decorative Diamond */
.hero__diamond-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 420px;
}

.hero__diamond {
  width: 260px;
  height: 260px;
  transform: rotate(45deg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 4px;
  opacity: 0;
  animation: scaleIn 0.9s cubic-bezier(0.23, 1, 0.32, 1) 0.5s forwards;
}

.hero__diamond-q {
  transition: opacity 0.3s ease;
}

.hero__diamond-q:nth-child(1) { background: var(--deep-red); }
.hero__diamond-q:nth-child(2) { background: var(--charcoal); }
.hero__diamond-q:nth-child(3) { background: var(--charcoal-mid); }
.hero__diamond-q:nth-child(4) { background: var(--deep-red); opacity: 0.6; }

.hero__diamond-ring {
  position: absolute;
  width: 340px;
  height: 340px;
  border: 1px solid rgba(147, 39, 44, 0.2);
  transform: rotate(45deg);
  opacity: 0;
  animation: diamondRing 1s cubic-bezier(0.23, 1, 0.32, 1) 0.8s forwards;
}

.hero__diamond-ring-outer {
  position: absolute;
  width: 390px;
  height: 390px;
  border: 1px solid rgba(103, 103, 103, 0.08);
  transform: rotate(45deg);
  opacity: 0;
  animation: diamondRing 1s cubic-bezier(0.23, 1, 0.32, 1) 1s forwards;
}

/* =========================================
   3. TRUST BAR
   ========================================= */
.trust {
  background: var(--charcoal);
  border-top: 1px solid rgba(147, 39, 44, 0.15);
  border-bottom: 1px solid rgba(147, 39, 44, 0.15);
  padding: 44px 0;
}

.trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.trust__item {
  display: flex;
  align-items: center;
  gap: 16px;
  text-align: left;
}

.trust__icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust__icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--deep-red);
  stroke-width: 1.5;
  fill: none;
}

.trust__label {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--cream-dark);
  line-height: 1.5;
}

/* =========================================
   4. ABOUT SECTION (LIGHT)
   ========================================= */
.about {
  background: var(--cream);
  padding: 120px 0;
  position: relative;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about__title {
  font-size: clamp(32px, 3.5vw, 44px);
  margin-bottom: 16px;
}

.about__italic {
  font-family: var(--font-serif);
  font-size: 17px;
  font-style: italic;
  color: rgba(147, 39, 44, 0.7);
  margin-bottom: 28px;
  line-height: 1.6;
}

.about__body p {
  font-size: 15.5px;
  line-height: 1.8;
  color: var(--silver);
  margin-bottom: 18px;
}

.about__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.about__card {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  padding: 28px 24px;
  transition: all 0.35s ease;
}

.about__card:hover {
  border-color: rgba(147, 39, 44, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.about__card-icon {
  width: 44px;
  height: 44px;
  background: var(--deep-red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.about__card-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--white);
  stroke-width: 1.5;
  fill: none;
}

.about__card h4 {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 8px;
  line-height: 1.3;
}

.about__card p {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--silver);
}

/* =========================================
   5. PRICING SECTION (LIGHT)
   ========================================= */
.pricing {
  background: var(--white);
  padding: 120px 0;
  position: relative;
}

.pricing::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--deep-red), transparent);
}

.pricing__header {
  text-align: center;
  margin-bottom: 64px;
}

.pricing__header .eyebrow {
  justify-content: center;
}

.pricing__title {
  font-size: clamp(32px, 3.5vw, 44px);
  margin-bottom: 16px;
}

.pricing__subtitle {
  font-family: var(--font-sans);
  font-size: 16px;
  color: var(--silver);
  max-width: 560px;
  margin: 0 auto;
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}

.pricing__card {
  background: var(--cream);
  border: 1px solid var(--cream-dark);
  padding: 40px 32px;
  position: relative;
  transition: all 0.35s ease;
}

.pricing__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
}

.pricing__card--featured {
  border-color: var(--deep-red);
  border-width: 2px;
  position: relative;
  overflow: hidden;
}

.pricing__card--featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--deep-red), rgba(147, 39, 44, 0.5));
}

.pricing__badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 5px 14px;
  background: var(--deep-red);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.pricing__tier {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--deep-red);
  margin-bottom: 8px;
}

.pricing__name {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.pricing__divider {
  width: 40px;
  height: 1px;
  background: var(--deep-red);
  margin-bottom: 24px;
  opacity: 0.4;
}

.pricing__list {
  margin-bottom: 32px;
}

.pricing__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--silver);
  margin-bottom: 14px;
  line-height: 1.5;
}

.pricing__list li::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--deep-red);
  border-radius: 1px;
  transform: rotate(45deg);
  flex-shrink: 0;
  margin-top: 7px;
}

.pricing__list li.pricing__includes {
  font-weight: 600;
  color: var(--charcoal);
  font-size: 13px;
  letter-spacing: 0.3px;
  margin-bottom: 16px;
}

.pricing__list li.pricing__includes::before {
  display: none;
}

.btn-outline {
  display: block;
  text-align: center;
  padding: 14px 28px;
  border: 1.5px solid var(--deep-red);
  color: var(--deep-red);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.35s ease;
  cursor: pointer;
  background: transparent;
  width: 100%;
}

.btn-outline:hover {
  background: var(--deep-red);
  color: var(--white);
}

.btn-filled {
  display: block;
  text-align: center;
  padding: 14px 28px;
  background: var(--deep-red);
  border: 1.5px solid var(--deep-red);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.35s ease;
  cursor: pointer;
  width: 100%;
}

.btn-filled:hover {
  background: transparent;
  color: var(--deep-red);
}

/* =========================================
   6. TESTIMONIAL (DARK)
   ========================================= */
.testimonial {
  background: var(--near-black);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.testimonial__inner {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.testimonial__inner .eyebrow {
  justify-content: center;
}

.testimonial__quote-mark {
  font-family: var(--font-serif);
  font-size: 140px;
  font-weight: 700;
  color: var(--deep-red);
  opacity: 0.15;
  line-height: 1;
  margin-bottom: -40px;
  display: block;
  user-select: none;
}

.testimonial__text {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.5vw, 28px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.6;
  color: var(--cream);
  margin-bottom: 40px;
  letter-spacing: -0.01em;
}

.testimonial__divider {
  width: 50px;
  height: 1px;
  background: var(--deep-red);
  margin: 0 auto 24px;
  opacity: 0.5;
}

.testimonial__author {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--cream-dark);
  margin-bottom: 4px;
}

.testimonial__role {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--silver);
}

/* =========================================
   7. SERVICES DETAIL (LIGHT)
   ========================================= */
.services {
  background: var(--white);
  padding: 120px 0;
}

.services__header {
  margin-bottom: 64px;
}

.services__title {
  font-size: clamp(32px, 3.5vw, 44px);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.services__item {
  padding: 32px 28px;
  border: 1px solid var(--cream-dark);
  background: var(--cream);
  transition: all 0.35s ease;
  position: relative;
}

.services__item:hover {
  border-color: rgba(147, 39, 44, 0.25);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
  transform: translateY(-2px);
}

.services__number {
  font-family: var(--font-serif);
  font-size: 40px;
  font-weight: 600;
  color: rgba(147, 39, 44, 0.12);
  line-height: 1;
  margin-bottom: 14px;
  letter-spacing: -0.03em;
}

.services__item h4 {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 10px;
  line-height: 1.3;
}

.services__item p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--silver);
}

/* =========================================
   8. CTA SECTION (DARK)
   ========================================= */
.cta-section {
  background: linear-gradient(170deg, var(--charcoal) 0%, var(--near-black) 100%);
  padding: 120px 0;
  position: relative;
  text-align: center;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--deep-red), transparent);
}

.cta-section__inner {
  max-width: 640px;
  margin: 0 auto;
}

.cta-section__inner .eyebrow {
  justify-content: center;
}

.cta-section__title {
  font-size: clamp(34px, 4vw, 48px);
  margin-bottom: 20px;
}

.cta-section__body {
  font-size: 16px;
  color: var(--silver);
  margin-bottom: 44px;
  line-height: 1.7;
}

.cta-section__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.cta-section__phone {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--cream-dark);
  letter-spacing: 1px;
}

.cta-section__phone a {
  color: var(--cream-dark);
  transition: color 0.3s ease;
}

.cta-section__phone a:hover {
  color: var(--deep-red);
}

/* =========================================
   9. FOOTER
   ========================================= */
.footer {
  background: var(--near-black);
  padding: 80px 0 0;
  border-top: 1px solid rgba(147, 39, 44, 0.1);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 60px;
}

.footer__brand-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--silver);
  margin-top: 16px;
}

.footer__logo img {
  height: 44px;
  width: auto;
}

.footer__col-title {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--deep-red);
  margin-bottom: 24px;
}

.footer__links li {
  margin-bottom: 12px;
}

.footer__links a {
  font-size: 14px;
  color: var(--silver);
  transition: color 0.3s ease;
}

.footer__links a:hover {
  color: var(--cream);
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 14px;
  color: var(--silver);
  line-height: 1.6;
}

.footer__contact-item svg {
  width: 16px;
  height: 16px;
  stroke: var(--deep-red);
  stroke-width: 1.5;
  fill: none;
  flex-shrink: 0;
  margin-top: 3px;
}

.footer__contact-item a {
  color: var(--silver);
  transition: color 0.3s ease;
}

.footer__contact-item a:hover {
  color: var(--cream);
}

.footer__bottom {
  border-top: 1px solid rgba(147, 39, 44, 0.12);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__copy {
  font-size: 13px;
  color: var(--silver);
}

.footer__bottom-links {
  display: flex;
  gap: 24px;
}

.footer__bottom-links a {
  font-size: 13px;
  color: var(--silver);
  transition: color 0.3s ease;
}

.footer__bottom-links a:hover {
  color: var(--cream);
}

/* =========================================
   RESPONSIVE - 1024px
   ========================================= */
@media (max-width: 1024px) {
  .container {
    padding: 0 28px;
  }

  .nav__inner {
    padding: 0 28px;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 0;
  }

  .hero__diamond-wrap {
    display: none;
  }

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

  .pricing__grid {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin: 0 auto;
  }

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

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .trust__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

/* =========================================
   RESPONSIVE - 640px
   ========================================= */
@media (max-width: 640px) {
  :root {
    --nav-height: 64px;
  }

  .container {
    padding: 0 20px;
  }

  .nav__inner {
    padding: 0 20px;
  }

  .nav__logo img {
    height: 40px;
  }

  .nav__links {
    display: none;
  }

  .nav__toggle {
    display: flex;
  }

  /* --- HERO: compact, punchy mobile layout --- */
  .hero {
    min-height: auto;
    padding-top: var(--nav-height);
  }

  .hero__inner {
    padding: 36px 0 44px;
  }

  /* Ensure hero animations play immediately on mobile for above-fold */
  .hero__badge,
  .hero__title,
  .hero__tagline,
  .hero__body,
  .hero__ctas,
  .hero__proof {
    animation-delay: 0s !important;
  }

  .hero__badge {
    margin-bottom: 16px;
    padding: 5px 12px;
  }

  .hero__badge span {
    font-size: 8.5px;
    letter-spacing: 1.2px;
  }

  .hero__title {
    font-size: 28px;
    margin-bottom: 6px;
    line-height: 1.15;
  }

  .hero__tagline {
    font-size: 14px;
    margin-bottom: 14px;
  }

  .hero__body {
    font-size: 13.5px;
    line-height: 1.65;
    margin-bottom: 24px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .hero__ctas {
    flex-direction: row;
    align-items: center;
    gap: 18px;
    margin-bottom: 32px;
    flex-wrap: nowrap;
  }

  .btn-primary {
    padding: 13px 20px;
    font-size: 9.5px;
    letter-spacing: 1px;
    white-space: nowrap;
  }

  .btn-text {
    font-size: 10px;
    letter-spacing: 0.8px;
    white-space: nowrap;
  }

  /* Keep proof stats in a row — compact but readable */
  .hero__proof {
    flex-direction: row;
    align-items: center;
    gap: 0;
  }

  .hero__proof-item {
    padding: 0 16px;
    text-align: center;
  }

  .hero__proof-item:first-child {
    padding-left: 0;
  }

  .hero__proof-item:last-child {
    padding-right: 0;
  }

  .hero__proof-item + .hero__proof-item::before {
    display: block;
    height: 24px;
  }

  .hero__proof-value {
    font-size: 20px;
  }

  .hero__proof-label {
    font-size: 8.5px;
    letter-spacing: 1px;
  }

  /* --- REST OF PAGE --- */
  .about {
    padding: 80px 0;
  }

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

  .pricing {
    padding: 80px 0;
  }

  .testimonial {
    padding: 80px 0;
  }

  .testimonial__text {
    font-size: 20px;
  }

  .services {
    padding: 80px 0;
  }

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

  .cta-section {
    padding: 80px 0;
  }

  .cta-section__actions {
    flex-direction: column;
  }

  .trust__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

/* =========================================
   RESPONSIVE - 375px (small phones)
   ========================================= */
@media (max-width: 375px) {
  .hero__title {
    font-size: 26px;
  }

  .hero__tagline {
    font-size: 13px;
    margin-bottom: 12px;
  }

  .hero__body {
    font-size: 13px;
    -webkit-line-clamp: 3;
    margin-bottom: 20px;
  }

  .hero__ctas {
    gap: 14px;
    margin-bottom: 28px;
  }

  .hero__proof-item {
    padding: 0 10px;
  }

  .hero__proof-value {
    font-size: 18px;
  }

  .hero__proof-label {
    font-size: 7.5px;
    letter-spacing: 0.6px;
  }

  .btn-primary {
    padding: 12px 16px;
    font-size: 9px;
    letter-spacing: 0.8px;
  }

  .btn-text {
    font-size: 9.5px;
    letter-spacing: 0.6px;
  }
}

/* =========================================
   10. PAGE HERO (Interior Pages)
   ========================================= */
.page-hero {
  position: relative;
  background: var(--near-black);
  padding: calc(var(--nav-height) + 60px) 0 80px;
  overflow: hidden;
}

.page-hero__grid-lines {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.page-hero__grid-lines::before,
.page-hero__grid-lines::after {
  content: '';
  position: absolute;
  top: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(103, 103, 103, 0.06) 20%, rgba(103, 103, 103, 0.06) 80%, transparent);
}

.page-hero__grid-lines::before { left: 25%; }
.page-hero__grid-lines::after { right: 25%; }

.page-hero .container {
  position: relative;
}

.page-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 32px;
}

.page-hero__breadcrumb a {
  color: var(--silver);
  transition: color 0.3s ease;
}

.page-hero__breadcrumb a:hover {
  color: var(--deep-red);
}

.page-hero__breadcrumb-sep {
  color: rgba(147, 39, 44, 0.4);
  font-weight: 300;
}

.page-hero__content {
  max-width: 720px;
}

.page-hero__title {
  font-size: clamp(34px, 4.5vw, 54px);
  margin-bottom: 20px;
}

.page-hero__title em {
  font-style: italic;
  color: var(--deep-red);
}

.page-hero__subtitle {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.7;
  color: var(--silver-light);
  max-width: 580px;
}

.page-hero__diamond-accent {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.page-hero__diamond-shape {
  width: 120px;
  height: 120px;
  border: 1px solid rgba(147, 39, 44, 0.15);
  transform: rotate(45deg);
  position: relative;
}

.page-hero__diamond-shape::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(147, 39, 44, 0.06);
}

/* =========================================
   11. STORY SECTION (About Page)
   ========================================= */
.story {
  background: var(--cream);
  padding: 120px 0;
}

.story__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: start;
}

.story__title {
  font-size: clamp(30px, 3.5vw, 42px);
  margin-bottom: 24px;
}

.story__body p {
  font-size: 15.5px;
  line-height: 1.8;
  color: var(--silver);
  margin-bottom: 18px;
}

.story__metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.story__metric-card {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  padding: 28px 24px;
  position: relative;
  transition: all 0.35s ease;
}

.story__metric-card:hover {
  border-color: rgba(147, 39, 44, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.story__metric-value {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 600;
  color: var(--deep-red);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 6px;
}

.story__metric-label {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--silver);
  line-height: 1.4;
}

.story__metric-line {
  width: 32px;
  height: 1px;
  background: var(--deep-red);
  opacity: 0.3;
  margin-top: 16px;
}

/* =========================================
   12. LEADERSHIP SECTION
   ========================================= */
.leadership {
  background: var(--near-black);
  padding: 120px 0;
  position: relative;
}

.leadership::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--deep-red), transparent);
}

.leadership__header {
  text-align: center;
  margin-bottom: 64px;
}

.leadership__header .eyebrow {
  justify-content: center;
}

.leadership__title {
  font-size: clamp(30px, 3.5vw, 42px);
  margin-bottom: 16px;
}

.leadership__subtitle {
  font-family: var(--font-sans);
  font-size: 16px;
  color: var(--silver);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.leadership__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  max-width: 900px;
  margin: 0 auto;
}

.leadership__card {
  background: var(--charcoal);
  border: 1px solid rgba(147, 39, 44, 0.15);
  padding: 44px 36px;
  position: relative;
  transition: all 0.35s ease;
}

.leadership__card:hover {
  border-color: rgba(147, 39, 44, 0.35);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
  transform: translateY(-3px);
}

.leadership__card-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 60px;
  background: var(--deep-red);
}

.leadership__card-initial {
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 600;
  color: rgba(147, 39, 44, 0.15);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}

.leadership__card-name {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 4px;
}

.leadership__card-role {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--deep-red);
  margin-bottom: 20px;
}

.leadership__card-divider {
  width: 40px;
  height: 1px;
  background: rgba(147, 39, 44, 0.3);
  margin-bottom: 20px;
}

.leadership__card-bio {
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--silver);
}

/* =========================================
   13. APPROACH SECTION
   ========================================= */
.approach {
  background: var(--cream);
  padding: 120px 0;
}

.approach__header {
  margin-bottom: 64px;
}

.approach__title {
  font-size: clamp(30px, 3.5vw, 42px);
  margin-bottom: 16px;
}

.approach__subtitle {
  font-family: var(--font-sans);
  font-size: 16px;
  color: var(--silver);
  max-width: 600px;
  line-height: 1.7;
}

.approach__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.approach__card {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  padding: 36px 32px;
  position: relative;
  transition: all 0.35s ease;
}

.approach__card:hover {
  border-color: rgba(147, 39, 44, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.approach__card-number {
  font-family: var(--font-serif);
  font-size: 40px;
  font-weight: 600;
  color: rgba(147, 39, 44, 0.1);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -0.03em;
}

.approach__card-icon {
  width: 44px;
  height: 44px;
  background: var(--deep-red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.approach__card-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--white);
  stroke-width: 1.5;
  fill: none;
}

.approach__card h4 {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 12px;
  line-height: 1.3;
}

.approach__card p {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--silver);
}

/* =========================================
   14. STATS BAR
   ========================================= */
.stats-bar {
  background: var(--charcoal);
  border-top: 1px solid rgba(147, 39, 44, 0.15);
  border-bottom: 1px solid rgba(147, 39, 44, 0.15);
  padding: 52px 0;
}

.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.stats-bar__item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.stats-bar__icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stats-bar__icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--deep-red);
  stroke-width: 1.5;
  fill: none;
}

.stats-bar__value {
  display: block;
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.stats-bar__label {
  display: block;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--silver);
  margin-top: 2px;
}

/* =========================================
   15. CHALLENGE SECTION (Services Page)
   ========================================= */
.challenge {
  background: var(--cream);
  padding: 120px 0;
}

.challenge__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: start;
}

.challenge__title {
  font-size: clamp(30px, 3.5vw, 42px);
  margin-bottom: 24px;
}

.challenge__body p {
  font-size: 15.5px;
  line-height: 1.8;
  color: var(--silver);
  margin-bottom: 18px;
}

.challenge__question-card {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-left: 3px solid var(--deep-red);
  padding: 36px 32px;
}

.challenge__question-mark {
  font-family: var(--font-serif);
  font-size: 72px;
  font-weight: 700;
  color: var(--deep-red);
  opacity: 0.15;
  line-height: 1;
  margin-bottom: -16px;
  display: block;
  user-select: none;
}

.challenge__question-text {
  font-family: var(--font-serif);
  font-size: 18px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.6;
  color: var(--charcoal);
  margin-bottom: 20px;
}

.challenge__question-line {
  width: 40px;
  height: 1px;
  background: var(--deep-red);
  opacity: 0.4;
  margin-bottom: 20px;
}

.challenge__question-answer {
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--silver);
}

/* =========================================
   16. SERVICE TIERS (Services Page)
   ========================================= */
.service-tiers {
  background: var(--white);
  padding: 120px 0;
  position: relative;
}

.service-tiers::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--deep-red), transparent);
}

.service-tiers__header {
  text-align: center;
  margin-bottom: 64px;
}

.service-tiers__header .eyebrow {
  justify-content: center;
}

.service-tiers__title {
  font-size: clamp(30px, 3.5vw, 42px);
  margin-bottom: 16px;
}

.service-tiers__subtitle {
  font-family: var(--font-sans);
  font-size: 16px;
  color: var(--silver);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

.service-tiers__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}

.service-tiers__card {
  background: var(--cream);
  border: 1px solid var(--cream-dark);
  padding: 40px 32px;
  position: relative;
  transition: all 0.35s ease;
}

.service-tiers__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
}

.service-tiers__card--featured {
  border-color: var(--deep-red);
  border-width: 2px;
  overflow: hidden;
}

.service-tiers__card--featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--deep-red), rgba(147, 39, 44, 0.5));
}

.service-tiers__card-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 5px 14px;
  background: var(--deep-red);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.service-tiers__card-tier {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--deep-red);
  margin-bottom: 8px;
}

.service-tiers__card-name {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.service-tiers__card-divider {
  width: 40px;
  height: 1px;
  background: var(--deep-red);
  margin-bottom: 20px;
  opacity: 0.4;
}

.service-tiers__card-desc {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--silver);
  margin-bottom: 24px;
}

.service-tiers__card-list {
  margin-bottom: 32px;
}

.service-tiers__card-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--silver);
  margin-bottom: 14px;
  line-height: 1.5;
}

.service-tiers__card-list li::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--deep-red);
  border-radius: 1px;
  transform: rotate(45deg);
  flex-shrink: 0;
  margin-top: 7px;
}

.service-tiers__card-list li.service-tiers__card-includes {
  font-weight: 600;
  color: var(--charcoal);
  font-size: 13px;
  letter-spacing: 0.3px;
  margin-bottom: 16px;
}

.service-tiers__card-list li.service-tiers__card-includes::before {
  display: none;
}

/* =========================================
   17. SERVICE OVERVIEW (Detail Pages)
   ========================================= */
.svc-overview {
  background: var(--cream);
  padding: 120px 0;
}

.svc-overview__grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 64px;
  align-items: start;
}

.svc-overview__title {
  font-size: clamp(30px, 3.5vw, 42px);
  margin-bottom: 24px;
}

.svc-overview__body p {
  font-size: 15.5px;
  line-height: 1.8;
  color: var(--silver);
  margin-bottom: 18px;
}

.svc-overview__tier-card {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-top: 3px solid var(--deep-red);
  padding: 36px 32px;
  position: sticky;
  top: calc(var(--nav-height) + 32px);
}

.svc-overview__tier-label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 8px;
}

.svc-overview__tier-name {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 500;
  color: var(--charcoal);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.svc-overview__tier-level {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--deep-red);
  margin-bottom: 20px;
}

.svc-overview__tier-divider {
  width: 40px;
  height: 1px;
  background: var(--deep-red);
  opacity: 0.3;
  margin-bottom: 20px;
}

.svc-overview__tier-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--silver);
  margin-bottom: 28px;
}

/* =========================================
   18. SERVICE FEATURES GRID
   ========================================= */
.svc-features {
  background: var(--white);
  padding: 120px 0;
  position: relative;
}

.svc-features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--deep-red), transparent);
}

.svc-features__header {
  margin-bottom: 64px;
}

.svc-features__title {
  font-size: clamp(30px, 3.5vw, 42px);
}

.svc-features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.svc-features__card {
  background: var(--cream);
  border: 1px solid var(--cream-dark);
  padding: 36px 28px;
  transition: all 0.35s ease;
}

.svc-features__card:hover {
  border-color: rgba(147, 39, 44, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.svc-features__card-icon {
  width: 48px;
  height: 48px;
  background: var(--deep-red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.svc-features__card-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--white);
  stroke-width: 1.5;
  fill: none;
}

.svc-features__card h4 {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 12px;
  line-height: 1.3;
}

.svc-features__card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--silver);
}

/* =========================================
   19. PROCESS SECTION
   ========================================= */
.process {
  background: var(--near-black);
  padding: 120px 0;
  position: relative;
}

.process::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--deep-red), transparent);
}

.process__header {
  text-align: center;
  margin-bottom: 64px;
}

.process__header .eyebrow {
  justify-content: center;
}

.process__title {
  font-size: clamp(30px, 3.5vw, 42px);
}

.process__grid {
  display: flex;
  align-items: stretch;
  gap: 0;
  max-width: 960px;
  margin: 0 auto;
}

.process__step {
  flex: 1;
  background: var(--charcoal);
  border: 1px solid rgba(147, 39, 44, 0.15);
  padding: 36px 28px;
  position: relative;
  transition: all 0.35s ease;
}

.process__step:hover {
  border-color: rgba(147, 39, 44, 0.35);
  transform: translateY(-2px);
}

.process__step-number {
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 600;
  color: rgba(147, 39, 44, 0.2);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}

.process__step h4 {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 12px;
  line-height: 1.3;
}

.process__step p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--silver);
}

.process__step-connector {
  width: 32px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.process__step-connector::before {
  content: '';
  width: 100%;
  height: 1px;
  background: var(--deep-red);
  opacity: 0.3;
}

.process__step-connector::after {
  content: '';
  position: absolute;
  right: 0;
  width: 6px;
  height: 6px;
  border-right: 1px solid var(--deep-red);
  border-bottom: 1px solid var(--deep-red);
  transform: rotate(-45deg);
  opacity: 0.4;
}

/* =========================================
   20. STRATEGIC VALUE SECTION (CFO Page)
   ========================================= */
.strategic-value {
  background: var(--cream);
  padding: 120px 0;
}

.strategic-value__inner {
  max-width: 1000px;
}

.strategic-value__title {
  font-size: clamp(30px, 3.5vw, 42px);
  margin-bottom: 48px;
}

.strategic-value__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.strategic-value__item {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  padding: 32px 28px;
  transition: all 0.35s ease;
}

.strategic-value__item:hover {
  border-color: rgba(147, 39, 44, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.strategic-value__item-icon {
  width: 44px;
  height: 44px;
  background: var(--deep-red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.strategic-value__item-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--white);
  stroke-width: 1.5;
  fill: none;
}

.strategic-value__item h4 {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 10px;
  line-height: 1.3;
}

.strategic-value__item p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--silver);
}

/* =========================================
   RESPONSIVE - Interior Pages (1024px)
   ========================================= */
@media (max-width: 1024px) {
  .page-hero__diamond-accent {
    display: none;
  }

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

  .story__metrics {
    grid-template-columns: repeat(4, 1fr);
  }

  .leadership__grid {
    grid-template-columns: 1fr;
    max-width: 520px;
  }

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

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

  .service-tiers__grid {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin: 0 auto;
  }

  .svc-overview__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .svc-overview__tier-card {
    position: static;
  }

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

  .process__grid {
    flex-direction: column;
    gap: 0;
  }

  .process__step-connector {
    width: auto;
    height: 32px;
  }

  .process__step-connector::before {
    width: 1px;
    height: 100%;
  }

  .process__step-connector::after {
    right: auto;
    bottom: 0;
    top: auto;
    border-right: 1px solid var(--deep-red);
    border-bottom: 1px solid var(--deep-red);
    transform: rotate(45deg);
  }

  .strategic-value__grid {
    grid-template-columns: 1fr;
  }

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

/* =========================================
   RESPONSIVE - Interior Pages (640px)
   ========================================= */
@media (max-width: 640px) {
  .page-hero {
    padding: calc(var(--nav-height) + 36px) 0 56px;
  }

  .page-hero__breadcrumb {
    font-size: 10px;
    margin-bottom: 24px;
    gap: 8px;
  }

  .page-hero__title {
    font-size: 28px;
  }

  .page-hero__subtitle {
    font-size: 15px;
  }

  .story {
    padding: 80px 0;
  }

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

  .leadership {
    padding: 80px 0;
  }

  .leadership__card {
    padding: 32px 24px;
  }

  .leadership__card-initial {
    font-size: 36px;
  }

  .approach {
    padding: 80px 0;
  }

  .approach__card {
    padding: 28px 24px;
  }

  .stats-bar__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .challenge {
    padding: 80px 0;
  }

  .service-tiers {
    padding: 80px 0;
  }

  .svc-overview {
    padding: 80px 0;
  }

  .svc-features {
    padding: 80px 0;
  }

  .svc-features__grid {
    grid-template-columns: 1fr;
  }

  .process {
    padding: 80px 0;
  }

  .strategic-value {
    padding: 80px 0;
  }
}

/* =========================================
   21. CONTACT PAGE
   ========================================= */
.contact-section {
  background: var(--cream);
  padding: 120px 0;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 64px;
  align-items: start;
}

/* --- Form --- */
.contact__form-wrap {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  padding: 48px 44px;
}

.contact__form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.contact__field {
  display: flex;
  flex-direction: column;
}

.contact__field--full {
  margin-bottom: 28px;
}

.contact__field label {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.contact__required {
  color: var(--deep-red);
}

.contact__field input,
.contact__field select,
.contact__field textarea {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 400;
  color: var(--charcoal);
  background: var(--cream);
  border: 1px solid var(--cream-dark);
  padding: 14px 16px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  outline: none;
  width: 100%;
}

.contact__field input::placeholder,
.contact__field textarea::placeholder {
  color: var(--silver-light);
}

.contact__field input:focus,
.contact__field select:focus,
.contact__field textarea:focus {
  border-color: var(--deep-red);
  box-shadow: 0 0 0 3px rgba(147, 39, 44, 0.08);
}

.contact__field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23676767' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.contact__field textarea {
  resize: vertical;
  min-height: 120px;
}

.contact__field--error input,
.contact__field--error select,
.contact__field--error textarea {
  border-color: var(--deep-red);
  box-shadow: 0 0 0 3px rgba(147, 39, 44, 0.1);
}

.contact__form-footer {
  margin-bottom: 20px;
}

.contact__submit {
  cursor: pointer;
}

.contact__submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Success / Error messages */
.contact__message {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  padding: 16px 20px;
  line-height: 1.5;
}

.contact__message--success {
  background: rgba(34, 139, 34, 0.08);
  border: 1px solid rgba(34, 139, 34, 0.25);
  color: #1a6b1a;
}

.contact__message--error {
  background: rgba(147, 39, 44, 0.08);
  border: 1px solid rgba(147, 39, 44, 0.25);
  color: var(--deep-red);
}

/* --- Sidebar --- */
.contact__sidebar-card {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-top: 3px solid var(--deep-red);
  padding: 40px 32px;
  position: sticky;
  top: calc(var(--nav-height) + 32px);
}

.contact__sidebar-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.contact__sidebar-divider {
  width: 40px;
  height: 1px;
  background: var(--deep-red);
  opacity: 0.3;
  margin-bottom: 24px;
}

.contact__sidebar-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 24px;
}

.contact__sidebar-icon {
  width: 40px;
  height: 40px;
  background: rgba(147, 39, 44, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact__sidebar-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--deep-red);
  stroke-width: 1.5;
  fill: none;
}

.contact__sidebar-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 4px;
}

.contact__sidebar-text {
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--charcoal);
  line-height: 1.5;
}

.contact__sidebar-text a {
  color: var(--charcoal);
  transition: color 0.3s ease;
}

.contact__sidebar-text a:hover {
  color: var(--deep-red);
}

.contact__sidebar-promise {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.contact__sidebar-promise-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact__sidebar-promise-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--deep-red);
  stroke-width: 1.5;
  fill: none;
}

.contact__sidebar-promise p {
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.6;
  color: var(--silver);
}

.contact__sidebar-promise strong {
  color: var(--charcoal);
  font-weight: 600;
}

/* --- Contact Responsive 1024px --- */
@media (max-width: 1024px) {
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact__sidebar-card {
    position: static;
  }
}

/* --- Contact Responsive 640px --- */
@media (max-width: 640px) {
  .contact-section {
    padding: 80px 0;
  }

  .contact__form-wrap {
    padding: 32px 24px;
  }

  .contact__form-row {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 20px;
  }

  .contact__sidebar-card {
    padding: 32px 24px;
  }
}
