:root{
  --cream:#FFF6E9;
  --paper:#FFFDF6;
  --burgundy:#7A1B2B;
  --rose:#FF7CA3;
  --rose-soft:#FFD3E0;
  --lavender:#B98BD8;
  --lavender-soft:#EDE0F7;
  --ink:#2E1730;
  --gold:#E7B24C;
  --gold-soft:#FCE9CE;
  --mint:#8FC1A9;
  --mint-soft:#E4F3EA;
  --sky:#8FB6E8;
  --sky-soft:#E0EBFB;
}

*{box-sizing:border-box; margin:0; padding:0;}
html{scroll-behavior:smooth;}
body{
  background:var(--cream);
  color:var(--ink);
  font-family:'Space Grotesk', sans-serif;
  overflow-x:hidden;
  background-image:radial-gradient(circle at 1px 1px, rgba(46,23,48,0.07) 1px, transparent 0);
  background-size:20px 20px;
}
.wrap{max-width:1180px; margin:0 auto; padding:0 28px;}
::selection{background:var(--rose); color:var(--ink);}

/* ---------- TOP ANNOUNCEMENT BAR ---------- */
.announce-bar{
  background:var(--burgundy); color:var(--cream);
  overflow:hidden; white-space:nowrap; position:relative; z-index:30;
  padding:9px 0;
}
.announce-track{display:inline-block; animation:scrollTicker 22s linear infinite;}
.announce-track span{
  font-family:'Space Grotesk'; font-weight:700; font-size:0.78rem; letter-spacing:0.06em;
  margin-right:36px; text-transform:uppercase;
}
@keyframes scrollTicker{0%{transform:translateX(0);} 100%{transform:translateX(-50%);}}
.announce-bar::after{
  content:''; position:absolute; left:0; right:0; bottom:-9px; height:10px;
  background-image:radial-gradient(circle at 7px 0, transparent 8px, var(--burgundy) 8.5px);
  background-size:17px 17px; background-position:-3px 0;
}
@media (prefers-reduced-motion: reduce){
  .announce-track{animation:none !important;}
}

/* ---------- NAV ---------- */
nav{
  display:flex; justify-content:space-between; align-items:center;
  padding:26px 28px 20px; position:relative; z-index:20;
}
.logo{font-family:'Fraunces', serif; font-weight:900; font-size:1.5rem; letter-spacing:-0.02em;}
.logo span{color:var(--rose); font-style:italic;}
.navlinks{display:flex; gap:28px; font-size:0.9rem; font-weight:500;}
.navlinks a{color:var(--ink); text-decoration:none; position:relative;}
.navlinks a::after{content:''; position:absolute; left:0; bottom:-4px; height:2px; width:0; background:var(--rose); transition:width .25s ease;}
.navlinks a:hover::after{width:100%;}
.join-btn{
  background:var(--ink); color:var(--paper); border:none; font-family:'Space Grotesk'; font-weight:700;
  font-size:0.82rem; padding:11px 22px; border-radius:100px; cursor:pointer; transform:rotate(-2deg);
  transition:transform .2s ease, background .2s ease;
}
.join-btn:hover{transform:rotate(0deg) scale(1.05); background:var(--rose); color:var(--ink);}

/* ---------- HERO ---------- */
.hero{position:relative; padding:50px 28px 130px; text-align:center; cursor:default;}
.hero-tag{font-family:'Caveat', cursive; font-size:1.35rem; color:var(--burgundy); font-weight:700; transform:rotate(-3deg); display:inline-block; margin-bottom:4px;}
.hero h1{font-family:'Fraunces', serif; font-weight:900; font-size:clamp(2.8rem, 8.5vw, 6.6rem); line-height:0.92; letter-spacing:-0.02em;}
.hero h1 .cut{display:inline-block; background:var(--ink); color:var(--cream); padding:0 14px; transform:rotate(-1.5deg); margin:0 4px;}
.hero h1 .italic{font-style:italic; color:var(--burgundy); font-weight:500;}
.hero p.sub{max-width:520px; margin:24px auto 0; font-size:1.02rem; line-height:1.55; color:rgba(46,23,48,0.72);}
.hero-cta{margin-top:32px; display:flex; gap:16px; justify-content:center; flex-wrap:wrap;}
.btn-primary,.btn-ghost{font-family:'Space Grotesk'; font-weight:700; font-size:0.92rem; padding:14px 28px; border-radius:100px; cursor:pointer; border:2px solid var(--ink); transition:transform .2s ease, box-shadow .2s ease;}
.btn-primary{background:var(--rose); color:var(--ink);}
.btn-ghost{background:transparent; color:var(--ink);}
.btn-primary:hover,.btn-ghost:hover{transform:translate(-2px,-2px); box-shadow:4px 4px 0 var(--ink);}

.sticker{position:absolute; pointer-events:none; user-select:none; filter:drop-shadow(1px 2px 2px rgba(46,23,48,0.25));}
.s1{top:36px; left:6%; animation:bob 5s ease-in-out infinite;}
.s2{top:110px; right:7%; animation:bob 6s ease-in-out infinite .4s;}
.s3{bottom:70px; left:11%; animation:bob 4.5s ease-in-out infinite .8s;}
.s4{bottom:30px; right:10%; animation:bob 5.5s ease-in-out infinite .2s;}
.s5{top:250px; left:2%; animation:bob 6.5s ease-in-out infinite 1s;}
@keyframes bob{0%,100%{transform:translateY(0) rotate(var(--r,0deg));} 50%{transform:translateY(-12px) rotate(var(--r,0deg));}}

#cursor-sticker{position:absolute; font-size:1.6rem; pointer-events:none; z-index:15; transition:transform .08s linear; opacity:0;}

/* ---------- SECTION LABEL ---------- */
.section-label{display:flex; align-items:center; gap:14px; margin-bottom:40px;}
.section-label .tape{background:var(--gold); padding:6px 18px; transform:rotate(-2deg); font-family:'Caveat'; font-size:1.3rem; font-weight:700; box-shadow:2px 2px 0 rgba(46,23,48,0.2); color:var(--ink);}
.section-label h2{font-family:'Fraunces', serif; font-weight:900; font-size:2.1rem;}
.section-label .line{flex:1; height:2px; background:repeating-linear-gradient(90deg, var(--ink) 0 8px, transparent 8px 14px);}
.hint{font-family:'Caveat'; font-size:1.1rem; color:var(--burgundy); text-align:center; margin-top:-24px; margin-bottom:44px; font-weight:700;}

/* ---------- LIST ID CARDS ---------- */
.lists{padding:100px 0 40px;}
.card-grid{
  display:grid;
  grid-template-columns:repeat(6, 1fr);
  gap:32px 24px;
  max-width:960px;
  margin:0 auto;
}
.card-grid .p1{grid-column:1 / span 2;}
.card-grid .p2{grid-column:3 / span 2;}
.card-grid .p3{grid-column:5 / span 2;}
.card-grid .p4{grid-column:2 / span 2;}
.card-grid .p5{grid-column:4 / span 2;}

.card-flip{perspective:1200px; cursor:pointer; width:100%;}
.card-inner{position:relative; width:100%; transition:transform .6s cubic-bezier(.4,.2,.2,1); transform-style:preserve-3d;}
.card-flip:hover .card-inner, .card-flip:focus-within .card-inner{transform:rotateY(180deg);}
.card-face{backface-visibility:hidden; -webkit-backface-visibility:hidden; border-radius:14px; border:2px solid var(--ink); overflow:hidden; display:flex; flex-direction:column;}
.card-front{position:relative; background:var(--paper); box-shadow:0 8px 0 rgba(46,23,48,0.12); width:100%;}
.id-eyebrow{display:flex; justify-content:space-between; align-items:center; padding:10px 14px; font-size:0.62rem; font-weight:700; letter-spacing:0.08em; text-transform:uppercase; border-bottom:2px dashed rgba(46,23,48,0.25); background:var(--paper);}
.id-photo{width:100%; aspect-ratio:819 / 1024; position:relative; overflow:hidden; display:block;}
.id-photo img{width:100%; height:100%; object-fit:cover; display:block;}
.p1 .id-photo{background:rgb(140,61,56);}
.p2 .id-photo{background:rgb(196,218,231);}
.p3 .id-photo{background:rgb(133,45,43);}
.p4 .id-photo{background:rgb(219,130,146);}
.p5 .id-photo{background:rgb(131,152,90);}
.id-photo .stickers{font-size:2.3rem; display:flex; gap:6px;}
.id-photo .stickers span:nth-child(1){transform:rotate(-10deg);}
.id-photo .stickers span:nth-child(2){transform:translateY(-6px) rotate(4deg); font-size:2.7rem;}
.id-photo .stickers span:nth-child(3){transform:rotate(9deg);}
.id-photo .corner-star{position:absolute; top:8px; right:10px; font-size:1rem; color:var(--gold); filter:drop-shadow(0 1px 2px rgba(0,0,0,0.4)); z-index:2;}
.id-photo .corner-star.bl{top:auto; bottom:8px; left:10px; right:auto;}
.id-caption{padding:14px; text-align:center; border-top:2px dashed rgba(46,23,48,0.2); background:var(--paper);}
.id-caption h3{font-family:'Fraunces', serif; font-weight:700; font-size:1.15rem; margin:0; line-height:1.2;}
.id-caption small{display:block; font-family:'Space Grotesk'; font-weight:500; font-size:0.68rem; color:rgba(46,23,48,0.55); margin-top:3px; letter-spacing:0.04em;}
.card-back{position:absolute; inset:0; width:100%; height:100%; background:var(--ink); color:var(--cream); transform:rotateY(180deg); align-items:center; justify-content:center; text-align:center; padding:24px; gap:14px;}
.card-back .stamp{border:2px solid var(--gold); color:var(--gold); border-radius:50%; width:64px; height:64px; display:flex; align-items:center; justify-content:center; font-family:'Caveat'; font-weight:700; font-size:0.85rem; transform:rotate(-14deg); line-height:1.05;}
.card-back h4{font-family:'Fraunces', serif; font-size:1.3rem; margin-top:12px; font-weight:700;}
.card-back p{font-size:0.8rem; color:rgba(255,246,233,0.7); margin-top:8px; max-width:180px;}
.card-back .view{margin-top:16px; font-size:0.78rem; font-weight:700; border-bottom:2px solid var(--rose); padding-bottom:2px;}

@media (max-width:960px){
  .card-grid{grid-template-columns:repeat(2, 1fr); max-width:640px;}
  .card-grid .p1, .card-grid .p2, .card-grid .p3, .card-grid .p4{grid-column:auto;}
  .card-grid .p5{grid-column:1 / -1; max-width:308px; width:100%; margin:0 auto;}
}
@media (max-width:640px){
  .card-grid{grid-template-columns:1fr; max-width:320px;}
  .card-grid .p1, .card-grid .p2, .card-grid .p3, .card-grid .p4, .card-grid .p5{grid-column:auto; max-width:100%;}
}

/* ---------- AFFIRMATION TILES (whimsical) ---------- */
.affirm{padding:20px 0 100px; text-align:center;}
.affirm-grid{display:flex; justify-content:center; gap:20px; flex-wrap:wrap; margin-bottom:34px;}
.affirm-tile{
  width:68px; height:68px; border-radius:50%; border:2px dashed var(--ink);
  font-size:1.7rem; cursor:pointer; position:relative;
  transform:rotate(var(--rot,0deg));
  animation:tileBob 4.5s ease-in-out infinite;
  animation-delay:var(--delay,0s);
  transition:box-shadow .2s ease;
  box-shadow:3px 3px 0 rgba(46,23,48,0.12);
}
@keyframes tileBob{0%,100%{transform:translateY(0) rotate(var(--rot,0deg));} 50%{transform:translateY(-9px) rotate(var(--rot,0deg));}}
.affirm-tile:hover{animation-play-state:paused; box-shadow:5px 5px 0 rgba(46,23,48,0.2);}
.affirm-tile.tapped{box-shadow:0 0 0 3px var(--gold);}
.a1{background:var(--rose-soft);}
.a2{background:var(--sky-soft);}
.a3{background:var(--gold-soft);}
.a4{background:var(--mint-soft);}
.a5{background:var(--lavender-soft);}
.a6{background:var(--paper);}
.affirm-bubble{
  position:relative; max-width:440px; margin:0 auto; background:var(--paper); border:2px solid var(--ink);
  border-radius:20px; padding:20px 28px; font-family:'Caveat'; font-weight:700; font-size:1.35rem;
  color:var(--burgundy); box-shadow:4px 4px 0 rgba(46,23,48,0.15); transition:transform .15s ease;
}
.affirm-bubble::before, .affirm-bubble::after{
  content:''; position:absolute; left:50%; transform:translateX(-50%); width:0; height:0;
  border-left:13px solid transparent; border-right:13px solid transparent;
}
.affirm-bubble::after{bottom:-15px; border-top:15px solid var(--ink);}
.affirm-bubble::before{bottom:-11px; border-top:12px solid var(--paper); z-index:1;}

/* ---------- QUIZ GAME ---------- */
.gingham-band{
  margin:90px 0; padding:70px 28px; position:relative;
  background:
    repeating-linear-gradient(0deg, rgba(122,27,43,0.14) 0 24px, transparent 24px 48px),
    repeating-linear-gradient(90deg, rgba(122,27,43,0.14) 0 24px, transparent 24px 48px),
    var(--paper);
}
.quiz-card{max-width:560px; margin:0 auto; background:var(--paper); border:2px solid var(--ink); border-radius:18px; padding:38px 34px; box-shadow:6px 6px 0 var(--ink); position:relative; min-height:340px;}
.quiz-eyebrow{font-family:'Caveat'; font-size:1.3rem; font-weight:700; color:var(--burgundy); text-align:center; margin:0;}
.quiz-dots{display:flex; gap:8px; justify-content:center; margin:12px 0 26px;}
.quiz-dots span{width:9px; height:9px; border-radius:50%; background:rgba(46,23,48,0.18); transition:background .2s ease, transform .2s ease;}
.quiz-dots span.active{background:var(--burgundy); transform:scale(1.2);}
.quiz-dots span.done{background:var(--mint);}
.quiz-q{font-family:'Fraunces', serif; font-weight:700; font-size:1.4rem; text-align:center; margin-bottom:22px; min-height:62px; display:flex; align-items:center; justify-content:center;}
.quiz-options{display:grid; gap:12px;}
.quiz-opt{
  font-family:'Space Grotesk'; font-size:0.95rem; text-align:left; padding:14px 18px;
  border:2px solid var(--ink); border-radius:100px; background:var(--paper); cursor:pointer;
  transition:transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.quiz-opt:hover{transform:translate(-2px,-2px); box-shadow:3px 3px 0 var(--ink); background:var(--rose-soft);}
.quiz-result{display:none; text-align:center;}
.quiz-result.show{display:block;}
.quiz-question-screen.hide{display:none;}
.quiz-result .stickers{font-size:2.6rem; display:flex; justify-content:center; gap:10px; margin-bottom:6px;}
.quiz-result .stickers span:nth-child(2){font-size:3.1rem; transform:translateY(-6px);}
.quiz-result h3{font-family:'Fraunces', serif; font-weight:900; font-size:1.8rem;}
.quiz-result p{font-size:0.92rem; color:rgba(46,23,48,0.68); margin:10px auto 22px; max-width:380px;}
.quiz-result form{display:flex; gap:10px; justify-content:center; flex-wrap:wrap; margin-bottom:14px;}
.quiz-result input{font-family:'Space Grotesk'; padding:13px 16px; border-radius:100px; border:2px solid var(--ink); min-width:210px; font-size:0.9rem;}
.quiz-retake{background:none; border:none; text-decoration:underline; font-family:'Space Grotesk'; font-size:0.82rem; cursor:pointer; color:var(--ink); opacity:0.65;}
.quiz-result .sent-msg{font-family:'Caveat'; font-size:1.1rem; font-weight:700; color:var(--mint); opacity:0; transition:opacity .3s ease;}
.quiz-result .sent-msg.show{opacity:1;}

/* ---------- BLOG ---------- */
.blog{padding:0 0 100px;}
.blog-grid{display:grid; grid-template-columns:repeat(auto-fit, minmax(260px,1fr)); gap:26px;}
.blog-card{background:var(--paper); border:2px solid var(--ink); border-radius:10px; padding:24px; transition:transform .2s ease, box-shadow .2s ease;}
.blog-card:hover{transform:translate(-3px,-3px); box-shadow:5px 5px 0 var(--mint);}
.blog-card .eyebrow{font-family:'Caveat'; color:var(--burgundy); font-size:1.1rem; font-weight:700;}
.blog-card h3{font-family:'Fraunces', serif; font-weight:700; font-size:1.25rem; margin:8px 0 10px;}
.blog-card p{font-size:0.88rem; color:rgba(46,23,48,0.68); line-height:1.5;}

/* ---------- NEWSLETTER POSTCARD ---------- */
.postcard-wrap{padding:0 0 120px; display:flex; justify-content:center;}
.postcard{background:var(--paper); border:2px dashed var(--ink); border-radius:8px; max-width:640px; width:100%; padding:44px; text-align:center; position:relative; transform:rotate(-1deg);}
.postcard::before{content:'✦ FIRST CLASS ✦'; position:absolute; top:16px; right:20px; border:2px solid var(--ink); border-radius:50%; width:76px; height:76px; display:flex; align-items:center; justify-content:center; text-align:center; font-size:0.52rem; font-weight:700; transform:rotate(12deg); line-height:1.2; letter-spacing:0.03em;}
.postcard h2{font-family:'Fraunces', serif; font-weight:900; font-size:1.9rem;}
.postcard p{margin:12px 0 24px; color:rgba(46,23,48,0.68);}
.postcard form{display:flex; gap:10px; justify-content:center; flex-wrap:wrap;}
.postcard input{font-family:'Space Grotesk'; padding:14px 18px; border-radius:100px; border:2px solid var(--ink); min-width:230px; font-size:0.93rem;}
.postcard input:focus{outline:3px solid var(--sky); outline-offset:2px;}
.postcard .sent-msg{margin-top:14px; font-family:'Caveat'; font-size:1.2rem; font-weight:700; color:var(--mint); opacity:0; transform:translateY(6px); transition:all .35s ease;}
.postcard .sent-msg.show{opacity:1; transform:translateY(0);}

.confetti{position:fixed; width:9px; height:9px; top:-20px; z-index:99; pointer-events:none; border-radius:2px;}

/* ---------- FOOTER ---------- */
footer{background:var(--ink); color:var(--cream); padding:70px 28px 0; margin-top:20px;}
.footer-grid{max-width:1180px; margin:0 auto; display:grid; grid-template-columns:1.4fr 1fr 1fr; gap:40px; padding-bottom:50px; border-bottom:1px solid rgba(255,246,233,0.15);}
.footer-brand .logo{color:var(--cream);}
.footer-brand .logo span{color:var(--rose);}
.footer-brand p{font-size:0.88rem; color:rgba(255,246,233,0.65); margin:14px 0 20px; max-width:280px; line-height:1.5;}
.footer-socials{display:flex; gap:12px;}
.footer-socials a{
  width:38px; height:38px; border-radius:50%; border:1px solid rgba(255,246,233,0.3);
  display:flex; align-items:center; justify-content:center; color:var(--cream); text-decoration:none;
  font-size:0.95rem; transition:background .2s ease, transform .2s ease;
}
.footer-socials a:hover{background:var(--rose); color:var(--ink); transform:translateY(-3px);}
.footer-col h3{font-family:'Space Grotesk'; font-size:0.78rem; letter-spacing:0.08em; text-transform:uppercase; color:var(--rose); margin-bottom:16px; font-weight:700;}
.footer-col a{display:block; color:rgba(255,246,233,0.75); text-decoration:none; font-size:0.9rem; margin-bottom:11px; transition:color .15s ease;}
.footer-col a:hover{color:var(--cream);}
.footer-bottom{max-width:1180px; margin:0 auto; display:flex; justify-content:space-between; align-items:center; padding:22px 0; font-size:0.78rem; color:rgba(255,246,233,0.5); flex-wrap:wrap; gap:10px;}
@media (max-width:720px){.footer-grid{grid-template-columns:1fr;}}

@media (max-width:640px){
  .navlinks{display:none;}
  .sticker{display:none;}
  #cursor-sticker{display:none;}
}
@media (prefers-reduced-motion: reduce){
  .sticker, #cursor-sticker, .affirm-tile{animation:none !important;}
  .card-inner{transition:none;}
}

/* ---------- CLEAN CURATED LIST PAGE STYLING ---------- */
.clean-page-header{
  padding: 40px 0 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.clean-header-title-row{
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.clean-header-title-row h1{
  font-family: 'Fraunces', serif;
  font-weight: 900;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1;
  color: var(--ink);
}
.clean-header-title-row h1 span{
  color: var(--burgundy);
  font-style: italic;
}
.clean-page-header p{
  font-size: 1rem;
  color: rgba(46,23,48,0.7);
  max-width: 560px;
  line-height: 1.5;
}

/* Clean Minimal Outfit Cards */
.outfits-section{
  padding: 10px 0 80px;
}
.outfits-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 32px 26px;
  max-width: 1020px;
  margin: 0 auto;
}
.outfit-card{
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 6px 6px 0 var(--ink);
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
  cursor: pointer;
  position: relative;
}
.outfit-card:hover{
  transform: translateY(-6px);
  box-shadow: 9px 9px 0 var(--burgundy);
}
.outfit-card-header{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px;
  background: var(--paper);
  border-bottom: 2px dashed rgba(46,23,48,0.25);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.outfit-card-header .outfit-badge{
  background: var(--gold-soft);
  color: var(--ink);
  padding: 3px 9px;
  border-radius: 100px;
  border: 1px solid var(--ink);
  font-size: 0.62rem;
  font-weight: 700;
}
.outfit-card-preview{
  position: relative;
  width: 100%;
  aspect-ratio: 819 / 1024;
  overflow: hidden;
  background: #FFFDF6;
  display: flex;
  align-items: center;
  justify-content: center;
}
.outfit-card-preview img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.outfit-card-overlay{
  position: absolute;
  inset: 0;
  background: rgba(46,23,48,0.35);
  backdrop-filter: blur(2px);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .25s ease;
}
.outfit-card:hover .outfit-card-overlay{
  opacity: 1;
}
.outfit-card-overlay span{
  background: var(--paper);
  color: var(--ink);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  padding: 9px 18px;
  border-radius: 100px;
  border: 2px solid var(--ink);
  box-shadow: 2px 2px 0 var(--ink);
}

.outfit-card-caption{
  padding: 14px 16px;
  text-align: center;
  background: var(--paper);
  border-top: 2px dashed rgba(46,23,48,0.2);
}
.outfit-card-caption h3{
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.15rem;
  margin: 0;
  color: var(--ink);
}

/* Upcoming Outfit Cards */
.outfit-card.upcoming{
  border: 2px dashed var(--ink);
  background: rgba(255, 253, 246, 0.75);
}
.outfit-card.upcoming .outfit-card-preview{
  background: repeating-linear-gradient(45deg, #FFFDF6, #FFFDF6 14px, #FCE9CE 14px, #FCE9CE 28px);
}
.upcoming-placeholder{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  padding: 24px;
}
.upcoming-placeholder .icon{
  font-size: 3.2rem;
  filter: drop-shadow(0 2px 4px rgba(46,23,48,0.15));
}
.upcoming-placeholder h4{
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.2rem;
}
.upcoming-placeholder p{
  font-size: 0.84rem;
  color: rgba(46,23,48,0.65);
  max-width: 220px;
  line-height: 1.4;
}

/* ---------- MODAL POPUP ---------- */
.modal-backdrop{
  position: fixed;
  inset: 0;
  background: rgba(46, 23, 48, 0.75);
  backdrop-filter: blur(6px);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.modal-backdrop.open{
  opacity: 1;
  pointer-events: auto;
}
.modal-container{
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 24px;
  box-shadow: 10px 10px 0 var(--ink);
  width: 100%;
  max-width: 980px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: scale(0.95) translateY(12px);
  transition: transform .3s cubic-bezier(.34, 1.56, .64, 1);
  display: flex;
  flex-direction: column;
}
.modal-backdrop.open .modal-container{
  transform: scale(1) translateY(0);
}
.modal-header{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 28px;
  border-bottom: 2px dashed rgba(46,23,48,0.25);
  position: sticky;
  top: 0;
  background: var(--paper);
  z-index: 10;
}
.modal-header-title{
  display: flex;
  align-items: center;
  gap: 12px;
}
.modal-header h2{
  font-family: 'Fraunces', serif;
  font-weight: 900;
  font-size: 1.5rem;
  margin: 0;
}
.modal-close-btn{
  background: var(--ink);
  color: var(--cream);
  border: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .2s ease, background .2s ease;
}
.modal-close-btn:hover{
  background: var(--rose);
  color: var(--ink);
  transform: rotate(90deg) scale(1.1);
}

.modal-body{
  padding: 28px;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 32px;
  align-items: start;
}
.modal-image-wrapper{
  position: relative;
  border-radius: 16px;
  border: 2px solid var(--ink);
  overflow: hidden;
  box-shadow: 6px 6px 0 var(--burgundy);
  background: #FFFDF6;
}
.modal-image-wrapper img{
  width: 100%;
  height: auto;
  display: block;
}

/* Hotspot Pills on Collage */
.hotspot-tag{
  position: absolute;
  background: var(--paper);
  color: var(--ink);
  border: 1.5px solid var(--ink);
  border-radius: 100px;
  padding: 4px 12px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 2px 2px 0 var(--ink);
  transition: all .2s ease;
  display: flex;
  align-items: center;
  gap: 4px;
  z-index: 5;
  cursor: pointer;
}
.hotspot-tag:hover{
  background: var(--rose);
  transform: scale(1.08) translate(-1px, -1px);
  box-shadow: 4px 4px 0 var(--ink);
}

/* Modal Pieces List */
.modal-pieces-list{
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.modal-piece-item{
  background: var(--cream);
  border: 2px solid var(--ink);
  border-radius: 14px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.modal-piece-item:hover{
  transform: translateX(4px);
  box-shadow: 4px 4px 0 var(--ink);
  background: var(--paper);
}
.piece-meta{
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
}
.piece-icon-box{
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1.5px solid var(--ink);
  background: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.piece-text{
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.piece-tag-name{
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--burgundy);
}
.piece-title{
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
  margin: 0;
}
.piece-store{
  font-size: 0.72rem;
  color: rgba(46,23,48,0.6);
}
.piece-link-btn{
  background: var(--ink);
  color: var(--paper);
  text-decoration: none;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  padding: 9px 16px;
  border-radius: 8px;
  border: 1.5px solid var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  transition: all .2s ease;
  flex-shrink: 0;
}
.piece-link-btn:hover{
  background: var(--rose);
  color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 2px 2px 0 var(--ink);
}

@media (max-width: 900px){
  .list-hero-grid{grid-template-columns: 1fr;}
  .list-hero-preview{order: -1;}
  .list-hero-img-wrap{max-width: 240px;}
}
@media (max-width: 820px){
  .modal-body{grid-template-columns: 1fr;}
  .modal-image-wrapper{max-width: 360px; margin: 0 auto;}
}
@media (max-width: 600px){
  .modal-piece-item{flex-direction: column; align-items: stretch;}
  .piece-link-btn{text-align: center; justify-content: center;}
}

/* ---------- MINIMAL COMING SOON / COOKING SECTION ---------- */
.minimal-cooking-box{
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 20px;
  box-shadow: 6px 6px 0 var(--ink);
  padding: 54px 32px;
  text-align: center;
  max-width: 620px;
  margin: 36px auto 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.minimal-cooking-box .cooking-icon{
  font-size: 2.6rem;
  line-height: 1;
}
.minimal-cooking-box h2{
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(1.7rem, 3.5vw, 2.3rem);
  color: var(--ink);
  margin: 0;
  line-height: 1.2;
}
.minimal-cooking-box h2 span{
  font-style: italic;
  color: var(--rose);
}
.minimal-cooking-box p{
  font-size: 0.98rem;
  color: rgba(46,23,48,0.72);
  max-width: 480px;
  line-height: 1.6;
  margin: 0;
}
.minimal-cooking-box .cooking-actions{
  display: flex;
  gap: 12px;
  margin-top: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ---------- ARTICLE & EDITORIAL DETAIL PAGES ---------- */
.article-container{
  max-width: 1040px;
  margin: 0 auto;
  padding: 36px 24px 80px;
}
.article-back-link{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: all .2s ease;
  margin-bottom: 20px;
}
.article-back-link:hover{
  border-bottom-color: var(--burgundy);
  transform: translateX(-3px);
}
.article-header{
  margin-bottom: 24px;
}
.article-badge-row{
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.article-read-time{
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(46,23,48,0.55);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.article-header h1{
  font-family: 'Fraunces', serif;
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 2.9rem);
  line-height: 1.15;
  color: var(--ink);
  margin: 0 0 12px;
}
.article-header h1 span{
  font-style: italic;
  color: var(--rose);
}
.article-deck{
  font-size: 1.08rem;
  line-height: 1.6;
  color: rgba(46,23,48,0.8);
  margin: 0 0 16px;
  font-weight: 500;
}
.article-meta{
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  padding: 10px 0;
  border-top: 2px dashed rgba(46,23,48,0.2);
  border-bottom: 2px dashed rgba(46,23,48,0.2);
  font-size: 0.8rem;
  color: rgba(46,23,48,0.6);
  font-weight: 600;
  flex-wrap: wrap;
}

/* 2-Column Split Editorial Grid */
.article-layout-grid{
  display: grid;
  grid-template-columns: minmax(0, 1fr) 290px;
  gap: 40px;
  align-items: start;
  margin-top: 28px;
}
.article-main-col{
  min-width: 0;
}
.article-sidebar-col{
  position: sticky;
  top: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.article-side-card{
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 16px;
  padding: 12px 12px 16px;
  box-shadow: 5px 5px 0 var(--ink);
  width: 100%;
  max-width: 290px;
  text-align: center;
  transform: rotate(1deg);
  transition: transform .25s ease, box-shadow .25s ease;
}
.article-side-card:hover{
  transform: rotate(0deg) scale(1.01);
  box-shadow: 7px 7px 0 var(--ink);
}
.article-side-card .img-frame{
  border-radius: 10px;
  border: 1.5px solid var(--ink);
  overflow: hidden;
  height: 310px;
  width: 100%;
  background: #FFFDF6;
  display: flex;
  align-items: center;
  justify-content: center;
}
.article-side-card .img-frame img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.article-side-card .caption{
  font-family: 'Caveat', cursive;
  font-size: 1.12rem;
  color: var(--ink);
  text-align: center;
  margin-top: 10px;
  line-height: 1.3;
}

.article-body{
  font-size: 1.02rem;
  line-height: 1.76;
  color: rgba(46,23,48,0.88);
}
.article-body p{
  margin: 0 0 1.35rem;
}
.article-body h2{
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.55rem;
  color: var(--ink);
  margin: 2.2rem 0 0.8rem;
  line-height: 1.25;
}
.article-body h3{
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--ink);
  margin: 1.6rem 0 0.6rem;
}
.article-quote{
  background: var(--cream);
  border-left: 4px solid var(--burgundy);
  border-radius: 0 14px 14px 0;
  padding: 20px 24px;
  margin: 1.8rem 0;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.5;
  color: var(--ink);
  box-shadow: 2px 2px 0 rgba(46,23,48,0.06);
}
.article-quote span{
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-style: normal;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-top: 8px;
}
.style-formula-card{
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 14px;
  padding: 22px 24px;
  box-shadow: 4px 4px 0 var(--gold);
  margin: 2rem 0;
}
.style-formula-card h4{
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  margin: 0 0 10px;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 8px;
}
.style-formula-card ul{
  margin: 0;
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.92rem;
}

.article-cta-banner{
  background: var(--ink);
  color: var(--cream);
  border-radius: 16px;
  padding: 26px 30px;
  margin: 3.5rem 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  box-shadow: 4px 4px 0 var(--rose);
}
.article-cta-text h3{
  font-family: 'Fraunces', serif;
  font-size: 1.3rem;
  color: var(--cream);
  margin: 0 0 4px;
}
.article-cta-text p{
  font-size: 0.88rem;
  color: rgba(255,246,233,0.75);
  margin: 0;
}
.more-articles-section{
  margin-top: 50px;
  border-top: 2px dashed rgba(46,23,48,0.25);
  padding-top: 36px;
}
.more-articles-section h3{
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  margin: 0 0 22px;
}

@media (max-width: 860px){
  .article-layout-grid{
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .article-sidebar-col{
    position: static;
    max-width: 280px;
    margin: 0 auto 10px;
    width: 100%;
    order: -1;
  }
  .article-side-card .img-frame{
    height: 280px;
  }
}



