*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream: #FAFAF7;
  --ivory: #F4F2EE;
  --bone: #EAE7E0;
  --navy: #0E1B2E;
  --navy-mid: #1B2F4A;
  --navy-light: #2E4A6B;
  --gold: #B8943A;
  --gold-light: #D4AE5B;
  --gold-pale: #F0E8D2;
  --text-main: #0E1B2E;
  --text-mid: #4A5568;
  --text-muted: #8A94A0;
  --border: #DDD9D0;
  --border-light: #EDEAE4;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'DM Sans', system-ui, sans-serif;
  --font-mono: 'DM Mono', monospace;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--text-main);
  line-height: 1.7;
  overflow-x: hidden;
}

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 5vw;
  background: rgba(250,250,247,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 4px 32px rgba(14,27,46,0.07); }

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mid);
  text-decoration: none;
  transition: color 0.25s;
}
.nav-links a:hover { color: var(--navy); }
.nav-cta {
  background: var(--navy);
  color: var(--cream) !important;
  padding: 0.55rem 1.4rem !important;
  border-radius: 2px !important;
  letter-spacing: 0.1em !important;
  transition: background 0.25s !important;
}
.nav-cta:hover { background: var(--gold) !important; color: var(--cream) !important; }

/* LOGO TEXT */
.nav-logo-main {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: #0E1B2E;
  letter-spacing: 0.05em;
  line-height: 1.1;
}
.nav-logo-sub {
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #8A94A0;
  line-height: 1;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 8rem 5vw 6rem;
  gap: 4rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(184,148,58,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.hero-eyebrow span {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.eyebrow-line {
  width: 40px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--navy);
  margin-bottom: 1.5rem;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
}
.hero-sub {
  font-size: 1rem;
  color: var(--text-mid);
  max-width: 440px;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  font-weight: 300;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--navy);
  color: var(--cream);
  padding: 0.85rem 2rem;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.3s;
}
.btn-primary:hover { background: var(--gold); transform: translateY(-2px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid var(--navy);
  padding-bottom: 2px;
  transition: all 0.25s;
}
.btn-ghost:hover { color: var(--gold); border-color: var(--gold); }

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-card-stack {
  position: relative;
  width: 360px;
  height: 420px;
}
.hcard {
  position: absolute;
  border-radius: 4px;
  background: white;
  border: 1px solid var(--border);
  padding: 1.5rem;
  animation: float 6s ease-in-out infinite;
  box-shadow: 0 8px 40px rgba(14,27,46,0.06);
}
.hcard-main {
  width: 320px;
  top: 40px; left: 20px;
  animation-delay: 0s;
  z-index: 3;
}
.hcard-back {
  width: 280px;
  top: 10px; left: 50px;
  animation-delay: -3s;
  z-index: 2;
  background: var(--ivory);
  transform: rotate(3deg);
}
@keyframes float {
  0%,100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}
.hcard-back { animation: floatback 6s ease-in-out infinite; }
@keyframes floatback {
  0%,100% { transform: translateY(0px) rotate(3deg); }
  50% { transform: translateY(-6px) rotate(3deg); }
}
.hcard-tag {
  display: inline-block;
  background: var(--gold-pale);
  color: var(--gold);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 2px;
  margin-bottom: 1rem;
  font-weight: 500;
}
.hcard h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.hcard p {
  font-size: 0.82rem;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
.hcard-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.metric {
  background: var(--ivory);
  border-radius: 3px;
  padding: 0.7rem;
}
.metric-val {
  font-family: var(--font-mono);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--navy);
  display: block;
}
.metric-label {
  font-size: 0.65rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* STATS BAR */
.stats-bar {
  background: var(--navy);
  padding: 3rem 5vw;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-item {}
.stat-num {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--gold-light);
  display: block;
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-desc {
  font-size: 0.75rem;
  color: rgba(250,250,247,0.5);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

/* SECTIONS */
section {
  padding: 7rem 5vw;
}
.section-header {
  margin-bottom: 4rem;
}
.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.section-eyebrow span {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.section-eyebrow::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--gold);
  display: inline-block;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 300;
  color: var(--navy);
  line-height: 1.15;
  max-width: 700px;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-sub {
  font-size: 0.95rem;
  color: var(--text-mid);
  max-width: 540px;
  margin-top: 1rem;
  font-weight: 300;
  line-height: 1.8;
}

/* SERVICES */
.services { background: var(--ivory); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--border);
  border: 1.5px solid var(--border);
}
.service-card {
  background: white;
  padding: 2.5rem;
  transition: background 0.3s;
  cursor: default;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 2.5rem; right: 2.5rem;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}
.service-card:hover { background: var(--cream); }
.service-card:hover::before { transform: scaleX(1); }
.service-num {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  display: block;
}
.service-icon {
  width: 40px; height: 40px;
  margin-bottom: 1.25rem;
}
.service-card h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.service-card p {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.75;
  font-weight: 300;
}
.service-tags {
  margin-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.tag {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--border);
  padding: 0.2rem 0.6rem;
  border-radius: 2px;
}

/* VALUE PROP */
.value { background: var(--cream); }
.value-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.value-text .section-header { margin-bottom: 2rem; }
.value-points {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
.value-point {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.vp-num {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--gold);
  min-width: 24px;
  margin-top: 0.3rem;
}
.vp-content h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 0.3rem;
}
.vp-content p {
  font-size: 0.85rem;
  color: var(--text-mid);
  font-weight: 300;
  line-height: 1.7;
}
.value-visual {
  background: var(--navy);
  border-radius: 4px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
}
.value-visual::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: rgba(184,148,58,0.08);
}
.value-visual blockquote {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(250,250,247,0.9);
  line-height: 1.5;
  position: relative;
  z-index: 1;
  margin-bottom: 2rem;
}
.value-visual blockquote::before {
  content: '\201C';
  font-size: 4rem;
  color: var(--gold);
  line-height: 0;
  vertical-align: -1rem;
  margin-right: 0.25rem;
}
.quote-attr {
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
  z-index: 1;
}
.quote-line {
  width: 30px; height: 1px;
  background: var(--gold);
}
.quote-name {
  font-size: 0.75rem;
  color: rgba(250,250,247,0.5);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

/* VALUE VISUAL EXTRAS */
.value-visual-stats {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.value-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.value-stat {
  display: flex;
  flex-direction: column;
}
.value-stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 300;
  color: #D4AE5B;
}
.value-stat-label {
  font-size: 0.7rem;
  color: rgba(250,250,247,0.4);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* PRICING */
.pricing { background: var(--ivory); }
.pricing-toggle {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3.5rem;
}
.toggle-label {
  font-size: 0.8rem;
  color: var(--text-mid);
  letter-spacing: 0.05em;
}
.toggle {
  position: relative;
  width: 44px; height: 24px;
  background: var(--bone);
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.3s;
  border: 1px solid var(--border);
}
.toggle.active { background: var(--navy); }
.toggle::after {
  content: '';
  position: absolute;
  top: 3px; left: 3px;
  width: 16px; height: 16px;
  background: white;
  border-radius: 50%;
  transition: transform 0.3s;
  box-shadow: 0 1px 4px rgba(0,0,0,0.15);
}
.toggle.active::after { transform: translateX(20px); }
.save-badge {
  background: var(--gold-pale);
  color: var(--gold);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 2px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--border);
  border: 1.5px solid var(--border);
}
.plan {
  background: white;
  padding: 2.5rem;
  position: relative;
}
.plan.featured {
  background: var(--navy);
}
.plan-badge {
  display: inline-block;
  background: var(--gold);
  color: white;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 2px;
  margin-bottom: 1.5rem;
}
.plan-name {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 300;
  margin-bottom: 0.4rem;
  color: var(--navy);
}
.plan.featured .plan-name { color: var(--cream); }
.plan-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
  font-weight: 300;
}
.plan.featured .plan-desc { color: rgba(250,250,247,0.5); }
.plan-price {
  margin-bottom: 2rem;
}
.price-amount {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 300;
  color: var(--navy);
  line-height: 1;
}
.price-amount.featured {
  color: var(--gold-light);
}
.plan.featured .price-amount { color: var(--gold-light); }
.price-currency {
  font-size: 1.2rem;
  vertical-align: top;
  margin-top: 0.6rem;
  display: inline-block;
}
.price-period {
  font-size: 0.75rem;
  color: var(--text-muted);
  display: block;
  margin-top: 0.3rem;
  letter-spacing: 0.05em;
}
.plan.featured .price-period { color: rgba(250,250,247,0.4); }
.plan-divider {
  height: 1px;
  background: var(--border-light);
  margin: 0 0 1.75rem;
}
.plan.featured .plan-divider { background: rgba(255,255,255,0.1); }
.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2rem;
}
.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.83rem;
  color: var(--text-mid);
  font-weight: 300;
}
.plan.featured .plan-features li { color: rgba(250,250,247,0.75); }
.check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px; height: 16px;
  min-width: 16px;
  background: var(--gold-pale);
  border-radius: 50%;
  margin-top: 2px;
}
.check svg { width: 8px; height: 8px; }
.plan.featured .check {
  background: rgba(184,148,58,0.25);
}
.plan-cta {
  display: block;
  text-align: center;
  padding: 0.9rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.3s;
}
.plan-cta.outline {
  border: 1px solid var(--border);
  color: var(--navy);
}
.plan-cta.outline:hover {
  background: var(--navy);
  color: var(--cream);
  border-color: var(--navy);
}
.plan-cta.solid {
  background: var(--gold);
  color: white;
  border: 1px solid var(--gold);
}
.plan-cta.solid:hover {
  background: var(--gold-light);
}
.plan-note {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* PROCESS */
.process { background: var(--cream); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  margin-top: 4rem;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 20px; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border) 10%, var(--border) 90%, transparent);
}
.process-step { position: relative; }
.step-dot {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: white;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
  transition: all 0.3s;
}
.process-step:hover .step-dot {
  background: var(--navy);
  border-color: var(--navy);
}
.step-dot-inner {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
}
.step-num {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
  letter-spacing: 0.1em;
}
.process-step h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.process-step p {
  font-size: 0.82rem;
  color: var(--text-mid);
  font-weight: 300;
  line-height: 1.7;
}

/* TESTIMONIALS */
.testimonials { background: var(--ivory); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.testimonial {
  background: white;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2rem;
  position: relative;
}
.testimonial::before {
  content: '\201C';
  font-family: var(--font-serif);
  font-size: 3rem;
  color: var(--gold-pale);
  line-height: 0;
  position: absolute;
  top: 2rem; right: 1.5rem;
}
.testimonial-text {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-style: italic;
  color: var(--text-main);
  line-height: 1.75;
  margin-bottom: 1.5rem;
  font-weight: 300;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.author-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.05em;
}
.author-name {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--navy);
  display: block;
}
.author-role {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* CTA */
.cta-section {
  background: var(--navy);
  padding: 8rem 5vw;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(184,148,58,0.1) 0%, transparent 70%);
}
.cta-section .eyebrow-line { background: var(--gold); }
.cta-section .hero-eyebrow span { color: var(--gold); }
.cta-section .hero-eyebrow { justify-content: center; }
.cta-section h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.15;
  max-width: 700px;
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 1;
}
.cta-section h2 em { font-style: italic; color: var(--gold-light); }
.cta-section p {
  font-size: 0.95rem;
  color: rgba(250,250,247,0.5);
  max-width: 440px;
  margin: 0 auto 2.5rem;
  font-weight: 300;
  position: relative;
  z-index: 1;
}
.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold);
  color: white;
  padding: 0.9rem 2.2rem;
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.3s;
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-outline-light {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(250,250,247,0.2);
  color: rgba(250,250,247,0.7);
  padding: 0.9rem 2.2rem;
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.3s;
}
.btn-outline-light:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

/* FOOTER */
footer {
  background: #07101C;
  padding: 4rem 5vw 2rem;
  color: rgba(250,250,247,0.4);
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 2rem;
}
.footer-brand p {
  font-size: 0.82rem;
  line-height: 1.75;
  margin-top: 1rem;
  max-width: 260px;
  font-weight: 300;
}
.footer-col h5 {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250,250,247,0.6);
  margin-bottom: 1.25rem;
  font-weight: 500;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.footer-col ul a {
  font-size: 0.82rem;
  color: rgba(250,250,247,0.35);
  text-decoration: none;
  transition: color 0.2s;
  font-weight: 300;
}
.footer-col ul a:hover { color: var(--gold-light); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
}
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { color: rgba(250,250,247,0.25); text-decoration: none; font-size: 0.72rem; }
.footer-legal a:hover { color: var(--gold-light); }

/* FOOTER LOGO */
.footer-logo-container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}
.footer-logo-main {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(250,250,247,0.8);
  letter-spacing: 0.06em;
}
.footer-logo-sub {
  font-size: 0.5rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250,250,247,0.3);
}

/* ANIMATIONS */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }

/* CTA EYEBROW SPECIAL */
.cta-eyebrow-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

/* MOBILE */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding-top: 7rem; }
  .hero-visual { display: none; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .value-grid { grid-template-columns: 1fr; gap: 3rem; }
  .pricing-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-steps::before { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .nav-links { display: none; }
}
