/* ============================================================================
   TUNAHAN ATASOY — Tasarım Sistemi (Public Tema)
   Mobil öncelikli · karanlık atletik-premium estetik
   ============================================================================ */

/* ----- Design tokens ----- */
:root {
  /* Renkler */
  --bg:          #0a0b0d;
  --bg-soft:     #0f1114;
  --surface:     #14171c;
  --surface-2:   #1b1f26;
  --surface-3:   #232830;
  --border:      #262b33;
  --border-soft: #1d222a;

  --text:        #f3f5f8;
  --text-dim:    #b6bcc6;
  --muted:       #7d848f;

  --accent:      #c6f833;   /* volt / lime */
  --accent-600:  #a9dc16;
  --accent-glow: rgba(198, 248, 51, .35);
  --accent-ink:  #0a0b0d;   /* accent üstü yazı */

  --heat:        #ff5b23;   /* sıcak turuncu, ikincil */
  --heat-glow:   rgba(255, 91, 35, .35);

  --ok:   #35d07f;
  --warn: #ffb020;
  --err:  #ff5468;

  /* Tipografi */
  --font-display: 'Oswald', 'Arial Narrow', sans-serif;
  --font-body:    'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  /* Ölçek */
  --radius:    16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --shadow:    0 20px 60px -20px rgba(0,0,0,.7);
  --shadow-sm: 0 8px 24px -12px rgba(0,0,0,.6);

  --container: 1180px;
  --nav-h: 68px;

  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ----- Reset ----- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
ul { list-style: none; padding: 0; }

::selection { background: var(--accent); color: var(--accent-ink); }

/* Scrollbar */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--surface-3); border-radius: 20px; }
::-webkit-scrollbar-thumb:hover { background: #333a44; }

/* ----- Tipografi ----- */
h1,h2,h3,h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.05; letter-spacing: .3px; }
.display {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  line-height: .95;
  letter-spacing: .5px;
}
.eyebrow {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--accent);
}
.text-dim { color: var(--text-dim); }
.text-muted { color: var(--muted); }
.accent { color: var(--accent); }

/* ----- Layout ----- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 20px; }
.section { padding-block: clamp(56px, 9vw, 120px); }
.section-tight { padding-block: clamp(40px, 6vw, 72px); }
.center { text-align: center; }
.stack > * + * { margin-top: 1rem; }

.section-head { max-width: 640px; margin-bottom: 44px; }
.section-head.center { margin-inline: auto; }
.section-title {
  font-size: clamp(1.9rem, 5.5vw, 3.1rem);
  text-transform: uppercase;
}
.section-title .hl { color: var(--accent); }
.section-sub { color: var(--text-dim); margin-top: 14px; font-size: 1.02rem; }

/* ----- Buttons ----- */
.btn {
  --bh: 52px;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  height: var(--bh); padding-inline: 26px;
  border: 1px solid transparent; border-radius: 999px;
  font-family: var(--font-display); font-weight: 600; font-size: 1rem;
  text-transform: uppercase; letter-spacing: .8px;
  cursor: pointer; white-space: nowrap;
  transition: transform .2s var(--ease), box-shadow .25s var(--ease), background .2s, border-color .2s, color .2s;
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn-primary {
  background: var(--accent); color: var(--accent-ink);
  box-shadow: 0 10px 30px -8px var(--accent-glow);
}
.btn-primary:hover { box-shadow: 0 16px 40px -8px var(--accent-glow); transform: translateY(-2px); }
.btn-heat {
  background: var(--heat); color: #fff;
  box-shadow: 0 10px 30px -8px var(--heat-glow);
}
.btn-heat:hover { transform: translateY(-2px); box-shadow: 0 16px 40px -8px var(--heat-glow); }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--border); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn-wa { background: #25d366; color: #052e16; }
.btn-wa:hover { transform: translateY(-2px); box-shadow: 0 14px 34px -10px rgba(37,211,102,.5); }
.btn-block { width: 100%; }
.btn-sm { --bh: 42px; font-size: .85rem; padding-inline: 18px; }
.btn-lg { --bh: 58px; font-size: 1.05rem; padding-inline: 34px; }

/* ----- Badges / chips ----- */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 12px; border-radius: 999px;
  font-size: .72rem; font-weight: 600; letter-spacing: .5px; text-transform: uppercase;
  border: 1px solid var(--border);
  background: var(--surface-2); color: var(--text-dim);
}
.badge-accent { background: var(--accent-glow); border-color: transparent; color: var(--accent); }
.badge-heat { background: var(--heat-glow); border-color: transparent; color: #ffb59c; }
.badge-ok { color: var(--ok); border-color: rgba(53,208,127,.3); background: rgba(53,208,127,.1); }
.badge-warn { color: var(--warn); border-color: rgba(255,176,32,.3); background: rgba(255,176,32,.1); }
.badge-dot::before { content:''; width:7px; height:7px; border-radius:50%; background: currentColor; }

/* ----- Cards ----- */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.card-hover { transition: transform .3s var(--ease), border-color .3s, box-shadow .3s; }
.card-hover:hover { transform: translateY(-4px); border-color: var(--surface-3); box-shadow: var(--shadow-sm); }

/* ============================================================================
   NAVBAR
   ============================================================================ */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: background .3s, border-color .3s, backdrop-filter .3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(10,11,13,.82);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom-color: var(--border-soft);
}
.nav .container { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.nav-logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.nav-logo img { height: 38px; width: auto; }
.nav-links { display: none; align-items: center; gap: 4px; }
.nav-links a {
  padding: 8px 14px; border-radius: 999px; font-size: .92rem; font-weight: 500; color: var(--text-dim);
  transition: color .2s, background .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); background: var(--surface-2); }
.nav-cta { display: none; align-items: center; gap: 10px; }

.nav-burger {
  display: inline-flex; flex-direction: column; gap: 5px; justify-content: center;
  width: 44px; height: 44px; border-radius: 12px; border: 1px solid var(--border);
  background: var(--surface-2); cursor: pointer;
}
.nav-burger span { width: 20px; height: 2px; background: var(--text); margin-inline: auto; transition: .3s var(--ease); }
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobil menü */
.mobile-menu {
  position: fixed; inset: var(--nav-h) 0 0 0; z-index: 90;
  background: rgba(8,9,11,.97); backdrop-filter: blur(10px);
  padding: 24px 20px; display: flex; flex-direction: column; gap: 6px;
  transform: translateX(100%); transition: transform .35s var(--ease);
  overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 4px; font-family: var(--font-display); font-size: 1.4rem; text-transform: uppercase;
  border-bottom: 1px solid var(--border-soft); color: var(--text);
}
.mobile-menu a:active { color: var(--accent); }
.mobile-menu .mm-cta { margin-top: 20px; display: grid; gap: 12px; }

/* ============================================================================
   HERO
   ============================================================================ */
.hero { position: relative; padding-top: calc(var(--nav-h) + 40px); overflow: hidden; }
.hero::before {
  content: ''; position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(80% 60% at 80% -10%, rgba(198,248,51,.10), transparent 60%),
    radial-gradient(60% 50% at 0% 10%, rgba(255,91,35,.08), transparent 55%);
}
.hero-grid {
  display: grid; gap: 40px; align-items: center;
  padding-block: clamp(30px, 6vw, 70px);
}
.hero h1 {
  font-size: clamp(2.6rem, 11vw, 5.2rem);
  text-transform: uppercase; font-weight: 700;
  letter-spacing: .5px;
}
.hero h1 .hl { color: var(--accent); }
.hero-lead { font-size: 1.1rem; color: var(--text-dim); max-width: 46ch; margin-top: 18px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero-stats { display: flex; gap: 28px; margin-top: 40px; flex-wrap: wrap; }
.hero-stat .n { font-family: var(--font-display); font-weight: 700; font-size: 2rem; color: var(--accent); line-height: 1; }
.hero-stat .l { font-size: .82rem; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; margin-top: 6px; }

.hero-media { position: relative; }
.hero-media img { border-radius: var(--radius-lg); border: 1px solid var(--border); width: 100%; object-fit: cover; aspect-ratio: 4/5; }
.hero-media .float-card {
  position: absolute; left: -6px; bottom: 18px;
  background: rgba(20,23,28,.85); backdrop-filter: blur(8px);
  border: 1px solid var(--border); border-radius: 14px; padding: 14px 18px;
  display: flex; align-items: center; gap: 12px; box-shadow: var(--shadow);
}
.hero-media .float-card .ic { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 10px; background: var(--accent); color: var(--accent-ink); font-size: 20px; }

/* ----- Marquee (koşu bandı) — kesintisiz sonsuz döngü ----- */
.marquee { border-block: 1px solid var(--border-soft); background: var(--bg-soft); overflow: hidden; padding-block: 16px; }
.marquee-track { display: flex; width: max-content; animation: marquee 30s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-group { display: flex; flex-shrink: 0; align-items: center; }
.marquee-group .mq {
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: 2px;
  color: var(--muted); font-size: 1.1rem; padding-inline: 26px; display: inline-flex; align-items: center; gap: 26px;
}
.marquee-group .mq::after { content: '✦'; color: var(--accent); font-size: .8rem; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ----- Dil değiştirici ----- */
.lang-switch { display: inline-flex; border: 1px solid var(--border); border-radius: 999px; overflow: hidden; }
.lang-switch a { padding: 6px 12px; font-size: .78rem; font-weight: 600; color: var(--muted); font-family: var(--font-display); letter-spacing: 1px; transition: .2s; }
.lang-switch a.active { background: var(--accent); color: var(--accent-ink); }
.lang-switch a:not(.active):hover { color: var(--text); background: var(--surface-2); }

/* ============================================================================
   GALERİ
   ============================================================================ */
.gallery-grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
.gallery-item {
  position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border);
  aspect-ratio: 3/4;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item figcaption {
  position: absolute; inset: auto 0 0 0; padding: 16px;
  background: linear-gradient(transparent, rgba(0,0,0,.85));
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: 1px; font-size: .9rem;
}

/* ----- Before/After ----- */
.ba-wrap { display: grid; gap: 16px; }
.ba-card { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; position: relative; }
.ba-card img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.ba-card .tag { position: absolute; top: 14px; left: 14px; }

/* ----- Before/After sürüklenebilir karşılaştırma ----- */
.ba-compare {
  position: relative; overflow: hidden; border: 1px solid var(--border);
  border-radius: var(--radius-lg); aspect-ratio: 3/2; max-width: 780px; margin-inline: auto;
  touch-action: none; user-select: none; -webkit-user-select: none; cursor: ew-resize;
  background: var(--surface-2);
}
.ba-compare img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; pointer-events: none; -webkit-user-drag: none; }
.ba-compare .ba-before { z-index: 2; clip-path: inset(0 50% 0 0); }
.ba-compare .ba-line { position: absolute; top: 0; bottom: 0; left: 50%; width: 3px; background: var(--accent); z-index: 3; transform: translateX(-50%); pointer-events: none; box-shadow: 0 0 12px var(--accent-glow); }
.ba-compare .ba-grip {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 4;
  width: 46px; height: 46px; border-radius: 50%; background: var(--accent); color: var(--accent-ink);
  display: grid; place-items: center; box-shadow: 0 6px 20px rgba(0,0,0,.5); pointer-events: none; font-size: 1.2rem;
}
.ba-compare .ba-tag { position: absolute; top: 14px; z-index: 3; }
.ba-compare .ba-tag.is-before { left: 14px; }
.ba-compare .ba-tag.is-after { right: 14px; }
.ba-hint { text-align: center; color: var(--muted); font-size: .85rem; margin-top: 14px; }

/* ============================================================================
   PAKETLER
   ============================================================================ */
.pkg-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
.pkg {
  position: relative; display: flex; flex-direction: column;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 30px 26px; transition: transform .3s var(--ease), border-color .3s, box-shadow .3s;
}
.pkg:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.pkg.featured { border-color: var(--accent); background: linear-gradient(180deg, rgba(198,248,51,.06), var(--surface)); }
.pkg-flag {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: var(--accent-ink); font-family: var(--font-display);
  text-transform: uppercase; letter-spacing: 1px; font-size: .72rem; font-weight: 700;
  padding: 6px 16px; border-radius: 999px;
}
.pkg-name { font-size: 1.5rem; text-transform: uppercase; }
.pkg-sub { color: var(--muted); font-size: .9rem; margin-top: 4px; }
.pkg-price { display: flex; align-items: baseline; gap: 6px; margin: 20px 0 6px; }
.pkg-price .amt { font-family: var(--font-display); font-weight: 700; font-size: 3rem; color: var(--text); line-height: 1; }
.pkg-price .per { color: var(--muted); font-size: .9rem; }
.pkg-feats { margin: 22px 0; display: grid; gap: 12px; }
.pkg-feats li { display: flex; gap: 10px; align-items: flex-start; color: var(--text-dim); font-size: .95rem; }
.pkg-feats li::before { content: '✓'; color: var(--accent); font-weight: 700; flex: none; }
.pkg .btn { margin-top: auto; }

/* ============================================================================
   BMI
   ============================================================================ */
.bmi-card { display: grid; gap: 26px; }
.bmi-form { display: grid; gap: 16px; }
.field { display: grid; gap: 8px; }
.field label { font-size: .85rem; color: var(--text-dim); font-weight: 500; }
.input, .select, .textarea {
  width: 100%; height: 52px; padding: 0 16px;
  background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--radius-sm);
  color: var(--text); transition: border-color .2s, box-shadow .2s;
}
.textarea { height: auto; padding: 14px 16px; min-height: 110px; resize: vertical; }
.input:focus, .select:focus, .textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-glow); }
.input-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.seg { display: flex; gap: 8px; }
.seg label { flex: 1; }
.seg input { position: absolute; opacity: 0; }
.seg span {
  display: flex; align-items: center; justify-content: center; height: 52px;
  border: 1px solid var(--border); border-radius: var(--radius-sm); cursor: pointer;
  color: var(--text-dim); font-weight: 500; transition: .2s;
}
.seg input:checked + span { background: var(--accent); color: var(--accent-ink); border-color: var(--accent); font-weight: 600; }

.bmi-result { text-align: center; padding: 26px; border-radius: var(--radius); background: var(--surface-2); border: 1px solid var(--border); }
.bmi-value { font-family: var(--font-display); font-weight: 700; font-size: 3.4rem; line-height: 1; }
.bmi-cat { margin-top: 8px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.bmi-scale { display: flex; height: 10px; border-radius: 999px; overflow: hidden; margin-top: 20px; }
.bmi-scale i { flex: 1; }

.bmi-table { width: 100%; border-collapse: collapse; margin-top: 8px; }
.bmi-table td { padding: 12px 8px; border-bottom: 1px solid var(--border-soft); font-size: .92rem; }
.bmi-table td:last-child { text-align: right; color: var(--text-dim); }

/* ============================================================================
   ARTICLES
   ============================================================================ */
.article-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
.article-card { overflow: hidden; display: flex; flex-direction: column; }
.article-card .thumb { aspect-ratio: 16/9; background: var(--surface-2); overflow: hidden; }
.article-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--ease); }
.article-card:hover .thumb img { transform: scale(1.05); }
.article-card .body { padding: 20px; }
.article-card h3 { font-size: 1.25rem; margin-bottom: 8px; }
.article-card p { color: var(--text-dim); font-size: .92rem; }
.article-meta { color: var(--muted); font-size: .8rem; margin-top: 14px; }

/* ============================================================================
   CTA şeridi
   ============================================================================ */
.cta-band {
  position: relative; overflow: hidden;
  background: linear-gradient(120deg, var(--surface-2), var(--surface));
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: clamp(32px, 6vw, 60px); text-align: center;
}
.cta-band::before { content:''; position:absolute; inset:0; z-index:0; background: radial-gradient(60% 120% at 50% 0%, var(--accent-glow), transparent 60%); opacity:.5; }
.cta-band > * { position: relative; z-index: 1; }

/* ============================================================================
   FOOTER
   ============================================================================ */
.footer { border-top: 1px solid var(--border); background: var(--bg-soft); padding-block: 44px 26px; margin-top: 40px; }
/* Mobil: marka tam genişlik, link grupları 2 sütun (kompakt) */
.footer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px 20px; }
.footer-brand { grid-column: 1 / -1; }
.footer h4 { text-transform: uppercase; font-size: 1rem; letter-spacing: 1px; margin-bottom: 16px; color: var(--text); }
.footer a { color: var(--text-dim); font-size: .93rem; display: inline-block; padding: 4px 0; transition: color .2s; }
.footer a:hover { color: var(--accent); }
.footer-brand p { color: var(--muted); font-size: .92rem; margin-top: 14px; max-width: 34ch; }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid var(--border); border-radius: 12px; background: var(--surface-2); }
.footer-social a:hover { border-color: var(--accent); color: var(--accent); }
.footer-bottom { border-top: 1px solid var(--border-soft); margin-top: 36px; padding-top: 20px; display: flex; flex-direction: column; gap: 10px; align-items: center; text-align: center; color: var(--muted); font-size: .85rem; }

/* ============================================================================
   STICKY WHATSAPP
   ============================================================================ */
.wa-float {
  position: fixed; right: 18px; bottom: 18px; z-index: 80;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25d366; color: #fff; display: grid; place-items: center;
  box-shadow: 0 12px 30px -6px rgba(37,211,102,.6);
  animation: wa-pulse 2.4s infinite;
}
.wa-float svg { width: 30px; height: 30px; }
@keyframes wa-pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,.5), 0 12px 30px -6px rgba(37,211,102,.6); }
  70% { box-shadow: 0 0 0 16px rgba(37,211,102,0), 0 12px 30px -6px rgba(37,211,102,.6); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0), 0 12px 30px -6px rgba(37,211,102,.6); }
}

/* ----- Flash mesajları ----- */
.flash { position: fixed; top: calc(var(--nav-h) + 12px); left: 50%; transform: translateX(-50%); z-index: 200; max-width: 92%; }
.flash-msg { padding: 14px 20px; border-radius: 12px; margin-bottom: 10px; box-shadow: var(--shadow); font-size: .92rem; font-weight: 500; border: 1px solid; animation: flash-in .4s var(--ease); }
.flash-error { background: rgba(255,84,104,.14); border-color: rgba(255,84,104,.4); color: #ffb3bc; }
.flash-success { background: rgba(53,208,127,.14); border-color: rgba(53,208,127,.4); color: #9ff0c4; }
@keyframes flash-in { from { opacity: 0; transform: translate(-50%, -12px); } }

/* ----- Reveal animasyonu ----- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================================
   RESPONSIVE
   ============================================================================ */
@media (min-width: 560px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .ba-wrap { grid-template-columns: 1fr 1fr; }
  .article-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 860px) {
  .hero-grid { grid-template-columns: 1.1fr .9fr; }
  .pkg-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-item.tall { grid-row: span 2; aspect-ratio: auto; }
  .bmi-card { grid-template-columns: 1.1fr .9fr; align-items: start; }
  .article-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.4fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}
@media (min-width: 1000px) {
  .nav-links { display: flex; }
  .nav-cta { display: flex; }
  .nav-burger { display: none; }
  .mobile-menu { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
