/* ========================================
   Customer Value Labs - Main Stylesheet
   ======================================== */

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

:root {
  /* Brand Colors */
  --gold: #FFD639;
  --gold-light: #FFF3C4;
  --gold-dark: #E5BF00;
  --black: #1a1a1a;
  --white: #ffffff;
  --cream: #FAF8F5;
  --gray-100: #F5F3F0;
  --gray-200: #E8E5E0;
  --gray-300: #D1CCC5;
  --gray-500: #8A8580;
  --gray-700: #4A4744;
  --gray-900: #2D2A27;

  /* Typography */
  --font-heading: 'Space Grotesk', -apple-system, sans-serif;
  --font-body: 'Inter', -apple-system, sans-serif;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;

  /* Layout */
  --max-width: 1200px;
  --nav-height: 72px;

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--black);
  background-color: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
  list-style: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.15;
  font-weight: 700;
}

/* --- Accessibility --- */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-md);
  background: var(--black);
  color: var(--gold);
  padding: var(--space-sm) var(--space-lg);
  border-radius: 0 0 6px 6px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  z-index: 10000;
  text-decoration: none;
  transition: top var(--transition-fast);
}

.skip-link:focus {
  top: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Global focus indicator */
:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

/* --- Utilities --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: var(--space-lg);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  white-space: nowrap;
}

.btn--primary {
  background-color: var(--gold);
  color: var(--black);
  border-color: var(--black);
}

.btn--primary:hover {
  background-color: var(--black);
  color: var(--gold);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--dark {
  background-color: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.btn--dark:hover {
  background-color: var(--gold);
  color: var(--black);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--sm {
  font-size: 0.8rem;
  padding: 0.5rem 1.25rem;
}

.btn--lg {
  font-size: 1rem;
  padding: 1rem 2rem;
}

.btn--full {
  width: 100%;
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(250, 248, 245, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  transition: all var(--transition-base);
}

.nav--scrolled {
  box-shadow: var(--shadow-sm);
}

.nav__container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-xl);
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* --- Logo --- */
.logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.logo__mark {
  width: 42px;
  height: 42px;
  background: var(--gold);
  border: 2px solid var(--black);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo__letters {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--black);
  letter-spacing: -0.02em;
  line-height: 1;
}

.logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo__name {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--black);
  letter-spacing: -0.01em;
}

.logo__sub {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--gray-500);
  letter-spacing: 0.04em;
}

.footer .logo__name {
  color: var(--white);
}

.footer .logo__sub {
  color: var(--gray-500);
}

.nav__links {
  display: none;
  align-items: center;
  gap: var(--space-2xl);
}

.nav__link {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-700);
  transition: color var(--transition-fast);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--gold);
  transition: width var(--transition-base);
}

.nav__link:hover {
  color: var(--black);
}

.nav__link:hover::after {
  width: 100%;
}

/* Hamburger */
.nav__toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--black);
  transition: all var(--transition-base);
  transform-origin: center;
}

.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);
}

/* Mobile menu */
.nav__mobile {
  display: none;
  flex-direction: column;
  gap: var(--space-lg);
  padding: var(--space-xl);
  background-color: var(--cream);
  border-bottom: 1px solid var(--gray-200);
}

.nav__mobile.active {
  display: flex;
}

.nav__mobile-link {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  padding: var(--space-sm) 0;
}

@media (min-width: 768px) {
  .nav__links {
    display: flex;
  }
  .nav__toggle {
    display: none;
  }
}

/* --- Hero --- */
.hero {
  padding: calc(var(--nav-height) + var(--space-2xl)) 0 var(--space-2xl);
  background: linear-gradient(180deg, var(--gold-light) 0%, var(--cream) 100%);
  overflow: hidden;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.hero__eyebrow {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-700);
  margin-bottom: var(--space-sm);
}

.hero__title {
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  margin-bottom: var(--space-md);
  color: var(--black);
}

.hero__title-accent {
  display: block;
  color: var(--gray-700);
  font-weight: 600;
}

.hero__subtitle {
  font-size: 1rem;
  color: var(--gray-700);
  max-width: 520px;
  margin-bottom: var(--space-lg);
  line-height: 1.6;
}

.hero__cta-note {
  font-size: 0.8rem;
  color: var(--gray-500);
  margin-top: var(--space-xs);
}

.hero__stat-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

.hero__stat {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  padding: var(--space-md) var(--space-lg);
  text-align: center;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.hero__stat:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.hero__stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 2px;
}

.hero__stat-label {
  font-size: 0.78rem;
  color: var(--gray-500);
  line-height: 1.35;
}

.hero__stat-source {
  display: block;
  font-size: 0.65rem;
  font-style: normal;
  color: var(--gray-300);
  margin-top: var(--space-xs);
  padding-top: var(--space-xs);
  border-top: 1px solid var(--gray-200);
  line-height: 1.2;
}

.hero__stat-source a {
  color: var(--gray-500);
  text-decoration: none;
  border-bottom: 1px dotted var(--gray-300);
  transition: color var(--transition-fast), border-color var(--transition-fast);
}

.hero__stat-source a:hover {
  color: var(--black);
  border-bottom-color: var(--gold-dark);
}

@media (min-width: 768px) {
  .hero .container {
    grid-template-columns: 1.3fr 1fr;
  }

  .hero__stat-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xs);
  }
}

@media (min-width: 1024px) {
  .hero {
    padding: calc(var(--nav-height) + var(--space-3xl)) 0 var(--space-3xl);
  }
}

/* --- Problem --- */
.problem {
  padding: var(--space-2xl) 0 var(--space-xl);
  background-color: var(--white);
}

.problem__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--space-xl);
}

.problem__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
}

.problem__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

.problem__card {
  padding: var(--space-2xl);
  background: var(--cream);
  border-radius: 12px;
  border: 1px solid var(--gray-200);
  transition: all var(--transition-base);
}

.problem__card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
}

.problem__icon {
  width: 48px;
  height: 48px;
  background: var(--gold-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
}

.problem__icon svg {
  width: 24px;
  height: 24px;
  color: var(--black);
}

.problem__card h3 {
  font-size: 1.15rem;
  margin-bottom: var(--space-md);
}

.problem__card p {
  color: var(--gray-700);
  font-size: 0.95rem;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .problem__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* --- Services --- */
.services {
  padding: var(--space-2xl) 0 var(--space-3xl);
  background-color: var(--cream);
}

.services__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto var(--space-xl);
}

.services__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: var(--space-lg);
}

.services__subtitle {
  font-size: 1.05rem;
  color: var(--gray-700);
}

.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

.services__card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: var(--space-2xl);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.services__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gray-200);
  transition: background var(--transition-base);
}

.services__card:hover::before,
.services__card--featured::before {
  background: var(--gold);
}

.services__card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.services__card--featured {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.services__card--featured .services__card-desc {
  color: var(--gray-300);
}

.services__card--featured .services__card-list li {
  color: var(--gray-300);
}

.services__card--featured .services__card-list li::before {
  color: var(--gold);
}

.services__card-number {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold-dark);
  letter-spacing: 0.05em;
  margin-bottom: var(--space-lg);
}

.services__card--featured .services__card-number {
  color: var(--gold);
}

.services__card-title {
  font-size: 1.35rem;
  margin-bottom: var(--space-md);
}

.services__card-desc {
  color: var(--gray-700);
  font-size: 0.95rem;
  margin-bottom: var(--space-xl);
  line-height: 1.7;
}

.services__card-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.services__card-list li {
  font-size: 0.9rem;
  color: var(--gray-700);
  padding-left: var(--space-xl);
  position: relative;
}

.services__card-list li::before {
  content: '\2192';
  position: absolute;
  left: 0;
  color: var(--gold-dark);
  font-weight: 600;
}

@media (min-width: 768px) {
  .services__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* --- Process --- */
.process {
  padding: var(--space-3xl) 0;
  background-color: var(--gold);
}

.process__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--space-3xl);
}

.process__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
}

.process__steps {
  max-width: 700px;
  margin: 0 auto;
}

.process__step {
  display: flex;
  gap: var(--space-xl);
  align-items: flex-start;
}

.process__step-number {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: var(--black);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
}

.process__step-content h3 {
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
}

.process__step-content p {
  color: var(--gray-900);
  font-size: 0.95rem;
  line-height: 1.7;
}

.process__connector {
  width: 2px;
  height: 40px;
  background: var(--black);
  margin-left: 27px;
  opacity: 0.3;
}

.process__cta {
  text-align: center;
  margin-top: var(--space-3xl);
}

.process .btn--primary {
  background-color: var(--black);
  color: var(--gold);
  border-color: var(--black);
}

.process .btn--primary:hover {
  background-color: var(--white);
  color: var(--black);
}

/* --- Working Together --- */
.working {
  padding: var(--space-3xl) 0;
  background-color: var(--white);
}

.working__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

.working__card {
  padding: var(--space-2xl);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  transition: all var(--transition-base);
}

.working__card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
}

.working__card h3 {
  font-size: 1.15rem;
  margin-bottom: var(--space-md);
}

.working__card p {
  color: var(--gray-700);
  font-size: 0.95rem;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .working__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* --- Tools --- */
.tools {
  padding: var(--space-3xl) 0;
  background-color: var(--white);
  border-top: 1px solid var(--gray-200);
}

.tools__header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.tools__subtitle {
  max-width: 600px;
  margin: var(--space-md) auto 0;
  font-size: 0.95rem;
  color: var(--gray-500);
  line-height: 1.6;
}

.tools__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-lg) var(--space-xl);
  max-width: 1000px;
  margin: 0 auto;
}

.tools__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(50% - var(--space-xl));
  padding: var(--space-sm) var(--space-md);
  opacity: 0.4;
  transition: opacity 0.3s ease;
  filter: grayscale(100%);
}

.tools__logo:hover {
  opacity: 0.85;
  filter: grayscale(0%);
}

.tools__logo img {
  max-width: 120px;
  height: 28px;
  object-fit: contain;
}

.tools__logo--lg img,
.tools__logo--lg img {
  max-width: 180px !important;
  height: 42px !important;
}

.tools__logo--xl img,
.tools__logo--xl img {
  max-width: 220px !important;
  height: 56px !important;
}

@media (min-width: 640px) {
  .tools__logo {
    width: calc(33.333% - var(--space-xl));
  }

  .tools__logo img {
    max-width: 140px;
    height: 30px;
  }
}

@media (min-width: 768px) {
  .tools__logo {
    width: calc(25% - var(--space-xl));
  }

  .tools__logo img {
    max-width: 140px;
    height: 32px;
  }
}

@media (min-width: 1024px) {
  .tools__grid {
    gap: var(--space-xl) var(--space-2xl);
  }

  .tools__logo {
    width: calc(20% - var(--space-2xl));
  }

  .tools__logo img {
    max-width: 150px;
    height: 34px;
  }
}

/* --- Testimonials --- */
.testimonials {
  padding: var(--space-3xl) 0;
  background-color: var(--cream);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

.testimonial {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: var(--space-2xl);
  transition: all var(--transition-base);
}

.testimonial:hover {
  box-shadow: var(--shadow-md);
}

.testimonial__quote {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: var(--space-xl);
  color: var(--black);
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.testimonial__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
  background-color: var(--gold-light);
}

/* Fallback for missing images */
.testimonial__avatar[src=""],
.testimonial__avatar:not([src]),
.about__photo img[src=""],
.about__photo img:not([src]) {
  background-color: var(--gold-light);
  min-height: 56px;
}

.testimonial__name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
}

.testimonial__role {
  font-size: 0.85rem;
  color: var(--gray-500);
}

@media (min-width: 768px) {
  .testimonials__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* --- About --- */
.about {
  padding: var(--space-xl) 0;
  padding-bottom: 0;
  background-color: var(--black);
  color: var(--white);
  overflow: hidden;
}

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

.about__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3xl);
  align-items: end;
}

.about__photo {
  align-self: stretch;
  position: relative;
  overflow: visible;
}

.about__photo img {
  border-radius: 0;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 85%;
  width: auto;
  max-width: none;
}

.about__content {
  padding-top: var(--space-3xl);
}

.about__name {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: var(--space-sm);
}

.about__role {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: var(--space-xl);
}

.about__bio {
  color: var(--gray-300);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

.about__credentials {
  margin-top: var(--space-xl);
  margin-bottom: var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.about__credentials li {
  font-size: 0.95rem;
  color: var(--gray-300);
  padding-left: var(--space-xl);
  position: relative;
}

.about__credentials li::before {
  content: '\2192';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 600;
}

.about__credentials li strong {
  color: var(--white);
}

.about__tagline {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: -0.01em;
  border-top: 1px solid var(--gray-700);
  padding-top: var(--space-xl);
  margin-top: var(--space-md);
  padding-bottom: var(--space-3xl);
}

@media (min-width: 768px) {
  .about__grid {
    grid-template-columns: 1fr 1.3fr;
  }
}

/* --- CTA Section --- */
.cta-section {
  padding: var(--space-3xl) 0;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
}

.cta-section__content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cta-section__content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: var(--space-lg);
}

.cta-section__content p {
  font-size: 1.1rem;
  color: var(--gray-700);
  margin-bottom: var(--space-2xl);
  line-height: 1.7;
}

.cta-section .btn--dark:hover {
  background-color: var(--white);
  color: var(--black);
  border-color: var(--black);
}

/* --- Footnote --- */
.footnote {
  padding: var(--space-lg) 0;
  background-color: var(--gray-100);
  border-top: 1px solid var(--gray-200);
}

.footnote__text {
  font-size: 0.85rem;
  color: var(--gray-500);
  max-width: 600px;
}

.footnote__text a {
  color: var(--gray-700);
  text-decoration: underline;
  text-decoration-color: var(--gray-300);
  text-underline-offset: 2px;
}

.footnote__text a:hover {
  color: var(--black);
  text-decoration-color: var(--gold);
}

.working__asterisk {
  color: var(--gray-500);
  text-decoration: none;
  font-size: 0.85em;
}

/* --- Footer --- */
.footer {
  padding: var(--space-3xl) 0 var(--space-xl);
  background-color: var(--black);
  color: var(--gray-300);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

.footer__brand .logo {
  margin-bottom: var(--space-md);
}

.footer__tagline {
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 320px;
  color: var(--gray-500);
}

.footer__links h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-500);
  margin-bottom: var(--space-md);
}

.footer__links a {
  display: block;
  font-size: 0.9rem;
  color: var(--gray-300);
  padding: var(--space-xs) 0;
  transition: color var(--transition-fast);
}

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

.footer__bottom {
  border-top: 1px solid var(--gray-700);
  padding-top: var(--space-xl);
}

.footer__bottom p {
  font-size: 0.8rem;
  color: var(--gray-500);
}

@media (min-width: 768px) {
  .footer__grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

/* --- Animations --- */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Staggered children */
.stagger-children .fade-up:nth-child(1) { transition-delay: 0ms; }
.stagger-children .fade-up:nth-child(2) { transition-delay: 100ms; }
.stagger-children .fade-up:nth-child(3) { transition-delay: 200ms; }
.stagger-children .fade-up:nth-child(4) { transition-delay: 300ms; }

/* --- Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .fade-up {
    opacity: 1;
    transform: none;
  }
}

/* --- Print styles --- */
@media print {
  .nav, .nav__mobile, .cta-section, .footer {
    display: none;
  }
  body {
    color: #000;
    background: #fff;
  }
}
