/* ==========================================================================
   VINE CONSTRUCTION — Premium Property Services
   Design: Editorial minimalism with construction-industry gravitas
   ========================================================================== */

/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,400&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  /* Color Palette */
  --forest-deep: #1a2e22;
  --forest: #234835;
  --forest-light: #2d5a43;
  --gold: #c9a961;
  --gold-light: #d9bc7a;
  --gold-pale: #f0e4c7;
  --cream: #faf7f1;
  --cream-warm: #f5efe4;
  --ink: #0f1a14;
  --charcoal: #2a2a2a;
  --stone: #8b8680;
  --stone-light: #c4beb4;
  --white: #ffffff;
  
  /* Typography */
  --font-display: 'Fraunces', 'Times New Roman', serif;
  --font-body: 'Inter', system-ui, sans-serif;
  
  /* Spacing scale */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 9rem;
  
  /* Layout */
  --container: 1280px;
  --container-narrow: 960px;
}

/* Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* Typography */
.display-serif {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.05;
  font-variation-settings: "opsz" 144;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.eyebrow-dark {
  color: var(--forest);
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
}

.container-narrow {
  max-width: var(--container-narrow);
}

/* ==========================================================================
   NAVIGATION
   ========================================================================== */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 0;
  background: rgba(250, 247, 241, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(35, 72, 53, 0.08);
  transition: all 0.3s ease;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--forest-deep);
}

.nav-logo-img {
  height: 72px;
  width: auto;
  display: block;
}

.nav-logo-mark {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-menu a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--charcoal);
  position: relative;
  transition: color 0.2s ease;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-menu a:hover {
  color: var(--forest);
}

.nav-menu a:hover::after {
  width: 100%;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--forest-deep);
}

.nav-cta {
  padding: 0.75rem 1.5rem;
  background: var(--forest-deep);
  color: var(--cream);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: 2px;
  transition: all 0.3s ease;
  display: inline-block;
}

.nav-cta:hover {
  background: var(--forest);
  transform: translateY(-1px);
  box-shadow: 0 10px 30px -10px rgba(35, 72, 53, 0.4);
}

.mobile-toggle {
  display: none;
  width: 32px;
  height: 32px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}

.mobile-toggle span {
  width: 100%;
  height: 1.5px;
  background: var(--forest-deep);
  transition: all 0.3s ease;
}

/* ==========================================================================
   HERO
   ========================================================================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 9rem 0 4rem;
  overflow: hidden;
  background: var(--forest-deep);
  color: var(--cream);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(135deg, rgba(26, 46, 34, 0.92) 0%, rgba(26, 46, 34, 0.75) 50%, rgba(26, 46, 34, 0.55) 100%);
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  max-width: 680px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 1rem;
  background: rgba(201, 169, 97, 0.12);
  border: 1px solid rgba(201, 169, 97, 0.3);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--gold);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 6vw, 5rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin-bottom: 1.75rem;
  font-variation-settings: "opsz" 144;
}

.hero h1 em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold-light);
  font-variation-settings: "opsz" 144;
}

.hero-lede {
  font-size: 1.125rem;
  line-height: 1.65;
  color: rgba(250, 247, 241, 0.85);
  margin-bottom: 2.5rem;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.125rem 2rem;
  background: var(--gold);
  color: var(--forest-deep);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold-light);
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.btn-primary:hover::before {
  transform: translateX(0);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px -10px rgba(201, 169, 97, 0.5);
}

.btn-primary svg {
  transition: transform 0.3s ease;
}

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

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.125rem 2rem;
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(250, 247, 241, 0.3);
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: rgba(250, 247, 241, 0.08);
  border-color: var(--cream);
}

/* Hero stats - vertical card on right side */
.hero-stats {
  display: flex;
  flex-direction: column;
  padding: 2.5rem;
  background: rgba(15, 26, 20, 0.4);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(201, 169, 97, 0.2);
  border-radius: 3px;
}

.hero-stat {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.25rem 0;
}

.hero-stat:first-child {
  padding-top: 0;
}

.hero-stat:last-child {
  padding-bottom: 0;
}

.hero-stat-divider {
  height: 1px;
  background: rgba(201, 169, 97, 0.2);
  width: 100%;
}

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 300;
  color: var(--gold);
  font-variation-settings: "opsz" 144;
  line-height: 1;
  letter-spacing: -0.02em;
}

.hero-stat-num-sm {
  font-size: 1.875rem;
  letter-spacing: -0.015em;
}

.hero-stat-num-script {
  font-style: italic;
  font-weight: 300;
  font-size: 3rem;
  letter-spacing: -0.02em;
}

.hero-stat-num-script em {
  font-style: italic;
}

.hero-stat-plus {
  font-size: 2rem;
  font-weight: 400;
  vertical-align: super;
  margin-left: 4px;
  opacity: 1;
  color: var(--gold-light);
}

.hero-stat-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(250, 247, 241, 0.75);
  text-align: right;
  max-width: 160px;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  z-index: 2;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250, 247, 241, 0.6);
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: scroll-down 2s ease-in-out infinite;
}

@keyframes scroll-down {
  0%, 100% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
}

/* Trust bar */
.trust-bar {
  background: var(--forest);
  color: var(--cream);
  padding: 1.5rem 0;
  border-top: 1px solid rgba(201, 169, 97, 0.2);
}

.trust-bar-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.trust-item svg {
  color: var(--gold);
  flex-shrink: 0;
}

/* ==========================================================================
   WHO WE SERVE
   ========================================================================== */

.section {
  padding: var(--space-3xl) 0;
}

.section-header {
  max-width: 720px;
  margin: 0 auto 5rem;
  text-align: center;
}

.section-header .eyebrow {
  display: inline-block;
  margin-bottom: 1.25rem;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4.5vw, 3.75rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--forest-deep);
  margin-bottom: 1.5rem;
  font-variation-settings: "opsz" 144;
}

.section-header h2 em {
  font-style: italic;
  color: var(--gold);
}

.section-header p {
  font-size: 1.0625rem;
  color: var(--charcoal);
  line-height: 1.7;
  max-width: 620px;
  margin: 0 auto;
}

.who-we-serve {
  background: var(--cream-warm);
  position: relative;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.audience-card {
  background: var(--white);
  padding: 3rem 2.5rem;
  border-radius: 2px;
  border: 1px solid rgba(35, 72, 53, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.audience-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.audience-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px -20px rgba(35, 72, 53, 0.2);
  border-color: transparent;
}

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

.audience-number {
  font-family: var(--font-display);
  font-size: 0.875rem;
  color: var(--gold);
  letter-spacing: 0.2em;
  margin-bottom: 2rem;
  display: block;
  font-weight: 500;
}

.audience-card h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--forest-deep);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
  font-variation-settings: "opsz" 144;
}

.audience-card p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--charcoal);
}

.pricing-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.5rem 2rem;
  background: var(--forest-deep);
  color: var(--cream);
  border-radius: 2px;
  max-width: 720px;
  margin: 0 auto;
}

.pricing-note svg {
  color: var(--gold);
  flex-shrink: 0;
}

.pricing-note p {
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.pricing-note strong {
  color: var(--gold);
  font-weight: 600;
}

/* ==========================================================================
   SERVICES
   ========================================================================== */

.services {
  background: var(--cream);
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(35, 72, 53, 0.12);
  border: 1px solid rgba(35, 72, 53, 0.12);
}

.service-card {
  background: var(--cream);
  padding: 2.5rem 2rem;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card:hover {
  background: var(--forest-deep);
  color: var(--cream);
}

.service-card:hover .service-icon {
  color: var(--gold);
}

.service-card:hover .service-card-title {
  color: var(--cream);
}

.service-card:hover .service-card-desc {
  color: rgba(250, 247, 241, 0.75);
}

.service-icon {
  color: var(--forest);
  margin-bottom: 1.5rem;
  transition: color 0.3s ease;
}

.service-card-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--forest-deep);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
  transition: color 0.3s ease;
  font-variation-settings: "opsz" 144;
}

.service-card-desc {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--stone);
  transition: color 0.3s ease;
}

.services-cta {
  text-align: center;
  margin-top: 4rem;
}

.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.125rem 2rem;
  background: var(--forest-deep);
  color: var(--cream);
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.btn-dark:hover {
  background: var(--forest);
  transform: translateY(-2px);
  box-shadow: 0 15px 40px -10px rgba(35, 72, 53, 0.4);
}

.btn-dark svg {
  transition: transform 0.3s ease;
}

.btn-dark:hover svg {
  transform: translateX(4px);
}

/* ==========================================================================
   WHY VINE
   ========================================================================== */

.why-vine {
  background: var(--forest-deep);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.why-vine::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(201, 169, 97, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(201, 169, 97, 0.05) 0%, transparent 50%);
}

.why-vine .container {
  position: relative;
  z-index: 1;
}

.why-vine .section-header h2 {
  color: var(--cream);
}

.why-vine .section-header h2 em {
  color: var(--gold-light);
}

.why-vine .section-header p {
  color: rgba(250, 247, 241, 0.75);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.pillar {
  padding: 2rem 1.5rem;
  border-left: 1px solid rgba(201, 169, 97, 0.25);
  position: relative;
}

.pillar-num {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: block;
  font-weight: 500;
}

.pillar-icon {
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.pillar h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
  line-height: 1.2;
  font-variation-settings: "opsz" 144;
}

.pillar p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(250, 247, 241, 0.7);
}

/* ==========================================================================
   GALLERY / BEFORE-AFTER
   ========================================================================== */

.gallery {
  background: var(--cream-warm);
}

.ba-slider {
  position: relative;
  max-width: 1000px;
  margin: 0 auto 3rem;
  aspect-ratio: 16/10;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: 0 30px 80px -30px rgba(15, 26, 20, 0.4);
  user-select: none;
  cursor: ew-resize;
  background: var(--forest-deep);
}

.ba-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.ba-after-wrapper {
  position: absolute;
  inset: 0;
  overflow: hidden;
  clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
  transition: clip-path 0.05s linear;
}

.ba-label {
  position: absolute;
  top: 1.5rem;
  padding: 0.5rem 1rem;
  background: rgba(15, 26, 20, 0.7);
  backdrop-filter: blur(10px);
  color: var(--cream);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 2px;
  pointer-events: none;
}

.ba-label-before {
  left: 1.5rem;
}

.ba-label-after {
  right: 1.5rem;
  background: rgba(201, 169, 97, 0.9);
  color: var(--forest-deep);
}

.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--cream);
  left: 50%;
  transform: translateX(-50%);
  cursor: ew-resize;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.ba-handle-knob {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  color: var(--forest-deep);
}

.ba-caption {
  text-align: center;
  margin-top: 1.5rem;
}

.ba-caption h4 {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 500;
  color: var(--forest-deep);
  margin-bottom: 0.25rem;
  font-variation-settings: "opsz" 144;
}

.ba-caption p {
  font-size: 0.875rem;
  color: var(--stone);
  letter-spacing: 0.05em;
}

.gallery-nav {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

.gallery-dot {
  width: 36px;
  height: 3px;
  background: rgba(35, 72, 53, 0.2);
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  padding: 0;
}

.gallery-dot.active {
  background: var(--gold);
  width: 56px;
}

/* ==========================================================================
   PROCESS
   ========================================================================== */

.process {
  background: var(--cream);
}

.process-timeline {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  left: 2rem;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(35, 72, 53, 0.2), transparent);
}

.process-step {
  display: grid;
  grid-template-columns: 4rem 1fr;
  gap: 3rem;
  padding: 2rem 0;
  position: relative;
}

.process-step-num {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: var(--cream);
  border: 1px solid rgba(35, 72, 53, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--forest-deep);
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
  font-variation-settings: "opsz" 144;
}

.process-step:hover .process-step-num {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.05);
}

.process-step-content h3 {
  font-family: var(--font-display);
  font-size: 1.625rem;
  font-weight: 500;
  color: var(--forest-deep);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
  font-variation-settings: "opsz" 144;
}

.process-step-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--charcoal);
  max-width: 560px;
}

/* ==========================================================================
   CTA BAND
   ========================================================================== */

.cta-band {
  background: var(--forest-deep);
  color: var(--cream);
  padding: var(--space-2xl) 0;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.cta-band .container {
  position: relative;
  z-index: 1;
}

.cta-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  align-items: center;
}

.cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  font-variation-settings: "opsz" 144;
}

.cta-inner h2 em {
  font-style: italic;
  color: var(--gold-light);
}

.cta-inner p {
  font-size: 1.0625rem;
  color: rgba(250, 247, 241, 0.8);
  line-height: 1.7;
  max-width: 540px;
}

.cta-contact-card {
  padding: 2.5rem;
  background: rgba(15, 26, 20, 0.5);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(201, 169, 97, 0.2);
  border-radius: 2px;
}

.cta-contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(201, 169, 97, 0.15);
  transition: all 0.3s ease;
}

.cta-contact-item:last-of-type {
  border-bottom: none;
  margin-bottom: 1.5rem;
}

.cta-contact-item:hover {
  padding-left: 0.5rem;
}

.cta-contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(201, 169, 97, 0.1);
  border: 1px solid rgba(201, 169, 97, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.cta-contact-label {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(250, 247, 241, 0.6);
  margin-bottom: 0.25rem;
}

.cta-contact-value {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--cream);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.footer {
  background: var(--ink);
  color: var(--cream);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: auto 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(250, 247, 241, 0.1);
  align-items: start;
}

.footer-logo-col {
  display: flex;
  align-items: flex-start;
}

.footer-logo-img {
  height: 110px;
  width: 110px;
  display: block;
  background: var(--cream);
  border-radius: 50%;
  padding: 6px;
}

.footer-brand {
  max-width: 360px;
}

.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(250, 247, 241, 0.6);
  margin-bottom: 1.5rem;
}

.footer-license {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(201, 169, 97, 0.08);
  border: 1px solid rgba(201, 169, 97, 0.2);
  border-radius: 2px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--gold);
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-col a {
  font-size: 0.9375rem;
  color: rgba(250, 247, 241, 0.7);
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  font-size: 0.8125rem;
  color: rgba(250, 247, 241, 0.5);
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */

.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.stagger > *:nth-child(1) { transition-delay: 0.05s; }
.stagger > *:nth-child(2) { transition-delay: 0.15s; }
.stagger > *:nth-child(3) { transition-delay: 0.25s; }
.stagger > *:nth-child(4) { transition-delay: 0.35s; }
.stagger > *:nth-child(5) { transition-delay: 0.45s; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .hero-stats {
    max-width: 480px;
  }
  
  .hero-scroll {
    display: none;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
  
  .audience-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .footer-grid {
    grid-template-columns: auto 1fr;
    gap: 2.5rem;
  }
  
  .footer-logo-col {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .nav-menu, .nav-phone {
    display: none;
  }
  
  .mobile-toggle {
    display: flex;
  }
  
  .nav-cta {
    padding: 0.625rem 1.125rem;
    font-size: 0.8125rem;
  }
  
  .section {
    padding: 5rem 0;
  }
  
  .section-header {
    margin-bottom: 3rem;
  }
  
  .hero {
    padding: 7rem 0 3rem;
    min-height: auto;
  }
  
  .hero-stats {
    padding: 1.75rem;
  }
  
  .hero-stat-num {
    font-size: 2.25rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .pillars-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .trust-bar-inner {
    justify-content: center;
  }
  
  .process-step {
    grid-template-columns: 3rem 1fr;
    gap: 1.5rem;
  }
  
  .process-step-num {
    width: 3rem;
    height: 3rem;
    font-size: 1rem;
  }
  
  .process-timeline::before {
    left: 1.5rem;
  }
  
  .ba-slider {
    aspect-ratio: 4/3;
  }
  
  .container {
    padding: 0 1.25rem;
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  
  .btn-primary, .btn-secondary, .btn-dark {
    justify-content: center;
  }
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 380px;
  height: 100vh;
  background: var(--forest-deep);
  color: var(--cream);
  padding: 5rem 2rem 2rem;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 99;
  display: flex;
  flex-direction: column;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--cream);
  font-variation-settings: "opsz" 144;
}

.mobile-menu-contact {
  padding-top: 2rem;
  border-top: 1px solid rgba(201, 169, 97, 0.2);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-menu-contact a {
  font-size: 0.9375rem;
  color: rgba(250, 247, 241, 0.8);
  font-family: var(--font-body);
}
