/* ============================================================
   Seasonable — Website styles
   Plain static CSS — no build step required.
   Imports design tokens, then landing page component styles.
   ============================================================ */
@import "tokens/colors.css";
@import "tokens/spacing.css";
@import "tokens/typography.css";

/* ---- Reset & base ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  margin: 0;
  background: var(--surface-page);
  color: var(--text-body);
  font-family: var(--font-sans);
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img, svg { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }

/* ---- Layout ---- */
.wrap { max-width: var(--container-wide); margin: 0 auto; padding: 0 40px; }

/* ---- Header ---- */
.hdr {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(244, 240, 230, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
  transition: box-shadow var(--dur-base) var(--ease-standard),
              background var(--dur-base) var(--ease-standard);
}
.hdr.scrolled { box-shadow: var(--shadow-sm); }
.hdr__in { display: flex; align-items: center; gap: 36px; height: 72px; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.brand__word { font-weight: 600; letter-spacing: -0.018em; font-size: 22px; color: var(--teal); }
.nav { display: flex; align-items: center; gap: 26px; }
.nav a { font-size: 14.5px; font-weight: 500; color: var(--ink); opacity: 0.82; transition: opacity var(--dur-fast), color var(--dur-fast); }
.nav a:hover { opacity: 1; color: var(--teal); }
.hdr__spacer { flex: 1; }
.hdr__cta { display: flex; align-items: center; gap: 14px; }
.login { font-size: 14.5px; font-weight: 600; color: var(--ink); white-space: nowrap; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 15px;
  line-height: 1.1;
  padding: 12px 22px;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background var(--dur-fast) var(--ease-standard),
              transform var(--dur-fast) var(--ease-standard);
  will-change: transform;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--gold); color: var(--teal-ink); }
.btn--primary:hover { background: #E0A904; transform: translateY(-1px); }
.btn--brand { background: var(--teal); color: var(--cream); }
.btn--brand:hover { background: var(--teal-mid); transform: translateY(-1px); }
.btn--outline { background: transparent; color: var(--ink); border-color: var(--border-strong); }
.btn--outline:hover { background: var(--cream-deep); transform: translateY(-1px); }
.btn--ghost-light { background: transparent; color: var(--cream); border-color: rgba(244,240,230,.34); }
.btn--ghost-light:hover { background: rgba(244,240,230,.1); transform: translateY(-1px); }
.btn--lg { padding: 15px 28px; font-size: 16.5px; }

.linkarrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 600;
  font-size: 15px;
  color: var(--teal);
  text-decoration: none;
  transition: gap var(--dur-fast) var(--ease-standard);
}
.linkarrow:hover { gap: 10px; }
.linkarrow.on-dark { color: var(--gold); }

/* ---- Typography helpers ---- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.eyebrow .swl { color: var(--gold); }
.h-serif { font-family: var(--font-serif); font-weight: 500; letter-spacing: -0.015em; color: var(--ink); text-wrap: balance; }
em.accent { font-style: italic; color: var(--teal); }

/* Hand-drawn gold underline */
.uline { position: relative; white-space: nowrap; }
.uline svg {
  position: absolute;
  left: -3%;
  bottom: -0.14em;
  width: 106%;
  height: 0.42em;
  overflow: visible;
  pointer-events: none;
}
.uline svg path {
  fill: none;
  stroke: var(--gold);
  stroke-width: 6;
  stroke-linecap: round;
}

/* ---- Swallow SVG inline helper ---- */
.swl-icon { display: inline-block; vertical-align: middle; }

/* ---- Floating chip (stat) ---- */
.fchip {
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 12px 15px;
  display: flex;
  align-items: center;
  gap: 11px;
  white-space: nowrap;
}
.fchip__ic {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--success-bg);
  color: var(--success);
  flex: none;
}
.fchip__ic.gold-ic { background: var(--gold-100); color: var(--gold-deep); }
.fchip__big { font-family: var(--font-serif); font-size: 22px; color: var(--ink); line-height: 1; }
.fchip__sm { font-size: 12px; color: var(--gray); margin-top: 2px; }

/* ---- Announcement ribbon ---- */
.ribbon { background: var(--teal); color: var(--cream); }
.ribbon__in {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 14px 40px;
  flex-wrap: wrap;
  text-align: center;
}
.ribbon .tag {
  background: var(--gold);
  color: var(--teal-ink);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 11px;
  border-radius: 999px;
  letter-spacing: 0.02em;
}
.ribbon p { margin: 0; font-size: 15px; color: rgba(244,240,230,.92); }
.ribbon a { color: var(--gold); font-weight: 600; }

/* ---- Hero ---- */
.hero { padding: 88px 0 96px; }
.hero__grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center; }
.hero h1 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(44px, 5.4vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.018em;
  color: var(--ink);
  margin: 20px 0 0;
}
.hero p.sub {
  font-size: 19px;
  line-height: 1.6;
  color: var(--text-body);
  max-width: 46ch;
  margin: 22px 0 0;
}
.hero__cta { display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; }
.hero__trust { display: flex; align-items: center; gap: 12px; margin-top: 28px; font-size: 14px; color: var(--gray); flex-wrap: wrap; }
.av-row { display: flex; }
.av {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 2px solid var(--cream);
  margin-left: -9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
}
.av:first-child { margin-left: 0; }

/* Hero collage */
.collage { position: relative; }
.collage__panel {
  background: var(--teal-deep);
  border-radius: var(--radius-xl);
  padding: 22px;
  box-shadow: var(--shadow-lg);
}
.collage__photo {
  width: 100%;
  height: 404px;
  border-radius: var(--radius-lg);
  object-fit: cover;
}
.collage__float { position: absolute; z-index: 2; }
.collage__float--board { left: -34px; top: -30px; width: 250px; }
.collage__float--card { right: -30px; bottom: 34px; width: 302px; }
.collage__float--chip { left: -22px; bottom: -24px; z-index: 3; }

/* Collage hover lift */
.collage__float--card .mock,
.collage__float--board .mock,
.collage__float--chip .fchip {
  transition: transform var(--dur-slow) var(--ease-out), box-shadow var(--dur-slow) var(--ease-out);
}
.collage:hover .collage__float--card .mock { transform: translateY(-5px); }
.collage:hover .collage__float--chip .fchip { transform: translateY(-3px); }

/* ---- Logo wall ---- */
.logos { padding: 64px 0; border-bottom: 1px solid var(--border-subtle); }
.logos__label {
  text-align: center;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray);
}
.logos__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 18px 50px;
  margin-top: 26px;
}
.logos__name {
  font-family: var(--font-serif);
  font-size: 24px;
  color: var(--teal-mid);
  opacity: 0.72;
  display: flex;
  align-items: center;
  gap: 9px;
  white-space: nowrap;
}
.logos__name .swl { color: var(--gold); opacity: 0.9; }

/* ---- Section scaffolding ---- */
.section { padding: 100px 0; }
.section.sand { background: var(--sand); }
.section__head { max-width: 720px; }
.section__head.center { margin: 0 auto; text-align: center; }
.section__head h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(32px, 4.2vw, 50px);
  line-height: 1.03;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 14px 0 0;
}
.section__head p {
  font-size: 18px;
  line-height: 1.6;
  color: var(--gray);
  margin: 16px 0 0;
}

/* ---- Feature rows ---- */
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.frow + .frow { margin-top: 130px; }
.frow.reverse .frow__visual { order: 2; }
.frow__text .eyebrow { margin-bottom: 16px; }
.frow__text h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(28px, 3.2vw, 38px);
  line-height: 1.06;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0;
}
.frow__text p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-body);
  margin: 16px 0 0;
  max-width: 46ch;
}
.frow__list { list-style: none; padding: 0; margin: 22px 0 26px; display: flex; flex-direction: column; gap: 12px; }
.frow__list li { display: flex; gap: 11px; align-items: flex-start; font-size: 15.5px; color: var(--text-body); }
.frow__list .ic { color: var(--teal); flex: none; margin-top: 2px; }

/* Feature visual collage */
.fvisual { position: relative; }
.fvisual__photo { width: 100%; height: 420px; border-radius: var(--radius-xl); object-fit: cover; display: block; }
.fvisual__pad {
  background: var(--cream-deep);
  border-radius: var(--radius-xl);
  padding: 20px;
}
.fvisual__pad.teal { background: var(--teal); }
.fvisual__pad.sand { background: var(--cream); border: 1px solid var(--sand-line); }
.fvisual__float { position: absolute; box-shadow: var(--shadow-lg); border-radius: var(--radius-lg); }
.fvisual__float.br { right: -22px; bottom: -24px; }
.fvisual__float.bl { left: -22px; bottom: -24px; }
.fvisual__float.tr { right: -22px; top: -22px; }
.fvisual:hover .fvisual__float .mock { transform: translateY(-5px); }

/* ---- Product-UI mock cards ---- */
.mock {
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  font-family: var(--font-sans);
}
.mock__bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 16px;
  border-bottom: 1px solid var(--border-subtle);
}
.dot3 { display: flex; gap: 5px; }
.dot3 i { width: 8px; height: 8px; border-radius: 999px; background: var(--sand-line); display: block; }
.mock__ttl { font-family: var(--font-serif); font-size: 15px; color: var(--ink); white-space: nowrap; }
.mock__body { padding: 14px; }

.mrow { display: flex; align-items: center; gap: 10px; padding: 9px 10px; border-radius: var(--radius-sm); }
.mrow + .mrow { margin-top: 6px; }
.mrow.hl { background: var(--teal-50); }
.mav {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12.5px;
  font-weight: 600;
}
.mrow .nm { font-size: 14px; font-weight: 600; color: var(--ink); white-space: nowrap; }
.mrow .sub { font-size: 12px; color: var(--gray); white-space: nowrap; }
.mbadge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11.5px;
  font-weight: 600;
  padding: 4px 9px;
  border-radius: 999px;
  white-space: nowrap;
}
.mbadge .d { width: 5px; height: 5px; border-radius: 999px; background: currentColor; display: inline-block; }
.mbadge.ok { background: var(--success-bg); color: var(--success); }
.mbadge.warn { background: var(--warning-bg); color: var(--warning); }
.mbadge.gold { background: var(--gold-100); color: var(--gold-deep); }
.mpush { margin-left: auto; }

/* Planning board mock */
.board { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.board__h { font-size: 10.5px; font-weight: 600; color: var(--gray); text-align: center; padding-bottom: 4px; letter-spacing: 0.03em; }
.board__cell { height: 26px; border-radius: 5px; background: var(--cream-deep); }
.board__cell.t  { background: var(--teal); }
.board__cell.t2 { background: var(--teal-200); }
.board__cell.g  { background: var(--gold); }
.board__cell.s  { background: var(--sand); }

/* ---- Three-up gallery ---- */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 52px; }
.gcard { display: flex; flex-direction: column; transition: transform var(--dur-base) var(--ease-standard); }
.gcard:hover { transform: translateY(-5px); }
.gcard__photo { width: 100%; height: 230px; border-radius: var(--radius-lg); object-fit: cover; display: block; }
.gcard:hover .gcard__photo { box-shadow: var(--shadow-md); }
.gcard h4 { font-family: var(--font-serif); font-weight: 500; font-size: 22px; color: var(--ink); margin: 22px 0 0; }
.gcard p { font-size: 15px; line-height: 1.6; color: var(--gray); margin: 10px 0 16px; }
.gcard .linkarrow { margin-top: auto; }

/* ---- Testimonial ---- */
.quote { background: var(--cream); }
.quote__grid { display: grid; grid-template-columns: 1.25fr 1fr; gap: 64px; align-items: center; }
.quote blockquote { margin: 0; position: relative; }
.quote__mark {
  font-family: var(--font-serif);
  font-size: 120px;
  line-height: 0;
  color: var(--gold);
  display: block;
  height: 44px;
  margin-top: 26px;
  user-select: none;
}
.quote q {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: var(--ink);
  quotes: none;
  display: block;
}
.quote q::before, .quote q::after { content: ""; }
.quote__by { display: flex; align-items: center; gap: 14px; margin-top: 30px; }
.quote__by .av-q {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  flex: none;
  overflow: hidden;
}
.quote__by .av-q img { width: 100%; height: 100%; object-fit: cover; }
.quote__by .nm { font-weight: 600; color: var(--ink); font-size: 16px; }
.quote__by .rl { font-size: 14px; color: var(--gray); }
.quote__visual { position: relative; }
.quote__photo { width: 100%; height: 380px; border-radius: var(--radius-xl); object-fit: cover; display: block; }

/* ---- Stats band ---- */
.stats-band {
  background: var(--teal-deep);
  color: var(--cream);
  text-align: center;
  padding: 104px 0;
  position: relative;
  overflow: hidden;
}
.stats-band .wrap { position: relative; z-index: 1; }
.stats-band h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(30px, 4vw, 48px);
  color: var(--cream);
  margin: 18px 0 0;
  letter-spacing: -0.01em;
}
.stats-band__row { display: flex; justify-content: center; gap: 72px; margin-top: 54px; flex-wrap: wrap; }
.stats-band .num {
  font-family: var(--font-serif);
  font-size: clamp(40px, 5vw, 58px);
  color: var(--gold);
  line-height: 1;
}
.stats-band .cap { font-size: 14.5px; color: rgba(244,240,230,.74); margin-top: 10px; }

/* Gliding swallows across stats band */
.sb-glider {
  position: absolute;
  pointer-events: none;
  color: var(--gold);
  z-index: 0;
}

@keyframes sb-glide {
  0%   { opacity: 0; transform: translate(0, 26px) rotate(5deg) scale(.85); }
  10%  { opacity: var(--glide-o, .8); }
  55%  { transform: translate(55vw, -14px) rotate(-3deg) scale(1); }
  92%  { opacity: var(--glide-o, .8); }
  100% { opacity: 0; transform: translate(112vw, 6px) rotate(2deg) scale(.95); }
}

@media (prefers-reduced-motion: no-preference) {
  .stats-band.in-view .sb-glider {
    animation: sb-glide var(--glide-d, 5.6s) cubic-bezier(.33,.45,.55,.95) var(--glide-delay, .2s) 1 forwards;
  }
}

/* ---- Pre-footer CTA ---- */
.precta { padding: 100px 0; }
.precta__panel {
  background: var(--teal);
  border-radius: var(--radius-xl);
  padding: 72px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.precta h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(32px, 4.4vw, 52px);
  color: var(--cream);
  margin: 20px 0 0;
  letter-spacing: -0.01em;
}
.precta p {
  color: rgba(244,240,230,.85);
  font-size: 18px;
  margin: 16px auto 30px;
  max-width: 46ch;
}
.precta__cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---- Mountain pass interlude ---- */
.mpass {
  position: relative;
  background: var(--sand);
  height: 520px;
  overflow: hidden;
}
.mpass__eyebrow {
  position: absolute;
  top: 72px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  z-index: 33;
}
.mpass__ridge {
  position: absolute;
  left: -5%;
  width: 110%;
  display: block;
  pointer-events: none;
  transform-origin: 50% 100%;
}
.mpass__ridge--far   { bottom: -34px; height: 330px; color: var(--teal-100); }
.mpass__ridge--back  { bottom: -36px; height: 336px; color: var(--teal-200); }
.mpass__ridge--mid   { bottom: -36px; height: 346px; color: var(--teal); }
.mpass__ridge--front { bottom: 0; left: 0; width: 100%; height: 320px; color: var(--teal-deep); z-index: 31; }
.mp__found {
  position: absolute;
  left: 37.5%;
  bottom: 215px;
  transform: translate(-50%, 14px) scale(0.7);
  z-index: 32;
  opacity: 0;
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}
.mpass.in-view .mp__found {
  opacity: 1;
  transform: translate(-50%, 0) scale(1);
}

/* ---- Footer ---- */
.footer { background: var(--teal-deep); color: var(--cream); padding: 72px 0 40px; }
.footer__top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr; gap: 32px; }
.footer .brand__word { color: var(--cream); }
.footer__tag {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 17px;
  color: rgba(244,240,230,.66);
  margin-top: 16px;
  max-width: 26ch;
}
.footer h5 {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 16px;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 11px; }
.footer ul a { font-size: 14.5px; color: rgba(244,240,230,.74); transition: color var(--dur-fast); }
.footer ul a:hover { color: var(--cream); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 52px;
  padding-top: 24px;
  border-top: 1px solid var(--border-on-dark);
  font-size: 13px;
  color: rgba(244,240,230,.5);
  flex-wrap: wrap;
  gap: 12px;
}

/* ---- Animated swallow flight path (CSS-only, scroll-driven polyfill via JS) ---- */
.flight {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 30;
  pointer-events: none;
  opacity: 0;
  color: var(--teal);
  will-change: transform, opacity;
}
@media (max-width: 899px) { .flight { display: none; } }

/* ---- Demo modal ---- */
.modal-scrim {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(16,44,50,.5);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur-base) var(--ease-standard);
}
.modal-scrim.is-open { opacity: 1; pointer-events: auto; }
.modal {
  background: var(--surface-page);
  border-radius: var(--radius-xl);
  padding: 36px;
  width: 100%;
  max-width: 440px;
  box-shadow: var(--shadow-lg);
  transform: translateY(10px) scale(.99);
  transition: transform var(--dur-base) var(--ease-out);
}
.modal-scrim.is-open .modal { transform: translateY(0) scale(1); }
.modal h3 { font-family: var(--font-serif); font-weight: 500; font-size: 27px; color: var(--ink); margin: 0 0 6px; }
.modal p.msub { font-size: 15px; color: var(--gray); margin: 0 0 22px; }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.field label { font-size: 13.5px; font-weight: 600; color: var(--ink); }
.field input {
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--ink);
  background: var(--surface-card);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  padding: 11px 13px;
  outline: none;
  transition: border-color var(--dur-fast), box-shadow var(--dur-fast);
}
.field input:focus { border-color: var(--teal); box-shadow: var(--ring); }
.modal__sent { text-align: center; padding: 18px 0; }
.modal__sent .ok {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: var(--success-bg);
  color: var(--success);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--gray);
  padding: 4px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-close:hover { background: var(--cream-deep); color: var(--ink); }
.modal { position: relative; }

/* ---- Scroll reveal ---- */
@media (prefers-reduced-motion: no-preference) {
  html.anim .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.66s var(--ease-out), transform 0.66s var(--ease-out);
  }
  html.anim .reveal.in-view { opacity: 1; transform: none; }
  html.anim .reveal .uline svg path {
    stroke-dasharray: 240;
    stroke-dashoffset: 240;
  }
  html.anim .reveal.in-view .uline svg path {
    stroke-dashoffset: 0;
    transition: stroke-dashoffset 0.9s var(--ease-out) 0.45s;
  }
}

/* ---- Mobile ---- */
@media (max-width: 1000px) {
  .wrap { padding: 0 24px; }
  .hero__grid,
  .frow,
  .quote__grid { grid-template-columns: 1fr; gap: 40px; }
  .frow.reverse .frow__visual { order: 0; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .nav { display: none; }
  .collage__float--card { right: 10px; bottom: 18px; }
  .collage__float--board { left: -8px; top: -20px; }
  .collage__float--chip { left: 10px; bottom: -20px; }
  .fvisual__float.br { right: 10px; }
  .fvisual__float.bl { left: 10px; }
  .fvisual__float.tr { right: 10px; }
  .stats-band__row { gap: 40px; }
  .precta__panel { padding: 48px 24px; }
}
@media (max-width: 600px) {
  .hero { padding: 56px 0 64px; }
  .gallery { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .hero__cta { flex-direction: column; }
  .collage__float--board,
  .collage__float--card,
  .collage__float--chip { display: none; }
  .fvisual__float { display: none; }
}
