/** Shopify CDN: Minification failed

Line 256:98 Unexpected "{"
Line 257:85 Unexpected "{"
Line 258:96 Unexpected "{"

**/
/* ============================================================
   FLOW — Design System
   Loaded on top of Dawn's base.css
   ============================================================ */

/* ---- Design tokens ---- */
:root {
  --paper:      #ffffff;
    --paper-2:    #F6F1E8;
    --paper-3:    #EFE7D8;
    --paper-edge: #EFE7D8;
  --ink:        #2B2520;
  --body-col:   #3D352C;
  --soft:       #6A5D4F;
  --walnut:     #5E4632;
  --walnut-deep:#473324;
  --oak:        #C2A06A;
  --oak-deep:   #A9854E;
  --clay:       #B0623C;
  --clay-deep:  #974E2C;
  --line:       rgba(43,37,32,0.13);
  --line-strong:rgba(43,37,32,0.22);
  --line-faint: rgba(43,37,32,0.07);
  --accent:     var(--clay);
  --accent-deep:var(--clay-deep);
  --serif:      "Fraunces", Georgia, serif;
  --sans:       "Hanken Grotesk", -apple-system, BlinkMacSystemFont, sans-serif;
  --gutter:     clamp(20px, 5vw, 64px);
  --radius:     14px;
  --radius-lg:  22px;
  --ease:       cubic-bezier(.2,.7,.2,1);
}

html[data-corners="crisp"] {
  --radius:    3px;
  --radius-lg: 4px;
}
html[data-corners="crisp"] .btn,
html[data-corners="crisp"] .hero-chip,
html[data-corners="crisp"] .news-form input,
html[data-corners="crisp"] .card-prod__quick,
html[data-corners="crisp"] .card-prod__tag { border-radius: 2px; }

/* ---- Base overrides ---- */
body {
  background: var(--paper) !important;
  color: var(--body-col) !important;
  font-family: var(--sans) !important;
  font-size: 17px !important;
  line-height: 1.7 !important;
  -webkit-font-smoothing: antialiased !important;
}

/* Fine paper grain */
body::before {
  content: ""; position: fixed; inset: 0; z-index: 1; pointer-events: none;
  opacity: .05; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img { display: block; max-width: 100%; }
::selection { background: var(--oak); color: #fff; }
h1, h2, h3, h4 { font-family: var(--serif) !important; color: var(--ink); font-weight: 400; margin: 0; letter-spacing: -.012em; }
p  { margin: 0; }
a  { color: inherit; text-decoration: none; }

/* ---- Layout helpers ---- */
.flow-wrap        { width: 100%; max-width: 1320px; margin: 0 auto; padding-inline: var(--gutter); }
.flow-wrap--wide  { max-width: 1560px; }

/* ---- Typography ---- */
.eyebrow {
  font-family: var(--sans); font-weight: 600; text-transform: uppercase;
  letter-spacing: .28em; font-size: 11px; color: var(--accent);
  display: inline-flex; align-items: center; gap: .7em;
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--accent); opacity: .7; }
.eyebrow.no-rule::before { display: none; }

/* ---- Logo ---- */
.flow-logo {
  display: block; width: 128px; aspect-ratio: 770/260;
  background-color: var(--ink);
  -webkit-mask: url("logo.png") center/contain no-repeat;
          mask: url("logo.png") center/contain no-repeat;
}
.flow-logo--foot {
  width: 150px;
  background-color: #EAD9BB;
  -webkit-mask: url("logo.png") center/contain no-repeat;
          mask: url("logo.png") center/contain no-repeat;
}

/* ---- Buttons ---- */
.btn {
  font-family: var(--sans); font-weight: 600; font-size: 1.4rem;
  letter-spacing: .06em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: .6em;
  padding: 15px 28px; border-radius: 100px; border: 1px solid transparent;
  cursor: pointer; transition: .25s var(--ease); text-decoration: none; line-height: 1;
  background: none;
}
.btn--primary { background: var(--accent); color: #fff; }
.btn--primary:hover { background: var(--accent-deep); transform: translateY(-2px); box-shadow: 0 12px 26px -12px rgba(151,78,44,.6); }
.btn--ghost  { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn--ghost:hover  { border-color: var(--ink); background: rgba(43,37,32,.04); }
.btn--block  { width: 100%; justify-content: center; }
.btn .arr    { transition: transform .25s var(--ease); }
.btn:hover .arr { transform: translateX(4px); }

.link-underline {
  font-family: var(--sans); font-weight: 600; font-size: .8rem; letter-spacing: .08em;
  text-transform: uppercase; color: var(--ink);
  display: inline-flex; align-items: center; gap: .55em; padding-bottom: 3px;
  border-bottom: 1px solid var(--accent); transition: .25s var(--ease);
}
.link-underline:hover { gap: .9em; color: var(--accent); }

/* ---- Grain icon ---- */
.grain { color: var(--oak-deep); }

/* ======================================================
   HEADER
   ====================================================== */
.site-head {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--paper) 92%, transparent);
  backdrop-filter: blur(14px) saturate(1.1);
  border-bottom: 1px solid var(--line);
}
.site-head__row {
  display: flex; align-items: center; justify-content: space-between;
  height: 74px; gap: 24px;
}
.flow-nav { display: flex; align-items: center; gap: 34px; }
.flow-nav a {
  font-family: var(--sans); font-weight: 500; font-size: .82rem; letter-spacing: .04em;
  color: var(--body-col); position: relative; padding: 6px 0;
}
.flow-nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
  background: var(--accent); transition: width .3s var(--ease);
}
.flow-nav a:hover { color: var(--ink); }
.flow-nav a:hover::after { width: 100%; }

.head-tools  { display: flex; align-items: center; gap: 18px; }
.icon-btn {
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid transparent;
  display: grid; place-items: center; cursor: pointer; background: transparent;
  color: var(--ink); transition: .2s var(--ease); position: relative;
}
.icon-btn:hover { background: var(--paper-2); border-color: var(--line); }
.cart-count {
  position: absolute; top: 1px; right: 0; min-width: 18px; height: 18px; padding: 0 4px;
  background: var(--accent); color: #fff; border-radius: 100px;
  font-family: var(--sans); font-size: .62rem; font-weight: 700;
  display: grid; place-items: center; line-height: 1;
}
.head-burger { display: none !important; }

/* Mobile nav overlay */
.flow-mobile-nav {
  position: fixed; inset: 0; top: 74px;
  background: var(--paper); z-index: 49;
  padding: 30px var(--gutter);
  display: flex; flex-direction: column; gap: 0;
  transform: translateX(-100%); transition: transform .35s var(--ease);
  border-top: 1px solid var(--line);
  overflow-y: auto;
}
.flow-mobile-nav.is-open { transform: none; }
 /* ── Mobile sub-nav ───────────────────────────────────── */
  .flow-mobile-nav > a {
    font-family: var(--serif); font-size: 1.5rem; color: var(--ink);
    padding: 18px 0; border-bottom: 1px solid var(--line); display: block;
  }
  .mob-item { border-bottom: 1px solid var(--line); }
  .mob-summary {
    list-style: none; cursor: pointer;
    display: flex; justify-content: space-between; align-items: center;
    font-family: var(--serif); font-size: 1.5rem; color: var(--ink);
    padding: 18px 0;
  }
  .mob-summary::-webkit-details-marker { display: none; }
  .mob-caret { flex-shrink: 0; color: var(--soft); transition: transform .25s var(--ease); }
  .mob-item[open] .mob-caret { transform: rotate(180deg); }
  .mob-sub { padding: 0 0 14px 4px; display: flex; flex-direction: column; }
  .mob-sub a {
    font-family: var(--sans); font-size: 1rem; font-weight: 500;
    color: var(--body-col); padding: 12px 0;
    border-top: 1px solid var(--line); display: block;
  }
  .mob-sub a:hover { color: var(--ink); }

/* ======================================================
   PRODUCT CARDS
   ====================================================== */
 .card-prod { display: block; cursor: pointer; text-decoration: none; min-width: 0; overflow: hidden; }
  .card-prod__media-link,
  .card-prod__body-link { display: block; }

  .card-prod__media {
    position: relative; overflow: hidden; border-radius: var(--radius);
    background: #fff; border: 1px solid var(--line-faint);
    padding-top: 125%; height: 0;
  }
  @supports (aspect-ratio: 1) {
    .card-prod__media { padding-top: 0; height: auto; aspect-ratio: 4/5; }
  }
  .card-prod__media img {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .9s var(--ease);
  }
  .card-prod__media.studio img { object-fit: contain; padding: 6%; }
  .card-prod:hover .card-prod__media img { transform: scale(1.05); }

  .card-prod__tag {
    position: absolute; top: 14px; left: 14px; z-index: 2;
    font-family: var(--sans); font-weight: 600; font-size: .6rem; letter-spacing: .14em;
    text-transform: uppercase; color: var(--ink);
    background: color-mix(in srgb, var(--paper) 88%, transparent);
    backdrop-filter: blur(6px); padding: 6px 11px; border-radius: 100px;
  }
  .card-prod__quick {
    position: absolute; left: 12px; right: 12px; bottom: 12px; z-index: 2;
    background: color-mix(in srgb, var(--paper) 92%, transparent);
    backdrop-filter: blur(8px); border: 1px solid var(--line);
    border-radius: 100px; padding: 12px 18px;
    font-family: var(--sans); font-weight: 600; font-size: .74rem; letter-spacing: .08em;
    text-transform: uppercase; color: var(--ink); text-align: center;
    opacity: 0; transform: translateY(10px); transition: .3s var(--ease);
    cursor: pointer; width: calc(100% - 24px);
  }
  .card-prod:hover .card-prod__quick { opacity: 1; transform: none; }

  .card-prod__body {
    padding: 16px 4px 4px; display: flex; justify-content: space-between;
    gap: 8px; align-items: baseline; overflow: hidden;
  }
  .card-prod__body > * { min-width: 0; }
  .card-prod__name  { font-family: var(--serif); font-size: 1.18rem; color: var(--ink); line-height: 1.2; overflow-wrap:
  break-word; word-break: break-word; }
  .card-prod__wood  { display: none; font-family: var(--sans); font-size: .78rem; color: var(--soft); margin-top: 3px; }
  .card-prod__price { font-family: var(--serif); font-size: 1.05rem; color: var(--ink); white-space: nowrap;
  flex-shrink: 0; }

.flow-prod-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: clamp(16px,2vw,30px); { min-width: 0; } }
@media(max-width:1100px) { .flow-prod-grid { grid-template-columns: repeat(3,1fr); } { min-width: 0; } }
@media(max-width:720px)  { .flow-prod-grid { grid-template-columns: repeat(2,1fr); gap: 16px; } { min-width: 0; } }

/* ======================================================
   SECTIONS — shared scaffolding
   ====================================================== */
.flow-section        { padding-block: clamp(64px,9vw,132px); }
.flow-section--tight { padding-block: clamp(48px,6vw,84px); }
.sec-kicker { display: flex; align-items: center; gap: 16px; margin-bottom: 22px; }
.sec-grain  { width: 30px; height: 30px; color: var(--oak-deep); flex: none; }
.head-row {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; margin-bottom: clamp(30px,4vw,52px); flex-wrap: wrap;
}
.head-row h2 { font-size: clamp(2rem,4vw,4.2rem); line-height: 1.04; max-width: 16ch; font-weight: 360; }
.head-row h2 em { color: var(--walnut); }
.head-row .intro { max-width: 34ch; color: var(--soft); font-size: 1.5rem; }

/* ======================================================
   HERO — all 3 variants
   ====================================================== */
.flow-hero { position: relative; }
.flow-hero .hero-variant { display: none; }
.flow-hero[data-variant="split"]   .hv-split   { display: block; }
.flow-hero[data-variant="gallery"] .hv-gallery  { display: block; }
.flow-hero[data-variant="atelier"] .hv-atelier  { display: block; }

/* A · Split */
.hv-split .hero-grid {
  display: grid; grid-template-columns: 1.04fr .96fr; align-items: center;
  gap: clamp(28px,5vw,80px); padding-block: clamp(40px,6vw,86px) clamp(48px,7vw,96px);
}
.hv-split .hero-copy .eyebrow { margin-bottom: 26px; }
.hero-h1 { font-size: clamp(2.7rem,5.6vw,5.1rem); line-height: 1.0; font-weight: 330; max-width: 13ch; }
.hero-h1 em { color: var(--walnut); }
.hv-split .hero-lead { margin-top: 26px; max-width: 38ch; color: var(--body-col); font-size: 1.12rem; }
.hero-cta { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }
.hero-assure {
  display: flex; gap: 26px; flex-wrap: wrap;
  margin-top: 42px; padding-top: 26px; border-top: 1px solid var(--line);
}
.hero-assure div { display: flex; align-items: center; gap: 9px; font-size: .82rem; color: var(--soft); }
.hero-assure .grain { width: 18px; height: 18px; flex: none; }
.hero-figure { position: relative; }
.hero-figure__img {
  border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 5/6;
  border: 1px solid var(--line); box-shadow: 0 40px 80px -50px rgba(43,37,32,.6);
}
.hero-figure__img img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge {
  position: absolute; top: -22px; left: -22px; width: 88px; height: 88px;
  border-radius: 50%; background: var(--paper); border: 1px solid var(--line);
  display: grid; place-items: center; box-shadow: 0 18px 36px -22px rgba(43,37,32,.5);
}
.hero-badge .grain { width: 54px; height: 54px; }
.hero-chip {
  position: absolute; right: -14px; bottom: 30px;
  background: var(--paper); border: 1px solid var(--line); border-radius: 14px;
  padding: 14px 18px; box-shadow: 0 22px 44px -26px rgba(43,37,32,.55); max-width: 200px;
}
.hero-chip .nm { font-family: var(--serif); font-size: 1.04rem; color: var(--ink); }
.hero-chip .mt { font-size: .74rem; color: var(--soft); margin-top: 2px; }
.hero-chip .pr { font-family: var(--serif); color: var(--accent); font-size: 1rem; margin-top: 8px; }

/* B · Gallery */
.hv-gallery { text-align: center; padding-block: clamp(46px,7vw,92px) clamp(40px,6vw,76px); }
.hv-gallery .eyebrow { justify-content: center; margin-bottom: 30px; }
.type-stack {
  font-family: var(--serif); color: var(--ink); line-height: .92;
  font-weight: 320; font-size: clamp(3.4rem,12.5vw,10rem); letter-spacing: -.02em;
}
.type-stack em { font-style: italic; color: var(--walnut); }
.hv-gallery .sub { max-width: 46ch; margin: 30px auto 0; color: var(--soft); font-size: 1.08rem; }
.gallery-row { display: flex; justify-content: center; gap: clamp(14px,2vw,28px); margin-top: clamp(36px,5vw,60px); }
.gallery-row a { display: block; width: clamp(120px,17vw,230px); text-decoration: none; }
.gallery-row .gm { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/5; border: 1px solid var(--line); box-shadow: 0 24px 50px -40px rgba(43,37,32,.6); }
.gallery-row .gm img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.gallery-row a:hover .gm img { transform: scale(1.06); }
.gallery-row .mid { margin-top: clamp(18px,3vw,46px); }
.gallery-row .cap { font-family: var(--serif); font-size: .94rem; color: var(--ink); margin-top: 12px; text-align: center; }
.gallery-row .cap span { display: block; color: var(--soft); font-family: var(--sans); font-size: .78rem; }
.hv-gallery .below-cta { margin-top: clamp(38px,5vw,58px); display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* C · Atelier */
.hv-atelier { position: relative; }
.atelier-stage {
  position: relative; min-height: clamp(540px,82vh,840px);
  overflow: hidden; display: flex; align-items: flex-end;
}
.atelier-stage img.bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 62%;
}
.atelier-stage::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(34,28,22,.82) 0%, rgba(34,28,22,.42) 38%, rgba(34,28,22,.05) 66%, rgba(34,28,22,.22) 100%);
}
.atelier-copy { position: relative; z-index: 2; padding: clamp(36px,6vw,80px); max-width: 680px; color: #F3E8D4; }
.atelier-copy .eyebrow { color: #E7C9A8; }
.atelier-copy .eyebrow::before { background: #E7C9A8; }
.atelier-copy h1 { color: #F6ECDA; font-size: clamp(2.6rem,6vw,5.4rem); line-height: 1.0; font-weight: 330; margin-top: 22px; max-width: 15ch; }
.atelier-copy h1 em { color: #E9CBA6; }
.atelier-copy p { color: #E4D6C0; max-width: 42ch; margin-top: 22px; font-size: 1.1rem; }
.atelier-copy .hero-cta { margin-top: 30px; }
.atelier-copy .btn--ghost { color: #F3E8D4; border-color: rgba(243,232,212,.45); }
.atelier-copy .btn--ghost:hover { border-color: #F3E8D4; background: rgba(243,232,212,.08); }

/* ======================================================
   MARQUEE
   ====================================================== */
.flow-marquee { border-block: 1px solid var(--line); background: var(--paper-2); overflow: hidden; }
.flow-marquee__track {
  display: flex; gap: 60px; padding: 16px 0; white-space: nowrap;
  width: max-content; animation: flowMarq 38s linear infinite;
}
.flow-marquee__track span {
  font-family: var(--sans); text-transform: uppercase; letter-spacing: .24em;
  font-size: .72rem; color: var(--soft); display: inline-flex; align-items: center; gap: 18px;
}
.flow-marquee__track .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--oak-deep); }
@keyframes flowMarq { to { transform: translateX(-50%); } }
@media(prefers-reduced-motion:reduce) { .flow-marquee__track { animation: none; } }

/* ======================================================
   CRAFT STORY
   ====================================================== */
.flow-craft { background: var(--paper-2); border-block: 1px solid var(--line); }
.flow-craft-grid { display: grid; grid-template-columns: 1fr 1fr; }
.flow-craft-media { position: relative; min-height: 480px; overflow: hidden; }
.flow-craft-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.flow-craft-copy {
  padding: clamp(40px,6vw,96px); display: flex; flex-direction: column; justify-content: center;
}
.flow-craft-copy h2 { font-size: clamp(2rem,4vw,3.2rem); line-height: 1.06; margin-top: 20px; max-width: 16ch; font-weight: 340; }
.flow-craft-copy h2 em { color: var(--walnut); }
.flow-craft-copy p { color: var(--body-col); margin-top: 22px; max-width: 42ch; }
.flow-craft-stats { display: flex; gap: 40px; margin-top: 38px; flex-wrap: wrap; }
.flow-craft-stats .n { font-family: var(--serif); font-size: 2.1rem; color: var(--ink); line-height: 1; }
.flow-craft-stats .l { font-size: .78rem; color: var(--soft); text-transform: uppercase; letter-spacing: .14em; margin-top: 8px; }
.flow-craft-copy .link-underline { margin-top: 36px; align-self: flex-start; }
@media(max-width:860px) { .flow-craft-grid { grid-template-columns: 1fr; } .flow-craft-media { min-height: 360px; } }

/* ======================================================
   WORKSHOP FILM
   ====================================================== */
.flow-film {
  background: var(--walnut-deep); color: #EBDDC4;
  position: relative; overflow: hidden;
}
.flow-film::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(120% 90% at 80% 0%, rgba(194,160,106,.16), transparent 55%);
  pointer-events: none;
}
.flow-film .flow-wrap { position: relative; z-index: 2; }
.flow-film .film-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 30px; flex-wrap: wrap; margin-bottom: clamp(30px,4vw,52px);
}
.flow-film .eyebrow { color: #E0BE94; }
.flow-film .eyebrow::before { background: #E0BE94; }
.flow-film h2 { color: #F4E9D4; font-size: clamp(2rem,4vw,3.3rem); line-height: 1.05; font-weight: 340; max-width: 18ch; margin-top: 20px; }
.flow-film h2 em { color: #E0BE94; }
.flow-film .film-sub { color: #CBB48F; max-width: 34ch; font-size: 1rem; }
.film-stage {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 16/9; border: 1px solid rgba(224,190,148,.22);
  background: #1c140d; box-shadow: 0 50px 90px -50px rgba(0,0,0,.7); cursor: pointer;
}
.film-stage img.poster,
.film-stage video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.film-stage video { z-index: 1; background: #1c140d; }
.film-stage::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,14,9,.78) 0%, rgba(20,14,9,.12) 42%, rgba(20,14,9,.32) 100%);
  transition: opacity .4s; pointer-events: none; z-index: 2;
}
.film-stage.playing::after,
.film-stage.playing .film-meta,
.film-stage.playing .play-btn { opacity: 0; pointer-events: none; }
.play-btn {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); z-index: 3;
  width: clamp(74px,7vw,104px); height: clamp(74px,7vw,104px);
  border-radius: 50%; border: 1px solid rgba(244,233,212,.6);
  background: rgba(20,14,9,.34); backdrop-filter: blur(6px);
  display: grid; place-items: center; transition: .3s var(--ease); color: #F4E9D4;
}
.film-stage:hover .play-btn {
  background: var(--accent); border-color: var(--accent);
  transform: translate(-50%,-50%) scale(1.06);
}
.play-btn svg { width: 34%; height: 34%; margin-left: 8%; }
.film-meta {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 3;
  padding: clamp(20px,3vw,38px); display: flex; align-items: flex-end;
  justify-content: space-between; gap: 20px; transition: opacity .4s;
}
.film-meta .ttl { font-family: var(--serif); font-size: clamp(1.2rem,2vw,1.7rem); color: #F4E9D4; }
.film-meta .ttl span { display: block; font-family: var(--sans); font-size: .66rem; letter-spacing: .22em; text-transform: uppercase; color: #E0BE94; margin-bottom: 8px; }
.film-runtime {
  font-family: var(--sans); font-size: .74rem; letter-spacing: .12em;
  color: #EBDDC4; background: rgba(20,14,9,.5); border: 1px solid rgba(224,190,148,.3);
  border-radius: 100px; padding: 7px 14px; backdrop-filter: blur(6px); white-space: nowrap;
}
.film-chapters {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: clamp(14px,1.8vw,24px); margin-top: clamp(18px,2.4vw,30px);
}
.chapter {
  position: relative; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 16/10; cursor: pointer;
  border: 1px solid rgba(224,190,148,.18); background: #1c140d;
}
.chapter img { width: 100%; height: 100%; object-fit: cover; opacity: .82; transition: .5s var(--ease); }
.chapter:hover img { opacity: 1; transform: scale(1.05); }
.chapter::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(20,14,9,.82), rgba(20,14,9,.05) 70%); }
.chapter.active { border-color: var(--accent); }
.chapter .cmini {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid rgba(244,233,212,.55); background: rgba(20,14,9,.4);
  display: grid; place-items: center; color: #F4E9D4; backdrop-filter: blur(4px);
}
.chapter .cmini svg { width: 13px; height: 13px; margin-left: 2px; }
.chapter .ctxt { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 16px 18px; }
.chapter .ctxt .ci { font-family: var(--sans); font-size: .6rem; letter-spacing: .2em; text-transform: uppercase; color: #E0BE94; }
.chapter .ctxt h4 { font-family: var(--serif); color: #F4E9D4; font-size: 1.08rem; margin-top: 5px; font-weight: 400; }
.chapter .ctxt .cr { position: absolute; right: 18px; bottom: 18px; font-size: .72rem; color: #CBB48F; font-family: var(--sans); }
.film-trust {
  display: flex; gap: clamp(26px,4vw,56px); flex-wrap: wrap;
  margin-top: clamp(34px,4vw,54px); padding-top: clamp(28px,3vw,40px);
  border-top: 1px solid rgba(224,190,148,.16);
}
.film-trust .ft { display: flex; align-items: center; gap: 13px; }
.film-trust .ft .grain { width: 30px; height: 30px; color: #E0BE94; flex: none; }
.film-trust .ft .ico  { width: 26px; height: 26px; color: #E0BE94; flex: none; }
.film-trust .ft .t  { font-family: var(--serif); color: #F4E9D4; font-size: 1.04rem; line-height: 1.15; }
.film-trust .ft .s  { font-size: .78rem; color: #B79E78; margin-top: 3px; }
@media(max-width:760px) { .film-chapters { grid-template-columns: 1fr; } }

/* ======================================================
   NATURAL VARIATION
   ====================================================== */
.flow-variation { text-align: center; }
.flow-variation .grain { width: 46px; height: 46px; margin: 0 auto 24px; }
.flow-variation h2 { font-size: clamp(2.1rem,4.6vw,3.6rem); line-height: 1.08; font-weight: 340; max-width: 18ch; margin: 0 auto; }
.flow-variation h2 em { color: var(--accent); }
.flow-variation p { max-width: 48ch; margin: 24px auto 0; color: var(--soft); font-size: 1.08rem; }

/* ======================================================
   FEATURED COLLECTIONS
   ====================================================== */
.flow-coll-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(18px,2.2vw,34px); }
.col-card { display: block; cursor: pointer; text-decoration: none; }
.col-card__media {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; aspect-ratio: 4/5;
}
.col-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.col-card:hover .col-card__media img { transform: scale(1.05); }
.col-card__txt { padding: 18px 2px 0; }
.col-card__txt .k { font-family: var(--sans); font-size: .62rem; letter-spacing: .2em; text-transform: uppercase; color: var(--accent); font-weight: 600; }
.col-card__txt h3 { font-size: 1.55rem; margin-top: 8px; font-weight: 400; color: var(--ink); line-height: 1.1; }
.col-card__txt .meta { font-size: .85rem; color: var(--soft); margin-top: 6px; }
.col-card__txt .a {
  display: inline-flex; align-items: center; gap: .5em; margin-top: 14px;
  font-family: var(--sans); font-size: .76rem; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; color: var(--ink); border-bottom: 1px solid var(--accent);
  padding-bottom: 3px; transition: .25s var(--ease);
}
.col-card:hover .col-card__txt .a { gap: .85em; color: var(--accent); }
@media(max-width:760px) { .flow-coll-grid { grid-template-columns: 1fr; gap: 26px; } }

/* ======================================================
   REVIEWS
   ====================================================== */
.flow-reviews { background: #F4E9D4; }
.flow-reviews .head-row h2 { color: var(--walnut); }
.flow-reviews .head-row .intro { color: var(--soft); }
.rev-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.rev { border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 28px; background: #fff; }
.rev .stars { color: var(--oak-deep); letter-spacing: 3px; font-size: .85rem; }
.rev p { font-family: var(--serif); font-size: 1.18rem; line-height: 1.5; color: var(--ink); margin-top: 16px; }
.rev .who { margin-top: 20px; font-family: var(--sans); font-size: .8rem; letter-spacing: .04em; color: var(--soft); }
.rev .who b { color: var(--ink); font-weight: 600; }
@media(max-width:860px) { .rev-grid { grid-template-columns: 1fr; } }

/* ======================================================
   NEWSLETTER BAND
   ====================================================== */
.flow-news { text-align: center; }
.flow-news h2 { font-size: clamp(2rem,4.4vw,3.4rem); font-weight: 340; max-width: 16ch; margin: 0 auto; line-height: 1.06; }
.flow-news p { color: var(--soft); margin: 18px auto 0; max-width: 42ch; }
.news-form { display: flex; gap: 10px; max-width: 480px; margin: 34px auto 0; }
.news-form input {
  flex: 1; background: var(--paper-2); border: 1px solid var(--line-strong);
  border-radius: 100px; padding: 15px 22px;
  font-family: var(--sans); font-size: .95rem; color: var(--ink);
  outline: none;
}
.news-form input:focus { border-color: var(--accent); }

/* ======================================================
   COLLECTION PAGE
   ====================================================== */
.flow-coll-hero { padding-block: clamp(40px,6vw,76px) clamp(20px,3vw,34px); border-bottom: 1px solid var(--line); }
.flow-coll-hero .eyebrow { margin-bottom: 20px; }
.flow-coll-hero h1 { font-size: clamp(2.6rem,6vw,5rem); line-height: 1.0; font-weight: 320; max-width: 14ch; }
.flow-coll-hero h1 em { color: var(--walnut); }
.flow-coll-hero .ch-intro { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; flex-wrap: wrap; margin-top: 26px; }
.flow-coll-hero .ch-intro p { max-width: 46ch; color: var(--soft); font-size: 1.08rem; }
.flow-coll-hero .count { font-family: var(--serif); font-size: 1.1rem; color: var(--ink); white-space: nowrap; }
.flow-coll-hero .count b { color: var(--accent); }
.flow-promo {
  margin-block: clamp(40px,5vw,72px);
  background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(34px,5vw,60px);
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px; align-items: center;
}
.flow-promo .eyebrow { margin-bottom: 16px; }
.flow-promo h2 { font-size: clamp(1.8rem,3.4vw,2.8rem); line-height: 1.08; font-weight: 340; max-width: 16ch; }
.flow-promo h2 em { color: var(--walnut); }
.flow-promo p { color: var(--body-col); margin-top: 16px; max-width: 42ch; }
.flow-promo .pimg { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; border: 1px solid var(--line); background: #fff; }
.flow-promo .pimg img { width: 100%; height: 100%; object-fit: cover; }
@media(max-width:760px) { .flow-promo { grid-template-columns: 1fr; } .flow-promo .pimg { order: -1; } }

/* ======================================================
   FOOTER
   ====================================================== */
.flow-foot { background: var(--walnut); color: #E7D9C2; position: relative; z-index: 2; }
.flow-foot a { color: #E7D9C2; text-decoration: none; }
.flow-foot .foot-top {
  padding-block: clamp(56px,8vw,104px);
  display: grid; gap: 54px; grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
}
.flow-foot h4 {
  font-family: var(--sans); text-transform: uppercase; letter-spacing: .2em;
  font-size: .66rem; color: #C3AE8C; font-weight: 600; margin-bottom: 20px;
}
.flow-foot ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.flow-foot li a { font-size: .92rem; color: #DCC9AC; transition: .2s; }
.flow-foot li a:hover { color: #F4E9D4; }
.flow-foot .blurb { font-size: .92rem; color: #CBB48F; max-width: 30ch; margin-top: 18px; line-height: 1.6; }
.foot-news { display: flex; gap: 8px; margin-top: 14px; }
.foot-news input {
  flex: 1; background: rgba(255,255,255,.06); border: 1px solid rgba(231,217,194,.25);
  border-radius: 100px; padding: 12px 18px; color: #F0E4CF;
  font-family: var(--sans); font-size: .86rem;
}
.foot-news input::placeholder { color: #B49E78; }
.foot-news button {
  background: var(--accent); color: #fff; border: none; border-radius: 100px;
  padding: 0 20px; font-family: var(--sans); font-weight: 600; font-size: .8rem;
  cursor: pointer; transition: .2s; white-space: nowrap;
}
.foot-news button:hover { background: var(--accent-deep); }
.foot-base {
  border-top: 1px solid rgba(231,217,194,.16); padding-block: 26px;
  display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  font-family: var(--sans); font-size: .74rem; letter-spacing: .1em;
  text-transform: uppercase; color: #B49E78;
}
.flow-foot .foot-base a { color: #B49E78; }
.flow-foot .foot-base a:hover { color: #F4E9D4; }

/* ======================================================
   TOAST
   ====================================================== */
.flow-toast {
  position: fixed; bottom: 26px; left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--ink); color: var(--paper);
  padding: 13px 22px; border-radius: 100px;
  font-size: .86rem; font-family: var(--sans);
  z-index: 95; opacity: 0; pointer-events: none;
  transition: .35s var(--ease);
}
.flow-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ======================================================
   REVEAL ANIMATION
   ====================================================== */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media(prefers-reduced-motion:reduce) { .reveal { opacity: 1 !important; transform: none !important; } }

/* ======================================================
   RESPONSIVE
   ====================================================== */
@media(max-width:1020px) { .flow-foot .foot-top { grid-template-columns: 1fr 1fr; gap: 40px; } }
@media(max-width:760px) {
  body { font-size: 16px !important; }
  .flow-nav, .head-tools .desktop-only { display: none !important; }
  .head-burger { display: grid !important; }
  .flow-foot .foot-top { grid-template-columns: 1fr; gap: 34px; }
  .hv-split .hero-grid { grid-template-columns: 1fr; }
  .hero-figure { order: -1; max-width: 420px; }
  .gallery-row { flex-wrap: wrap; }
  .gallery-row a { width: 42%; }
}

/* ======================================================
   DAWN CART DRAWER — FLOW skin
   ====================================================== */
.cart-drawer,
.cart-drawer__inner-empty { background: var(--paper) !important; }
.cart-drawer__header { border-bottom: 1px solid var(--line) !important; padding: 24px 26px !important; }
.cart-drawer__header h2 { font-family: var(--serif) !important; color: var(--ink) !important; font-weight: 400 !important; font-size: 1.3rem !important; }
.cart-item { border-bottom: 1px solid var(--line) !important; }
.cart-item__name { font-family: var(--serif) !important; color: var(--ink) !important; }
.cart-drawer__footer { background: var(--paper) !important; border-top: 1px solid var(--line) !important; padding: 22px 26px 26px !important; }
.cart-drawer__footer .button--primary {
  background: var(--accent) !important; border-color: var(--accent) !important;
  font-family: var(--sans) !important; font-weight: 600 !important;
  border-radius: 100px !important; letter-spacing: .06em !important;
  text-transform: uppercase !important; font-size: .82rem !important;
}
.cart-drawer__footer .button--primary:hover { background: var(--accent-deep) !important; }
.totals { color: var(--ink) !important; }
.totals__total-value { font-family: var(--serif) !important; }


 .nav-item {
    position: relative; display: flex; align-items: center; gap: 3px;
  }
  .nav-chevron {
    color: var(--soft); flex-shrink: 0; pointer-events: none;
    transition: transform .22s var(--ease);
  }
  .nav-item:hover .nav-chevron,
  .nav-item:focus-within .nav-chevron { transform: rotate(180deg); }

  .nav-drop {
    position: absolute; top: calc(100% + 14px); left: 50%;
    transform: translateX(-50%) translateY(6px);
    min-width: 176px; z-index: 20;
    background: var(--paper); border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 12px 32px -8px rgba(43,37,32,.16);
    padding: 6px;
    opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity .2s var(--ease), transform .2s var(--ease), visibility 0s .2s;
  }
  .nav-item:hover .nav-drop,
  .nav-item:focus-within .nav-drop {
    opacity: 1; visibility: visible; pointer-events: auto;
    transform: translateX(-50%) translateY(0);
    transition-delay: 0s;
  }
  .nav-drop a {
    display: block; padding: 10px 14px;
    border-radius: calc(var(--radius) - 4px);
    font-family: var(--sans); font-size: .82rem;
    color: var(--body-col); white-space: nowrap;
  }
  .nav-drop a::after { display: none; }
  .nav-drop a:hover { background: var(--paper-2); color: var(--ink); }