/*
Theme Name: DemiPolished
Theme URI: https://www.demipolished.com/
Description: Custom Genesis child theme implementing the approved 2026 DemiPolished redesign. Design tokens sourced from the DemiPolished Design System (OW-Studio brand guide).
Author: DemiPolished
Template: genesis
Version: 0.3.1
Text Domain: demipolished
*/

/* ------------------------------------------------------------------
   1. FONTS — MinervaModern (licensed, self-hosted) + Karla (Google)
   Karla is enqueued from Google Fonts in functions.php.
------------------------------------------------------------------ */
@font-face {
  font-family: 'MinervaModern';
  src: url('assets/fonts/MinervaModern.woff2') format('woff2'),
       url('assets/fonts/MinervaModern.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ------------------------------------------------------------------
   2. DESIGN TOKENS — source of truth: DemiPolished-Design-System.md
------------------------------------------------------------------ */
:root {
  /* primary palette */
  --ink: #2E2E2F;
  --off-white: #F7F7F2;
  --cream: #FBFAF6;
  --olive: #7D6B3D;
  --olive-700: #5F5230;
  --gold: #CFA860;
  /* secondary palette */
  --slate: #E5DED5;
  --blush: #E3CCBA;
  --sage: #BAB59D;
  --tan: #B89374;
  --greige-100: #F1ECE4;
  /* ink steps */
  --ink-70: rgba(46,46,47,.70);
  --ink-45: rgba(46,46,47,.45);
  --ink-15: rgba(46,46,47,.15);
  --ink-08: rgba(46,46,47,.08);
  /* type */
  --font-display: 'MinervaModern', 'Times New Roman', serif;
  --font-body: 'Karla', system-ui, sans-serif;
  /* spacing scale (4px base) */
  --space-1: 4px;  --space-2: 8px;   --space-3: 12px; --space-4: 16px;
  --space-5: 24px; --space-6: 32px;  --space-7: 48px; --space-8: 64px;
  --space-9: 96px;
  /* radii */
  --radius-xs: 3px; --radius-sm: 6px; --radius-md: 12px;
  --radius-lg: 20px; --radius-pill: 999px;
  /* shadows — barely-there, warm */
  --shadow-soft: 0 2px 10px rgba(46,46,47,.05);
  --shadow-raised: 0 8px 30px rgba(46,46,47,.08);
  --shadow-float: 0 18px 50px rgba(46,46,47,.10);
  /* motion — slow, editorial */
  --ease: cubic-bezier(.33,0,.2,1);
  --dur-fast: 160ms; --dur-base: 280ms; --dur-slow: 520ms;
  /* layout */
  --maxw: 1120px;
  --measure: 62ch;
}

/* ------------------------------------------------------------------
   3. BASE
------------------------------------------------------------------ */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--off-white);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }

/* visible keyboard focus — quality floor, do not remove */
:focus-visible {
  outline: 2px solid var(--olive);
  outline-offset: 3px;
  border-radius: 2px;
}

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }
.serif { font-family: var(--font-display); font-weight: 400; }

.eyebrow {
  font-family: var(--font-body); font-weight: 600;
  text-transform: uppercase; letter-spacing: .22em;
  font-size: 12px; color: var(--olive);
}
.orn {
  display: inline-block; width: 7px; height: 7px;
  background: var(--gold); transform: rotate(45deg);
  margin: 0 12px; vertical-align: middle;
}
.btn {
  font-family: var(--font-body); font-weight: 600; font-size: 12px;
  letter-spacing: .16em; text-transform: uppercase;
  padding: 15px 30px; border-radius: var(--radius-sm);
  border: 1px solid var(--ink); background: transparent; color: var(--ink);
  transition: .28s var(--ease); cursor: pointer; display: inline-block;
}
.btn:hover { background: var(--ink); color: var(--off-white); }
.btn-olive { border-color: var(--olive); background: var(--olive); color: var(--off-white); }
.btn-olive:hover { background: var(--olive-700); border-color: var(--olive-700); }

/* editorial reveal */
.reveal { opacity: 0; transform: translateY(16px);
  transition: opacity var(--dur-slow) var(--ease), transform var(--dur-slow) var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* screen-reader text (Genesis/a11y) */
.screen-reader-text, .screen-reader-shortcut {
  position: absolute; clip-path: inset(50%); height: 1px; width: 1px; overflow: hidden;
}
/* keyboard skip-links: zero footprint until focused */
.genesis-skip-link { list-style: none; margin: 0; padding: 0; height: 0; }
.screen-reader-shortcut:focus {
  clip-path: none; height: auto; width: auto;
  background: var(--cream); color: var(--ink);
  padding: 12px 18px; z-index: 100000; top: 8px; left: 8px;
  font-size: 13px; letter-spacing: .06em;
}

/* ------------------------------------------------------------------
   4. MASTHEAD
------------------------------------------------------------------ */
header.masthead {
  border-bottom: 1px solid var(--ink-15);
  position: sticky; top: 0; z-index: 50;
  background: rgba(247,247,242,.92);
  backdrop-filter: blur(6px);
}
.masthead-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 32px; max-width: var(--maxw); margin: 0 auto;
}
.wordmark {
  font-family: var(--font-display); font-weight: 400; font-size: 24px;
  letter-spacing: .18em; text-transform: uppercase;
}
.wordmark span { color: var(--olive); }

nav.main ul { display: flex; gap: 32px; list-style: none; }
nav.main a {
  font-family: var(--font-body); font-size: 12px; letter-spacing: .16em;
  text-transform: uppercase; font-weight: 500; color: var(--ink-70);
  transition: color .25s var(--ease);
}
nav.main a:hover,
nav.main a[aria-current],
nav.main .current-menu-item > a { color: var(--olive); }

.nav-toggle {
  display: none; background: none; border: none;
  font-size: 20px; cursor: pointer; color: var(--ink);
}

/* mobile nav */
@media (max-width: 860px) {
  nav.main { display: none; }
  .nav-toggle { display: block; }
  nav.main.open {
    display: block; position: absolute; right: 32px; top: 64px;
    background: var(--off-white); padding: 18px 22px;
    border: 1px solid var(--ink-15); border-radius: var(--radius-md);
  }
  nav.main.open ul { flex-direction: column; gap: 16px; }
}

/* ------------------------------------------------------------------
   5. LIST BAND (newsletter)
------------------------------------------------------------------ */
.list-band { background: var(--olive); }
.list-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 52px 32px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 36px; flex-wrap: wrap; color: var(--off-white);
}
.list-inner .eyebrow { color: var(--gold); }
.list-inner h3 { font-family: var(--font-display); font-weight: 400; font-size: 32px; margin-top: 8px; }
.list-inner .sub { color: rgba(247,247,242,.82); font-size: 15px; margin-top: 6px; max-width: 34ch; }
.subscribe { display: flex; min-width: 320px; flex: 1; max-width: 440px; }
.subscribe input {
  flex: 1; padding: 15px 18px;
  border: 1px solid rgba(247,247,242,.45); border-right: none;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  background: transparent; color: var(--off-white);
  font-family: var(--font-body); font-size: 14px;
}
.subscribe input::placeholder { color: rgba(247,247,242,.65); }
.subscribe button {
  padding: 15px 24px; border: 1px solid var(--off-white);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: var(--off-white); color: var(--ink);
  font-family: var(--font-body); font-weight: 600; font-size: 11px;
  letter-spacing: .16em; text-transform: uppercase; cursor: pointer;
}

/* ------------------------------------------------------------------
   6. FOOTER
------------------------------------------------------------------ */
.site-footer { background: var(--ink); color: var(--off-white); padding: 68px 0 40px; }
.foot-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 44px; margin-bottom: 50px; }
.site-footer .wordmark { color: var(--off-white); margin-bottom: 16px; display: inline-block; }
.site-footer .wordmark span { color: var(--tan); }
.site-footer p.tag {
  font-family: var(--font-display); font-style: italic; font-size: 19px;
  color: rgba(247,247,242,.75); max-width: 24ch;
}
.foot-col h4 {
  font-family: var(--font-body); font-size: 11px; letter-spacing: .22em;
  text-transform: uppercase; color: var(--tan); margin-bottom: 16px; font-weight: 600;
}
.foot-col a {
  display: block; font-size: 14px; color: rgba(247,247,242,.82);
  margin-bottom: 11px; transition: color .25s var(--ease);
}
.foot-col a:hover { color: var(--off-white); }
.foot-col a .ext { font-size: 10px; letter-spacing: .1em; color: var(--tan); margin-left: 6px; }
.foot-bottom {
  border-top: 1px solid rgba(247,247,242,.15); padding-top: 24px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 12px; color: rgba(247,247,242,.55); letter-spacing: .04em;
}
@media (max-width: 860px) {
  .foot-grid { grid-template-columns: 1fr; gap: 32px; }
  .list-inner { flex-direction: column; align-items: flex-start; }
}

/* ------------------------------------------------------------------
   7. CONTENT SHELL
   Ordinary pages (cart, checkout, account, contact…) are contained by
   .site-inner. Designed views carry body.dp-fullbleed (see functions.php)
   and run edge-to-edge — each of their sections manages its own .wrap.
------------------------------------------------------------------ */
.site-inner { max-width: var(--maxw); margin: 0 auto; padding: 48px 32px; }
body.dp-fullbleed .site-inner { max-width: none; padding: 0; }

/* ------------------------------------------------------------------
   8. FRONT PAGE — port of 01-home.html (approved mockup)
------------------------------------------------------------------ */

/* masthead sits transparent over the full-bleed hero, light text */
.home header.masthead {
  position: absolute; top: 0; left: 0; right: 0;
  background: transparent; backdrop-filter: none;
  border-bottom: 1px solid rgba(247,247,242,.18);
}
.home .masthead .wordmark { color: var(--off-white); }
.home .masthead .wordmark span { color: var(--gold); }
.home nav.main a { color: rgba(247,247,242,.85); }
.home nav.main a:hover,
.home nav.main .current-menu-item > a { color: #fff; }
.home .nav-toggle { color: var(--off-white); }
@media (max-width: 860px) {
  .home nav.main.open { background: var(--ink); border-color: transparent; }
}

/* hero — full-bleed photo */
.hero {
  position: relative; height: 94vh; min-height: 600px; max-height: 920px;
  display: flex; align-items: flex-end; overflow: hidden; background: #E9E2D6;
}
.hero-photo { position: absolute; inset: 0; background-size: cover; background-position: center 20%; }
.hero-scrim { position: absolute; inset: 0; background:
    linear-gradient(90deg, rgba(46,46,47,.60) 0%, rgba(46,46,47,.34) 30%, rgba(46,46,47,0) 60%),
    linear-gradient(180deg, rgba(46,46,47,.20) 0%, rgba(46,46,47,0) 30%, rgba(46,46,47,.45) 100%); }
.hero-copy { position: relative; padding-bottom: 74px; color: var(--off-white); }
.hero .eyebrow { color: var(--gold); margin-bottom: 18px; }
.hero h1 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(40px, 6vw, 82px); line-height: 1.03; letter-spacing: .01em;
  max-width: 15ch; text-shadow: 0 1px 30px rgba(46,46,47,.25);
}
.hero h1 em { font-style: italic; color: var(--gold); }
.hero .strap {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(16px, 2vw, 22px); color: rgba(247,247,242,.9); margin-top: 20px;
}
.hero .lede { font-size: 17px; color: rgba(247,247,242,.92); max-width: 42ch; margin: 20px 0 32px; font-weight: 300; }
.cta-row { display: flex; gap: 14px; flex-wrap: wrap; }

/* button variants over dark photo */
.btn-light { background: var(--off-white); border: 1px solid var(--off-white); color: var(--ink); }
.btn-light:hover { background: transparent; color: var(--off-white); }
.btn-ghost-light { background: transparent; border: 1px solid rgba(247,247,242,.6); color: var(--off-white); }
.btn-ghost-light:hover { border-color: var(--off-white); background: transparent; color: var(--off-white); }

/* labeled warm placeholder (until real photography lands) */
.ph {
  /* display:block is load-bearing — many .ph frames are <a> links, and
     inline boxes ignore aspect-ratio, collapsing the photo to zero height */
  display: block;
  position: relative; overflow: hidden; border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(184,147,116,.35), rgba(125,107,61,.28)), var(--greige-100);
}
.ph::after {
  content: attr(data-label); position: absolute; left: 12px; bottom: 10px;
  font-family: var(--font-body); font-size: 10px; letter-spacing: .2em;
  text-transform: uppercase; color: var(--olive-700); opacity: .85;
}
.ph img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ph.has-img::after { content: none; }

/* generic editorial section */
.sec { padding: 88px 0; }
.sec-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  border-bottom: 1px solid var(--ink-15); padding-bottom: 18px; margin-bottom: 44px; gap: 20px;
}
.sec-head h2 { font-family: var(--font-display); font-weight: 400; font-size: clamp(30px, 4vw, 48px); line-height: 1; }
.sec-head .note { font-family: var(--font-body); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-45); }

/* journal teasers */
.contents { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; }
.contents .entry { display: flex; flex-direction: column; background: none; padding: 0; }
.contents .entry .ph { aspect-ratio: 3/4; margin-bottom: 20px; }
.contents .entry .pillar {
  font-family: var(--font-body); font-weight: 600; font-size: 11px;
  letter-spacing: .2em; text-transform: uppercase; color: var(--olive); margin-bottom: 10px;
}
.contents .entry h3 { font-family: var(--font-display); font-weight: 400; font-size: 25px; line-height: 1.16; margin-bottom: 8px; }
.contents .entry h3 a { transition: color .25s var(--ease); }
.contents .entry h3 a:hover { color: var(--olive-700); }
.contents .entry p { font-size: 14.5px; color: var(--ink-70); }
.contents .entry .read {
  margin-top: 14px; font-family: var(--font-body); font-weight: 600; font-size: 11px;
  letter-spacing: .16em; text-transform: uppercase; color: var(--ink);
  border-bottom: 1px solid var(--gold); padding-bottom: 3px; align-self: flex-start;
  transition: color .25s var(--ease);
}
.contents .entry .read:hover { color: var(--olive); }

/* shop band */
.shop { background: var(--slate); }
.shop-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.prod .ph {
  aspect-ratio: 1/1; margin-bottom: 14px;
  background: linear-gradient(135deg, rgba(247,247,242,.6), rgba(227,204,186,.5)), var(--cream);
}
.prod .name { font-family: var(--font-display); font-size: 20px; }
.prod .name a:hover { color: var(--olive-700); }
.prod .price { font-size: 13px; color: var(--ink-70); margin-top: 3px; }
.prod .price del { color: var(--ink-45); margin-right: 6px; }
.prod .price ins { text-decoration: none; }

/* invite — The Curated Life */
.invite { background: var(--cream); border-top: 1px solid var(--ink-08); padding: 104px 0; text-align: center; }
.invite .eyebrow { margin-bottom: 16px; }
.invite h2 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(32px, 4.6vw, 54px); line-height: 1.1; max-width: 18ch; margin: 0 auto 12px;
}
.invite p { color: var(--ink-70); max-width: 48ch; margin: 0 auto 30px; font-size: 16px; }

@media (max-width: 860px) {
  .hero { height: 88vh; }
  .hero-photo { background-position: center 15%; }
  .contents { grid-template-columns: 1fr; gap: 44px; }
  .shop-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ------------------------------------------------------------------
   9. THE JOURNAL — archive (port of 05-journal-index.html)
------------------------------------------------------------------ */
.jhead { padding: 72px 0 30px; text-align: center; }
.jhead .eyebrow { margin-bottom: 16px; }
.jhead h1 { font-family: var(--font-display); font-weight: 400; font-size: clamp(40px, 5.2vw, 68px); line-height: 1.02; }
.jhead p { color: var(--ink-70); font-size: 17px; max-width: 52ch; margin: 18px auto 0; }

.filter { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; padding: 34px 32px 52px; border-bottom: 1px solid var(--ink-08); }
.filter a {
  font-family: var(--font-body); font-weight: 500; font-size: 12px;
  letter-spacing: .12em; text-transform: uppercase; color: var(--ink-70);
  padding: 9px 18px; border: 1px solid var(--ink-15); border-radius: var(--radius-pill);
  transition: .25s var(--ease);
}
.filter a:hover { border-color: var(--olive); color: var(--olive); }
.filter a.active { background: var(--olive); border-color: var(--olive); color: var(--off-white); }

.featured { padding: 56px 0; }
.feat-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
.feat-grid > .ph { aspect-ratio: 4/3; border-radius: 14px; box-shadow: var(--shadow-raised); display: block; }
.feat .k {
  font-family: var(--font-body); font-weight: 600; font-size: 11px;
  letter-spacing: .2em; text-transform: uppercase; color: var(--olive); margin-bottom: 14px;
}
.feat h2 { font-family: var(--font-display); font-weight: 400; font-size: clamp(30px, 4vw, 48px); line-height: 1.08; margin-bottom: 16px; }
.feat h2 a:hover { color: var(--olive-700); }
.feat p { font-size: 16.5px; color: var(--ink-70); margin-bottom: 20px; max-width: 44ch; }
.feat .meta { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-45); margin-bottom: 18px; }
.read {
  font-family: var(--font-body); font-weight: 600; font-size: 11px;
  letter-spacing: .16em; text-transform: uppercase; color: var(--ink);
  border-bottom: 1px solid var(--gold); padding-bottom: 3px;
  transition: color .25s var(--ease);
}
.read:hover { color: var(--olive); }

.index { padding: 40px 0 20px; }
.idx-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  border-bottom: 1px solid var(--ink-15); padding-bottom: 16px; margin-bottom: 44px;
}
.idx-head h3 { font-family: var(--font-display); font-weight: 400; font-size: 28px; }
.idx-head .note { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-45); }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px 34px; }
.cards .entry { display: flex; flex-direction: column; background: none; padding: 0; }
.cards .entry .ph { aspect-ratio: 3/4; margin-bottom: 18px; }
.cards .entry .pillar {
  font-family: var(--font-body); font-weight: 600; font-size: 11px;
  letter-spacing: .2em; text-transform: uppercase; color: var(--olive); margin-bottom: 9px;
}
.cards .entry h4 { font-family: var(--font-display); font-weight: 400; font-size: 23px; line-height: 1.16; margin-bottom: 8px; }
.cards .entry h4 a:hover { color: var(--olive-700); }
.cards .entry p { font-size: 14px; color: var(--ink-70); margin-bottom: 12px; }
.cards .entry .meta { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-45); }

.more { text-align: center; padding: 56px 0 60px; }
.more a {
  font-family: var(--font-body); font-weight: 600; font-size: 12px;
  letter-spacing: .16em; text-transform: uppercase; padding: 15px 30px;
  border-radius: var(--radius-sm); border: 1px solid var(--ink);
  background: transparent; color: var(--ink); transition: .28s var(--ease);
  display: inline-block; margin: 0 6px;
}
.more a:hover { background: var(--ink); color: var(--off-white); }

@media (max-width: 860px) {
  .feat-grid { grid-template-columns: 1fr; gap: 28px; }
  .cards { grid-template-columns: 1fr; gap: 44px; }
}

/* ------------------------------------------------------------------
   10. SINGLE POST (port of 06-journal-single-post.html)
------------------------------------------------------------------ */
.col { max-width: 66ch; margin: 0 auto; }
.orn-center { display: block; width: 8px; height: 8px; background: var(--gold); transform: rotate(45deg); margin: 0 auto 40px; }

.arthead { padding: 64px 0 40px; text-align: center; }
.arthead .k {
  font-family: var(--font-body); font-weight: 600; font-size: 11px;
  letter-spacing: .2em; text-transform: uppercase; color: var(--olive); margin-bottom: 18px;
}
.arthead h1 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(38px, 5.4vw, 66px); line-height: 1.04; max-width: 20ch; margin: 0 auto;
}
.arthead .deck {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(17px, 2.2vw, 23px); color: var(--ink-70); margin: 22px auto 0; max-width: 40ch;
}
.arthead .meta { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-45); margin-top: 26px; }

.hero-img { max-width: var(--maxw); margin: 0 auto 8px; padding: 0 32px; }
.hero-img .ph { aspect-ratio: 16/9; border-radius: 16px; box-shadow: var(--shadow-raised); }

.art-body { padding: 56px 0 20px; }
.art-body p { font-size: 18px; line-height: 1.78; color: var(--ink); margin-bottom: 24px; }
.art-body p.lead:first-letter {
  font-family: var(--font-display); font-size: 64px; line-height: .8;
  float: left; padding: 6px 12px 0 0; color: var(--olive);
}
.art-body h2 { font-family: var(--font-display); font-weight: 400; font-size: clamp(26px, 3.2vw, 36px); line-height: 1.15; margin: 44px 0 18px; }
.art-body h3 { font-family: var(--font-display); font-weight: 400; font-size: clamp(22px, 2.6vw, 28px); line-height: 1.2; margin: 36px 0 14px; }
.art-body ul, .art-body ol { margin: 0 0 24px 22px; font-size: 17px; line-height: 1.75; }
.art-body li { margin-bottom: 8px; }
.art-body img { border-radius: var(--radius-md); }
.art-body figure { margin: 40px 0; }
.art-body figcaption {
  font-size: 13px; color: var(--ink-45); text-align: center; margin-top: 10px;
  font-style: italic; font-family: var(--font-display);
}
.art-body blockquote {
  border-left: 2px solid var(--gold); padding: 6px 0 6px 28px; margin: 40px 0;
}
.art-body blockquote p {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(24px, 3.2vw, 32px); line-height: 1.3; color: var(--olive-700); margin-bottom: 0;
}
.art-body a { color: var(--olive); border-bottom: 1px solid var(--gold); transition: color .25s var(--ease); }
.art-body a:hover { color: var(--olive-700); }

.sign { padding: 52px 0 20px; text-align: center; }
.sign .sig { font-family: var(--font-display); font-style: italic; font-size: 20px; color: var(--ink); }
.sign .sig span { color: var(--olive); }
.tags { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-top: 30px; }
.tags a {
  font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-70);
  background: var(--greige-100); border-radius: var(--radius-pill); padding: 7px 14px;
  transition: .25s var(--ease);
}
.tags a:hover { background: var(--slate); color: var(--olive); }

.curated { background: var(--olive); color: var(--off-white); text-align: center; padding: 88px 0; margin-top: 56px; }
.curated .eyebrow { color: var(--gold); margin-bottom: 16px; }
.curated h2 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(28px, 4vw, 46px); line-height: 1.1; max-width: 20ch; margin: 0 auto 12px;
}
.curated p { color: rgba(247,247,242,.85); max-width: 44ch; margin: 0 auto 28px; }

.related { padding: 80px 0; }
.rel-head { border-bottom: 1px solid var(--ink-15); padding-bottom: 16px; margin-bottom: 40px; }
.rel-head h3 { font-family: var(--font-display); font-weight: 400; font-size: 28px; }
.rel-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px; }
.rel .ph { aspect-ratio: 3/4; margin-bottom: 16px; display: block; }
.rel .pillar {
  font-family: var(--font-body); font-weight: 600; font-size: 11px;
  letter-spacing: .2em; text-transform: uppercase; color: var(--olive); margin-bottom: 8px;
}
.rel h4 { font-family: var(--font-display); font-weight: 400; font-size: 22px; line-height: 1.16; }
.rel h4 a:hover { color: var(--olive-700); }

@media (max-width: 860px) {
  .rel-grid { grid-template-columns: 1fr; gap: 44px; }
}

/* ------------------------------------------------------------------
   11. ABOUT (port of 02-about.html)
------------------------------------------------------------------ */
.btn-ink { background: var(--ink); border-color: var(--ink); color: var(--off-white); }
.btn-ink:hover { background: transparent; color: var(--ink); }

.intro { padding: 76px 0 56px; }
.intro-grid { display: grid; grid-template-columns: 1fr .78fr; gap: 60px; align-items: center; }
.intro .eyebrow { margin-bottom: 20px; }
.intro h1 { font-family: var(--font-display); font-weight: 400; font-size: clamp(38px, 5.2vw, 68px); line-height: 1.05; }
.intro h1 em { font-style: italic; color: var(--olive); }
.intro .lede { font-size: 19px; color: var(--ink-70); max-width: 38ch; margin: 24px 0 30px; }
.portrait {
  aspect-ratio: 4/5; border-radius: var(--radius-md); overflow: hidden;
  box-shadow: var(--shadow-raised);
  background: var(--greige-100); background-size: cover; background-position: center 18%;
}

.story { padding: 20px 0 40px; }
.story-col { max-width: var(--measure); margin: 0 auto; }
.movement { margin-bottom: 44px; }
.movement .m-label {
  font-family: var(--font-body); font-weight: 600; font-size: 11px;
  letter-spacing: .22em; text-transform: uppercase; color: var(--olive); margin-bottom: 14px;
}
.movement p { font-size: 18px; line-height: 1.75; color: var(--ink); margin-bottom: 16px; }
.movement p .lead-in { font-family: var(--font-display); font-style: italic; color: var(--olive-700); }
.divider { text-align: center; margin: 8px 0 48px; }
.divider .orn-center { margin: 0 auto; }

.pull { background: var(--sage); padding: 96px 0; }
.pull blockquote { max-width: 20ch; margin: 0 auto; text-align: center; border: none; padding: 0; }
.pull q {
  font-family: var(--font-display); font-style: italic; font-weight: 400;
  font-size: clamp(26px, 3.6vw, 42px); line-height: 1.25; color: var(--ink); quotes: none;
}
.pull .attr {
  font-family: var(--font-body); font-weight: 600; text-transform: uppercase;
  letter-spacing: .2em; font-size: 12px; color: var(--olive-700); margin-top: 26px;
}

.building { padding: 96px 0; }
.building .head { text-align: center; margin-bottom: 52px; }
.building .head h2 { font-family: var(--font-display); font-weight: 400; font-size: clamp(28px, 3.6vw, 44px); margin-top: 14px; }
.cards-tinted { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.cards-tinted .card {
  border-radius: var(--radius-lg); padding: 34px 30px; box-shadow: var(--shadow-soft);
  min-height: 210px; display: flex; flex-direction: column; justify-content: space-between;
}
.card.t-cream { background: var(--cream); }
.card.t-slate { background: var(--slate); }
.card.t-blush { background: var(--blush); }
.cards-tinted .card .k {
  font-family: var(--font-body); font-weight: 600; font-size: 11px;
  letter-spacing: .2em; text-transform: uppercase; color: var(--olive); margin-bottom: 14px;
}
.cards-tinted .card h3 { font-family: var(--font-display); font-weight: 400; font-size: 26px; line-height: 1.1; margin-bottom: 10px; }
.cards-tinted .card p { font-size: 14.5px; color: var(--ink-70); }
.cards-tinted .card .go {
  margin-top: 18px; font-family: var(--font-body); font-weight: 600; font-size: 11px;
  letter-spacing: .16em; text-transform: uppercase; color: var(--ink);
  border-bottom: 1px solid var(--gold); padding-bottom: 3px; align-self: flex-start;
  transition: color .25s var(--ease);
}
.cards-tinted .card a.go:hover { color: var(--olive); }

.cta { background: var(--olive); color: var(--off-white); text-align: center; padding: 100px 0; }
.cta .eyebrow { color: var(--gold); margin-bottom: 16px; }
.cta h2 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(30px, 4.4vw, 52px); line-height: 1.1; max-width: 18ch; margin: 0 auto 28px;
}

@media (max-width: 860px) {
  .intro-grid { grid-template-columns: 1fr; gap: 34px; }
  .cards-tinted { grid-template-columns: 1fr; gap: 20px; }
}

/* ------------------------------------------------------------------
   12. WORK WITH ME (port of 03-work-with-me.html)
------------------------------------------------------------------ */
.btn-outline { background: transparent; border-color: var(--tan); color: var(--ink); }
.btn-outline:hover { border-color: var(--ink); background: transparent; color: var(--ink); }

.wwm-intro { border-bottom: 1px solid var(--ink-08); padding: 88px 0 64px; }
.wwm-intro h1 { max-width: 16ch; font-size: clamp(38px, 5.4vw, 72px); line-height: 1.04; }
.wwm-intro .lede { max-width: 52ch; margin: 26px 0 32px; }

.ways { padding: 88px 0; }
.ways-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.way { border-radius: var(--radius-lg); padding: 36px 34px; box-shadow: var(--shadow-soft); background: var(--cream); }
.way:nth-child(2) { background: var(--slate); }
.way:nth-child(3) { background: var(--blush); }
.way:nth-child(4) { background: var(--greige-100); }
.way .k {
  font-family: var(--font-body); font-weight: 600; font-size: 11px;
  letter-spacing: .2em; text-transform: uppercase; color: var(--olive); margin-bottom: 14px;
}
.way h3 { font-family: var(--font-display); font-weight: 400; font-size: 27px; margin-bottom: 10px; }
.way p { font-size: 15px; color: var(--ink-70); }

.standard { background: var(--olive); color: var(--off-white); padding: 92px 0; text-align: center; }
.standard .eyebrow { color: var(--gold); margin-bottom: 18px; }
.standard p {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(24px, 3.4vw, 38px); line-height: 1.3; max-width: 24ch; margin: 0 auto;
}

.audience { padding: 88px 0; }
.aud-head { text-align: center; margin-bottom: 48px; }
.aud-head h2 { font-family: var(--font-display); font-weight: 400; font-size: clamp(28px, 3.6vw, 44px); margin-top: 14px; }
.aud-head p { color: var(--ink-70); margin-top: 10px; }
.stats { display: grid; grid-template-columns: repeat(5, 1fr); border-top: 1px solid var(--ink-15); border-bottom: 1px solid var(--ink-15); }
.stat { padding: 30px 16px; text-align: center; border-right: 1px solid var(--ink-08); }
.stat:last-child { border-right: none; }
.stat .n { font-family: var(--font-display); font-size: 34px; line-height: 1; color: var(--ink); }
.stat .l {
  font-family: var(--font-body); font-weight: 600; font-size: 11px;
  letter-spacing: .18em; text-transform: uppercase; color: var(--olive); margin-top: 12px;
}
.aud-note, .stats-note { text-align: center; color: var(--ink-45); font-size: 13px; margin-top: 20px; letter-spacing: .04em; }

.kit { background: var(--cream); border-top: 1px solid var(--ink-08); border-bottom: 1px solid var(--ink-08); padding: 92px 0; }
.kit-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; }
.kit .eyebrow { margin-bottom: 16px; }
.kit h2 { font-family: var(--font-display); font-weight: 400; font-size: clamp(28px, 3.6vw, 44px); line-height: 1.1; margin-bottom: 16px; }
.kit p { font-size: 16px; color: var(--ink-70); max-width: 46ch; margin-bottom: 26px; }
.kit-side { background: var(--ink); color: var(--off-white); border-radius: var(--radius-lg); padding: 40px 34px; }
.kit-side h4 { font-family: var(--font-display); font-weight: 400; font-size: 22px; margin-bottom: 16px; }
.kit-side ul { list-style: none; margin: 0; }
.kit-side li {
  font-size: 14.5px; color: rgba(247,247,242,.85); padding: 11px 0;
  border-bottom: 1px solid rgba(247,247,242,.14); display: flex; align-items: center; gap: 12px;
}
.kit-side li:last-child { border-bottom: none; }
.kit-side li::before { content: ''; width: 6px; height: 6px; background: var(--gold); transform: rotate(45deg); flex: none; }

.contact { padding: 92px 0; }
.contact-head { text-align: center; margin-bottom: 44px; }
.contact-head h2 { font-family: var(--font-display); font-weight: 400; font-size: clamp(28px, 3.8vw, 46px); margin-top: 12px; }
.contact-head p { color: var(--ink-70); margin-top: 10px; }
.contact-note { text-align: center; color: var(--ink-45); font-size: 13px; margin-top: 20px; }

/* Ninja Forms inside .inq — match the mockup form styling */
.inq { max-width: 640px; margin: 0 auto; }
.inq .nf-field-label label {
  font-family: var(--font-body); font-weight: 600; font-size: 11px;
  letter-spacing: .16em; text-transform: uppercase; color: var(--olive); margin-bottom: 8px;
}
.inq input[type="text"], .inq input[type="email"], .inq input[type="tel"], .inq textarea {
  width: 100%; padding: 14px 16px; border: 1px solid var(--ink-15);
  border-radius: 8px; background: var(--cream);
  font-family: var(--font-body); font-size: 15px; color: var(--ink);
}
.inq textarea { min-height: 130px; resize: vertical; }
.inq input[type="button"], .inq input[type="submit"], .inq button {
  font-family: var(--font-body); font-weight: 600; font-size: 12px;
  letter-spacing: .16em; text-transform: uppercase; padding: 15px 30px;
  border-radius: var(--radius-sm); border: 1px solid var(--ink);
  background: var(--ink); color: var(--off-white);
  transition: .28s var(--ease); cursor: pointer;
}
.inq input[type="button"]:hover, .inq input[type="submit"]:hover, .inq button:hover {
  background: transparent; color: var(--ink);
}
.inq .nf-field-container { margin-bottom: 18px; }

@media (max-width: 860px) {
  .ways-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; border: none; }
  .stat { border: 1px solid var(--ink-08); }
  .kit-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ------------------------------------------------------------------
   13. PORTFOLIO — UNLISTED (port of 04-portfolio-UNLISTED.html)
   Standalone sent artifact: minimal kit header, no site nav.
------------------------------------------------------------------ */
.kithead {
  position: absolute; top: 0; left: 0; right: 0; z-index: 20;
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 32px; max-width: var(--maxw); margin: 0 auto;
}
.kithead .wm {
  font-family: var(--font-display); font-weight: 400; font-size: 20px;
  letter-spacing: .18em; text-transform: uppercase; color: var(--off-white);
}
.kithead .wm span { color: var(--gold); }
.kithead .tagword {
  font-family: var(--font-body); font-weight: 600; font-size: 11px;
  letter-spacing: .22em; text-transform: uppercase; color: rgba(247,247,242,.8);
}

.cover {
  position: relative; height: 96vh; min-height: 600px; max-height: 940px;
  display: flex; align-items: flex-end; overflow: hidden; background: #E9E2D6;
}
.cover-photo { position: absolute; inset: 0; background-size: cover; background-position: center 18%; }
.cover-scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(46,46,47,.30) 0%, rgba(46,46,47,0) 32%, rgba(46,46,47,.55) 100%); }
.cover-copy { position: relative; padding-bottom: 72px; color: var(--off-white); }
.cover .eyebrow { color: var(--gold); margin-bottom: 16px; }
.cover h1 { font-family: var(--font-display); font-weight: 400; font-size: clamp(44px, 7vw, 96px); line-height: .98; letter-spacing: .01em; }
.cover .role { font-family: var(--font-display); font-style: italic; font-size: clamp(17px, 2.2vw, 24px); color: rgba(247,247,242,.9); margin-top: 16px; }

.posn { padding: 84px 0 20px; }
.posn-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.posn .eyebrow { margin-bottom: 16px; }
.posn h2 { font-family: var(--font-display); font-weight: 400; font-size: clamp(26px, 3.4vw, 40px); line-height: 1.12; }
.posn p { font-size: 16.5px; color: var(--ink-70); line-height: 1.7; margin-bottom: 14px; }

.stats-sec { padding: 64px 0; }

.gallery { padding: 70px 0; }
.g-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  border-bottom: 1px solid var(--ink-15); padding-bottom: 16px; margin-bottom: 34px;
}
.g-head h2 { font-family: var(--font-display); font-weight: 400; font-size: clamp(26px, 3.4vw, 40px); }
.g-head .note { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-45); }
.pf-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; grid-auto-flow: dense; }
.tile {
  position: relative; overflow: hidden; border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(184,147,116,.35), rgba(125,107,61,.28)), var(--greige-100);
}
.tile::after {
  content: attr(data-label); position: absolute; left: 12px; bottom: 10px;
  font-family: var(--font-body); font-size: 10px; letter-spacing: .18em;
  text-transform: uppercase; color: var(--olive-700); opacity: .85;
}
.tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.tile.has-img::after { content: none; }
.t-portrait { grid-column: span 2; aspect-ratio: 3/4; }
.t-wide { grid-column: span 4; aspect-ratio: 16/10; }
.t-sq { grid-column: span 2; aspect-ratio: 1/1; }
.t-tall { grid-column: span 2; aspect-ratio: 2/3; }

.work { padding: 70px 0; }
.work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 34px; }
.wk {
  border-radius: var(--radius-lg); padding: 30px 28px; box-shadow: var(--shadow-soft);
  background: var(--cream); min-height: 180px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.wk:nth-child(2) { background: var(--slate); }
.wk:nth-child(3) { background: var(--blush); }
.wk .k {
  font-family: var(--font-body); font-weight: 600; font-size: 11px;
  letter-spacing: .2em; text-transform: uppercase; color: var(--olive); margin-bottom: 12px;
}
.wk h3 { font-family: var(--font-display); font-weight: 400; font-size: 23px; margin-bottom: 8px; }
.wk p { font-size: 14px; color: var(--ink-70); }

.formats { background: var(--olive); color: var(--off-white); padding: 76px 0; }
.formats .eyebrow { color: var(--gold); margin-bottom: 16px; text-align: center; display: block; }
.formats h2 { font-family: var(--font-display); font-weight: 400; font-size: clamp(26px, 3.4vw, 40px); text-align: center; margin-bottom: 44px; }
.fmt-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.fmt { text-align: center; padding: 0 8px; }
.fmt h4 { font-family: var(--font-display); font-weight: 400; font-size: 21px; margin-bottom: 8px; }
.fmt p { font-size: 13.5px; color: rgba(247,247,242,.82); }

.close { padding: 96px 0; text-align: center; }
.close .eyebrow { margin-bottom: 16px; }
.close h2 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(30px, 4.4vw, 52px); line-height: 1.1; max-width: 16ch; margin: 0 auto 20px;
}
.close p { color: var(--ink-70); margin-bottom: 30px; }
.close .mail { font-family: var(--font-display); font-size: 22px; color: var(--olive); border-bottom: 1px solid var(--gold); padding-bottom: 3px; }
.close .btn { margin-top: 26px; }

.pf-footer { background: var(--ink); color: var(--off-white); padding: 44px 0; text-align: center; }
.pf-footer .wm { font-family: var(--font-display); letter-spacing: .18em; text-transform: uppercase; font-size: 18px; }
.pf-footer .wm span { color: var(--tan); }
.pf-footer .fine { font-size: 12px; color: rgba(247,247,242,.5); letter-spacing: .06em; margin-top: 12px; }

@media (max-width: 860px) {
  .posn-grid { grid-template-columns: 1fr; gap: 28px; }
  .pf-grid { grid-template-columns: repeat(2, 1fr); }
  .t-portrait, .t-wide, .t-sq, .t-tall { grid-column: span 1; aspect-ratio: 3/4; }
  .work-grid { grid-template-columns: 1fr; }
  .fmt-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}

/* ------------------------------------------------------------------
   14. SHOP + PRODUCT (port of 07-shop-and-product.html)
------------------------------------------------------------------ */
.cart-chip {
  font-family: var(--font-body); font-weight: 600; font-size: 11px;
  letter-spacing: .14em; text-transform: uppercase; color: var(--ink);
  border: 1px solid var(--ink-15); border-radius: var(--radius-pill);
  padding: 8px 16px; margin-left: 24px; transition: .25s var(--ease);
}
.cart-chip:hover { border-color: var(--olive); color: var(--olive); }

.shophead { padding: 68px 0 24px; text-align: center; }
.shophead .eyebrow { margin-bottom: 16px; }
.shophead h1 { font-family: var(--font-display); font-weight: 400; font-size: clamp(40px, 5.2vw, 66px); line-height: 1.02; }
.shophead p { color: var(--ink-70); font-size: 17px; max-width: 50ch; margin: 18px auto 0; }

.controls {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px; padding: 40px 0 30px; border-bottom: 1px solid var(--ink-08);
}
.cats { display: flex; gap: 8px; flex-wrap: wrap; }
.cats a {
  font-family: var(--font-body); font-weight: 500; font-size: 12px;
  letter-spacing: .1em; text-transform: uppercase; color: var(--ink-70);
  padding: 9px 16px; border: 1px solid var(--ink-15); border-radius: var(--radius-pill);
  transition: .25s var(--ease);
}
.cats a:hover { border-color: var(--olive); color: var(--olive); }
.cats a.active { background: var(--olive); border-color: var(--olive); color: var(--off-white); }
.woocommerce-ordering select {
  font-family: var(--font-body); font-size: 12px; letter-spacing: .1em;
  text-transform: uppercase; color: var(--ink-70);
  border: 1px solid var(--ink-15); border-radius: var(--radius-pill);
  padding: 9px 16px; background: transparent; cursor: pointer;
}

.dp-shop-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px 30px; padding: 52px 0 20px; }
.product-card { display: flex; flex-direction: column; }
.product-card .imgwrap {
  position: relative; border-radius: 14px; overflow: hidden; margin-bottom: 18px;
  aspect-ratio: 1/1; display: block;
  background: linear-gradient(135deg, rgba(247,247,242,.55), rgba(227,204,186,.5)), var(--greige-100);
}
.product-card .imgwrap::after {
  content: attr(data-label); position: absolute; left: 14px; bottom: 12px;
  font-size: 10px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--olive-700); opacity: .8; font-family: var(--font-body);
}
.product-card .imgwrap.has-img::after { content: none; }
.product-card .imgwrap img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.badge {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: var(--olive); color: var(--off-white);
  font-family: var(--font-body); font-weight: 600; font-size: 10px;
  letter-spacing: .14em; text-transform: uppercase;
  padding: 6px 12px; border-radius: var(--radius-pill);
}
.product-card .cat {
  font-family: var(--font-body); font-weight: 600; font-size: 10px;
  letter-spacing: .2em; text-transform: uppercase; color: var(--olive); margin-bottom: 8px;
}
.product-card h3 { font-family: var(--font-display); font-weight: 400; font-size: 22px; line-height: 1.14; margin-bottom: 6px; }
.product-card h3 a:hover { color: var(--olive-700); }
.product-card .price { font-size: 15px; color: var(--ink-70); margin-bottom: 16px; }
.product-card .price del { color: var(--ink-45); margin-right: 8px; }
.product-card .price ins { text-decoration: none; }
.product-card .add {
  font-family: var(--font-body); font-weight: 600; font-size: 11px;
  letter-spacing: .16em; text-transform: uppercase; color: var(--ink);
  border: 1px solid var(--ink); border-radius: var(--radius-sm);
  padding: 12px 0; text-align: center; transition: .25s var(--ease); margin-top: auto;
}
.product-card .add:hover { background: var(--ink); color: var(--off-white); }

.dp-woo-pagination { text-align: center; padding: 40px 0 60px; }
.dp-woo-pagination ul { list-style: none; display: inline-flex; gap: 8px; }
.dp-woo-pagination a, .dp-woo-pagination span {
  font-family: var(--font-body); font-weight: 500; font-size: 12px;
  letter-spacing: .1em; padding: 9px 16px;
  border: 1px solid var(--ink-15); border-radius: var(--radius-pill); color: var(--ink-70);
}
.dp-woo-pagination span.current { background: var(--olive); border-color: var(--olive); color: var(--off-white); }

/* single product */
.pdp-single { padding: 64px 0 40px; }
.pdp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; max-width: 960px; margin: 0 auto; }
.pdp-gallery { display: grid; grid-template-columns: 2fr 1fr; gap: 14px; }
.pdp-gallery .main {
  aspect-ratio: 4/5; border-radius: 14px; position: relative; overflow: hidden;
  background: linear-gradient(135deg, rgba(247,247,242,.5), rgba(227,204,186,.5)), var(--greige-100);
  box-shadow: var(--shadow-soft);
}
.pdp-gallery .thumbs { display: flex; flex-direction: column; gap: 14px; }
.pdp-gallery .thumbs div {
  aspect-ratio: 1/1; border-radius: 10px; position: relative; overflow: hidden;
  background: linear-gradient(135deg, rgba(186,181,157,.4), rgba(184,147,116,.3)), var(--greige-100);
}
.pdp-gallery img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.pdp-info .cat {
  font-family: var(--font-body); font-weight: 600; font-size: 10px;
  letter-spacing: .2em; text-transform: uppercase; color: var(--olive); margin-bottom: 12px;
}
.pdp-info h1 { font-family: var(--font-display); font-weight: 400; font-size: clamp(28px, 3.6vw, 40px); line-height: 1.08; margin-bottom: 12px; }
.pdp-info .price { font-family: var(--font-display); font-size: 24px; color: var(--ink); margin-bottom: 18px; }
.pdp-info .price del { color: var(--ink-45); margin-right: 8px; font-size: 19px; }
.pdp-info .price ins { text-decoration: none; }
.pdp-short { font-size: 15px; color: var(--ink-70); margin-bottom: 24px; max-width: 40ch; }
.pdp-info form.cart { display: flex; gap: 12px; margin-bottom: 14px; align-items: stretch; flex-wrap: wrap; }
.pdp-info form.cart .quantity input {
  width: 70px; padding: 14px; border: 1px solid var(--ink-15);
  border-radius: var(--radius-sm); text-align: center;
  font-family: var(--font-body); background: var(--off-white); height: 100%;
}
.pdp-info form.cart .single_add_to_cart_button {
  flex: 1; font-family: var(--font-body); font-weight: 600; font-size: 12px;
  letter-spacing: .16em; text-transform: uppercase;
  background: var(--ink); color: var(--off-white);
  border: 1px solid var(--ink); border-radius: var(--radius-sm);
  padding: 14px 24px; cursor: pointer; transition: .25s var(--ease);
}
.pdp-info form.cart .single_add_to_cart_button:hover { background: transparent; color: var(--ink); }
.bnpl { font-size: 12.5px; color: var(--ink-45); letter-spacing: .02em; }
.bnpl strong { color: var(--olive); font-weight: 600; }
.pdp-desc { padding: 40px 0 70px; }
.pdp-desc p { font-size: 16px; line-height: 1.75; color: var(--ink); margin-bottom: 18px; }

/* Woo notices, token-styled */
.woocommerce-message, .woocommerce-info, .woocommerce-error {
  list-style: none; background: var(--cream); border: 1px solid var(--ink-15);
  border-left: 3px solid var(--olive); border-radius: var(--radius-sm);
  padding: 16px 20px; margin: 20px 0; font-size: 14px;
}
.woocommerce-error { border-left-color: var(--tan); }
.woocommerce-message a.button, .woocommerce-info a.button {
  float: right; font-weight: 600; font-size: 11px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--olive);
}

@media (max-width: 860px) {
  .dp-shop-grid { grid-template-columns: 1fr 1fr; gap: 28px 18px; }
  .pdp-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ------------------------------------------------------------------
   15. CART / CHECKOUT / ACCOUNT — functional, token-skinned
   (Woo default CSS is dequeued; keep these pages contained + usable.)
------------------------------------------------------------------ */
body.woocommerce-cart .site-inner,
body.woocommerce-checkout .site-inner,
body.woocommerce-account .site-inner {
  padding: 56px 32px 72px;
}
body.woocommerce-cart .entry-title,
body.woocommerce-checkout .entry-title,
body.woocommerce-account .entry-title {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(32px, 4vw, 48px); margin-bottom: 32px;
}
table.shop_table { width: 100%; border-collapse: collapse; border: 1px solid var(--ink-08); border-radius: var(--radius-sm); }
table.shop_table th, table.shop_table td {
  padding: 14px 16px; border-bottom: 1px solid var(--ink-08);
  text-align: left; font-size: 14.5px;
}
table.shop_table th {
  font-family: var(--font-body); font-weight: 600; font-size: 11px;
  letter-spacing: .14em; text-transform: uppercase; color: var(--olive);
}
table.shop_table img { max-width: 64px; border-radius: var(--radius-xs); }
.woocommerce button.button, .woocommerce a.button, .woocommerce input.button,
.woocommerce #place_order, button#place_order {
  font-family: var(--font-body); font-weight: 600; font-size: 12px;
  letter-spacing: .14em; text-transform: uppercase;
  background: var(--ink); color: var(--off-white);
  border: 1px solid var(--ink); border-radius: var(--radius-sm);
  padding: 13px 24px; cursor: pointer; transition: .25s var(--ease);
}
.woocommerce button.button:hover, .woocommerce a.button:hover,
.woocommerce input.button:hover, button#place_order:hover {
  background: var(--olive); border-color: var(--olive); color: var(--off-white);
}
.woocommerce input.input-text, .woocommerce select, .woocommerce textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--ink-15);
  border-radius: var(--radius-sm); background: var(--cream);
  font-family: var(--font-body); font-size: 15px; color: var(--ink);
}
.woocommerce form .form-row { margin-bottom: 14px; }
.woocommerce form .form-row label {
  display: block; font-family: var(--font-body); font-weight: 600; font-size: 11px;
  letter-spacing: .14em; text-transform: uppercase; color: var(--olive); margin-bottom: 6px;
}
.cart_totals, #order_review {
  background: var(--cream); border: 1px solid var(--ink-08);
  border-radius: var(--radius-md); padding: 24px;
}

/* Shipping calculator stays collapsed until "Change address" is clicked
   (Woo's own JS toggles it; its dequeued stylesheet used to hide it). */
.shipping-calculator-form { display: none; }

/* Product page: no quantity box — quantity is adjustable in the bag. */
.pdp-info form.cart .quantity { display: none; }

/* No inventory-count line on product pages: availability is communicated
   by the button itself (Add to bag vs the notify-me form). */
.pdp-info p.stock { display: none; }

/* "Notify me" back-in-stock form, token-styled */
.notify-me { margin-bottom: 14px; }
.notify-me .cwginstock-subscribe-form { padding: 0; }
.notify-me .cwginstock-panel-heading,
.notify-me .cwginstock-panel-body { background: transparent; border: none; padding: 0; }
.notify-me .cwginstock-panel-heading h4 {
  font-family: var(--font-body); font-weight: 600; font-size: 11px;
  letter-spacing: .16em; text-transform: uppercase; color: var(--olive); margin-bottom: 10px;
}
.notify-me input[type="email"], .notify-me input[type="text"] {
  width: 100%; padding: 13px 15px; border: 1px solid var(--ink-15);
  border-radius: var(--radius-sm); background: var(--off-white);
  font-family: var(--font-body); font-size: 14px; color: var(--ink); margin-bottom: 10px;
}
.notify-me button, .notify-me input[type="submit"], .notify-me .cwg-btn {
  font-family: var(--font-body); font-weight: 600; font-size: 12px;
  letter-spacing: .16em; text-transform: uppercase;
  background: var(--olive); color: var(--off-white);
  border: 1px solid var(--olive); border-radius: var(--radius-sm);
  padding: 13px 24px; cursor: pointer; transition: .25s var(--ease);
}
.notify-me button:hover { background: var(--olive-700); border-color: var(--olive-700); }

/* Product gallery interaction + lightbox */
.pdp-gallery .main, .pdp-gallery .thumbs div { cursor: pointer; }
.pdp-gallery .thumbs div { transition: opacity var(--dur-base) var(--ease); }
.pdp-gallery .thumbs div:hover { opacity: .85; }
.dp-lightbox {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(46,46,47,.92);
  display: flex; align-items: center; justify-content: center;
  padding: 40px; cursor: zoom-out;
}
.dp-lightbox img {
  max-width: 100%; max-height: 100%; object-fit: contain;
  border-radius: var(--radius-sm); box-shadow: var(--shadow-float);
}
