/* ═══════════════════════════════════════════════
   TENET LAW, PLLC — Styles
   Suits-inspired dark navy & gold aesthetic
   ═══════════════════════════════════════════════ */

/* ─── CSS Variables ────────────────────────── */
:root {
  --navy-deep:    #06101f;
  --navy-primary: #0a1628;
  --navy-mid:     #0f1d33;
  --navy-light:   #162440;
  --charcoal:     #1a1f2e;

  --gold:         #c9a84c;
  --gold-light:   #d4b768;
  --gold-dark:    #a88b3d;
  --gold-muted:   rgba(201, 168, 76, 0.15);
  --gold-glow:    rgba(201, 168, 76, 0.08);

  --cream:        #f8f5ef;
  --cream-dark:   #ede8de;
  --white:        #ffffff;

  --text-white:   #e8e6e1;
  --text-light:   #b0aaa0;
  --text-muted:   #7a8599;
  --text-dark:    #1a1a2e;
  --text-body:    #4a4a5a;

  --font-serif:   'Cormorant Garamond', Georgia, serif;
  --font-sans:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --ease-out:     cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth:  cubic-bezier(0.45, 0, 0.15, 1);

  --nav-height:   80px;
  --container:    1200px;
}


/* ─── 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-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--cream);
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

img, video {
  max-width: 100%;
  display: block;
}

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

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


/* ─── Typography ───────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.2;
}

.section-label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-label--light {
  color: var(--gold-light);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--text-dark);
  margin-bottom: 20px;
  font-weight: 500;
}

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

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.8;
}

.section-subtitle--dark {
  color: var(--text-body);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}


/* ─── Buttons ──────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px 32px;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy-deep);
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.25);
}

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

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

.btn-outline {
  background: transparent;
  color: var(--text-white);
  border: 1px solid rgba(255,255,255,0.25);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 20px 40px;
  font-size: 0.9rem;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

.btn-success {
  background: #2d5a3d !important;
  color: white !important;
}


/* ─── Reveal Animations ───────────────────── */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.revealed {
  opacity: 1;
  transform: translate(0, 0);
}


/* ═══════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 1000;
  transition: all 0.4s var(--ease-smooth);
}

.navbar.scrolled {
  background: rgba(6, 16, 31, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(201, 168, 76, 0.1);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 1001;
}

.logo-mark {
  width: 28px;
  height: 34px;
}

.logo-mark svg {
  width: 100%;
  height: 100%;
}

.logo-divider {
  width: 1px;
  height: 32px;
  background: var(--gold);
  opacity: 0.4;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--text-white);
  line-height: 1.1;
}

.logo-sub {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  color: var(--gold);
  line-height: 1;
  margin-top: 2px;
}

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

.nav-links a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--text-light);
  text-transform: uppercase;
  transition: color 0.3s ease;
  position: relative;
}

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

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy-deep);
  background: var(--gold);
  padding: 12px 24px;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav-cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

/* Mobile Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-white);
  transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}


/* ═══════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(6, 16, 31, 0.5) 0%,
    rgba(6, 16, 31, 0.4) 30%,
    rgba(6, 16, 31, 0.6) 70%,
    rgba(6, 16, 31, 0.85) 100%
  );
}

.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 24px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.badge-line {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--text-white);
  line-height: 1;
  margin-bottom: 16px;
}

.hero-comma {
  color: var(--gold);
}

.hero-pllc {
  font-size: 0.45em;
  letter-spacing: 0.15em;
  color: var(--text-light);
  vertical-align: middle;
}

.hero-tagline {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 300;
  letter-spacing: 0.25em;
  color: var(--gold);
  margin-bottom: 24px;
}

.hero-description {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.8;
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero Logo Icon */
.hero-logo-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

.hero-logo-icon svg {
  width: 60px;
  height: 72px;
  filter: drop-shadow(0 0 20px rgba(201, 168, 76, 0.3));
}

/* Hero Icons */
.hero-icons {
  position: absolute;
  bottom: 50px;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-icons.revealed {
  opacity: 1;
  transform: translateY(0);
}

.hero-icon-item {
  text-align: center;
  position: relative;
}

.hero-icon-svg {
  width: 36px;
  height: 36px;
  stroke: var(--gold);
  transition: all 0.4s var(--ease-out);
  filter: drop-shadow(0 0 6px rgba(201, 168, 76, 0.2));
  animation: iconFloat 4s ease-in-out infinite;
}

.hero-icon-item:nth-child(2) .hero-icon-svg { animation-delay: 0.3s; }
.hero-icon-item:nth-child(3) .hero-icon-svg { animation-delay: 0.6s; }
.hero-icon-item:nth-child(4) .hero-icon-svg { animation-delay: 0.9s; }
.hero-icon-item:nth-child(5) .hero-icon-svg { animation-delay: 1.2s; }
.hero-icon-item:nth-child(6) .hero-icon-svg { animation-delay: 1.5s; }
.hero-icon-item:nth-child(7) .hero-icon-svg { animation-delay: 1.8s; }
.hero-icon-item:nth-child(8) .hero-icon-svg { animation-delay: 2.1s; }

@keyframes iconFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.hero-icon-item:hover .hero-icon-svg {
  filter: drop-shadow(0 0 12px rgba(201, 168, 76, 0.4));
  transform: translateY(-4px) scale(1.1);
}

.hero-icon-label {
  display: block;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 8px;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.hero-icon-item:hover .hero-icon-label {
  color: var(--gold);
}

/* Scroll Indicator */
.hero-scroll-indicator {
  position: absolute;
  right: 40px;
  bottom: 40px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: opacity 0.3s ease;
}

.hero-scroll-indicator span {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  writing-mode: vertical-rl;
}

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

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
}


/* ═══════════════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════════════ */
.about {
  padding: 120px 0;
  background: var(--cream);
}

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

.about-content p {
  color: var(--text-body);
  margin-bottom: 20px;
  font-size: 1.02rem;
  line-height: 1.85;
}

.about-accent-line {
  width: 50px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 28px;
}

.about-signature {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
  padding-top: 24px;
}

.signature-line {
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.about-signature span {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-style: italic;
  color: var(--gold-dark);
  letter-spacing: 0.02em;
}

.about-visual {
  position: relative;
}

.about-video-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.about-video {
  width: 100%;
  height: 450px;
  object-fit: cover;
  display: block;
}

/* Colorado Animated Scene */
.about-colorado-scene {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.colorado-svg {
  width: 100%;
  height: 450px;
  display: block;
}

.colorado-sun {
  animation: sunPulse 6s ease-in-out infinite;
  transform-origin: center;
}

@keyframes sunPulse {
  0%, 100% { opacity: 0.8; }
  50% { opacity: 1; }
}

.colorado-stars circle {
  animation: starTwinkle 4s ease-in-out infinite;
}
.colorado-stars circle:nth-child(2n) { animation-delay: 1s; animation-duration: 3s; }
.colorado-stars circle:nth-child(3n) { animation-delay: 2s; animation-duration: 5s; }
.colorado-stars circle:nth-child(5n) { animation-delay: 0.5s; animation-duration: 3.5s; }

@keyframes starTwinkle {
  0%, 100% { opacity: 0.2; }
  50% { opacity: 0.8; }
}

.colorado-mtn-far {
  animation: mtnDrift 20s ease-in-out infinite;
}

.colorado-mtn-mid {
  animation: mtnDrift 25s ease-in-out infinite reverse;
}

@keyframes mtnDrift {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(5px); }
}

.colorado-particles circle {
  animation: particleFloat 8s ease-in-out infinite;
}
.colorado-particles circle:nth-child(2n) { animation-delay: 2s; animation-duration: 10s; }
.colorado-particles circle:nth-child(3n) { animation-delay: 4s; animation-duration: 12s; }

@keyframes particleFloat {
  0%, 100% { transform: translateY(0) translateX(0); opacity: 0.1; }
  25% { opacity: 0.4; }
  50% { transform: translateY(-20px) translateX(10px); opacity: 0.3; }
  75% { opacity: 0.15; }
}

.colorado-horizon {
  animation: horizonGlow 4s ease-in-out infinite;
}

@keyframes horizonGlow {
  0%, 100% { opacity: 0.2; }
  50% { opacity: 0.5; }
}

.about-accent-block {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  border: 2px solid var(--gold);
  opacity: 0.3;
  border-radius: 2px;
  z-index: -1;
}


/* ═══════════════════════════════════════════════
   PRACTICE AREAS
   ═══════════════════════════════════════════════ */
.practice {
  padding: 120px 0;
  background: var(--navy-primary);
}

.practice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 24px;
}

.practice-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  padding: 36px 28px;
  transition: all 0.5s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.practice-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out);
}

.practice-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(201, 168, 76, 0.15);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

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

.practice-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 20px;
}

.practice-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--gold);
}

.practice-card h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text-white);
  margin-bottom: 12px;
}

.practice-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.practice-card-line {
  width: 30px;
  height: 1px;
  background: var(--gold);
  opacity: 0.3;
  margin-top: 20px;
  transition: width 0.4s var(--ease-out), opacity 0.4s ease;
}

.practice-card:hover .practice-card-line {
  width: 50px;
  opacity: 0.6;
}


/* ═══════════════════════════════════════════════
   FOUNDER
   ═══════════════════════════════════════════════ */
.founder {
  padding: 120px 0;
  background: var(--cream);
}

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

.founder-portrait {
  position: sticky;
  top: 120px;
}

.founder-portrait img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.founder-content p {
  color: var(--text-body);
  font-size: 1.02rem;
  line-height: 1.85;
  margin-bottom: 16px;
}

.founder-name {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}

.gold-accent {
  color: var(--gold);
}

.founder-role {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 24px !important;
}

.founder-credentials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.credential-block {
  padding: 0;
}

.credential-label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.credential-block p {
  font-size: 0.9rem !important;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 0 !important;
}

.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 28px;
  border: 1px solid var(--text-dark);
  border-radius: 2px;
  color: var(--text-dark);
  transition: all 0.4s var(--ease-out);
  cursor: pointer;
  background: transparent;
}

.btn-outline-dark:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy-deep);
  transform: translateY(-2px);
}

.founder-link {
  margin-top: 28px;
}


/* ═══════════════════════════════════════════════
   ENGAGEMENT
   ═══════════════════════════════════════════════ */
.engagement {
  padding: 120px 0;
  background: var(--navy-primary);
}

.engagement-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 60px;
  position: relative;
}

.engagement-timeline::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), var(--gold), transparent);
  opacity: 0.3;
}

.engagement-step {
  text-align: center;
  position: relative;
}

.engagement-node {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.3);
  background: rgba(201, 168, 76, 0.05);
  position: relative;
  z-index: 2;
  transition: all 0.4s var(--ease-out);
}

.engagement-node svg {
  stroke: var(--gold);
}

.engagement-step:hover .engagement-node {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.12);
  box-shadow: 0 0 20px rgba(201, 168, 76, 0.15);
}

.engagement-step-num {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.engagement-step h4 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text-white);
  margin-bottom: 8px;
}

.engagement-step p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 220px;
  margin: 0 auto;
}

.engagement-subtitle {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--gold);
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: 0.04em;
}

.retainer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.retainer-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  padding: 44px 36px;
  transition: all 0.4s var(--ease-out);
}

.retainer-card:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.retainer-featured {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.04);
}

.retainer-header {
  margin-bottom: 16px;
}

.retainer-badge {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.retainer-badge-featured {
  color: var(--gold);
}

.retainer-header h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--text-white);
}

.retainer-tagline {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.6;
}

.retainer-features {
  list-style: none;
  margin-bottom: 24px;
}

.retainer-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.5;
}

.feature-check {
  color: #88d78a;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.4;
  flex-shrink: 0;
}

.retainer-ideal {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.6;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.retainer-ideal strong {
  color: var(--text-light);
}

.retainer-features strong {
  color: var(--text-white);
}


/* ═══════════════════════════════════════════════
   OUR APPROACH
   ═══════════════════════════════════════════════ */
.approach {
  padding: 120px 0;
  background: var(--cream);
}

.approach-timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.approach-timeline::before {
  content: '';
  position: absolute;
  left: 40px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--gold), var(--gold-muted), transparent);
}

.approach-step {
  display: flex;
  gap: 40px;
  padding: 32px 0;
  position: relative;
}

.step-number {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--gold);
  min-width: 80px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.step-number::after {
  content: '';
  position: absolute;
  right: -20px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  transform: translateY(-50%);
}

.step-content h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.step-content p {
  color: var(--text-body);
  font-size: 0.98rem;
  line-height: 1.8;
}


/* ═══════════════════════════════════════════════
   WHY TENET
   ═══════════════════════════════════════════════ */
.why-tenet {
  padding: 120px 0;
  background: var(--navy-deep);
}

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

.why-card {
  padding: 44px 36px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  transition: all 0.4s var(--ease-out);
}

.why-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--gold-muted);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.why-number {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 16px;
  opacity: 0.6;
}

.why-card h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--text-white);
  margin-bottom: 12px;
}

.why-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
}


/* ═══════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════ */
.testimonials {
  padding: 120px 0;
  background: var(--cream);
}

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

.testimonial-card {
  background: var(--white);
  padding: 40px 32px;
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.4s var(--ease-out);
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.testimonial-quote {
  font-family: var(--font-serif);
  font-size: 4rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: -10px;
  opacity: 0.6;
}

.testimonial-card p {
  color: var(--text-body);
  font-size: 0.95rem;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-bar {
  width: 30px;
  height: 2px;
  background: var(--gold);
}

.testimonial-author strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
}

.testimonial-author span {
  font-size: 0.78rem;
  color: var(--text-body);
}

.testimonials-disclaimer {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 40px;
  letter-spacing: 0.02em;
}


/* ═══════════════════════════════════════════════
   CTA BAND
   ═══════════════════════════════════════════════ */
.cta-band {
  padding: 100px 0;
  background: var(--navy-primary);
  text-align: center;
}

.cta-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--text-white);
  margin-bottom: 16px;
}

.cta-content p {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto 32px;
  line-height: 1.8;
}


/* ═══════════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════════ */
.contact {
  padding: 120px 0;
  background: var(--cream);
}

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

.contact-intro {
  color: var(--text-body);
  font-size: 1.02rem;
  line-height: 1.8;
  margin-bottom: 36px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 36px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-muted);
  border-radius: 50%;
  padding: 10px;
}

.contact-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold);
}

.contact-item strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.contact-item p {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.6;
}

.contact-item a {
  color: var(--text-body);
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: var(--gold);
}

.contact-hours strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.contact-hours p {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.7;
}

/* Contact Form */
.contact-form-wrap {
  background: var(--navy-primary);
  padding: 48px;
  border-radius: 6px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.contact-form h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--text-white);
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  color: var(--text-white);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  transition: all 0.3s ease;
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 0 0 3px var(--gold-glow);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237a8599' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-group select option {
  background: var(--navy-primary);
  color: var(--text-white);
}

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

.form-disclaimer {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 16px;
  line-height: 1.6;
  text-align: center;
}


/* ═══════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════ */
.footer {
  padding: 80px 0 40px;
  background: var(--navy-deep);
  border-top: 1px solid rgba(201, 168, 76, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.footer-tagline {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-style: italic;
  color: var(--text-muted);
}

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

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color 0.3s ease;
}

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

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.footer-disclaimer {
  font-size: 0.72rem !important;
  color: rgba(122, 133, 153, 0.6) !important;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.footer-ethics {
  font-size: 0.68rem !important;
  color: rgba(122, 133, 153, 0.45) !important;
  max-width: 700px;
  margin: 12px auto 0;
  line-height: 1.6;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}


/* ═══════════════════════════════════════════════
   RESPONSIVE DESIGN
   ═══════════════════════════════════════════════ */

/* Tablet */
@media (max-width: 1024px) {
  .about-grid {
    gap: 50px;
  }

  .why-grid {
    gap: 24px;
  }

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

  .contact-grid {
    gap: 50px;
  }

  .founder-grid {
    gap: 50px;
  }

  .engagement-timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .engagement-timeline::before {
    display: none;
  }

  .founder-credentials {
    grid-template-columns: 1fr;
  }
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --nav-height: 70px;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--navy-deep);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
    transition: right 0.4s var(--ease-out);
    box-shadow: -20px 0 40px rgba(0, 0, 0, 0.3);
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    font-size: 0.9rem;
    color: var(--text-white);
  }

  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    min-height: 100vh;
  }

  .hero-title {
    font-size: clamp(2.2rem, 10vw, 3.5rem);
  }

  .hero-pllc {
    display: block;
    font-size: 0.4em;
    margin-top: 8px;
  }

  .hero-logo-icon svg {
    width: 48px;
    height: 58px;
  }

  .hero-icons {
    bottom: 20px;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0 20px;
  }

  .hero-icon-svg {
    width: 28px;
    height: 28px;
  }

  .hero-icon-label {
    font-size: 0.5rem;
  }

  .hero-scroll-indicator {
    display: none;
  }

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

  .founder-portrait {
    position: relative;
    top: auto;
    max-width: 400px;
    margin: 0 auto;
  }

  .engagement-timeline {
    grid-template-columns: 1fr 1fr;
  }

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

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

  .about-video,
  .colorado-svg {
    height: 300px;
  }

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

  .approach-timeline::before {
    left: 24px;
  }

  .approach-step {
    gap: 24px;
  }

  .step-number {
    min-width: 48px;
    font-size: 1.2rem;
  }

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

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

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

  .contact-form-wrap {
    padding: 32px 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .section-title {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .hero-ctas {
    flex-direction: column;
    width: 100%;
  }

  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-icons {
    gap: 8px;
    padding: 0 12px;
  }

  .hero-icon-svg {
    width: 24px;
    height: 24px;
  }

  .hero-icon-label {
    font-size: 0.45rem;
    letter-spacing: 0.05em;
  }

  .engagement-timeline {
    grid-template-columns: 1fr;
  }

  .hero-badge {
    font-size: 0.6rem;
  }

  .badge-line {
    width: 24px;
  }
}


/* ─── Utility Animations ──────────────────── */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ─── Selection Color ─────────────────────── */
::selection {
  background: var(--gold);
  color: var(--navy-deep);
}

::-moz-selection {
  background: var(--gold);
  color: var(--navy-deep);
}

/* ─── Scrollbar ───────────────────────────── */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--navy-deep);
}

::-webkit-scrollbar-thumb {
  background: var(--navy-light);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold-dark);
}
