/* =====================================================================
   AMELIOR CREATIVE STUDIO — shared stylesheet
   Aesthetic: slow-living creative studio. Cormorant Garamond + Jost,
   warm cream surface, deep burgundy accent.
   Built against the ui-ux-pro-max rule set (a11y, touch, motion, responsive).
   ===================================================================== */

:root{
  /* ── semantic colour tokens ── */
  --bg:            #FAF8F5;   /* page surface — warm cream */
  --panel:         #F0EBE3;   /* quiet panel / alt section */
  --ink:           #3A2A20;   /* primary text — deep warm brown */
  --ink-soft:      #6E5E4E;   /* body text (darkened for AA contrast) */
  --burgundy:      #5A3430;   /* the one brand accent */
  --burgundy-deep: #3A2A20;   /* hover / pressed */
  --label:         #8A6A52;   /* small uppercase labels (AA on cream) */
  --line:          #E0D8CF;   /* hairline */
  --on-dark:       #F5EDE8;   /* text on burgundy / dark */
  --on-dark-soft:  #C9B7AA;
  --blue:          #6E7A5A;   /* sage/olive — second accent (looks expensive with brown) */
  --sage:          #6E7A5A;   /* same sage, for decorative bits */
  --sage-soft:     #E7EADD;   /* pale sage — soft highlight backgrounds */

  /* ── type ── */
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Jost', system-ui, -apple-system, sans-serif;
  --script:'Sacramento', cursive;

  /* ── spacing rhythm (8pt) ── */
  --s1:.5rem; --s2:1rem; --s3:1.5rem; --s4:2rem; --s5:3rem; --s6:5rem;

  /* ── motion tokens (unified rhythm) ── */
  --ease: cubic-bezier(.4,0,.1,1);
  --t-fast: .2s;
  --t-mid:  .35s;

  --radius: 30px;
  --shadow: 0 16px 38px -24px rgba(58,42,32,.5);
  --maxw: 1200px;
}

*{ margin:0; padding:0; box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  font-family:var(--sans);
  font-weight:300;
  background:var(--bg);
  color:var(--ink);
  line-height:1.7;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img{ display:block; max-width:100%; }
a{ color:inherit; }

/* subtle paper grain over the whole site (analog, tactile feel) */
body::after{
  content:''; position:fixed; inset:0; z-index:9998; 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='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
@media (prefers-reduced-motion:reduce){ body::after{ opacity:.04; } }

/* ── SERIF WORD RIBBON (editorial scrolling band) ── */
.word-ribbon{ overflow:hidden; padding:1.5rem 0; border-block:1px solid var(--line); background:var(--bg); }
.word-ribbon-track{ display:flex; align-items:center; gap:2.4rem; width:max-content; animation:marquee 42s linear infinite; }
.word-ribbon:hover .word-ribbon-track{ animation-play-state:paused; }
.word-ribbon span{
  font-family:var(--serif); font-style:italic; font-weight:300;
  font-size:clamp(26px,4vw,48px); line-height:1; color:var(--ink); white-space:nowrap;
}
.word-ribbon i{ color:var(--burgundy); font-size:.5em; font-style:normal; transform:translateY(-.15em); }

/* visible focus for keyboard users (a11y: focus-states) */
:focus-visible{ outline:2px solid var(--burgundy); outline-offset:3px; border-radius:2px; }

.skip-link{
  position:absolute; left:-9999px; top:0; z-index:999;
  background:var(--burgundy); color:var(--on-dark);
  padding:.7rem 1.2rem; font-size:13px; letter-spacing:.1em;
}
.skip-link:focus{ left:0; }

/* ── reusable type ── */
.serif{ font-family:var(--serif); }
.eyebrow{
  font-family:var(--sans); font-size:11px; font-weight:400;
  letter-spacing:.24em; text-transform:uppercase; color:var(--blue);
  display:block; margin-bottom:.7rem;
}

/* ── buttons (touch target ≥44px) ── */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  min-height:44px; padding:.85rem 2.1rem;
  font-family:var(--sans); font-size:11.5px; font-weight:400;
  letter-spacing:.15em; text-transform:uppercase;
  background:var(--burgundy); color:var(--on-dark);
  border:1px solid var(--burgundy); border-radius:var(--radius);
  text-decoration:none; cursor:pointer;
  transition:background var(--t-fast) var(--ease), color var(--t-fast) var(--ease),
             transform var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
}
.btn:hover{ background:var(--burgundy-deep); border-color:var(--burgundy-deep); transform:translateY(-2px); box-shadow:0 10px 22px -14px rgba(58,42,32,.7); }
.btn:active{ transform:translateY(0); box-shadow:none; }
.btn-outline{ background:transparent; color:var(--sage); border-color:var(--sage); }
.btn-outline:hover{ background:var(--sage); color:var(--on-dark); border-color:var(--sage); }
.btn-sm{ min-height:40px; padding:.6rem 1.5rem; font-size:10.5px; letter-spacing:.13em; }
.btn[disabled], .btn:disabled{ opacity:.45; cursor:not-allowed; }
.btn[disabled]:hover{ transform:none; box-shadow:none; background:transparent; color:var(--burgundy); }
.btn-soon{ margin-top:.7rem; }
.btn-cta{ position:relative; padding:1.05rem 2.7rem; font-size:12.5px; gap:.6rem; box-shadow:0 10px 24px -12px rgba(90,52,48,.5); animation:ctaPulse 2.6s ease-in-out infinite; }
.btn-cta::after{ content:''; position:absolute; inset:0; border-radius:inherit; box-shadow:0 0 0 0 rgba(90,52,48,.45); animation:ctaRing 2.6s ease-out infinite; pointer-events:none; }
.btn-cta .arrow{ display:inline-block; transition:transform var(--t-fast) var(--ease); animation:ctaArrow 2.6s ease-in-out infinite; }
.btn-cta:hover{ transform:translateY(-2px) scale(1.02); }
.btn-cta:hover .arrow{ transform:translateX(5px); }
@keyframes ctaPulse{ 0%,100%{ transform:scale(1); box-shadow:0 10px 24px -12px rgba(90,52,48,.45); } 50%{ transform:scale(1.035); box-shadow:0 16px 34px -8px rgba(90,52,48,.8); } }
@keyframes ctaRing{ 0%{ box-shadow:0 0 0 0 rgba(90,52,48,.4); } 70%,100%{ box-shadow:0 0 0 15px rgba(90,52,48,0); } }
@keyframes ctaArrow{ 0%,100%{ transform:translateX(0); } 50%{ transform:translateX(4px); } }
@media (prefers-reduced-motion:reduce){ .btn-cta, .btn-cta::after, .btn-cta .arrow{ animation:none; } }

/* ── NAV (centred logo, side links; burger on mobile) ── */
.nav{
  position:sticky; top:0; z-index:200;
  display:flex; align-items:center; gap:1rem;
  padding:1.2rem clamp(1.4rem,3vw,3rem);
  background:rgba(250,248,245,.9);
  backdrop-filter:blur(8px); -webkit-backdrop-filter:blur(8px);
  border-bottom:1px solid var(--line);
  transition:box-shadow var(--t-mid) var(--ease);
}
.nav.scrolled{ box-shadow:0 6px 24px -18px rgba(58,42,32,.55); }
.nav-logo{
  position:absolute; left:50%; transform:translateX(-50%);
  font-family:var(--serif); font-size:clamp(15px,1.5vw,19px); font-weight:400;
  letter-spacing:.18em; text-transform:uppercase; color:var(--ink);
  text-decoration:none; white-space:nowrap; background:transparent; padding:0; z-index:1;
}
.nav-links{ display:flex; flex:1; justify-content:space-between; align-items:center; gap:1rem; }
.nav-side{ display:flex; gap:clamp(.6rem,1.2vw,1.4rem); align-items:center; }
.nav-side.left{ padding-right:clamp(180px,20vw,260px); }
.nav-side.right{ padding-left:clamp(180px,20vw,260px); }
.nav-side a{
  position:relative;
  font-family:var(--sans); font-size:12.5px; font-weight:300;
  letter-spacing:.13em; text-transform:uppercase;
  color:var(--ink-soft); text-decoration:none;
  transition:color var(--t-fast); white-space:nowrap; padding-bottom:3px;
}
.nav-side a::after{
  content:''; position:absolute; left:0; bottom:0; width:100%; height:1px;
  background:var(--burgundy); transform:scaleX(0); transform-origin:left;
  transition:transform var(--t-mid) var(--ease);
}
.nav-side a:hover::after, .nav-side a[aria-current="page"]::after{ transform:scaleX(1); }
.nav-side a:hover, .nav-side a[aria-current="page"]{ color:var(--burgundy); }
.nav-side a[aria-current="page"]{ font-weight:400; }
.nav-burger{
  display:none; width:44px; height:44px; border:none; background:none;
  cursor:pointer; color:var(--ink); align-items:center; justify-content:center;
}
.nav-burger span, .nav-burger span::before, .nav-burger span::after{
  content:''; display:block; width:22px; height:1.5px; background:var(--ink);
  transition:transform var(--t-mid) var(--ease), opacity var(--t-fast);
}
.nav-burger span::before{ transform:translateY(-7px); }
.nav-burger span::after{ transform:translateY(5.5px); }
.nav-burger[aria-expanded="true"] span{ background:transparent; }
.nav-burger[aria-expanded="true"] span::before{ transform:rotate(45deg); }
.nav-burger[aria-expanded="true"] span::after{ transform:rotate(-45deg) translateY(-1px); }

/* ── HERO (image + overlay headline, faithful to brand) ── */
.hero{ position:relative; height:min(66vh,500px); overflow:hidden; }
.hero-slide{
  position:absolute; inset:0; background-size:cover; background-position:center;
  opacity:0; transform:scale(1.06);
  transition:opacity 1.4s ease-in-out;
}
.hero-slide.active{ opacity:1; transform:scale(1); transition:opacity 1.4s ease-in-out, transform 7s ease-out; }
.hero-slide video{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.hero::after{ content:''; position:absolute; inset:0; background:rgba(28,18,10,.38); z-index:1; }
.hero-content{
  position:absolute; inset:0; z-index:2; color:#fff;
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  text-align:center; padding:0 1.5rem;
}
.hero-content h1{
  font-family:var(--serif); font-weight:300; line-height:1.14;
  font-size:clamp(32px,4.6vw,50px); letter-spacing:.01em;
  max-width:30ch; margin-bottom:1.1rem;
}
.hero-content h1 em{ font-style:italic; font-weight:400; }
.hero-content p{ font-size:15px; max-width:46ch; line-height:1.85; opacity:.9; }
.hero-content .btn{ margin-top:2rem; background:rgba(245,237,232,.12); border-color:rgba(245,237,232,.6); }
.hero-content .btn:hover{ background:var(--on-dark); color:var(--burgundy); border-color:var(--on-dark); }
.hero-dots{ position:absolute; bottom:1.6rem; left:50%; transform:translateX(-50%); z-index:3; display:flex; gap:10px; }
.hero-dots button{
  width:44px; height:44px; border:none; background:none; cursor:pointer; padding:0;
  display:flex; align-items:center; justify-content:center;
}
.hero-dots button::after{ content:''; width:7px; height:7px; border-radius:50%; background:rgba(255,255,255,.45); transition:background var(--t-fast); }
.hero-dots button.active::after{ background:#fff; }

/* page header for sub-pages (no slider) */
.page-hero{
  position:relative; min-height:340px; display:flex; align-items:center; justify-content:center;
  text-align:center; padding:5rem 1.5rem; overflow:hidden; color:#fff;
}
.page-hero .bg{ position:absolute; inset:0; background-size:cover; background-position:center; transform:scale(1.04); }
.page-hero::after{ content:''; position:absolute; inset:0; background:rgba(28,18,10,.42); }
.page-hero .inner{ position:relative; z-index:2; }
.page-hero h1{ font-family:var(--serif); font-weight:300; font-size:clamp(34px,5vw,52px); margin-bottom:.6rem; }
.page-hero p{ font-size:14.5px; max-width:52ch; margin:0 auto; opacity:.92; line-height:1.8; }
.page-hero .eyebrow{ color:rgba(245,237,232,.85); }
/* First block after a big hero sits higher, so its content peeks under the hero and invites scrolling */
.page-hero + section{ padding-top:clamp(1.5rem,3vw,2.2rem); }

/* ── SECTION shell ── */
.section{ padding:clamp(2.6rem,5.5vw,4.2rem) clamp(1.5rem,5vw,3rem); }
.section .wrap{ max-width:var(--maxw); margin:0 auto; }
.section--center{ text-align:center; }
.section--panel{ background:var(--panel); }
.section-title{ font-family:var(--serif); font-weight:400; font-size:clamp(28px,3.6vw,40px); line-height:1.2; color:var(--ink); }
.section--center .section-title{ margin-bottom:var(--s5); }
.lead{ font-size:15px; color:var(--ink-soft); line-height:1.95; max-width:60ch; }
.section--center .lead{ margin:0 auto; }

/* ── INTRO (two columns) ── */
.intro{ display:grid; grid-template-columns:1fr 1fr; gap:clamp(2rem,5vw,4rem); align-items:center; max-width:var(--maxw); margin:0 auto; }
.intro h2{ font-family:var(--serif); font-weight:400; font-size:clamp(28px,3.6vw,42px); line-height:1.25; color:var(--burgundy); }
.intro h2 em{ font-style:italic; font-weight:400; }
.intro-script{ display:inline-flex; align-items:center; gap:.8rem; font-family:var(--script); font-weight:400; font-size:clamp(26px,3vw,40px); line-height:1; color:var(--sage); margin-bottom:.4rem; }
.intro-script::before{ content:''; width:clamp(30px,4vw,52px); height:1px; background:var(--sage); opacity:.55; }
.intro .lead{ margin-bottom:var(--s4); }

/* ── MARQUEE ── */
.marquee{ overflow:hidden; padding:1.1rem 0; background:var(--bg); border-block:1px solid var(--line); }
.marquee-track{ display:flex; gap:1.2rem; width:max-content; animation:marquee 140s linear infinite; }
.marquee:hover .marquee-track{ animation-play-state:paused; }
.marquee img{ height:180px; width:auto; border-radius:8px; object-fit:cover; }
@keyframes marquee{ to{ transform:translateX(-50%); } }

/* ── CARD GRID (categories / experiences) ── */
.grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:clamp(1.2rem,2.4vw,1.8rem); max-width:var(--maxw); margin:0 auto; text-align:left; }
.card{ position:relative; transition:transform var(--t-mid) var(--ease); }
.card:hover{ transform:translateY(-6px); }
.card.is-link{ cursor:pointer; }
.card .thumb{ aspect-ratio:3/4; overflow:hidden; border-radius:12px; background:var(--line); margin-bottom:1.1rem; box-shadow:0 0 0 rgba(58,42,32,0); transition:box-shadow var(--t-mid) var(--ease); }
.card:hover .thumb{ box-shadow:var(--shadow); }
.card .thumb img{ width:100%; height:100%; object-fit:cover; transition:transform .6s var(--ease); }
.card:hover .thumb img{ transform:scale(1.05); }
.card h3{ font-family:var(--serif); font-weight:500; font-size:21px; line-height:1.2; margin-bottom:.4rem; }
.card p{ font-size:13px; color:var(--ink-soft); line-height:1.7; margin-bottom:.9rem; }
/* card CTAs as refined arrow links (the whole card is clickable) */
.card .btn-sm{ background:transparent; border:none; color:var(--burgundy); padding:.2rem 0 0; min-height:0; letter-spacing:.14em; box-shadow:none; }
.card .btn-sm::after{ content:' \2192'; display:inline-block; transition:transform var(--t-fast) var(--ease); }
.card:hover .btn-sm::after{ transform:translateX(5px); }
.card .btn-sm:hover{ background:transparent; color:var(--burgundy-deep); transform:none; box-shadow:none; }

/* ── PHILOSOPHY quote ── */
.quote{ max-width:760px; margin:0 auto; }
.quote blockquote{
  font-family:var(--serif); font-style:italic; font-weight:300;
  font-size:clamp(20px,2.6vw,26px); line-height:1.7; color:var(--burgundy); margin-bottom:var(--s4);
}

/* cut-out portrait + quote split (figure overlaps the section above) */
.philosophy-split{
  position:relative; overflow:visible; z-index:2;
  display:grid; grid-template-columns:1.1fr .9fr; align-items:end; min-height:340px;
  background:var(--sage-soft);
}
.philosophy-quote-side{ order:1; }
.philosophy-portrait{ order:2; position:relative; display:flex; align-items:flex-end; justify-content:center; overflow:visible; }
.philosophy-portrait img{
  display:block; width:auto; max-width:100%; height:auto; max-height:470px;
  margin-top:-80px;  /* pull up so the figure breaks over the block above */
  filter:drop-shadow(0 18px 30px rgba(58,42,32,.28));
}
.philosophy-quote-side{ display:flex; align-items:center; justify-content:flex-end;
  padding:clamp(1.6rem,4vw,3rem) clamp(1rem,2vw,1.8rem) clamp(1.6rem,4vw,3rem) clamp(2rem,5vw,4rem); }
.philosophy-quote-side blockquote{
  font-family:var(--serif); font-style:italic; font-weight:300;
  font-size:clamp(18px,2.2vw,26px); line-height:1.75; color:var(--burgundy);
  max-width:36ch; letter-spacing:.005em;
}
.philo-teaser{
  font-family:var(--sans); font-weight:300; font-size:13px; line-height:1.75;
  color:var(--ink-soft); max-width:38ch; margin:1.3rem 0 0;
}

/* dark atmospheric quote/manifesto section */
.quote-feature{ background:var(--ink); color:var(--on-dark); text-align:center; position:relative; overflow:hidden; }
.quote-feature::before{ content:''; position:absolute; inset:0; z-index:2; background:radial-gradient(ellipse at 50% 0%, rgba(245,237,232,.07), transparent 62%); pointer-events:none; }
.quote-feature .qf-bg{ position:absolute; inset:0; z-index:0; background:url('img6.png') center/cover no-repeat; opacity:.16; filter:grayscale(1) contrast(1.05) brightness(.9); }
.quote-feature .qf-stripes{ position:absolute; inset:0; z-index:1; pointer-events:none;
  background:repeating-linear-gradient(90deg, rgba(20,12,8,0) 0 3px, rgba(20,12,8,.5) 3px 5px); opacity:.5; }
.quote-feature .inner{ position:relative; z-index:3; max-width:680px; margin:0 auto; padding:clamp(2.6rem,6vw,4.5rem) clamp(1.5rem,6vw,3rem); }
.quote-feature .eyebrow{ color:rgba(245,237,232,.72); }
.quote-feature blockquote{ font-family:var(--serif); font-style:italic; font-weight:300; font-size:clamp(18px,2.3vw,27px); line-height:1.6; color:var(--on-dark); margin:1rem 0 1.4rem; letter-spacing:.005em; }
.quote-feature .q-teaser{ font-family:var(--sans); font-weight:300; font-size:13px; color:var(--on-dark-soft); max-width:48ch; margin:0 auto 1.8rem; line-height:1.8; }
.quote-feature .btn-outline{ color:var(--on-dark); border-color:rgba(245,237,232,.5); }
.quote-feature .btn-outline:hover{ background:var(--on-dark); color:var(--ink); border-color:var(--on-dark); }
.quote-feature .qf-sprig{ position:absolute; top:50%; transform:translateY(-50%); width:135px; opacity:.22; color:var(--on-dark); pointer-events:none; z-index:2; }
.quote-feature .qf-sign{ display:flex; align-items:center; gap:.85rem; justify-content:center; margin:1.6rem 0 .4rem; }
.quote-feature .qf-avatar{ width:92px; height:92px; border-radius:50%; object-fit:cover; border:1px solid rgba(245,237,232,.45); }
.quote-feature .qf-sign span{ font-family:var(--serif); font-style:italic; font-size:19px; color:var(--on-dark); text-align:left; line-height:1.15; }
.quote-feature .qf-sign small{ display:block; font-family:var(--sans); font-style:normal; font-size:10px; letter-spacing:.18em; text-transform:uppercase; color:var(--on-dark-soft); margin-top:4px; }
.quote-feature .qf-sprig.left{ left:2%; }
.quote-feature .qf-sprig.right{ right:2%; transform:translateY(-50%) scaleX(-1); }
@media (max-width:760px){ .quote-feature .qf-sprig{ display:none; } }
@media (max-width:768px){
  .philosophy-split{ grid-template-columns:1fr; align-items:center; }
  .philosophy-portrait{ order:0; }
  .philosophy-quote-side{ order:1; justify-content:center; text-align:center; padding-top:0; }
  .philosophy-portrait img{ margin-top:-70px; max-height:380px; }
  .philosophy-quote-side blockquote{ max-width:34ch; }
}

/* ── ABOUT (Valentyna) ── */
.about{ display:grid; grid-template-columns:1fr 1.2fr; gap:clamp(2rem,5vw,4.5rem); align-items:center; max-width:var(--maxw); margin:0 auto; }
.about-photo{ border-radius:14px; overflow:hidden; aspect-ratio:4/5; background:var(--line); box-shadow:var(--shadow); }
.about-photo img{ width:100%; height:100%; object-fit:cover; }
.about h2{ font-family:var(--serif); font-weight:400; font-size:clamp(30px,4vw,46px); color:var(--ink); margin-bottom:1rem; }
.about-name{ display:flex; align-items:center; gap:1rem; flex-wrap:wrap; margin-bottom:1rem; }
.about-name h2{ margin-bottom:0; }
.about-socials{ display:flex; gap:.55rem; }
.about-socials a{ width:38px; height:38px; border:1px solid var(--line); border-radius:50%; display:flex; align-items:center; justify-content:center; color:var(--ink-soft); transition:all var(--t-fast); }
.about-socials a:hover{ background:var(--burgundy); color:var(--on-dark); border-color:var(--burgundy); }
.about-socials svg{ width:17px; height:17px; }
.about-invite{ font-family:var(--serif); font-style:italic; font-size:clamp(16px,1.7vw,20px); line-height:1.6; color:var(--burgundy); border-left:2px solid var(--line); padding-left:1.1rem; margin:.2rem 0 1.5rem; max-width:46ch; }
.about .lead{ margin-bottom:var(--s3); }

/* ── COMMUNITY split ── */
.community{ display:grid; grid-template-columns:1fr 1fr; min-height:480px; }
.community-text{ background:var(--bg); padding:clamp(3rem,6vw,5rem) clamp(2rem,4vw,4rem); display:flex; flex-direction:column; justify-content:center; }
.community-text h2{ font-family:var(--serif); font-weight:400; font-size:clamp(28px,3.4vw,38px); line-height:1.25; margin:.6rem 0 1rem; }
.community-img{ overflow:hidden; }
.community-img img{ width:100%; height:100%; object-fit:cover; transition:transform .8s var(--ease); }
.community:hover .community-img img{ transform:scale(1.03); }

/* ── REVIEWS ── */
.reviews{ display:grid; grid-template-columns:repeat(3,1fr); gap:clamp(1.2rem,2.4vw,1.8rem); max-width:var(--maxw); margin:0 auto; text-align:left; }
.review{ background:var(--bg); border:1px solid var(--line); border-radius:14px; padding:2rem 1.8rem; }
.section--panel .review{ background:#fff; }
.review .stars{ color:var(--burgundy); letter-spacing:2px; font-size:14px; margin-bottom:1rem; }
.review p{ font-family:var(--serif); font-style:italic; font-size:17px; line-height:1.6; color:var(--ink); margin-bottom:1.2rem; }
.review .who{ font-size:12px; letter-spacing:.12em; text-transform:uppercase; color:var(--label); }

/* ── PRODUCT / OFFERING grid (shop, workshops, tattoo) ── */
.products{ display:grid; grid-template-columns:repeat(3,1fr); gap:clamp(1.4rem,2.6vw,2.2rem); max-width:var(--maxw); margin:0 auto; text-align:left; }
.product{ background:var(--bg); border:1px solid var(--line); border-radius:14px; overflow:hidden; display:flex; flex-direction:column; transition:transform var(--t-mid) var(--ease), box-shadow var(--t-mid) var(--ease); }
.product:hover{ transform:translateY(-4px); box-shadow:var(--shadow); }
.product[data-product]{ cursor:pointer; }
.product .thumb{ aspect-ratio:4/3; overflow:hidden; background:var(--line); }
.product .thumb img{ width:100%; height:100%; object-fit:cover; transition:transform .6s var(--ease); }
.product:hover .thumb img{ transform:scale(1.04); }
.product .body{ padding:1.4rem 1.5rem 1.6rem; display:flex; flex-direction:column; flex:1; }
.product h3{ font-family:var(--serif); font-weight:500; font-size:20px; margin-bottom:.4rem; }
.product p{ font-size:13px; color:var(--ink-soft); line-height:1.7; margin-bottom:1rem; flex:1; }
.product .meta{ display:flex; align-items:center; justify-content:space-between; gap:1rem; margin-top:auto; }
.product .price{ font-family:var(--serif); font-size:20px; color:var(--burgundy); }
.tag{ display:inline-block; font-size:10.5px; letter-spacing:.12em; text-transform:uppercase; color:var(--label); border:1px solid var(--line); border-radius:20px; padding:.25rem .8rem; margin-bottom:.9rem; }

/* ── BOOK INDEX LIST (catalogue) ── */
.book-index{ max-width:var(--maxw); margin:0 auto 3.5rem; border-top:1px solid var(--line); }
.book-index a{
  display:flex; align-items:baseline; justify-content:space-between; gap:1.2rem;
  padding:1.15rem .2rem; border-bottom:1px solid var(--line);
  text-decoration:none; color:var(--ink);
  transition:padding-left var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
}
.book-index a:hover{ padding-left:.8rem; color:var(--burgundy); }
.book-index .bi-name{ font-family:var(--serif); font-size:clamp(19px,2.3vw,25px); font-weight:400; }
.book-index .bi-tag{ font-size:11px; letter-spacing:.14em; text-transform:uppercase; color:var(--label); margin-left:.8rem; }
.book-index .bi-price{ font-family:var(--serif); font-size:20px; color:var(--burgundy); white-space:nowrap; }

/* ── SHOWCASE (editorial product detail) ── */
.showcase{ max-width:var(--maxw); margin:0 auto; }
.showcase + .showcase{ margin-top:4.5rem; padding-top:4.5rem; border-top:1px solid var(--line); }
.showcase-imgs{ display:grid; grid-template-columns:1fr 1fr; gap:1rem; margin-bottom:1.3rem; }
.showcase-imgs img{ width:100%; aspect-ratio:1/1; object-fit:cover; border-radius:8px; background:var(--line); }
.showcase-meta{
  display:flex; flex-wrap:wrap; gap:.5rem 2.4rem; justify-content:space-between;
  padding:1rem 0; border-block:1px solid var(--line);
  font-size:12.5px; letter-spacing:.03em; color:var(--ink-soft);
}
.showcase-meta b{ font-weight:400; color:var(--ink); }
.showcase-body{ display:grid; grid-template-columns:1.6fr 1fr; gap:clamp(1.5rem,4vw,3rem); align-items:start; padding-top:1.5rem; }
.showcase-body .desc h3{ font-family:var(--serif); font-weight:500; font-size:clamp(24px,3vw,30px); color:var(--ink); margin-bottom:.6rem; }
.showcase-body .desc p{ font-size:14.5px; line-height:1.85; color:var(--ink-soft); }
.buybox{ display:flex; flex-direction:column; gap:1.1rem; align-items:flex-start; }
.buybox .bb-price{ font-family:var(--serif); font-size:clamp(28px,3.6vw,36px); color:var(--burgundy); line-height:1; }
.buybox .bb-row{ display:flex; gap:.8rem; align-items:center; flex-wrap:wrap; }
.buybox .qty{
  width:66px; min-height:46px; text-align:center;
  border:1px solid var(--line); border-radius:6px; background:var(--bg);
  font-family:var(--sans); font-size:15px; font-weight:300; color:var(--ink);
}
@media (max-width:768px){
  .showcase-imgs{ grid-template-columns:1fr 1fr; }
  .showcase-body{ grid-template-columns:1fr; }
  .book-index .bi-tag{ display:none; }
}

/* ── JOURNAL (blog) ── */
.journal-intro{ max-width:680px; margin:0 auto 1rem; text-align:center; }
.journal-intro p{
  font-family:var(--serif); font-style:italic; font-weight:300;
  font-size:clamp(20px,2.6vw,27px); line-height:1.6; color:var(--ink);
}
.entry-meta{ font-size:11px; letter-spacing:.16em; text-transform:uppercase; color:var(--label); }
.entry-meta .dot{ margin:0 .5rem; color:var(--line); }
.entry-meta .cat{ color:var(--burgundy); }

.read-more{
  font-family:var(--sans); font-size:12px; font-weight:500; letter-spacing:.13em; text-transform:uppercase;
  color:var(--burgundy); text-decoration:none; display:inline-flex; gap:.4rem; align-items:center;
}
.read-more .arrow{ transition:transform var(--t-fast) var(--ease); }
.read-more:hover .arrow{ transform:translateX(4px); }

/* featured lead entry */
.journal-featured{
  display:grid; grid-template-columns:1.15fr 1fr; gap:clamp(2rem,5vw,4rem);
  align-items:center; max-width:var(--maxw); margin:0 auto;
}
.journal-featured .img{ aspect-ratio:4/3; border-radius:14px; overflow:hidden; background:var(--line); box-shadow:var(--shadow); }
.journal-featured .img img{ width:100%; height:100%; object-fit:cover; transition:transform .9s var(--ease); }
.journal-featured:hover .img img{ transform:scale(1.04); }
.journal-featured h2{ font-family:var(--serif); font-weight:400; font-size:clamp(28px,3.6vw,44px); line-height:1.15; margin:.8rem 0 1rem; color:var(--ink); }
.journal-featured p{ font-size:15px; line-height:1.9; color:var(--ink-soft); margin-bottom:1.4rem; }

/* entry grid */
.entries{ display:grid; grid-template-columns:repeat(3,1fr); gap:clamp(1.6rem,3vw,2.6rem); max-width:var(--maxw); margin:0 auto; text-align:left; }
.entry .img{ aspect-ratio:4/3; border-radius:12px; overflow:hidden; background:var(--line); margin-bottom:1.1rem; }
.entry .img img{ width:100%; height:100%; object-fit:cover; transition:transform .7s var(--ease); }
.entry:hover .img img{ transform:scale(1.05); }
.entry h3{ font-family:var(--serif); font-weight:500; font-size:23px; line-height:1.2; margin:.6rem 0 .5rem; }
.entry p{ font-size:13.5px; line-height:1.75; color:var(--ink-soft); margin-bottom:.9rem; }

/* letter / newsletter */
.letter{ max-width:620px; margin:0 auto; text-align:center; }
.letter .form{ max-width:480px; margin:1.6rem auto 0; }
.letter .form-inline{ display:flex; gap:.7rem; }
.letter .form-inline input{ flex:1; }
@media (max-width:600px){ .letter .form-inline{ flex-direction:column; } }

@media (max-width:900px){
  .journal-featured{ grid-template-columns:1fr; }
  .journal-featured .img{ order:-1; }
  .entries{ grid-template-columns:repeat(2,1fr); }
}
@media (max-width:560px){ .entries{ grid-template-columns:1fr; } }

/* ── FINE-ART GALLERY (art page) ── */
.artframe{ background:#fff; padding:clamp(10px,1.4vw,16px); border:1px solid var(--line); box-shadow:0 16px 34px -22px rgba(58,42,32,.55); }
.artframe img{ width:100%; display:block; }

/* Pick of the month — gallery-wall trio */
.pick{ display:grid; grid-template-columns:repeat(3,1fr); gap:clamp(1.4rem,3.4vw,3rem); max-width:1000px; margin:0 auto; align-items:end; }
.pick figure{ text-align:center; }
.pick .artframe{ margin-bottom:1.1rem; }
.pick figcaption{ font-family:var(--serif); font-style:italic; font-size:17px; color:var(--ink); line-height:1.3; }
.pick figcaption .price{ display:block; font-style:normal; font-family:var(--sans); font-size:12px; letter-spacing:.1em; color:var(--burgundy); margin-top:.35rem; }
.pick figure:nth-child(2){ transform:translateY(-26px); }
@media (max-width:760px){ .pick{ grid-template-columns:1fr 1fr; } .pick figure:nth-child(2){ transform:none; } }
@media (max-width:480px){ .pick{ grid-template-columns:1fr; max-width:340px; } }

/* The gallery grid */
.gallery{ display:grid; grid-template-columns:repeat(3,1fr); gap:clamp(1.6rem,3.6vw,3.2rem); max-width:var(--maxw); margin:0 auto; text-align:left; }
.gallery figure .artframe{ margin-bottom:1rem; transition:transform var(--t-mid) var(--ease); }
.gallery figure:hover .artframe{ transform:translateY(-5px); }
.gallery figcaption h3{ font-family:var(--serif); font-weight:500; font-size:20px; line-height:1.2; margin-bottom:.2rem; }
.gallery figcaption .meta{ font-size:12.5px; color:var(--ink-soft); margin-bottom:.5rem; }
.gallery figcaption .row{ display:flex; align-items:center; justify-content:space-between; gap:1rem; }
.gallery figcaption .price{ font-family:var(--serif); font-size:19px; color:var(--burgundy); }
@media (max-width:760px){ .gallery{ grid-template-columns:1fr 1fr; } }
@media (max-width:480px){ .gallery{ grid-template-columns:1fr; } }

/* ── ATELIER EDITORIAL (art page) ── */
.vlabel{ display:flex; flex-direction:column; align-items:center; gap:1rem; align-self:start; }
.vlabel .vline{ width:1px; height:58px; background:var(--ink); }
.vlabel .vtxt{ writing-mode:vertical-rl; transform:rotate(180deg);
  font-family:var(--sans); font-weight:400; letter-spacing:.5em; text-transform:uppercase; font-size:13px; color:var(--ink); }

.edrow{ display:grid; grid-template-columns:1fr 1fr; gap:clamp(2rem,5vw,4.5rem); align-items:center; max-width:var(--maxw); margin:0 auto; }
.edrow-text .eyebrow{ margin-bottom:1rem; }
.edrow-text h2{ font-family:var(--serif); font-weight:400; font-size:clamp(28px,4vw,48px); line-height:1.12; color:var(--ink); margin-bottom:1rem; }
.edrow-text p{ font-size:15px; line-height:1.9; color:var(--ink-soft); max-width:46ch; margin-bottom:1.6rem; }
.edrow-img img{ width:100%; display:block; }
.edrow-img.framed{ background:#fff; padding:12px; border:1px solid var(--line); box-shadow:0 16px 34px -22px rgba(58,42,32,.5); }
.edrow.flip .edrow-text{ order:2; }
.edrow.flip .edrow-img{ order:1; }
@media (max-width:768px){
  .edrow{ grid-template-columns:1fr; }
  .edrow.flip .edrow-text, .edrow.flip .edrow-img{ order:initial; }
}

/* atelier image strip with vertical label */
.atelier{ display:grid; grid-template-columns:auto 1fr 1fr 1fr; gap:clamp(1rem,2.4vw,1.8rem); align-items:center; max-width:var(--maxw); margin:0 auto; }
.atelier .artframe{ padding:clamp(16px,2.6vw,30px); box-shadow:0 22px 44px -24px rgba(58,42,32,.5); }
.atelier .artframe img{ width:100%; aspect-ratio:3/4; object-fit:cover; display:block; }
@media (max-width:768px){
  .atelier{ grid-template-columns:1fr 1fr; }
  .atelier .vlabel{ flex-direction:row; grid-column:1 / -1; justify-content:center; margin-bottom:.4rem; }
  .atelier .vlabel .vtxt{ writing-mode:horizontal-tb; transform:none; }
  .atelier .vlabel .vline{ width:40px; height:1px; }
}

/* gold sparkles on click */
.paint-spark{
  position:fixed; z-index:9998; pointer-events:none; width:4px; height:4px; border-radius:50%;
  background:#ecc65c; box-shadow:0 0 6px 1px rgba(236,198,92,.85);
  transform:translate(-50%,-50%) scale(0);
}
@keyframes sparkle{
  0%{ transform:translate(-50%,-50%) scale(0); opacity:0; }
  30%{ opacity:1; }
  100%{ transform:translate(-50%,-50%) translateY(-8px) scale(1.3); opacity:0; }
}

/* ── WORKSHOP SCHEDULE + CALENDAR ── */
.schedule{ display:grid; grid-template-columns:1.05fr 1fr; gap:clamp(2rem,5vw,4rem); align-items:center; max-width:var(--maxw); margin:0 auto; text-align:left; }
@media (max-width:820px){ .schedule{ grid-template-columns:1fr; } }

.cal{ max-width:520px; margin:0 auto; width:100%; }
.cal-month{ text-align:center; font-family:var(--serif); font-size:22px; color:var(--ink); margin-bottom:1rem; letter-spacing:.04em; }
.cal-grid{ display:grid; grid-template-columns:repeat(7,1fr); gap:.45rem; }
.cal-dow{ font-family:var(--sans); font-size:10.5px; letter-spacing:.12em; text-transform:uppercase; color:var(--label); text-align:center; padding-bottom:.3rem; }
.cal-day{ aspect-ratio:1; display:flex; flex-direction:column; align-items:center; justify-content:center;
  border-radius:12px; font-family:var(--serif); font-size:17px; color:var(--ink); position:relative; }
.cal-day.empty{ visibility:hidden; }
.cal-day.today{ box-shadow:inset 0 0 0 1px var(--burgundy); }
.cal-day.done{ color:var(--label); }
.cal-day.done::after{ content:''; width:5px; height:5px; border-radius:50%; background:var(--line); margin-top:3px; }
.cal-day.has{ background:var(--burgundy); color:var(--on-dark);
  box-shadow:0 0 0 4px rgba(90,52,48,.13), 0 8px 18px -6px rgba(90,52,48,.55); animation:calglow 2.6s ease-in-out infinite; }
.cal-day.has .t{ font-family:var(--sans); font-size:9px; letter-spacing:.03em; margin-top:1px; opacity:.95; }
@keyframes calglow{ 0%,100%{ box-shadow:0 0 0 4px rgba(90,52,48,.13), 0 8px 18px -6px rgba(90,52,48,.5); } 50%{ box-shadow:0 0 0 6px rgba(90,52,48,.2), 0 10px 22px -6px rgba(90,52,48,.7); } }
@media (prefers-reduced-motion:reduce){ .cal-day.has{ animation:none; } }

.sched-list .item{ display:flex; gap:1.1rem; align-items:flex-start; padding:1rem 0; border-bottom:1px solid var(--line); }
.sched-list .item:first-child{ border-top:1px solid var(--line); }
.sched-list .date{ font-family:var(--serif); color:var(--burgundy); font-size:20px; line-height:1.1; min-width:58px; text-align:center; }
.sched-list .date small{ display:block; font-family:var(--sans); font-size:10px; letter-spacing:.1em; text-transform:uppercase; color:var(--label); }
.sched-list .info{ flex:1; }
.sched-list .info h4{ font-family:var(--serif); font-weight:500; font-size:18px; margin-bottom:.15rem; }
.sched-list .info .meta{ font-size:12.5px; color:var(--ink-soft); }
.sched-list .info a{ font-size:11.5px; letter-spacing:.1em; text-transform:uppercase; color:var(--burgundy); text-decoration:none; }
.sched-list .info a:hover{ text-decoration:underline; }

/* coloured day markers + legend (availability calendar) */
.cal-day.busy{ font-weight:500; color:var(--ink); background:rgba(90,52,48,.08); border-radius:12px; }
.cal-dots{ display:flex; gap:4px; margin-top:4px; justify-content:center; }
.cal-dot{ display:inline-block; width:9px; height:9px; border-radius:50%; }
.dot-workshop{ background:var(--sage); }
.dot-tattoo{ background:var(--burgundy); }
.dot-online{ background:#B07A4E; }
.cal-legend{ display:flex; gap:1.3rem; justify-content:center; flex-wrap:wrap; margin-top:1.1rem; font-size:11px; letter-spacing:.08em; text-transform:uppercase; color:var(--ink-soft); }
.cal-legend span{ display:inline-flex; align-items:center; gap:.4rem; }

/* ── CHECK LIST + TWO COLUMNS (events) ── */
.two-col{ display:grid; grid-template-columns:1fr 1fr; gap:clamp(1.6rem,4vw,3.5rem); text-align:left; max-width:880px; margin:0 auto; }
@media (max-width:680px){ .two-col{ grid-template-columns:1fr; } }
.checklist{ list-style:none; padding:0; margin:0; }
.checklist li{ position:relative; padding:.55rem 0 .55rem 1.6rem; font-size:14px; line-height:1.6; color:var(--ink); border-bottom:1px solid var(--line); }
.checklist li::before{ content:'\2726'; position:absolute; left:0; top:.6rem; color:var(--burgundy); font-size:11px; }
.col-title{ font-family:var(--serif); font-weight:500; color:var(--burgundy); font-size:22px; margin-bottom:.7rem; }

/* ── FAQ ACCORDION ── */
.faq{ max-width:840px; margin:0 auto; border-top:1px solid var(--line); text-align:left; }
.faq-item{ border-bottom:1px solid var(--line); }
.faq-q{ width:100%; background:none; border:none; cursor:pointer; text-align:left;
  display:flex; align-items:center; justify-content:space-between; gap:1.5rem;
  padding:1.3rem .2rem; font-family:var(--sans); font-size:15px; font-weight:400; letter-spacing:.02em; color:var(--ink);
  transition:color var(--t-fast); }
.faq-q:hover{ color:var(--burgundy); }
.faq-q .ico{ flex:0 0 auto; width:18px; height:18px; position:relative; }
.faq-q .ico::before, .faq-q .ico::after{ content:''; position:absolute; background:var(--burgundy); transition:transform .3s var(--ease); }
.faq-q .ico::before{ top:50%; left:0; width:100%; height:1.5px; transform:translateY(-50%); }
.faq-q .ico::after{ left:50%; top:0; width:1.5px; height:100%; transform:translateX(-50%); }
.faq-item.open .faq-q{ color:var(--burgundy); }
.faq-item.open .faq-q .ico::after{ transform:translateX(-50%) scaleY(0); }
.faq-a{ overflow:hidden; max-height:0; transition:max-height .4s var(--ease); }
.faq-item.open .faq-a{ max-height:520px; }
.faq-a-inner{ padding:0 .2rem 1.4rem; font-size:14.5px; line-height:1.85; color:var(--ink-soft); max-width:72ch; }

/* ── MODAL (workshop details) ── */
.modal{ position:fixed; inset:0; z-index:300; display:none; }
.modal.open{ display:block; }
.modal-scrim{ position:absolute; inset:0; background:rgba(28,18,10,.55); opacity:0; transition:opacity .3s var(--ease); }
.modal.open .modal-scrim{ opacity:1; }
.modal-card{ position:absolute; left:50%; top:50%; transform:translate(-50%,-44%);
  width:min(860px,92vw); max-height:88vh; overflow:auto; background:var(--bg);
  border-radius:14px; box-shadow:0 30px 70px -22px rgba(28,18,10,.65);
  opacity:0; transition:opacity .3s var(--ease), transform .3s var(--ease); }
.modal.open .modal-card{ transform:translate(-50%,-50%); opacity:1; }
.modal-grid{ display:grid; grid-template-columns:1fr 1.1fr; }
.modal-img{ min-height:260px; }
.modal-img img{ width:100%; height:100%; object-fit:cover; display:block; }
.modal-body{ padding:clamp(1.6rem,3vw,2.6rem); }
.modal-body .tag{ margin-bottom:.8rem; }
.modal-body h3{ font-family:var(--serif); font-weight:500; font-size:clamp(24px,3vw,32px); line-height:1.15; margin-bottom:.4rem; }
.modal-body .m-meta{ font-size:13px; color:var(--ink-soft); margin-bottom:1.2rem; }
.modal-body .m-meta .price{ font-family:var(--serif); color:var(--burgundy); font-size:18px; }
.modal-body p{ font-size:14.5px; line-height:1.85; color:var(--ink-soft); margin-bottom:1.2rem; }
.modal-body .m-includes{ list-style:none; margin:0 0 1.5rem; padding:0; }
.modal-body .m-includes li{ font-size:13.5px; color:var(--ink); padding:.4rem 0 .4rem 1.4rem; position:relative; border-bottom:1px solid var(--line); }
.modal-body .m-includes li::before{ content:'\2726'; position:absolute; left:0; top:.5rem; color:var(--burgundy); font-size:11px; }
.modal-close{ position:absolute; top:.7rem; right:.7rem; width:42px; height:42px; border:none; border-radius:50%;
  background:rgba(250,248,245,.92); color:var(--ink); font-size:22px; line-height:1; cursor:pointer; z-index:3;
  display:flex; align-items:center; justify-content:center; box-shadow:0 2px 10px rgba(28,18,10,.2); }
.modal-close:hover{ background:#fff; }
@media (max-width:680px){
  .modal-grid{ grid-template-columns:1fr; }
  .modal-img{ height:200px; min-height:0; }
}
@media (prefers-reduced-motion:reduce){ .modal-scrim,.modal-card{ transition:none; } }

/* ── JOURNAL BIG HERO (Etta-style: serif + handwritten script) ── */
.script{ font-family:var(--script); font-weight:400; }
.jhero{ position:relative; min-height:64vh; display:flex; align-items:center; justify-content:center;
  text-align:center; color:#fff; overflow:hidden; padding:4rem 1.5rem; }
.jhero .bg{ position:absolute; inset:0; background-size:cover; background-position:center; transform:scale(1.05); }
.jhero::after{ content:''; position:absolute; inset:0; background:rgba(42,30,22,.44); }
.jhero .inner{ position:relative; z-index:2; max-width:780px; }
.jhero .eyebrow{ color:rgba(255,255,255,.82); margin-bottom:1rem; }
.jhero h1{ font-family:var(--serif); font-weight:300; text-transform:uppercase; letter-spacing:.05em;
  font-size:clamp(22px,3.4vw,38px); line-height:1.1; }
.jhero .scriptline{ display:block; font-family:var(--script); font-weight:400; text-transform:none;
  letter-spacing:0; font-size:clamp(32px,5.5vw,60px); line-height:.9; margin-top:.1em; color:#fff; }
.jhero p{ font-size:15px; max-width:44ch; margin:1.5rem auto 2rem; line-height:1.8; opacity:.92; }
.jhero .btn{ background:rgba(245,237,232,.14); border-color:rgba(245,237,232,.6); color:#fff; }
.jhero .btn:hover{ background:var(--on-dark); color:var(--burgundy); border-color:var(--on-dark); }

/* rotating circular badge */
.jbadge{ position:absolute; z-index:3; width:108px; height:108px;
  right:clamp(1rem,4vw,3.5rem); bottom:clamp(1rem,4vw,3rem); }
.jbadge svg{ width:100%; height:100%; animation:spin 24s linear infinite; }
.jbadge text{ font-family:var(--sans); font-size:8px; letter-spacing:.2em; text-transform:uppercase; fill:#fff; }
.jbadge .bcenter{ font-family:var(--script); font-size:20px; fill:#fff; }
@keyframes spin{ to{ transform:rotate(360deg); } }
@media (prefers-reduced-motion:reduce){ .jbadge svg{ animation:none; } }
@media (max-width:560px){ .jbadge{ width:84px; height:84px; } }

/* ── ARTICLE MODAL (journal) ── */
.modal-article{ width:min(720px,94vw); }
.modal-article .ma-hero{ width:100%; aspect-ratio:16/9; object-fit:cover; display:block; }
.modal-article .ma-body{ padding:clamp(1.6rem,3.2vw,2.8rem); text-align:left; }
.ma-body .entry-meta{ margin-bottom:.7rem; }
.ma-body h2{ font-family:var(--serif); font-weight:400; font-size:clamp(26px,3.6vw,40px); line-height:1.15; color:var(--ink); margin-bottom:1.2rem; }
.ma-body p{ font-size:15px; line-height:1.9; color:var(--ink-soft); margin-bottom:1.1rem; }
.ma-body p:first-letter{ }
.ma-body figure{ margin:1.5rem 0; }
.ma-body figure img{ width:100%; border-radius:8px; display:block; }
.ma-body figcaption{ font-size:12px; color:var(--label); margin-top:.4rem; font-style:italic; }
.ma-body .ma-duo{ display:grid; grid-template-columns:1fr 1fr; gap:.8rem; margin:1.8rem 0 .4rem; }
.ma-body .ma-duo img{ width:100%; aspect-ratio:4/5; object-fit:cover; border-radius:8px; display:block; }

/* ── SHOP PRODUCT GRID + GALLERY MODAL ── */
.shopgrid{ display:grid; grid-template-columns:repeat(3,1fr); gap:clamp(1.4rem,3vw,2.6rem); max-width:var(--maxw); margin:0 auto; }
.bookcard{ cursor:pointer; text-align:center; background:none; border:none; padding:0; font:inherit; color:inherit; }
.bookcard .bc-img{ background:#fff; border:1px solid var(--line); aspect-ratio:3/4; overflow:hidden; box-shadow:0 14px 30px -22px rgba(58,42,32,.5); transition:transform var(--t-mid) var(--ease); }
.bookcard:hover .bc-img{ transform:translateY(-5px); }
.bookcard .bc-img img{ width:100%; height:100%; object-fit:cover; transition:transform .6s var(--ease); }
.bookcard:hover .bc-img img{ transform:scale(1.05); }
.bookcard h3{ font-family:var(--serif); font-weight:500; font-size:20px; color:var(--burgundy); margin-top:1.1rem; }
.bookcard .bc-price{ font-family:var(--serif); font-size:18px; color:var(--ink-soft); margin-top:.2rem; }
/* Medium label above each painting (Watercolour / Acrylic / Pastel / Oil) */
.art-medium{ display:inline-block; font-family:var(--sans); font-size:11px; letter-spacing:.18em; text-transform:uppercase; color:var(--sage); margin-bottom:.7rem; }
/* "Coming soon" pages: keep the full built page but blur it out (not visible / not interactive). Remove this class to bring it back live. */
.soon-locked{ filter:blur(8px); opacity:.4; pointer-events:none; user-select:none; overflow:hidden; -webkit-mask-image:linear-gradient(180deg, transparent, #000 90px); mask-image:linear-gradient(180deg, transparent, #000 90px); }

/* "Buy with a box" note between the collection and reviews */
.bundle-note{ display:flex; align-items:center; gap:1rem; max-width:760px; margin:3rem auto 0; padding:1.15rem 1.5rem; background:var(--sage-soft); border:1px solid var(--line); border-radius:16px; text-align:left; text-decoration:none; color:var(--ink); transition:transform var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease); }
.bundle-note:hover{ transform:translateY(-2px); box-shadow:0 16px 30px -22px rgba(58,42,32,.5); }
.bundle-ic{ flex:none; width:42px; height:42px; border-radius:50%; background:var(--sage); color:#fff; display:flex; align-items:center; justify-content:center; }
.bundle-ic svg{ width:22px; height:22px; }
.bundle-text{ font-size:14px; line-height:1.6; color:var(--ink-soft); }
.bundle-text strong{ color:var(--burgundy); font-weight:500; }
.bundle-arrow{ flex:none; margin-left:auto; font-size:20px; color:var(--sage); transition:transform var(--t-fast) var(--ease); }
.bundle-note:hover .bundle-arrow{ transform:translateX(4px); }
@media (max-width:560px){ .bundle-note{ flex-wrap:wrap; text-align:center; justify-content:center; } .bundle-arrow{ margin-left:0; } }
/* Reflection pull-quote (Journal) */
.reflection-quote{ font-family:var(--serif); font-style:italic; font-weight:400; font-size:clamp(24px,4vw,38px); line-height:1.35; color:var(--burgundy); margin:0 auto; }
/* YouTube video-story cards (Journal) */
.vid-card{ text-decoration:none; color:inherit; }
.vid-card .thumb{ position:relative; }
.vid-card .vid-play{ position:absolute; inset:0; display:flex; align-items:center; justify-content:center; }
.vid-card .vid-play svg{ width:26px; height:26px; padding:15px; box-sizing:content-box; border-radius:50%; background:rgba(250,248,245,.92); color:var(--burgundy); box-shadow:0 10px 26px -12px rgba(58,42,32,.6); transition:transform var(--t-fast) var(--ease); }
.vid-card:hover .vid-play svg{ transform:scale(1.09); }
.vid-card h3{ font-family:var(--serif); font-weight:500; font-size:19px; color:var(--burgundy); margin-top:1rem; text-align:center; }
/* Coming-soon groups & subtitles (Journals / Planner / Trackers) */
.cs-group{ font-family:var(--serif); font-weight:500; font-size:clamp(19px,2.2vw,24px); color:var(--burgundy); text-align:center; margin:2.6rem 0 1.4rem; }
.cs-group:first-of-type{ margin-top:0; }
/* Coming-soon product card (boxes) */
.product--soon .thumb{ position:relative; }
.product--soon .thumb img{ filter:grayscale(.3) brightness(.92); }
.product--soon .thumb::after{ content:''; position:absolute; inset:0; background:linear-gradient(180deg,rgba(90,52,48,.05),rgba(58,42,32,.32)); }
.product--soon .soon-badge{ position:absolute; top:.8rem; left:50%; transform:translateX(-50%); z-index:2; font-family:var(--sans); font-size:10.5px; letter-spacing:.2em; text-transform:uppercase; color:#fff; background:var(--sage); padding:.34rem .85rem; border-radius:999px; white-space:nowrap; }
.bookcard .cs-sub{ font-family:var(--serif); font-style:italic; font-size:15px; line-height:1.4; color:var(--ink-soft); margin-top:.35rem; }
/* Coming-soon book card (e.g. For the Woman I Am Becoming) */
.bookcard--soon{ text-decoration:none; display:block; }
.bookcard--soon .bc-img{ position:relative; }
.bookcard--soon .bc-img img{ filter:grayscale(.3) brightness(.9); }
.bookcard--soon .bc-img::after{ content:''; position:absolute; inset:0; background:linear-gradient(180deg,rgba(90,52,48,.15),rgba(58,42,32,.5)); }
.bookcard--soon .soon-q{ position:absolute; inset:0; z-index:2; display:flex; align-items:center; justify-content:center; font-family:var(--serif); font-size:clamp(56px,12vw,96px); color:var(--on-dark); opacity:.9; text-shadow:0 6px 24px rgba(0,0,0,.35); }
.bookcard--soon .soon-badge{ position:absolute; top:.9rem; left:50%; transform:translateX(-50%); z-index:3; font-family:var(--sans); font-size:10.5px; letter-spacing:.2em; text-transform:uppercase; color:#fff; background:var(--sage); padding:.34rem .85rem; border-radius:999px; white-space:nowrap; }
.bookcard--soon .bc-price{ font-style:italic; color:var(--sage); }
/* Out-of-stock book card (e.g. Essence Life Planner 2026) */
.bookcard--oos .bc-img{ position:relative; }
.bookcard--oos .bc-img img{ filter:grayscale(.5) brightness(.86); }
.bookcard--oos .bc-img::after{ content:''; position:absolute; inset:0; background:rgba(58,42,32,.28); }
.bookcard--oos .oos-badge{ position:absolute; top:.9rem; left:50%; transform:translateX(-50%); z-index:2; font-family:var(--sans); font-size:10.5px; letter-spacing:.2em; text-transform:uppercase; color:#fff; background:rgba(58,42,32,.9); padding:.34rem .85rem; border-radius:999px; white-space:nowrap; }
.bookcard--oos .bc-price{ font-style:italic; color:var(--label); }
@media (max-width:760px){ .shopgrid{ grid-template-columns:1fr 1fr; } }
@media (max-width:460px){ .shopgrid{ grid-template-columns:1fr; max-width:320px; } }

.modal-shop{ width:min(960px,94vw); }
.shop-grid{ display:grid; grid-template-columns:1.15fr 1fr; gap:clamp(1.4rem,3vw,2.4rem); padding:clamp(1.4rem,3vw,2.2rem); }
.sm-main{ position:relative; background:#fff; border:1px solid var(--line); aspect-ratio:1/1; overflow:hidden; }
.sm-main img{ width:100%; height:100%; object-fit:cover; display:block; }
.pm-media{ width:100%; height:100%; }
.pm-media img, .pm-media video, .pm-media iframe{ width:100%; height:100%; object-fit:cover; display:block; border:0; background:#000; }
.sm-thumbs button.video{ position:relative; }
.sm-thumbs button.video::after{ content:'▶'; position:absolute; inset:0; display:flex; align-items:center; justify-content:center; color:#fff; font-size:12px; text-shadow:0 1px 4px rgba(0,0,0,.7); }
.gallery figure[data-product]{ cursor:pointer; }
.products article[data-product]{ cursor:pointer; }
.card[data-product]{ cursor:pointer; }

/* ── HOMEPAGE VIDEO BLOCK ── */
.videoblock{ position:relative; aspect-ratio:16/9; border-radius:12px; overflow:hidden;
  background:#1c120a center/cover no-repeat; box-shadow:var(--shadow); cursor:pointer; max-width:var(--maxw); margin:0 auto; }
.videoblock::after{ content:''; position:absolute; inset:0; background:rgba(28,18,10,.3); transition:background .3s; }
.videoblock:hover::after{ background:rgba(28,18,10,.18); }
.videoblock.playing::after{ display:none; }
.vb-play{ position:absolute; left:50%; top:50%; transform:translate(-50%,-50%); z-index:2;
  width:74px; height:74px; border-radius:50%; border:none; background:rgba(245,237,232,.94); color:var(--burgundy);
  cursor:pointer; display:flex; align-items:center; justify-content:center; box-shadow:0 8px 22px -8px rgba(28,18,10,.6); transition:transform .25s var(--ease); }
.videoblock:hover .vb-play{ transform:translate(-50%,-50%) scale(1.07); }
.vb-play svg{ width:24px; height:24px; margin-left:3px; }
.videoblock video, .videoblock iframe{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; border:0; z-index:3; }
.sm-nav{ position:absolute; top:50%; transform:translateY(-50%); width:40px; height:40px; border-radius:50%; border:none;
  background:rgba(250,248,245,.92); color:var(--ink); font-size:18px; cursor:pointer; display:flex; align-items:center; justify-content:center; box-shadow:0 2px 8px rgba(28,18,10,.2); }
.sm-prev{ left:.6rem; } .sm-next{ right:.6rem; }
.sm-thumbs{ display:flex; gap:.5rem; margin-top:.7rem; flex-wrap:wrap; }
.sm-thumbs button{ width:58px; aspect-ratio:1; border:1px solid var(--line); overflow:hidden; background:none; cursor:pointer; padding:0; border-radius:4px; }
.sm-thumbs button.active{ border-color:var(--burgundy); }
.sm-thumbs img{ width:100%; height:100%; object-fit:cover; }
.sm-info{ display:flex; flex-direction:column; justify-content:center; text-align:left; }
.sm-info h3{ font-family:var(--serif); font-weight:500; font-size:clamp(24px,3vw,32px); color:var(--burgundy); margin-bottom:.3rem; }
.sm-info .sm-price{ font-family:var(--serif); font-size:24px; color:var(--burgundy); margin-bottom:.9rem; }
.sm-info .sm-meta{ font-size:12.5px; color:var(--label); letter-spacing:.04em; margin-bottom:1rem; }
.sm-info p{ font-size:14.5px; line-height:1.85; color:var(--ink-soft); margin-bottom:1.5rem; }
.sm-desc{ margin-bottom:1.5rem; }
.sm-desc p{ margin-bottom:.9rem; }
.sm-desc p:last-child{ margin-bottom:0; }
.sm-desc strong{ color:var(--burgundy); font-weight:500; }
.sm-desc em{ font-style:italic; }
.sm-desc .sm-inside-label{ display:block; font-family:var(--sans); font-size:11px; letter-spacing:.14em; text-transform:uppercase; color:var(--label); margin:.2rem 0 .6rem; }
.sm-desc ul{ list-style:none; margin:0 0 1rem; padding:0; }
.sm-desc ul li{ position:relative; padding-left:1.3rem; font-size:14px; line-height:1.6; color:var(--ink-soft); margin-bottom:.4rem; }
.sm-desc ul li::before{ content:''; position:absolute; left:.15rem; top:.6em; width:6px; height:6px; border-radius:50%; background:var(--sage); }
.sm-info .btn{ align-self:flex-start; }
.sm-actions{ display:flex; flex-wrap:wrap; gap:.7rem; align-items:center; }
.sm-actions .btn{ align-self:auto; }
.sm-info .form-note{ font-size:12.5px; line-height:1.6; color:var(--label); margin-bottom:0; }
@media (max-width:680px){ .shop-grid{ grid-template-columns:1fr; } }

/* ── FORMS ── */
.form{ display:grid; gap:1.1rem; max-width:560px; }
.field{ display:flex; flex-direction:column; gap:.4rem; text-align:left; }
.field label{ font-size:11.5px; letter-spacing:.12em; text-transform:uppercase; color:var(--label); }
.field .req{ color:var(--burgundy); }
.field input, .field select, .field textarea{
  font-family:var(--sans); font-size:14px; font-weight:300; color:var(--ink);
  background:var(--bg); border:1px solid var(--line); border-radius:6px;
  padding:.8rem 1rem; min-height:46px; outline:none;
  transition:border-color var(--t-fast);
}
.field textarea{ min-height:120px; resize:vertical; }
.field input:focus, .field select:focus, .field textarea:focus{ border-color:var(--burgundy); }
.field .hint{ font-size:12px; color:var(--ink-soft); }
.form-note{ font-size:12.5px; color:var(--ink-soft); margin-top:.4rem; }
.form-status{ font-size:13px; color:var(--burgundy); min-height:1.2em; }
.form-consent{ font-size:11.5px; line-height:1.6; color:var(--label); margin:.5rem 0 .2rem; }
.form-consent a{ color:var(--burgundy); text-decoration:underline; }
/* Privacy / legal page */
.legal h2{ font-family:var(--serif); font-weight:500; font-size:clamp(20px,2.4vw,26px); color:var(--burgundy); margin:1.9rem 0 .5rem; }
.legal p{ font-size:15px; line-height:1.9; color:var(--ink-soft); margin-bottom:1rem; }
.legal strong{ color:var(--ink); font-weight:500; }
.form-actions{ display:flex; flex-wrap:wrap; gap:.8rem; }
.notify-form{ display:flex; flex-wrap:wrap; gap:.7rem; justify-content:center; align-items:center; max-width:480px; margin:0 auto; }
.notify-form input{ flex:1 1 220px; padding:.85rem 1.1rem; border:1px solid var(--line); border-radius:12px; background:var(--bg); font:inherit; color:var(--ink); }
.notify-form input:focus{ outline:none; border-color:var(--sage); }
.notify-form .btn{ flex:0 0 auto; }
@media (max-width:460px){ .notify-form input, .notify-form .btn{ width:100%; flex-basis:100%; } }
@media (max-width:460px){ .form-actions{ flex-direction:column; } .form-actions .btn{ width:100%; } }

/* ── CONTACT ── */
.contact{ max-width:880px; margin:0 auto; }
.contact-grid{ display:grid; grid-template-columns:1fr 1.5fr; gap:clamp(2rem,4vw,4rem); text-align:left; margin-top:var(--s4); }
.contact-info p{ font-size:14px; color:var(--burgundy); line-height:1.7; margin-bottom:.3rem; }
.socials{ display:flex; gap:.7rem; margin-top:1.2rem; }
.socials a{
  width:44px; height:44px; border:1px solid var(--line); border-radius:50%;
  display:flex; align-items:center; justify-content:center; color:var(--ink-soft);
  text-decoration:none; transition:all var(--t-fast);
}
.socials a:hover{ background:var(--burgundy); color:var(--on-dark); border-color:var(--burgundy); }
.socials svg{ width:18px; height:18px; }

/* ── FLOATING contact button ── */
.float-contact{
  position:fixed; right:1.4rem; bottom:1.4rem; z-index:150;
  display:inline-flex; align-items:center; gap:.6rem;
  min-height:48px; padding:.7rem 1.3rem;
  background:var(--burgundy); color:var(--on-dark);
  border-radius:var(--radius); text-decoration:none;
  font-size:11px; letter-spacing:.15em; text-transform:uppercase;
  box-shadow:var(--shadow);
  transition:background var(--t-fast), transform var(--t-fast);
}
.float-contact:hover{ background:var(--burgundy-deep); transform:translateY(-2px); }
.float-contact svg{ width:18px; height:18px; }

/* the old "Order" pill is replaced by the cart button */
.float-contact{ display:none !important; }

/* WhatsApp button — appears on scroll */
.float-wa{
  position:fixed; right:1.4rem; bottom:7rem; z-index:151;
  width:54px; height:54px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  background:#25D366; color:#fff; text-decoration:none;
  box-shadow:var(--shadow);
  opacity:0; transform:translateY(16px) scale(.9); pointer-events:none;
  transition:opacity .35s var(--ease), transform .35s var(--ease), background .2s;
}
.float-wa.show{ opacity:1; transform:none; pointer-events:auto; }
.float-wa:hover{ background:#1ebe5d; transform:translateY(-2px); }
.float-wa svg{ width:28px; height:28px; }
@media (max-width:480px){ .float-wa{ bottom:6.2rem; width:50px; height:50px; } }

/* ══ CART (enquiry basket) ══ */
.cart-fab{
  position:fixed; right:1.4rem; bottom:1.4rem; z-index:152;
  width:56px; height:56px; border-radius:50%; border:none; cursor:pointer;
  display:flex; align-items:center; justify-content:center;
  background:var(--burgundy); color:var(--on-dark);
  box-shadow:var(--shadow); transition:transform var(--t-fast), background var(--t-fast);
}
.cart-fab:hover{ background:var(--burgundy-deep); transform:translateY(-2px); }
.cart-fab svg{ width:24px; height:24px; }
.cart-fab .cart-count{
  position:absolute; top:-4px; right:-4px; min-width:20px; height:20px; padding:0 5px;
  border-radius:11px; background:var(--sage); color:#fff; font-family:var(--sans);
  font-size:11px; font-weight:500; line-height:20px; text-align:center;
  transform:scale(0); transition:transform .3s var(--ease);
}
.cart-fab.has-items .cart-count{ transform:scale(1); }
.cart-fab.bump{ animation:cartBump .45s var(--ease); }
@keyframes cartBump{ 0%{transform:scale(1)} 35%{transform:scale(1.18)} 70%{transform:scale(.94)} 100%{transform:scale(1)} }
@media (max-width:480px){ .cart-fab{ width:52px; height:52px; } }

.cart-drawer{ position:fixed; inset:0; z-index:360; display:none; }
.cart-drawer.open{ display:block; }
.cart-scrim{ position:absolute; inset:0; background:rgba(28,18,10,.5); opacity:0; transition:opacity .3s var(--ease); }
.cart-drawer.open .cart-scrim{ opacity:1; }
.cart-panel{
  position:absolute; top:0; right:0; height:100%; width:min(420px,92vw);
  background:var(--bg); box-shadow:-12px 0 40px rgba(28,18,10,.18);
  display:flex; flex-direction:column; padding:1.6rem 1.5rem 1.5rem;
  transform:translateX(100%); transition:transform .38s var(--ease); overflow-y:auto;
}
.cart-drawer.open .cart-panel{ transform:none; }
.cart-head{ display:flex; align-items:center; justify-content:space-between; margin-bottom:1.2rem; }
.cart-head .eyebrow{ margin:0; }
.cart-x{ background:none; border:none; font-size:30px; line-height:1; color:var(--ink); cursor:pointer; opacity:.6; transition:opacity var(--t-fast); }
.cart-x:hover{ opacity:1; }
.cart-empty{ color:var(--ink-soft); font-size:14px; line-height:1.7; margin:1rem 0; }
.cart-items{ display:flex; flex-direction:column; }
.cart-row{ display:flex; align-items:center; gap:.8rem; padding:.9rem 0; border-bottom:1px solid var(--line); }
.cart-row-info{ flex:1; min-width:0; display:flex; flex-direction:column; gap:.15rem; }
.cart-row-title{ font-family:var(--serif); font-size:16px; color:var(--ink); line-height:1.3; }
.cart-row-price{ font-size:13px; color:var(--sage); }
.cart-qty{ display:flex; align-items:center; gap:.5rem; }
.cart-qty button{ width:26px; height:26px; border-radius:50%; border:1px solid var(--line); background:#fff; color:var(--ink); cursor:pointer; font-size:15px; line-height:1; transition:all var(--t-fast); }
.cart-qty button:hover{ background:var(--burgundy); color:var(--on-dark); border-color:var(--burgundy); }
.cart-qty span{ min-width:18px; text-align:center; font-size:14px; }
.cart-remove{ background:none; border:none; font-size:20px; color:var(--ink-soft); cursor:pointer; line-height:1; opacity:.55; transition:opacity var(--t-fast); }
.cart-remove:hover{ opacity:1; color:var(--burgundy); }
.cart-form{ margin-top:1.4rem; }
.cart-form .btn{ width:100%; margin-top:.4rem; }
.cart-form .req{ color:var(--burgundy); }
/* sold-out items stay in the cart, greyed */
.cart-row.is-sold{ opacity:.65; }
.cart-row.is-sold .cart-row-title{ text-decoration:line-through; color:var(--ink-soft); }
.cart-sold-tag{ font-size:11px; letter-spacing:.12em; text-transform:uppercase; color:var(--burgundy); }

/* cart button in the top nav (next to the language switcher) */
.cart-nav{
  position:relative; display:inline-flex; align-items:center; justify-content:center;
  background:none; border:none; cursor:pointer; color:var(--ink-soft); padding:.2rem; transition:color var(--t-fast);
}
.cart-nav:hover{ color:var(--burgundy); }
.cart-nav svg{ width:21px; height:21px; }
.cart-nav .cart-count{
  position:absolute; top:-3px; right:-6px; min-width:17px; height:17px; padding:0 4px; border-radius:9px;
  background:var(--sage); color:#fff; font-family:var(--sans); font-size:10px; line-height:17px; text-align:center;
  transform:scale(0); transition:transform .3s var(--ease);
}
.cart-nav.has-items .cart-count{ transform:scale(1); }

/* cart confirmation ("thank you") view */
.cart-confirm{ text-align:center; padding:1.4rem .3rem; }
.cart-check{ width:56px; height:56px; margin:.4rem auto 1.2rem; border-radius:50%; background:var(--burgundy); color:var(--on-dark); display:flex; align-items:center; justify-content:center; animation:cartCheckIn .4s var(--ease) both; }
.cart-check svg{ width:28px; height:28px; }
@keyframes cartCheckIn{ 0%{ transform:scale(.4); opacity:0 } 60%{ transform:scale(1.12) } 100%{ transform:scale(1); opacity:1 } }
.cart-confirm-title{ font-family:var(--serif); font-weight:400; font-size:22px; color:var(--ink); margin-bottom:.6rem; line-height:1.3; }
.cart-confirm-msg{ font-size:14px; color:var(--ink-soft); line-height:1.7; margin-bottom:1rem; }
.cart-confirm-ref{ font-size:12px; letter-spacing:.1em; text-transform:uppercase; color:var(--sage); margin-bottom:1.2rem; }
.cart-confirm-items{ text-align:left; border-top:1px solid var(--line); border-bottom:1px solid var(--line); padding:.7rem 0; margin-bottom:1.4rem; }
.cci-row{ font-size:14px; color:var(--ink); padding:.3rem 0; }
.cart-confirm .btn{ width:100%; }

/* stock line in the product modal */
.sm-stock{ font-size:13px; letter-spacing:.02em; color:var(--sage); margin:.2rem 0 1rem; }
.sm-stock.is-sold{ color:var(--burgundy); font-weight:500; text-transform:uppercase; letter-spacing:.14em; font-size:12px; }

/* ══ SHOP liveliness — cards feel alive, like a lovely little shop ══ */
.product{ will-change:transform; }
.product:hover{ transform:translateY(-7px); box-shadow:0 26px 50px -26px rgba(28,18,10,.42); border-color:rgba(90,52,48,.22); }
.product:hover .thumb img{ transform:scale(1.06); }
.product .thumb img{ transition:transform .75s var(--ease); }
/* soft light sweep across the photo on hover */
.product .thumb{ position:relative; }
.product .thumb::before{
  content:''; position:absolute; top:0; left:-80%; width:55%; height:100%; z-index:1;
  background:linear-gradient(100deg,transparent,rgba(255,255,255,.35),transparent);
  transform:skewX(-18deg); pointer-events:none; opacity:0;
}
.product:hover .thumb::before{ animation:cardShine .95s var(--ease); }
@keyframes cardShine{ 0%{left:-80%; opacity:0} 18%{opacity:1} 100%{left:135%; opacity:0} }
/* the "View →" arrow slides on hover */
.product .read-more .arrow{ display:inline-block; transition:transform var(--t-fast); }
.product:hover .read-more .arrow{ transform:translateX(5px); }
.product:hover .read-more{ color:var(--burgundy); }
/* price gets a gentle nudge on hover */
.product:hover .price{ transform:translateY(-1px); transition:transform var(--t-fast); }
/* sold badge that stays on the card (add class "is-sold" to the .product) */
.product.is-sold .thumb img{ filter:grayscale(.35) brightness(.92); }
.product.is-sold .thumb::after{ content:''; position:absolute; inset:0; background:linear-gradient(180deg,rgba(90,52,48,.04),rgba(58,42,32,.28)); z-index:1; }
.product.is-sold .sold-badge{
  position:absolute; top:.8rem; left:.8rem; z-index:2;
  background:var(--burgundy); color:var(--on-dark);
  font-size:10.5px; letter-spacing:.16em; text-transform:uppercase; font-weight:500;
  padding:.34rem .8rem; border-radius:999px;
}
/* stock hint under the price on a card */
.product .stock-hint{ font-size:11px; letter-spacing:.04em; color:var(--sage); margin-top:.3rem; }
.product .stock-hint.low{ color:var(--burgundy); }

/* ── FOOTER ── */
.footer{ background:var(--ink); color:var(--on-dark-soft); text-align:center; padding:3.2rem 1.5rem 2.4rem; }
.footer .f-brand{ display:block; font-family:var(--serif); font-size:22px; font-weight:400; letter-spacing:.18em; text-transform:uppercase; color:var(--on-dark); text-decoration:none; margin-bottom:1.4rem; }
.footer .f-links{ display:flex; gap:1.6rem; justify-content:center; flex-wrap:wrap; margin-bottom:1.2rem; }
.footer .f-links a{ font-size:11.5px; letter-spacing:.13em; text-transform:uppercase; color:var(--on-dark); text-decoration:none; transition:opacity var(--t-fast); }
.footer .f-links a:hover{ opacity:.7; }
.footer .f-socials{ display:flex; gap:.7rem; justify-content:center; margin:1.4rem 0; }
.footer .f-socials a{ width:38px; height:38px; border:1px solid rgba(245,237,232,.28); border-radius:50%; display:flex; align-items:center; justify-content:center; color:var(--on-dark-soft); transition:all var(--t-fast); }
.footer .f-socials a:hover{ background:var(--on-dark); color:var(--ink); border-color:var(--on-dark); }
.footer .f-socials svg{ width:17px; height:17px; }
.cur-switch{ display:inline-flex; gap:.3rem; margin-top:1.3rem; padding:.25rem; border:1px solid rgba(245,237,232,.22); border-radius:999px; }
.cur-switch button{ font-family:var(--sans); font-size:11px; letter-spacing:.06em; color:var(--on-dark-soft); background:none; border:none; padding:.34rem .7rem; border-radius:999px; cursor:pointer; transition:all var(--t-fast); }
.cur-switch button:hover{ color:var(--on-dark); }
.cur-switch button.active{ background:var(--on-dark); color:var(--ink); }
.lang-switch{ display:inline-flex; gap:.3rem; margin-top:1rem; padding:.25rem; border:1px solid rgba(245,237,232,.22); border-radius:999px; }
.lang-switch button{ font-family:var(--sans); font-size:11px; letter-spacing:.08em; color:var(--on-dark-soft); background:none; border:none; padding:.34rem .8rem; border-radius:999px; cursor:pointer; transition:all var(--t-fast); }
.lang-switch button:hover{ color:var(--on-dark); }
.lang-switch button.active{ background:var(--on-dark); color:var(--ink); }
/* Nav (top) variant — dark text on the light header */
.lang-switch--nav{ margin-top:0; border-color:var(--line); padding:.15rem; }
.lang-switch--nav button{ color:var(--ink-soft); padding:.28rem .6rem; }
.lang-switch--nav button:hover{ color:var(--burgundy); }
.lang-switch--nav button.active{ background:var(--burgundy); color:var(--on-dark); }
/* Nav language dropdown (globe) */
.lang-dd{ position:relative; }
.lang-dd-btn{ display:inline-flex; align-items:center; gap:.35rem; background:none; border:1px solid var(--line); border-radius:999px; padding:.32rem .6rem; font-family:var(--sans); font-size:12px; letter-spacing:.04em; color:var(--ink-soft); cursor:pointer; transition:all var(--t-fast); }
.lang-dd-btn svg{ width:15px; height:15px; }
.lang-dd-btn:hover{ color:var(--burgundy); border-color:var(--burgundy); }
.lang-dd-menu{ position:absolute; top:calc(100% + .55rem); right:0; background:var(--bg); border:1px solid var(--line); border-radius:14px; box-shadow:0 18px 36px -18px rgba(58,42,32,.55); padding:.4rem; display:none; flex-direction:column; min-width:158px; z-index:250; }
.lang-dd.open .lang-dd-menu{ display:flex; }
.lang-dd-menu button{ text-align:left; background:none; border:none; padding:.55rem .8rem; border-radius:9px; font-family:var(--sans); font-size:13px; color:var(--ink); cursor:pointer; transition:background var(--t-fast); }
.lang-dd-menu button:hover{ background:var(--panel); }
.lang-dd-menu button.active{ color:var(--burgundy); font-weight:500; }

/* Shop dropdown in the nav (groups Journals & Books · Art · Boxes) */
.shop-dd{ position:relative; display:inline-flex; align-items:center; }
.shop-dd-btn{
  position:relative; background:none; border:none; cursor:pointer; padding:0 0 3px;
  font-family:var(--sans); font-size:12.5px; font-weight:300; letter-spacing:.13em; text-transform:uppercase;
  color:var(--ink-soft); display:inline-flex; align-items:center; gap:.4em; white-space:nowrap; transition:color var(--t-fast);
}
.shop-dd-btn::after{ content:'▾'; font-size:.85em; opacity:.65; transition:transform var(--t-fast); }
.shop-dd.open .shop-dd-btn::after{ transform:rotate(180deg); }
.shop-dd-btn:hover, .shop-dd-btn.is-current{ color:var(--burgundy); }
.shop-dd-menu{
  position:absolute; top:calc(100% + .7rem); left:0; background:var(--bg); border:1px solid var(--line);
  border-radius:14px; box-shadow:0 18px 36px -18px rgba(58,42,32,.55); padding:.5rem; min-width:190px;
  display:flex; flex-direction:column; opacity:0; transform:translateY(6px); pointer-events:none;
  transition:opacity var(--t-fast), transform var(--t-fast); z-index:250;
}
.shop-dd:hover .shop-dd-menu, .shop-dd.open .shop-dd-menu{ opacity:1; transform:none; pointer-events:auto; }
.shop-dd-menu a{ padding:.6rem .8rem !important; border-radius:9px; white-space:nowrap; }
.shop-dd-menu a::after{ display:none; }
.shop-dd-menu a:hover{ background:var(--panel); }
@media (max-width:1200px){
  .shop-dd{ display:block; width:100%; }
  .shop-dd-btn{ width:100%; justify-content:center; font-size:15px; padding:.85rem 1rem; border-bottom:1px solid var(--line); }
  .shop-dd-btn::after{ display:none; }
  .shop-dd-menu{ position:static; opacity:1; transform:none; pointer-events:auto; box-shadow:none; border:none; border-radius:0; padding:0; background:none; min-width:0; }
  .shop-dd-menu a{ padding:.85rem 1rem !important; }
}

/* Masonry photo gallery (e.g. Lensy Atelier) — handles many photos gracefully */
.photo-masonry{ column-count:3; column-gap:14px; }
.photo-masonry img{
  width:100%; margin:0 0 14px; display:block; break-inside:avoid; border-radius:12px; cursor:zoom-in;
  box-shadow:0 10px 26px -18px rgba(28,18,10,.4); transition:transform .5s var(--ease), box-shadow .5s var(--ease);
}
.photo-masonry img:hover{ transform:translateY(-4px); box-shadow:0 20px 40px -20px rgba(28,18,10,.5); }
@media (max-width:900px){ .photo-masonry{ column-count:2; } }
@media (max-width:520px){ .photo-masonry{ column-count:1; } }
.footer .copy{ font-size:11px; letter-spacing:.1em; text-transform:uppercase; }
.footer .copy span{ color:var(--on-dark); }

/* ── INSTAGRAM FEED (homepage) ── */
.ig-grid{ display:grid; grid-template-columns:repeat(6,1fr); gap:.5rem; max-width:var(--maxw); margin:0 auto; }
.ig-cell{ position:relative; aspect-ratio:1; overflow:hidden; border-radius:6px; display:block; }
.ig-cell img{ width:100%; height:100%; object-fit:cover; transition:transform .5s var(--ease); }
.ig-cell:hover img{ transform:scale(1.07); }
.ig-cell::after{ content:''; position:absolute; inset:0; background:rgba(58,42,32,0); transition:background var(--t-mid) var(--ease); }
.ig-cell:hover::after{ background:rgba(58,42,32,.3); }
.ig-cell .ig-ic{ position:absolute; inset:0; display:flex; align-items:center; justify-content:center; color:#fff; opacity:0; transition:opacity var(--t-mid) var(--ease); z-index:2; }
.ig-cell:hover .ig-ic{ opacity:1; }
.ig-cell .ig-ic svg{ width:24px; height:24px; }
@media (max-width:760px){ .ig-grid{ grid-template-columns:repeat(3,1fr); } }
@media (max-width:460px){ .ig-grid{ grid-template-columns:repeat(2,1fr); } }

/* ── BOTANICAL SPRIG DIVIDER ── */
.divider{ display:flex; align-items:center; justify-content:center; padding:clamp(.3rem,1.2vw,.8rem) 1rem; }
.divider svg{ width:min(132px,46vw); height:auto; color:var(--blue); }
/* blends the divider into an adjacent panel section (no lighter stripe) */
.divider--panel{ background:var(--panel); margin:0; }

/* ── EDITORIAL SECTION NUMBERS ── */
.sec-no{
  display:block; font-family:var(--serif); font-weight:500; line-height:1;
  font-size:clamp(2.4rem,5vw,4rem); margin-bottom:.5rem;
  color:transparent; -webkit-text-stroke:1px var(--burgundy); opacity:.55;
}

/* ── ASYMMETRIC STAGGERED GRID ── */
.grid--stagger > *:nth-child(even){ margin-top:1.6rem; }
@media (max-width:1024px){ .grid--stagger > *:nth-child(even){ margin-top:1.6rem; } }
@media (max-width:560px){ .grid--stagger > *:nth-child(even){ margin-top:0; } }

/* ── PAINTBRUSH CURSOR + PAINT SPLASHES (desktop, fine pointer) ── */
body.brush-on{ cursor:none; }
body.brush-on input, body.brush-on textarea, body.brush-on select{ cursor:text; }
.brush-cursor{
  position:fixed; top:0; left:0; z-index:9999; width:12px; height:12px;
  margin:-6px 0 0 -6px; border-radius:50%;
  background:radial-gradient(circle at 35% 32%, #FCF8F1 0%, #ECE0CB 50%, rgba(225,212,188,.6) 78%, rgba(225,212,188,0) 100%);
  box-shadow:0 2px 8px rgba(58,42,32,.14);
  pointer-events:none; transform:translate(-200px,-200px); will-change:transform;
  transition:width .18s var(--ease), height .18s var(--ease), margin .18s var(--ease);
}
.brush-cursor.down{ width:20px; height:20px; margin:-10px 0 0 -10px; }
.paint-blob{ position:fixed; z-index:9997; pointer-events:none; transform:translate(-50%,-50%) scale(0); will-change:transform,opacity; }
@keyframes paintPop{
  0%{ transform:translate(-50%,-50%) scale(.15); opacity:.95; }
  70%{ opacity:.85; }
  100%{ transform:translate(-50%,-50%) scale(1); opacity:0; }
}
@media (hover:none),(pointer:coarse){ .brush-cursor{ display:none; } }

/* ── LIGHTBOX ── */
.js-lightbox img{ cursor:zoom-in; }
.lightbox{ position:fixed; inset:0; z-index:400; display:none; align-items:center; justify-content:center; background:rgba(28,18,10,.92); }
.lightbox.open{ display:flex; }
.lightbox img{ max-width:90vw; max-height:88vh; object-fit:contain; border-radius:4px; box-shadow:0 24px 60px rgba(0,0,0,.5); }
.lb-btn{ position:absolute; background:rgba(245,237,232,.92); border:none; width:46px; height:46px; border-radius:50%; cursor:pointer; font-size:20px; color:var(--ink); display:flex; align-items:center; justify-content:center; box-shadow:0 2px 10px rgba(0,0,0,.3); }
.lb-btn:hover{ background:#fff; }
.lb-close{ top:1.2rem; right:1.2rem; }
.lb-prev{ left:1.2rem; top:50%; transform:translateY(-50%); }
.lb-next{ right:1.2rem; top:50%; transform:translateY(-50%); }
@media (max-width:560px){ .lb-prev{ left:.5rem; } .lb-next{ right:.5rem; } }

/* ── ANNOUNCEMENT BAR ── */
.promo-strip{ background:var(--burgundy); color:var(--on-dark); text-align:center; font-family:var(--sans); font-size:12px; letter-spacing:.18em; text-transform:uppercase; padding:.85rem 1.5rem; }
.announce{ background:var(--sage); color:var(--on-dark); text-align:center; font-size:12px; letter-spacing:.1em; text-transform:uppercase; padding:.6rem 2.4rem; position:relative; }
.announce a{ color:var(--on-dark); }
.announce .a-close{ position:absolute; right:.7rem; top:50%; transform:translateY(-50%); background:none; border:none; color:var(--on-dark); font-size:18px; cursor:pointer; line-height:1; opacity:.8; }
.announce .a-close:hover{ opacity:1; }

/* ── BACK TO TOP ── */
.to-top{ position:fixed; left:1.4rem; bottom:1.4rem; z-index:150; width:46px; height:46px; border-radius:50%;
  background:var(--ink); color:var(--on-dark); border:none; cursor:pointer; display:flex; align-items:center; justify-content:center;
  box-shadow:var(--shadow); opacity:0; transform:translateY(14px); pointer-events:none; transition:opacity .3s var(--ease), transform .3s var(--ease); }
.to-top.show{ opacity:1; transform:none; pointer-events:auto; }
.to-top:hover{ background:var(--burgundy); }
.to-top svg{ width:18px; height:18px; }

/* ── STUDIO RADIAL MENU ── */
.studio-menu{ position:fixed; inset:0; z-index:500; display:none; align-items:center; justify-content:center;
  background:rgba(28,19,12,.5); backdrop-filter:blur(11px); -webkit-backdrop-filter:blur(11px); }
.studio-menu.open{ display:flex; animation:smFade .3s ease; }
@keyframes smFade{ from{ opacity:0; } to{ opacity:1; } }
.studio-menu .sm-close{ position:absolute; top:1.2rem; right:1.4rem; width:46px; height:46px; border:none; border-radius:50%; background:transparent; color:var(--on-dark); font-size:26px; cursor:pointer; line-height:1; }
.radial{ position:relative; width:min(690px,92vmin); aspect-ratio:1; }
.radial-center{ position:absolute; left:50%; top:50%; transform:translate(-50%,-50%); text-align:center; z-index:2; pointer-events:none; }
.radial-center .rc-logo{ font-family:var(--serif); letter-spacing:.16em; text-transform:uppercase; font-size:clamp(16px,2vw,22px); color:var(--on-dark); line-height:1.35; }
.radial-center .rc-sub{ font-family:var(--sans); font-size:10px; letter-spacing:.28em; text-transform:uppercase; color:var(--on-dark-soft); margin-top:.45rem; }
.radial-item{ position:absolute; top:50%; left:50%; width:130px; text-decoration:none; text-align:center; --r:0; opacity:0;
  transition:transform .55s var(--ease), opacity .45s ease;
  transform:translate(-50%,-50%) rotate(var(--a)) translateY(calc(-1 * var(--r))) rotate(calc(-1 * var(--a))) scale(.5); }
.studio-menu.animate .radial-item{ --r:min(255px,35vmin); opacity:1;
  transform:translate(-50%,-50%) rotate(var(--a)) translateY(calc(-1 * var(--r))) rotate(calc(-1 * var(--a))) scale(1); }
.studio-menu.animate .radial-item:nth-child(2){ transition-delay:.05s; }
.studio-menu.animate .radial-item:nth-child(3){ transition-delay:.10s; }
.studio-menu.animate .radial-item:nth-child(4){ transition-delay:.15s; }
.studio-menu.animate .radial-item:nth-child(5){ transition-delay:.20s; }
.studio-menu.animate .radial-item:nth-child(6){ transition-delay:.25s; }
.studio-menu.animate .radial-item:nth-child(7){ transition-delay:.30s; }
.radial-item .circ{ display:block; width:clamp(88px,16vmin,128px); height:clamp(88px,16vmin,128px); border-radius:50%; overflow:hidden; margin:0 auto .6rem; border:1px solid rgba(245,237,232,.35); box-shadow:0 16px 34px -18px rgba(0,0,0,.6); transition:transform var(--t-mid) var(--ease); }
.radial-item .circ{ position:relative; }
/* gentle warm tone so varied photos feel like one family */
.radial-item .circ::after{ content:''; position:absolute; inset:0; border-radius:50%; background:linear-gradient(160deg, rgba(90,52,48,.10), rgba(110,122,90,.08)); mix-blend-mode:multiply; pointer-events:none; }
.radial-item .circ img{ width:100%; height:100%; object-fit:cover; filter:saturate(.82) contrast(.97) sepia(.14) brightness(.99); transition:filter var(--t-mid) var(--ease); }
.radial-item:hover .circ{ transform:scale(1.06); }
.radial-item:hover .circ img{ filter:saturate(.92) contrast(1) sepia(.06); }

/* gentle cohesion tone on lifestyle photo grids — NOT on shop product photos (colour stays true there) */
.card .thumb img{ filter:saturate(.9) sepia(.06); transition:transform .6s var(--ease), filter .5s var(--ease); }
.card:hover .thumb img{ filter:none; }
.ig-cell img{ filter:saturate(.9) sepia(.06); transition:transform var(--t-mid) var(--ease), filter .5s var(--ease); }
.ig-cell:hover img{ filter:none; }
/* keep a card's photo at its true, vivid colour (no cohesion tone) */
.card--vivid .thumb img{ filter:none; }

/* a small "Sold" badge on a product card image (art stays colourful) */
.product .thumb{ position:relative; }
.thumb .sold-badge{ position:absolute; top:.8rem; left:.8rem; z-index:2; background:var(--burgundy); color:var(--on-dark); font-size:10.5px; letter-spacing:.14em; text-transform:uppercase; font-weight:500; padding:.3rem .72rem; border-radius:999px; }

/* sold painting in the gallery — stays visible, not orderable */
.gallery .artframe{ position:relative; }
.art-sold{ position:absolute; top:.7rem; left:.7rem; z-index:2; background:var(--burgundy); color:var(--on-dark); font-size:10.5px; letter-spacing:.14em; text-transform:uppercase; font-weight:500; padding:.32rem .75rem; border-radius:999px; }
.gallery figure.is-sold .artframe img{ filter:grayscale(.25) brightness(.96); }
.gallery figure.is-sold .price{ opacity:.7; letter-spacing:.06em; }

/* painterly brush-stroke divider between sections */
.paint-divider{ display:flex; justify-content:center; padding:1.4rem 1rem 1.2rem; }
.paint-divider svg{ width:min(340px,68%); height:auto; }

/* animated "coming soon" banner (e.g. Watercolour Art Boxes) */
.soon-banner{ position:relative; overflow:hidden; display:flex; width:fit-content; align-items:center; justify-content:center; gap:.8rem 1.1rem; flex-wrap:wrap;
  max-width:100%; margin:.5rem auto 0; padding:1.05rem 1.6rem; border-radius:var(--radius);
  background:#B8C79A; color:var(--burgundy); text-decoration:none; text-align:center;
  box-shadow:0 16px 34px -18px rgba(90,52,48,.45); transition:transform var(--t-fast), box-shadow var(--t-fast); animation:soonPulse 3.6s var(--ease) infinite; }
.soon-banner:hover{ transform:translateY(-2px); }
.soon-banner-tag{ font-family:var(--sans); font-size:11px; letter-spacing:.16em; text-transform:uppercase; background:#9A6A4E; color:#fff; padding:.32rem .7rem; border-radius:999px; white-space:nowrap; }
.soon-banner-text{ font-size:14.5px; line-height:1.5; }
.soon-banner-text strong{ font-weight:600; color:var(--burgundy); }
.soon-banner-cta{ font-size:11.5px; letter-spacing:.14em; text-transform:uppercase; border:1px solid rgba(90,52,48,.4); padding:.5rem .9rem; border-radius:999px; white-space:nowrap; }
.soon-banner .arrow{ display:inline-block; transition:transform var(--t-fast); }
.soon-banner:hover .arrow{ transform:translateX(4px); }
.soon-banner-shine{ position:absolute; top:0; left:-60%; width:45%; height:100%; pointer-events:none;
  background:linear-gradient(100deg,transparent,rgba(255,255,255,.18),transparent); transform:skewX(-18deg); animation:soonShine 3.6s var(--ease) infinite; }
@keyframes soonPulse{ 0%,100%{ box-shadow:0 16px 34px -18px rgba(90,52,48,.55) } 50%{ box-shadow:0 20px 46px -16px rgba(90,52,48,.85) } }
@keyframes soonShine{ 0%{ left:-60% } 60%,100%{ left:135% } }
@media (prefers-reduced-motion:reduce){ .soon-banner{ animation:none } .soon-banner-shine{ display:none } }

/* small personal signature block (photo + name) */
.page-sign{ display:flex; flex-direction:column; align-items:center; gap:.55rem; margin:.4rem auto 1.7rem; }
.page-sign img{ width:68px; height:68px; border-radius:50%; object-fit:cover; box-shadow:0 10px 22px -12px rgba(28,18,10,.45); }
.page-sign .sig{ font-family:var(--serif); font-style:italic; font-weight:400; font-size:27px; line-height:1; color:var(--burgundy); }
.radial-item .lbl{ font-family:var(--sans); font-size:12px; letter-spacing:.1em; text-transform:uppercase; color:var(--on-dark); }
.studio-menu .sm-scroll{ position:absolute; bottom:1.4rem; left:50%; transform:translateX(-50%); font-family:var(--sans); font-size:12px; letter-spacing:.14em; text-transform:uppercase; color:var(--on-dark-soft); background:none; border:none; cursor:pointer; }
.studio-menu .sm-scroll:hover{ color:var(--on-dark); }
@media (prefers-reduced-motion:reduce){ .radial-item{ transition:opacity .3s ease; } }
@media (max-width:620px){
  .studio-menu{ flex-direction:column; align-items:center; justify-content:flex-start; padding:2rem 1rem 2rem; overflow-y:auto; }
  .radial{ width:100%; aspect-ratio:auto; display:flex; flex-direction:column; gap:.6rem; align-items:center; padding:0; }
  .radial-center{ position:static; transform:none; margin-bottom:.6rem; }
  .radial-item, .studio-menu.animate .radial-item{ position:static; transform:none; opacity:1; width:auto; display:flex; align-items:center; gap:.9rem; }
  .radial-item .circ{ width:48px; height:48px; margin:0; }
  .studio-menu .sm-scroll{ position:static; transform:none; margin:1.6rem auto 0; display:inline-block; padding:.8rem 1.4rem; border:1px solid rgba(245,237,232,.35); border-radius:999px; text-align:center; background:rgba(245,237,232,.06); }
  .studio-menu .sm-scroll:hover{ background:rgba(245,237,232,.14); color:var(--on-dark); }
}

/* ── SCROLL REVEAL ── */
.reveal{ opacity:0; transform:translateY(26px); transition:opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in{ opacity:1; transform:none; }
.reveal.d1{ transition-delay:.08s; }
.reveal.d2{ transition-delay:.16s; }
.reveal.d3{ transition-delay:.24s; }

/* respect reduced motion (a11y: reduced-motion) */
@media (prefers-reduced-motion:reduce){
  *, *::before, *::after{ animation-duration:.001ms !important; animation-iteration-count:1 !important; transition-duration:.001ms !important; }
  html{ scroll-behavior:auto; }
  .reveal{ opacity:1; transform:none; }
}

/* ── RESPONSIVE (mobile-first breakpoints: 1024 / 768 / 480) ── */
@media (max-width:1024px){
  .grid{ grid-template-columns:repeat(2,1fr); }
  .products, .reviews{ grid-template-columns:repeat(2,1fr); }
}
/* nav collapses to a burger earlier, so 6 items never crowd the logo */
@media (max-width:1200px){
  .nav{ padding:1rem 1.4rem; justify-content:space-between; }
  .nav-burger{ display:flex; order:-1; }
  .nav-logo{ position:static; transform:none; }
  .nav .lang-dd{ margin-left:auto; }
  .nav-links{
    position:fixed; inset:62px 0 auto 0; z-index:190; flex:none; transform:translateY(-135%);
    flex-direction:column; align-items:stretch; gap:.15rem;
    transition:transform var(--t-mid) var(--ease); background:var(--bg);
    padding:1.2rem 1rem 1.8rem; border-bottom:1px solid var(--line);
    max-height:calc(100vh - 62px); overflow-y:auto;
  }
  .nav-links.open{ transform:translateY(0); }
  .nav-side{ flex-direction:column; gap:.15rem; align-items:stretch; width:100%; padding:0 !important; }
  .nav-side a{ font-size:15px; text-align:center; padding:.85rem 1rem; border-bottom:1px solid var(--line); }
  .nav-side a:last-child{ border-bottom:none; }
  .nav-side a::after{ display:none; }
  .nav-side.left, .nav-side.right{ padding:0 !important; }
  .nav-logo{ padding:0 !important; background:transparent !important; }
}
@media (max-width:768px){
  .intro, .about, .community{ grid-template-columns:1fr; }
  .about-photo{ max-width:420px; margin:0 auto; }
  .community-img{ min-height:300px; order:-1; }
  .contact-grid{ grid-template-columns:1fr; }
}
@media (max-width:600px){
  .marquee img{ height:130px; }
  .hero{ height:min(72vh,460px); }
  .page-hero{ min-height:300px; padding:3.5rem 1.3rem; }
  .jhero{ min-height:74vh; }
}
@media (max-width:480px){
  .grid, .products, .reviews{ grid-template-columns:1fr; }
  .section{ padding:3.5rem 1.3rem; }
  .float-contact span{ display:none; }
  .float-contact{ padding:.8rem; }
  .section-title{ font-size:clamp(24px,7vw,32px); }
}
/* studio menu: scrollable on small screens so nothing is cut off */
@media (max-width:620px){
  .studio-menu{ align-items:flex-start; overflow-y:auto; padding:3.5rem 1rem; }
}

/* Art-therapy: scroll invitation */
.scroll-invite{ display:flex; width:fit-content; flex-direction:column; align-items:center; text-align:center; gap:.35rem; margin:1.8rem auto 0; text-decoration:none; color:inherit; font-family:'Jost',sans-serif; font-weight:300; font-size:13px; letter-spacing:.14em; text-transform:uppercase; opacity:.85; transition:opacity .3s }
.scroll-invite:hover{ opacity:1 }
.scroll-invite .scroll-arrow{ font-size:20px; line-height:1; animation:scrollBob 1.8s ease-in-out infinite }
@keyframes scrollBob{ 0%,100%{ transform:translateY(0); opacity:.6 } 50%{ transform:translateY(6px); opacity:1 } }

/* Art-therapy: intro video block */
.at-video{ max-width:640px; margin:2rem auto 0 }
.video-frame{ position:relative; aspect-ratio:16/9; border-radius:14px; background:linear-gradient(135deg,var(--panel,#efe7dd),#e3d6c8); border:1px solid rgba(90,52,48,.18); display:flex; align-items:center; justify-content:center; overflow:hidden }
.video-frame::before{ content:'▶'; position:absolute; font-size:34px; color:var(--burgundy); opacity:.5 }
.video-soon{ position:absolute; bottom:14px; font-family:'Jost',sans-serif; font-weight:300; font-size:12px; letter-spacing:.14em; text-transform:uppercase; color:var(--ink-soft) }

/* Cart: shipping note */
.cart-ship-note{ font-family:'Jost',sans-serif; font-weight:300; font-size:12.5px; line-height:1.6; color:var(--ink-soft); background:rgba(90,52,48,.05); border-radius:10px; padding:.7rem .85rem; margin:.2rem 0 1rem }

/* Homepage 'Original Art' card — zoom into the painting + softer brightness to match the site */
.card .thumb img.art-focus{ transform:scale(1.24); object-position:center 20%; filter:saturate(.86) sepia(.05) brightness(.9); }
.card:hover .thumb img.art-focus{ transform:scale(1.3); filter:saturate(.92) brightness(.94); }

/* Art-therapy: who-it's-for column labels */
.whofor-label{ font-family:'Jost',sans-serif; font-weight:500; font-size:12.5px; letter-spacing:.12em; text-transform:uppercase; color:var(--burgundy); margin:0 0 .7rem }

/* Boxes: promo code strip */
.promo-code{ display:inline-flex; align-items:center; justify-content:center; gap:.5rem; flex-wrap:wrap; max-width:100%;
  margin:.4rem auto 0; padding:.6rem 1.3rem; font-family:'Jost',sans-serif; font-weight:300; font-size:13.5px;
  color:var(--burgundy); background:rgba(126,138,90,.15); border:1px dashed rgba(90,52,48,.38); border-radius:999px; }
.promo-code strong{ font-weight:600; background:rgba(154,106,78,.18); padding:.05rem .45rem; border-radius:6px; }

/* Boxes: filter + sort bar */
.box-filter{ display:flex; flex-wrap:wrap; gap:.5rem; justify-content:center; align-items:center; margin:0 auto; }
.bf-chip, .bf-sort{ font-family:'Jost',sans-serif; font-weight:300; font-size:12.5px; letter-spacing:.06em; color:var(--burgundy);
  background:transparent; border:1px solid rgba(90,52,48,.28); padding:.5rem 1rem; border-radius:999px; cursor:pointer;
  transition:background var(--t-fast), color var(--t-fast), border-color var(--t-fast); white-space:nowrap; }
.bf-chip:hover, .bf-sort:hover{ border-color:var(--burgundy); }
.bf-chip.is-active{ background:var(--burgundy); color:var(--on-dark); border-color:var(--burgundy); }
.bf-sort{ margin-left:.4rem; border-style:dashed; }
.bf-sort.is-active{ background:var(--sage); color:#fff; border-color:var(--sage); border-style:solid; }
@media (max-width:560px){ .bf-sort{ margin-left:0; } }

/* Workshops: intro text + photo side by side */
.ws-intro{ display:grid; grid-template-columns:1.25fr .85fr; gap:2.6rem; align-items:center; max-width:960px; text-align:left; }
.ws-intro-photo img{ width:100%; height:100%; max-height:380px; object-fit:cover; border-radius:16px; box-shadow:0 18px 40px -22px rgba(90,52,48,.55); }
@media (max-width:760px){
  .ws-intro{ grid-template-columns:1fr; gap:1.6rem; }
  .ws-intro-photo{ order:-1; }
  .ws-intro-photo img{ max-height:300px; }
}

/* Soft matte photo behind a section (text stays readable) */
.section--photobg{ position:relative; overflow:hidden; }
.section--photobg > .photobg{ position:absolute; inset:0; background-size:cover; background-position:center; opacity:.14; z-index:0; pointer-events:none; }
.section--photobg > .wrap{ position:relative; z-index:1; }

/* Section headings reveal left-to-right (like reading) — safe: visible at rest, wipes on reveal */
.section-title.reveal{ opacity:1; transform:none; }
.section-title.reveal.in{ animation:titleWipe 1.05s var(--ease) both; }
@keyframes titleWipe{ from{ clip-path:inset(0 100% 0 0); } to{ clip-path:inset(0 0 0 0); } }

/* Interactive buttons — light sweep on hover */
.btn{ position:relative; overflow:hidden; }
.btn:not(.btn-sm)::before{ content:''; position:absolute; top:0; left:-120%; width:55%; height:100%;
  background:linear-gradient(100deg, transparent, rgba(255,255,255,.28), transparent); transform:skewX(-18deg);
  transition:left .6s var(--ease); pointer-events:none; z-index:1; }
.btn:not(.btn-sm):hover::before{ left:150%; }

@media (prefers-reduced-motion:reduce){
  .section-title.reveal{ clip-path:none; }
  .btn:not(.btn-sm)::before{ display:none; }
}

/* Page transition veil (spinning paint palette) + gentle page fade-in */
#pageveil{ position:fixed; inset:0; z-index:99999; background:#FAF8F5; display:flex; align-items:center; justify-content:center;
  opacity:0; visibility:hidden; transition:opacity .45s var(--ease), visibility .45s var(--ease); }
#pageveil.show{ opacity:1; visibility:visible; }
#pageveil .palette{ transform-origin:50% 50%; animation:paletteSpin 1s linear infinite; filter:drop-shadow(0 8px 18px rgba(90,52,48,.18)); }
@keyframes paletteSpin{ to{ transform:rotate(360deg); } }
@keyframes pageIn{ from{ opacity:0; } to{ opacity:1; } }
body{ animation:pageIn .5s var(--ease) both; }
@media (prefers-reduced-motion:reduce){ #pageveil .palette{ animation:none; } body{ animation:none; } }

/* Wishlist */
.wl-heart{ position:absolute; top:.55rem; right:.55rem; z-index:4; width:34px; height:34px; border-radius:50%; border:none;
  background:rgba(250,248,245,.9); color:var(--burgundy); cursor:pointer; display:flex; align-items:center; justify-content:center;
  box-shadow:0 3px 10px -2px rgba(90,52,48,.3); transition:transform .2s var(--ease), background .2s, color .2s; }
.wl-heart svg{ opacity:.5; transition:opacity .2s; }
.wl-heart:hover{ transform:scale(1.12); } .wl-heart:hover svg{ opacity:.8; }
.wl-heart.is-saved{ background:var(--burgundy); color:#fff; } .wl-heart.is-saved svg{ opacity:1; }
.wl-nav{ background:none; border:none; cursor:pointer; color:var(--ink); position:relative; padding:.3rem; display:inline-flex; align-items:center; }
.wl-nav svg{ width:21px; height:21px; }
.wl-nav .wl-count{ position:absolute; top:-4px; right:-6px; background:var(--burgundy); color:#fff; font-family:var(--sans); font-size:10px; min-width:16px; height:16px; border-radius:999px; display:flex; align-items:center; justify-content:center; padding:0 3px; }
.wl-drawer{ position:fixed; inset:0; z-index:1200; visibility:hidden; }
.wl-drawer.open{ visibility:visible; }
.wl-scrim{ position:absolute; inset:0; background:rgba(58,42,32,.35); opacity:0; transition:opacity .35s var(--ease); }
.wl-drawer.open .wl-scrim{ opacity:1; }
.wl-panel{ position:absolute; top:0; right:0; height:100%; width:min(400px,92vw); background:var(--bg,#FAF8F5);
  box-shadow:-16px 0 40px -20px rgba(58,42,32,.5); transform:translateX(100%); transition:transform .4s var(--ease);
  display:flex; flex-direction:column; padding:1.4rem; overflow-y:auto; }
.wl-drawer.open .wl-panel{ transform:none; }
.wl-head{ display:flex; align-items:center; justify-content:space-between; margin-bottom:1.2rem; }
.wl-x{ background:none; border:none; font-size:1.8rem; line-height:1; color:var(--ink); cursor:pointer; }
.wl-empty{ color:var(--ink-soft); font-size:14px; line-height:1.6; }
.wl-item{ display:flex; gap:.8rem; align-items:center; padding:.6rem 0; border-bottom:1px solid var(--line); }
.wl-thumb{ flex:0 0 auto; width:56px; height:56px; border-radius:8px; overflow:hidden; background:var(--line); }
.wl-thumb img{ width:100%; height:100%; object-fit:cover; }
.wl-meta{ flex:1; display:flex; flex-direction:column; gap:.15rem; min-width:0; }
.wl-title{ color:var(--ink); text-decoration:none; font-size:14px; }
.wl-title:hover{ color:var(--burgundy); }
.wl-price{ color:var(--ink-soft); font-size:13px; }
.wl-remove{ background:none; border:none; font-size:1.3rem; color:var(--ink-soft); cursor:pointer; line-height:1; }
.wl-remove:hover{ color:var(--burgundy); }

/* ── Fullscreen lightbox for modal photos ── */
.lightbox{ position:fixed; inset:0; z-index:2000; display:none; align-items:center; justify-content:center; }
.lightbox.open{ display:flex; animation: lbFade .18s ease-out; }
@keyframes lbFade{ from{ opacity:0; } to{ opacity:1; } }
.lightbox-scrim{ position:absolute; inset:0; background:rgba(20,14,14,.92); cursor:zoom-out; }
.lightbox-stage{ position:relative; z-index:1; max-width:96vw; max-height:92vh; display:flex; align-items:center; justify-content:center; padding:2rem 1rem; pointer-events:none; }
.lightbox-stage img{ max-width:96vw; max-height:88vh; object-fit:contain; border-radius:6px; box-shadow:0 20px 60px rgba(0,0,0,.55); pointer-events:auto; background:#0a0708; }
.lightbox-close{ position:absolute; top:1.1rem; right:1.3rem; z-index:2; background:rgba(255,255,255,.12); color:#fff; border:1px solid rgba(255,255,255,.28); width:44px; height:44px; border-radius:50%; font-size:1.7rem; line-height:1; cursor:pointer; display:flex; align-items:center; justify-content:center; transition:background .15s, transform .15s; }
.lightbox-close:hover{ background:rgba(255,255,255,.24); transform:scale(1.05); }
.lightbox-nav{ position:absolute; top:50%; transform:translateY(-50%); z-index:2; background:rgba(255,255,255,.12); color:#fff; border:1px solid rgba(255,255,255,.28); width:48px; height:48px; border-radius:50%; font-size:2rem; line-height:1; cursor:pointer; display:flex; align-items:center; justify-content:center; padding-bottom:4px; transition:background .15s; }
.lightbox-nav:hover{ background:rgba(255,255,255,.24); }
.lightbox-prev{ left:1.3rem; }
.lightbox-next{ right:1.3rem; }
@media (max-width:640px){
  .lightbox-close{ top:.6rem; right:.6rem; width:38px; height:38px; font-size:1.5rem; }
  .lightbox-nav{ width:40px; height:40px; font-size:1.7rem; }
  .lightbox-prev{ left:.4rem; }
  .lightbox-next{ right:.4rem; }
  .lightbox-stage{ padding:.5rem; }
}
/* Make the modal photo look clickable */
#pmMedia img{ cursor:zoom-in; }

/* ── Cookie banner ── */
.cookie-banner{ position:fixed; left:0; right:0; bottom:0; z-index:1500; background:var(--bg); border-top:1px solid var(--line); box-shadow:0 -6px 24px -18px rgba(58,42,32,.4); padding:1rem 1.4rem; transform:translateY(0); animation: cookieIn .35s ease-out; }
.cookie-banner.is-out{ animation: cookieOut .35s ease-out forwards; }
@keyframes cookieIn { from { transform:translateY(100%); } to { transform:translateY(0); } }
@keyframes cookieOut { from { transform:translateY(0); } to { transform:translateY(100%); } }
.cookie-inner{ max-width:1100px; margin:0 auto; display:flex; align-items:center; gap:1.4rem; flex-wrap:wrap; justify-content:space-between; }
.cookie-text{ margin:0; font-size:13.5px; color:var(--ink); flex:1; min-width:260px; line-height:1.6; }
.cookie-text a{ color:var(--burgundy); text-decoration:underline; }
.cookie-actions{ display:flex; gap:.6rem; flex-wrap:wrap; }
.cookie-actions .btn{ padding:.55rem 1.1rem; font-size:12.5px; letter-spacing:.14em; }
@media (max-width:640px){
  .cookie-inner{ flex-direction:column; align-items:stretch; gap:.9rem; }
  .cookie-actions{ justify-content:stretch; }
  .cookie-actions .btn{ flex:1; text-align:center; }
}

/* "What I make" 3-column cards — adaptive: 3 → 2 → 1 */
.cats-3{ grid-template-columns:repeat(3,1fr); }
@media (max-width:900px){ .cats-3{ grid-template-columns:1fr 1fr; } }
@media (max-width:560px){ .cats-3{ grid-template-columns:1fr; max-width:420px !important; } }
