/* ============================================
   AMMAR AHAMED — Personal Website
   Dark theme, green growth accents
   Inspired by nickvelten.nl
   ============================================ */

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

:root {
  --bg-dark: #fafafa;
  --bg-light: #ffffff;
  --bg-green: #fafafa;
  --bg-section-alt: #f5f5f3;
  --text-dark: #1a1a1a;
  --text-light: #1a1a1a;
  --text-muted: #6b6b6b;
  --green: #1a7a3a;
  --green-bright: #22a34d;
  --green-dark: #1a7a3a;
  --border-dark: rgba(0,0,0,0.08);
  --border-light: rgba(0,0,0,0.06);
  --btn-text: #ffffff;
  --nav-bg: rgba(250, 250, 250, 0.9);
  --mobile-nav-bg: rgba(250, 250, 250, 0.97);
  --banner-bg: #f0f0f0;
  --toggle-bg: rgba(0,0,0,0.06);
  --toggle-icon: #1a1a1a;
  --title-size: clamp(2.8rem, 7vw, 6.5rem);
  --section-padding: clamp(80px, 10vw, 140px);
  --gap: clamp(24px, 3vw, 48px);
  --container: 1200px;
  --nav-height: 72px;
  --ease: cubic-bezier(0.6, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

[data-theme="dark"] {
  --bg-dark: #0a0a0a;
  --bg-light: #0a0a0a;
  --bg-green: #0a0a0a;
  --bg-section-alt: #111111;
  --text-dark: #f4f4f0;
  --text-light: #f4f4f0;
  --text-muted: #8a8a8a;
  --green: #2ecc71;
  --green-bright: #44e88a;
  --green-dark: #1a7a3a;
  --border-dark: rgba(255,255,255,0.08);
  --border-light: rgba(255,255,255,0.06);
  --btn-text: #0a0a0a;
  --nav-bg: rgba(10, 10, 10, 0.85);
  --mobile-nav-bg: rgba(10, 10, 10, 0.97);
  --banner-bg: #050505;
  --toggle-bg: rgba(255,255,255,0.08);
  --toggle-icon: #f4f4f0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scrollbar-width: none;
}

html::-webkit-scrollbar {
  display: none;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: clamp(16px, 1.1vw, 19px);
  line-height: 1.65;
  color: var(--text-light);
  background: var(--bg-dark);
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  line-height: 1.1;
}

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

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

strong {
  color: var(--green);
  font-weight: 600;
}

::selection {
  background: var(--green);
  color: var(--btn-text);
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

/* --- Palestine Banner --- */
.top-banner {
  background: var(--banner-bg);
  border-bottom: 1px solid var(--border-dark);
  color: var(--text-muted);
  text-align: center;
  padding: 10px 20px;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1002;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.banner-flag {
  font-size: 1rem;
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 34px;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  transition: background 0.4s var(--ease), backdrop-filter 0.4s var(--ease);
}

.nav.scrolled {
  background: var(--nav-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}

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

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  position: relative;
  padding: 4px 0;
  transition: color 0.3s var(--ease);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--green);
  transition: width 0.4s var(--ease-out);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link:last-child {
  background: var(--green);
  color: var(--btn-text);
  padding: 8px 20px;
  border-radius: 100px;
  font-weight: 600;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease);
}

.nav-link:last-child::after {
  display: none;
}

.nav-link:last-child:hover {
  background: var(--green-bright);
  transform: scale(1.05);
}

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

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--toggle-icon);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

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

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

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

/* --- Theme Toggle --- */
.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--toggle-bg);
  border: 1px solid var(--border-dark);
  cursor: pointer;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease);
  color: var(--toggle-icon);
  flex-shrink: 0;
}

.theme-toggle:hover {
  transform: scale(1.1);
  background: var(--border-dark);
}

.theme-toggle svg {
  width: 18px;
  height: 18px;
  transition: transform 0.4s var(--ease-out);
}

.theme-toggle:hover svg {
  transform: rotate(20deg);
}

.theme-toggle .icon-sun {
  display: none;
}

[data-theme="dark"] .theme-toggle .icon-moon {
  display: none;
}

[data-theme="dark"] .theme-toggle .icon-sun {
  display: block;
}

/* --- Hero --- */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  padding: calc(var(--nav-height) + 80px) 0 60px;
  overflow: hidden;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(46, 204, 113, 0.06) 0%, transparent 70%),
    radial-gradient(ellipse 50% 80% at 20% 80%, rgba(46, 204, 113, 0.03) 0%, transparent 60%);
  pointer-events: none;
}

.hero-content {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  width: 100%;
}

.hero-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-title {
  font-size: var(--title-size);
  letter-spacing: -0.03em;
  margin-bottom: 32px;
}

.hero-line {
  display: block;
}

.text-gradient {
  background: linear-gradient(135deg, var(--green), var(--green-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  color: var(--text-muted);
  max-width: 540px;
  margin-bottom: 56px;
  line-height: 1.6;
}

.hero-stats {
  display: flex;
  gap: clamp(32px, 5vw, 72px);
  margin-bottom: 56px;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 700;
  color: var(--green);
  letter-spacing: -0.02em;
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--green);
  color: var(--btn-text);
  padding: 16px 32px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 1rem;
  transition: transform 0.4s var(--ease-out), background 0.3s var(--ease), box-shadow 0.4s var(--ease-out);
}

.hero-cta:hover {
  background: var(--green-bright);
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 12px 40px rgba(46, 204, 113, 0.25);
}

.hero-cta svg {
  transition: transform 0.3s var(--ease);
}

.hero-cta:hover svg {
  transform: translate(3px, -3px);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  right: clamp(20px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--text-muted);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.4; transform: scaleY(0.6); }
}

/* --- Sections --- */
.section {
  padding: var(--section-padding) 0;
  position: relative;
}

.section-light {
  background: var(--bg-section-alt);
  color: var(--text-dark);
}

.section-light strong {
  color: var(--green-dark);
}

.section-green {
  background: var(--bg-dark);
  color: var(--text-light);
  border-top: 1px solid var(--border-dark);
}

.section-grid {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: var(--gap);
}

.section-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  padding-top: 8px;
  position: sticky;
  top: calc(var(--nav-height) + 24px);
  align-self: start;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: -0.03em;
  margin-bottom: var(--gap);
}

/* --- About --- */
.about-text p {
  margin-bottom: 20px;
  color: inherit;
  opacity: 0.85;
}

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

.about-details {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border-light);
}

.section-light .about-details {
  border-top-color: var(--border-light);
}

.detail {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 180px;
}

.detail-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green-dark);
  opacity: 0.7;
}

.detail-value {
  font-size: 0.95rem;
  font-weight: 500;
}

/* --- Track Record (Minimal) --- */
.story-intro {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  font-style: italic;
  opacity: 0.8;
}

.track-minimal {
  display: flex;
  flex-direction: column;
  position: relative;
  padding-left: 20px;
}

.track-minimal::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: linear-gradient(to bottom, var(--green), var(--border-dark));
}

.track-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-light);
  position: relative;
  transition: all 0.3s var(--ease);
  cursor: default;
}

.track-row:last-child {
  border-bottom: none;
}

.track-row:hover {
  padding-left: 8px;
}

.track-row:hover .track-name {
  color: var(--green);
}

.track-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--border-dark);
  border: 2px solid var(--border-dark);
  flex-shrink: 0;
  position: absolute;
  left: -24px;
  transition: all 0.3s var(--ease);
}

.track-row.current .track-dot {
  background: var(--green);
  border-color: var(--green);
  box-shadow: 0 0 8px rgba(46, 204, 113, 0.4);
}

.track-row:hover .track-dot {
  background: var(--green);
  border-color: var(--green);
}

.track-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}

.track-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: color 0.3s var(--ease);
}

.track-role {
  font-size: 0.82rem;
  color: var(--text-muted);
  opacity: 0.7;
}

.track-date {
  font-size: 0.78rem;
  color: var(--text-muted);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
}

/* Track row expand */
.track-row[data-expandable] {
  cursor: pointer;
  flex-wrap: wrap;
}

.track-expand {
  width: 100%;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), padding 0.3s var(--ease), opacity 0.3s var(--ease);
  opacity: 0;
  padding: 0 0 0 0;
}

.track-row.expanded .track-expand {
  max-height: 120px;
  opacity: 1;
  padding: 12px 0 4px;
}

.track-expand p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  padding-left: 0;
  border-left: 2px solid rgba(46, 204, 113, 0.2);
  padding-left: 14px;
}

.track-row.expanded {
  background: rgba(46, 204, 113, 0.03);
  border-radius: 8px;
  padding-left: 12px;
  margin: 0 -12px;
  padding-right: 12px;
}

.track-row.expanded .track-name {
  color: var(--green);
}

.track-name::after {
  content: ' +';
  font-size: 0.75rem;
  color: var(--text-muted);
  opacity: 0.4;
  font-weight: 400;
  transition: all 0.2s var(--ease);
}

.track-row.expanded .track-name::after {
  content: ' −';
  opacity: 0.7;
  color: var(--green);
}

.story-footnote {
  margin-top: 32px;
  font-size: 0.88rem;
  color: var(--text-muted);
  opacity: 0.6;
  padding-left: 20px;
  border-left: 1px solid var(--border-dark);
  line-height: 1.6;
}

/* --- Expertise --- */
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.expertise-card {
  padding: 32px 28px;
  border-radius: 12px;
  border: 1px solid var(--border-light);
  transition: border-color 0.4s var(--ease), transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.expertise-card:hover {
  border-color: var(--green-dark);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.06);
}

.expertise-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(46, 204, 113, 0.08);
  color: var(--green-dark);
  margin-bottom: 20px;
  transition: transform 0.5s var(--ease-out), background 0.3s var(--ease);
}

.expertise-card:hover .expertise-icon {
  transform: scale(1.15);
  background: rgba(46, 204, 113, 0.15);
}

.expertise-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.expertise-card p {
  font-size: 0.88rem;
  line-height: 1.6;
  opacity: 0.7;
}

/* --- Writing / Featured Articles --- */
.featured-articles {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-bottom: 32px;
}

.featured-article {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  width: 100%;
  border-bottom: 1px solid var(--border-dark);
  transition: all 0.3s var(--ease);
}

.featured-article:first-child {
  border-top: 1px solid var(--border-dark);
}

.featured-article:hover {
  padding-left: 12px;
}

.featured-article:hover .fa-title {
  color: var(--green);
}

.featured-article:hover svg {
  transform: translate(3px, -3px);
  color: var(--green);
}

.fa-date {
  font-size: 0.75rem;
  color: var(--text-muted);
  min-width: 100px;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
}

.fa-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  flex: 1;
  letter-spacing: -0.01em;
  transition: color 0.3s var(--ease);
}

.featured-article svg {
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform 0.3s var(--ease), color 0.3s var(--ease);
}

.view-all-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--green);
  margin-bottom: var(--gap);
  transition: gap 0.3s var(--ease);
}

.view-all-link:hover {
  gap: 16px;
}

.quote {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.15rem, 1.8vw, 1.5rem);
  line-height: 1.5;
  font-weight: 400;
  padding-left: 24px;
  border-left: 3px solid var(--green);
  opacity: 0.85;
  font-style: italic;
  margin-top: var(--gap);
}

/* --- Family / Personal --- */
.family-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
  align-items: center;
}

.family-text p {
  margin-bottom: 20px;
  opacity: 0.85;
}

.family-hashtag {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--green-dark);
  opacity: 1 !important;
}

.family-photo {
  border-radius: 16px;
  overflow: hidden;
}

.family-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  transition: transform 0.6s var(--ease-out);
}

.family-photo:hover img {
  transform: scale(1.03);
}

/* --- Contact --- */
.contact-content {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.contact-title {
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  letter-spacing: -0.04em;
  margin-bottom: 24px;
}

.contact-sub {
  font-size: 1.1rem;
  opacity: 0.8;
  margin-bottom: 40px;
  line-height: 1.65;
}

.contact-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: transform 0.3s var(--ease-out), background 0.3s var(--ease), box-shadow 0.3s var(--ease-out);
}

.btn-primary {
  background: var(--green);
  color: var(--btn-text);
}

.btn-primary:hover {
  background: var(--green-bright);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(46, 204, 113, 0.3);
}

.btn-secondary {
  background: var(--toggle-bg);
  color: var(--text-light);
  border: 1px solid var(--border-dark);
}

.btn-secondary:hover {
  background: var(--border-dark);
  transform: translateY(-2px);
}

.contact-booking {
  padding-top: 32px;
  border-top: 1px solid var(--border-dark);
}

.booking-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}

.btn-book {
  background: transparent;
  color: var(--text-light);
  border: 2px solid var(--green);
  padding: 16px 36px;
  font-size: 1rem;
}

.btn-book:hover {
  background: var(--green);
  color: var(--btn-text);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(46, 204, 113, 0.3);
}

/* --- Footer --- */
.footer {
  padding: 24px 0;
  border-top: 1px solid var(--border-dark);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-name {
  font-weight: 600;
  font-family: 'Space Grotesk', sans-serif;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  transition: color 0.3s var(--ease);
}

.footer-links a:hover {
  color: var(--green);
}

/* ============================================
   ANIMATIONS — Growth Theme
   ============================================ */

/* Reveal on scroll — elements grow upward */
.reveal-up {
  opacity: 0;
  transform: translateY(40px) scale(0.97);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

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

/* Stagger children */
.reveal-up:nth-child(2) { transition-delay: 0.08s; }
.reveal-up:nth-child(3) { transition-delay: 0.16s; }
.reveal-up:nth-child(4) { transition-delay: 0.24s; }
.reveal-up:nth-child(5) { transition-delay: 0.32s; }
.reveal-up:nth-child(6) { transition-delay: 0.40s; }

/* Growth line pulse on track timeline */
.track-minimal::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 8px;
  width: 1px;
  height: 0;
  background: var(--green);
  animation: growLine 2s var(--ease-out) 0.5s forwards;
  opacity: 0.5;
}

@keyframes growLine {
  to { height: 100%; }
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 991px) {
  .section-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .section-label {
    position: static;
  }

  .expertise-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .family-content {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    gap: 32px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: var(--mobile-nav-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    padding: 40px;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
  }

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

  .nav-link:last-child {
    margin-top: 16px;
    text-align: center;
  }
}

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

  .hero-stats {
    flex-direction: column;
    gap: 24px;
  }

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

  .contact-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .footer-inner {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .track-row {
    flex-wrap: wrap;
    gap: 4px 16px;
  }

  .track-date {
    width: 100%;
    padding-left: 0;
  }

  .contact-actions {
    flex-direction: column;
    align-items: center;
  }
}
