/* =========================================================================
   Paintlin's — standalone landing page styles
   Own brand identity (warm paper + paint-kit accents), independent of the
   CME3 grayscale site theme. Plain CSS, no build step. Relative asset paths
   so it serves correctly from /paintlins/ or its own subdomain.
   ========================================================================= */

:root {
  /* surfaces + ink */
  --paper:     #FBF7F0;
  --paper-2:   #F4EDE1;
  --ink:       #221E19;
  --ink-soft:  #5F584D;
  --line:      #E8DECC;

  /* the paint kit */
  --coral:      #FF6F61;
  --coral-deep: #C8443B;
  --sun:        #FFC23C;
  --sky:        #3FA7D6;
  --leaf:       #5BBF6A;
  --grape:      #9B5DE5;
  --teal:       #2BB7A8;

  /* text-safe deep shades (headings/titles on paper — all clear WCAG AA) */
  --grape-deep: #7B3FD0;
  --sky-deep:   #17789E;
  --teal-deep:  #0F766B;
  --leaf-deep:  #357A41;

  --radius:   18px;
  --radius-lg:26px;
  --maxw:     1080px;
  --shadow:   0 14px 40px rgba(34,30,25,.10), 0 3px 10px rgba(34,30,25,.06);
  --shadow-sm:0 6px 18px rgba(34,30,25,.08);

  --font-display: "Fredoka", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-body:    "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

/* ---------- reset-ish ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
h1, h2, h3 { font-family: var(--font-display); font-weight: 600; line-height: 1.08; letter-spacing: -.01em; }

/* ---------- layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }
.container-narrow { max-width: 760px; }
.section { padding-block: clamp(56px, 9vw, 104px); }
.section[id], .cta-final[id], .hero { scroll-margin-top: 86px; }
.section-alt { background: var(--paper-2); }
.section-head { text-align: center; max-width: 620px; margin: 0 auto clamp(36px, 5vw, 56px); }
.section-head h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); color: var(--coral-deep); }
.section-alt .section-head h2 { color: var(--teal-deep); }
.section-head p { color: var(--ink-soft); margin-top: 14px; font-size: 1.08rem; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  font-family: var(--font-display); font-weight: 600; font-size: 1.02rem;
  padding: .8em 1.5em; border-radius: 999px; border: 2px solid transparent;
  text-decoration: none; cursor: pointer; transition: transform .12s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--coral-deep); color: #fff; box-shadow: 0 8px 20px rgba(200,68,59,.28); }
.btn-primary:hover { background: #b23a32; box-shadow: 0 10px 26px rgba(200,68,59,.34); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--paper); }
.btn-sm { padding: .55em 1.1em; font-size: .95rem; }

/* ---------- eyebrow + dots ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: .5em;
  font-family: var(--font-display); font-weight: 600; font-size: .92rem;
  text-transform: uppercase; letter-spacing: .08em; color: var(--coral-deep);
}
.dot { width: 10px; height: 10px; border-radius: 999px; display: inline-block; }
.dot-coral { background: var(--coral); }
.dot-grape { background: var(--grape); }

/* ---------- wordmark ---------- */
.wordmark { position: relative; text-decoration: none; display: inline-flex; align-items: flex-end; }
.wordmark-text { font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; color: var(--ink); letter-spacing: -.02em; }
.wordmark-apos { color: var(--coral-deep); }
.wordmark-drip {
  width: 9px; height: 9px; border-radius: 999px; background: var(--coral);
  margin-left: 3px; margin-bottom: 4px;
  box-shadow: 0 7px 0 -2px var(--sun);
}
.wordmark-sm .wordmark-text { font-size: 1.25rem; }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251,247,240,.82);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; min-height: 66px; }
.nav-links { list-style: none; display: flex; align-items: center; gap: 26px; padding: 0; }
.nav-links a { text-decoration: none; font-weight: 500; color: var(--ink); font-size: .98rem; transition: color .15s; }
.nav-links a:not(.btn):hover { color: var(--coral-deep); }
.nav-toggle {
  display: none; flex-direction: column; gap: 5px; background: none; border: 0;
  padding: 8px; cursor: pointer;
}
.nav-toggle span { width: 24px; height: 2.5px; background: var(--ink); border-radius: 2px; transition: transform .2s, opacity .2s; }

/* ---------- hero ---------- */
.hero { padding-block: clamp(48px, 7vw, 90px); overflow: hidden; }
.hero-inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.hero-copy h1 { font-size: clamp(2.2rem, 5.4vw, 3.7rem); margin: 18px 0; }
.lede { font-size: clamp(1.05rem, 1.7vw, 1.25rem); color: var(--ink-soft); max-width: 38ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero-note { margin-top: 16px; font-size: .92rem; color: var(--ink-soft); }

.hero-art { position: relative; display: grid; place-items: center; min-height: 320px; }
.hero-figure { position: relative; z-index: 2; }
.hero-figure .bear { width: clamp(220px, 32vw, 320px); filter: drop-shadow(0 22px 22px rgba(34,30,25,.16)); }
.hero-base {
  width: 62%; height: 20px; margin: -6px auto 0; border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(34,30,25,.16), rgba(34,30,25,0) 70%);
}

/* ---------- hero 3D preview (replaces the static figure) ---------- */
.hero-shots { position: relative; z-index: 2; width: 100%; max-width: 26rem; margin-inline: auto; }
.hero-shot { border-radius: var(--radius-lg); border: 1px solid var(--line); box-shadow: var(--shadow); }
.hero-shot--main { display: block; width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
/* fanned finished-mini accents overlapping the bottom edge — Rainbow Kitty leads (what she's painting) */
.hero-chips {
  position: absolute; left: 0; right: 0; bottom: -8%;
  display: flex; justify-content: center; align-items: flex-end; gap: 12px;
}
.hero-chip {
  width: 27%; aspect-ratio: 1 / 1; object-fit: cover; background: #fff;
  border-radius: 16px; border: 4px solid #fff; box-shadow: var(--shadow);
}
.hero-chip:nth-child(1) { transform: rotate(-7deg); }
.hero-chip:nth-child(2) { transform: rotate(2deg) translateY(-8px); z-index: 1; }
.hero-chip:nth-child(3) { transform: rotate(8deg); }
/* organic paint blobs */
.splat { position: absolute; filter: blur(.5px); opacity: .9; z-index: 1; }
.splat-1 { width: 150px; height: 150px; background: var(--sun);   top: 6%;  left: 4%;  border-radius: 42% 58% 63% 37% / 45% 38% 62% 55%; opacity: .55; }
.splat-2 { width: 110px; height: 110px; background: var(--sky);   bottom: 8%; right: 6%; border-radius: 60% 40% 38% 62% / 52% 56% 44% 48%; opacity: .5; }
.splat-3 { width: 80px;  height: 80px;  background: var(--teal);  top: 12%; right: 18%; border-radius: 52% 48% 60% 40% / 46% 60% 40% 54%; opacity: .45; }

/* ---------- bear color states (legacy: hero fallback only) ---------- */
.bear--painted {
  --c-body:#FF8A5B; --c-belly:#FFE7C2; --c-ear:#FF8A5B; --c-earin:#FFB39E;
  --c-snout:#FFE7C2; --c-nose:#3A2F2A; --c-eye:#3A2F2A; --bear-stroke: transparent;
}
.bear--white {
  --c-body:#FFFFFF; --c-belly:#F6F1E9; --c-ear:#FFFFFF; --c-earin:#ECE6DC;
  --c-snout:#F1ECE2; --c-nose:#CFC7B8; --c-eye:#C3BAAB; --bear-stroke:#E5DDCF;
}

/* ---------- steps ---------- */
.steps { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; counter-reset: step; }
.step { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px 26px; box-shadow: var(--shadow-sm); }
.step-badge {
  display: grid; place-items: center; width: 46px; height: 46px; border-radius: 14px;
  background: var(--badge, var(--coral)); color: #fff; font-family: var(--font-display);
  font-weight: 700; font-size: 1.3rem; margin-bottom: 16px; box-shadow: 0 6px 14px rgba(34,30,25,.14);
}
.step h3 { font-size: 1.3rem; margin-bottom: 8px; }
.step p { color: var(--ink-soft); }

/* ---------- reveal ---------- */
.reveal { display: flex; align-items: center; justify-content: center; gap: clamp(8px, 2vw, 22px); flex-wrap: wrap; }
.reveal-card { text-align: center; }
.reveal-media {
  width: clamp(165px, 26vw, 260px); aspect-ratio: 1; border-radius: var(--radius-lg);
  background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  display: grid; place-items: center; padding: 18px;
}
.reveal-card--star .reveal-media { border-color: var(--coral); box-shadow: 0 16px 36px rgba(200,68,59,.18); }
.reveal-media--photo { padding: 0; overflow: hidden; }
.reveal-media--photo img, .reveal-media--photo video { width: 100%; height: 100%; object-fit: cover; border-radius: inherit; }
.reveal-row-label {
  text-align: center; font-family: var(--font-display); font-weight: 600;
  font-size: 1.15rem; color: var(--ink); margin: 0 0 16px;
}
.reveal + .reveal-row-label { margin-top: clamp(30px, 5vw, 52px); }
.reveal-photo { background: repeating-linear-gradient(45deg, #fff, #fff 12px, #faf5ec 12px, #faf5ec 24px); border-style: dashed; color: var(--ink-soft); gap: 8px; }
.reveal-photo .ic { width: 38px; height: 38px; fill: var(--ink-soft); opacity: .65; }
.reveal-photo span { font-size: .9rem; font-weight: 500; }
.reveal figcaption { margin-top: 14px; font-family: var(--font-display); font-weight: 600; color: var(--ink); }
.reveal-arrow { font-size: 1.8rem; color: var(--ink-soft); font-family: var(--font-display); }

/* ---------- lanes ---------- */
.lanes { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.lane { border-radius: var(--radius-lg); padding: clamp(28px, 3.5vw, 42px); border: 1px solid var(--line); position: relative; overflow: hidden; }
.lane-family { background: linear-gradient(160deg, #fff, #FFF4E8); }
.lane-maker  { background: linear-gradient(160deg, #fff, #EAF5FB); }
.lane-tag {
  display: inline-block; font-family: var(--font-display); font-weight: 600; font-size: .82rem;
  text-transform: uppercase; letter-spacing: .08em; padding: .35em .9em; border-radius: 999px; margin-bottom: 14px;
}
.lane-family .lane-tag { background: var(--sun); color: #6a4a00; }
.lane-maker  .lane-tag { background: var(--sky); color: #fff; }
.lane h3 { font-size: clamp(1.3rem, 2.4vw, 1.7rem); margin-bottom: 12px; }
.lane > p { color: var(--ink-soft); }

/* ---------- ticks ---------- */
.ticks { list-style: none; padding: 0; margin-top: 18px; display: grid; gap: 10px; }
.ticks li { position: relative; padding-left: 30px; color: var(--ink); }
.ticks li::before {
  content: ""; position: absolute; left: 0; top: .15em; width: 19px; height: 19px; border-radius: 999px;
  background: var(--leaf);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/15px no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/15px no-repeat;
}
.ticks-lg li { padding-left: 32px; margin-block: 4px; font-size: 1.06rem; }

/* ---------- what's in the box ---------- */
.box-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(28px, 5vw, 60px); align-items: center; }
.box-copy h2 { font-size: clamp(1.8rem, 3.6vw, 2.5rem); }
.box-copy > p { color: var(--ink-soft); margin-top: 12px; }
.box-copy .btn { margin-top: 26px; }
.box-art { display: grid; place-items: center; }
.box-illus {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; padding: 30px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow);
  position: relative;
}
.paint-pot { width: 54px; height: 54px; border-radius: 14px 14px 16px 16px; background: var(--pot); box-shadow: inset 0 -8px 0 rgba(0,0,0,.12), var(--shadow-sm); position: relative; }
.paint-pot::after { content: ""; position: absolute; inset: 6px 6px auto 6px; height: 9px; border-radius: 999px; background: rgba(255,255,255,.5); }
.brush { grid-column: 1 / -1; width: 100%; margin-top: 4px; }

/* ---------- founder ---------- */
.founder { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(28px, 5vw, 56px); align-items: center; }
.founder-photo {
  aspect-ratio: 4/5; border-radius: var(--radius-lg); border: 2px dashed var(--line);
  background: var(--paper-2); display: grid; place-items: center; gap: 12px; position: relative;
}
.founder-photo-note { font-size: .85rem; color: var(--ink-soft); font-style: italic; }
.founder-copy h2 { font-size: clamp(1.8rem, 3.6vw, 2.5rem); margin: 14px 0; }
.founder-copy p { color: var(--ink-soft); font-size: 1.08rem; }
.signoff { margin-top: 18px; font-family: var(--font-display); font-weight: 600; color: var(--ink); font-style: normal; }

/* ---------- safety ---------- */
.safety { background: var(--ink); color: var(--paper); }
.safety-inner { display: flex; align-items: center; gap: 18px; padding-block: 26px; justify-content: center; text-align: left; }
.safety .ic-shield { width: 34px; height: 34px; fill: var(--sun); flex: none; }
.safety p { font-size: 1.02rem; }
.safety strong { color: #fff; }

/* ---------- faq ---------- */
.faq { display: grid; gap: 12px; }
.faq details { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 4px 22px; box-shadow: var(--shadow-sm); }
.faq summary {
  list-style: none; cursor: pointer; font-family: var(--font-display); font-weight: 600; font-size: 1.12rem;
  padding: 16px 0; display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.5rem; color: var(--coral-deep); transition: transform .2s; line-height: 1; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { color: var(--ink-soft); padding-bottom: 18px; max-width: 60ch; }

/* ---------- final CTA ---------- */
.cta-final { padding-block: clamp(56px, 9vw, 104px); }
.cta-card {
  position: relative; overflow: hidden; text-align: center;
  background: linear-gradient(165deg, #fff, var(--paper-2));
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(36px, 6vw, 64px); box-shadow: var(--shadow);
}
.cta-card h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); color: var(--grape-deep); }
.cta-card > p { color: var(--ink-soft); margin: 14px auto 0; max-width: 46ch; }
.splat-cta-1 { width: 120px; height: 120px; background: var(--coral); border-radius: 56% 44% 50% 50% / 48% 52% 48% 52%; top: -32px; left: -30px; opacity: .35; }
.splat-cta-2 { width: 90px; height: 90px; background: var(--grape); border-radius: 50% 50% 42% 58% / 56% 44% 56% 44%; bottom: -28px; right: -22px; opacity: .3; }

.signup { display: flex; flex-direction: column; gap: 12px; margin-top: 28px; max-width: 420px; margin-inline: auto; text-align: left; }
.signup input {
  width: 100%; font-family: var(--font-body); font-size: 1.02rem;
  padding: .85em 1.1em; border: 2px solid var(--line); border-radius: 999px; background: #fff; color: var(--ink);
}
.signup input:focus-visible { outline: none; border-color: var(--coral-deep); box-shadow: 0 0 0 4px rgba(200,68,59,.15); }
.signup button[type="submit"] { width: 100%; }
/* hero variant: sits left-aligned in the hero copy column */
.signup-hero { margin-inline: 0; margin-top: 22px; max-width: 400px; }
.signup-hero .form-msg { text-align: left; }
.form-msg { flex-basis: 100%; margin-top: 6px; font-weight: 500; min-height: 1.2em; }
/* after a successful signup the fields give way to the confirmation */
.signup.is-done input, .signup.is-done button { display: none; }
.signup.is-done .form-msg { font-size: 1.02rem; margin-top: 0; }
.form-msg.is-ok { color: #1f7a3d; }
.form-msg.is-err { color: var(--coral-deep); }
.cta-fineprint { margin-top: 16px; font-size: .88rem; color: var(--ink-soft); }

/* ---------- footer ---------- */
.site-footer { background: var(--paper-2); border-top: 1px solid var(--line); }
.footer-inner { padding-block: 40px; text-align: center; display: grid; gap: 10px; justify-items: center; }
.footer-tag { color: var(--ink-soft); max-width: 40ch; }
.footer-meta { font-size: .92rem; color: var(--ink-soft); display: flex; gap: 12px; align-items: center; flex-wrap: wrap; justify-content: center; }
.footer-meta a { color: var(--coral-deep); text-decoration: none; }
.footer-meta a:hover { text-decoration: underline; }

/* ---------- focus visibility ---------- */
a:focus-visible, button:focus-visible, summary:focus-visible, input:focus-visible {
  outline: 3px solid var(--sky); outline-offset: 2px; border-radius: 6px;
}

/* ---------- scroll reveal ---------- */
.reveal-on-scroll { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal-on-scroll.is-in { opacity: 1; transform: none; }

/* ---------- nav: active page + footer nav (multi-page) ---------- */
.nav-links a[aria-current="page"]:not(.btn) { color: var(--coral-deep); }
.footer-nav { display: flex; flex-wrap: wrap; gap: 8px 20px; justify-content: center; }
.footer-nav a { color: var(--ink-soft); text-decoration: none; font-size: .92rem; }
.footer-nav a:hover { color: var(--coral-deep); text-decoration: underline; }

/* ---------- sub-page head (smaller hero for interior pages) ---------- */
.page-head { text-align: center; max-width: 720px; margin-inline: auto; padding-block: clamp(40px, 6vw, 76px) clamp(24px, 4vw, 40px); }
.page-head .eyebrow { justify-content: center; }
.page-head h1 { font-size: clamp(2rem, 5vw, 3.1rem); margin: 16px 0 0; color: var(--grape-deep); }
.page-head .lede { margin: 16px auto 0; max-width: 56ch; color: var(--ink-soft); }

/* ---------- photo figures ---------- */
.shot { margin: 0; }
.shot img, .shot video { width: 100%; height: auto; border-radius: var(--radius-lg); border: 1px solid var(--line); box-shadow: var(--shadow-sm); background: #fff; display: block; }
.shot figcaption { margin-top: 10px; font-size: .92rem; color: var(--ink-soft); text-align: center; }

/* ---------- gallery (masonry-ish columns) ---------- */
.gallery-grid { columns: 3; column-gap: clamp(12px, 2vw, 20px); }
.gallery-grid .shot { break-inside: avoid; margin-bottom: clamp(12px, 2vw, 20px); }

/* ---------- finished-products: each subject corralled in its own panel, staggered L/R ---------- */
.finished-group {
  max-width: 92%;
  margin: 0 auto clamp(20px, 3vw, 32px) 0;   /* nudged left */
  padding: clamp(22px, 3.5vw, 38px);
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--sky-deep);    /* Loaf Kitties: accent points left */
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.finished-group:last-child { margin-bottom: 0; }

/* second group (OSHA Beedee): mirror everything to the right */
.finished-group + .finished-group {
  margin-left: auto; margin-right: 0;
  border-left: 1px solid var(--line);
  border-right: 4px solid var(--teal-deep);
  text-align: right;
}
.finished-group + .finished-group .group-lore { margin-left: auto; margin-right: 0; }
.finished-group + .finished-group .subject-source { margin-left: auto; margin-right: 0; }
.finished-group + .finished-group .lineup-solo { justify-content: end; }

.group-title { text-align: inherit; font-size: clamp(1.4rem, 3vw, 2rem); color: var(--sky-deep); }
.finished-group + .finished-group .group-title { color: var(--teal-deep); }
.group-lore { max-width: 620px; margin: 12px 0 clamp(20px, 3vw, 32px); text-align: inherit; color: var(--ink-soft); }
.lineup { display: grid; gap: clamp(10px, 1.6vw, 18px); align-items: start; }
.lineup-loafs { grid-template-columns: repeat(5, 1fr); }
.lineup-solo { grid-template-columns: minmax(0, 300px); justify-content: start; }
.subject-source { max-width: 300px; margin: 0 0 clamp(18px, 3vw, 28px); }
@media (max-width: 760px) {
  .lineup-loafs { grid-template-columns: repeat(2, 1fr); }
  .finished-group { max-width: 100%; }
}

/* ---------- journey strip (real -> scan -> print -> painted), real photos ---------- */
.journey { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(10px, 1.6vw, 18px); align-items: start; }
.journey-step { text-align: center; }
.journey-step img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: var(--radius); border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.journey-step figcaption { margin-top: 10px; font-family: var(--font-display); font-weight: 600; font-size: .95rem; }
.journey-sub { display: block; font-family: var(--font-body); font-weight: 400; color: var(--ink-soft); font-size: .84rem; margin-top: 2px; }

/* ---------- home: photo teaser strip + centered CTA ---------- */
.shot-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(10px, 1.6vw, 18px); margin-top: clamp(26px, 4vw, 42px); }
.shot-strip img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: var(--radius); border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.center-cta { text-align: center; margin-top: clamp(28px, 4vw, 46px); }

/* =========================================================================
   Responsive
   ========================================================================= */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-art { order: -1; min-height: 240px; margin-bottom: 6%; }
  .hero-figure .bear { width: clamp(180px, 46vw, 240px); }
  .steps { grid-template-columns: 1fr; }
  .lanes { grid-template-columns: 1fr; }
  .box-grid { grid-template-columns: 1fr; }
  .box-art { order: -1; }
  .founder { grid-template-columns: 1fr; }
  .founder-photo { max-width: 280px; }
  .gallery-grid { columns: 2; }
  .journey { grid-template-columns: repeat(2, 1fr); }
  .shot-strip { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 680px) {
  /* mobile nav */
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute; top: 66px; right: 0; left: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--paper); border-bottom: 1px solid var(--line);
    padding: 8px 24px 20px; box-shadow: var(--shadow);
    transform: translateY(-12px); opacity: 0; pointer-events: none; transition: transform .2s, opacity .2s;
  }
  .nav-links.open { transform: none; opacity: 1; pointer-events: auto; }
  .nav-links li { width: 100%; }
  .nav-links a:not(.btn) { display: block; padding: 12px 0; border-bottom: 1px solid var(--line); }
  .nav-links .btn { margin-top: 12px; width: 100%; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

  .reveal-arrow { transform: rotate(90deg); }
  .safety-inner { flex-direction: column; text-align: center; gap: 12px; }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
  .reveal-on-scroll { opacity: 1; transform: none; }
}
