/* ============================================
   DESIGN TOKENS
   ============================================ */
:root {
  --color-navy: #2E3B5B;
  --color-navy-dark: #1E2A45;
  --color-navy-light: #3D4F73;
  --color-gold: #F0D687;
  --color-gold-dark: #D4B962;
  --color-cream: #FAF8F4;
  --color-warm-white: #FEFDFB;
  --color-white: #FFFFFF;
  --color-text: #2E3B5B;
  --color-text-light: #5A6A85;
  --color-border: #E8E4DD;

  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --section-padding: 4rem;
  --content-width: 1100px;
  --layout-width: 1100px;

  --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
}

@media (max-width: 768px) {
  :root {
    --section-padding: 3rem;
  }
}


/* ============================================
   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-body);
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: -0.01em;
  color: var(--color-text);
  background-color: var(--color-warm-white);
  overflow-x: hidden;
}

@media (max-width: 768px) {
  body {
    font-size: 16px;
  }
}

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

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

ul {
  list-style: none;
}

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


/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.2;
}


/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.5rem 0;
  transition: background-color 0.4s var(--ease-out),
              padding 0.4s var(--ease-out),
              box-shadow 0.4s var(--ease-out);
}

.nav--scrolled {
  background-color: rgba(250, 248, 244, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 1rem 0;
  box-shadow: 0 1px 0 var(--color-border);
}

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

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.nav__logo-icon {
  width: 40px;
  height: auto;
  transition: opacity 0.3s, filter 0.4s var(--ease-out);
  filter: brightness(1.5) saturate(0.8);
}

.nav--scrolled .nav__logo-icon {
  filter: none;
}

.nav__logo-text {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--color-white);
  letter-spacing: 0.01em;
  transition: color 0.4s var(--ease-out);
}

.nav--scrolled .nav__logo-text {
  color: var(--color-navy);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}

.nav__link {
  font-size: 0.875rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.02em;
  transition: color 0.4s var(--ease-out);
  position: relative;
}

.nav--scrolled .nav__link {
  color: var(--color-text-light);
}

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

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

.nav--scrolled .nav__link:hover {
  color: var(--color-navy);
}

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

.nav__cta {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-navy-dark);
  background-color: var(--color-gold);
  padding: 0.6rem 1.5rem;
  border-radius: 4px;
  letter-spacing: 0.02em;
  transition: background-color 0.4s var(--ease-out), color 0.4s var(--ease-out), transform 0.25s;
}

.nav--scrolled .nav__cta {
  background-color: var(--color-navy);
  color: var(--color-white);
}

.nav__cta:hover {
  transform: translateY(-1px);
  opacity: 0.9;
}

.nav--scrolled .nav__cta:hover {
  background-color: var(--color-navy-dark);
  opacity: 1;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 110;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background-color: var(--color-white);
  transition: transform 0.3s, opacity 0.3s, background-color 0.4s var(--ease-out);
}

.nav--scrolled .nav__toggle span {
  background-color: var(--color-navy);
}

.nav__toggle--open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav__toggle--open span:nth-child(2) {
  opacity: 0;
}

.nav__toggle--open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

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

  .nav__links {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(320px, 85vw);
    background-color: var(--color-warm-white);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 3rem;
    gap: 2rem;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease-out-expo);
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.08);
  }

  .nav__links--open {
    transform: translateX(0);
  }

  .nav__link {
    font-size: 1.1rem;
  }

  .nav__cta {
    font-size: 1rem;
    margin-top: 1rem;
  }
}


/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border-radius: 4px;
  transition: all 0.3s var(--ease-out);
  cursor: pointer;
  border: none;
  text-decoration: none;
}

.btn--primary {
  background-color: var(--color-navy);
  color: var(--color-white);
  padding: 0.85rem 2rem;
}

.btn--primary:hover {
  background-color: var(--color-navy-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(46, 59, 91, 0.25);
}

.btn--outline {
  background-color: transparent;
  color: var(--color-navy);
  padding: 0.85rem 2rem;
  border: 1.5px solid var(--color-navy);
}

.btn--outline:hover {
  background-color: var(--color-navy);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn--text {
  background: none;
  color: var(--color-text-light);
  padding: 0.5rem 0;
  font-weight: 400;
  font-size: 0.9rem;
}

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

.btn--large {
  padding: 1rem 2.5rem;
  font-size: 1.05rem;
}

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

.section--navy .btn--primary:hover {
  background-color: var(--color-gold-dark);
  box-shadow: 0 4px 16px rgba(240, 214, 135, 0.3);
}


/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 8rem 2rem 4rem;
  position: relative;
  overflow: hidden;
  background-color: var(--color-navy-dark);
}

/* Video background */
.hero__video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero__video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -55%) scale(1.25);
  object-fit: cover;
}

/* Dark overlay for text readability */
.hero__video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(30, 42, 69, 0.55) 0%,
    rgba(30, 42, 69, 0.45) 50%,
    rgba(30, 42, 69, 0.6) 100%
  );
  z-index: 1;
}

/* Mask for bottom-right watermark */
.hero__video-watermark-mask {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 180px;
  height: 80px;
  background: radial-gradient(
    ellipse at 100% 100%,
    rgba(30, 42, 69, 0.85) 0%,
    rgba(30, 42, 69, 0.5) 50%,
    transparent 80%
  );
  z-index: 2;
}

.hero__content {
  position: relative;
  z-index: 3;
  max-width: 820px;
  text-align: center;
}

.hero__headline {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 500;
  line-height: 1.25;
  color: var(--color-white);
  margin-bottom: 2.5rem;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.2);
}

.hero__headline-emphasis {
  color: rgba(255, 255, 255, 0.88);
}

.hero__body {
  max-width: 640px;
  margin: 0 auto 2rem;
}

.hero__body p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
}

.hero__closing {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--color-gold);
  margin-bottom: 3rem;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

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

.hero__ctas .btn--primary:hover {
  background-color: var(--color-gold-dark);
  box-shadow: 0 4px 16px rgba(240, 214, 135, 0.3);
}

.hero__ctas .btn--outline {
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.5);
}

.hero__ctas .btn--outline:hover {
  background-color: var(--color-white);
  color: var(--color-navy);
  border-color: var(--color-white);
}

.hero__ctas .btn--text {
  color: rgba(255, 255, 255, 0.7);
}

.hero__ctas .btn--text:hover {
  color: var(--color-white);
}

@media (max-width: 640px) {
  .hero__ctas {
    flex-direction: column;
  }

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

.hero__scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: rgba(255, 255, 255, 0.4);
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}


/* ============================================
   SECTIONS (SHARED)
   ============================================ */
.section {
  padding: var(--section-padding) 2rem;
}

.section__inner {
  max-width: var(--content-width);
  margin: 0 auto;
  text-align: center;
}

.section__inner--narrow {
  max-width: 600px;
  text-align: center;
}

.section--white {
  background-color: var(--color-white);
}

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

.section--navy {
  background-color: var(--color-navy);
  color: var(--color-white);
}

.section--navy .section__number {
  color: var(--color-gold);
  opacity: 0.7;
}

.section--navy .section__title {
  color: var(--color-white);
}

.section__number {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--color-gold-dark);
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--color-gold);
}

.section__title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: var(--color-navy);
  margin-bottom: 1.25rem;
}

.section__lead {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  line-height: 1.5;
  color: var(--color-navy);
  margin-bottom: 1.75rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section--navy .section__lead {
  color: rgba(255, 255, 255, 0.9);
}

.section__body p {
  margin-bottom: 1rem;
  color: var(--color-text-light);
  font-size: 1rem;
}

.section__body {
  max-width: 800px;
  margin: 0 auto;
}

.section__body p:last-child {
  margin-bottom: 0;
}

.section--navy .section__body p {
  color: rgba(255, 255, 255, 0.8);
}

.section__intro {
  font-size: 1rem;
  color: var(--color-text-light);
  margin-bottom: 1.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section__discretion {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1rem;
  color: var(--color-text-light);
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border);
}


/* ============================================
   02: HOW I WORK
   ============================================ */
.work-items {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.work-item {
  padding-left: 0;
  border-left: none;
}

.work-item__title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.work-item__body {
  color: var(--color-text-light);
  font-size: 1rem;
  line-height: 1.6;
}


/* ============================================
   03: RESULTS
   ============================================ */
.results-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 2.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.result-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.result-item__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--color-cream);
  color: var(--color-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  flex-shrink: 0;
}

.result-item__icon svg {
  width: 22px;
  height: 22px;
}

.result-item__text {
  color: var(--color-text-light);
  font-size: 1rem;
  line-height: 1.6;
}

@media (max-width: 640px) {
  .results-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* Testimonial */
.testimonial {
  margin: 0 auto 2.5rem;
  padding: 2rem 0;
  max-width: 800px;
}

.testimonial__quote {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--color-navy);
  margin-bottom: 0.75rem;
}

.testimonial__cite {
  display: block;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.8rem;
  color: var(--color-text-light);
  letter-spacing: 0.02em;
}

/* Trusted-by banner */
.trusted-by {
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
}

.trusted-by__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-light);
  margin-bottom: 1.25rem;
}

.trusted-by__logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}

.trusted-by__logo {
  width: auto;
  height: auto;
  max-width: 110px;
  max-height: 28px;
  object-fit: contain;
  filter: grayscale(100%) brightness(0.35);
  opacity: 0.55;
  transition: opacity 0.3s;
}

.trusted-by__logo:hover {
  opacity: 0.8;
}

@media (max-width: 640px) {
  .trusted-by__logos {
    gap: 1.5rem;
  }

  .trusted-by__logo {
    max-width: 90px;
    max-height: 24px;
  }
}


/* ============================================
   04: APPROACH
   ============================================ */
.section__inner--wide {
  max-width: var(--layout-width);
  margin: 0 auto;
}

.section__eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold-dark);
  margin-bottom: 0.5rem;
}

.approach-header {
  text-align: center;
  margin-bottom: 3rem;
}

.approach-header .section__title {
  margin-bottom: 0.75rem;
}

.approach-header__intro {
  font-size: 1rem;
  color: var(--color-text-light);
}

/* Steps row */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
  margin-bottom: 2.5rem;
}

.steps__track {
  position: absolute;
  top: 28px;
  left: calc(12.5% + 28px);
  right: calc(12.5% + 28px);
  height: 2px;
  background-color: var(--color-border);
}

.step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: var(--color-navy);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.step__icon svg {
  width: 24px;
  height: 24px;
}

.step__label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--color-gold-dark);
  margin-bottom: 0.35rem;
}

.step__title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: 0.5rem;
}

.step__desc {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.55;
  max-width: 220px;
  margin: 0 auto;
}

.approach-cta {
  text-align: center;
  padding-top: 1.5rem;
}

.approach-cta .btn {
  padding: 1.1rem 3rem;
  font-size: 1.05rem;
}

@media (max-width: 768px) {
  .steps {
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 320px;
    margin: 0 auto 2.5rem;
  }

  .steps__track {
    display: none;
  }

  .step {
    display: grid;
    grid-template-columns: 56px 1fr;
    grid-template-rows: auto auto;
    column-gap: 1rem;
    text-align: left;
  }

  .step__icon {
    grid-row: 1 / 3;
    margin: 0;
  }

  .step__label {
    align-self: end;
    margin-bottom: 0.15rem;
  }

  .step__title {
    margin-bottom: 0.25rem;
  }

  .step__desc {
    grid-column: 2;
    max-width: none;
    margin: 0;
  }
}


/* ============================================
   05: ABOUT / WE RIDE TOGETHER
   ============================================ */
.about__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

@media (min-width: 900px) {
  .about__content {
    max-width: 800px;
  }
}

.about__body p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.about__values {
  margin-top: 2rem;
}

.about__values-intro {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--color-white);
  margin-bottom: 2rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 640px) {
  .values-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.value {
  padding: 1.5rem;
  border: 1px solid rgba(240, 214, 135, 0.2);
  border-radius: 6px;
}

.value__title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-gold);
  margin-bottom: 0.5rem;
}

.value__desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.about__invitation {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 2rem;
  line-height: 1.6;
}

.about__signature {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.about__bike-icon {
  width: 48px;
  height: auto;
  opacity: 0.6;
  margin: 0 auto 1rem;
}

.about__name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 0.35rem;
}

.about__linkedin {
  font-size: 0.9rem;
  color: var(--color-gold);
  transition: opacity 0.25s;
}

.about__linkedin:hover {
  opacity: 0.8;
}

.about__photo-area {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 1rem;
}

.about__photo {
  width: 280px;
  height: 280px;
  border-radius: 8px;
  object-fit: cover;
  border: 3px solid rgba(240, 214, 135, 0.25);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

@media (max-width: 899px) {
  .about__photo-area {
    justify-content: flex-start;
  }

  .about__photo {
    width: 200px;
    height: 200px;
  }
}


/* ============================================
   06: WHERE I FIT BEST
   ============================================ */
.fit-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.fit-list li {
  font-size: 1rem;
  color: var(--color-text-light);
  line-height: 1.6;
}

.fit__cta {
  margin-top: 2rem;
}


/* ============================================
   07: NEWSLETTER
   ============================================ */
.newsletter__cta {
  margin: 2.5rem 0;
}

.newsletter__recent {
  margin-top: 3rem;
}

.newsletter__posts {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: left;
}

.newsletter__post {
  display: block;
  padding: 1.25rem 1.5rem;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  transition: border-color 0.25s, transform 0.25s;
}

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

.newsletter__post-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--color-navy);
  margin-bottom: 0.25rem;
}

.newsletter__post-date {
  font-size: 0.8rem;
  color: var(--color-text-light);
}


/* ============================================
   FOOTER
   ============================================ */
.footer {
  background-color: var(--color-navy-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 3rem 2rem 2rem;
}

.footer__inner {
  max-width: var(--layout-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2.5rem;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer__logo {
  width: 40px;
  height: auto;
  opacity: 0.5;
}

.footer__name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--color-white);
  margin-bottom: 0.15rem;
}

.footer__company {
  font-size: 0.85rem;
  opacity: 0.6;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.footer__links a {
  font-size: 0.9rem;
  transition: color 0.25s;
}

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

.footer__partner-link {
  font-size: 0.8rem;
}

.footer__partner-link a {
  opacity: 0.4;
  transition: opacity 0.25s;
}

.footer__partner-link a:hover {
  opacity: 0.7;
}

.footer__copy {
  font-size: 0.75rem;
  opacity: 0.4;
}


/* ============================================
   REVEAL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease-out),
              transform 0.8s var(--ease-out);
}

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

.reveal--delay-1 { transition-delay: 0.15s; }
.reveal--delay-2 { transition-delay: 0.3s; }
.reveal--delay-3 { transition-delay: 0.45s; }


/* ============================================
   MOBILE OVERLAY
   ============================================ */
.nav-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(30, 42, 69, 0.3);
  z-index: 90;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}

.nav-overlay--visible {
  opacity: 1;
  pointer-events: auto;
}


/* ============================================
   UTILITY
   ============================================ */
@media print {
  .nav,
  .hero__scroll-hint {
    display: none;
  }

  .section {
    padding: 2rem 0;
    break-inside: avoid;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
