/* ==========================================================================
   AscensionWRLD — ascensionwrld.com
   Dark / gold brand system derived from the finalised crown + star logo.
   ========================================================================== */

/* Display: Saira — squarish grotesque that echoes the rectangular letterforms
   of the ASCENSION WRLD wordmark. Body: Manrope. Both self-hosted (latin). */
@font-face {
  font-family: "Saira";
  src: url("../fonts/saira-latin-var.woff2") format("woff2-variations");
  font-weight: 400 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope-latin-var.woff2") format("woff2-variations");
  font-weight: 300 800;
  font-style: normal;
  font-display: swap;
}

:root {
  color-scheme: dark;

  /* Neutrals biased warm — the ground shares the gold's temperature
     rather than sitting on a cold grey. */
  --bg:            #0A0907;
  --bg-2:          #100E0B;
  --panel:         #15120E;
  --panel-2:       #1C1813;
  --line:          rgba(238, 220, 190, 0.10);
  --line-strong:   rgba(238, 220, 190, 0.19);

  --gold:          #DA9F34;
  --gold-light:    #F2C86A;
  --gold-deep:     #8A5E14;
  --gold-line:     rgba(218, 159, 52, 0.38);
  --gold-wash:     rgba(218, 159, 52, 0.06);

  --text:          #F6F2EA;
  --muted:         #A39B8D;
  --muted-2:       #787064;

  --display: "Saira", "Arial Narrow", system-ui, sans-serif;
  --sans: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --shell: 1200px;

  /* Tight radii, not pills — the squarish Saira wordmark and the hero grid set
     a rectilinear geometry, and soft 18px corners fought both. */
  --radius: 4px;
  --radius-sm: 3px;

  /* 74px module: the hero grid, and the rhythm everything else is spaced on. */
  --module: 74px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; background: #0A0907; color-scheme: dark; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection { background: var(--gold); color: #171004; }

/* ---------- Type ---------------------------------------------------------- */

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.018em;
  line-height: 1.02;
  margin: 0;
  text-transform: uppercase;
  text-wrap: balance;
}

h1 { font-size: clamp(2.7rem, 8.4vw, 6.2rem); }
h2 { font-size: clamp(2.05rem, 5vw, 3.6rem); }
h3 {
  font-size: clamp(1rem, 1.7vw, 1.18rem);
  letter-spacing: 0.005em;
  font-weight: 700;
}

p { margin: 0; }

.eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0;
}

.lede { color: var(--muted); font-size: clamp(1rem, 1.5vw, 1.15rem); }

.gold-text { color: var(--gold); }

.outline-text {
  color: transparent;
  -webkit-text-stroke: 1.4px rgba(255, 255, 255, 0.42);
}

/* ---------- Layout -------------------------------------------------------- */

.shell {
  width: min(100% - 2.5rem, var(--shell));
  margin-inline: auto;
}

section { position: relative; }

.section-pad { padding: clamp(4.5rem, 10vw, 8.5rem) 0; }

.section-head { max-width: 720px; display: grid; gap: 1.1rem; }
.section-head.center { margin-inline: auto; text-align: center; justify-items: center; }

.rule {
  height: 1px;
  background: var(--line);
  border: 0;
  margin: 0;
}

/* ---------- Buttons ------------------------------------------------------- */

/* Flat fills, square-ish corners. Hover changes colour only — nothing moves and
   nothing casts a shadow, so the surface reads as printed rather than floating. */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 1.6rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s;
  white-space: nowrap;
}

.btn-gold {
  background: var(--gold);
  color: #171004;
}
.btn-gold:hover { background: var(--gold-light); }

.btn-ghost {
  background: transparent;
  border-color: var(--line-strong);
  color: var(--text);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

.btn-sm { padding: 0.68rem 1.15rem; font-size: 0.75rem; }

.arrow { transition: transform 0.2s var(--ease); }
.btn:hover .arrow { transform: translateX(3px); }

/* ---------- Header -------------------------------------------------------- */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 90;
  padding: 0.85rem 0;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), padding 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: rgba(10, 9, 7, 0.80);
  backdrop-filter: blur(12px);
  border-bottom-color: var(--line);
  padding: 0.5rem 0;
}

.nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.5rem;
}

.nav-side { display: flex; align-items: center; gap: 1.6rem; min-width: 0; }
.nav-side.right { justify-content: flex-end; }

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

.nav-links a {
  font-size: 0.83rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--muted);
  position: relative;
  padding: 0.3rem 0;
  transition: color 0.3s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease);
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }

/* Logo dead-centre in the header — client's explicit request */
.brand {
  display: flex;
  justify-content: center;
  align-items: center;
}
.brand img {
  height: 54px;
  width: auto;
  transition: height 0.3s var(--ease);
}
.site-header.scrolled .brand img { height: 42px; }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  color: var(--text);
  width: 42px; height: 38px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  display: block;
  width: 17px; height: 1.6px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.35s var(--ease), opacity 0.2s;
}
.nav-toggle span::before { transform: translateY(-5.5px); }
.nav-toggle span::after { transform: translateY(4px); }
.nav-open .nav-toggle span { background: transparent; }
.nav-open .nav-toggle span::before { transform: rotate(45deg); }
.nav-open .nav-toggle span::after { transform: translateY(-1.6px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(10, 9, 7, 0.97);
  padding: 7rem 1.6rem 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease);
}
.mobile-menu a {
  display: block;
  font-family: var(--display);
  font-size: 1.9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--line);
}
.mobile-menu .btn { margin-top: 1.8rem; width: 100%; justify-content: center; }
.nav-open .mobile-menu { opacity: 1; pointer-events: auto; }
.nav-open { overflow: hidden; }

/* ---------- Hero ---------------------------------------------------------- */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 9rem 0 6.5rem;
  overflow: hidden;
  text-align: center;
}

/* Full-bleed grid: no vignette mask, so the module runs edge to edge and reads as
   drawn structure rather than a spotlight behind the headline. Centred on the
   viewport so the middle column lines up with the centred hero content. */
.grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(238, 220, 190, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(238, 220, 190, 0.05) 1px, transparent 1px);
  background-size: var(--module) var(--module);
  background-position: center;
  pointer-events: none;
}

/* Every fourth line drawn stronger — gives the grid a hierarchy instead of a
   flat mesh, the way a drawing has major and minor divisions. */
.grid-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(238, 220, 190, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(238, 220, 190, 0.07) 1px, transparent 1px);
  background-size: calc(var(--module) * 4) calc(var(--module) * 4);
  background-position: center;
}

.hero-inner { position: relative; z-index: 2; display: grid; gap: 1.9rem; justify-items: center; }

.hero h1 { max-width: 15ch; }
.hero .lede { max-width: 60ch; }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.4rem 0.9rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
/* Square, static marker — a pulsing halo dot implied live activity there isn't. */
.pill .dot {
  width: 5px; height: 5px;
  background: var(--gold);
}

.hero-cta { display: flex; gap: 0.85rem; flex-wrap: wrap; justify-content: center; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  justify-content: center;
  gap: clamp(1.2rem, 3vw, 2.4rem);
  margin-top: 2.2rem;
  padding-top: 2.2rem;
  border-top: 1px solid var(--line);
  width: min(100%, 780px);
}
.hero-stats div { display: grid; gap: 0.15rem; justify-items: center; text-align: center; }
.hero-stats b {
  font-family: var(--display);
  font-variant-numeric: tabular-nums;
  font-size: clamp(1.6rem, 3.6vw, 2.3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}
.hero-stats span { font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted-2); }

.scroll-hint {
  position: absolute;
  bottom: 1.6rem; left: 50%;
  transform: translateX(-50%);
  font-size: 0.66rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted-2);
  display: grid;
  justify-items: center;
  gap: 0.6rem;
  z-index: 2;
}
.scroll-hint i {
  display: block;
  width: 1px; height: 40px;
  background: linear-gradient(var(--gold), transparent);
  animation: drop 2.2s ease-in-out infinite;
}
@keyframes drop { 0%, 100% { opacity: 0.25; transform: scaleY(0.6); } 50% { opacity: 1; transform: scaleY(1); } }

/* ---------- Marquee ------------------------------------------------------- */

.marquee-wrap {
  border-block: 1px solid var(--line);
  background: var(--bg-2);
  padding: 1.15rem 0;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee { display: flex; width: max-content; animation: slide 34s linear infinite; }
.marquee-wrap:hover .marquee { animation-play-state: paused; }
.marquee ul { display: flex; align-items: center; gap: 3.4rem; margin: 0; padding: 0 1.7rem; list-style: none; }
.marquee li {
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.34);
  display: flex;
  align-items: center;
  gap: 3.4rem;
  white-space: nowrap;
  transition: color 0.3s;
}
.marquee li:hover { color: var(--text); }
.marquee li::after { content: "✦"; color: var(--gold-deep); font-size: 0.7rem; }
@keyframes slide { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee { animation: none; } }

/* ---------- Split / audience cards ---------------------------------------- */

.split {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
  margin-top: 3.2rem;
}

.audience {
  position: relative;
  padding: clamp(1.8rem, 3vw, 2.6rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  overflow: hidden;
  transition: border-color 0.2s var(--ease);
}
.audience:hover { border-color: var(--gold-line); }
.audience h3 { margin-bottom: 0.7rem; }
.audience > .eyebrow { margin-bottom: 1.4rem; }
.audience ul { list-style: none; margin: 1.5rem 0 0; padding: 0; display: grid; gap: 0.85rem; }
.audience li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 0.75rem;
  align-items: start;
  font-size: 0.94rem;
  color: var(--muted);
}
.audience li::before {
  content: "";
  width: 7px; height: 7px;
  margin-top: 0.58rem;
  margin-left: 5px;
  background: var(--gold);
}
/* Crown watermark, sized off the logo silhouette */
.audience .tag {
  position: absolute;
  top: -14px; right: -10px;
  width: 116px;
  opacity: 0.045;
  pointer-events: none;
}

/* ---------- Services ------------------------------------------------------ */

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.2rem;
  margin-top: 3.2rem;
}

.card {
  position: relative;
  padding: 1.9rem 1.6rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  overflow: hidden;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.card:hover { border-color: var(--gold-line); background: var(--panel-2); }

.card h3 { margin-bottom: 0.7rem; }
.card p { font-size: 0.92rem; color: var(--muted); }

.icon {
  width: 42px; height: 42px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-sm);
  border: 1px solid var(--gold-line);
  margin-bottom: 1.4rem;
  color: var(--gold);
}
.icon svg { width: 21px; height: 21px; stroke: currentColor; fill: none; stroke-width: 1.6; }

/* ---------- Process ------------------------------------------------------- */

.process { display: grid; gap: 0; margin-top: 3.2rem; }

.step {
  display: grid;
  grid-template-columns: 108px 1fr;
  gap: clamp(1rem, 4vw, 3rem);
  padding: 2rem 0;
  border-top: 1px solid var(--line);
  align-items: start;
  transition: border-color 0.2s var(--ease);
}
.step:last-child { border-bottom: 1px solid var(--line); }
.step:hover { border-top-color: var(--gold-line); }
.step-n {
  font-family: var(--display);
  font-size: clamp(2rem, 4.4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1.2px rgba(218, 159, 52, 0.55);
  transition: -webkit-text-stroke-color 0.2s;
}
.step:hover .step-n { -webkit-text-stroke-color: var(--gold); }
.step-body { display: grid; gap: 0.6rem; max-width: 62ch; }
.step-body p { color: var(--muted); font-size: 0.95rem; }

/* ---------- Why us -------------------------------------------------------- */

.why {
  background: var(--bg-2);
  border-block: 1px solid var(--line);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.2rem;
  margin-top: 3rem;
}
.why-item {
  padding: 1.6rem 1.4rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.014);
  transition: border-color 0.2s;
}
.why-item:hover { border-color: var(--gold-line); }
.why-item h3 { font-size: 1rem; margin-bottom: 0.55rem; }
.why-item p { font-size: 0.88rem; color: var(--muted); }
.why-item .star { color: var(--gold); font-size: 0.85rem; display: block; margin-bottom: 0.9rem; }

/* ---------- Numbers ------------------------------------------------------- */

.numbers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 3rem;
}
.numbers > div { background: var(--bg); padding: 2rem 1.5rem; display: grid; gap: 0.35rem; }
.numbers b {
  font-family: var(--display);
  font-variant-numeric: tabular-nums;
  font-size: clamp(2rem, 4.6vw, 2.9rem);
  font-weight: 800;
  letter-spacing: -0.04em;
}
.numbers span { font-size: 0.78rem; color: var(--muted-2); letter-spacing: 0.12em; text-transform: uppercase; }

/* ---------- FAQ ----------------------------------------------------------- */

.faq { margin-top: 3rem; display: grid; gap: 0.7rem; max-width: 860px; }
.faq details {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--panel);
  overflow: hidden;
  transition: border-color 0.35s;
}
.faq details[open] { border-color: rgba(218, 159, 52, 0.35); }
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 1.15rem 1.4rem;
  font-weight: 650;
  font-size: 0.98rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  color: var(--gold);
  font-size: 1.3rem;
  line-height: 1;
  transition: transform 0.35s var(--ease);
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq p { padding: 0 1.4rem 1.3rem; color: var(--muted); font-size: 0.93rem; }

/* ---------- Contact ------------------------------------------------------- */

.contact { position: relative; overflow: hidden; }

.contact-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}

.contact-copy { display: grid; gap: 1.2rem; }
.contact-meta { display: grid; gap: 0.9rem; margin-top: 0.8rem; }
.contact-meta a, .contact-meta span {
  display: flex; align-items: center; gap: 0.7rem;
  font-size: 0.92rem; color: var(--muted);
  transition: color 0.3s;
}
.contact-meta a:hover { color: var(--gold); }
.contact-meta svg { width: 17px; height: 17px; stroke: var(--gold); fill: none; stroke-width: 1.6; flex: none; }

form { display: grid; gap: 1rem; }
.field { display: grid; gap: 0.45rem; }
.field label { font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted-2); font-weight: 600; }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.025);
  color: var(--text);
  font: inherit;
  font-size: 0.94rem;
  transition: border-color 0.2s, background 0.2s;
}
.field textarea { resize: vertical; min-height: 118px; }
/* Focus reads through the border and ground, not a soft outer glow ring. */
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--gold-wash);
}
.field select option { background: var(--panel); color: var(--text); }
.field ::placeholder { color: var(--muted-2); }
.two-up { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

form .btn { justify-content: center; margin-top: 0.35rem; }
.form-note { font-size: 0.78rem; color: var(--muted-2); text-align: center; }
.form-status {
  font-size: 0.88rem;
  color: var(--gold);
  min-height: 1.2em;
  text-align: center;
  transition: color 0.2s;
}
.form-status--success { color: #4ade80; }
.form-status--error   { color: #f87171; }

/* ---------- Footer -------------------------------------------------------- */

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--bg-2);
  padding: 3.6rem 0 2rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.3fr repeat(2, 0.8fr);
  gap: 2.5rem;
  padding-bottom: 2.6rem;
  border-bottom: 1px solid var(--line);
}
.footer-brand img { height: 92px; width: auto; margin-bottom: 1.1rem; }
.footer-brand p { font-size: 0.9rem; color: var(--muted); max-width: 40ch; }
.footer-col h4 { font-size: 0.74rem; letter-spacing: 0.2em; color: var(--muted-2); margin-bottom: 1.1rem; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.65rem; }
.footer-col a { font-size: 0.9rem; color: var(--muted); transition: color 0.2s; }
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.6rem;
  font-size: 0.8rem;
  color: var(--muted-2);
}
.footer-email-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.85rem;
  color: var(--muted);
  transition: color 0.2s;
}
.footer-email-link:hover { color: var(--gold); }
.footer-email-link svg {
  width: 16px; height: 16px;
  flex-shrink: 0;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

/* ---------- Reveal ---------------------------------------------------------
   Opacity only. The stock fade-up-25px on every element is the single most
   recognisable generated-site tell, and it makes a page feel like it is
   assembling itself rather than already being there.
   -------------------------------------------------------------------------- */

[data-reveal] {
  opacity: 0;
  transition: opacity 0.4s ease-out;
}
[data-reveal].in { opacity: 1; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transition: none; }
  .scroll-hint i { animation: none; }
}

/* ---------- Responsive ---------------------------------------------------- */

@media (max-width: 940px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .mobile-menu { display: block; }
  .split { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  .nav-side .btn { display: none; }
  .brand img { height: 46px; }
  .step { grid-template-columns: 1fr; gap: 0.5rem; }
  .two-up { grid-template-columns: 1fr; }
  .hero { padding-top: 7.5rem; }
  .hero-stats { grid-template-columns: 1fr; gap: 1.4rem; }
  .scroll-hint { display: none; }
  .footer-top { grid-template-columns: 1fr; }
}
