/* ============================================
   CSS VARIABLES & DESIGN TOKENS
   ============================================ */
:root {
  --color-bg-primary: #f9f9f5;
  --color-bg-secondary: #f0efea;
  --color-bg-dark: #0f0f0f;
  --color-text-primary: #0f0f0f;
  --color-text-secondary: #6b6b6b;
  --color-text-muted: #8a8a8a;
  --color-text-inverse: #ffffff;
  --color-text-inverse-muted: #aaaaaa;
  --color-accent: #c98276;
  --color-accent-hover: #b56f63;
  --color-border: rgba(15, 15, 15, 0.12);
  --color-border-inverse: rgba(255, 255, 255, 0.12);

  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Manrope", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: "Fragment Mono", "Source Code Pro", monospace;

  --page-padding: clamp(1.25rem, 4vw, 4rem);
  --content-max-width: 1280px;
  --content-narrow: 720px;
  --space-section: clamp(4rem, 10vh, 10rem);
  --space-content: clamp(2rem, 5vh, 5rem);
  --space-element: 1.5rem;

  --ease-smooth: cubic-bezier(0.33, 0, 0, 1);
  --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
  --duration-fast: 200ms;
  --duration-normal: 400ms;
  --duration-slow: 800ms;
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  color: var(--color-text-primary);
  background: var(--color-bg-primary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; }

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

/* ============================================
   NAVIGATION — ALL SCREENS
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 60px;
  transition: background var(--duration-normal) var(--ease-smooth),
              backdrop-filter var(--duration-normal) var(--ease-smooth);
}

.navbar.scrolled {
  background: rgba(249, 249, 245, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--color-border);
}

/* Nav items — white over hero (not scrolled) */
.navbar:not(.scrolled) .nav-link {
  color: rgba(255, 255, 255, 0.8);
}

.navbar:not(.scrolled) .nav-link:hover,
.navbar:not(.scrolled) .nav-link.active {
  color: #ffffff;
}

.navbar:not(.scrolled) .nav-cta {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #ffffff;
}

.navbar:not(.scrolled) .nav-cta:hover {
  background: rgba(255, 255, 255, 0.25);
}

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

.logo {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.15rem;
  font-weight: 400;
  color: #ffffff;
  letter-spacing: -0.01em;
  z-index: 1001;
  transition: color var(--duration-normal) var(--ease-smooth);
}

.navbar.scrolled .logo {
  color: var(--color-text-primary);
}

/* Logo image */
.logo-img {
  height: 80px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1); /* forces white on any background */
  transition: filter var(--duration-normal) var(--ease-smooth);
}

.navbar.scrolled .logo-img {
  filter: brightness(0); /* back to black when scrolled */
}

.footer-logo {
  height: 42px;
  filter: brightness(0) invert(0.5); /* muted grey in footer */
}

/* Desktop nav hidden by default, shown on tablet+ */
.desktop-nav {
  display: none;
  align-items: center;
  gap: 2.5rem;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-secondary);
  transition: color var(--duration-fast) var(--ease-smooth);
  position: relative;
  padding: 0.5rem 0;
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-accent);
}

.nav-cta {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: var(--color-accent);
  color: #ffffff;
  padding: 0.625rem 1.5rem;
  border-radius: 999px;
  transition: background var(--duration-fast) var(--ease-smooth),
              transform var(--duration-fast) var(--ease-smooth);
}

.nav-cta:hover {
  background: var(--color-accent-hover);
  transform: scale(1.02);
}

/* ====== Mobile Menu Toggle ====== */
.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  padding: 0;
  z-index: 1001;
  position: relative;
}

.menu-bar {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--color-text-primary);
  transition: all var(--duration-normal) var(--ease-smooth);
  transform-origin: center;
}

.navbar:not(.scrolled) .menu-bar {
  background: #ffffff;
}

.menu-toggle.active .menu-bar:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.menu-toggle.active .menu-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.menu-toggle.active .menu-bar:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ====== Mobile Menu Overlay ====== */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 15, 15, 0.3);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--duration-normal) var(--ease-smooth);
}

.mobile-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(85vw, 360px);
  background: var(--color-bg-primary);
  z-index: 999;
  padding: 1.5rem var(--page-padding) 2rem;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform var(--duration-normal) var(--ease-out-expo);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

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

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
  padding-top: 0.5rem;
}

.mobile-menu-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-muted);
}

.menu-close {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: var(--color-text-primary);
  padding: 0;
}

.mobile-menu-links {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-menu-link {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.75rem, 6vw, 2.5rem);
  color: var(--color-text-primary);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--color-border);
  transition: color var(--duration-fast) var(--ease-smooth),
              padding-left var(--duration-fast) var(--ease-smooth);
  display: block;
}

.mobile-menu-link:hover {
  color: var(--color-accent);
  padding-left: 0.5rem;
}

.mobile-menu-footer {
  margin-top: auto;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
}

.mobile-menu-email {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--color-text-muted);
  word-break: break-all;
}

/* ============================================
   HERO SECTION — MOBILE FIRST
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

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

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: kenBurns 10s ease-out forwards;
}

@keyframes kenBurns {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(15, 15, 15, 0.35) 0%,
    rgba(15, 15, 15, 0.1) 50%,
    rgba(15, 15, 15, 0.55) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--content-max-width);
  margin: 0 auto;
  padding: 5rem var(--page-padding) 4rem;
}

.hero-caption {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.25rem;
}

.hero-headline {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(2.2rem, 9vw, 7rem);
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: #ffffff;
  max-width: 900px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  margin-bottom: 1.25rem;
}

.hero-headline .line {
  display: block;
}

.hero-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 1.75rem;
}

.hero-cta {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: #ffffff;
  color: var(--color-text-primary);
  padding: 0.875rem 2rem;
  border-radius: 999px;
  transition: background var(--duration-fast) var(--ease-smooth),
              color var(--duration-fast) var(--ease-smooth),
              transform var(--duration-fast) var(--ease-smooth);
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.hero-cta:hover {
  background: var(--color-accent);
  color: #ffffff;
  transform: scale(1.02);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  animation: fadeIn 0.6s ease-out 2s forwards;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.25);
}

.scroll-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #ffffff;
  animation: scrollBounce 1.8s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(-40px); opacity: 0.4; }
  50% { transform: translateY(-4px); opacity: 1; }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ============================================
   SECTION SHARED STYLES
   ============================================ */
.section {
  padding: var(--space-section) 0;
}

.section-label {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
  margin-bottom: var(--space-element);
}

.section-headline {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(2rem, 7vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--color-text-primary);
}

.section-headline .line {
  display: block;
}

/* ============================================
   ABOUT SECTION — MOBILE FIRST
   ============================================ */
.about {
  background: var(--color-bg-primary);
}

.about-grid {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.about-text .section-headline {
  margin-bottom: var(--space-content);
}

.about-body {
  font-size: 1.0625rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-element);
}

.about-body-secondary {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.about-image {
  overflow: hidden;
  border-radius: 6px;
  aspect-ratio: 3 / 4;
  order: -1;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
}

/* ============================================
   SERVICES SECTION — MOBILE FIRST
   ============================================ */
.services {
  background: var(--color-bg-secondary);
}

.services .section-headline {
  margin-bottom: var(--space-content);
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.service-card {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 1.25rem;
  align-items: start;
  padding: 2rem 0;
  border-bottom: 1px solid var(--color-border);
}

.service-card:first-child {
  padding-top: 0;
}

.service-card:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.service-number {
  font-family: var(--font-mono);
  font-size: 1rem;
  color: var(--color-accent);
  line-height: 1.4;
  font-weight: 400;
  position: relative;
  top: 2px;
}

.service-content h3 {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.4rem, 5vw, 2.5rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--color-text-primary);
  margin-bottom: 0.875rem;
}

.service-content p {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

/* ============================================
   NETWORK SECTION — MOBILE FIRST
   ============================================ */
.network {
  background: var(--color-bg-primary);
  padding-bottom: calc(var(--space-section) - 1rem);
}

.network .section-headline {
  margin-bottom: var(--space-element);
}

.network-sub {
  font-size: 1.0625rem;
  color: var(--color-text-secondary);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: var(--space-content);
}

/* Gallery — 2 columns on mobile */
.gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-bottom: var(--space-content);
  padding: 0 var(--page-padding);
}

.gallery-item {
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 1;
}

.gallery-item-wide {
  grid-column: span 2;
  aspect-ratio: 16 / 9;
}

.gallery-item-tall {
  aspect-ratio: 3 / 4;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-smooth);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Partner strip */
.partner-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 0 var(--page-padding);
}

.partner-strip span {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
}

.partner-strip .separator {
  width: 4px;
  height: 4px;
  background: var(--color-accent);
  opacity: 0.4;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============================================
   CONTACT SECTION — MOBILE FIRST
   ============================================ */
.contact {
  background: var(--color-bg-dark);
}

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

.contact .section-headline {
  color: var(--color-text-inverse);
  margin-bottom: var(--space-content);
}

.contact-sub {
  font-size: 1rem;
  color: var(--color-text-inverse-muted);
  max-width: 520px;
  margin: 0 auto var(--space-content);
  line-height: 1.7;
  padding: 0 0.5rem;
}

.contact-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8125rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: var(--color-accent);
  color: #ffffff;
  padding: 1rem 2.5rem;
  border-radius: 999px;
  min-height: 48px;
  transition: background var(--duration-fast) var(--ease-smooth),
              transform var(--duration-fast) var(--ease-smooth);
  animation: breathe 3s ease-in-out infinite;
}

.contact-cta:hover {
  background: var(--color-accent-hover);
  transform: scale(1.03);
}

@keyframes breathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.015); }
}

.contact-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: var(--space-content);
  text-align: left;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.contact-label {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-inverse-muted);
  margin-bottom: 0.5rem;
}

.contact-col a,
.contact-col span {
  font-size: 0.9375rem;
  color: var(--color-text-inverse);
  transition: color var(--duration-fast) var(--ease-smooth);
  word-break: break-all;
}

.contact-col a:hover {
  color: var(--color-accent);
}

.linkedin-link {
  display: inline-block;
  margin-top: var(--space-element);
  font-size: 0.875rem;
  color: var(--color-text-inverse-muted);
  transition: color var(--duration-fast) var(--ease-smooth);
  padding: 0.5rem;
}

.linkedin-link:hover {
  color: var(--color-accent);
}

/* ============================================
   FOOTER — MOBILE FIRST
   ============================================ */
.footer {
  background: var(--color-bg-dark);
  padding: var(--space-section) 0 2rem;
  border-top: 1px solid var(--color-border-inverse);
}

.footer-top {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.footer-top h3 {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(2rem, 7vw, 3.5rem);
  color: var(--color-text-inverse);
  line-height: 1.05;
}

.footer-cta {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  font-size: 0.8125rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border: 1px solid var(--color-border-inverse);
  color: var(--color-text-inverse);
  padding: 0.75rem 2rem;
  border-radius: 999px;
  min-height: 44px;
  transition: background var(--duration-fast) var(--ease-smooth),
              border-color var(--duration-fast) var(--ease-smooth);
}

.footer-cta:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
}

.footer-divider {
  height: 1px;
  background: var(--color-border-inverse);
  margin-bottom: 2.5rem;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-label {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-inverse-muted);
  margin-bottom: 1rem;
}

.footer-col a,
.footer-col span {
  display: block;
  font-size: 0.9375rem;
  color: var(--color-text-inverse);
  margin-bottom: 0.5rem;
  transition: color var(--duration-fast) var(--ease-smooth);
}

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

.footer-small {
  font-size: 0.75rem !important;
  color: var(--color-text-inverse-muted) !important;
  margin-bottom: 0.25rem !important;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--color-border-inverse);
  padding-top: 1.5rem;
}

.footer-bottom span {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  color: var(--color-text-inverse-muted);
}

/* ============================================
   SCROLL REVEAL ANIMATION
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity var(--duration-slow) var(--ease-out-expo),
              transform var(--duration-slow) var(--ease-out-expo);
}

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

/* Stagger children */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--duration-slow) var(--ease-out-expo),
              transform var(--duration-slow) var(--ease-out-expo);
}

.reveal-stagger.revealed > *:nth-child(1) { transition-delay: 0ms; }
.reveal-stagger.revealed > *:nth-child(2) { transition-delay: 100ms; }
.reveal-stagger.revealed > *:nth-child(3) { transition-delay: 200ms; }
.reveal-stagger.revealed > *:nth-child(4) { transition-delay: 300ms; }
.reveal-stagger.revealed > *:nth-child(5) { transition-delay: 400ms; }
.reveal-stagger.revealed > *:nth-child(6) { transition-delay: 500ms; }

.reveal-stagger.revealed > * {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   PLAY SECTION
   ============================================ */
.play-content {
  text-align: center;
  max-width: var(--content-narrow);
  margin: 0 auto;
}

.play-sub {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  max-width: 420px;
  margin: 1.5rem auto 2.5rem;
  line-height: 1.7;
}

.play-cta {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.875rem 2.5rem;
  background: var(--color-text-primary);
  color: var(--color-text-inverse);
  border: 1px solid var(--color-text-primary);
  transition: background var(--duration-fast) var(--ease-smooth),
              color var(--duration-fast) var(--ease-smooth);
  min-height: 48px;
  display: inline-flex;
  align-items: center;
}

.play-cta:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
}


/* ============================================
   INTERVIEW / AUDIO SECTION
   ============================================ */
.interview {
  background: var(--color-bg-secondary);
}

.interview .section-headline {
  margin-bottom: var(--space-element);
}

.interview-sub {
  font-size: 1rem;
  color: var(--color-text-secondary);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: var(--space-content);
}

.audio-player {
  background: var(--color-bg-primary);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 2rem;
  max-width: 640px;
}

.audio-info {
  margin-bottom: 1.5rem;
}

.audio-title {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--color-text-primary);
  margin-bottom: 0.25rem;
}

.audio-meta {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
}

.audio-controls {
  margin-bottom: 1.25rem;
}

.audio-play-btn {
  width: 52px;
  height: 52px;
  background: none;
  border: none;
  padding: 0;
  color: var(--color-text-primary);
  cursor: pointer;
  transition: color var(--duration-fast) var(--ease-smooth),
              transform var(--duration-fast) var(--ease-smooth);
}

.audio-play-btn:hover {
  color: var(--color-accent);
  transform: scale(1.08);
}

.audio-play-btn svg {
  width: 52px;
  height: 52px;
}

.audio-progress-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.audio-time {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  color: var(--color-text-muted);
  min-width: 36px;
  flex-shrink: 0;
}

.audio-progress {
  flex: 1;
  height: 3px;
  background: var(--color-border);
  border-radius: 999px;
  cursor: pointer;
  position: relative;
}

.audio-progress-fill {
  height: 100%;
  background: var(--color-accent);
  border-radius: 999px;
  width: 0%;
  transition: width 0.1s linear;
}

.audio-progress:hover .audio-progress-fill {
  background: var(--color-accent-hover);
}

/* ============================================
   TABLET BREAKPOINT (768px+)
   ============================================ */
@media (min-width: 768px) {
  .navbar {
    height: 64px;
  }

  .logo-img {
    height: 52px;
  }

  .desktop-nav {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  .mobile-menu,
  .mobile-overlay {
    display: none !important;
  }

  .hero-headline {
    font-size: clamp(3.5rem, 7vw, 7rem);
  }

  .hero-sub {
    font-size: 1.125rem;
  }

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

  .about-image {
    aspect-ratio: 3 / 4;
    order: 0;
  }

  .about-body {
    font-size: 1.125rem;
  }

  .service-card {
    grid-template-columns: 70px 1fr;
    gap: 2rem;
    padding: 2.5rem 0;
    padding-left: 8%;
  }

  .service-number {
    font-size: 1.15rem;
  }

  .service-content h3 {
    font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  }

  .service-content p {
    font-size: 1rem;
  }

  .gallery {
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
  }

  .gallery-item {
    aspect-ratio: 1;
  }

  .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
  .gallery-item:nth-child(2) { grid-column: span 2; }
  .gallery-item:nth-child(3) { grid-row: span 2; }
  .gallery-item:nth-child(4) { grid-column: span 2; grid-row: span 2; }
  .gallery-item:nth-child(6) { grid-row: span 2; }

  .contact-sub {
    font-size: 1.125rem;
  }

  .contact-details {
    gap: 3rem;
  }

  .footer-top {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

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

/* ============================================
   DESKTOP BREAKPOINT (1024px+)
   ============================================ */
@media (min-width: 1024px) {
  .about-grid {
    gap: 4rem;
  }

  .service-card {
    padding-left: 12%;
  }

  .hero-content {
    padding-bottom: 5rem;
  }
}

/* ============================================
   LARGE DESKTOP (1280px+)
   ============================================ */
@media (min-width: 1280px) {
  .service-card {
    padding-left: 15%;
  }
}

/* ============================================
   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;
  }

  .reveal,
  .reveal-stagger > * {
    opacity: 1;
    transform: none;
  }
}

/* ============================================
   LANDSCAPE MOBILE OPTIMIZATIONS
   ============================================ */
@media (max-height: 500px) and (orientation: landscape) {
  .hero {
    min-height: auto;
    padding-top: 80px;
  }

  .hero-headline {
    font-size: 2rem;
  }

  .scroll-indicator {
    display: none;
  }

  .mobile-menu-link {
    font-size: 1.5rem;
    padding: 0.5rem 0;
  }
}
