/*
 * Jurisio Garden landing — desktop production layer.
 *
 * Source truth:
 *   src/styles.css (tokens + page reset)
 *   src/el.css (Editions shell + shared footer)
 *   src/garden.css (Garden page)
 *
 * The only production adaptation is the approved desktop boundary: this
 * layer applies at 540px and wider. Garden selectors and values below are
 * otherwise preserved from the supplied source.
 */

:root {
  --bg:        oklch(0.965 0.012 85);
  --bg-warm:   oklch(0.945 0.018 80);
  --surface:   oklch(0.99 0.005 85);
  --surface-2: oklch(0.975 0.008 80);
  --ink:       oklch(0.22 0.015 60);
  --ink-2:     oklch(0.36 0.014 65);
  --muted:     oklch(0.55 0.012 70);
  --muted-2:   oklch(0.68 0.010 75);
  --border:    oklch(0.88 0.012 75);
  --border-strong: oklch(0.78 0.014 75);

  --accent:      oklch(0.42 0.07 160);
  --accent-ink:  oklch(0.32 0.07 160);
  --accent-tint: oklch(0.94 0.03 160);
  --accent-on:   #fdfbf6;

  --ochre:      oklch(0.66 0.11 60);
  --ochre-tint: oklch(0.94 0.04 70);
  --ochre-ink:  oklch(0.42 0.11 60);

  --font-display: "Newsreader", "Source Serif 4", Georgia, serif;
  --font-sans:    "Geist", ui-sans-serif, system-ui, sans-serif;
  --font-mono:    "Geist Mono", ui-monospace, monospace;
}

@media (min-width: 540px) {
  *, *::before, *::after { box-sizing: border-box; }
  html, body { margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: var(--font-sans);
    background: var(--bg);
    color: var(--ink);
    font-size: 15px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
  }
  body::before {
    content: "";
    position: fixed; inset: 0;
    pointer-events: none;
    background-image: radial-gradient(oklch(0.78 0.014 75 / 0.18) 0.5px, transparent 0.5px);
    background-size: 3px 3px;
    opacity: 0.35;
    z-index: 0;
  }
  a { color: var(--accent-ink); }
  a:hover { color: var(--ink); }

  .el-app {
    min-height: 100vh;
    background: var(--bg);
    color: var(--ink);
    font-family: var(--font-sans);
    font-size: 15px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    position: relative;
    overflow-x: clip;
    transition: background 500ms ease, color 500ms ease;
  }
  .el-app *, .el-app *::before, .el-app *::after { box-sizing: border-box; }
  .el-app a { color: inherit; text-decoration: none; }
  .el-app button { font: inherit; color: inherit; cursor: pointer; }
  .el-app::before {
    content: "";
    position: fixed; inset: 0;
    pointer-events: none; z-index: 0;
    background-image: radial-gradient(oklch(0.72 0.014 75 / 0.14) 0.5px, transparent 0.5px);
    background-size: 3.5px 3.5px;
    opacity: 0.5;
    transition: opacity 500ms ease;
  }
  .el-app > * { position: relative; z-index: 1; }

/* ============================================================
   SUNSET HERO — the provided painting as a full-bleed background,
   with a subtle Ken-Burns drift + cursor parallax, a legibility
   scrim, grain, and the nav + copy layered over it.
   ============================================================ */

.grd {
  --ink2:  #16241f;
  --cream: #f6ddb0;
  --gold:  #f5a233;

  position: relative;
  min-height: 100vh;
  overflow: hidden;
  isolation: isolate;
  background: #2a1608;
  font-family: var(--font-sans);
  color: #fff;
}

/* wide painting as a full-bleed cover background */
.grd-photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: 50% 42%;
  opacity: 0; transition: opacity 900ms ease;
}
.grd.ready .grd-photo { opacity: 1; }

/* ── Legibility scrim for the copy (bottom-left) ───────────── */
.grd-scrim {
  position: absolute; inset: 0; z-index: 6; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 62% at 20% 92%, rgba(20,10,4,.62) 0%, transparent 60%),
    linear-gradient(0deg, rgba(20,10,4,.45) 0%, transparent 30%),
    linear-gradient(180deg, rgba(20,10,4,.28) 0%, transparent 18%);
}

/* ── Floating nav ──────────────────────────────────────────── */
.grd-topwrap {
  position: fixed; top: 0; left: 0; right: 0; z-index: 30;
  display: flex; flex-direction: column; align-items: center; gap: 10px; padding: 20px 20px 0;
  transition: padding 340ms cubic-bezier(.4,0,.2,1);
}
.grd-nav {
  position: relative;
  width: 100%; max-width: 1180px;
  display: flex; align-items: center; gap: 20px;
  padding: 11px 12px 11px 22px;
  background: rgba(248,240,228,.9);
  border: 1px solid rgba(255,255,255,.5); border-radius: 18px;
  box-shadow: 0 10px 30px rgba(60,25,10,.24);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  transition: max-width 340ms cubic-bezier(.4,0,.2,1), border-radius 340ms cubic-bezier(.4,0,.2,1),
              padding 340ms cubic-bezier(.4,0,.2,1),
              box-shadow 300ms ease, background 240ms ease, border-color 240ms ease;
}

/* Scrolled: the pill grows UPWARD to fill the empty space above it and
   sits flush against the top edge as a full-width bar. Content stays put
   (extra top padding absorbs the collapsed gap) — nothing moves up. */
.grd-topwrap.is-stuck { padding: 0; }
.grd-topwrap.is-stuck .grd-nav {
  max-width: none; border-radius: 0;
  padding-top: 31px; padding-bottom: 11px;
  border-color: transparent;
  border-bottom: 1px solid rgba(60,25,10,.12);
  background: rgba(248,240,228,.96);
  box-shadow: 0 6px 20px rgba(60,25,10,.12);
}
.grd-brand { display: inline-flex; align-items: center; gap: 2px; }
.grd-brand img { width: 26px; height: 26px; object-fit: contain; transform: translateY(-2px); }
.grd-brand span { font-family: var(--font-display); font-size: 20px; color: #000000; font-weight: 600; letter-spacing: -0.015em; }
.grd-brand span em { font-style: italic; font-weight: 400; }
.grd-nav .spacer { flex: 1; }
.grd-nav-links { display: flex; align-items: center; gap: 4px; }
.grd-nav-links a {
  font-size: 14px; font-weight: 600; color: #3a4a43; padding: 8px 14px; border-radius: 10px; text-decoration: none;
  display: inline-flex; align-items: center; gap: 5px; transition: background 140ms, color 140ms;
}
.grd-nav-links a:hover { background: rgba(22,36,31,.08); color: var(--ink2); }

/* ── Editions dropdown ─────────────────────────────────────── */
.grd-ed-menu { display: inline-flex; }
.grd-ed-trigger {
  font-family: var(--font-sans);
  font-size: 14px; color: #3a4a43; padding: 8px 14px; border-radius: 10px;
  background: none; border: none; cursor: pointer;
  display: inline-flex; align-items: center; gap: 5px;
  transition: background 140ms, color 140ms;
}
.grd-ed-trigger:hover, .grd-ed-trigger.active { background: rgba(22,36,31,.08); color: var(--ink2); }
.grd-ed-trigger svg { transition: transform 200ms ease; }
.grd-ed-menu.open .grd-ed-trigger svg { transform: rotate(180deg); }

.grd-ed-panel {
  position: absolute; top: calc(100% + 12px); left: 50%;
  transform: translateX(-50%) translateY(-6px) scale(.99);
  transform-origin: top center;
  width: min(880px, calc(100vw - 48px));
  background: rgba(248,240,228,.96);
  border: 1px solid rgba(255,255,255,.55); border-radius: 20px;
  box-shadow: 0 20px 50px rgba(60,25,10,.28);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  padding: 16px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 180ms ease, transform 200ms cubic-bezier(.2,.7,.3,1), visibility 0s linear 180ms;
  z-index: 40;
}
.grd-ed-menu.open .grd-ed-panel {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0) scale(1);
  transition: opacity 180ms ease, transform 200ms cubic-bezier(.2,.7,.3,1);
}
.grd-ed-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.grd-ed-card {
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; align-items: flex-start;
  padding: 18px 18px 20px; border-radius: 14px;
  background: #fffaf1; border: 1px solid rgba(22,36,31,.1);
  text-decoration: none; text-align: left;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}
.grd-ed-card:hover {
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--hue-solid) 45%, transparent);
  box-shadow: 0 12px 28px rgba(60,25,10,.16);
}
.grd-ed-card .glyph {
  position: absolute; top: -6px; right: 10px;
  font-family: var(--font-display); font-size: 62px; line-height: 1;
  color: color-mix(in srgb, var(--hue-solid) 14%, transparent);
  pointer-events: none;
}
.grd-ec-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--hue-solid); color: #fff; margin-bottom: 12px;
}
.grd-ec-name {
  font-family: var(--font-display); font-size: 19px; color: var(--ink2);
  letter-spacing: -0.01em; line-height: 1.1;
}
.grd-ec-tag {
  font-family: var(--font-mono); font-size: 10.5px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: color-mix(in srgb, var(--hue-solid) 78%, #3a4a43);
  margin: 6px 0 9px;
}
.grd-ec-line { font-size: 13px; line-height: 1.45; color: #4a5751; }
@media (max-width: 720px) {
  .grd-ed-cards { grid-template-columns: 1fr; }
}

/* Solo image card */
.grd-ed-imgcard {
  padding: 0; background: none; border: none; overflow: visible;
  gap: 0;
}
.grd-ed-imgcard:hover {
  transform: translateY(-3px); box-shadow: none; border: none;
}
.grd-ec-photo {
  display: block; width: 100%; aspect-ratio: 4 / 3;
  border-radius: 14px; border: 1px solid rgba(22,36,31,.14);
  background-size: cover; background-position: center;
  box-shadow: 0 6px 18px rgba(60,25,10,.14);
  transition: box-shadow 160ms ease;
}
.grd-ed-imgcard:hover .grd-ec-photo { box-shadow: 0 12px 28px rgba(60,25,10,.22); }
.grd-ec-label {
  display: block; margin-top: 12px;
  font-family: var(--font-display); font-size: 20px; color: var(--ink2);
  letter-spacing: -0.01em;
}
.el-app .grd-nav-cta {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 16px; border-radius: 11px;
  background: var(--ink2); color: #fff;
  font-size: 14px; font-weight: 600; border: none; text-decoration: none;
  transition: filter 160ms;
}
.el-app .grd-nav-cta:hover { filter: brightness(1.25); }
.el-app .grd-nav-login {
  padding: 9px 14px; border-radius: 11px; font-size: 14px; font-weight: 600; color: #3a4a43;
  text-decoration: none; transition: background 140ms;
}
.el-app .grd-nav-login:hover { background: rgba(22,36,31,.08); }
.grd-ribbon {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 7px 8px 7px 16px; border-radius: 999px;
  background: rgba(245,162,51,.85); border: 1px solid rgba(159,64,28,.5);
  font-size: 12.5px; color: #3a1c0e;
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.grd-ribbon a {
  color: #3a1c0e; font-weight: 600; text-decoration: underline; text-underline-offset: 2px;
  padding: 3px 10px; border-radius: 999px; background: rgba(255,255,255,.45);
}

/* ── Hero copy (bottom-left) ───────────────────────────────── */
.grd-copy { position: absolute; z-index: 10; left: 6%; bottom: 13%; max-width: 620px; }
.grd-eyebrow {
  font-family: var(--font-mono); font-size: 11px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--cream);
  margin-bottom: 18px; display: inline-flex; align-items: center; gap: 9px;
}
.grd-eyebrow .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }
.grd-copy h1 {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(46px, 6vw, 88px); line-height: 0.98; letter-spacing: -0.03em;
  color: #fff; margin: 0 0 18px; text-wrap: balance;
  text-shadow: 0 2px 34px rgba(20,8,4,.6);
}
.grd-copy h1 em { font-style: italic; color: var(--cream); }
.grd-copy p {
  font-size: 18px; font-weight: 500; line-height: 1.5; color: rgba(255,246,235,.95); max-width: 40ch; margin: 0 0 28px;
  text-shadow: 0 1px 18px rgba(20,8,4,.6);
}
.grd-cta-row { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.el-app .grd-cta {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 24px; border-radius: 14px;
  background: #f8f0e4; color: var(--ink2);
  font-size: 15px; font-weight: 500; border: none; text-decoration: none;
  transition: transform 160ms, box-shadow 160ms;
  box-shadow: 0 10px 30px rgba(20,8,4,.38);
}
.el-app .grd-cta:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(20,8,4,.48); }
.grd-cta svg { transition: transform 160ms; }
.grd-cta:hover svg { transform: translateX(3px); }
.el-app .grd-cta--ghost {
  background: rgba(255,255,255,.14); color: #fff;
  border: 1px solid rgba(255,255,255,.45); box-shadow: none; backdrop-filter: blur(4px);
}
.el-app .grd-cta--ghost:hover { background: rgba(255,255,255,.24); box-shadow: none; }

.grd-scroll {
  position: absolute; z-index: 10; bottom: 24px; left: 50%; transform: translateX(-50%);
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,246,235,.82); display: flex; flex-direction: column; align-items: center; gap: 8px;
  text-decoration: none; cursor: pointer;
  transition: color 180ms ease;
}
.grd-scroll:hover { color: #fff; }
.grd-scroll .chev {
  display: block;
  transition: transform 260ms cubic-bezier(.6,0,.3,1);
}
.grd-scroll.up .chev { transform: rotate(180deg); }
.grd-scroll:hover .chev {
  animation: grd-chev-nudge 1100ms cubic-bezier(.6,0,.3,1) infinite;
}
.grd-scroll.up:hover .chev {
  animation: grd-chev-nudge-up 1100ms cubic-bezier(.6,0,.3,1) infinite;
}
@keyframes grd-chev-nudge {
  0%, 100% { transform: translateY(0); }
  30%      { transform: translateY(4px); }
}
@keyframes grd-chev-nudge-up {
  0%, 100% { transform: rotate(180deg) translateY(0); }
  30%      { transform: rotate(180deg) translateY(4px); }
}
@media (prefers-reduced-motion: reduce) {
  .grd-scroll:hover .chev,
  .grd-scroll.up:hover .chev { animation: none; }
}

@media (max-width: 860px) {
  .grd-nav-links, .el-app .grd-nav-login { display: none; }
  .grd-copy { left: 6%; right: 6%; bottom: 11%; }
}

/* ============================================================
   SOCIAL PROOF — compact scrolling marquee of our audience,
   a quiet bridge between the dark hero and the light editions.
   ============================================================ */
.el-app .grd-proof {
  display: flex; align-items: center; gap: 22px;
  background: #191911;
  padding: 16px 40px;
  overflow: hidden;
}
.grd-proof .gp-label {
  flex-shrink: 0;
  font-family: var(--font-mono); font-size: 10.5px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase; color: rgba(246,221,176,.6);
}
.grd-proof .gp-marquee {
  position: relative; flex: 1; min-width: 0; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.grd-proof .gp-track {
  display: flex; align-items: center; gap: 40px; width: max-content;
  animation: gp-scroll 34s linear infinite;
}
.grd-proof .gp-marquee:hover .gp-track { animation-play-state: paused; }
.grd-proof .gp-mark {
  font-family: var(--font-display); font-size: 17px; letter-spacing: -0.01em;
  color: rgba(246,221,176,.6); white-space: nowrap;
}
@keyframes gp-scroll { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .grd-proof .gp-track { animation: none; }
}
@media (max-width: 720px) {
  .el-app .grd-proof { padding: 14px 20px; gap: 16px; }
  .grd-proof .gp-label { display: none; }
}

/* ============================================================
   PRODUCTS — a flat row of edition photos, the section title
   living in the fourth cell (no enclosing container).
   ============================================================ */
.el-app .grd-prod {
  max-width: 100%; margin: 0 auto; padding: 0;
}
.grd-prod-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  align-items: stretch;
}

/* Each photo card — full-bleed image with caption overlaid bottom-left */
.el-app .grd-prod-card {
  position: relative; display: block; overflow: hidden;
  min-height: 480px; text-decoration: none;
  isolation: isolate;
}
.grd-prod-photo {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
  transition: transform 700ms cubic-bezier(.2,.7,.3,1);
}
.grd-prod-card:hover .grd-prod-photo { transform: scale(1.045); }
/* darkening fade at the bottom for caption legibility */
.grd-prod-card::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(0deg, rgba(18,9,3,.82) 0%, rgba(18,9,3,.4) 30%, transparent 56%);
}
/* grainy noise confined to the bottom ~30% of the card, sits ABOVE
   the darkening gradient so it stays visible; dark speckles */
.grd-prod-card::before {
  content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='200'%20height='200'%3E%3Cfilter%20id='ng'%3E%3CfeTurbulence%20type='fractalNoise'%20baseFrequency='0.9'%20numOctaves='3'%20stitchTiles='stitch'/%3E%3CfeColorMatrix%20type='matrix'%20values='0%200%200%200%200%200%200%200%200%200%200%200%200%200%200%201%200%200%200%200'/%3E%3C/filter%3E%3Crect%20width='100%25'%20height='100%25'%20filter='url(%23ng)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  opacity: 0.65;
  -webkit-mask-image: linear-gradient(0deg, #000 0%, #000 18%, transparent 30%);
          mask-image: linear-gradient(0deg, #000 0%, #000 18%, transparent 30%);
}
.grd-prod-cap {
  position: absolute; z-index: 3; left: 26px; right: 22px; bottom: 26px;
  display: flex; flex-direction: column; gap: 4px;
}
.grd-prod-cap .nm {
  font-family: var(--font-display); font-size: 22px; font-weight: 500; letter-spacing: -0.015em;
  color: var(--gold); line-height: 1.08;
}
.grd-prod-cap .rl {
  font-size: 12px; color: rgba(255,246,235,.9);
  text-shadow: 0 1px 10px rgba(20,8,4,.5);
}

/* Fourth cell — the section title */
.grd-prod-title {
  display: flex; flex-direction: column; justify-content: center;
  padding: 40px 44px; background: #000000;
  border: 1px solid #000000;
}
.grd-prod-title h2 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(38px, 3.4vw, 58px); line-height: 0.98; letter-spacing: -0.028em;
  color: #f6ede0; margin: 0 0 16px; text-wrap: balance;
}
.grd-prod-title p {
  font-size: 16px; line-height: 1.5; color: rgba(246,237,224,.7);
  margin: 0 0 40px; max-width: 30ch;
}
.el-app .grd-prod-more {
  display: inline-flex; align-items: center; gap: 16px;
  font-family: var(--font-mono); font-size: 11.5px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase; color: #f6ede0;
  text-decoration: none; align-self: flex-start;
}
.grd-prod-more .circ {
  display: inline-grid; place-items: center; width: 38px; height: 38px;
  border-radius: 50%; border: 1px solid rgba(246,237,224,.4);
  color: #f6ede0;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}
.grd-prod-more:hover .circ { background: #f6ede0; color: #000; }
.grd-prod-more .circ svg { transition: transform 180ms ease; }
.grd-prod-more:hover .circ svg { transform: translateX(2px); }

@media (max-width: 1100px) {
  .grd-prod-grid { grid-template-columns: repeat(2, 1fr); }
  .el-app .grd-prod-card { min-height: 420px; }
}
@media (max-width: 620px) {
  .grd-prod-grid { grid-template-columns: 1fr; }
  .grd-prod-title { padding: 36px 26px; }
}

/* Shared desktop footer, preserved from src/el.css. */
.el-foot {
  max-width: 1240px; margin: 0 auto; padding: 64px 40px 36px;
}
.el-foot .ef-top {
  display: grid;
  grid-template-columns: minmax(200px, 1fr) 3fr;
  gap: 40px;
  padding-bottom: 56px;
}
.el-foot .ef-brand { display: inline-flex; align-items: center; gap: 2px; align-self: flex-start; }
.el-foot .ef-brand img {
  width: 28px; height: 28px; object-fit: contain; display: block;
  transform: translateY(-2px);
  transition: filter 400ms ease;
}
.el-foot .ef-brand .wm {
  font-family: var(--font-display); font-size: 21px;
  font-weight: 600; letter-spacing: -0.015em; color: #000000;
}
.el-foot .ef-brand .wm em { font-style: italic; font-weight: 400; }
.el-foot .ef-cols {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
}
.el-foot .ef-col { display: flex; flex-direction: column; gap: 18px; }
.el-foot .ef-h {
  font-family: var(--font-display); font-size: 17px; font-weight: 600;
  letter-spacing: -0.01em; color: var(--ink); margin-bottom: 4px;
}
.el-foot .ef-col a {
  font-size: 14px; color: var(--ink-2); width: fit-content;
  transition: color 140ms ease;
}
.el-foot .ef-col a:hover { color: var(--accent-ink); }
.el-foot .ef-bottom {
  display: flex; align-items: center; justify-content: center; gap: 28px; flex-wrap: wrap;
  padding-top: 26px;
}
.el-foot .ef-social { display: flex; align-items: center; gap: 16px; }
.el-foot .ef-social a {
  color: var(--muted); display: inline-flex; transition: color 140ms ease;
}
.el-foot .ef-social a:hover { color: var(--ink); }
.el-foot .ef-legal {
  display: flex; align-items: center; gap: 22px; flex-wrap: wrap;
  font-size: 12.5px; color: var(--muted);
}
.el-foot .ef-legal a { color: var(--muted); transition: color 140ms ease; }
.el-foot .ef-legal a:hover { color: var(--ink); }

@media (max-width: 860px) {
  .el-foot { padding: 48px 24px 56px; }
  .el-foot .ef-top { grid-template-columns: 1fr; gap: 36px; padding-bottom: 40px; }
  .el-foot .ef-cols { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .el-foot .ef-bottom { gap: 18px; }
  .el-foot .ef-legal { gap: 16px; }
}
}
