/* ============================================
   DONCO.PHOTOGRAPHY — DARK PREMIUM DESIGN SYSTEM
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,200;0,9..144,300;0,9..144,400;1,9..144,200;1,9..144,300&family=Jost:wght@300;400;500;600&family=JetBrains+Mono:wght@400&display=swap');

:root {
  /* Colors — black, white, sophisticated pink */
  --black: #0a0a0a;
  --black-soft: #131313;
  --black-card: #1a1a1a;
  --white: #ffffff;
  --white-soft: #fafafa;
  --grey-soft: #f5f5f5;
  --grey-line: #2a2a2a;
  --grey-line-light: #e8e8e8;
  --text-on-dark: #f5f5f5;
  --text-on-dark-mute: #999999;
  --text-on-light: #0a0a0a;
  --text-on-light-mute: #666666;

  /* Pink — refined, not cheesy */
  --pink: #e8a5b0;
  --pink-soft: #f5d6dc;
  --pink-deep: #c97c87;

  /* Type */
  --serif: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  --sans: 'Jost', system-ui, -apple-system, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;

  /* Spacing */
  --max-width: 1400px;
  --max-narrow: 980px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-on-dark);
  background: var(--black);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s ease, color 0.2s ease;
}

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

/* ============================================
   TYPOGRAPHY
   ============================================ */

.display {
  font-family: var(--serif);
  font-weight: 200;
  line-height: 0.98;
  letter-spacing: -0.02em;
}

.display em {
  font-style: italic;
  font-weight: 200;
  color: var(--pink);
}

.display-xl {
  font-size: clamp(3rem, 9vw, 7.5rem);
}

.display-lg {
  font-size: clamp(2.25rem, 5.5vw, 4.5rem);
}

.display-md {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
}

.eyebrow {
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pink);
}

.lead {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  line-height: 1.65;
  color: var(--text-on-dark-mute);
  max-width: 44ch;
  font-weight: 300;
}

/* Light sections invert text colors */
.section-light {
  background: var(--white);
  color: var(--text-on-light);
}

.section-light .eyebrow {
  color: var(--pink-deep);
}

.section-light .lead {
  color: var(--text-on-light-mute);
}

/* ============================================
   LAYOUT
   ============================================ */

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

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

section {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

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

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.5rem var(--gutter);
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.nav.scrolled {
  background: rgba(10, 10, 10, 0.9);
  border-bottom-color: var(--grey-line);
}

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

.brand {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 300;
  letter-spacing: -0.01em;
  line-height: 1;
  color: var(--white);
}

.brand em {
  font-style: italic;
  font-weight: 300;
  color: var(--pink);
}

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

.nav-links a {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-on-dark-mute);
  position: relative;
}

.nav-links a:hover {
  color: var(--pink);
}

.nav-links a.active {
  color: var(--white);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--pink);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
}

@media (max-width: 760px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 80%;
    max-width: 320px;
    background: var(--black);
    border-left: 1px solid var(--grey-line);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 3rem;
    gap: 2rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }

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

  .nav-toggle {
    display: block;
    z-index: 101;
  }
}

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

.hero {
  padding-top: clamp(7rem, 14vh, 9rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
  min-height: 92vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Subtle pink glow background detail */
.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 50%;
  height: 80%;
  background: radial-gradient(circle, rgba(232, 165, 176, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

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

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: end;
  width: 100%;
}

.hero-text {
  position: relative;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.hero-meta::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--pink);
}

.hero h1 {
  margin-bottom: 1.5rem;
}

.hero-info {
  display: flex;
  gap: 3rem;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--grey-line);
  flex-wrap: wrap;
}

.hero-info-item .eyebrow {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--text-on-dark-mute);
}

.hero-info-item p {
  font-size: 0.95rem;
  color: var(--white);
  font-weight: 400;
}

.hero-image {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--black-card);
  overflow: hidden;
  border: 1px solid var(--grey-line);
}

.hero-image.placeholder::before {
  content: attr(data-label);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--black-card) 0%, #222 100%);
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-on-dark-mute);
  z-index: 0;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 2;
}

.hero-image-caption {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: var(--black);
  padding: 0.5rem 0.75rem;
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--pink);
  border: 1px solid var(--grey-line);
}

@media (max-width: 768px) {
  .hero {
    min-height: auto;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .hero-info {
    gap: 2rem;
  }
}

/* ============================================
   BUTTONS
   ============================================ */

.btn-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.95rem 1.6rem;
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid var(--white);
  background: transparent;
  color: var(--white);
  cursor: pointer;
  transition: all 0.25s ease;
}

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

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

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

/* Buttons inside light sections */
.section-light .btn {
  border-color: var(--black);
  color: var(--black);
}

.section-light .btn-primary {
  background: var(--black);
  color: var(--white);
}

.section-light .btn-primary:hover {
  background: var(--pink-deep);
  border-color: var(--pink-deep);
  color: var(--white);
}

.section-light .btn-outline:hover {
  background: var(--black);
  color: var(--white);
}

.btn .arrow {
  display: inline-block;
  transition: transform 0.25s ease;
}

.btn:hover .arrow {
  transform: translateX(5px);
}

/* ============================================
   SECTION HEADERS
   ============================================ */

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3.5rem;
  gap: 2rem;
  flex-wrap: wrap;
}

.section-head h2 {
  margin-top: 1rem;
}

.section-head .count {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--text-on-dark-mute);
}

.section-light .section-head .count {
  color: var(--text-on-light-mute);
}

/* ============================================
   PORTFOLIO GRIDS
   ============================================ */

.grid-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1rem, 2vw, 1.5rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.grid-feature .photo:first-child {
  aspect-ratio: 4 / 5;
}

.grid-feature .photo:last-child {
  aspect-ratio: 4 / 5;
  margin-top: 4rem;
}

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

.grid-three .photo {
  aspect-ratio: 4 / 5;
}

.grid-wide .photo {
  aspect-ratio: 16 / 9;
  width: 100%;
}

@media (max-width: 768px) {
  .grid-feature,
  .grid-three {
    grid-template-columns: 1fr;
  }
  .grid-feature .photo:last-child {
    margin-top: 0;
  }
}

/* ============================================
   PHOTO ELEMENT
   ============================================ */

.photo {
  position: relative;
  overflow: hidden;
  background: var(--black-card);
  border: 1px solid var(--grey-line);
}

.section-light .photo {
  background: var(--grey-soft);
  border-color: var(--grey-line-light);
}

.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 2;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.photo:hover img {
  transform: scale(1.04);
}

.photo-label {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: var(--black);
  padding: 0.4rem 0.7rem;
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--pink);
  border: 1px solid var(--grey-line);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.photo:hover .photo-label {
  opacity: 1;
  transform: translateY(0);
}

/* Empty-image placeholder */
.photo.placeholder::before {
  content: attr(data-label);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--black-card) 0%, #222 100%);
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-on-dark-mute);
  z-index: 0;
}

.section-light .photo.placeholder::before {
  background: linear-gradient(135deg, var(--grey-soft) 0%, #e8e8e8 100%);
  color: var(--text-on-light-mute);
}

/* ============================================
   SERVICE ROWS (signature DonCo style)
   ============================================ */

.services {
  background: var(--black);
}

.service-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 0;
  background: var(--white);
  color: var(--text-on-light);
  margin-bottom: 1.5rem;
  border: 1px solid transparent;
  transition: border-color 0.3s ease;
}

.service-row:hover {
  border-color: var(--pink);
}

.service-row:nth-child(even) {
  grid-template-columns: 1fr 1.4fr;
}

.service-row:nth-child(even) .service-image {
  order: 2;
}

.service-image {
  aspect-ratio: 16 / 10;
  background: var(--grey-soft);
  position: relative;
  overflow: hidden;
}

.service-image::before {
  content: attr(data-label);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e8e8e8 0%, #d4d4d4 100%);
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-on-light-mute);
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

.service-content {
  padding: clamp(2rem, 4vw, 3.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-content .number {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--pink-deep);
  margin-bottom: 1.25rem;
}

.service-content h3 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 300;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
  line-height: 1.1;
}

.service-content h3 em {
  font-style: italic;
  color: var(--pink-deep);
}

.service-meta {
  font-size: 0.85rem;
  color: var(--text-on-light-mute);
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--grey-line-light);
}

.service-price {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 1.75rem;
}

.service-price small {
  font-size: 0.7rem;
  font-family: var(--mono);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-on-light-mute);
  margin-left: 0.5rem;
  vertical-align: middle;
}

.service-row .btn {
  align-self: flex-start;
  border-color: var(--black);
  color: var(--black);
}

.service-row .btn:hover {
  background: var(--pink-deep);
  border-color: var(--pink-deep);
  color: var(--white);
}

@media (max-width: 768px) {
  .service-row,
  .service-row:nth-child(even) {
    grid-template-columns: 1fr;
  }
  .service-row:nth-child(even) .service-image {
    order: 0;
  }
  .service-image {
    aspect-ratio: 16 / 11;
  }
}

/* ============================================
   ABOUT
   ============================================ */

.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.about-text h2 {
  margin-bottom: 2rem;
}

.about-text p {
  margin-bottom: 1.25rem;
  color: var(--text-on-dark-mute);
  max-width: 52ch;
}

.section-light .about-text p {
  color: var(--text-on-light-mute);
}

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

.about-image {
  aspect-ratio: 3 / 4;
  background: var(--black-card);
  overflow: hidden;
  border: 1px solid var(--grey-line);
  position: relative;
}

.section-light .about-image {
  background: var(--grey-soft);
  border-color: var(--grey-line-light);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 2;
}

.about-image.placeholder::before {
  content: attr(data-label);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-on-dark-mute);
  z-index: 0;
}

.about-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  font-weight: 300;
  line-height: 1.3;
  color: var(--white);
  margin: 2.5rem 0;
  padding-left: 1.5rem;
  border-left: 2px solid var(--pink);
}

.section-light .about-quote {
  color: var(--text-on-light);
}

.facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--grey-line);
}

.section-light .facts {
  border-top-color: var(--grey-line-light);
}

.fact strong {
  display: block;
  font-family: var(--serif);
  font-size: 2.25rem;
  font-weight: 300;
  margin-bottom: 0.25rem;
  color: var(--white);
}

.section-light .fact strong {
  color: var(--text-on-light);
}

.fact span {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pink);
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}

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

.process {
  background: var(--white);
  color: var(--text-on-light);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 3rem;
  border-top: 1px solid var(--grey-line-light);
  border-bottom: 1px solid var(--grey-line-light);
}

.process-card {
  padding: clamp(2rem, 3.5vw, 3rem) 2rem;
  border-right: 1px solid var(--grey-line-light);
  transition: background 0.3s ease;
}

.process-card:last-child {
  border-right: none;
}

.process-card:hover {
  background: var(--pink-soft);
}

.process-card .number {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--pink-deep);
  margin-bottom: 1.5rem;
}

.process-card h3 {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 300;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.process-card p {
  font-size: 0.95rem;
  color: var(--text-on-light-mute);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .process-grid {
    grid-template-columns: 1fr;
  }
  .process-card {
    border-right: none;
    border-bottom: 1px solid var(--grey-line-light);
  }
  .process-card:last-child {
    border-bottom: none;
  }
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
  text-align: center;
  background: var(--black);
  color: var(--white);
  padding: clamp(5rem, 10vw, 8rem) 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 800px;
  height: 60%;
  background: radial-gradient(circle, rgba(232, 165, 176, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

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

.cta-section h2 {
  margin: 1.5rem auto 2.5rem;
  max-width: 20ch;
}

/* ============================================
   BOOKING / CALENDLY
   ============================================ */

.booking-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  margin-bottom: 4rem;
}

.booking-intro p {
  color: var(--text-on-dark-mute);
  margin-bottom: 1rem;
  max-width: 50ch;
}

.booking-intro strong {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.05rem;
  color: var(--white);
}

.booking-intro a.email-link {
  border-bottom: 1px solid var(--pink);
  color: var(--pink);
}

.booking-steps {
  list-style: none;
  counter-reset: step;
}

.booking-steps li {
  counter-increment: step;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--grey-line);
  display: flex;
  gap: 1.5rem;
  align-items: baseline;
}

.booking-steps li::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--pink);
  min-width: 2rem;
}

.booking-steps strong {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.05rem;
  display: block;
  margin-bottom: 0.25rem;
  color: var(--white);
}

.booking-steps span {
  font-size: 0.9rem;
  color: var(--text-on-dark-mute);
}

.calendly-wrapper {
  margin-top: 2rem;
  padding: 0.5rem;
  background: var(--white);
  border: 1px solid var(--grey-line);
  min-height: 720px;
}

.calendly-inline-widget {
  min-width: 320px;
  width: 100%;
  height: 720px;
}

.calendly-placeholder {
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
  padding: 2rem;
  color: var(--text-on-light-mute);
}

.calendly-placeholder code {
  font-family: var(--mono);
  font-size: 0.85rem;
  background: var(--grey-soft);
  padding: 0.25rem 0.5rem;
  color: var(--text-on-light);
  border: 1px solid var(--grey-line-light);
}

@media (max-width: 768px) {
  .booking-intro {
    grid-template-columns: 1fr;
  }
}

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

footer {
  background: var(--black);
  color: var(--text-on-dark);
  padding: 5rem 0 2rem;
  border-top: 1px solid var(--grey-line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--grey-line);
}

.footer-brand {
  font-family: var(--serif);
  font-size: 2.25rem;
  font-weight: 200;
  line-height: 1;
  margin-bottom: 1rem;
}

.footer-brand em {
  font-style: italic;
  color: var(--pink);
}

.footer-tagline {
  font-size: 0.95rem;
  color: var(--text-on-dark-mute);
  max-width: 36ch;
  line-height: 1.6;
}

.footer h4 {
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 1.5rem;
}

.footer ul {
  list-style: none;
}

.footer ul li {
  margin-bottom: 0.7rem;
}

.footer ul a,
.footer p {
  color: var(--text-on-dark-mute);
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer ul a:hover {
  color: var(--pink);
}

.footer-bottom {
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-on-dark-mute);
  flex-wrap: wrap;
  gap: 1rem;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* ============================================
   PAGE HEADER
   ============================================ */

.page-header {
  padding-top: clamp(8rem, 16vh, 10rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
}

.page-header .eyebrow {
  margin-bottom: 1rem;
  display: block;
}

.page-header p {
  margin-top: 1.75rem;
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  color: var(--text-on-dark-mute);
  max-width: 58ch;
  line-height: 1.65;
}

.category {
  margin-top: clamp(3rem, 6vw, 5rem);
}

.category:first-of-type {
  margin-top: 0;
}

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

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  animation: fadeUp 0.95s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.reveal-delay-1 { animation-delay: 0.1s; }
.reveal-delay-2 { animation-delay: 0.25s; }
.reveal-delay-3 { animation-delay: 0.4s; }
.reveal-delay-4 { animation-delay: 0.55s; }

/* ============================================
   UTILITIES
   ============================================ */

.divider {
  height: 1px;
  background: var(--grey-line);
  margin: clamp(3rem, 6vw, 5rem) 0;
}

.section-light .divider {
  background: var(--grey-line-light);
}
