/* =================================================================
   David Zak — site stylesheet  (LIGHT theme)
   Gallery white + near-black, with a single warm accent: orange.
   Type pairing kept: Space Grotesk (designer) + Spectral (author).
   ================================================================= */

:root{
  /* ---- surfaces (light) ---- */
  --paper:    #FFFFFF;   /* main background        */
  --paper-2:  #F4F5F7;   /* alternating sections   */
  --card:     #EEEFF2;   /* cards / panels         */
  --line:     #E2E2E7;   /* hairlines              */

  /* ---- text (dark) ---- */
  --ink:      #1A1A1E;   /* primary text           */
  --muted:    #5C5C66;   /* secondary text         */
  --muted-2:  #767680;   /* captions / timecodes   */

  /* ---- the one accent ---- */
  --orange:      #FF6A2C;  /* display + button backgrounds            */
  --orange-deep: #C24A12;  /* small accent text/links (readable on white) */
  --grade:       linear-gradient(105deg, var(--orange) 0%, #FF9A3D 100%);

  /* ---- type ---- */
  --display: "Fraunces", Georgia, "Times New Roman", serif;
  --serif:   "Spectral", Georgia, "Times New Roman", serif;

  /* ---- scale ---- */
  --wrap: 1140px;
  --gut: clamp(20px, 5vw, 56px);
  --radius: 14px;
  --ease: cubic-bezier(.2,.7,.2,1);
}

*{ box-sizing:border-box; }
html{ -webkit-text-size-adjust:100%; scroll-behavior:smooth; }
body{
  margin:0;
  font-optical-sizing:auto;
  background:var(--paper);
  color:var(--ink);
  font-family:var(--serif);
  font-size:18px;
  line-height:1.65;
  font-weight:400;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
  overflow-x:hidden;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
::selection{ background:var(--orange); color:var(--ink); }

.wrap{ width:100%; max-width:var(--wrap); margin:0 auto; padding-inline:var(--gut); }

/* ---------- type roles ---------- */
.eyebrow{
  font-family:var(--display);
  font-size:.72rem; font-weight:600;
  letter-spacing:.22em; text-transform:uppercase;
  color:var(--orange-deep); margin:0 0 1.1rem;
}
h1,h2,h3,h4{ font-family:var(--display); font-weight:700; line-height:1.04; letter-spacing:-.02em; margin:0; color:var(--ink); }
h2{ font-size:clamp(1.9rem, 4.5vw, 3rem); }
h3{ font-size:1.35rem; letter-spacing:-.01em; }
p{ margin:0 0 1.1rem; }
.lede{ font-size:clamp(1.15rem,2.2vw,1.4rem); color:var(--ink); line-height:1.5; }
.muted{ color:var(--muted); }
.serif-accent{ font-style:italic; }

.grade-text{
  background:var(--grade);
  -webkit-background-clip:text; background-clip:text;
  -webkit-text-fill-color:transparent; color:transparent;
}

/* ---------- buttons ---------- */
.btn{
  display:inline-flex; align-items:center; gap:.55em;
  font-family:var(--display); font-weight:600; font-size:1rem; letter-spacing:.01em;
  padding:.85em 1.4em; border-radius:999px; border:1px solid transparent; cursor:pointer;
  transition:transform .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease);
  will-change:transform;
}
.btn:hover{ transform:translateY(-2px); }
.btn-primary{ background:var(--orange); color:var(--ink); }
.btn-primary:hover{ background:#ff7d45; }
.btn-amazon{ background:#FF9900; color:#111; }
.btn-amazon:hover{ background:#ffab2e; }
.btn-ghost{ background:transparent; color:var(--ink); border-color:var(--line); }
.btn-ghost:hover{ border-color:var(--orange); color:var(--orange-deep); }
.btn .arrow{ transition:transform .25s var(--ease); }
.btn:hover .arrow{ transform:translateX(3px); }

/* ---------- nav ---------- */
.nav{
  position:sticky; top:0; z-index:50;
  backdrop-filter:saturate(140%) blur(10px);
  background:color-mix(in srgb, var(--paper) 82%, transparent);
  border-bottom:1px solid var(--line);
}
.nav .wrap{ display:flex; align-items:center; justify-content:space-between; height:66px; }
.brand{ font-family:var(--display); font-weight:700; font-size:1.1rem; letter-spacing:-.01em; color:var(--ink); }
.brand b{ color:var(--orange-deep); }
.nav-links{ display:flex; align-items:center; gap:1.6rem; }
.nav-links a{ font-family:var(--display); font-size:.92rem; color:var(--muted); transition:color .2s; }
.nav-links a:hover{ color:var(--ink); }
.nav-links .navcta{ color:var(--ink); background:var(--orange); padding:.5em 1em; border-radius:999px; }
.nav-links .navcta:hover{ background:#ff7d45; color:var(--ink); }
.nav-toggle{ display:none; background:none; border:0; color:var(--ink); cursor:pointer; padding:6px; }
.nav-toggle svg{ width:26px; height:26px; }

/* ---------- hero ---------- */
.hero{ position:relative; padding:clamp(56px,11vh,120px) 0 clamp(40px,7vh,72px); }
.hero .roles{ font-family:var(--display); font-weight:500; font-size:clamp(.85rem,1.6vw,1.05rem); letter-spacing:.04em; color:var(--muted); margin:0 0 1.4rem; }
.hero .roles b{ color:var(--ink); font-weight:600; }
.wordmark{ font-family:var(--display); font-weight:700; font-size:clamp(3.4rem, 15vw, 12rem); line-height:.86; letter-spacing:-.04em; margin:0; color:var(--ink); }
.wordmark .l2{ display:block; }
.hero .thesis{ max-width:30ch; font-size:clamp(1.3rem,3vw,1.9rem); line-height:1.32; margin:1.6rem 0 0; color:var(--ink); font-family:var(--serif); }
.hero .thesis em{ color:var(--orange-deep); font-style:italic; }
.hero .sub{ max-width:48ch; color:var(--muted); margin-top:1.1rem; }
.hero .ctas{ display:flex; flex-wrap:wrap; gap:.8rem; margin-top:1.9rem; }

/* timeline scrubber — signature element */
.scrubber{ position:relative; height:30px; margin:2.4rem 0 0; }
.scrubber__track{
  position:absolute; left:0; right:0; top:14px; height:2px;
  background:
    repeating-linear-gradient(90deg, var(--line) 0 1px, transparent 1px 28px),
    var(--paper-2);
}
.scrubber__head{
  position:absolute; top:6px; width:64px; height:18px; border-radius:3px;
  background:var(--grade); box-shadow:0 0 18px rgba(255,106,44,.35);
  animation:scrub 9s var(--ease) infinite alternate;
}
.scrubber__time{ position:absolute; right:0; top:-4px; font-family:var(--display); font-size:.7rem; letter-spacing:.12em; color:var(--muted-2); }
@keyframes scrub{ from{ left:0; } to{ left:calc(100% - 64px); } }

/* ---------- section ---------- */
.section{ padding:clamp(56px,10vh,110px) 0; }
.section--alt{ background:var(--paper-2); border-block:1px solid var(--line); }
.sec-head{ max-width:60ch; margin-bottom:2.6rem; }
.sec-head h2{ margin-top:.4rem; }
.sec-head p{ color:var(--muted); margin-top:1rem; }

/* ---------- work grid ---------- */
.work-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:1.1rem; }
@media (max-width:640px){ .work-grid{ grid-template-columns:1fr; } }
.work-card{ background:var(--card); border:1px solid var(--line); border-radius:var(--radius); overflow:hidden; transition:transform .3s var(--ease), border-color .3s var(--ease); }
.work-card:hover{ transform:translateY(-4px); border-color:var(--orange); }
.work-card .thumb{
  aspect-ratio:16/10;
  background:linear-gradient(135deg,#FBFBFC,#E7E8EC);
  display:flex; align-items:center; justify-content:center;
  color:var(--muted-2); font-family:var(--display); font-size:.8rem; letter-spacing:.1em;
  text-align:center; padding:1rem; position:relative;
}
.work-card .thumb::after{
  content:""; position:absolute; inset:0;
  background:radial-gradient(circle at 30% 20%, rgba(255,106,44,.12), transparent 60%),
             radial-gradient(circle at 80% 90%, rgba(255,154,61,.12), transparent 55%);
}
.work-card .body{ padding:1.1rem 1.2rem 1.3rem; }
.work-card h3{ font-size:1.1rem; }
.work-card .tag{ font-family:var(--display); font-size:.72rem; letter-spacing:.14em; text-transform:uppercase; color:var(--orange-deep); }
.work-card p{ color:var(--muted); font-size:.96rem; margin:.5rem 0 0; }

/* ---------- clients ---------- */
.clients{ margin-top:1rem; }
.clients .label{ font-family:var(--display); font-size:.72rem; letter-spacing:.18em; text-transform:uppercase; color:var(--muted-2); margin-bottom:1.1rem; }
.client-row{ display:flex; flex-wrap:wrap; gap:.6rem 1.7rem; align-items:center; }
.client-row span{ font-family:var(--display); font-weight:500; color:var(--muted); font-size:1.02rem; }

/* ---------- book band ---------- */
.book-band{ display:grid; grid-template-columns:0.9fr 1.1fr; gap:clamp(2rem,5vw,4rem); align-items:center; }
.book-cover-wrap{ position:relative; }
.book-cover{
  aspect-ratio:1/1; border-radius:8px; border:1px solid var(--line);
  background:
    radial-gradient(circle at 28% 26%, rgba(255,106,44,.42), transparent 44%),
    radial-gradient(circle at 74% 78%, rgba(255,154,61,.40), transparent 48%),
    linear-gradient(160deg,#FFFFFF,#F1F2F5);
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  text-align:center; padding:2rem; box-shadow:0 28px 56px -34px rgba(0,0,0,.30);
}
.book-cover .bc-art{ font-family:var(--display); font-weight:700; font-size:2.6rem; letter-spacing:.04em; }
.book-cover .bc-sub{ font-family:var(--display); letter-spacing:.3em; font-size:.7rem; color:var(--muted); margin-top:.6rem; text-transform:uppercase; }
.book-band .badge{ font-family:var(--display); font-size:.72rem; letter-spacing:.16em; text-transform:uppercase; color:var(--orange-deep); }

/* ---------- about ---------- */
.prose{ max-width:64ch; }
.prose p{ color:var(--ink); }
.prose p + p{ margin-top:1.1rem; }
.stat-row{ display:flex; flex-wrap:wrap; gap:2.4rem; margin-top:2.2rem; }
.stat .n{ font-family:var(--display); font-weight:700; font-size:2rem; line-height:1; }
.stat .k{ font-family:var(--display); font-size:.74rem; letter-spacing:.12em; text-transform:uppercase; color:var(--muted-2); margin-top:.4rem; }

/* ---------- newsletter ---------- */
.signup{ max-width:560px; }
.field-row{ display:flex; gap:.6rem; flex-wrap:wrap; margin-top:1.3rem; }
.field-row input[type=email]{
  flex:1 1 240px; background:#fff; border:1px solid var(--line);
  color:var(--ink); font-family:var(--display); font-size:1rem;
  padding:.85em 1.1em; border-radius:999px; outline:none; transition:border-color .2s;
}
.field-row input[type=email]::placeholder{ color:var(--muted-2); }
.field-row input[type=email]:focus{ border-color:var(--orange); }
.hp{ position:absolute; left:-9999px; }
.form-note{ font-size:.85rem; color:var(--muted-2); margin-top:.8rem; }

/* ---------- support note ---------- */
.support{
  border:1px solid var(--line); border-left:3px solid var(--orange);
  background:var(--paper-2); border-radius:8px; padding:1.2rem 1.4rem;
  font-size:.98rem; color:var(--muted); max-width:64ch;
}
.support strong{ color:var(--ink); }

/* ---------- 100days specifics ---------- */
.inside-grid{ display:grid; grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); gap:1rem; }
.inside-card{ background:var(--card); border:1px solid var(--line); border-radius:var(--radius); padding:1.4rem; }
.inside-card .ic-n{ font-family:var(--display); color:var(--orange-deep); font-weight:700; font-size:.85rem; letter-spacing:.1em; }
.inside-card h3{ font-size:1.05rem; margin:.5rem 0 .4rem; }
.inside-card p{ color:var(--muted); font-size:.95rem; margin:0; }

.buy-cta{ text-align:center; }
.buy-cta .price{ font-family:var(--display); color:var(--muted); margin-top:.8rem; font-size:.95rem; }

/* ---------- footer ---------- */
.footer{ border-top:1px solid var(--line); background:var(--paper-2); padding:3rem 0 2.4rem; }
.footer .top{ display:flex; flex-wrap:wrap; justify-content:space-between; gap:1.6rem; }
.footer .brand{ font-size:1.4rem; }
.footer .social{ display:flex; flex-wrap:wrap; gap:1.1rem; }
.footer .social a{ font-family:var(--display); font-size:.9rem; color:var(--muted); transition:color .2s; }
.footer .social a:hover{ color:var(--orange-deep); }
.footer .legal{ margin-top:2rem; font-family:var(--display); font-size:.78rem; color:var(--muted-2); letter-spacing:.03em; }

/* ---------- reveal ---------- */
.rv{ opacity:0; transform:translateY(18px); transition:opacity .7s var(--ease), transform .7s var(--ease); }
.rv.in{ opacity:1; transform:none; }
.d1{ transition-delay:.08s; } .d2{ transition-delay:.16s; } .d3{ transition-delay:.24s; } .d4{ transition-delay:.32s; }

/* ---------- responsive ---------- */
@media (max-width:760px){
  .nav-links{
    position:fixed; inset:66px 0 auto 0; flex-direction:column; align-items:flex-start;
    gap:.2rem; background:var(--paper-2); border-bottom:1px solid var(--line);
    padding:1rem var(--gut) 1.4rem; transform:translateY(-130%); transition:transform .35s var(--ease);
  }
  .nav-links.open{ transform:translateY(0); }
  .nav-links a{ padding:.6rem 0; font-size:1.05rem; }
  .nav-toggle{ display:inline-flex; }
  .book-band{ grid-template-columns:1fr; }
  .footer .top{ flex-direction:column; }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion:reduce){
  *{ animation:none !important; scroll-behavior:auto; }
  .rv{ opacity:1; transform:none; transition:none; }
  .scrubber__head{ left:30%; }
}

/* =================================================================
   v2 additions — avatars, client groups, sub-pages, watch, amazon
   ================================================================= */

/* nav avatar beside the name */
.brand{ display:inline-flex; align-items:center; gap:.6rem; }
.avatar{ width:34px; height:34px; border-radius:50%; overflow:hidden; flex:none;
  background:var(--card); border:1px solid var(--line); display:grid; place-items:center; color:var(--muted-2); }
.avatar img{ width:100%; height:100%; object-fit:cover; object-position:center; transform:scale(1.4); transform-origin:center; }
.avatar svg{ width:20px; height:20px; }
.nav-links{ gap:1.25rem; }

/* selected clients — grouped by industry */
.client-groups{ display:grid; gap:1.05rem; margin-top:.4rem; }
.client-group{ display:grid; grid-template-columns:minmax(130px,170px) 1fr; gap:.5rem 1.4rem; align-items:start; }
.cg-label{ font-family:var(--display); font-size:.7rem; letter-spacing:.14em; text-transform:uppercase; color:var(--orange-deep); }
.cg-names{ font-family:var(--display); color:var(--muted); font-size:1rem; line-height:1.65; }
.agency-note{ margin-top:1.7rem; color:var(--muted-2); font-size:.92rem; max-width:72ch; }
@media (max-width:620px){ .client-group{ grid-template-columns:1fr; gap:.15rem; } .agency-note{ font-size:.88rem; } }

/* clickable work thumbnails */
a.thumb{ cursor:pointer; text-decoration:none; }
.card-link{ font-family:var(--display); font-size:.9rem; color:var(--orange-deep); display:inline-block; margin-top:.6rem; }
.card-link:hover{ text-decoration:underline; }

/* watch / youtube */
.yt-embed{ display:grid; place-items:center; aspect-ratio:16/9; max-width:760px;
  border-radius:var(--radius); border:1px solid var(--line); position:relative; overflow:hidden;
  background:linear-gradient(135deg,#1a1a1e,#2c2d35); text-decoration:none; }
.yt-embed img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.yt-label{ position:absolute; bottom:13px; left:16px; font-family:var(--display); font-size:.78rem; letter-spacing:.05em; color:#fff; opacity:.85; }
.play{ width:64px; height:46px; border-radius:13px; background:#FF0033; display:grid; place-items:center; box-shadow:0 10px 26px rgba(0,0,0,.3); z-index:1; }
.play::after{ content:""; border-style:solid; border-width:9px 0 9px 15px; border-color:transparent transparent transparent #fff; margin-left:3px; }
.btn-youtube{ background:#FF0033; color:#fff; }
.btn-youtube:hover{ background:#ff2348; }
.yt-ico{ width:22px; height:16px; background:#fff; border-radius:5px; display:inline-grid; place-items:center; flex:none; }
.yt-ico::after{ content:""; border-style:solid; border-width:4px 0 4px 7px; border-color:transparent transparent transparent #FF0033; margin-left:1px; }

/* author band (100days) */
.author-band{ display:grid; grid-template-columns:auto 1fr; gap:1.8rem; align-items:center; }
.author-photo{ width:140px; height:140px; border-radius:50%; overflow:hidden; flex:none;
  border:1px solid var(--line); background:var(--card); display:grid; place-items:center; color:var(--muted-2); }
.author-photo img{ width:100%; height:100%; object-fit:cover; }
.author-photo svg{ width:54px; height:54px; }
@media (max-width:600px){ .author-band{ grid-template-columns:1fr; } .author-photo{ width:108px; height:108px; } }

/* amazon worldwide grid */
.amazon-grid{ display:grid; grid-template-columns:repeat(auto-fill,minmax(150px,1fr)); gap:.6rem; margin-top:1.4rem; }
.amazon-grid a{ display:flex; align-items:center; gap:.55rem; background:var(--card); border:1px solid var(--line);
  border-radius:10px; padding:.7em .9em; font-family:var(--display); font-size:.92rem; color:var(--ink);
  transition:border-color .2s, transform .2s; }
.amazon-grid a:hover{ border-color:var(--orange); transform:translateY(-2px); }
.amazon-grid .flag{ font-size:1.15rem; line-height:1; }

/* reasons-to-buy / generic feature grid */
.sell-grid{ display:grid; grid-template-columns:repeat(auto-fit,minmax(230px,1fr)); gap:1rem; }

/* products (artresin) */
.product-grid{ display:grid; grid-template-columns:repeat(auto-fit,minmax(210px,1fr)); gap:1rem; }
.product-card{ background:var(--card); border:1px solid var(--line); border-radius:var(--radius); overflow:hidden; }
.product-card .p-img{ aspect-ratio:4/3; display:grid; place-items:center; color:var(--muted-2);
  font-family:var(--display); font-size:.72rem; letter-spacing:.07em; text-align:center; padding:.8rem;
  background:linear-gradient(135deg,#FBFBFC,#E7E8EC); }
.product-card .p-body{ padding:1rem 1.1rem 1.2rem; }
.product-card h3{ font-size:1.02rem; }
.product-card p{ color:var(--muted); font-size:.9rem; margin:.35rem 0 0; }

/* gallery (artwork) */
.gallery{ display:grid; grid-template-columns:repeat(auto-fill,minmax(180px,1fr)); gap:.7rem; }
.gallery .art{ aspect-ratio:1/1; border-radius:10px; border:1px solid var(--line); position:relative; overflow:hidden;
  display:grid; place-items:center; color:var(--muted-2); font-family:var(--display); font-size:.72rem;
  background:linear-gradient(135deg,#FBFBFC,#E7E8EC); }
.gallery .art::after{ content:""; position:absolute; inset:0;
  background:radial-gradient(circle at 30% 25%,rgba(255,106,44,.10),transparent 60%),
             radial-gradient(circle at 78% 80%,rgba(255,154,61,.10),transparent 55%); }
.gallery .art img{ width:100%; height:100%; object-fit:cover; }

/* reels (motiondesign) */
.reel-grid{ display:grid; grid-template-columns:repeat(auto-fit,minmax(290px,1fr)); gap:1.1rem; }
.reel{ background:var(--card); border:1px solid var(--line); border-radius:var(--radius); overflow:hidden; }
.reel .r-thumb{ aspect-ratio:16/9; display:grid; place-items:center; position:relative; overflow:hidden;
  background:linear-gradient(135deg,#1a1a1e,#33343c); }
.reel .r-thumb img{ width:100%; height:100%; object-fit:cover; }
.reel .r-body{ padding:1rem 1.2rem 1.3rem; }
.reel h3{ font-size:1.05rem; }
.reel p{ color:var(--muted); font-size:.93rem; margin:.4rem 0 0; }

/* breadcrumb */
.crumb{ font-family:var(--display); font-size:.82rem; color:var(--muted-2); margin-bottom:1.1rem; }
.crumb a{ color:var(--orange-deep); }

/* real photo in a hero cover slot */
.hero-photo{ width:100%; height:auto; display:block; border-radius:12px; border:1px solid var(--line); box-shadow:0 28px 56px -34px rgba(0,0,0,.30); }

/* product image fills the card slot on clean white */
.product-card .p-img{ background:#fff; padding:14px; }
.product-card .p-img img{ max-width:100%; max-height:100%; object-fit:contain; display:block; }

/* art gallery + lightbox */
.artquote{ max-width:60ch; margin:0 auto 2.4rem; text-align:center; }
.artquote p{ font-family:'Spectral',Georgia,serif; font-style:italic; font-size:clamp(1.15rem,2.4vw,1.5rem); line-height:1.5; color:var(--ink); }
.artquote cite{ display:block; margin-top:.8rem; font-family:var(--display); font-style:normal; font-size:.78rem; letter-spacing:.12em; text-transform:uppercase; color:var(--orange-deep); }
.group-head{ display:flex; align-items:baseline; gap:.7rem; margin:2.6rem 0 1rem; }
.group-head h3{ font-size:1.35rem; }
.group-head .count{ color:var(--muted-2); font-family:var(--display); font-size:.78rem; letter-spacing:.06em; }
.group-note{ color:var(--muted); font-size:.92rem; margin:-.5rem 0 1.1rem; }
.artgrid{ columns:4 250px; column-gap:14px; }
.artgrid .cell{ break-inside:avoid; margin:0 0 14px; display:block; position:relative; border-radius:10px; overflow:hidden; border:1px solid var(--line); background:var(--card); cursor:zoom-in; }
.artgrid img{ width:100%; display:block; }
.artgrid .cap{ position:absolute; inset:auto 0 0 0; padding:1.5em .8em .6em; font-family:var(--display); font-size:.73rem; color:#fff; background:linear-gradient(transparent,rgba(0,0,0,.72)); opacity:0; transition:opacity .2s; }
.artgrid .cell:hover .cap{ opacity:1; }
@media(max-width:760px){ .artgrid{ columns:2 150px; } .artgrid .cap{ opacity:1; font-size:.68rem; } }
.lb{ position:fixed; inset:0; background:rgba(8,8,10,.93); display:none; align-items:center; justify-content:center; z-index:1000; }
.lb.open{ display:flex; }
.lb img{ max-width:92vw; max-height:82vh; border-radius:6px; box-shadow:0 24px 70px rgba(0,0,0,.55); }
.lb .cap2{ position:fixed; left:0; right:0; bottom:18px; text-align:center; color:#fff; font-family:var(--display); font-size:.9rem; padding:0 1rem; }
.lb button{ position:fixed; background:rgba(255,255,255,.14); color:#fff; border:none; width:48px; height:48px; border-radius:50%; font-size:1.5rem; line-height:1; cursor:pointer; display:grid; place-items:center; }
.lb button:hover{ background:rgba(255,255,255,.26); }
.lb .close{ top:18px; right:18px; } .lb .prev{ left:14px; top:calc(50% - 24px); } .lb .next{ right:14px; top:calc(50% - 24px); }
@media(max-width:600px){ .lb button{ width:42px; height:42px; } }

/* dense square gallery (overrides masonry) */
.artgrid{ columns:auto; display:grid; grid-template-columns:repeat(auto-fill,minmax(120px,1fr)); gap:8px; }
.artgrid .cell{ margin:0; aspect-ratio:1; cursor:zoom-in; }
.artgrid img{ height:100%; object-fit:cover; }
.artgrid .cap{ padding:1.2em .5em .45em; font-size:.62rem; }
@media(max-width:560px){ .artgrid{ grid-template-columns:repeat(3,1fr); gap:6px; } .artgrid .cap{ opacity:0; } }

/* photos placed into thumbs + about */
.work-card a.thumb{ padding:0; }
.work-card a.thumb img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; z-index:1; }
.about-portrait{ display:block; width:100%; max-width:520px; border-radius:12px; border:1px solid var(--line); margin:0 0 1.7rem; box-shadow:0 24px 50px -34px rgba(0,0,0,.3); filter:grayscale(0); }

/* click-to-play reels */
button.r-thumb{ font:inherit; color:inherit; border:0; padding:0; width:100%; cursor:pointer; }
.reel .r-thumb iframe{ position:absolute; inset:0; width:100%; height:100%; border:0; }

/* watch click-to-play + video hero */
button.yt-embed{ border:0; padding:0; width:100%; cursor:pointer; }
.yt-embed iframe{ position:absolute; inset:0; width:100%; height:100%; border:0; }
video.hero-photo{ display:block; }

/* testimonial stars */
.stars{ color:#FF6A2C; letter-spacing:2px; font-size:.95rem; line-height:1; margin-bottom:.6rem; }

/* callout icons (100days "More than a sketchbook") */
.callout-ico{ display:block; color:var(--orange-deep); margin:0 0 .7rem; }

/* ---------- hero (editorial redesign: small name, statement-led) ---------- */
.hero{ padding:clamp(70px,16vh,160px) 0 clamp(48px,9vh,90px); }
.hero-name{ font-family:var(--display); font-weight:600; font-size:clamp(.95rem,1.4vw,1.1rem); letter-spacing:.18em; text-transform:uppercase; color:var(--muted); margin:0 0 1.7rem; }
.hero-statement{ font-family:var(--display); font-weight:500; font-size:clamp(2.1rem,5.4vw,4.2rem); line-height:1.06; letter-spacing:-.015em; max-width:18ch; margin:0; color:var(--ink); }
.hero-statement em{ font-style:italic; color:var(--orange-deep); }
.hero-lead{ max-width:46ch; font-family:var(--serif); font-size:clamp(1.05rem,1.7vw,1.25rem); line-height:1.5; color:var(--muted); margin:1.8rem 0 0; }
.hero-roles{ font-family:var(--display); font-weight:500; font-size:.95rem; letter-spacing:.02em; color:var(--muted-2); margin:1.35rem 0 0; }
.hero .ctas{ display:flex; flex-wrap:wrap; gap:.8rem; margin-top:2.2rem; }

/* ---------- top contact bar ---------- */
.topbar{ background:var(--ink); color:#fff; text-align:center; font-family:var(--display); font-size:.92rem; letter-spacing:.01em; padding:.6rem 1rem; }
.topbar a{ color:#fff; }
.topbar strong{ color:var(--orange); font-weight:700; letter-spacing:.03em; }
.topbar .tb-sep{ opacity:.45; margin:0 .55rem; }

/* ---------- interior shots in What's Inside cards ---------- */
.inside-card .inside-shot{ width:100%; height:168px; object-fit:cover; border-radius:10px; border:1px solid var(--line); margin-bottom:1rem; display:block; }

/* ---------- peek inside pair ---------- */
.peek-grid{ display:grid; grid-template-columns:1fr 1fr; gap:1.3rem; margin-top:2.2rem; }
.peek-fig{ margin:0; }
.peek-fig img{ width:100%; height:auto; border-radius:12px; border:1px solid var(--line); box-shadow:0 18px 40px -28px rgba(0,0,0,.3); display:block; }
@media (max-width:640px){ .peek-grid{ grid-template-columns:1fr; } }

/* ---------- story (why this book exists) with cover ---------- */
.story-band{ display:grid; grid-template-columns:minmax(0,1fr) minmax(0,1.3fr); gap:clamp(1.5rem,4vw,3rem); align-items:center; }
.story-cover img{ width:100%; height:auto; border-radius:12px; border:1px solid var(--line); box-shadow:0 28px 56px -34px rgba(0,0,0,.3); display:block; }
@media (max-width:760px){ .story-band{ grid-template-columns:1fr; } }

/* ---------- brand logo chips ---------- */
.brand-chips{ display:flex; flex-wrap:wrap; gap:.5rem .55rem; }
.brand-chip{ display:inline-flex; align-items:center; gap:.5rem; border:1px solid var(--line); background:#fff; border-radius:999px; padding:.3rem .72rem .3rem .34rem; font-family:var(--display); font-size:.86rem; color:var(--ink); line-height:1; }
.brand-mark{ display:inline-flex; align-items:center; justify-content:center; min-width:24px; height:24px; padding:0 3px; border-radius:7px; background:var(--paper-2); color:var(--orange-deep); font-size:.6rem; font-weight:700; letter-spacing:.01em; }

/* full-body standing portrait sits a bit narrower */
.about-portrait[src$=".svg"]{ max-width:340px; }

/* ---------- real brand logos (fetched live; monogram is the fallback) ---------- */
.brand-logo{ width:24px; height:24px; border-radius:6px; object-fit:contain; background:#fff; border:1px solid var(--line); padding:2px; box-sizing:border-box; flex:none; }
