/*
  Brand stylesheet — a print-shop canvas: paper, ink, and two spot
  colors borrowed from registration marks (magenta, cyan), plus a trace
  of yellow used only as a mark, never a fill. Shared by the homepage
  and the branded inner pages (taxonomy term pages, and later the marks
  archive/single) — see gli_is_branded_view() in inc/enqueue.php. The
  base-tag resets below are scoped to body.gli-branded, a class added by
  that same function, since WordPress only adds body_class('home') on
  the front page itself.
*/

:root{
  --paper:#ffffff;
  --canvas:#f6f4ee;
  --ink:#15130f;
  --ink-soft:#6e6a60;
  --ink-faint:#79736a;
  --line:#e6e1d3;
  --magenta:#e5136b;
  --cyan:#0b96b0;
  --yellow:#f0b400;
  --radius-sm:2px;
  --maxw:1280px;
  --ease:cubic-bezier(.16,.84,.32,1);
}

body.gli-branded{
  margin:0;
  background:var(--paper);
  color:var(--ink);
  font-family:'Manrope',ui-sans-serif,system-ui,sans-serif;
  font-size:16px;
  line-height:1.5;
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
}
body.gli-branded h1, body.gli-branded h2, body.gli-branded h3{
  font-family:'Bricolage Grotesque',ui-sans-serif,system-ui,sans-serif;
  font-weight:700;
  margin:0;
  text-wrap:balance;
  letter-spacing:-0.01em;
}
body.gli-branded p{ margin:0; }
body.gli-branded a{ color:inherit; text-decoration:none; }
body.gli-branded img, body.gli-branded svg{ display:block; max-width:100%; }
body.gli-branded button{ font-family:inherit; cursor:pointer; background:none; border:none; color:inherit; }
body.gli-branded ::selection{ background:var(--magenta); color:#fff; }

.mono{ font-family:'IBM Plex Mono',ui-monospace,monospace; letter-spacing:0.01em; }
.eyebrow{
  font-family:'IBM Plex Mono',ui-monospace,monospace;
  font-size:12px; font-weight:500; letter-spacing:0.14em; text-transform:uppercase;
  color:var(--ink-soft);
  display:inline-flex; align-items:center; gap:8px;
}
.eyebrow::before{ content:""; width:6px; height:6px; background:var(--magenta); display:inline-block; }
.wrap{ max-width:var(--maxw); margin:0 auto; padding-inline:clamp(20px,5vw,56px); }
.tabular{ font-variant-numeric:tabular-nums; }

/* Breadcrumb — used on taxonomy term pages and static pages alike. */
.crumbs{
  display:flex; align-items:center; gap:8px; flex-wrap:wrap;
  font-family:'IBM Plex Mono',ui-monospace,monospace; font-size:12px; color:var(--ink-faint);
}
.crumbs a{ transition:color .2s ease; }
.crumbs a:hover{ color:var(--ink); }
.crumbs .sep{ color:var(--line); }
.crumbs .crumb-current{ color:var(--ink-soft); }

/* Generated placeholder tile (see gli_fallback_tile() in inc/template-tags.php) */
.gli-fallback-tile{
  width:100%; height:100%; display:grid; place-items:center;
  border:1px solid var(--line);
}
.gli-fallback-tile svg{ width:36%; height:36%; }

@media (prefers-reduced-motion: reduce){
  body.gli-branded *{ animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important; scroll-behavior:auto !important; }
}

/* Smooth-scroll rig: #scroll-fill holds the real page height so the
   browser draws a native scrollbar; #scroll-content is fixed and
   lerped by JS. Nav/crosshair are siblings outside it on purpose —
   a transformed ancestor becomes the containing block for anything
   position:fixed inside it, which would break a fixed navbar. */
#scroll-fill{ width:1px; }
#scroll-content{ position:fixed; top:0; left:0; width:100%; will-change:transform; }
.no-smooth #scroll-content{ position:static; }

/* Nav */
.nav{
  position:fixed; top:0; left:0; right:0; z-index:100;
  padding:18px 0;
  transition:transform .5s var(--ease), background-color .4s ease, border-color .4s ease, padding .3s ease;
  border-bottom:1px solid transparent;
}
.nav.solid{
  background:rgba(255,255,255,.82);
  backdrop-filter:blur(14px) saturate(1.4);
  -webkit-backdrop-filter:blur(14px) saturate(1.4);
  border-bottom:1px solid var(--line);
  padding:12px 0;
}
.nav.hide{ transform:translateY(-102%); }
.nav .wrap{ display:flex; align-items:center; justify-content:space-between; gap:24px; }
.brand{
  font-family:'Bricolage Grotesque',sans-serif; font-weight:800; font-size:20px; letter-spacing:-0.02em;
  display:flex; align-items:center; gap:9px;
}
.brand-mark{ width:11px; height:11px; background:var(--magenta); display:inline-block; transform:rotate(45deg); flex:none; }
.nav-links{ display:flex; align-items:center; gap:34px; }
.nav-link{ position:relative; font-size:14.5px; font-weight:600; padding:4px 0; }
.nav-link::after{ content:""; position:absolute; left:0; right:100%; bottom:0; height:1.5px; background:var(--ink); transition:right .35s var(--ease); }
.nav-link:hover::after{ right:0; }
.nav-cta-group{ display:flex; align-items:center; gap:18px; }
.icon-btn{
  width:36px; height:36px; display:grid; place-items:center;
  border:1px solid var(--line); border-radius:var(--radius-sm);
  transition:border-color .25s ease, background .25s ease, transform .25s ease;
}
.icon-btn:hover{ border-color:var(--ink); transform:translateY(-1px); }
.menu-toggle{ display:none; }

.btn{
  display:inline-flex; align-items:center; gap:8px; font-size:14px; font-weight:700;
  padding:11px 20px; border:1px solid var(--ink); border-radius:var(--radius-sm);
  position:relative; overflow:hidden; isolation:isolate;
}
.btn span{ position:relative; z-index:1; transition:color .35s var(--ease); }
.btn::before{ content:""; position:absolute; inset:0; z-index:0; background:var(--ink); transform:translateY(101%); transition:transform .4s var(--ease); }
.btn:hover::before{ transform:translateY(0); }
.btn:hover span{ color:var(--paper); }
.btn.ghost{ border-color:var(--line); }
.btn.ghost::before{ background:var(--canvas); }
.btn.ghost:hover span{ color:var(--ink); }

/* Hero */
.hero{
  position:relative; padding:120px 0 90px;
  background-image:radial-gradient(var(--line) 1px, transparent 1px);
  background-size:26px 26px; background-position:-6px -6px;
}
.hero-grid{ position:relative; z-index:2; display:grid; grid-template-columns:minmax(0,7fr) minmax(0,5fr); gap:40px; align-items:start; }
.hero-spec{ display:inline-flex; align-items:center; gap:10px; font-size:11px; color:var(--ink-faint); padding:6px 10px; border:1px solid var(--line); margin-bottom:26px; flex-wrap:wrap; }
.hero-spec b{ color:var(--ink-soft); font-weight:500; }
.hero h1{ font-size:clamp(40px,6vw,74px); line-height:0.98; }
.hero h1 em{ font-style:italic; font-family:'Bricolage Grotesque',sans-serif; color:var(--magenta); }
.hero-sub{ margin-top:26px; max-width:46ch; font-size:17px; color:var(--ink-soft); line-height:1.65; }

.filterbar{ margin-top:38px; display:flex; flex-wrap:wrap; border:1px solid var(--ink); max-width:640px; }
.filterbar .f{ flex:1 1 108px; padding:14px 16px; border-right:1px solid var(--line); display:flex; flex-direction:column; gap:3px; min-width:0; }
.filterbar .f:last-of-type{ border-right:none; }
.filterbar .f label{ font-family:'IBM Plex Mono',monospace; font-size:10px; letter-spacing:.08em; text-transform:uppercase; color:var(--ink-faint); }
.filterbar select{
  font-family:'Manrope',sans-serif; font-weight:700; font-size:14px;
  border:none; background:none; padding:0 16px 0 0; color:var(--ink);
  appearance:none; -webkit-appearance:none; cursor:pointer;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 6' fill='none'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%2315130f' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat:no-repeat; background-position:right center; background-size:10px 6px;
}
.filterbar .go{
  flex:0 0 auto; background:var(--ink); color:#fff; display:flex; align-items:center; gap:8px;
  padding:0 22px; font-weight:700; font-size:14px; transition:background .25s ease;
}
.filterbar .go:hover{ background:var(--magenta); }

.hero-canvas{ position:relative; height:440px; }
.float-tile{
  position:absolute; width:104px; height:104px; display:grid; place-items:center;
  border:1px solid var(--line); animation:bob 7s ease-in-out infinite; transition:transform .4s var(--ease);
}
.float-tile:hover{ transform:scale(1.08) rotate(0deg) !important; z-index:5; border-color:var(--ink); }
.float-tile svg{ width:38px; height:38px; }
.float-tile.letter{ font-family:'Bricolage Grotesque',sans-serif; font-weight:800; font-size:38px; }
@keyframes bob{ 0%,100%{ transform:translateY(0) rotate(var(--r,0deg)); } 50%{ transform:translateY(-14px) rotate(var(--r,0deg)); } }

/* Stats */
.stats{ border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.stats .wrap{ display:grid; grid-template-columns:repeat(4,1fr); }
.stat{ padding:26px 22px; border-right:1px solid var(--line); }
.stat:last-child{ border-right:none; }
.stat .n{ font-family:'Bricolage Grotesque',sans-serif; font-weight:800; font-size:clamp(26px,3vw,38px); }
.stat .l{ margin-top:4px; font-size:12.5px; color:var(--ink-soft); }

/* Section scaffolding */
section.block{ padding:96px 0; }
section.block.tint{ background:var(--canvas); }
.block-head{ display:flex; justify-content:space-between; align-items:flex-end; gap:24px; margin-bottom:48px; flex-wrap:wrap; }
.block-head h2{ font-size:clamp(28px,3.4vw,42px); max-width:16ch; }
.block-head p{ color:var(--ink-soft); max-width:36ch; font-size:15px; }

.reveal{ opacity:0; transform:translateY(28px); transition:opacity .8s var(--ease), transform .8s var(--ease); transition-delay:var(--d,0s); }
.reveal.on{ opacity:1; transform:translateY(0); }

/* Explore tabs */
.tabs{ display:flex; gap:6px; flex-wrap:wrap; border-bottom:1px solid var(--line); position:relative; margin-bottom:34px; }
.tab-btn{ padding:12px 4px; margin-right:26px; font-size:14.5px; font-weight:700; color:var(--ink-faint); position:relative; transition:color .25s ease; }
.tab-btn.active{ color:var(--ink); }
.tab-indicator{ position:absolute; bottom:-1px; height:2px; background:var(--magenta); transition:left .4s var(--ease), width .4s var(--ease); }
.tab-panel{ display:none; }
.tab-panel.active{ display:block; }
.chip-grid{ display:grid; grid-template-columns:repeat(auto-fill,minmax(190px,1fr)); gap:12px; }
.chip{
  position:relative; border:1px solid var(--line); padding:20px 18px;
  display:flex; flex-direction:column; gap:20px; justify-content:space-between; min-height:96px;
  transition:border-color .3s ease, background .3s ease, transform .3s var(--ease);
}
.chip:hover{ border-color:var(--ink); transform:translateY(-3px); }
.chip .name{ font-weight:700; font-size:15px; }
.chip .count{ font-family:'IBM Plex Mono',monospace; font-size:11px; color:var(--ink-faint); }
.chip::before,.chip::after{ content:""; position:absolute; width:9px; height:9px; opacity:0; transition:opacity .3s ease; }
.chip::before{ top:-1px; left:-1px; border-top:2px solid var(--magenta); border-left:2px solid var(--magenta); }
.chip::after{ bottom:-1px; right:-1px; border-bottom:2px solid var(--magenta); border-right:2px solid var(--magenta); }
.chip:hover::before,.chip:hover::after{ opacity:1; }

/* Trending carousel */
.carousel-head{ display:flex; align-items:flex-end; justify-content:space-between; margin-bottom:34px; gap:20px; flex-wrap:wrap; }
.carousel-nav{ display:flex; gap:8px; }
.car-btn{ width:42px; height:42px; border:1px solid var(--ink); display:grid; place-items:center; transition:background .25s ease; }
.car-btn:hover{ background:var(--ink); }
.car-btn:hover svg{ stroke:#fff; }
.car-btn svg{ width:16px; height:16px; stroke:var(--ink); transition:stroke .25s ease; }

.track{ display:flex; gap:16px; overflow-x:auto; scroll-snap-type:x proximity; padding-bottom:8px; cursor:grab; scrollbar-width:none; }
.track::-webkit-scrollbar{ display:none; }
.track.dragging{ cursor:grabbing; scroll-snap-type:none; }
/* Unsplash-style card: just the image, rounded, with the title and the
   share/save icons appearing only on hover instead of a permanent
   footer bar. */
.mcard{
  flex:0 0 auto; width:252px; aspect-ratio:1/1; scroll-snap-align:start;
  border:1px solid var(--line); border-radius:12px; position:relative; overflow:hidden;
}
.mcard-face{ position:absolute; inset:0; display:grid; place-items:center; transition:transform .55s var(--ease); }
.mcard:hover .mcard-face{ transform:scale(1.06); }
.mcard-face svg{ width:64px; height:64px; }
.mcard-face.letter{ font-family:'Bricolage Grotesque',sans-serif; font-weight:800; font-size:66px; }
.mcard-face img.gli-mark-image{ width:100%; height:100%; object-fit:cover; }

.mcard-link{ position:absolute; inset:0; z-index:1; }

/* Bottom title scrim — hidden until hover */
.mcard-overlay{
  position:absolute; left:0; right:0; bottom:0; z-index:2; padding:28px 14px 12px;
  background:linear-gradient(180deg, rgba(21,19,15,0) 0%, rgba(21,19,15,.68) 100%);
  opacity:0; transform:translateY(6px); transition:opacity .25s var(--ease), transform .25s var(--ease);
  pointer-events:none;
}
.mcard:hover .mcard-overlay{ opacity:1; transform:translateY(0); }
.mcard-title{
  display:block; color:#fff; font-family:'Manrope',sans-serif; font-weight:700; font-size:13.5px;
  overflow:hidden; text-overflow:ellipsis; white-space:nowrap;
}

/* Top-right quick-action icons (share / save) — hidden until hover.
   Selectors deliberately don't use the words "share"/"save" in class
   names — see the comment in gli_mark_card() for why. */
.mcard-actions{
  position:absolute; top:10px; right:10px; z-index:3; display:flex; gap:8px;
  opacity:0; transform:translateY(-6px); transition:opacity .25s var(--ease), transform .25s var(--ease);
}
.mcard:hover .mcard-actions,
.mcard:focus-within .mcard-actions{ opacity:1; transform:translateY(0); }
.mcard-actions .mcard-icon-btn{
  width:32px; height:32px; aspect-ratio:1/1; box-sizing:border-box;
  padding:0; margin:0; border:0; appearance:none; -webkit-appearance:none;
  border-radius:50%; background:rgba(255,255,255,.96); color:var(--ink);
  display:flex; align-items:center; justify-content:center; flex:none;
  box-shadow:0 3px 10px rgba(21,19,15,.2);
  transition:background .2s ease, color .2s ease, transform .2s ease;
}
.mcard-actions .mcard-icon-btn:hover{ transform:scale(1.08); }
.mcard-actions .mcard-icon-btn i{
  font-size:13px; line-height:1; display:block; width:1em; height:1em;
  text-align:center; flex:none;
}
.mcard-actions .mcard-act-a:hover{ background:var(--ink); color:#fff; }
.mcard-actions .mcard-act-b:hover{ background:var(--magenta); color:#fff; }

/* Bottom-right confirmation toast for the save/share quick actions. */
.gli-toast{
  position:fixed; right:20px; bottom:20px; z-index:200;
  display:flex; align-items:center; gap:9px;
  background:var(--ink); color:#fff; font-family:'Manrope',sans-serif; font-weight:600; font-size:13.5px;
  padding:13px 20px; border-radius:999px; box-shadow:0 16px 34px -12px rgba(21,19,15,.4);
  opacity:0; transform:translateY(12px) scale(.97); pointer-events:none;
  transition:opacity .25s var(--ease), transform .25s var(--ease);
}
.gli-toast.is-visible{ opacity:1; transform:translateY(0) scale(1); }
.gli-toast i{ font-size:13px; color:var(--yellow); }
@media (max-width:480px){
  .gli-toast{ left:16px; right:16px; bottom:16px; justify-content:center; }
}

/* Mark grid — a mcard wall arranged as a grid instead of the homepage's
   horizontal .track, used on taxonomy pages, the marks archive, and
   the Explore page. */
.mark-grid{ display:grid; grid-template-columns:repeat(auto-fill,minmax(220px,1fr)); gap:16px; }
.mark-grid .mcard{ width:auto; }

/* Brand-styled pagination (overrides the plain rounded style in style.css) */
.gli-branded .pagination{
  margin-top:44px; display:flex; justify-content:center; gap:8px; flex-wrap:wrap;
}
.gli-branded .pagination .page-numbers{
  font-family:'IBM Plex Mono',ui-monospace,monospace; font-size:13px;
  border:1px solid var(--line); border-radius:var(--radius-sm);
  padding:9px 14px; color:var(--ink-soft); transition:border-color .2s ease, color .2s ease;
}
.gli-branded .pagination .page-numbers:hover{ border-color:var(--ink); color:var(--ink); }
.gli-branded .pagination .page-numbers.current{ background:var(--ink); border-color:var(--ink); color:#fff; }
.gli-branded .pagination .page-numbers.dots{ border-color:transparent; }

/* Color explorer */
.color-wrap{ display:grid; grid-template-columns:minmax(0,1fr) minmax(0,1fr); gap:52px; align-items:center; }
.swatch-list{ display:flex; flex-direction:column; }
.swatch-row{ display:flex; align-items:center; gap:16px; padding:13px 4px; border-bottom:1px solid var(--line); transition:padding-left .3s var(--ease), color .3s ease; }
.swatch-row:hover{ padding-left:14px; }
.swatch-row:hover .swname{ color:var(--magenta); }
.swatch-dot{ width:22px; height:22px; border:1px solid rgba(0,0,0,.06); flex:none; }
.swname{ font-weight:700; font-size:15px; transition:color .3s ease; }
.swcount{ margin-left:auto; font-family:'IBM Plex Mono',monospace; font-size:11.5px; color:var(--ink-faint); }
.color-preview{ border:1px solid var(--line); aspect-ratio:1/0.82; display:grid; grid-template-columns:1fr 1fr; grid-template-rows:1fr 1fr; transition:background .4s ease; }
.color-preview .cell{ display:grid; place-items:center; border-right:1px solid var(--line); border-bottom:1px solid var(--line); }
.color-preview .cell:nth-child(2n){ border-right:none; }
.color-preview .cell:nth-child(n+3){ border-bottom:none; }
.color-preview svg{ width:44px; height:44px; }

/* How it works */
.steps{ display:grid; grid-template-columns:repeat(3,1fr); gap:1px; background:var(--line); border:1px solid var(--line); }
.step{ background:var(--paper); padding:36px 30px 40px; }
.step .idx{ font-family:'IBM Plex Mono',monospace; font-size:12px; color:var(--magenta); }
.step h3{ font-size:21px; margin-top:16px; margin-bottom:12px; }
.step p{ color:var(--ink-soft); font-size:14.5px; line-height:1.65; }

/* Journal */
.journal-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:1px; background:var(--line); border:1px solid var(--line); }
.jcard{ background:var(--paper); padding:26px 22px 28px; display:flex; flex-direction:column; gap:16px; min-height:280px; position:relative; margin-top:0px;}
.jcat{ font-family:'IBM Plex Mono',monospace; font-size:11px; color:var(--cyan); text-transform:uppercase; letter-spacing:.08em; }
.jcard h3{ font-size:18px; line-height:1.28; font-weight:700; font-family:'Manrope',sans-serif; flex:1; transition:color .25s ease; }
.jcard:hover h3{ color:var(--magenta); }
.jmeta{ display:flex; justify-content:space-between; font-size:12px; color:var(--ink-faint); font-family:'IBM Plex Mono',monospace; }
.jcard-link{ position:absolute; inset:0; }
.journal-empty{ border:1px solid var(--line); padding:40px; color:var(--ink-soft); }

/* Newsletter */
.news{ padding:100px 0; text-align:center; }
.news h2{ font-size:clamp(30px,4.6vw,52px); max-width:16ch; margin:0 auto; }
.news-form{ margin:38px auto 0; max-width:460px; display:flex; border-bottom:1.5px solid var(--ink); padding-bottom:10px; }
.news-form input{ flex:1; border:none; outline:none; font-size:16px; font-family:'Manrope',sans-serif; background:none; color:var(--ink); }
.news-form input::placeholder{ color:var(--ink-faint); }
.news-form button{ font-weight:700; font-size:14px; display:flex; align-items:center; gap:6px; }
.news-note{ margin-top:14px; font-size:12px; color:var(--ink-faint); font-family:'IBM Plex Mono',monospace; }

/* Footer */
footer{ background:var(--ink); color:var(--paper); padding-top:80px; }
.foot-grid{ display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr; gap:32px; padding-bottom:60px; border-bottom:1px solid rgba(255,255,255,.14); }
.foot-brand p{ color:rgba(255,255,255,.55); font-size:14px; max-width:32ch; margin-top:14px; line-height:1.6; }
.foot-col h4{ font-family:'IBM Plex Mono',monospace; font-size:11px; letter-spacing:.08em; text-transform:uppercase; color:rgba(255,255,255,.4); margin-bottom:16px; font-weight:500; }
.foot-col a{ display:block; font-size:14.5px; color:rgba(255,255,255,.82); padding:6px 0; width:fit-content; position:relative; }
.foot-col a::after{ content:""; position:absolute; left:0; right:100%; bottom:4px; height:1px; background:#fff; transition:right .3s var(--ease); }
.foot-col a:hover::after{ right:0; }
.foot-social{ display:flex; gap:10px; margin-top:18px; }
.foot-social a{ width:34px; height:34px; border:1px solid rgba(255,255,255,.22); display:grid; place-items:center; transition:background .25s, border-color .25s; }
.foot-social a:hover{ background:var(--magenta); border-color:var(--magenta); }
.foot-social svg{ width:14px; height:14px; stroke:#fff; }

.foot-word{
  font-family:'Bricolage Grotesque',sans-serif; font-weight:800; font-size:clamp(58px,13vw,168px);
  line-height:1; letter-spacing:-0.03em; text-align:center; padding:44px 0 26px;
  color:transparent; -webkit-text-stroke:1px rgba(255,255,255,.5);
  transition:color .5s var(--ease), -webkit-text-stroke .5s ease, letter-spacing .5s var(--ease);
  cursor:default; user-select:none; white-space:nowrap;
}
.foot-word:hover{ color:var(--magenta); -webkit-text-stroke:1px var(--magenta); letter-spacing:0.01em; }

.foot-bottom{
  display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:12px;
  padding:22px 0 30px; border-top:1px solid rgba(255,255,255,.14);
  font-size:12.5px; color:rgba(255,255,255,.5); font-family:'IBM Plex Mono',monospace;
}
.foot-bottom .legal{ display:flex; gap:20px; }
.foot-bottom a:hover{ color:#fff; }

/* Cursor crosshair (hero, desktop only) */
.crosshair{
  position:fixed; top:0; left:0; width:22px; height:22px; pointer-events:none; z-index:200;
  transform:translate(-50%,-50%); opacity:0; transition:opacity .3s ease; mix-blend-mode:difference;
}
.crosshair.on{ opacity:1; }
.crosshair::before,.crosshair::after{ content:""; position:absolute; background:#fff; }
.crosshair::before{ left:50%; top:0; width:1px; height:100%; transform:translateX(-50%); }
.crosshair::after{ top:50%; left:0; height:1px; width:100%; transform:translateY(-50%); }

/* Responsive */
@media (max-width:900px){
  .hero-grid{ grid-template-columns:1fr; }
  .hero-canvas{ height:280px; }
  .stats .wrap{ grid-template-columns:repeat(2,1fr); }
  .stat:nth-child(2){ border-right:none; }
  .color-wrap{ grid-template-columns:1fr; gap:30px; }
  .steps{ grid-template-columns:1fr; }
  .journal-grid{ grid-template-columns:1fr 1fr; }
  .foot-grid{ grid-template-columns:1fr 1fr; row-gap:36px; }
}
@media (max-width:680px){
  .nav-links, .nav-cta-group .btn.ghost{ display:none; }
  .menu-toggle{ display:grid; place-items:center; width:38px; height:38px; border:1px solid var(--line); }
  .filterbar{ flex-direction:column; }
  .filterbar .f{ border-right:none; border-bottom:1px solid var(--line); }
  .journal-grid{ grid-template-columns:1fr; }
  .foot-grid{ grid-template-columns:1fr; }
  section.block{ padding:66px 0; }
  .hero{ padding:126px 0 60px; }
}
