/* =========================================================================
   SKY RIVERS DESIGN — SITE-WIDE STYLESHEET
   Shared by every page on the site:
   - index.html                 (body.home)
   - resume.html                (body.resume)
   - contact.html               (body.contact)
   - privacy.html                (body.privacy)
   - case study pages, e.g. sky-rivers-wellness.html, city-pantry.html,
     elder.html, onecub.html, scouted.html, styleicona.html, vimily.html
                                 (body.case-study)

   SCOPING APPROACH
   Most components (nav, buttons, cards, tags, the toolkit block shared by
   resume + case studies, the media lightbox, etc.) are identical across
   every page that uses them, so they're written unscoped/global.

   Where two pages genuinely use the same selector with different values,
   rules are scoped with a body class, e.g.:
   - `section` padding: 76px (home/resume/contact/privacy) vs 72px (case study)
   - `.section-head` sizing differs across home / resume+contact / case study
   - `footer`: light "avatar footer" (home + resume) vs minimal fine-print-only
     (contact + privacy, no extra rule needed) vs dark hero-style with a
     background image (case study, scoped under body.case-study)
   - `.fine`: default assumes it's nested inside a light footer; case study
     pages override it since their .fine sits in its own section below the
     dark footer instead
   - `.page-header`: contact and privacy both use this class with different
     padding/heading sizes, scoped to body.contact / body.privacy

   VARIANT MODIFIERS
   - .impact-grid.four — used by scouted.html (4 stat cards instead of 3)
   - .feedback-card (single quote) — used by city-pantry, elder, onecub
   - .quote-grid (multiple quotes side by side) — available for any case
     study that needs several testimonials at once
   - .testimonial-slider — same sliding component on the homepage and used
     by styleicona.html in its "Community Validation" section
   ========================================================================= */



  :root{
    --white:      #FFFFFF;
    --paper:      #F1EEE4;
    --paper-dim:  #E7E3D5;
    --ink:        #1C1B18;
    --ink-soft:   #55524A;
    --sage:       #3F6657;
    --sage-dim:   #DDE6DF;
    --clay:       #B85C38;
    --rule:       #C9C4B3;
    --paper-rgb:  241,238,228;

    --display: "Fraunces", serif;
    --body:    "Inter", sans-serif;
    --mono:    "IBM Plex Mono", monospace;

    --max: 1180px;
    --edge: clamp(24px, 5vw, 64px);
  }

  *{ box-sizing:border-box; margin:0; padding:0; }
  html{ scroll-behavior:smooth; }
  body{
    background:var(--paper);
    color:var(--ink);
    font-family:var(--body);
    font-size:16px;
    line-height:1.55;
    -webkit-font-smoothing:antialiased;
  }
  img,svg{ display:block; max-width:100%; }
  a{ color:inherit; }
  ::selection{ background:var(--sage); color:var(--paper); }

  :focus-visible{
    outline:2px solid var(--clay);
    outline-offset:3px;
  }

  .wrap{ max-width:var(--max); margin:0 auto; padding-left:var(--edge); padding-right:var(--edge); }

  .eyebrow{
    font-family:var(--mono);
    font-size:11.5px;
    letter-spacing:0.14em;
    text-transform:uppercase;
    color:var(--sage);
  }

  h1,h2,h3{ font-family:var(--display); font-weight:600; letter-spacing:-0.01em; }

  /* ---------- NAV ---------- */
  header{
    position:sticky; top:0; z-index:50;
    background:rgba(var(--paper-rgb), 0.86);
    backdrop-filter:blur(8px);
    border-bottom:1px solid var(--rule);
  }
  nav.wrap{
    display:flex; align-items:center; justify-content:space-between;
    height:68px;
  }
  .brand{ font-family:var(--display); font-size:19px; font-weight:600; }
  .brand a {text-decoration: none;}
  .brand span{ color:var(--sage); }
  .nav-links{ display:flex; gap:32px; align-items:center; font-size:14px; font-weight:500; }
  .nav-links a{ text-decoration:none; opacity:0.75; transition:opacity .15s; }
  .nav-links a:hover{ opacity:1; }
  .nav-links a[aria-current="page"]{ opacity:1; color:var(--sage); }
  .nav-mobile-only{ display:none; }

  /* ---------- BUTTONS ---------- */
  .nav-cta{
    border:1px solid var(--ink);
    padding:8px 16px;
    border-radius:2px;
    font-size:13px !important;
    opacity:1 !important;
  }

  .btn{
    display:inline-flex; align-items:center; gap:8px;
    font-family:var(--mono);
    font-size:13px;
    letter-spacing:0.03em;
    text-decoration:none;
    padding:13px 22px;
    border-radius:2px;
    border:1px solid var(--ink);
    background:none;
    cursor:pointer;
    transition:transform .15s ease, background .15s ease, color .15s ease, opacity .15s ease;
  }
  .btn:hover{ transform:translateY(-1px); }
  .btn-solid{ background:var(--ink); color:var(--paper); }
  .btn-solid:hover{ background:var(--sage); border-color:var(--sage); }
  .btn-line:hover{ background:var(--ink); color:var(--paper); }
  .btn:disabled{ opacity:0.55; cursor:not-allowed; transform:none; }

  /* ---------- HERO (home) ---------- */
  .hero{
    position:relative;
    padding:150px 0 96px;
    background-color:#0A0A09; /* fallback / placeholder plate */
    color:var(--paper);
    overflow:hidden;
    border-bottom:1px solid var(--rule);
  }
  .hero-bg{
    position:absolute; inset:0;
    width:100%; height:100%;
    object-fit:cover;
    z-index:0;
  }
  .hero-overlay{
    position:absolute; inset:0;
    background:linear-gradient(180deg, rgba(10,10,9,0.35) 0%, rgba(10,10,9,0.72) 65%, rgba(10,10,9,0.9) 100%);
    opacity:0.4;
    z-index:1;
  }
  .hero .wrap{ position:relative; z-index:2; }
  .hero-content{ max-width:680px; }
  .hero .eyebrow{ color:#9FCBB5; }
  .hero h1{
    font-size:clamp(34px, 4.4vw, 54px);
    line-height:1.08;
    margin:18px 0 22px;
    max-width:15ch;
    color:var(--paper);
  }
  .hero .sub{
    font-size:17px;
    color:rgba(241,238,228,0.78);
    max-width:46ch;
    margin-bottom:34px;
  }
  .hero .btn-line{ border-color:rgba(241,238,228,0.55); color:var(--paper); }
  .hero .btn-line:hover{ background:var(--paper); color:var(--ink); }
  .hero .btn-solid{ background:var(--paper); border-color:var(--paper); color:var(--ink); }
  .hero .btn-solid:hover{ background:var(--clay); border-color:var(--clay); color:var(--paper); }

  .cta-row{ display:flex; gap:14px; flex-wrap:wrap; margin-bottom:52px; }
  .hero .stat-bar{ border-top-color:rgba(241,238,228,0.22); }

  .back-link{
    display:inline-flex; align-items:center; gap:8px;
    font-family:var(--mono); font-size:12.5px;
    text-decoration:none; color:var(--ink-soft);
    padding:18px 0 0;
  }
  .back-link:hover{ color:var(--ink); }

  /* ---------- SECTION SHELL ---------- */
  section{ border-bottom:1px solid var(--rule); }

  body.home section,
  body.resume section,
  body.contact section,
  body.privacy section{ padding:76px 0; }

  body.case-study section{ padding:72px 0; }

  .section-head h2{ line-height:1.18; margin-top:10px; }

  body.home .section-head{ max-width:640px; margin-bottom:48px; }
  body.home .section-head h2{ font-size:clamp(26px, 3vw, 36px); margin-top:14px; }
  body.home #testimonials .section-head{ max-width:680px; }
  body.home .section-head h2 em{ font-style:italic; color:var(--sage); }

  body.resume .section-head,
  body.contact .section-head{ max-width:640px; margin-bottom:40px; }
  body.resume .section-head h2,
  body.contact .section-head h2{ font-size:clamp(24px, 2.6vw, 30px); }

  body.case-study .section-head{ max-width:680px; margin-bottom:36px; }
  body.case-study .section-head h2{ font-size:clamp(24px, 2.8vw, 32px); }

  .reveal{ opacity:0; transform:translateY(16px); transition:opacity .6s ease, transform .6s ease; }
  .reveal.in{ opacity:1; transform:none; }
  @media (prefers-reduced-motion:reduce){ .reveal{ opacity:1; transform:none; } }

  /* ---------- CASE HEADER ---------- */
  .case-header{ padding:44px 0 52px; border-bottom:1px solid var(--rule); }
  .case-header h1{
    font-size:clamp(36px, 5.4vw, 58px);
    line-height:1.03;
    margin-top:14px;
    max-width:18ch;
  }
  .case-header .dek{
    font-family:var(--display);
    font-style:italic;
    font-size:19px;
    color:var(--sage);
    margin-top:14px;
    max-width:44ch;
  }
  .meta-grid{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:24px;
    margin-top:40px;
    padding-top:28px;
    border-top:1px solid var(--rule);
  }
  .meta-grid .label{
    font-family:var(--mono); font-size:11px; letter-spacing:0.03em;
    color:var(--sage); text-transform:uppercase; margin-bottom:8px;
  }
  .meta-grid .value{ font-size:14px; color:var(--ink-soft); line-height:1.5; }

  /* Dark background-image variant (opt-in via .dark-hero modifier) —
     same treatment as the homepage .hero: full-bleed image, dark gradient
     overlay, light text. Apply to an individual case study's case-header
     by adding class="case-header dark-hero" and dropping in a .hero-bg
     image + .hero-overlay div, same markup pattern as the homepage hero. */
  .case-header.dark-hero{
    position:relative;
    background-color:#0A0A09; /* fallback / placeholder plate */
    color:var(--paper);
    overflow:hidden;
    border-bottom:none;
    padding:150px 0 72px;
  }
  .case-header.dark-hero .wrap{ position:relative; z-index:2; }
  .case-header.dark-hero .eyebrow{ color:#9FCBB5; }
  .case-header.dark-hero h1{ color:var(--paper); }
  .case-header.dark-hero .dek{ color:#9FCBB5; }
  .case-header.dark-hero .meta-grid{ border-top-color:rgba(241,238,228,0.22); }
  .case-header.dark-hero .meta-grid .label{ color:#9FCBB5; }
  .case-header.dark-hero .meta-grid .value{ color:rgba(241,238,228,0.78); }
  .case-header.dark-hero .back-link{ color:rgba(241,238,228,0.6); }
  .case-header.dark-hero .back-link:hover{ color:var(--paper); }

  /* ---------- IMPACT STATS ---------- */
  .impact-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:1px;
    background:var(--rule);
    border:1px solid var(--rule);
  }
  .impact-grid.four{ grid-template-columns:repeat(4, 1fr); }
  .impact-card{ background:var(--paper); padding:30px 26px; }
  .impact-grid.four .impact-card{ padding:26px 22px; }
  @media (max-width:1024px) and (min-width:881px){
    .impact-grid.four{ grid-template-columns:repeat(2, 1fr); }
  }
  .impact-tag{
    display:inline-block;
    font-family:var(--mono);
    font-size:10.5px;
    letter-spacing:0.08em;
    text-transform:uppercase;
    color:var(--clay);
    border:1px solid var(--clay);
    border-radius:2px;
    padding:3px 8px;
    margin-bottom:18px;
  }
  .impact-number-row{
    display:flex;
    align-items:baseline;
    gap:10px;
    flex-wrap:wrap;
  }
  .impact-card b{
    font-family:var(--display);
    font-size:34px;
    font-weight:600;
    color:var(--ink);
    line-height:1;
  }
  .impact-unit{
    font-family:var(--body);
    font-size:14.5px;
    font-weight:600;
    color:var(--ink);
  }
  .impact-detail{
    font-size:13.5px;
    color:var(--ink-soft);
    margin-top:12px;
    line-height:1.55;
  }

  /* ---------- CHALLENGE / QUOTE ---------- */
  .challenge-quote{
    font-family:var(--display);
    font-style:italic;
    font-size:clamp(20px, 2.6vw, 27px);
    line-height:1.4;
    color:var(--ink);
    max-width:52ch;
    border-left:2px solid var(--clay);
    padding-left:26px;
    margin-top:24px;
  }

  /* ---------- USER QUOTES ---------- */
  .quote-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:1px;
    background:var(--rule);
    border:1px solid var(--rule);
    margin-top:32px;
  }
  .quote-card{
    background:var(--paper);
    padding:30px 26px;
    display:flex;
    flex-direction:column;
  }
  .quote-card .quote-text{
    font-family:var(--display);
    font-style:italic;
    font-size:15.5px;
    color:var(--ink);
    line-height:1.55;
    flex-grow:1;
  }
  .quote-card .quote-text::before{ content:"\201C"; }
  .quote-card .quote-text::after{ content:"\201D"; }
  .quote-card .quote-author{
    font-family:var(--mono);
    font-size:11.5px;
    color:var(--sage);
    letter-spacing:0.03em;
    text-transform:uppercase;
    margin-top:18px;
  }

  /* ---------- SINGLE CLIENT FEEDBACK CARD ---------- */
  .feedback-card{
    border:1px solid var(--rule);
    background:var(--paper-dim);
    padding:44px 52px;
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
    max-width:680px;
    margin:32px 0 0;
  }
  .feedback-avatar{
    width:64px; height:64px;
    border-radius:50%;
    background:var(--paper);
    overflow:hidden;
    display:flex; align-items:center; justify-content:center;
    margin-bottom:22px;
    flex-shrink:0;
  }
  .feedback-avatar img{ width:100%; height:100%; object-fit:cover; display:block; }
  .feedback-quote{
    font-family:var(--display);
    font-style:italic;
    font-size:17px;
    line-height:1.65;
    color:var(--ink);
    max-width:56ch;
  }
  .feedback-quote::before{ content:"\201C"; }
  .feedback-quote::after{ content:"\201D"; }
  .feedback-author{ margin-top:22px; }
  .feedback-author .name{
    display:block;
    font-family:var(--body);
    font-weight:600;
    font-size:14.5px;
    color:var(--ink);
    margin-bottom:3px;
  }
  .feedback-author .role{
    font-family:var(--mono);
    font-size:12px;
    color:var(--sage);
    letter-spacing:0.03em;
  }

  /* ---------- PROBLEM (home) ---------- */
  .problem-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:1px;
    background:var(--rule);
    border:1px solid var(--rule);
  }
  .problem-card{
    background:var(--paper);
    padding:30px 26px;
  }
  .problem-card .mark{
    width:30px; height:30px;
    margin-bottom:20px;
  }
  .problem-card h3{ font-size:18px; margin-bottom:10px; font-weight:600; }
  .problem-card p{ font-size:14.5px; color:var(--ink-soft); }

  /* ---------- DOMAIN (home) ---------- */
  .domain-list{ display:flex; flex-direction:column; }
  .domain-row{
    display:grid;
    grid-template-columns:200px 1fr;
    gap:40px;
    padding:30px 0;
    border-top:1px solid var(--rule);
  }
  .domain-row:last-child{ border-bottom:1px solid var(--rule); }
  .domain-tag{
    font-family:var(--mono);
    font-size:11.5px;
    color:var(--sage);
    letter-spacing:0.04em;
  }
  .domain-row h3{
    font-size:21px;
    margin-top:6px;
    font-weight:600;
  }
  .domain-row p{ color:var(--ink-soft); font-size:15px; max-width:56ch; margin-top:10px; }

  /* ---------- ENGAGEMENT (home) ---------- */
  .engage-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
  }
  .engage-card{
    border:1px solid var(--rule);
    padding:28px 24px;
    background:var(--paper-dim);
    height:100%;
  }
  .engage-card .eyebrow{ margin-bottom:14px; }
  .engage-card h3{ font-size:19px; margin-bottom:12px; font-weight:600; }
  .engage-card p{ font-size:14.5px; color:var(--ink-soft); flex-grow:1; }

  /* ---------- CASE STUDIES LIST (home) ---------- */
  .case-list{ display:flex; flex-direction:column; }
  .case-row{
    display:grid;
    grid-template-columns:100px 1fr auto;
    gap:24px;
    align-items:center;
    padding:26px 4px;
    margin:0 -4px;
    border-top:1px solid var(--rule);
    text-decoration:none;
    color:inherit;
    cursor:pointer;
    transition:background .18s ease;
  }
  .case-row:last-child{ border-bottom:1px solid var(--rule); }
  .case-row:hover{ background:var(--paper-dim); }
  .case-row:hover h3{ color:var(--sage); }
  .case-row:hover .arrow{ transform:translate(3px,-3px); }
  .case-thumb{
    width:100px; height:100px;
    border-radius:2px;
    overflow:hidden;
    background:var(--paper-dim);
    flex-shrink:0;
  }
  .case-thumb img{
    width:100%; height:100%;
    object-fit:cover;
    display:block;
    transition:transform .3s ease;
  }
  .case-row:hover .case-thumb img{ transform:scale(1.04); }
  .case-row .client{
    font-family:var(--mono);
    font-size:12px;
    color:var(--clay);
    letter-spacing:0.03em;
  }
  .case-row h3{ font-size:20px; font-weight:600; margin-top:6px; transition:color .18s ease; }
  .case-row p{ color:var(--ink-soft); font-size:14.5px; margin-top:8px; max-width:60ch; }
  .case-row .arrow{ font-family:var(--mono); font-size:20px; color:var(--sage); display:inline-block; transition:transform .18s ease; }

  /* ---------- TESTIMONIALS ---------- */
  .testimonial-slider{ position:relative; overflow:hidden; }
  body.case-study .testimonial-slider{ margin-top:32px; }
  .testimonial-track{
    display:flex;
    transition:transform .45s cubic-bezier(.4,0,.2,1);
  }
  @media (prefers-reduced-motion:reduce){
    .testimonial-track{ transition:none; }
  }
  .testimonial-slide{
    flex:0 0 calc(100% / 3);
    min-width:0;
    padding:0 10px;
  }
  @media (max-width:1024px){
    .testimonial-slide{ flex:0 0 50%; }
  }
  @media (max-width:640px){
    .testimonial-slide{ flex:0 0 100%; }
  }
  .testimonial-card{
    border:1px solid var(--rule);
    background:var(--paper-dim);
    padding:36px 30px;
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
    height:100%;
    min-height:320px;
    justify-content:flex-start;
  }
  .testimonial-avatar{
    width:64px; height:64px;
    border-radius:50%;
    background:var(--paper-dim);
    overflow:hidden;
    display:flex; align-items:center; justify-content:center;
    margin-bottom:22px;
    flex-shrink:0;
  }
  .testimonial-avatar img{
    width:100%; height:100%;
    object-fit:cover;
    display:block;
  }
  .testimonial-quote{
    font-family:var(--display);
    font-style:italic;
    font-size:14.5px;
    line-height:1.6;
    color:var(--ink);
    max-width:42ch;
  }
  .testimonial-quote::before{ content:"\201C"; }
  .testimonial-quote::after{ content:"\201D"; }
  .testimonial-author{ margin-top:auto; padding-top:20px; }
  .testimonial-author .name{
    display:block;
    font-family:var(--body);
    font-weight:600;
    font-size:14.5px;
    color:var(--ink);
    margin-bottom:3px;
  }
  .testimonial-author .role{
    font-family:var(--mono);
    font-size:12px;
    color:var(--sage);
    letter-spacing:0.03em;
  }
  .testimonial-controls{
    display:flex; align-items:center; justify-content:center;
    gap:22px;
    margin-top:36px;
  }
  .testimonial-arrow{
    width:38px; height:38px;
    border-radius:50%;
    border:1px solid var(--rule);
    background:var(--paper);
    display:flex; align-items:center; justify-content:center;
    cursor:pointer;
    font-family:var(--mono);
    font-size:15px;
    color:var(--ink-soft);
    transition:border-color .15s ease, color .15s ease;
  }
  .testimonial-arrow:hover{ border-color:var(--ink); color:var(--ink); }
  .testimonial-dots{ display:flex; gap:8px; }
  .testimonial-dot{
    width:7px; height:7px;
    border-radius:50%;
    background:var(--rule);
    border:none; padding:0;
    cursor:pointer;
    transition:background .15s ease, transform .15s ease;
  }
  .testimonial-dot.active{ background:var(--sage); transform:scale(1.35); }


  /* ---------- PHASES ---------- */
  .phase{ padding:72px 0; border-bottom:1px solid var(--rule); }
  .phase-head{
    display:flex; flex-direction:column; gap:6px;
    margin-bottom:18px;
  }
  .phase-num{
    font-family:var(--mono);
    font-size:13px;
    color:var(--sage);
    letter-spacing:0.04em;
  }
  .phase-head h2{ font-size:clamp(24px, 2.8vw, 32px); line-height:1.15; }
  .phase-body{ max-width:72ch; }
  .phase-body > p{ color:var(--ink-soft); font-size:15px; margin-bottom:20px; }
  .phase-list{
    list-style:none;
    display:flex; flex-direction:column; gap:14px;
    margin:20px 0 8px;
  }
  .phase-list li{
    position:relative;
    padding-left:22px;
    font-size:15px;
    color:var(--ink-soft);
    max-width:72ch;
  }
  .phase-list li::before{
    content:"—";
    position:absolute; left:0;
    color:var(--sage);
    font-family:var(--mono);
  }
  .phase-list li strong{ color:var(--ink); font-weight:600; }
  .phase-steps{
    display:flex; flex-direction:column; gap:22px;
    margin-top:20px;
  }
  .phase-step{ display:flex; gap:16px; }
  .phase-step .step-num{
    font-family:var(--mono); font-size:13px; color:var(--sage);
    flex-shrink:0; width:22px; padding-top:2px;
  }
  .phase-step div p{ color:var(--ink-soft); font-size:15px; }
  .phase-step div strong{ color:var(--ink); font-family:var(--display); font-size:16px; font-weight:600; display:block; margin-bottom:4px; }

  /* ---------- MEDIA PLACEHOLDERS ---------- */
  .media-slot{
    display: flex;
    flex-direction: column;
    border:1px solid var(--white);
    background:var(--paper-dim);
    border-radius:2px;
    text-align:center;
    width:100%;
    cursor:pointer;
    font-family:inherit;
    padding:0;
    overflow:hidden;
    transition:border-color .15s ease, transform .15s ease, box-shadow .15s ease;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  }
  .media-slot:hover{
    border-color:var(--white);
    transform:translateY(-2px);
    box-shadow:0 6px 18px rgba(28,27,24,0.08);
  }
  .media-thumb{
    position:relative;
    width: 100%;
    aspect-ratio:4 / 3;
    background:var(--paper-dim);
    overflow:hidden;
  }
  .media-grid.two .media-thumb,
  .media-single .media-thumb{ aspect-ratio:16 / 10; }
  .media-thumb img{
    width:100%; height:100%;
    object-fit:cover; display:block;
    transition:transform .3s ease;
    object-position: top;
  }
  .media-thumb.center img{ object-position: center; }
  .media-slot:hover .media-thumb img{ transform:scale(1.02); }
  .media-thumb.thumb-fallback img{ display:none; }
  .thumb-fallback-icon{
    display:none;
    position:absolute; inset:0;
    align-items:center; justify-content:center;
    color:var(--ink-soft);
  }
  .media-thumb.thumb-fallback .thumb-fallback-icon{ display:flex; }
  .thumb-fallback-icon svg{ width:28px; height:28px; }
  .thumb-play{
    position:absolute; top:50%; left:50%;
    transform:translate(-50%,-50%);
    width:44px; height:44px;
    border-radius:50%;
    background:rgba(10,10,9,0.6);
    display:flex; align-items:center; justify-content:center;
    pointer-events:none;
    transition:background .15s ease, transform .15s ease;
  }
  .media-slot:hover .thumb-play{ background:var(--sage); transform:translate(-50%,-50%) scale(1.06); }
  .thumb-play svg{ width:16px; height:16px; color:#fff; margin-left:2px; }
  .media-caption{
    padding:16px 18px 18px;
    text-align:center;
    background: var(--white);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .media-slot .expand-hint{
    display:block;
    font-family:var(--mono);
    font-size:10.5px;
    letter-spacing:0.05em;
    text-transform:uppercase;
    color:var(--sage);
    margin-bottom:6px;
  }
  .media-slot .filename{
    font-family:var(--mono);
    font-size:12.5px;
    color:var(--ink);
    word-break:break-word;
    font-weight: 500;
  }
  .media-slot .desc{
    font-size:13px;
    color:var(--ink-soft);
    margin-top:6px;
    max-width:44ch;
    margin-left:auto; margin-right:auto;
  }
  .media-single{ margin-top:32px; }
  .media-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(230px, 1fr));
    gap:16px;
    margin-top:32px;
  }
  .media-grid.two{ grid-template-columns:repeat(2, 1fr); }
  .media-grid.three{ grid-template-columns:repeat(3, 1fr); }

  /* ---------- LIGHTBOX ---------- */
  .lightbox-overlay{
    position:fixed; inset:0; z-index:200;
    background:rgba(10,10,9,0.86);
    display:flex; align-items:center; justify-content:center;
    padding:32px;
    opacity:0; pointer-events:none;
    transition:opacity .2s ease;
  }
  .lightbox-overlay.open{ opacity:1; pointer-events:auto; }
  .lightbox-box{
    position:relative;
    background:var(--ink);
    width:100%; max-width:920px;
    max-height:88vh;
    overflow-y:auto;
    text-align:center;
    border-radius:2px;
    transform:translateY(10px) scale(0.98);
    transition:transform .2s ease;
    -webkit-overflow-scrolling:touch;
  }
  .lightbox-overlay.open .lightbox-box{ transform:translateY(0) scale(1); }

  .lightbox-media{ width:100%; background:var(--paper-dim); line-height:0; }
  .lightbox-media .lb-image-wrap img{ width:100%; height:auto; display:block; }
  .lightbox-media .lb-image-fallback{
    display:flex; flex-direction:column; align-items:center; justify-content:center;
    gap:12px; aspect-ratio:16/10; color:var(--ink-soft);
  }
  .lightbox-media .lb-image-fallback svg{ width:40px; height:40px; }
  .lightbox-media .lb-image-fallback span{ font-family:var(--mono); font-size:12px; }

  .lightbox-media .video-embed{ position:relative; width:100%; aspect-ratio:16/9; background:#0A0A09; }
  .lightbox-media .video-embed iframe{ position:absolute; inset:0; width:100%; height:100%; border:0; }

  .lightbox-embed-note{
    font-size:13.5px;
    color:var(--ink-soft);
    margin-top:14px;
    max-width:48ch;
    margin-left:auto; margin-right:auto;
  }

  .lightbox-media .doc-fallback{
    padding:64px 40px;
    display:flex; flex-direction:column; align-items:center; gap:16px;
  }
  .lightbox-media .doc-fallback svg{ width:44px; height:44px; color:var(--ink-soft); }

  /* PDF embed inside the lightbox */
  .lightbox-media .pdf-embed{
    position:relative;
    width:100%;
    height:80vh;
    background:var(--paper-dim);
  }
  .lightbox-media .pdf-embed iframe{
    position:absolute; inset:0;
    width:100%; height:100%;
    border:0;
  }

  /* Mini image gallery/slider inside the lightbox */
  .lightbox-media .gallery{ position:relative; width:100%; }
  .lightbox-media .gallery-track{
    display:flex;
    transition:transform .35s ease;
  }
  @media (prefers-reduced-motion:reduce){
    .lightbox-media .gallery-track{ transition:none; }
  }
  .lightbox-media .gallery-slide{ flex:0 0 100%; min-width:0; }
  .lightbox-media .gallery-slide img{ width:100%; height:auto; display:block; }
  .lightbox-media .gallery-controls{
    display:flex; align-items:center; justify-content:center;
    gap:16px;
    padding:16px 0;
    background:var(--paper-dim);
  }

  /* Small "multiple images" badge on a gallery-type thumbnail */
  .thumb-gallery-badge{
    position:absolute;
    bottom:8px; right:8px;
    display:flex; align-items:center; gap:4px;
    background:rgba(10,10,9,0.65);
    color:#fff;
    font-family:var(--mono);
    font-size:10.5px;
    padding:3px 7px;
    border-radius:2px;
  }
  .thumb-gallery-badge svg{ width:11px; height:11px; }

  .lightbox-info{ padding:40px 36px; text-align:center; }
  .lightbox-info .lightbox-tag{ margin-bottom:14px; display:inline-block; }
  .lightbox-info .filename{
    font-family:var(--mono);
    font-size:15px;
    color:var(--paper);
  }
  .lightbox-info .desc{
    font-size:14.5px;
    color: rgba(241, 238, 228, 0.6);
    margin-top:12px;
    max-width:52ch;
    margin-left:auto; margin-right:auto;
  }
  .lightbox-info .btn{
    border-color: rgba(241,238,228,0.55);
    color: var(--paper);
  }
   .lightbox-info .btn:hover{
    background-color: var(--paper);
    color: var(--ink);
  }
  .lightbox-close{
    position:fixed; top:24px; right:24px;
    z-index:210;
    width:36px; height:36px;
    border:1px solid var(--rule);
    background:var(--paper);
    border-radius:50%;
    display:flex; align-items:center; justify-content:center;
    cursor:pointer;
    font-family:var(--mono); font-size:16px;
    color:var(--ink-soft);
    transition:color .15s ease, border-color .15s ease;
  }
  .lightbox-close:hover{ color:var(--ink); border-color:var(--ink); }

  /* ---------- TAKEAWAYS ---------- */
  .takeaway-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:1px;
    background:var(--rule);
    border:1px solid var(--rule);
  }
  .takeaway-card{ background:var(--paper); padding:32px 28px; }
  .takeaway-card .num{
    font-family:var(--mono);
    font-size:13px;
    color:var(--sage);
    display:block;
    margin-bottom:16px;
  }
  .takeaway-card h3{ font-size:18px; margin-bottom:12px; font-weight:600; line-height:1.25; }
  .takeaway-card p{ font-size:14px; color:var(--ink-soft); }

  /* ---------- RESUME HEADER ---------- */
  .resume-header{
    padding:64px 0;
    border-bottom:1px solid var(--rule);
  }
  .resume-header .top-row{
    display:grid;
    grid-template-columns:1.05fr 0.95fr;
    gap:56px;
    align-items:center;
    margin-bottom:0;
  }
  .resume-header .cta-row{ margin-top:46px; margin-bottom:0; }
  .hero-art{ position:relative; }
  .hero-art figcaption{
    font-family:var(--mono);
    font-size:11px;
    color:var(--ink-soft);
    letter-spacing:0.03em;
    margin-top:10px;
    display:flex; justify-content:space-between;
  }
  #flow-path{
    stroke-dasharray:1400;
    stroke-dashoffset:1400;
    animation:draw 2.1s cubic-bezier(.4,0,.2,1) 0.2s forwards;
  }
  @keyframes draw{ to{ stroke-dashoffset:0; } }
  @media (prefers-reduced-motion:reduce){
    #flow-path{ animation:none; stroke-dashoffset:0; }
  }
  .resume-header h1{
    font-size:clamp(36px, 5vw, 56px);
    line-height:1.02;
    margin-top:10px;
  }
  .resume-header .role{
    font-family:var(--display);
    font-style:italic;
    font-size:19px;
    color:var(--sage);
    margin-top:8px;
  }
  .meta-row{
    display:flex; flex-wrap:wrap; gap:6px 10px;
    font-family:var(--mono);
    font-size:13px;
    color:var(--ink-soft);
    margin-top:18px;
  }
  .meta-row a{ text-decoration:none; border-bottom:1px solid var(--rule); }
  .meta-row a:hover{ border-bottom-color:var(--ink); }
  .meta-row .sep{ color:var(--rule); }

  /* ---------- COMPETENCIES (resume) ---------- */
  .competency-grid{
    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:1px;
    background:var(--rule);
    border:1px solid var(--rule);
  }
  .competency-grid-3 { grid-template-columns:repeat(3, 1fr); }
  .competency-card{
    background:var(--paper);
    padding:28px 26px;
  }
  .competency-card h3{ font-size:17px; margin-bottom:10px; font-weight:600; }
  .competency-card p{ font-size:14.5px; color:var(--ink-soft); }

  /* ---------- EXPERIENCE (resume) ---------- */
  .exp-list{ display:flex; flex-direction:column; }
  .exp-item{
    padding:34px 0;
    border-top:1px solid var(--rule);
  }
  .exp-item:last-child{ border-bottom:1px solid var(--rule); }
  .exp-head{
    display:flex; justify-content:space-between; align-items:baseline;
    flex-wrap:wrap; gap:6px 24px;
  }
  .exp-head h3{ font-size:21px; font-weight:600; }
  .exp-dates{ font-family:var(--mono); font-size:12.5px; color:var(--ink-soft); white-space:nowrap; }
  .exp-company{
    font-family:var(--mono);
    font-size:12px;
    color:var(--clay);
    letter-spacing:0.03em;
    margin-top:6px;
  }
  .exp-bullets{
    list-style:none;
    margin-top:16px;
    display:flex; flex-direction:column; gap:9px;
  }
  .exp-bullets > li{
    position:relative;
    padding-left:20px;
    font-size:14.5px;
    color:var(--ink-soft);
    max-width:74ch;
  }
  .exp-bullets > li::before{
    content:"—";
    position:absolute; left:0;
    color:var(--sage);
    font-family:var(--mono);
  }
  .exp-bullets > li strong{ color:var(--ink); font-weight:600; }
  .exp-sublist{
    list-style:none;
    margin-top:8px;
    padding-left:20px;
    display:flex; flex-direction:column; gap:6px;
  }
  .exp-sublist li{
    position:relative;
    padding-left:16px;
    font-size:14px;
    color:var(--ink-soft);
  }
  .exp-sublist li::before{
    content:"·";
    position:absolute; left:0;
    color:var(--rule);
  }
  .exp-sublist li strong{ color:var(--ink); font-weight:600; }

  /* ---------- EDUCATION (resume) ---------- */
  .edu-list{ display:flex; flex-direction:column; }
  .edu-item{
    padding:24px 0;
    border-top:1px solid var(--rule);
    display:flex; justify-content:space-between;
    flex-wrap:wrap; gap:8px 24px;
  }
  .edu-item:last-child{ border-bottom:1px solid var(--rule); }
  .edu-item h3{ font-size:17px; font-weight:600; }
  .edu-item .distinction{ color:var(--clay); font-family:var(--mono); font-size:12px; }
  .edu-item p{ color:var(--ink-soft); font-size:14px; margin-top:4px; }
  .edu-item .edu-right{ text-align:right; }

  /* ---------- TOOLKIT ---------- */
  .toolkit-list{ display:flex; flex-direction:column; }
  .toolkit-row{
    display:grid;
    grid-template-columns:220px 1fr;
    gap:32px;
    padding:26px 0;
    border-top:1px solid var(--rule);
  }
  .toolkit-row:last-child{ border-bottom:1px solid var(--rule); }
  .toolkit-label{
    font-family:var(--mono); font-size:12px; color:var(--sage); letter-spacing:0.03em;
  }
  .tag-row{ display:flex; flex-wrap:wrap; gap:8px; }
  .tag{
    font-family:var(--mono); font-size:12px;
    padding:6px 11px; border:1px solid var(--rule); border-radius:2px;
    color:var(--ink-soft);
  }

  /* ---------- NEXT CASE / FOOTER NAV ---------- */
  .case-nav{
    padding:56px 0;
    display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:20px;
  }
  .case-nav a{ text-decoration:none; }
  .case-nav .next-label{ font-family:var(--mono); font-size:11px; color:var(--ink-soft); letter-spacing:0.04em; text-transform:uppercase; }
  .case-nav .next-title{ font-family:var(--display); font-size:20px; font-weight:600; margin-top:6px; }

  /* ---------- PAGE HEADER (contact) ---------- */
  body.contact .page-header{
    padding:64px 0 48px;
    border-bottom:1px solid var(--rule);
  }
  body.contact .page-header h1{
    font-size:clamp(36px, 5vw, 54px);
    line-height:1.05;
    margin-top:10px;
    max-width:16ch;
  }
  body.contact .page-header .sub{
    font-size:16.5px;
    color:var(--ink-soft);
    max-width:52ch;
    margin-top:18px;
  }

  /* ---------- CONTACT LAYOUT ---------- */
  .contact-grid{
    display:grid;
    grid-template-columns:1fr 0.85fr;
    gap:64px;
  }

  /* -- form -- */
  .field{ margin-bottom:22px; }
  .field label{
    display:block;
    font-family:var(--mono);
    font-size:12px;
    letter-spacing:0.03em;
    color:var(--ink-soft);
    margin-bottom:8px;
  }
  .field input,
  .field select,
  .field textarea{
    width:100%;
    background:var(--paper-dim);
    border:1px solid var(--rule);
    border-radius:2px;
    padding:13px 14px;
    font-family:var(--body);
    font-size:14.5px;
    color:var(--ink);
    transition:border-color .15s ease, background .15s ease;
  }
  .field input::placeholder,
  .field textarea::placeholder{ color:#96917F; }
  .field input:focus,
  .field select:focus,
  .field textarea:focus{
    outline:none;
    border-color:var(--sage);
    background:var(--paper);
  }
  .field textarea{ resize:vertical; min-height:140px; }
  .field-row{ display:grid; grid-template-columns:1fr 1fr; gap:20px; }

  .form-foot{
    display:flex; align-items:center; gap:18px;
    margin-top:8px;
  }
  .form-note{
    font-family:var(--mono);
    font-size:12px;
    color:var(--ink-soft);
  }
  #form-status{
    font-family:var(--mono);
    font-size:13px;
    margin-top:18px;
    display:none;
  }
  #form-status.show{ display:block; }
  #form-status.ok{ color:var(--sage); }
  #form-status.err{ color:var(--clay); }

  /* -- side panel -- */
  .contact-panel{
    border:1px solid var(--rule);
    background:var(--paper-dim);
    padding:32px 28px;
    height:fit-content;
  }
  .contact-panel .eyebrow{ margin-bottom:16px; }
  .contact-item{
    padding:16px 0;
    border-top:1px solid var(--rule);
  }
  .contact-item:first-of-type{ border-top:none; padding-top:0; }
  .contact-item .label{
    font-family:var(--mono);
    font-size:11px;
    letter-spacing:0.03em;
    color:var(--ink-soft);
    text-transform:uppercase;
  }
  .contact-item a,
  .contact-item span.value{
    display:block;
    font-size:15px;
    margin-top:6px;
    text-decoration:none;
  }
  .contact-item a{ border-bottom:1px solid transparent; }
  .contact-item a:hover{ border-bottom-color:var(--ink); }
  .avail-tag{
    display:inline-block;
    margin-top:20px;
    font-family:var(--mono);
    font-size:11.5px;
    padding:6px 11px;
    border:1px solid var(--sage);
    color:var(--sage);
    border-radius:2px;
  }

  /* ---------- PAGE HEADER (privacy) ---------- */
  body.privacy .page-header{
    padding:64px 0 44px;
    border-bottom:1px solid var(--rule);
  }
  body.privacy .page-header h1{
    font-size:clamp(34px, 4.6vw, 50px);
    line-height:1.05;
    margin-top:10px;
  }
  body.privacy .page-header .meta{
    font-family:var(--mono);
    font-size:12.5px;
    color:var(--ink-soft);
    margin-top:18px;
    display:flex; flex-wrap:wrap; gap:6px 10px;
  }
  body.privacy .page-header .meta .sep{ color:var(--rule); }

  /* ---------- LEGAL CONTENT (privacy) ---------- */
  .legal{
    padding-top:64px;
    padding-bottom:0;
    border-bottom:none;
  }
  .legal-grid{
    display:grid;
    grid-template-columns:220px 1fr;
    gap:56px;
    align-items:start;
  }
  .legal-toc{
    position:sticky;
    top:96px;
    display:flex; flex-direction:column; gap:12px;
  }
  .legal-toc a{
    font-family:var(--mono);
    font-size:12.5px;
    color:var(--ink-soft);
    text-decoration:none;
    line-height:1.4;
    border-left:2px solid transparent;
    padding-left:12px;
    transition:color .15s ease, border-color .15s ease;
  }
  .legal-toc a:hover{ color:var(--ink); border-left-color:var(--rule); }

  .legal-body{ max-width:74ch; }
  .legal-intro{
    font-size:15.5px;
    color:var(--ink-soft);
    margin-bottom:8px;
  }
  .legal-section{
    padding:36px 0;
    border-top:1px solid var(--rule);
    scroll-margin-top:96px;
  }
  .legal-section:first-of-type{ border-top:1px solid var(--rule); margin-top:36px; }
  .legal-section h2{
    font-size:21px;
    display:flex; align-items:baseline; gap:12px;
  }
  .legal-section h2 .num{
    font-family:var(--mono);
    font-size:13px;
    font-weight:500;
    color:var(--sage);
  }
  .legal-section p{
    color:var(--ink-soft);
    font-size:15px;
    margin-top:14px;
  }
  .legal-section ul{
    list-style:none;
    margin-top:16px;
    display:flex; flex-direction:column; gap:12px;
  }
  .legal-section ul li{
    position:relative;
    padding-left:20px;
    font-size:15px;
    color:var(--ink-soft);
  }
  .legal-section ul li::before{
    content:"—";
    position:absolute; left:0;
    color:var(--sage);
    font-family:var(--mono);
  }
  .legal-section ul li strong{ color:var(--ink); font-weight:600; }
  .legal-section a{
    text-decoration:none;
    border-bottom:1px solid var(--rule);
  }
  .legal-section a:hover{ border-bottom-color:var(--ink); }

  .legal-contact{
    margin-top:8px;
    padding:28px 26px;
    background:var(--paper-dim);
    border:1px solid var(--rule);
  }
  .legal-contact p{ font-size:14.5px; color:var(--ink-soft); margin-top:4px; }
  .legal-contact p:first-child{ margin-top:0; }
  .legal-contact .org{ color:var(--ink); font-weight:600; font-family:var(--display); font-size:16px; }

  /* ---------- FOOTER ---------- */
  /* Shared light default (contact/privacy use only this — just the .fine
     strip). home/resume layer the avatar-footer component on top.
     case-study pages override entirely with the dark hero-style footer. */
  footer{ padding:80px 0 48px; border-bottom:none; }

  /* Avatar footer (home + resume) */
  .footer-grid{ display:grid; grid-template-columns:1.2fr 1fr; gap:48px; align-items:end; }
  footer h2{ font-size:clamp(26px,3.4vw,38px); line-height:1.2; max-width:16ch; }
  .footer-right{ text-align:right; }
  .footer-avatar{
    width:100px; height:100px;
    border-radius:50%;
    overflow:hidden;
    margin:0 0 16px auto;
    background:var(--paper-dim);
  }
  .footer-avatar img{ width:100%; height:100%; object-fit:cover; display:block; }
  .footer-name{ font-family:var(--display); font-size:20px; font-weight:600; }
  .footer-role{ color:var(--ink-soft); font-size:14px; margin:4px 0 20px; }
  .footer-links{ display:flex; flex-direction:column; gap:6px; font-family:var(--mono); font-size:13px; }
  .footer-links a{ text-decoration:none; border-bottom:1px solid transparent; }
  .footer-links a:hover{ border-bottom-color:var(--ink); }
  .footer-cta{ margin-top:24px; }

  .stat-bar{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    border-top:1px solid var(--rule);
  }
  .stat{ padding:16px 18px 0 0; }
  .stat b{
    display:block;
    font-family:var(--display);
    font-size:22px;
    font-weight:600;
  }
  .stat span{
    font-family:var(--mono);
    font-size:11px;
    color:var(--ink-soft);
    letter-spacing:0.03em;
  }
  .hero .stat span { color: rgba(241, 238, 228, 0.55); }

  /* Dark hero-style footer (case study pages only) */
  body.case-study footer{
    position:relative;
    padding:110px 0 64px;
    background-color:#0A0A09;
    color:var(--paper);
    overflow:hidden;
    border-bottom:none;
  }
  body.case-study .footer-bg{
    position:absolute; inset:0;
    width:100%; height:100%;
    object-fit:cover;
    z-index:0;
  }
  body.case-study .footer-overlay{
    position:absolute; inset:0;
    background:linear-gradient(180deg, rgba(10,10,9,0.35) 0%, rgba(10,10,9,0.72) 65%, rgba(10,10,9,0.9) 100%);
    opacity:0.4;
    z-index:1;
  }
  body.case-study footer .wrap{ position:relative; z-index:2; }
  body.case-study .footer-content{ max-width:680px; }
  body.case-study footer .eyebrow{ color:#9FCBB5; }
  body.case-study footer h2{ font-size:clamp(26px,3.4vw,38px); line-height:1.2; max-width:16ch; color:var(--paper); }
  body.case-study footer .footer-copy{ color:rgba(241,238,228,0.78); font-size:15px; margin-top:16px; max-width:48ch; }
  body.case-study footer .btn-solid{ background:var(--paper); color:var(--ink); }
  body.case-study footer .btn-solid:hover{ background:var(--clay); border-color:var(--clay); color:var(--paper); }
  body.case-study .footer-cta{ margin-top:24px; }
  body.case-study footer .stat-bar{ margin-top:52px; border-top-color:rgba(241,238,228,0.22); }
  body.case-study footer .stat b{ color:var(--paper); }
  body.case-study footer .stat span{ color:rgba(241,238,228,0.55); }

  /* ---------- FINE PRINT ---------- */
  /* Default: nested inside a light footer (home/resume/contact/privacy) */
  .fine{
    margin-top:64px;
    padding-top:20px;
    border-top:1px solid var(--rule);
    display:flex; justify-content:space-between;
    font-family:var(--mono); font-size:11px; color:var(--ink-soft);
  }
  .fine a{ text-decoration:none; border-bottom:1px solid transparent; }
  .fine a:hover{ border-bottom-color:var(--ink-soft); }

  /* Case-study override: .fine sits in its own light section below the
     dark footer, not nested inside it, so it needs different spacing. */
  body.case-study .fine{
    margin-top:0; padding:28px 0; border-top:1px solid var(--rule);
    background:var(--paper);
    position:relative; z-index:2;
  }

  /* ---------- RESPONSIVE ---------- */
  @media (max-width:880px){
    .nav-links{ display:none; }
    .nav-mobile-only{ display:inline-flex; }

    /* Home */
    .hero{ padding:110px 0 72px; }
    .case-header.dark-hero{ padding:110px 0 56px; }
    .stat-bar{ grid-template-columns:repeat(2,1fr); row-gap:20px; }
    .problem-grid{ grid-template-columns:1fr; }
    .domain-row{ grid-template-columns:1fr; gap:10px; }
    .engage-grid{ grid-template-columns:1fr; }
    .case-row{ grid-template-columns:1fr; gap:0; }
    .case-thumb{ width:100%; height:180px; margin-bottom:14px; }
    .case-row .arrow{ display:none; }
    .testimonial-card{ padding:36px 24px; min-height:0; }

    /* Resume */
    .resume-header .top-row{ grid-template-columns:1fr; gap:36px; }
    .competency-grid{ grid-template-columns:1fr; }
    .exp-head{ flex-direction:column; gap:4px; }
    .edu-item{ flex-direction:column; }
    .edu-item .edu-right{ text-align:left; }

    /* Shared toolkit */
    .toolkit-row{ grid-template-columns:1fr; gap:10px; }

    /* Contact */
    .contact-grid{ grid-template-columns:1fr; gap:40px; }
    .field-row{ grid-template-columns:1fr; gap:0; }

    /* Privacy */
    .legal-grid{ grid-template-columns:1fr; gap:28px; }
    .legal-toc{
      position:static;
      flex-direction:row; flex-wrap:wrap; gap:8px 16px;
      padding-bottom:24px;
      border-bottom:1px solid var(--rule);
    }
    .legal-toc a{ border-left:none; padding-left:0; }

    /* Case study */
    .meta-grid{ grid-template-columns:repeat(2,1fr); }
    .impact-grid{ grid-template-columns:1fr; }
    .impact-grid.four{ grid-template-columns:1fr; }
    .feedback-card{ padding:32px 24px; }
    .takeaway-grid{ grid-template-columns:1fr; }
    .media-grid.two{ grid-template-columns:1fr; }
    .media-grid.three{ grid-template-columns:1fr; }
    body.case-study footer{ padding:80px 0 48px; }

    /* Footer (avatar variant — home + resume) */
    .footer-grid{ grid-template-columns:1fr; }
    .footer-right{ text-align:left; }
    .footer-avatar{ margin:0 0 16px 0; }

    /* Fine print */
    .fine{ flex-direction:column; gap:6px; }
  }
