/* ============================================================
   Graalen — long-scroll product landing
   Warm, playful sketch-driven design system (scoped under main.gl)
   ============================================================ */

:root {
  --g-forest: #15803d;
  --g-forest-dark: #166534;
  --g-leaf: #7cb342;
  --g-leaf-soft: #dcfce7;
  --g-mint: #f0fdf4;
  --g-ink: #0f172a;
  --g-slate: #334155;
  --g-muted: #64748b;
  --g-faint: #94a3b8;
  --g-border: #e2e8f0;
  --g-surface: #ffffff;
  --g-bg: #f8fafc;
  --g-mono: ui-monospace, 'SF Mono', 'Fira Code', monospace;
}

/* Montserrat for the whole Graalen page (overrides style.css Outfit) */
body {
  font-family: 'Montserrat', sans-serif;
  -webkit-font-smoothing: antialiased;
}
html { scroll-behavior: smooth; }
html, body { overflow-x: hidden; }

/* Keep header constrained like the other pages */
.gl-header-wrap { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

/* Tighten the space between header and hero on this page only */
.site-header { margin-bottom: 1.25rem; }

/* ── landing scope resets (neutralise global style.css rules) ─ */
main.gl { display: block; }
main.gl section { margin: 0; }
main.gl h1, main.gl h2, main.gl h3, main.gl h4 { margin: 0; line-height: 1.2; }
main.gl p { margin: 0; color: inherit; }
main.gl ul { margin: 0; padding: 0; list-style: none; }
main.gl img { max-width: 100%; }

/* ── layout ──────────────────────────────────────────────── */
.g-section { padding: 5.5rem 0; position: relative; }
.g-wrap { max-width: 1120px; margin: 0 auto; padding: 0 2rem; position: relative; }
.g-band-mint { background: var(--g-mint); }
.g-band-forest { background: var(--g-forest); color: #fff; }
main.gl section { scroll-margin-top: 90px; }

/* ── typography ──────────────────────────────────────────── */
.g-kicker {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--g-mono); font-size: 12px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--g-forest); margin-bottom: 18px;
}
.g-kicker-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--g-leaf); display: inline-block; flex-shrink: 0; }
.g-h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.85rem); font-weight: 700; line-height: 1.1;
  letter-spacing: -0.02em; color: var(--g-ink);
}
.g-h3 { font-size: 1.3rem; font-weight: 700; color: var(--g-ink); line-height: 1.2; }
.g-lead { font-size: 1.15rem; line-height: 1.65; color: var(--g-muted); margin-top: 1.8rem; max-width: 640px; }
.g-body { font-size: 1rem; line-height: 1.65; color: var(--g-muted); }
.g-strong-ink { color: var(--g-ink); font-style: normal; font-weight: 600; }
.g-tag {
  display: inline-block; font-family: var(--g-mono); font-size: 11px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--g-forest);
}

.g-head { max-width: 720px; }
.g-head.g-center { margin-left: auto; margin-right: auto; text-align: center; }
.g-head.g-center .g-lead { margin-left: auto; margin-right: auto; }

/* ── buttons ─────────────────────────────────────────────── */
.g-btn {
  display: inline-flex; align-items: center; gap: 10px; cursor: pointer;
  padding: 0.95rem 1.8rem; border-radius: 14px; border: none;
  background: var(--g-forest); color: #fff; font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem; font-weight: 600; text-decoration: none;
  box-shadow: 0 8px 20px rgba(21,128,61,0.22); transition: all .25s ease; white-space: nowrap;
}
.g-btn:hover { transform: translateY(-2px); background: var(--g-forest-dark); color: #fff; box-shadow: 0 12px 26px rgba(21,128,61,0.30); }
.g-btn:active { transform: translateY(0); }
.g-btn-ghost {
  display: inline-flex; align-items: center; gap: 8px; cursor: pointer;
  padding: 0.95rem 1.6rem; border-radius: 14px;
  background: #fff; color: var(--g-ink); font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem; font-weight: 600; text-decoration: none;
  border: 1px solid var(--g-border); transition: all .25s ease; white-space: nowrap;
}
.g-btn-ghost:hover { border-color: var(--g-forest); color: var(--g-forest); }
.g-btn-ghost-light { background: rgba(255,255,255,0.12); color: #fff; border-color: rgba(255,255,255,0.4); }
.g-btn-ghost-light:hover { background: rgba(255,255,255,0.22); color: #fff; border-color: #fff; }
.g-btn-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.g-btn-arrow { font-size: 1.2em; line-height: 1; }

/* ── beta pill ───────────────────────────────────────────── */
.g-betapill {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid #cfe8d6; border-radius: 999px; padding: 6px 14px;
  font-family: var(--g-mono); font-size: 12px; letter-spacing: 0.04em;
  color: var(--g-forest-dark); background: var(--g-mint);
}
.g-betapill-light { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.35); color: #fff; }
.g-betadot { width: 7px; height: 7px; border-radius: 50%; background: var(--g-leaf); animation: gpulse 2.4s ease-in-out infinite; }
@keyframes gpulse { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }

/* ── float anim ──────────────────────────────────────────── */
@keyframes gfloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
.g-float { animation: gfloat 5.5s ease-in-out infinite; }
.g-float:nth-child(2n) { animation-duration: 6.5s; }
.g-float:nth-child(3n) { animation-duration: 7.2s; }
@media (prefers-reduced-motion: reduce) { .g-float { animation: none; } }

/* ── sketch icon + chip ──────────────────────────────────── */
.g-sketch { object-fit: contain; display: inline-block; }
.g-chip {
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%; background: var(--g-mint); border: 2px solid var(--g-leaf-soft);
  flex-shrink: 0; box-shadow: 0 6px 18px rgba(21,128,61,0.10);
}
.g-chip-white { background: #fff; }

/* ── cards ───────────────────────────────────────────────── */
.g-card {
  background: var(--g-surface); border: 1px solid var(--g-border);
  border-radius: 22px; padding: 2rem; position: relative;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.g-card:hover { transform: translateY(-4px); box-shadow: 0 18px 38px rgba(15,23,42,0.09); }

/* ── grids ───────────────────────────────────────────────── */
.g-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.g-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.g-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.g-split { display: flex; flex-wrap: wrap; gap: 3rem; }
.g-isnot-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; max-width: 920px; margin: 0 auto; }

/* ── hero (Varm) ─────────────────────────────────────────── */
.g-hero { padding-top: 1rem; padding-bottom: 4rem; overflow: hidden; }
.g-hero-grid {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  grid-template-areas:
    "intro art"
    "rest art";
  column-gap: 3rem;
  row-gap: 0;
  align-items: center;
}
.g-hero-intro { grid-area: intro; }
.g-hero-rest { grid-area: rest; }
.g-hero-h1 {
  font-size: clamp(2.1rem, 4.6vw, 3.35rem); font-weight: 700; line-height: 1.12;
  letter-spacing: -0.025em; color: var(--g-ink); margin-top: 1.1rem;
}
.g-hero-h1 em { font-style: normal; }
.g-em-ink { color: var(--g-ink); }
.g-em-green { color: var(--g-forest); }
/* Hand-drawn underline: stroke sits under the word; clearance after stroke = margin
   on the following block (not by shrinking .g-underline-wrap vs the heading). */
.g-underline-wrap {
  position: relative;
  display: inline-block;
  padding-bottom: 0;
}
.g-underline {
  position: absolute;
  left: 0;
  bottom: -0.08em;
  width: 100%;
  height: auto;
  aspect-ratio: 200 / 14;
  max-width: 100%;
  display: block;
  overflow: visible;
  pointer-events: none;
}
main.gl h1:has(.g-underline-wrap) + .g-lead,
main.gl h1:has(.g-underline-wrap) + .g-body,
main.gl h2:has(.g-underline-wrap) + .g-lead {
  margin-top: max(1.95rem, 1.15em + 0.55rem);
}
.g-hero-lead { font-size: 1.22rem; max-width: 540px; }
.g-hero-rest .g-hero-lead { margin-top: max(1.95rem, 1.15em + 0.55rem); }
.g-hero-meta { display: flex; gap: 26px; flex-wrap: wrap; margin-top: 28px; font-size: 0.95rem; font-weight: 600; color: var(--g-slate); }
.g-hero-meta span { display: inline-flex; align-items: center; }
.g-hero-art { grid-area: art; display: flex; justify-content: center; align-self: center; }
.g-hero-art-stage { position: relative; width: 100%; max-width: 420px; aspect-ratio: 1 / 0.95; display: flex; align-items: center; justify-content: center; }

/* ── insight band ────────────────────────────────────────── */
.g-insight {
  border-top: 1px solid var(--g-border); border-bottom: 1px solid var(--g-border);
  background: var(--g-mint);
}
.g-insight-inner {
  max-width: 1120px; margin: 0 auto; padding: 2rem;
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap; justify-content: center; text-align: center;
}
.g-insight-inner p { font-size: 1.15rem; font-weight: 600; color: var(--g-slate); max-width: 760px; line-height: 1.5; }
.g-band-mint .g-insight {
  background: rgba(255, 255, 255, 0.82);
  border-top-color: rgba(226, 232, 240, 0.95);
  border-bottom-color: rgba(226, 232, 240, 0.95);
}

/* ── is / is not ─────────────────────────────────────────── */
.g-clean-list { display: flex; flex-direction: column; gap: 16px; margin-top: 1.25rem; }
.g-list-row { display: flex; align-items: flex-start; gap: 14px; font-size: 1.02rem; line-height: 1.4; }
.g-cross { color: var(--g-faint); font-weight: 700; font-size: 1.1rem; width: 28px; text-align: center; flex-shrink: 0; }
.g-strike { color: var(--g-muted); text-decoration: line-through; text-decoration-color: rgba(100,116,139,0.4); }
.g-card-dashed { background: var(--g-bg); border: 1px dashed var(--g-border); }
.g-card-is { border-color: var(--g-leaf-soft); background: #fff; }
.g-pill-inline {
  display: inline-flex; align-items: center; gap: 12px; padding: 0.75rem 1.1rem;
  background: #fff; border: 1px solid var(--g-border); border-radius: 14px; margin-top: 22px;
}
.g-pill-inline span { font-weight: 600; color: var(--g-ink); }

/* ── modules ─────────────────────────────────────────────── */
.g-module-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }
.g-modchip {
  display: flex; align-items: center; gap: 14px; padding: 1rem 1.2rem;
  background: #fff; border: 1px solid var(--g-border); border-radius: 16px;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.g-modchip:hover { transform: translateY(-3px); border-color: #cfe8d6; box-shadow: 0 12px 24px rgba(15,23,42,0.07); }
.g-modchip span { font-weight: 600; color: var(--g-ink); font-size: 1.02rem; }

/* ── archetypes ──────────────────────────────────────────── */
.g-arch-layout { position: relative; max-width: 760px; margin: 0 auto; }
.g-axislabels { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.g-axis { font-family: var(--g-mono); font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--g-forest-dark); display: inline-flex; align-items: center; gap: 4px; }
.g-arch-card-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.g-arch-tag {
  display: inline-block; font-family: var(--g-mono); font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; padding: 3px 10px; border-radius: 999px;
  background: var(--g-leaf-soft); color: var(--g-forest-dark); margin-bottom: 12px;
}
.g-card-best { background: var(--g-forest); border-color: var(--g-forest); color: #fff; }
.g-card-best .g-h3 { color: #fff; }
.g-card-best .g-arch-tag { background: rgba(255,255,255,0.16); color: #fff; }
.g-card-best .g-body { color: rgba(255,255,255,0.9); }

/* ── process steps ───────────────────────────────────────── */
.g-steps { display: flex; align-items: stretch; justify-content: center; gap: 0.5rem; }
.g-step { flex: 1 1 0; background: #fff; border: 1px solid var(--g-border); border-radius: 20px; padding: 1.6rem; text-align: center; display: flex; flex-direction: column; align-items: center; }
.g-step-arrow { display: flex; align-items: center; padding: 0 2px; flex-shrink: 0; }

/* ── loop band ───────────────────────────────────────────── */
.g-loop-inner { padding: 4.5rem 2rem; }
.g-loop-kicker { color: #bbf7d0; }
.g-loop-kicker .g-kicker-dot { background: #bbf7d0; }
.g-loop-stages { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.g-loop-stage { padding: 0.5rem 1rem; border-radius: 999px; background: rgba(255,255,255,0.14); border: 1px solid rgba(255,255,255,0.3); font-weight: 600; font-size: 0.95rem; }
.g-loop-arrow { align-self: center; color: #bbf7d0; }

/* ── get started ─────────────────────────────────────────── */
.g-getstarted-box { background: var(--g-mint); border: 1px solid var(--g-leaf-soft); border-radius: 28px; padding: clamp(1.8rem, 5vw, 3.5rem); }
.g-mini-card { background: #fff; border: 1px solid var(--g-border); border-radius: 18px; padding: 1.4rem; }
.g-mini-card .g-h3 { font-size: 1.05rem; margin: 0.7rem 0 0.35rem; }
.g-mini-card .g-body { font-size: 0.92rem; }

/* ── deliverables ────────────────────────────────────────── */
.g-delivery-list { display: flex; flex-direction: column; gap: 13px; margin: 0; }
.g-delivery-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 0.98rem; color: var(--g-slate); line-height: 1.45; }

/* ── final cta ───────────────────────────────────────────── */
.g-finalcta { text-align: center; max-width: 720px; margin: 0 auto; position: relative; }
.g-finalcta-chips { display: flex; justify-content: center; gap: 16px; margin-bottom: 20px; }
.g-finalcta-btns { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; margin-top: 30px; }

/* ── demo modal ──────────────────────────────────────────── */
.dm-overlay { position: fixed; inset: 0; background: rgba(15,23,42,0.5); backdrop-filter: blur(4px); display: flex; align-items: center; justify-content: center; padding: 1.5rem; z-index: 2000; animation: dmfade .2s ease; }
.dm-overlay[hidden] { display: none; }
@keyframes dmfade { from { opacity: 0; } to { opacity: 1; } }
.dm-card { background: #fff; border-radius: 24px; padding: 2rem; max-width: 640px; width: 100%; max-height: 92vh; overflow-y: auto; position: relative; box-shadow: 0 30px 80px rgba(0,0,0,0.3); animation: dmpop .25s cubic-bezier(.2,.8,.2,1); }
@keyframes dmpop { from { transform: translateY(14px) scale(.98); opacity: 0; } to { transform: none; opacity: 1; } }
.dm-close { position: absolute; top: 1rem; right: 1.1rem; background: none; border: none; font-size: 28px; line-height: 1; color: var(--g-faint); cursor: pointer; transition: color .2s; }
.dm-close:hover { color: var(--g-ink); }
.dm-head { display: flex; align-items: center; gap: 14px; margin-bottom: 6px; }
.dm-head h3 { font-size: 1.5rem; font-weight: 700; color: var(--g-ink); margin: 8px 0 0; }
.dm-intro { color: var(--g-muted); margin: 0 0 1.25rem; line-height: 1.55; }
.dm-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.dm-field { margin-bottom: 1rem; }
.dm-label { display: block; font-family: var(--g-mono); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--g-faint); margin-bottom: 6px; }
.dm-label-soft { text-transform: none; letter-spacing: 0; font-family: 'Montserrat', sans-serif; color: var(--g-faint); }
.dm-input { width: 100%; border: 1px solid var(--g-border); border-radius: 12px; padding: 11px 14px; font-size: 14px; font-family: 'Montserrat', sans-serif; color: var(--g-ink); background: #fff; outline: none; transition: border-color .15s, box-shadow .15s; }
.dm-input:focus { border-color: var(--g-leaf); box-shadow: 0 0 0 3px rgba(124,179,66,0.18); }
.dm-input--error { border-color: #e24b4a; }
textarea.dm-input { resize: vertical; line-height: 1.55; }
.dm-submit-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-top: 8px; }
.dm-note { font-size: 12px; color: var(--g-faint); margin: 0; max-width: 240px; line-height: 1.5; }
.dm-success { text-align: center; padding: 1.5rem 0.5rem; }
.dm-success h3 { font-size: 1.6rem; font-weight: 700; color: var(--g-ink); margin: 1rem 0 0.5rem; }
.dm-success p { color: var(--g-muted); line-height: 1.6; margin: 0; }
.dm-error { font-size: 13px; color: #e24b4a; margin-top: 1rem; }
.dm-error a { color: #e24b4a; }

/* ── centered text hero (home / advisory) ───────────────── */
.g-hero-center { padding-top: 1rem; padding-bottom: 3.5rem; text-align: center; overflow: hidden; }
.g-hero-center .g-wrap { max-width: 880px; }
.g-hero-center .g-hero-h1 { margin-left: auto; margin-right: auto; max-width: 760px; }
.g-hero-center .g-lead { margin-left: auto; margin-right: auto; text-align: center; }
.g-hero-chips { display: flex; justify-content: center; gap: 16px; margin-bottom: 28px; flex-wrap: wrap; }
.g-hero-sub { font-size: 1.05rem; font-weight: 600; color: var(--g-slate); margin-top: 1.5rem; }

/* ── "two ways" cards (home) ─────────────────────────────── */
.g-two-ways { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; max-width: 760px; margin: 2.25rem auto 0; }
.g-way-card {
  display: flex; align-items: center; gap: 18px; text-align: left;
  background: #fff; border: 1px solid var(--g-border); border-radius: 22px;
  padding: 1.5rem 1.6rem; text-decoration: none;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.g-way-card:hover { transform: translateY(-4px); border-color: var(--g-leaf-soft); box-shadow: 0 18px 38px rgba(15,23,42,0.09); }
.g-way-text { flex: 1; display: flex; flex-direction: column; gap: 3px; }
.g-way-title { display: block; font-weight: 700; color: var(--g-ink); font-size: 1.2rem; line-height: 1.25; }
.g-way-sub { display: block; color: var(--g-muted); font-size: 0.95rem; line-height: 1.4; }
.g-way-arrow { color: var(--g-forest); font-size: 1.4rem; font-weight: 700; line-height: 1; }

/* ── team cards ──────────────────────────────────────────── */
/* Same-row cards share row height; bio grows so border-top + facts align across columns */
.g-team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  align-items: stretch;
  gap: 2.5rem;
  margin-top: 3.5rem;
}
.g-team-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
  padding: 2.4rem;
}
.g-team-img { width: 104px; height: 104px; border-radius: 50%; object-fit: cover; margin-bottom: 1.25rem; border: 3px solid var(--g-mint); box-shadow: 0 6px 18px rgba(21,128,61,0.12); }
.g-team-name { font-size: 1.5rem; font-weight: 700; color: var(--g-ink); }
.g-team-role {
  display: inline-block; align-self: flex-start; font-family: var(--g-mono); font-size: 11px;
  font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--g-forest-dark);
  background: var(--g-leaf-soft); padding: 3px 10px; border-radius: 999px; margin: 8px 0 1.1rem;
}
.g-team-bio {
  flex: 1 1 auto;
  min-height: 0;
  margin: 0;
  color: var(--g-muted);
  line-height: 1.6;
}
.g-facts {
  flex-shrink: 0;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid #f1f5f9;
}
.g-facts h4 { font-family: var(--g-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--g-faint); font-weight: 700; margin-bottom: 1.35rem; }
.g-facts ul { display: flex; flex-direction: column; gap: 0.7rem; }
.g-facts li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.92rem; color: var(--g-muted); line-height: 1.45; }
.g-facts li img { width: 20px; height: 20px; flex-shrink: 0; margin-top: 1px; }
.g-contact-links {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.65rem;
  margin-top: 1.5rem;
}
.g-link { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: 0.9rem; text-decoration: none; }
.g-link svg { width: 18px; height: 18px; fill: currentColor; }
.g-link-linkedin { color: #0077b5; }
.g-link-email { color: var(--g-forest); }
.g-link:hover { text-decoration: underline; }

/* ── advisory area card ──────────────────────────────────── */
.g-area-card { padding: 2.2rem; }
.g-area-card .g-h3 { margin: 1.1rem 0 0.6rem; }
.g-area-card .g-body { margin-bottom: 0.9rem; }
.g-area-fit {
  margin-top: 1.2rem; padding-top: 1.1rem; border-top: 1px solid var(--g-border);
  font-size: 0.92rem; font-style: italic; color: var(--g-slate);
}

/* ── responsive ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .g-grid-4 { grid-template-columns: 1fr 1fr; }
  .g-grid-3 { grid-template-columns: 1fr; }
  .g-hero-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "intro"
      "art"
      "rest";
    row-gap: 2rem;
  }
  .g-hero-rest .g-hero-lead { margin-top: 0; }
}
@media (max-width: 760px) {
  .g-isnot-grid { grid-template-columns: 1fr; }
  .g-steps { flex-direction: column; }
  .g-step-arrow { transform: rotate(90deg); justify-content: center; padding: 4px 0; }
}
@media (max-width: 560px) {
  .g-grid-4 { grid-template-columns: 1fr; }
  .g-grid-2 { grid-template-columns: 1fr; }
  .g-module-grid { grid-template-columns: 1fr; }
  .dm-row { grid-template-columns: 1fr; }
  .dm-card { padding: 1.5rem; }
  .g-hero-art-stage { transform: scale(0.86); }
  .g-section { padding: 4rem 0; }
  .g-two-ways { grid-template-columns: 1fr; }
  .g-team-grid { grid-template-columns: 1fr; }
  .g-card { padding: 1.6rem; }
}
