/* ==========================================================================
   JBD — Est. 2023
   Modern agency: deep green + cream + yellow, geometric sans, bento tiles.
   ========================================================================== */

/* --- Tokens ------------------------------------------------------------- */
:root {
  --ink:        #12241C;
  --ink-2:      #1B3329;
  --ink-3:      #24463A;

  --cream:      #F6F2EA;
  --cream-2:    #EFE9DC;
  --white:      #FFFFFF;

  --yellow:     #F3C64B;
  --yellow-2:   #FBE7A8;
  --sage:       #D4E2D3;
  --sage-2:     #B9D2BA;

  --text:       #12241C;
  --text-2:     #55655C;
  --text-3:     #8A9791;
  --on-dark:    #F6F2EA;
  --on-dark-2:  #A9BBB1;

  --line:       rgba(18, 36, 28, 0.12);
  --line-soft:  rgba(18, 36, 28, 0.07);
  --line-dark:  rgba(246, 242, 234, 0.16);

  --r:      24px;
  --r-lg:   32px;
  --r-sm:   14px;
  --pill:   999px;

  --shadow: 0 1px 2px rgba(18,36,28,.04), 0 12px 32px rgba(18,36,28,.06);
  --shadow-lift: 0 2px 6px rgba(18,36,28,.06), 0 22px 50px rgba(18,36,28,.11);

  --container: 1240px;
  --gutter: clamp(18px, 4vw, 44px);
  --section-y: clamp(64px, 8vw, 118px);

  --font: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

/* --- Reset -------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--cream);
  color: var(--text);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.6;
  letter-spacing: -0.011em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; height: auto; }
h1, h2, h3, h4, p, ul, ol, figure, blockquote { margin: 0; }
ul, ol { padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; }
:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; border-radius: 4px; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 1000;
  background: var(--ink); color: var(--on-dark); padding: 12px 18px; border-radius: 0 0 12px 0;
}
.skip-link:focus { left: 0; }

/* --- Type --------------------------------------------------------------- */
h1, h2, h3, h4 { font-weight: 600; line-height: 1.08; letter-spacing: -0.032em; text-wrap: balance; }

.display { font-size: clamp(2.5rem, 5.4vw, 4.4rem); line-height: 1.03; letter-spacing: -0.038em; }
h2, .h2  { font-size: clamp(1.95rem, 3.6vw, 3.1rem); line-height: 1.06; letter-spacing: -0.035em; }
h3, .h3  { font-size: clamp(1.15rem, 1.6vw, 1.4rem); line-height: 1.22; letter-spacing: -0.026em; }
h4, .h4  { font-size: 1.02rem; letter-spacing: -0.02em; }

.lede {
  font-size: clamp(1.02rem, 1.2vw, 1.16rem);
  line-height: 1.62;
  color: var(--text-2);
  max-width: 52ch;
  text-wrap: pretty;
}
.muted { color: var(--text-2); }
.small { font-size: 0.92rem; line-height: 1.55; }
.tiny  { font-size: 0.8rem; line-height: 1.5; }

/* Marker sweep behind a word — hugs the baseline, not a filled block */
.hl {
  background: linear-gradient(var(--yellow), var(--yellow)) 0 82% / 100% 0.3em no-repeat;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.hl--sage { background-image: linear-gradient(var(--sage-2), var(--sage-2)); }
/* On dark panels, colour the word instead of marking it */
.hl--y { color: var(--yellow); background: none; }

/* Inline underlined link inside copy */
.ul {
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1.5px;
  text-decoration-color: rgba(18,36,28,.35);
  font-weight: 500;
  transition: text-decoration-color .18s ease, color .18s ease;
}
.ul:hover { text-decoration-color: var(--ink); }
.on-dark .ul, .tile--dark .ul { text-decoration-color: rgba(246,242,234,.45); }
.on-dark .ul:hover { text-decoration-color: var(--yellow); color: var(--yellow); }

/* --- Badge -------------------------------------------------------------- */
.badge {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 8px 15px 8px 13px;
  border: 1px solid var(--line);
  border-radius: var(--pill);
  background: var(--white);
  font-size: 0.79rem;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--text-2);
}
.badge::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--yellow); flex: none;
}
.badge--dark { background: rgba(246,242,234,.08); border-color: var(--line-dark); color: var(--on-dark-2); }

/* --- Layout ------------------------------------------------------------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); }
.section--tight { padding-block: clamp(46px, 5.5vw, 78px); }
.on-dark { background: var(--ink); color: var(--on-dark); }
.on-dark .lede, .on-dark .muted { color: var(--on-dark-2); }

.head { max-width: 720px; }
.head h2 { margin-top: 18px; }
.head .lede { margin-top: 16px; }
.head--split {
  display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between;
  gap: 20px 32px; max-width: none;
}
.head--split > div { max-width: 640px; }

.stack > * + * { margin-top: 16px; }
.mt-s { margin-top: 16px; }
.mt-m { margin-top: 26px; }
.mt-l { margin-top: clamp(34px, 4vw, 56px); }

/* --- Buttons ------------------------------------------------------------ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 24px;
  border: 1px solid transparent;
  border-radius: var(--pill);
  background: var(--ink);
  color: var(--on-dark);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.012em;
  cursor: pointer;
  transition: transform .2s cubic-bezier(.2,.7,.3,1), background-color .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn .ico {
  display: grid; place-items: center;
  width: 21px; height: 21px; border-radius: 50%;
  background: var(--yellow); color: var(--ink);
  font-size: 11px; font-weight: 700;
  transition: transform .22s cubic-bezier(.2,.7,.3,1);
}
.btn:hover .ico { transform: translateX(3px); }

.btn--yellow { background: var(--yellow); color: var(--ink); }
.btn--yellow .ico { background: var(--ink); color: var(--yellow); }
.btn--light { background: var(--cream); color: var(--ink); }
.btn--light .ico { background: var(--ink); color: var(--cream); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--ink); }
.btn--ghost-dark { background: transparent; color: var(--on-dark); border-color: var(--line-dark); }
.btn--ghost-dark:hover { border-color: var(--on-dark); }
.btn--sm { padding: 11px 18px; font-size: 0.88rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

/* --- Header ------------------------------------------------------------- */
.header { position: sticky; top: 0; z-index: 100; padding-top: 14px; }
.header__bar {
  display: flex; align-items: center; justify-content: space-between; gap: 22px;
  padding: 10px 10px 10px 22px;
  background: rgba(246,242,234,.82);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border: 1px solid var(--line-soft);
  border-radius: var(--pill);
  transition: box-shadow .25s ease, background-color .25s ease;
}
.header.stuck .header__bar { box-shadow: var(--shadow); background: rgba(246,242,234,.94); }

.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; letter-spacing: -0.03em; font-size: 1.12rem; }
.brand__dot {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--ink); color: var(--yellow);
  display: grid; place-items: center;
  font-size: 0.66rem; font-weight: 700; letter-spacing: 0;
}
.brand em { font-style: normal; font-weight: 500; font-size: 0.72rem; color: var(--text-3); letter-spacing: 0; }

.nav { display: flex; align-items: center; gap: 2px; }
.nav a {
  padding: 9px 14px; border-radius: var(--pill);
  font-size: 0.92rem; font-weight: 500; color: var(--text-2);
  white-space: nowrap;
  transition: background-color .18s ease, color .18s ease;
}
.nav a:hover { background: rgba(18,36,28,.06); color: var(--text); }
.nav a[aria-current="page"] { background: var(--ink); color: var(--on-dark); }

.header__cta { display: flex; align-items: center; gap: 8px; }
.burger {
  display: none; width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--line); background: var(--white);
  place-items: center; cursor: pointer;
}
.burger i { display: block; width: 17px; height: 9px; position: relative; }
.burger i::before, .burger i::after {
  content: ""; position: absolute; left: 0; right: 0; height: 1.8px; border-radius: 2px; background: var(--ink);
  transition: transform .22s ease;
}
.burger i::before { top: 0; }
.burger i::after { bottom: 0; }
.burger[aria-expanded="true"] i::before { transform: translateY(3.5px) rotate(45deg); }
.burger[aria-expanded="true"] i::after  { transform: translateY(-3.5px) rotate(-45deg); }

@media (max-width: 1060px) {
  .nav { display: none; }
  .burger { display: grid; }
}
@media (max-width: 560px) { .header__cta .btn { display: none; } }

.drawer { display: none; }
.drawer.open {
  display: block;
  margin-top: 10px;
  padding: 12px;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--r);
  box-shadow: var(--shadow);
}
.drawer a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 15px 14px; border-radius: var(--r-sm);
  font-size: 1.05rem; font-weight: 600; letter-spacing: -0.02em;
}
.drawer a:hover { background: var(--cream); }
.drawer a span { color: var(--text-3); font-weight: 500; font-size: 0.85rem; }
.drawer .btn { width: 100%; justify-content: center; margin-top: 8px; }

/* --- Hero --------------------------------------------------------------- */
.hero { padding-block: clamp(38px, 5vw, 68px) clamp(20px, 3vw, 32px); }
.hero__panel {
  background: var(--ink);
  color: var(--on-dark);
  border-radius: var(--r-lg);
  padding: clamp(30px, 4.6vw, 70px);
  position: relative;
  overflow: hidden;
}
.hero__panel::after {
  content: "";
  position: absolute; right: -160px; top: -180px;
  width: 620px; height: 620px; border-radius: 50%;
  background: radial-gradient(circle, rgba(243,198,75,.16), transparent 62%);
  pointer-events: none;
}
.hero__inner { position: relative; max-width: 900px; }
.hero .display { margin-top: 26px; }
.hero__sub { margin-top: 24px; max-width: 54ch; color: var(--on-dark-2); font-size: clamp(1rem, 1.15vw, 1.13rem); line-height: 1.65; }
.hero .btn-row { margin-top: 34px; }

.hero__stats {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px 28px;
  margin-top: clamp(38px, 4.6vw, 62px);
  padding-top: clamp(26px, 3vw, 36px);
  border-top: 1px solid var(--line-dark);
}
@media (max-width: 720px) { .hero__stats { grid-template-columns: repeat(2, minmax(0,1fr)); } }
.stat b { display: block; font-size: clamp(1.5rem, 2.4vw, 2.05rem); font-weight: 600; letter-spacing: -0.035em; line-height: 1.1; }
.stat span { display: block; margin-top: 5px; font-size: 0.85rem; color: var(--on-dark-2); }
.stat--light span { color: var(--text-2); }

/* Persona hero (light) */
.hero--page { padding-block: clamp(30px, 4vw, 50px) 0; }
.hero--page .hero__panel { background: var(--white); color: var(--text); }
.hero--page .hero__panel::after { background: radial-gradient(circle, rgba(243,198,75,.30), transparent 62%); }
.hero--page .hero__sub { color: var(--text-2); }
.hero--page .hero__stats { border-top-color: var(--line); }
.hero--page .stat span { color: var(--text-2); }

.crumb { display: inline-flex; gap: 8px; font-size: 0.83rem; color: var(--text-3); font-weight: 500; }
.crumb a:hover { color: var(--ink); }

/* --- Tiles / bento ------------------------------------------------------ */
.bento {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(12px, 1.3vw, 18px);
}
.bento > * { grid-column: span 12; }
@media (min-width: 780px) {
  .span-6 { grid-column: span 6; }
  .span-7 { grid-column: span 7; }
  .span-5 { grid-column: span 5; }
  .span-4 { grid-column: span 4; }
  .span-8 { grid-column: span 8; }
  .span-3 { grid-column: span 3; }
}

.tile {
  background: var(--white);
  border-radius: var(--r);
  padding: clamp(22px, 2.4vw, 32px);
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  overflow: hidden;
  transition: transform .25s cubic-bezier(.2,.7,.3,1), box-shadow .25s ease;
}
.tile > .badge, .tile > .crumb, .tile > .tile__idx { align-self: flex-start; }
.tile--dark   { background: var(--ink); color: var(--on-dark); }
.tile--yellow { background: var(--yellow); color: var(--ink); }
.tile--sage   { background: var(--sage); color: var(--ink); }
.tile--cream  { background: var(--cream-2); color: var(--ink); }
.tile p { color: var(--text-2); font-size: 0.97rem; }
.tile--dark p { color: var(--on-dark-2); }
.tile--yellow p, .tile--sage p, .tile--cream p { color: rgba(18,36,28,.72); }

a.tile:hover { transform: translateY(-5px); box-shadow: var(--shadow-lift); }

.tile__top { display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; }
.tile__idx { font-size: 0.78rem; font-weight: 600; color: var(--text-3); letter-spacing: 0.02em; }
.tile--dark .tile__idx { color: var(--on-dark-2); }
.tile__go {
  width: 38px; height: 38px; border-radius: 50%;
  display: grid; place-items: center; flex: none;
  background: var(--cream); color: var(--ink);
  font-size: 13px; font-weight: 700;
  transition: transform .25s cubic-bezier(.2,.7,.3,1), background-color .2s ease, color .2s ease;
}
.tile--dark .tile__go { background: var(--yellow); color: var(--ink); }
a.tile:hover .tile__go { transform: translate(3px, -3px); background: var(--ink); color: var(--yellow); }
.tile--dark:hover .tile__go { background: var(--yellow); color: var(--ink); }

.tile__meta {
  margin-top: auto;
  padding-top: 16px;
  display: flex; flex-wrap: wrap; gap: 8px;
}
.pill {
  padding: 6px 12px; border-radius: var(--pill);
  background: rgba(18,36,28,.06);
  font-size: 0.78rem; font-weight: 500; color: var(--text-2);
  white-space: nowrap;
}
.tile--dark .pill { background: rgba(246,242,234,.1); color: var(--on-dark-2); }
.tile--yellow .pill { background: rgba(18,36,28,.1); color: rgba(18,36,28,.75); }

/* Decorative art panel inside tiles */
.art {
  border-radius: var(--r-sm);
  aspect-ratio: 16 / 9;
  width: 100%;
  overflow: hidden;
  background: var(--cream);
  position: relative;
}
.art svg { width: 100%; height: 100%; display: block; }
.art--tall { aspect-ratio: 4 / 3; }

/* --- Numbers / process -------------------------------------------------- */
.steps { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: clamp(14px, 1.4vw, 20px); }
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 520px) { .steps { grid-template-columns: minmax(0,1fr); } }
.step { background: var(--white); border-radius: var(--r); padding: clamp(20px, 2.2vw, 28px); }
.step__n {
  width: 34px; height: 34px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--ink); color: var(--yellow);
  font-size: 0.8rem; font-weight: 700;
  margin-bottom: 16px;
}
.step h3 { margin-bottom: 8px; }
.step p { color: var(--text-2); font-size: 0.95rem; }

/* --- Checklist ---------------------------------------------------------- */
.checks { display: grid; gap: 12px; }
.checks li { display: flex; gap: 12px; align-items: flex-start; color: var(--text-2); }
.checks li b { color: var(--text); font-weight: 600; }
.checks .tick {
  flex: none; width: 22px; height: 22px; border-radius: 50%; margin-top: 1px;
  background: var(--yellow); color: var(--ink);
  display: grid; place-items: center; font-size: 11px; font-weight: 700;
}
.checks--plain .tick { background: rgba(18,36,28,.08); color: var(--text-2); }
.on-dark .checks li, .tile--dark .checks li { color: var(--on-dark-2); }
.on-dark .checks li b, .tile--dark .checks li b { color: var(--on-dark); }

/* --- Work list ---------------------------------------------------------- */
.work { border-top: 1px solid var(--line); }
.work__row {
  display: grid;
  grid-template-columns: 72px minmax(0,1.1fr) minmax(0,1fr) minmax(0,0.8fr);
  gap: 12px clamp(14px, 2.4vw, 32px);
  align-items: center;
  padding: clamp(18px, 2vw, 24px) 0;
  border-bottom: 1px solid var(--line-soft);
}
.work__row { transition: background-color .2s ease, padding-left .25s cubic-bezier(.2,.7,.3,1); }
.work__row:hover { padding-left: 10px; }
.work__row b { font-size: clamp(1.05rem, 1.5vw, 1.28rem); font-weight: 600; letter-spacing: -0.028em; }
.work__row span { font-size: 0.92rem; color: var(--text-2); }
@media (max-width: 760px) {
  .work__row { grid-template-columns: 62px minmax(0,1fr); row-gap: 4px; }
  .work__row span:last-child { grid-column: 2 / 3; }
}

/* --- Quote -------------------------------------------------------------- */
.quote-tile { display: grid; grid-template-columns: minmax(0, 1fr); gap: clamp(24px, 3vw, 44px); }
@media (min-width: 900px) { .quote-tile { grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr); align-items: center; } }
.quote-tile blockquote { font-size: clamp(1.3rem, 2.3vw, 1.95rem); line-height: 1.28; letter-spacing: -0.03em; font-weight: 500; }
.quote-by { margin-top: 22px; display: flex; align-items: center; gap: 13px; }
.quote-by__av { width: 44px; height: 44px; border-radius: 50%; background: var(--sage-2); flex: none; }
.quote-by b { display: block; font-size: 0.95rem; font-weight: 600; }
.quote-by span { display: block; font-size: 0.86rem; color: var(--on-dark-2); }

/* --- FAQ ---------------------------------------------------------------- */
.faq { display: grid; gap: 10px; }
.faq details {
  background: var(--white);
  border-radius: var(--r-sm);
  padding: 4px 22px;
}
.faq summary {
  list-style: none; cursor: pointer;
  padding: 18px 34px 18px 0; position: relative;
  font-weight: 600; font-size: 1.02rem; letter-spacing: -0.022em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 2px; top: 50%; transform: translateY(-50%);
  font-size: 1.15rem; font-weight: 500; color: var(--text-3);
}
.faq details[open] summary::after { content: "–"; }
.faq__a { padding: 0 8% 20px 0; color: var(--text-2); font-size: 0.97rem; }

/* --- CTA ---------------------------------------------------------------- */
.cta {
  background: var(--ink); color: var(--on-dark);
  border-radius: var(--r-lg);
  padding: clamp(34px, 5vw, 76px);
  position: relative; overflow: hidden;
}
.cta::after {
  content: ""; position: absolute; right: -120px; bottom: -220px;
  width: 560px; height: 560px; border-radius: 50%;
  background: radial-gradient(circle, rgba(243,198,75,.18), transparent 62%);
}
.cta__inner { position: relative; max-width: 640px; }
.cta h2 { color: var(--on-dark); }
.cta .lede { margin-top: 18px; color: var(--on-dark-2); }
.cta .btn-row { margin-top: 32px; }

/* --- Footer ------------------------------------------------------------- */
.footer { padding-block: clamp(40px, 5vw, 64px) 30px; }
.footer__grid {
  display: grid; grid-template-columns: minmax(0,1.5fr) repeat(2, minmax(0,1fr));
  gap: clamp(26px, 4vw, 56px);
}
@media (max-width: 760px) { .footer__grid { grid-template-columns: minmax(0,1fr) minmax(0,1fr); } }
@media (max-width: 500px) { .footer__grid { grid-template-columns: minmax(0,1fr); } }
.footer h4 { font-size: 0.8rem; font-weight: 600; color: var(--text-3); margin-bottom: 15px; letter-spacing: 0; }
.footer li + li { margin-top: 10px; }
.footer a { color: var(--text-2); font-size: 0.95rem; }
.footer a:hover { color: var(--ink); }
.footer__note { color: var(--text-2); font-size: 0.95rem; max-width: 32ch; margin-top: 16px; }
.footer__bottom {
  margin-top: clamp(32px, 4vw, 52px); padding-top: 20px;
  border-top: 1px solid var(--line-soft);
  display: flex; flex-wrap: wrap; gap: 10px 26px; justify-content: space-between;
  font-size: 0.85rem; color: var(--text-3);
}


/* --- Reviews ------------------------------------------------------------ */
.reviews {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 1.3vw, 18px);
  align-items: start;
}
@media (max-width: 980px) { .reviews { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 620px) { .reviews { grid-template-columns: minmax(0,1fr); } }

.review {
  background: var(--white);
  border-radius: var(--r);
  padding: clamp(20px, 2.2vw, 28px);
  display: flex; flex-direction: column; gap: 16px;
}
.review--dark { background: var(--ink-2); color: var(--on-dark); }
.review--sage { background: var(--sage); }
.review--cream { background: var(--cream-2); }
.review__who { display: flex; align-items: center; gap: 12px; }
.review__av {
  width: 42px; height: 42px; border-radius: 50%; flex: none;
  display: grid; place-items: center;
  background: var(--ink); color: var(--yellow);
  font-size: 0.95rem; font-weight: 700;
}
.review--dark .review__av { background: var(--yellow); color: var(--ink); }
.review--sage .review__av { background: var(--ink); color: var(--sage); }
.review__who b { display: block; font-size: 0.98rem; font-weight: 600; letter-spacing: -0.02em; }
/* Only the nested role span — must not catch .review__av */
.review__who span span { display: block; font-size: 0.86rem; color: var(--text-2); }
.review--dark .review__who span span { color: var(--on-dark-2); }
.review p { font-size: 0.99rem; line-height: 1.55; color: var(--text); letter-spacing: -0.012em; }
.review--dark p { color: var(--on-dark); }
.stars { display: flex; gap: 3px; color: var(--yellow); font-size: 0.85rem; letter-spacing: 1px; }

/* --- Work shots (browser-framed screenshots) ---------------------------- */
.shot {
  border-radius: var(--r-sm);
  overflow: hidden;
  background: var(--ink-2);
  box-shadow: 0 18px 40px rgba(18,36,28,.14);
}
.shot__frame {
  position: relative;
  aspect-ratio: 16 / 10;
  background:
    radial-gradient(circle at 30% 20%, rgba(243,198,75,.16), transparent 55%),
    linear-gradient(140deg, #1B3329, #12241C);
  display: grid; place-items: center;
  overflow: hidden;
}
.shot__ph {
  padding: 0 20px;
  text-align: center;
  font-size: 0.78rem;
  line-height: 1.5;
  color: rgba(246,242,234,.5);
}
.shot__frame img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
}
.shot--tall .shot__frame { aspect-ratio: 4 / 3; }

/* Plain image panel — for collages and multi-screen compositions */
.frame {
  border-radius: var(--r-sm);
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 18px 40px rgba(18,36,28,.14);
}
.frame img { width: 100%; height: auto; display: block; }

.workcard { display: flex; flex-direction: column; gap: 14px; }
.workcard__meta { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.workcard__meta b { font-size: 1.06rem; font-weight: 600; letter-spacing: -0.024em; }
.workcard__meta span { font-size: 0.88rem; color: var(--text-2); }

/* --- Case study --------------------------------------------------------- */
.case { display: grid; grid-template-columns: minmax(0,1fr); gap: clamp(26px, 3.4vw, 52px); align-items: center; }
@media (min-width: 900px) { .case { grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr); } }
.metrics { display: flex; flex-wrap: wrap; gap: 14px 40px; margin-top: 26px; }
.metric b {
  display: block;
  font-size: clamp(2.1rem, 4.2vw, 3.2rem);
  font-weight: 700; letter-spacing: -0.04em; line-height: 1;
  color: var(--yellow);
}
.metric span { display: block; margin-top: 8px; font-size: 0.88rem; color: var(--on-dark-2); max-width: 22ch; }
.metric--light b { color: var(--ink); }
.metric--light span { color: var(--text-2); }

/* --- Dock (mobile CTA) --------------------------------------------------- */
.dock { display: none; }
@media (max-width: 700px) {
  .dock {
    display: block; position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
    padding: 11px var(--gutter) calc(11px + env(safe-area-inset-bottom));
    background: rgba(246,242,234,.9);
    backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
    border-top: 1px solid var(--line-soft);
  }
  .dock .btn { width: 100%; justify-content: center; }
  body { padding-bottom: 80px; }
}

/* --- Motion -------------------------------------------------------------- */
.js .rise { opacity: 0; transform: translateY(14px); }
.js .rise.in {
  opacity: 1; transform: none;
  transition: opacity .55s ease, transform .55s cubic-bezier(.2,.7,.3,1);
}
@media (prefers-reduced-motion: reduce) {
  .js .rise, .js .rise.in { opacity: 1; transform: none; transition: none; }
  .btn:hover, a.tile:hover { transform: none; }
}

@media print { .header, .dock, .cta { display: none; } }
