/* ==========================================================
   Fabio Jakobsen — tribute site
   Colors: yellow / black / white (Visma | Lease a Bike palette)
   ========================================================== */

:root{
  --yellow: #f5d800;
  --yellow-deep: #e0c400;
  --black: #0a0a0a;
  --near-black: #131313;
  --charcoal: #1c1c1c;
  --white: #ffffff;
  --off-white: #f7f6f2;
  --grey: #6b6b6b;
  --line: rgba(255,255,255,0.12);
  --line-dark: rgba(0,0,0,0.1);
  --radius: 16px;
  --maxw: 1240px;
  --ff-display: "Archivo Black", "Inter", sans-serif;
  --ff-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*,*::before,*::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  font-family: var(--ff-body);
  background: var(--off-white);
  color: var(--black);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
h1,h2,h3{ font-family: var(--ff-display); line-height:1.05; margin:0; letter-spacing:-0.01em; }
p{ margin:0; }
ul{ margin:0; padding:0; list-style:none; }
section{ position:relative; }

.eyebrow{
  display:inline-block;
  font-size:0.78rem;
  font-weight:800;
  letter-spacing:0.14em;
  text-transform:uppercase;
  color: var(--yellow);
  margin-bottom:14px;
}
.eyebrow-dark{ color: var(--black); }

/* ---------- buttons ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  font-weight:700;
  font-size:0.95rem;
  padding:15px 28px;
  border-radius:999px;
  border:2px solid transparent;
  cursor:pointer;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space:nowrap;
}
.btn:hover{ transform: translateY(-2px); }
.btn-primary{ background: var(--yellow); color: var(--black); }
.btn-primary:hover{ background: var(--white); }
.btn-ghost{ background: transparent; color: var(--white); border-color: rgba(255,255,255,0.4); }
.btn-ghost:hover{ border-color: var(--white); }
.btn-pill{ background: var(--black); color: var(--white); padding:11px 22px; font-size:0.85rem; }
.btn-pill:hover{ background: var(--yellow); color: var(--black); }
.btn-small{ padding:9px 18px; font-size:0.8rem; }
.btn-full{ width:100%; margin-top:6px; }
.play-dot{
  display:inline-flex; align-items:center; justify-content:center;
  width:22px; height:22px; border-radius:50%; background: var(--black); color: var(--yellow);
}

/* ---------- header ---------- */
.site-header{
  position:fixed; top:0; left:0; right:0; z-index:100;
  padding: 18px 0;
  transition: background .3s ease, padding .3s ease, box-shadow .3s ease;
}
.site-header.scrolled{
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(10px);
  padding: 12px 0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.25);
}
.nav-inner{
  max-width: var(--maxw); margin:0 auto; padding:0 28px;
  display:flex; align-items:center; justify-content:space-between; gap:24px;
}
.logo{
  font-family: var(--ff-display);
  font-size:1.05rem;
  color: var(--white);
  letter-spacing:0.02em;
}
.logo span{ color: var(--yellow); margin-left:6px; }
.main-nav{ display:flex; gap:34px; }
.main-nav a{
  color: rgba(255,255,255,0.85);
  font-size:0.9rem; font-weight:600;
  position:relative;
  padding:4px 0;
}
.main-nav a::after{
  content:""; position:absolute; left:0; bottom:-2px; width:0; height:2px; background: var(--yellow);
  transition: width .25s ease;
}
.main-nav a:hover::after{ width:100%; }
.main-nav a:hover{ color:var(--white); }
.nav-actions{ display:flex; align-items:center; gap:14px; }
.icon-btn{
  width:38px; height:38px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  color: var(--white); border:1px solid rgba(255,255,255,0.25);
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.icon-btn:hover{ background: var(--yellow); color: var(--black); border-color: var(--yellow); }
.burger{
  display:none; flex-direction:column; justify-content:center; gap:5px;
  width:38px; height:38px; background:none; border:none; cursor:pointer; padding:8px; z-index:200; position:relative;
}
.burger span{ width:22px; height:2px; background:var(--white); border-radius:2px; transition: transform .3s ease, opacity .3s ease; }
.burger.open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2){ opacity:0; }
.burger.open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

/* ---------- fullscreen mobile menu ---------- */
@media (max-width: 980px){
  .main-nav{
    display:flex; flex-direction:column; align-items:center; justify-content:center;
    gap:36px;
    position:fixed; inset:0; top:0; height:100dvh; width:100%;
    background: var(--black);
    opacity:0; visibility:hidden; pointer-events:none;
    transition: opacity .35s ease;
    z-index:150;
  }
  .main-nav.open{ opacity:1; visibility:visible; pointer-events:auto; }
  .main-nav a{
    font-family: var(--ff-display);
    font-size: 2.4rem;
    text-transform: uppercase;
    color: var(--white);
    text-align:center;
  }
  .main-nav a:hover{ color: var(--yellow); }
  .main-nav a::after{ display:none; }
  body.nav-open{ overflow:hidden; }
}

/* ---------- hero ---------- */
.hero{
  position:relative;
  min-height:100vh;
  display:flex; flex-direction:column; justify-content:flex-end;
  color:var(--white);
  overflow:hidden;
  padding-top:110px;
}
.hero-bg{ position:absolute; inset:0; z-index:0; }
.hero-bg img{ width:100%; height:100%; object-fit:cover; object-position: 60% 30%; }
.hero-overlay{
  position:absolute; inset:0;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.25) 30%, rgba(10,10,10,0.55) 70%, rgba(10,10,10,0.94) 100%);
}
.hero-hex{
  position:absolute; inset:0;
  background-image: var(--hex-pattern);
  background-size: 90px 104px;
  opacity:0.16;
  mix-blend-mode: overlay;
}
.hero-content{
  position:relative; z-index:2;
  max-width: var(--maxw); width:100%;
  margin: 0 auto; padding: 60px 28px 40px;
}
.hero-title{
  font-size: clamp(3.2rem, 9vw, 7.5rem);
  text-transform:uppercase;
}
.hero-title em{ font-style:normal; color: var(--yellow); }
.hero-sub{
  max-width:560px; margin-top:22px;
  font-size:1.05rem; line-height:1.6; color: rgba(255,255,255,0.85);
}
.hero-actions{ display:flex; gap:16px; flex-wrap:wrap; margin-top:34px; }

.hero-stats{
  position:relative; z-index:2;
  max-width: var(--maxw); margin: 0 auto; width:100%;
  padding: 26px 28px;
  display:grid; grid-template-columns:repeat(4,1fr);
  border-top:1px solid rgba(255,255,255,0.18);
}
.hero-stat{ display:flex; flex-direction:column; gap:4px; }
.hero-stat strong{ font-family:var(--ff-display); font-size:1.6rem; color:var(--yellow); }
.hero-stat span{ font-size:0.78rem; color:rgba(255,255,255,0.7); text-transform:uppercase; letter-spacing:0.06em; }

.scroll-cue{
  position:absolute; bottom:14px; left:50%; transform:translateX(-50%);
  width:26px; height:42px; border:2px solid rgba(255,255,255,0.5); border-radius:20px;
  z-index:2; display:none;
}
.scroll-cue span{
  position:absolute; top:8px; left:50%; transform:translateX(-50%);
  width:4px; height:8px; border-radius:2px; background:var(--yellow);
  animation: cue 1.6s infinite;
}
@keyframes cue{ 0%{ opacity:1; top:8px;} 70%{opacity:0; top:22px;} 100%{opacity:0; top:8px;} }

/* ---------- ticker ---------- */
.ticker{
  background: var(--black);
  color: var(--yellow);
  padding: 18px 0;
  overflow:hidden;
  border-top:1px solid var(--yellow);
  border-bottom:1px solid var(--yellow);
}
.ticker-track{ display:flex; width:max-content; animation: scroll-left 38s linear infinite; }
.ticker-group{ display:flex; align-items:center; }
.ticker-group span{
  display:inline-flex; align-items:center;
  font-family: var(--ff-display);
  font-size:1.15rem;
  text-transform:uppercase;
  letter-spacing:0.02em;
  padding:0 34px;
  white-space:nowrap;
}
.ticker-group span:not(:last-child){ border-right:2px solid rgba(245,216,0,0.35); }
.ticker:hover .ticker-track{ animation-play-state: paused; }
@keyframes scroll-left{ from{ transform:translateX(0);} to{ transform:translateX(-50%);} }

/* ---------- meet fabio ---------- */
.meet{
  position:relative;
  background: var(--black);
  color: var(--white);
  padding: 100px 0 0;
  overflow:hidden;
}
.meet-bg{ position:absolute; inset:0; z-index:0; background: var(--black); }
.meet-glow{
  position:absolute; border-radius:50%;
  filter: blur(90px);
  opacity:0.55;
}
.meet-glow-a{
  width:640px; height:640px; background: radial-gradient(circle, var(--yellow) 0%, transparent 70%);
  top:-160px; left:-120px;
  animation: glow-drift-a 16s ease-in-out infinite alternate;
}
.meet-glow-b{
  width:520px; height:520px; background: radial-gradient(circle, rgba(245,216,0,0.7) 0%, transparent 70%);
  bottom:-180px; right:-100px;
  animation: glow-drift-b 18s ease-in-out infinite alternate;
}
@keyframes glow-drift-a{ from{ transform: translate(0,0) scale(1);} to{ transform: translate(80px,60px) scale(1.15);} }
@keyframes glow-drift-b{ from{ transform: translate(0,0) scale(1);} to{ transform: translate(-70px,-50px) scale(1.1);} }
.meet-beam{
  position:absolute; inset:-20% -10%;
  background: linear-gradient(100deg, transparent 40%, rgba(245,216,0,0.16) 50%, transparent 60%);
  background-size: 250% 250%;
  animation: beam-sweep 9s linear infinite;
}
@keyframes beam-sweep{ from{ background-position:130% 0%;} to{ background-position:-30% 0%;} }
.meet-hex{
  position:absolute; inset:0;
  background-image: var(--hex-pattern);
  background-size: 70px 80px;
  opacity:0.14;
  animation: hex-pan 40s linear infinite;
}
@keyframes hex-pan{ from{ background-position:0 0;} to{ background-position:280px 320px;} }
.meet-inner{
  position:relative; z-index:1;
  max-width: var(--maxw); margin:0 auto; padding: 0 28px;
  display:grid; grid-template-columns: 0.9fr 1.1fr;
  align-items:end;
  gap: 20px;
}
.meet-figure{ display:flex; justify-content:center; align-self:end; }
.meet-figure img{ max-height:82vh; width:auto; filter: drop-shadow(0 30px 50px rgba(0,0,0,0.6)); }
.meet-content{ padding-bottom:90px; }
.meet-content h2{ font-size: clamp(2.2rem, 4.2vw, 3.4rem); color:var(--white); text-transform:uppercase; }
.meet-text{ margin-top:20px; max-width:480px; color: rgba(255,255,255,0.75); line-height:1.7; font-size:1.02rem; }
.meet-stats{ margin-top:38px; display:grid; grid-template-columns:repeat(4,1fr); gap:18px; max-width:520px; }
.meet-stat{ display:flex; flex-direction:column; gap:4px; }
.meet-stat strong{ font-family:var(--ff-display); font-size:2rem; color:var(--yellow); }
.meet-stat span{ font-size:0.75rem; color:rgba(255,255,255,0.6); text-transform:uppercase; letter-spacing:0.04em; }

/* ---------- section head ---------- */
.section-head{ max-width: var(--maxw); margin:0 auto; padding: 100px 28px 50px; }
.section-head h2{ font-size: clamp(2rem, 4vw, 3rem); text-transform:uppercase; }
.section-sub{ margin-top:14px; color: var(--grey); font-size:1rem; max-width:560px; }
.section-sub a{ color: var(--black); text-decoration:underline; text-underline-offset:3px; }
.section-head.light h2{ color: var(--white); }
.section-head.light .section-sub{ color: rgba(255,255,255,0.65); }

/* ---------- about ---------- */
.about{ background: var(--off-white); padding-bottom: 60px; }
.about-row{
  max-width: var(--maxw); margin:0 auto 70px; padding: 0 28px;
  display:grid; grid-template-columns: 0.85fr 1.15fr; gap:60px; align-items:center;
}
.about-row.reverse{ grid-template-columns: 1.15fr 0.85fr; }
.about-media{ border-radius: var(--radius); overflow:hidden; aspect-ratio: 4/5; }
.about-media img{ width:100%; height:100%; object-fit:cover; }
.about-text h3{ font-size:1.5rem; text-transform:uppercase; margin-bottom:16px; }
.about-text p{ color:#3a3a3a; line-height:1.75; font-size:1.02rem; }

.quick-facts{
  max-width: var(--maxw); margin: 20px auto 0; padding: 0 28px;
  display:grid; grid-template-columns: repeat(4, 1fr);
  gap:1px; background: var(--line-dark);
  border-radius: var(--radius); overflow:hidden;
}
.fact{ background: var(--white); padding: 22px 20px; display:flex; flex-direction:column; gap:6px; }
.fact-label{ font-size:0.72rem; text-transform:uppercase; letter-spacing:0.06em; color:var(--grey); }
.fact-value{ font-weight:800; font-size:1.05rem; }

/* ---------- career timeline ---------- */
.timeline{ background: var(--white); padding: 20px 0 110px; }
.timeline-track{
  position:relative;
  max-width: 760px; margin: 40px auto 0; padding: 4px 28px 4px 108px;
}
.timeline-line{
  position:absolute; left:64px; top:6px; bottom:6px; width:3px;
  background: var(--line-dark); border-radius:2px; overflow:hidden;
}
.timeline-line-fill{
  position:absolute; top:0; left:0; width:100%; height:0%;
  background: linear-gradient(180deg, var(--yellow), var(--yellow-deep));
  transition: height 1.8s cubic-bezier(.16,.84,.44,1);
}
.timeline-track.in .timeline-line-fill{ height:100%; }
.timeline-item{ position:relative; padding-bottom:52px; }
.timeline-item:last-child{ padding-bottom:0; }
.timeline-dot{
  position:absolute; left:-56px; top:4px;
  width:20px; height:20px; border-radius:50%;
  background: var(--black); border:3px solid var(--yellow);
  box-shadow: 0 0 0 4px var(--white);
}
.timeline-year{
  display:inline-block; background: var(--black); color: var(--yellow);
  font-family: var(--ff-display); font-size:0.8rem; letter-spacing:0.02em;
  padding:5px 14px; border-radius:20px; margin-bottom:12px;
}
.timeline-content h3{ font-size:1.3rem; text-transform:uppercase; margin-bottom:8px; }
.timeline-content p{ color:#3a3a3a; line-height:1.65; font-size:0.98rem; max-width:480px; }
.timeline-item.reveal:nth-child(2){ transition-delay: .1s; }
.timeline-item.reveal:nth-child(3){ transition-delay: .2s; }
.timeline-item.reveal:nth-child(4){ transition-delay: .3s; }
.timeline-item.reveal:nth-child(5){ transition-delay: .4s; }
.timeline-item.reveal:nth-child(6){ transition-delay: .5s; }

/* ---------- highlights ---------- */
.highlights{ background: var(--black); padding-bottom: 100px; }
.highlight-grid{
  max-width: var(--maxw); margin: 0 auto; padding: 0 28px;
  display:grid; grid-template-columns: repeat(3, 1fr); gap:22px;
}
.highlight-card{
  background: var(--near-black);
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  color: var(--white);
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.highlight-card:hover{ transform: translateY(-6px); border-color: var(--yellow); background: var(--charcoal); }
.card-big{ grid-column: span 1; background: linear-gradient(145deg, var(--yellow), var(--yellow-deep)); color: var(--black); border:none; }
.card-big:hover{ border-color:transparent; }
.hl-icon{ font-size:2rem; display:block; margin-bottom:14px; }
.hl-year{ display:inline-block; font-size:0.75rem; font-weight:800; letter-spacing:0.08em; text-transform:uppercase; opacity:0.65; margin-bottom:10px; }
.highlight-card h3{ font-size:1.25rem; text-transform:uppercase; margin-bottom:10px; }
.card-big h3{ font-size:1.6rem; }
.highlight-card p{ line-height:1.6; font-size:0.95rem; opacity:0.85; }

/* ---------- palmares table ---------- */
.victories{ background: var(--off-white); padding-bottom:110px; }
.palmares-table-wrap{
  max-width: var(--maxw); margin: 0 auto; padding: 0 28px;
  overflow-x:auto;
}
.palmares-table{ width:100%; border-collapse: collapse; min-width:480px; }
.palmares-table th{
  text-align:left; font-size:0.78rem; text-transform:uppercase; letter-spacing:0.06em;
  color:var(--grey); padding: 12px 16px; border-bottom:2px solid var(--black);
}
.palmares-table td{ padding: 14px 16px; border-bottom:1px solid var(--line-dark); font-size:0.98rem; }
.palmares-table tr td:first-child{ font-weight:800; color: var(--black); width:90px; }
.palmares-table tbody tr:hover{ background: rgba(245,216,0,0.18); }

/* ---------- contact ---------- */
.contact{ background: var(--black); color:var(--white); padding: 100px 0 90px; }
.contact-inner{
  max-width: var(--maxw); margin:0 auto; padding: 0 28px;
  display:grid; grid-template-columns: 0.85fr 1.15fr; gap:70px;
}
.contact-info h2{ font-size: clamp(2.2rem, 4vw, 3.2rem); text-transform:uppercase; color:var(--white); margin-bottom:16px; }
.contact-lead{ color: rgba(255,255,255,0.7); line-height:1.7; max-width:420px; margin-bottom:30px; }
.contact-line{
  display:flex; align-items:center; gap:12px;
  font-weight:700; font-size:1.05rem;
  padding:14px 0; border-bottom:1px solid var(--line);
  transition: color .2s ease;
}
.contact-line:hover{ color: var(--yellow); }
.follow-card{
  margin-top: 34px; display:flex; align-items:center; gap:14px;
  background: var(--near-black); border:1px solid var(--line);
  border-radius: var(--radius); padding:16px 18px;
}
.follow-card img{ width:52px; height:52px; border-radius:50%; object-fit:cover; border:2px solid var(--yellow); }
.follow-card div{ display:flex; flex-direction:column; gap:2px; flex:1; }
.follow-card strong{ font-size:0.95rem; }
.follow-card span{ font-size:0.82rem; color:rgba(255,255,255,0.6); }

.contact-form{
  background: var(--white); color: var(--black);
  border-radius: var(--radius); padding: 40px;
  display:flex; flex-direction:column; gap:18px;
}
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.contact-form label{ display:flex; flex-direction:column; gap:8px; font-size:0.85rem; font-weight:700; }
.contact-form input, .contact-form textarea{
  font-family: var(--ff-body);
  border:1.5px solid #ddd9cc; border-radius:10px; padding:13px 14px;
  font-size:0.98rem; background: var(--off-white); color:var(--black);
  transition: border-color .2s ease, background .2s ease;
  resize: vertical;
}
.contact-form input:focus, .contact-form textarea:focus{
  outline:none; border-color: var(--yellow-deep); background:var(--white);
}
.form-note{ font-size:0.82rem; color: var(--grey); text-align:center; }

/* ---------- footer ---------- */
.site-footer{ background: var(--black); border-top:1px solid var(--line); color: var(--white); }
.footer-cta{
  text-align:center;
  max-width: var(--maxw); margin:0 auto; padding: 90px 28px 70px;
  border-bottom:1px solid var(--line);
}
.footer-cta h2{
  font-size: clamp(2rem, 4.5vw, 3.4rem); text-transform:uppercase; color:var(--white); margin-bottom:34px;
}
.footer-cta-buttons{ display:flex; justify-content:center; flex-wrap:wrap; gap:16px; }
.footer-inner{
  max-width: var(--maxw); margin:0 auto; padding: 34px 28px;
  display:flex; align-items:center; justify-content:space-between; gap:20px; flex-wrap:wrap;
}
.footer-nav{ display:flex; gap:28px; flex-wrap:wrap; }
.footer-nav a{ font-size:0.88rem; color:rgba(255,255,255,0.75); }
.footer-nav a:hover{ color:var(--yellow); }
.footer-bottom{
  border-top:1px solid var(--line);
  padding: 18px 28px; max-width:var(--maxw); margin:0 auto;
  display:flex; justify-content:space-between; gap:12px; flex-wrap:wrap;
  font-size:0.78rem; color: rgba(255,255,255,0.5);
}

/* ---------- reveal on scroll ---------- */
.reveal{ opacity:0; transform: translateY(28px); transition: opacity .8s cubic-bezier(.16,.84,.44,1), transform .8s cubic-bezier(.16,.84,.44,1); }
.reveal.in{ opacity:1; transform:none; }
.about-row .reveal{ transition-delay: .05s; }
.meet-figure.reveal{ transform: translateY(0) scale(0.92); }
.meet-figure.reveal.in{ transform: scale(1); }

/* staggered reveal groups */
.highlight-grid .reveal:nth-child(1){ transition-delay: 0s; }
.highlight-grid .reveal:nth-child(2){ transition-delay: .08s; }
.highlight-grid .reveal:nth-child(3){ transition-delay: .16s; }
.highlight-grid .reveal:nth-child(4){ transition-delay: .24s; }
.highlight-grid .reveal:nth-child(5){ transition-delay: .32s; }
.highlight-grid .reveal:nth-child(6){ transition-delay: .4s; }
.footer-cta-buttons .btn:nth-child(1){ transition-delay: 0s; }
.footer-cta-buttons .btn:nth-child(2){ transition-delay: .08s; }
.footer-cta-buttons .btn:nth-child(3){ transition-delay: .16s; }

/* ---------- hex pattern (inline svg data-uri) ---------- */
:root{
  --hex-pattern: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='90' height='104' viewBox='0 0 90 104'%3E%3Cpolygon points='45,0 90,26 90,78 45,104 0,78 0,26' fill='none' stroke='%23ffffff' stroke-width='1.2'/%3E%3C/svg%3E");
  --hex-pattern-dark: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='70' height='80' viewBox='0 0 70 80'%3E%3Cpolygon points='35,0 70,20 70,60 35,80 0,60 0,20' fill='none' stroke='%230a0a0a' stroke-width='1.1'/%3E%3C/svg%3E");
}

/* ================= RESPONSIVE ================= */
@media (max-width: 980px){
  .nav-actions .btn-pill{ display:none; }
  .burger{ display:flex; }
  .hero-stats{ grid-template-columns:repeat(2,1fr); row-gap:20px; }
  .meet{ padding-top:70px; }
  .meet-inner{ grid-template-columns:1fr; text-align:center; padding-top:20px; }
  .meet-figure{ order:1; justify-content:center; }
  .meet-content{ order:2; padding-bottom:60px; }
  .meet-text{ margin-left:auto; margin-right:auto; }
  .meet-stats{ margin-left:auto; margin-right:auto; grid-template-columns:repeat(2,1fr); justify-items:center; }
  .about-row, .about-row.reverse{ grid-template-columns:1fr; }
  .about-media{ aspect-ratio:16/10; }
  .quick-facts{ grid-template-columns:repeat(2,1fr); }
  .highlight-grid{ grid-template-columns:repeat(2,1fr); }
  .contact-inner{ grid-template-columns:1fr; gap:50px; }
}
@media (max-width: 600px){
  .hero-stats{ grid-template-columns:repeat(2,1fr); }
  .highlight-grid{ grid-template-columns:1fr; }
  .timeline-track{ padding: 4px 20px 4px 60px; }
  .timeline-line{ left:16px; }
  .timeline-dot{ left:-44px; width:16px; height:16px; }
  .timeline-content h3{ font-size:1.1rem; }
  .quick-facts{ grid-template-columns:1fr 1fr; }
  .form-row{ grid-template-columns:1fr; }
  .contact-form{ padding:26px; }
  .footer-bottom{ flex-direction:column; }
  .footer-cta{ padding: 60px 24px 50px; }
  .footer-cta-buttons{ flex-direction:column; align-items:stretch; }
  .meet-figure img{ max-height:60vh; }
}

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  .ticker-track, .meet-glow, .meet-beam, .meet-hex, .scroll-cue span{ animation: none !important; }
  .reveal{ transition-duration: .01ms !important; }
}
