/* =========================================================
   Bob Bice — Portfolio
   Palette + tokens echo the Blueprint product (app.css :root)
   ========================================================= */

:root {
  /* brand (from Blueprint --primary) */
  --primary: #6366f1;
  --primary-dark: #4f46e5;
  --violet: #8b5cf6;
  --teal: #14b8a6;
  --pink: #ec4899;

  /* light theme surfaces */
  --bg: #f7f8fc;
  --bg-elev: #ffffff;
  --surface: #ffffff;
  --surface-2: #f1f3f9;
  --text: #0f172a;
  --text-2: #334155;
  --muted: #64748b;
  --faint: #94a3b8;
  --border: #e6e9f0;
  --border-strong: #d7dbe6;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 8px 24px -8px rgba(15, 23, 42, 0.14);
  --shadow-lg: 0 30px 70px -28px rgba(30, 27, 75, 0.30);
  --ring: rgba(99, 102, 241, 0.45);

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --pill: 999px;

  --maxw: 1140px;
  --pad: clamp(20px, 5vw, 40px);
  --speed: 0.18s;

  --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-display: "Sora", "Inter", system-ui, sans-serif;
}

html[data-theme="dark"] {
  --bg: #0a0e1c;
  --bg-elev: #111729;
  --surface: #141b30;
  --surface-2: #1b2440;
  --text: #eef2fb;
  --text-2: #c4cde0;
  --muted: #93a0bd;
  --faint: #6b7896;
  --border: #232c47;
  --border-strong: #2e3a5c;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 12px 30px -10px rgba(0, 0, 0, 0.55);
  --shadow-lg: 0 40px 90px -30px rgba(0, 0, 0, 0.7);
  --primary: #818cf8;
  --ring: rgba(129, 140, 248, 0.55);
}

/* ---------- reset / base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  transition: background var(--speed) ease, color var(--speed) ease;
  overflow-x: hidden;
}

h1, h2, h3 { font-family: var(--font-display); line-height: 1.08; letter-spacing: -0.02em; margin: 0; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }

.skip-link {
  position: fixed; left: 12px; top: -60px; z-index: 200;
  background: var(--primary); color: #fff; padding: 10px 16px; border-radius: var(--radius-sm);
  font-weight: 600; transition: top var(--speed);
}
.skip-link:focus { top: 12px; }

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

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: 15px;
  padding: 11px 20px; border-radius: var(--pill);
  border: 1px solid transparent; cursor: pointer;
  transition: transform var(--speed) ease, box-shadow var(--speed) ease, background var(--speed) ease, border-color var(--speed) ease, color var(--speed) ease;
  white-space: nowrap;
}
.btn .arrow { transition: transform var(--speed) ease; }
.btn:hover .arrow { transform: translateX(3px); }
.btn-lg { padding: 14px 26px; font-size: 16px; }

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary-dark), var(--violet));
  box-shadow: 0 8px 20px -8px var(--primary);
}
html[data-theme="dark"] .btn-primary { color: #0a0e1c; background: linear-gradient(135deg, #a5b4fc, #c4b5fd); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -10px var(--primary); }

.btn-ghost {
  color: var(--text); background: var(--surface);
  border-color: var(--border-strong); box-shadow: var(--shadow-sm);
}
.btn-ghost:hover { transform: translateY(-2px); border-color: var(--primary); color: var(--primary-dark); }
html[data-theme="dark"] .btn-ghost:hover { color: var(--primary); }

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--speed), background var(--speed);
}
.nav.scrolled { border-bottom-color: var(--border); }
.nav-inner { display: flex; align-items: center; gap: 20px; height: 66px; }

.brand { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 800; font-size: 18px; letter-spacing: -0.02em; }
.brand-mark { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 10px; color: #fff; background: linear-gradient(135deg, var(--primary-dark), var(--violet)); box-shadow: 0 6px 16px -8px var(--primary); }

.nav-links { display: flex; gap: 4px; margin-inline: auto; }
.nav-links a {
  font-weight: 500; font-size: 14.5px; color: var(--muted);
  padding: 8px 13px; border-radius: var(--pill); transition: color var(--speed), background var(--speed);
}
.nav-links a:hover { color: var(--text); background: var(--surface-2); }

.nav-actions { display: flex; align-items: center; gap: 12px; }
.theme-toggle {
  display: grid; place-items: center; width: 40px; height: 40px;
  border-radius: var(--pill); border: 1px solid var(--border-strong);
  background: var(--surface); color: var(--text); cursor: pointer;
  transition: transform var(--speed), border-color var(--speed), color var(--speed);
}
.theme-toggle:hover { transform: translateY(-1px); border-color: var(--primary); color: var(--primary); }
.theme-toggle .i-moon { display: none; }
html[data-theme="dark"] .theme-toggle .i-sun { display: none; }
html[data-theme="dark"] .theme-toggle .i-moon { display: block; }

/* ---------- hero ---------- */
.hero { position: relative; padding: clamp(70px, 13vw, 150px) 0 clamp(60px, 9vw, 110px); overflow: hidden; }
.hero-aurora { position: absolute; inset: -10% -10% 0; z-index: 0; pointer-events: none; filter: blur(70px); opacity: 0.85; }
html[data-theme="dark"] .hero-aurora { opacity: 0.6; }
.blob { position: absolute; border-radius: 50%; mix-blend-mode: multiply; animation: drift 22s ease-in-out infinite; }
html[data-theme="dark"] .blob { mix-blend-mode: screen; }
.blob.b1 { width: 46vw; height: 46vw; left: -6%; top: -8%; background: var(--primary); }
.blob.b2 { width: 40vw; height: 40vw; right: -4%; top: 4%; background: var(--violet); animation-delay: -6s; }
.blob.b3 { width: 34vw; height: 34vw; left: 22%; top: 30%; background: var(--teal); animation-delay: -12s; }
.blob.b4 { width: 30vw; height: 30vw; right: 14%; bottom: -6%; background: var(--pink); animation-delay: -3s; opacity: 0.7; }
@keyframes drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(4%, 5%) scale(1.08); }
  66% { transform: translate(-3%, -4%) scale(0.96); }
}
@media (prefers-reduced-motion: reduce) { .blob { animation: none; } }

.hero-inner { position: relative; z-index: 1; max-width: 880px; }
.eyebrow {
  display: inline-block; font-weight: 600; font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--primary-dark); background: color-mix(in srgb, var(--primary) 12%, transparent);
  padding: 6px 14px; border-radius: var(--pill); margin-bottom: 22px;
}
html[data-theme="dark"] .eyebrow { color: #c7d2fe; }
.hero-title { font-size: clamp(40px, 7vw, 76px); font-weight: 800; }
.grad { background: linear-gradient(110deg, var(--primary), var(--violet) 45%, var(--teal)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-sub { margin-top: 24px; font-size: clamp(16px, 2vw, 20px); color: var(--text-2); max-width: 640px; }
.hero-cta { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 14px; }

.hero-stats { margin-top: 56px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.stat { background: color-mix(in srgb, var(--surface) 70%, transparent); border: 1px solid var(--border); border-radius: var(--radius); padding: 18px 20px; backdrop-filter: blur(6px); box-shadow: var(--shadow-sm); }
.stat-num { display: block; font-family: var(--font-display); font-weight: 800; font-size: clamp(24px, 3.2vw, 34px); color: var(--text); letter-spacing: -0.03em; }
.stat-text { font-size: clamp(20px, 2.6vw, 28px); }
.stat-label { display: block; margin-top: 4px; font-size: 13.5px; color: var(--muted); }

/* ---------- generic section ---------- */
.section { padding: clamp(64px, 9vw, 120px) 0; }
.section-head { max-width: 720px; }
.kicker { display: inline-block; font-weight: 700; font-size: 12.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--primary); margin-bottom: 14px; }
.section-title { font-size: clamp(30px, 4.6vw, 50px); font-weight: 800; }
.section-lede { margin-top: 18px; font-size: clamp(16px, 1.6vw, 18.5px); color: var(--text-2); }
#work { padding-bottom: 0; }

/* ---------- blueprint case study ---------- */
.section-blueprint { background: linear-gradient(180deg, transparent, color-mix(in srgb, var(--primary) 5%, transparent)); }
.bp-head { display: flex; flex-wrap: wrap; gap: 24px; align-items: flex-end; justify-content: space-between; }
.bp-tagline { margin-top: 12px; font-size: clamp(17px, 2vw, 22px); color: var(--text-2); font-weight: 500; }
.bp-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tag { font-size: 12.5px; font-weight: 600; color: var(--text-2); background: var(--surface); border: 1px solid var(--border-strong); padding: 6px 12px; border-radius: var(--pill); box-shadow: var(--shadow-sm); }
.bp-intro { margin-top: 28px; max-width: 820px; font-size: clamp(16px, 1.6vw, 18px); color: var(--text-2); }

/* browser-framed showcase */
.bp-showcase { margin: 44px 0 0; }
.browser { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); background: var(--bg-elev); box-shadow: var(--shadow-lg); }
.browser-bar { display: flex; align-items: center; gap: 8px; padding: 0 16px; height: 46px; background: var(--surface-2); border-bottom: 1px solid var(--border); }
.browser-bar .dot { width: 11px; height: 11px; border-radius: 50%; background: var(--border-strong); }
.browser-bar .dot:nth-child(1) { background: #ef6a5e; }
.browser-bar .dot:nth-child(2) { background: #f5bd4f; }
.browser-bar .dot:nth-child(3) { background: #61c454; }
.browser-url { margin-left: 12px; font-size: 13px; color: var(--muted); font-weight: 500; }
.shot-toggle { margin-left: auto; display: inline-flex; gap: 2px; background: var(--bg); border: 1px solid var(--border); border-radius: var(--pill); padding: 3px; }
.st-btn { border: 0; background: transparent; color: var(--muted); font-weight: 600; font-size: 12.5px; padding: 5px 13px; border-radius: var(--pill); cursor: pointer; transition: color var(--speed), background var(--speed); }
.st-btn.is-active { background: var(--surface); color: var(--text); box-shadow: var(--shadow-sm); }
.browser-body { background: var(--bg-elev); }
.browser-body .shot { width: 100%; height: auto; display: block; }
.bp-showcase figcaption { margin-top: 16px; text-align: center; color: var(--muted); font-size: 14.5px; }

/* module grid */
.bp-modules { margin-top: 64px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.module { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); transition: transform var(--speed), box-shadow var(--speed), border-color var(--speed); }
.module:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: color-mix(in srgb, var(--primary) 40%, var(--border)); }
.module-ic { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 12px; font-size: 20px; font-weight: 700; color: var(--primary-dark); background: color-mix(in srgb, var(--primary) 13%, transparent); margin-bottom: 16px; }
html[data-theme="dark"] .module-ic { color: #c7d2fe; }
.module h3 { font-size: 19px; margin-bottom: 8px; }
.module p { color: var(--muted); font-size: 14.5px; }

/* secondary gallery */
.bp-gallery { margin-top: 22px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.bp-gcard { margin: 0; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); background: var(--bg-elev); box-shadow: var(--shadow-sm); transition: transform var(--speed), box-shadow var(--speed); }
.bp-gcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.bp-gcard img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; object-position: top left; border-bottom: 1px solid var(--border); }
.bp-gcard figcaption { padding: 13px 16px; font-size: 13.5px; color: var(--muted); font-weight: 500; }

/* ---------- explorations ---------- */
.explore-grid { margin-top: 52px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.exp { position: relative; padding: 0; margin: 0; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; cursor: pointer; background: var(--bg-elev); box-shadow: var(--shadow-sm); text-align: left; transition: transform var(--speed), box-shadow var(--speed), border-color var(--speed); }
.exp:hover, .exp:focus-visible { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: color-mix(in srgb, var(--primary) 45%, var(--border)); }
.exp img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; object-position: top center; transition: transform 0.5s ease; }
.exp:hover img { transform: scale(1.04); }
.exp-meta { position: absolute; inset: auto 0 0 0; display: flex; flex-direction: column; gap: 1px; padding: 30px 18px 16px; color: #fff; background: linear-gradient(transparent, rgba(8, 11, 24, 0.86)); }
.exp-meta strong { font-family: var(--font-display); font-size: 18px; font-weight: 700; }
.exp-meta em { font-style: normal; font-size: 12.5px; opacity: 0.82; }
.exp-wide { grid-column: span 2; }
.exp-wide img { aspect-ratio: 32 / 10; }

/* "+ more" — now a real toggle button */
.exp-more { display: grid; place-items: center; cursor: pointer; font: inherit; color: inherit; text-align: center; padding: 24px; border: 1px dashed var(--border-strong); border-radius: var(--radius); background: linear-gradient(135deg, color-mix(in srgb, var(--primary) 10%, var(--surface)), var(--surface)); box-shadow: var(--shadow-sm); transition: transform var(--speed), box-shadow var(--speed), border-color var(--speed); }
.exp-more:hover, .exp-more:focus-visible { transform: translateY(-4px); box-shadow: var(--shadow-md); border-style: solid; border-color: color-mix(in srgb, var(--primary) 55%, var(--border)); }
.exp-more-inner { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.exp-more-plus { display: grid; place-items: center; width: 40px; height: 40px; margin-bottom: 8px; border-radius: 50%; font-size: 24px; font-weight: 700; line-height: 1; color: #fff; background: linear-gradient(135deg, var(--primary-dark), var(--violet)); box-shadow: 0 6px 16px -8px var(--primary); transition: transform var(--speed); }
.exp-more:hover .exp-more-plus { transform: rotate(90deg); }
.exp-more[aria-expanded="true"] .exp-more-plus { transform: rotate(45deg); }
.exp-more strong { font-family: var(--font-display); font-size: 19px; color: var(--text); }
.exp-more-sub { font-size: 13px; color: var(--muted); }
.exp-more-cta { margin-top: 8px; display: inline-flex; align-items: center; gap: 6px; font-weight: 700; font-size: 13px; color: var(--primary-dark); }
html[data-theme="dark"] .exp-more-cta { color: #c7d2fe; }
.exp-more .chev { transition: transform var(--speed); }
.exp-more[aria-expanded="true"] .chev { transform: rotate(180deg); }

/* hidden explorations, revealed on toggle */
.exp-extra { display: none; }
.explore-grid.is-open .exp-extra { display: block; animation: expReveal 0.45s cubic-bezier(0.2, 0.7, 0.2, 1) both; }
@keyframes expReveal { from { opacity: 0; transform: translateY(16px) scale(0.98); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .explore-grid.is-open .exp-extra { animation: none; } }

/* ---------- capabilities ---------- */
.cap-grid { margin-top: 52px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.cap { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); transition: transform var(--speed), box-shadow var(--speed); }
.cap:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.cap h3 { font-size: 18px; margin-bottom: 10px; }
.cap h3::before { content: ""; display: inline-block; width: 8px; height: 8px; border-radius: 50%; margin-right: 9px; vertical-align: middle; background: linear-gradient(135deg, var(--primary), var(--violet)); }
.cap p { color: var(--muted); font-size: 14.5px; }

.stack { margin-top: 38px; display: flex; flex-wrap: wrap; align-items: center; gap: 12px; padding: 22px 24px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.stack-label { font-weight: 700; font-size: 12.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--primary); margin-right: 6px; }
.stack-list { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; margin: 0; padding: 0; }
.stack-list li { font-size: 13px; font-weight: 600; color: var(--text-2); background: var(--surface-2); border: 1px solid var(--border); padding: 6px 12px; border-radius: var(--pill); }

/* ---------- about ---------- */
.about-inner { display: grid; grid-template-columns: minmax(280px, 400px) 1fr; gap: clamp(28px, 5vw, 52px); align-items: center; }
.about-photo { position: relative; margin: 0; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow-lg); }
.about-photo img { display: block; width: 100%; height: auto; }
.about-photo figcaption { position: absolute; inset: auto 0 0 0; padding: 36px 18px 16px; color: #fff; font-size: 13.5px; line-height: 1.45; background: linear-gradient(transparent, rgba(8, 11, 24, 0.5) 45%, rgba(8, 11, 24, 0.9)); }
.about-main { display: flex; flex-direction: column; gap: 26px; }
.about-copy p { margin-top: 18px; color: var(--text-2); font-size: 17px; }
.about-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-md); }
.about-card h3 { font-size: 15px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); margin-bottom: 8px; }
.about-list { list-style: none; margin: 0; padding: 0; }
.about-list li { display: flex; justify-content: space-between; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--border); font-size: 14.5px; }
.about-list li:last-child { border-bottom: 0; }
.about-list span { color: var(--muted); }
.about-list strong { color: var(--text); text-align: right; }

/* ---------- contact ---------- */
.section-contact { padding-bottom: clamp(80px, 11vw, 140px); }
.contact-inner { text-align: center; max-width: 760px; margin-inline: auto; padding: clamp(40px, 6vw, 70px) clamp(24px, 5vw, 56px); background: linear-gradient(150deg, color-mix(in srgb, var(--primary) 12%, var(--surface)), var(--surface)); border: 1px solid var(--border); border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); position: relative; overflow: hidden; }
.contact-inner::before { content: ""; position: absolute; width: 320px; height: 320px; border-radius: 50%; background: radial-gradient(circle, var(--violet), transparent 70%); top: -120px; right: -80px; opacity: 0.25; pointer-events: none; }
.contact-title { font-size: clamp(28px, 4.2vw, 46px); font-weight: 800; position: relative; }
.contact-sub { margin-top: 16px; color: var(--text-2); font-size: 17px; position: relative; }
.contact-actions { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; position: relative; }

/* ---------- footer ---------- */
.footer { border-top: 1px solid var(--border); padding: 30px 0; }
.footer-inner { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; justify-content: space-between; }
.footer-brand { font-family: var(--font-display); font-weight: 800; }
.footer-meta { color: var(--muted); font-size: 13.5px; }
.footer-top { color: var(--muted); font-size: 14px; font-weight: 600; }
.footer-top:hover { color: var(--primary); }

/* ---------- lightbox ---------- */
.lightbox { position: fixed; inset: 0; z-index: 150; display: grid; place-items: center; padding: 5vw; background: rgba(7, 9, 20, 0.82); backdrop-filter: blur(8px); }
.lightbox[hidden] { display: none; }
.lb-figure { margin: 0; max-width: 1100px; width: 100%; animation: pop 0.25s ease; }
@keyframes pop { from { transform: scale(0.96); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.lb-figure img { width: 100%; height: auto; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.lb-figure figcaption { margin-top: 16px; text-align: center; color: #fff; }
.lb-figure figcaption strong { display: block; font-family: var(--font-display); font-size: 19px; }
.lb-figure figcaption span { color: rgba(255, 255, 255, 0.72); font-size: 14px; }
.lb-close { position: fixed; top: 22px; right: 26px; width: 46px; height: 46px; border-radius: 50%; border: 0; background: rgba(255, 255, 255, 0.12); color: #fff; font-size: 26px; line-height: 1; cursor: pointer; transition: background var(--speed), transform var(--speed); }
.lb-close:hover { background: rgba(255, 255, 255, 0.24); transform: rotate(90deg); }

/* ---------- reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .bp-modules, .bp-gallery, .explore-grid, .cap-grid { grid-template-columns: repeat(2, 1fr); }
  .exp-wide { grid-column: span 2; }
  .exp-wide img { aspect-ratio: 16 / 10; }
  .about-inner { grid-template-columns: 1fr; }
  .about-photo { max-width: 380px; margin-inline: auto; width: 100%; }
}
@media (max-width: 560px) {
  .nav-cta { display: none; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .bp-modules, .bp-gallery, .explore-grid, .cap-grid { grid-template-columns: 1fr; }
  .exp-wide { grid-column: span 1; }
  .bp-head { flex-direction: column; align-items: flex-start; }
  .shot-toggle { display: none; }
}
