/* =========================================================
   America's Ad Agency — Media Made Rite
   Bold patriotic aesthetic | Anton + Oswald + Cormorant + DM Sans
   ========================================================= */

:root {
  --navy:       #0A1628;
  --navy-deep:  #050B14;
  --navy-soft:  #142440;
  --red:        #C8102E;      /* Old Glory Red */
  --red-bright: #E11D2E;
  --white:      #FFFFFF;
  --cream:      #F5F1E8;
  --gold:       #C9A227;
  --gray:       #6B7280;
  --gray-soft:  #94A3B8;
  --line:       rgba(255,255,255,0.12);

  --f-display: 'Anton', 'Impact', sans-serif;
  --f-sub:     'Oswald', 'Arial Narrow', sans-serif;
  --f-italic:  'Cormorant Garamond', Georgia, serif;
  --f-body:    'DM Sans', system-ui, sans-serif;

  --maxw: 1240px;
  --pad:  clamp(20px, 4vw, 56px);
}

*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--navy-deep);
  color: var(--cream);
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  position: relative;
}

/* Full-page Atlanta skyline background (fixed) */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: url('assets/atlanta.jpg') center center / cover no-repeat;
  z-index: -10;
}
/* Dark gradient overlay on top of skyline for readability everywhere */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5,11,20,0.35) 0%, rgba(5,11,20,0.50) 100%),
    radial-gradient(ellipse at 20% 30%, rgba(200,16,46,0.10) 0%, transparent 55%);
  z-index: -9;
  pointer-events: none;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad); }
.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--red); color: var(--white); padding: 12px 18px; z-index: 200;
}
.skip-link:focus { left: 12px; top: 12px; }

/* =========================
   NAV
   ========================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .3s ease, backdrop-filter .3s ease, border-color .3s ease;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(5,11,20,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--line);
}
.nav__inner {
  max-width: var(--maxw); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px var(--pad);
}
.nav__brand { display: flex; align-items: center; gap: 16px; }
.nav__brand img.nav__logo {
  width: 72px; height: 72px;
  border-radius: 50%;
  box-shadow: 0 0 24px rgba(200,16,46,0.45), 0 6px 18px rgba(0,0,0,0.55);
  transition: transform .3s ease, box-shadow .3s ease;
}
.nav__brand:hover img.nav__logo {
  transform: scale(1.05);
  box-shadow: 0 0 32px rgba(200,16,46,0.65), 0 8px 22px rgba(0,0,0,0.6);
}
.nav__brand-text { display: flex; flex-direction: column; line-height: 1; }
.nav__brand-line1 {
  font-family: var(--f-italic); font-style: italic;
  font-size: 13px; color: var(--red-bright); letter-spacing: .06em;
  margin-bottom: 4px;
}
.nav__brand-line2 {
  font-family: var(--f-display);
  font-size: 22px; letter-spacing: .04em; color: var(--white);
  text-transform: uppercase;
}
@media (max-width: 600px) {
  .nav__brand img.nav__logo { width: 56px; height: 56px; }
  .nav__brand-line2 { font-size: 18px; }
}
.nav__menu { display: flex; align-items: center; gap: 32px; }
.nav__menu a {
  font-family: var(--f-sub); font-size: 14px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--cream); position: relative;
  transition: color .2s;
}
.nav__menu a:hover { color: var(--red-bright); }
.nav__menu a.nav__cta {
  background: var(--red); color: var(--white);
  padding: 10px 18px; border: 2px solid var(--red);
  transition: background .2s, color .2s;
}
.nav__menu a.nav__cta:hover { background: transparent; color: var(--red-bright); }

.nav__toggle {
  display: none; background: transparent; border: 0; cursor: pointer;
  width: 36px; height: 36px; padding: 0;
}
.nav__toggle span {
  display: block; width: 26px; height: 2px; background: var(--white);
  margin: 6px auto; transition: transform .3s, opacity .3s;
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.nav__mobile {
  background: var(--navy-deep);
  border-top: 1px solid var(--line);
  padding: 18px var(--pad) 24px;
  flex-direction: column;
  gap: 18px;
}
.nav__mobile[hidden] { display: none; }
.nav__mobile:not([hidden]) { display: flex; }
.nav__mobile a {
  font-family: var(--f-sub); text-transform: uppercase; letter-spacing: .12em;
  font-size: 15px; color: var(--cream);
}
.nav__mobile a.nav__cta {
  background: var(--red); color: var(--white);
  padding: 12px 16px; text-align: center;
}

@media (max-width: 860px) {
  .nav__menu { display: none; }
  .nav__toggle { display: block; }
}
@media (min-width: 861px) {
  .nav__mobile { display: none !important; }
}

/* =========================
   HERO
   ========================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  padding: 120px var(--pad) 80px;
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  /* Skyline now lives on body::before - this layer adds hero-only atmospheric depth */
  position: absolute; inset: 0;
  z-index: -3;
  background:
    radial-gradient(ellipse at 50% 60%, transparent 0%, rgba(5,11,20,0.4) 100%);
  animation: slowZoom 30s ease-in-out infinite alternate;
}
@keyframes slowZoom {
  from { transform: scale(1.0); }
  to   { transform: scale(1.08); }
}
.hero__overlay {
  position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(200,16,46,0.22) 0%, transparent 55%),
    linear-gradient(180deg, rgba(5,11,20,0.15) 0%, rgba(5,11,20,0.55) 100%);
}
.hero__grain {
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  opacity: 0.06;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence baseFrequency='0.85'/></filter><rect width='200' height='200' filter='url(%23n)' opacity='1'/></svg>");
}

.hero__content { text-align: center; max-width: 980px; }

.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--f-sub); font-weight: 500;
  text-transform: uppercase; letter-spacing: .32em;
  font-size: 13px; color: var(--cream);
  padding: 10px 22px;
  border-top: 1px solid var(--red); border-bottom: 1px solid var(--red);
  margin-bottom: 32px;
  animation: fadeUp .8s ease both;
}
.hero__star { color: var(--red-bright); font-size: 14px; }

.hero__logo {
  width: 200px; height: 200px;
  margin: 0 auto 32px;
  border-radius: 50%;
  box-shadow:
    0 0 0 4px rgba(200,16,46,0.4),
    0 0 100px rgba(200,16,46,0.45),
    0 30px 60px rgba(0,0,0,0.55);
  animation: fadeUp .9s ease .1s both;
}
@media (max-width: 600px) {
  .hero__logo { width: 150px; height: 150px; }
}

.hero__title {
  font-family: var(--f-display);
  font-size: clamp(56px, 9vw, 132px);
  line-height: .9;
  letter-spacing: -0.01em;
  margin: 0 0 18px;
  text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 0;
}
.hero__title-red {
  color: var(--red-bright);
  text-shadow: 0 4px 30px rgba(200,16,46,0.4);
  animation: fadeUp 1s ease .2s both;
}
.hero__title-white {
  color: var(--white);
  text-shadow: 0 4px 30px rgba(0,0,0,0.6);
  animation: fadeUp 1s ease .35s both;
}

.hero__tag {
  font-family: var(--f-italic); font-style: italic; font-weight: 500;
  font-size: clamp(28px, 4vw, 44px);
  color: var(--cream);
  margin: 0 0 28px;
  letter-spacing: .01em;
  animation: fadeUp 1s ease .5s both;
}
.hero__tag em {
  background: linear-gradient(120deg, var(--white) 0%, var(--gold) 50%, var(--white) 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  animation: shimmer 6s ease-in-out infinite;
}
@keyframes shimmer { 0%,100% { background-position: 0% 0; } 50% { background-position: 100% 0; } }

.hero__sub {
  max-width: 720px; margin: 0 auto 40px;
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--gray-soft); line-height: 1.6;
  animation: fadeUp 1s ease .65s both;
}

.hero__cta-row {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 48px;
  animation: fadeUp 1s ease .8s both;
}

.hero__strip {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  font-family: var(--f-sub); text-transform: uppercase; letter-spacing: .24em;
  font-size: 13px; color: var(--cream);
  animation: fadeUp 1s ease .95s both;
}
.hero__strip i { color: var(--red-bright); font-style: normal; }

.hero__scroll {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  width: 24px; height: 40px; border: 2px solid var(--white); border-radius: 14px;
  opacity: .6;
}
.hero__scroll span {
  display: block; width: 4px; height: 8px; background: var(--white);
  border-radius: 2px; margin: 6px auto; animation: scrollDot 1.8s ease infinite;
}
@keyframes scrollDot {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(14px); opacity: 0; }
}

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

/* =========================
   BUTTONS
   ========================= */
.btn {
  display: inline-block;
  font-family: var(--f-sub); font-weight: 600;
  text-transform: uppercase; letter-spacing: .14em;
  font-size: 14px;
  padding: 16px 28px;
  border: 2px solid transparent;
  cursor: pointer; transition: all .25s ease;
  position: relative; overflow: hidden;
}
.btn--primary {
  background: var(--red); color: var(--white); border-color: var(--red);
}
.btn--primary:hover {
  background: var(--red-bright); transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(200,16,46,0.5);
}
.btn--ghost {
  background: transparent; color: var(--white); border-color: var(--white);
}
.btn--ghost:hover {
  background: var(--white); color: var(--navy);
}
.btn--white {
  background: var(--white); color: var(--navy); border-color: var(--white);
}
.btn--white:hover {
  background: var(--navy); color: var(--white); border-color: var(--white);
  transform: translateY(-2px);
}
.btn--full { width: 100%; }

/* =========================
   TICKER
   ========================= */
.ticker {
  background: var(--red);
  color: var(--white);
  overflow: hidden;
  border-top: 2px solid var(--navy-deep);
  border-bottom: 2px solid var(--navy-deep);
}
.ticker__track {
  display: flex; gap: 40px; padding: 14px 0;
  font-family: var(--f-display); letter-spacing: .15em; font-size: 16px;
  white-space: nowrap; width: max-content;
  animation: ticker 35s linear infinite;
}
.ticker__track span { flex-shrink: 0; }
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =========================
   SECTION HEAD
   ========================= */
.section-head { max-width: 820px; margin: 0 auto 64px; text-align: center; }
.section-head__eyebrow {
  display: inline-block;
  font-family: var(--f-sub); text-transform: uppercase; letter-spacing: .28em;
  font-size: 13px; color: var(--red-bright); margin-bottom: 18px;
}
.section-head__title {
  font-family: var(--f-display); text-transform: uppercase;
  font-size: clamp(40px, 6vw, 78px); line-height: .92;
  color: var(--white); margin: 0;
  letter-spacing: -0.005em;
}
.section-head__title em {
  font-family: var(--f-italic); font-style: italic; font-weight: 500;
  text-transform: none; color: var(--red-bright); letter-spacing: .01em;
}
.section-head__lede {
  margin: 24px auto 0; max-width: 660px;
  color: var(--gray-soft); font-size: 17px;
}

/* =========================
   SERVICES
   ========================= */
.services {
  background: rgba(5, 11, 20, 0.78);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  position: relative;
  padding: 120px 0;
}
.services::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse at 10% 0%, rgba(200,16,46,0.10) 0%, transparent 40%),
    radial-gradient(ellipse at 90% 100%, rgba(20,36,64,0.6) 0%, transparent 50%);
}
.services > .container { position: relative; }

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.card {
  background: transparent;
  padding: 44px 32px 40px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  transition: background .3s ease, transform .3s ease;
}
.card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--red); transform: scaleX(0); transform-origin: left;
  transition: transform .4s ease;
}
.card:hover {
  background: rgba(200,16,46,0.04);
  transform: translateY(-4px);
}
.card:hover::before { transform: scaleX(1); }
.card__num {
  font-family: var(--f-display); font-size: 48px;
  color: var(--red); opacity: .35;
  display: block; line-height: 1; margin-bottom: 14px;
}
.card__title {
  font-family: var(--f-display); text-transform: uppercase;
  font-size: 26px; letter-spacing: .02em;
  color: var(--white); margin: 0 0 14px; line-height: 1.05;
}
.card p { color: var(--gray-soft); margin: 0 0 18px; font-size: 15px; }
.card__list { margin: 0; padding: 0; list-style: none; }
.card__list li {
  font-family: var(--f-sub); font-size: 13px; text-transform: uppercase;
  letter-spacing: .1em; color: var(--cream);
  padding: 8px 0 8px 18px; position: relative;
  border-top: 1px solid var(--line);
}
.card__list li:first-child { border-top: 1px solid var(--line); }
.card__list li::before {
  content: '★'; position: absolute; left: 0; color: var(--red-bright); font-size: 11px;
}

/* =========================
   WHY US
   ========================= */
.why {
  background: rgba(10, 22, 40, 0.72);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  padding: 120px 0;
  position: relative; overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.why::before {
  content: '';
  position: absolute; top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(200,16,46,0.15) 0%, transparent 70%);
}
.why__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
}
.why__copy h2 { margin: 16px 0 24px; font-family: var(--f-display);
  font-size: clamp(40px, 5.5vw, 72px); line-height: .92; text-transform: uppercase;
  color: var(--white); }
.why__copy .accent-red { color: var(--red-bright); display: block; }
.why__copy .accent-red em {
  font-family: var(--f-italic); font-style: italic; font-weight: 500;
  text-transform: none; color: var(--white);
}
.why__copy p { color: var(--gray-soft); margin: 0 0 18px; max-width: 540px; }
.why__copy p strong { color: var(--white); }
.why__copy .btn { margin-top: 12px; }

.why__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.stat {
  background: rgba(10, 22, 40, 0.85);
  padding: 36px 24px;
  text-align: center;
}
.stat__num {
  display: block;
  font-family: var(--f-display);
  font-size: clamp(56px, 6vw, 88px);
  color: var(--red-bright);
  line-height: 1;
  margin-bottom: 12px;
}
.stat__label {
  font-family: var(--f-sub); text-transform: uppercase;
  letter-spacing: .12em; font-size: 12px;
  color: var(--cream);
}

@media (max-width: 860px) {
  .why__inner { grid-template-columns: 1fr; gap: 50px; }
}

/* =========================
   PROCESS
   ========================= */
.process {
  background: rgba(5, 11, 20, 0.78);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  padding: 120px 0;
}

.steps {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  counter-reset: step;
}
.step {
  padding: 40px 28px;
  border-left: 1px solid var(--line);
  position: relative;
  transition: background .3s;
}
.step:first-child { border-left: 0; }
.step:hover { background: rgba(200,16,46,0.04); }
.step__num {
  display: inline-block;
  font-family: var(--f-display);
  font-size: 64px; color: var(--red-bright);
  line-height: 1; margin-bottom: 18px;
}
.step h3 {
  font-family: var(--f-display); text-transform: uppercase;
  font-size: 24px; letter-spacing: .04em; color: var(--white);
  margin: 0 0 12px;
}
.step p { color: var(--gray-soft); margin: 0; font-size: 15px; }

@media (max-width: 720px) {
  .step { border-left: 0; border-top: 1px solid var(--line); }
  .step:first-child { border-top: 0; }
}

/* =========================
   CTA BANNER
   ========================= */
.cta-banner {
  background: var(--red);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  text-align: center;
}
.cta-banner::before, .cta-banner::after {
  content: '★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★';
  position: absolute; left: 0; right: 0;
  font-size: 28px; color: rgba(255,255,255,0.15);
  letter-spacing: .5em; white-space: nowrap; overflow: hidden;
}
.cta-banner::before { top: 10px; }
.cta-banner::after { bottom: 10px; }
.cta-banner__inner { position: relative; }
.cta-banner h2 {
  font-family: var(--f-display); text-transform: uppercase;
  font-size: clamp(42px, 6vw, 78px); line-height: .9; color: var(--white);
  margin: 0 0 16px;
}
.cta-banner p {
  color: rgba(255,255,255,0.92); margin: 0 auto 28px; max-width: 560px;
  font-size: 17px;
}

/* =========================
   CONTACT
   ========================= */
.contact {
  background: rgba(5, 11, 20, 0.82);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  padding: 120px 0;
  position: relative;
}
.contact::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse at 80% 20%, rgba(200,16,46,0.1) 0%, transparent 50%);
}
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  position: relative;
}
.contact__title {
  font-family: var(--f-display); text-transform: uppercase;
  font-size: clamp(40px, 5.5vw, 72px); line-height: .92;
  color: var(--white); margin: 16px 0 24px;
}
.contact__title em {
  font-family: var(--f-italic); font-style: italic; font-weight: 500;
  text-transform: none; color: var(--red-bright);
}
.contact__copy > p { color: var(--gray-soft); margin: 0 0 32px; max-width: 480px; }

.contact__list { list-style: none; margin: 0 0 32px; padding: 0; }
.contact__list li {
  display: flex; flex-direction: column; gap: 4px;
  padding: 14px 0; border-top: 1px solid var(--line);
}
.contact__list li:last-child { border-bottom: 1px solid var(--line); }
.contact__label {
  font-family: var(--f-sub); text-transform: uppercase;
  letter-spacing: .18em; font-size: 11px; color: var(--red-bright);
}
.contact__list a, .contact__list span { color: var(--white); font-size: 18px; }
.contact__list a:hover { color: var(--red-bright); }

.contact__social { display: flex; gap: 20px; flex-wrap: wrap; }
.contact__social a {
  font-family: var(--f-sub); text-transform: uppercase;
  letter-spacing: .14em; font-size: 13px; color: var(--cream);
  padding-bottom: 4px; border-bottom: 1px solid var(--line);
  transition: color .2s, border-color .2s;
}
.contact__social a:hover { color: var(--red-bright); border-color: var(--red); }

/* FORM */
.form {
  background: rgba(10, 22, 40, 0.85);
  padding: 40px 36px;
  border: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 20px;
}
.form__row { display: flex; flex-direction: column; gap: 8px; }
.form__row label {
  font-family: var(--f-sub); text-transform: uppercase;
  letter-spacing: .14em; font-size: 12px; color: var(--red-bright);
}
.form input, .form select, .form textarea {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  color: var(--white);
  font-family: var(--f-body);
  font-size: 16px;
  padding: 10px 0;
  transition: border-color .2s;
}
.form input:focus, .form select:focus, .form textarea:focus {
  outline: none;
  border-bottom-color: var(--red-bright);
}
.form textarea { resize: vertical; }
.form select option { background: var(--navy); color: var(--white); }
.form__msg { font-size: 14px; color: var(--gold); margin: 0; min-height: 1.2em; }

@media (max-width: 860px) {
  .contact__inner { grid-template-columns: 1fr; gap: 50px; }
  .form { padding: 28px 22px; }
}

/* =========================
   FOOTER
   ========================= */
.footer {
  background: rgba(10, 22, 40, 0.88);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  border-top: 3px solid var(--red);
  padding: 50px 0 30px;
}
.footer__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 40px;
  align-items: center;
}
.footer__brand { display: flex; align-items: center; gap: 14px; }
.footer__brand img { border-radius: 50%; }
.footer__brand strong {
  display: block; font-family: var(--f-display);
  font-size: 20px; letter-spacing: .04em; color: var(--white);
  text-transform: uppercase;
}
.footer__brand em {
  font-family: var(--f-italic); font-style: italic;
  font-size: 14px; color: var(--red-bright);
}
.footer__nav {
  display: flex; gap: 28px; flex-wrap: wrap; justify-content: center;
}
.footer__nav a {
  font-family: var(--f-sub); text-transform: uppercase;
  letter-spacing: .14em; font-size: 13px; color: var(--cream);
}
.footer__nav a:hover { color: var(--red-bright); }
.footer__copy {
  font-size: 12px; color: var(--gray); margin: 0;
  font-family: var(--f-sub); letter-spacing: .08em;
}

@media (max-width: 860px) {
  .footer__inner { grid-template-columns: 1fr; text-align: center; }
  .footer__brand { justify-content: center; }
}

/* =========================
   SCROLL REVEAL
   ========================= */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .8s ease, transform .8s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

/* Mobile fixed-background fallback - body bg keeps showing on scroll */
@media (max-width: 860px) {
  body::before {
    /* On iOS, background-attachment: fixed can be janky.
       Using a scaled background still works since body::before is fixed-positioned itself. */
  }
  .hero__bg { animation: none; }
}
