:root{
  --maroon:#461220;
  --cashmire:#cfbfb5;
  --paper:#fafaf8;
  --gray:#61676d;
  --ink:#1c1a1a;
  --charcoal:#2a2422; /* warm charcoal — used instead of pure black for dark UI chrome like the cookie banner */
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  background:var(--paper);
  color:var(--ink);
  font-family:'Inter',sans-serif;
  font-size:16px;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}

a{color:inherit;text-decoration:none;}
img{max-width:100%;display:block;}

a:focus-visible, button:focus-visible, input:focus-visible{
  outline:2px solid var(--maroon);
  outline-offset:3px;
}

.wrap{
  max-width:1180px;
  margin:0 auto;
  padding:0 32px;
}

/* ---------- header ---------- */
.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(250,250,248,0.92);
  backdrop-filter:saturate(180%) blur(8px);
  border-bottom:1px solid rgba(70,18,32,0.08);
}
.header-inner{
  max-width:1180px;
  margin:0 auto;
  padding:18px 32px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.brand{
  font-family:'Playfair Display',serif;
  font-size:22px;
  letter-spacing:3px;
  font-weight:700;
  color:var(--maroon);
}
nav.primary-nav ul{
  display:flex;
  gap:28px;
  list-style:none;
  margin:0;
  padding:0;
}
nav.primary-nav a{
  font-size:13px;
  letter-spacing:0.5px;
  text-transform:uppercase;
  color:var(--ink);
  padding:4px 0;
  border-bottom:1px solid transparent;
  transition:border-color 0.2s ease, color 0.2s ease;
}
nav.primary-nav a:hover{
  color:var(--maroon);
  border-bottom-color:var(--cashmire);
}
nav.primary-nav a.is-active{
  color:var(--maroon);
  border-bottom-color:var(--maroon);
}

@media (max-width:880px){
  nav.primary-nav{display:none;}
  .nav-toggle{display:flex;}
}

/* ---------- buttons ---------- */
.hero-cta{
  display:inline-flex;
  align-items:center;
  gap:10px;
  margin-top:36px;
  padding:14px 28px;
  border:1px solid var(--cashmire);
  border-radius:2px;
  color:var(--paper);
  font-size:13px;
  letter-spacing:1.5px;
  text-transform:uppercase;
  transition:background 0.25s ease, color 0.25s ease, transform 0.15s ease;
}
.hero-cta:hover{
  background:var(--cashmire);
  color:var(--maroon);
}
.hero-cta:active{
  transform:scale(0.97);
}
.hero-cta--ghost{
  border-color:transparent;
  background:none;
  font-family:inherit;
  cursor:pointer;
  text-decoration:underline;
  text-underline-offset:5px;
}
.hero-cta--ghost:hover{
  background:none !important;
  color:var(--cashmire) !important;
}

/* btn: dark-on-light variant, for use on white/paper backgrounds */
.btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:13px 26px;
  border:1px solid var(--maroon);
  border-radius:2px;
  color:var(--maroon);
  font-size:13px;
  letter-spacing:1.5px;
  text-transform:uppercase;
  background:none;
  font-family:inherit;
  cursor:pointer;
  transition:background 0.25s ease, color 0.25s ease, transform 0.15s ease;
}
.btn:hover{background:var(--maroon);color:var(--paper);}
.btn:active{transform:scale(0.97);}
.btn--ghost{border-color:transparent;text-decoration:underline;text-underline-offset:5px;}
.btn--ghost:hover{background:none !important;color:var(--maroon) !important;}

/* ---------- hero mosaic ---------- */
.hero{
  position:relative;
  min-height:86vh;
  display:flex;
  align-items:flex-end;
  overflow:hidden;
}
/* The mosaic sits behind the gradient overlay */
.hero-mosaic{
  position:absolute;
  inset:0;
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:3px;
  will-change:transform;
}
.hero-mosaic-col{
  display:flex;
  flex-direction:column;
  gap:3px;
  opacity:0;
  transform:scale(0.96);
  transition:opacity 0.9s ease, transform 0.9s ease;
}
.hero-mosaic-col.is-visible{opacity:1;transform:scale(1);}
/* Stagger each column's entrance */
.hero-mosaic-col:nth-child(1){transition-delay:0.0s;}
.hero-mosaic-col:nth-child(2){transition-delay:0.15s;}
.hero-mosaic-col:nth-child(3){transition-delay:0.3s;}
.hero-mosaic-col:nth-child(4){transition-delay:0.45s;}
.hero-mosaic-col:nth-child(5){transition-delay:0.6s;}
.hero-mosaic-col:nth-child(6){transition-delay:0.75s;}
/* Columns have slightly different heights to break the grid monotony */
.hero-mosaic-col:nth-child(odd){padding-top:5%;}
.hero-mosaic-col:nth-child(even){padding-top:0;}
.hero-mosaic-col img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  flex:1;
  min-height:0;
}
/* The gradient overlay sits above the mosaic and below the text */
.hero-overlay{
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 75% 20%, rgba(207,191,181,0.35), transparent 55%),
    linear-gradient(155deg, rgba(44,11,20,0.92) 0%, rgba(70,18,32,0.88) 55%, rgba(90,26,43,0.85) 100%);
  z-index:1;
}
.hero-inner{
  position:relative;
  z-index:2;
  max-width:1180px;
  margin:0 auto;
  padding:0 32px 72px;
  width:100%;
  /* text appears after the first column has settled */
  animation:heroIn 1s ease 0.5s both;
}
/* On mobile collapse the mosaic to 3 columns */
@media (max-width:760px){
  .hero-mosaic{grid-template-columns:repeat(3,1fr);}
  .hero-mosaic-col:nth-child(n+4){display:none;}
}
/* Per-column subject positioning so each face/action is visible in its sliver */
.hero-mosaic-col:nth-child(1) img{ object-position:65% center; } /* presenter: right of frame */
.hero-mosaic-col:nth-child(2) img{ object-position:60% top; }    /* wfh: woman upper right */
.hero-mosaic-col:nth-child(3) img{ object-position:center center; } /* surgeon: centered */
.hero-mosaic-col:nth-child(4) img{ object-position:60% center; }  /* multitasker: face right */
.hero-mosaic-col:nth-child(5) img{ object-position:45% center; }  /* executive: face center-left */
.hero-mosaic-col:nth-child(6) img{ object-position:60% center; }  /* scientist: subject right */
.eyebrow{
  font-size:13px;
  letter-spacing:2px;
  text-transform:uppercase;
  color:var(--cashmire);
  margin-bottom:18px;
}
.hero h1{
  margin:0 0 28px;
  color:var(--paper);
  font-family:'Playfair Display',serif;
  font-weight:700;
  line-height:0.98;
}
.hero .masthead{
  display:block;
  font-size:clamp(64px,11vw,128px);
  letter-spacing:4px;
}
.hero .tagline{
  display:block;
  font-family:'Playfair Display',serif;
  font-style:italic;
  font-weight:400;
  font-size:clamp(18px,2.4vw,26px);
  letter-spacing:0;
  max-width:560px;
  margin-top:22px;
  line-height:1.45;
  color:rgba(250,250,248,0.92);
}

/* ---------- sub-page hero (Magazine, The Women, Insights, etc.) ---------- */
.page-hero{
  position:relative;
  min-height:44vh;
  display:flex;
  align-items:flex-end;
  overflow:hidden;
  background:
    radial-gradient(circle at 75% 20%, rgba(207,191,181,0.4), transparent 60%),
    linear-gradient(155deg, #2c0b14 0%, var(--maroon) 55%, #5a1a2b 100%);
}
.page-hero-inner{
  position:relative;
  z-index:2;
  max-width:1180px;
  margin:0 auto;
  padding:0 32px 52px;
  width:100%;
  animation:heroIn 1s ease both;
}
.page-hero h1{
  font-family:'Playfair Display',serif;
  font-weight:700;
  color:var(--paper);
  font-size:clamp(34px,5vw,56px);
  margin:0 0 14px;
  line-height:1.05;
}
.page-hero p{
  font-family:'Playfair Display',serif;
  font-style:italic;
  color:rgba(250,250,248,0.9);
  max-width:560px;
  font-size:clamp(16px,1.8vw,20px);
  margin:0;
  line-height:1.5;
}

@keyframes heroIn{
  from{opacity:0;transform:translateY(20px);}
  to{opacity:1;transform:translateY(0);}
}

/* ---------- section scaffolding ---------- */
section{padding:104px 0;}
.section-head{
  margin-bottom:56px;
  max-width:620px;
}
.kicker{
  font-size:13px;
  letter-spacing:2px;
  text-transform:uppercase;
  color:var(--maroon);
  margin-bottom:14px;
  display:block;
}
.section-head h2{
  font-family:'Playfair Display',serif;
  font-weight:600;
  font-size:clamp(28px,3.6vw,40px);
  margin:0;
  line-height:1.15;
}
.rule{
  border:none;
  height:1px;
  background:var(--cashmire);
  margin:0;
}
/* Dynamic "breathing" rule — oscillates between roughly 80% and 20% of the
   width of a headline like "Built with Both Hands" set in this layout. */
.rule--dynamic{
  background:var(--maroon);
  width:176px;
  animation:ruleBreathe 3.6s ease-in-out infinite alternate;
}
@keyframes ruleBreathe{
  0%   { width:176px; } /* ~80% */
  100% { width:44px;  } /* ~20% */
}

/* ---------- shared card hover utilities ----------
   Apply `gloss` to any photo placeholder for the diagonal sweep,
   `redraw-rule` to any divider that should shrink-and-redraw, and
   wrap the whole card in an `a.card-link` so titles turn maroon and
   both effects fire together. Used by Insights, Magazine issue
   tiles, and The Women profile cards. */
.card-link{display:block;}
.card-link:hover h3{color:var(--maroon);}
.gloss{position:relative;overflow:hidden;}
.gloss::after{
  content:'';
  position:absolute;
  top:0;
  left:-60%;
  width:40%;
  height:100%;
  background:linear-gradient(115deg, transparent 20%, rgba(255,255,255,0.5) 50%, transparent 80%);
  transform:skewX(-20deg);
  transition:left 0.7s ease;
}
.card-link:hover .gloss::after{left:130%;}
.redraw-rule{position:relative;}
.redraw-rule::before{
  content:'';
  position:absolute;
  top:0;
  left:0;
  height:1px;
  width:100%;
  background:var(--cashmire);
  transform-origin:left center;
}
@keyframes ruleShrinkGrow{
  0%{transform:scaleX(1);}
  45%{transform:scaleX(0.2);}
  100%{transform:scaleX(1);}
}
.card-link:hover .redraw-rule::before{animation:ruleShrinkGrow 0.9s ease;}

/* ---------- brand narrative section ---------- */
.brand-section{background:var(--paper);}
.brand-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:64px;
  align-items:center;
}
.brand-copy h2{
  font-family:'Playfair Display',serif;
  font-weight:600;
  font-size:clamp(26px,3.2vw,36px);
  line-height:1.25;
  margin:14px 0 22px;
}
.brand-copy p{
  color:var(--gray);
  font-size:15px;
  margin:0 0 14px;
  max-width:480px;
}
.brand-photo{
  aspect-ratio:4/5;
  background:var(--cashmire);
  border-radius:2px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:rgba(70,18,32,0.55);
  font-size:12px;
  letter-spacing:1px;
  text-transform:uppercase;
}
@media (max-width:860px){
  .brand-grid{grid-template-columns:1fr;gap:32px;}
}

/* ---------- signature page-turn transition ---------- */
.turn-zone{
  position:relative;
  height:78vh;
  min-height:480px;
  overflow:hidden;
  perspective:1800px;
}
.turn-destination{
  position:absolute;
  inset:0;
  background:var(--maroon);
  color:var(--paper);
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:48px;
}
.turn-page{
  position:absolute;
  inset:0;
  z-index:2;
  transform-style:preserve-3d;
  transform-origin:0% 50%;
  transition:transform 3.5s cubic-bezier(.45,0,.15,1), opacity 3.5s ease;
}
.turn-page.is-flipped{
  transform:rotateY(-104deg);
  opacity:0;
}
.turn-page-front,
.turn-page-back{
  position:absolute;
  inset:0;
  backface-visibility:hidden;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:48px;
}
.turn-page-front{background:var(--paper);}
.turn-page-back{
  background:var(--cashmire);
  transform:rotateY(180deg);
  box-shadow:inset 50px 0 70px -50px rgba(70,18,32,0.35);
}
.turn-page-front blockquote{
  font-family:'Playfair Display',serif;
  font-style:italic;
  font-weight:400;
  font-size:clamp(22px,3.2vw,32px);
  max-width:680px;
  margin:0;
  color:var(--maroon);
  line-height:1.35;
}
.turn-page-front cite{
  display:block;
  margin-top:20px;
  font-style:normal;
  font-size:13px;
  letter-spacing:1px;
  text-transform:uppercase;
  color:var(--gray);
}
.turn-next-inner .kicker{color:var(--cashmire);}
.turn-next-inner h2{
  color:var(--paper);
  font-size:clamp(30px,4vw,46px);
}
.turn-next-inner p{
  color:rgba(250,250,248,0.82);
  max-width:480px;
  margin:18px auto 0;
}
.turn-destination .hero-cta{
  margin-top:32px;
  border-color:rgba(250,250,248,0.5);
}
.turn-destination .hero-cta:hover{background:var(--cashmire);color:var(--maroon);}

.cover-quote{
  font-family:'Playfair Display',serif;
  font-style:italic;
  font-size:clamp(16px,1.8vw,19px);
  max-width:460px;
  margin:18px auto 0;
  line-height:1.45;
  color:rgba(250,250,248,0.92);
}
.cover-quote cite{
  display:block;
  margin-top:10px;
  font-style:normal;
  font-size:12px;
  letter-spacing:1px;
  text-transform:uppercase;
  color:var(--cashmire);
}
.issue-actions{
  display:flex;
  flex-wrap:wrap;
  gap:16px;
  justify-content:center;
  margin-top:30px;
}

.sound-toggle{
  position:absolute;
  bottom:24px;
  right:32px;
  z-index:3;
  width:38px;
  height:38px;
  border-radius:50%;
  border:1px solid rgba(70,18,32,0.2);
  background:rgba(250,250,248,0.88);
  backdrop-filter:blur(4px);
  color:var(--maroon);
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
}

/* ---------- download modal (shared) ---------- */
.modal-overlay{
  position:fixed;
  inset:0;
  background:rgba(28,26,26,0.55);
  display:flex;
  align-items:center;
  justify-content:center;
  padding:24px;
  z-index:100;
}
.modal-overlay[hidden]{display:none;}
.modal-box{
  position:relative;
  background:var(--paper);
  border-radius:2px;
  padding:40px 36px;
  max-width:520px;
  width:100%;
}
.modal-eyebrow{
  font-size:12px;
  letter-spacing:2px;
  text-transform:uppercase;
  color:var(--maroon);
  font-weight:600;
  margin:0 0 12px;
  display:block;
}
.modal-box h3{
  font-family:'Playfair Display',serif;
  font-size:26px;
  margin:0 0 10px;
  line-height:1.2;
}
.modal-sub{
  font-size:15px;
  color:var(--gray);
  margin:0 0 28px;
}
.field-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
  margin-bottom:14px;
}
.field-group{display:flex;flex-direction:column;}
.field-label{
  display:block;
  font-size:11px;
  letter-spacing:1.5px;
  text-transform:uppercase;
  color:var(--gray);
  font-weight:600;
  margin-bottom:6px;
}
.modal-box input[type="text"],
.modal-box input[type="email"]{
  width:100%;
  padding:13px 14px;
  border:1px solid rgba(70,18,32,0.25);
  border-radius:2px;
  font-family:'Inter',sans-serif;
  font-size:14px;
  background:#fff;
  color:var(--ink);
  transition:border-color 0.2s ease;
}
.modal-box input:focus-visible{
  outline:none;
  border-color:var(--maroon);
}
.modal-email-row{margin-bottom:20px;}
.modal-consent{
  display:flex;
  align-items:flex-start;
  gap:10px;
  margin-bottom:24px;
}
.modal-consent input[type="checkbox"]{
  width:16px;
  height:16px;
  margin-top:2px;
  accent-color:var(--maroon);
  flex-shrink:0;
}
.modal-consent label{
  font-size:13px;
  color:var(--gray);
  line-height:1.5;
}
.modal-consent a{color:var(--maroon);}
.modal-submit{
  width:100%;
  justify-content:center;
  padding:16px;
  font-size:13px;
  letter-spacing:2px;
  border-color:var(--maroon);
  background:var(--maroon);
  color:var(--paper);
}
.modal-submit:hover{background:#2c0b14;color:var(--paper);}
.modal-nospam{
  text-align:center;
  font-size:13px;
  color:var(--gray);
  margin-top:14px;
}
.modal-close{
  position:absolute;
  top:16px;
  right:16px;
  width:30px;
  height:30px;
  border:none;
  background:none;
  font-size:20px;
  line-height:1;
  color:var(--gray);
  cursor:pointer;
}
.modal-success{text-align:center;padding:16px 0;}
.modal-success p{
  font-size:15px;
  color:var(--maroon);
  margin:0;
}
@media (max-width:480px){
  .field-row{grid-template-columns:1fr;}
  .modal-box{padding:32px 24px;}
}

/* ---------- insights ---------- */
.insights-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:32px;
}
.insight-photo{
  aspect-ratio:16/10;
  background:var(--cashmire);
  border-radius:2px;
  margin-bottom:20px;
}
.insight-body{padding-top:22px;}
.insight-tag{
  font-size:12px;
  letter-spacing:1.5px;
  text-transform:uppercase;
  color:var(--maroon);
  margin-bottom:12px;
  display:inline-block;
}
.insight-card{transition:transform 0.3s ease;}
.insight-card:hover{transform:translateY(-4px);}
.insight-card h3{
  font-family:'Playfair Display',serif;
  font-size:21px;
  font-weight:600;
  line-height:1.3;
  margin:0 0 12px;
  transition:color 0.25s ease;
}
.insight-card p{
  font-size:14px;
  color:var(--gray);
  margin:0;
}
@media (max-width:880px){
  .insights-grid{grid-template-columns:1fr;gap:36px;}
}
.insights-grid .insight-card:nth-child(2){transition-delay:0.1s;}
.insights-grid .insight-card:nth-child(3){transition-delay:0.2s;}

/* ---------- issue / magazine listing ---------- */
.issues-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:36px;
}
.issue-cover{
  aspect-ratio:3/4;
  background:var(--cashmire);
  border-radius:2px;
  margin-bottom:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:18px;
  color:rgba(70,18,32,0.55);
  font-size:12px;
  letter-spacing:1px;
  text-transform:uppercase;
}
.issue-card h3{
  font-family:'Playfair Display',serif;
  font-size:19px;
  font-weight:600;
  margin:0 0 4px;
  transition:color 0.25s ease;
}
.issue-date{
  font-size:13px;
  color:var(--gray);
  margin:0 0 10px;
}
@media (max-width:880px){
  .issues-grid{grid-template-columns:repeat(2,1fr);}
}
@media (max-width:560px){
  .issues-grid{grid-template-columns:1fr;}
}

/* ---------- women in issue / archive ---------- */
.women-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:36px 28px;
}
.woman-photo{
  aspect-ratio:4/5;
  background:var(--cashmire);
  border-radius:2px;
  margin-bottom:18px;
  width:100%;
  object-fit:cover;
  object-position:top center;
  display:block;
}
.woman-card h3{
  font-family:'Playfair Display',serif;
  font-size:19px;
  font-weight:600;
  margin:0 0 4px;
  transition:color 0.25s ease;
}
.woman-role{
  font-size:13px;
  color:var(--gray);
  margin:0 0 10px;
}
.woman-story{
  font-size:13px;
  letter-spacing:0.5px;
  text-transform:uppercase;
  color:var(--maroon);
  border-bottom:1px solid var(--cashmire);
  padding-bottom:2px;
  display:inline-block;
}
@media (max-width:880px){
  .women-grid{grid-template-columns:repeat(2,1fr);}
}
@media (max-width:560px){
  .women-grid{grid-template-columns:1fr;}
}

/* ---------- table of contents ---------- */
.toc-list{list-style:none;margin:0;padding:0;}
.toc-list li{
  display:flex;
  justify-content:space-between;
  gap:16px;
  align-items:baseline;
  padding:18px 0;
  border-top:1px solid var(--cashmire);
}
.toc-list li:last-child{border-bottom:1px solid var(--cashmire);}
.toc-title{
  font-family:'Playfair Display',serif;
  font-size:18px;
}
.toc-sub{
  display:block;
  font-size:13px;
  color:var(--gray);
  margin-top:2px;
}
.toc-page{
  font-size:13px;
  color:var(--gray);
  white-space:nowrap;
}

/* ---------- flip-book reader ---------- */
.flipbook-section{background:var(--paper);}
.flipbook-wrap{
  max-width:760px;
  margin:0 auto;
}
#flip-book{margin:0 auto;}
.flip-book .page{background:var(--paper);}
.flip-book .page-content{
  padding:32px;
  height:100%;
  width:100%;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.flip-book .page-cover .page-content{
  background:var(--maroon);
  color:var(--paper);
  align-items:center;
  text-align:center;
}
.flip-book .page-header{
  font-family:'Playfair Display',serif;
  font-size:18px;
  margin:0 0 12px;
}
.flip-book .page-text{
  font-size:13px;
  color:var(--gray);
  line-height:1.6;
}
.flip-book .page-footer{
  margin-top:auto;
  font-size:11px;
  color:var(--gray);
  text-align:center;
}
.flipbook-controls{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:18px;
  margin-top:24px;
}
.flipbook-controls button{
  border:1px solid rgba(70,18,32,0.25);
  background:none;
  color:var(--maroon);
  width:38px;
  height:38px;
  border-radius:50%;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
}
.flipbook-controls button:hover{background:var(--cashmire);}
.flipbook-page-count{font-size:13px;color:var(--gray);min-width:64px;text-align:center;}

.issue-meta-actions{
  display:flex;
  flex-wrap:wrap;
  gap:16px;
  margin-top:8px;
}

/* ---------- editor ---------- */
.editor-section{
  background:var(--paper);
  border-top:1px solid var(--cashmire);
  border-bottom:1px solid var(--cashmire);
}
.editor-grid{
  display:grid;
  grid-template-columns:280px 1fr;
  gap:48px;
  align-items:center;
}
.editor-photo{
  aspect-ratio:4/5;
  background:var(--cashmire);
  border-radius:2px;
}
.editor-grid h2{
  font-family:'Playfair Display',serif;
  font-size:clamp(24px,3vw,32px);
  margin:0 0 16px;
}
.editor-grid p{
  color:var(--gray);
  max-width:560px;
  margin:0 0 12px;
  font-size:15px;
}
@media (max-width:760px){
  .editor-grid{grid-template-columns:1fr;}
  .editor-photo{max-width:220px;}
}

/* ---------- footer ---------- */
footer.site-footer{
  background:var(--maroon);
  color:rgba(250,250,248,0.85);
  padding:64px 0 32px;
}
.footer-grid{
  display:flex;
  flex-wrap:wrap;
  gap:48px;
  justify-content:space-between;
  padding-bottom:40px;
  border-bottom:1px solid rgba(250,250,248,0.18);
}
.footer-brand{
  font-family:'Playfair Display',serif;
  font-size:26px;
  letter-spacing:3px;
  color:var(--paper);
}
.footer-col h4{
  font-size:12px;
  letter-spacing:1.5px;
  text-transform:uppercase;
  color:var(--cashmire);
  margin:0 0 14px;
}
.footer-col ul{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  flex-direction:column;
  gap:9px;
  font-size:14px;
}
.footer-col a:hover{color:var(--cashmire);}
.footer-bottom{
  display:flex;
  flex-wrap:wrap;
  justify-content:space-between;
  gap:12px;
  padding-top:24px;
  font-size:13px;
  color:rgba(250,250,248,0.6);
}
.footer-bottom a:hover{color:var(--paper);}

/* ---------- sticky margin rail ---------- */
.margin-rail{
  position:fixed;
  right:28px;
  top:50%;
  transform:translateY(-50%);
  display:flex;
  flex-direction:column;
  gap:20px;
  z-index:40;
}
.margin-rail a{
  width:34px;
  height:34px;
  border-radius:50%;
  border:1px solid rgba(70,18,32,0.25);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:13px;
  color:var(--maroon);
}
.margin-rail a:hover{background:var(--cashmire);}
@media (max-width:1180px){
  .margin-rail{display:none;}
}

/* ---------- scroll reveal ---------- */
.reveal{
  opacity:0;
  transform:translateY(26px);
  transition:opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible{
  opacity:1;
  transform:translateY(0);
}

/* ---------- scroll progress + header state ---------- */
.scroll-progress{
  position:fixed;
  top:0;
  left:0;
  height:3px;
  width:0%;
  background:var(--maroon);
  z-index:60;
}
.site-header.is-scrolled{
  box-shadow:0 2px 16px rgba(70,18,32,0.1);
}

/* ---------- mobile nav ---------- */
.nav-toggle{
  display:none;
  flex-direction:column;
  justify-content:center;
  gap:5px;
  width:32px;
  height:32px;
  border:none;
  background:none;
  cursor:pointer;
  padding:0;
}
.nav-toggle span{
  display:block;
  width:100%;
  height:2px;
  background:var(--maroon);
  transition:transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle.is-open span:nth-child(1){transform:translateY(7px) rotate(45deg);}
.nav-toggle.is-open span:nth-child(2){opacity:0;}
.nav-toggle.is-open span:nth-child(3){transform:translateY(-7px) rotate(-45deg);}

.mobile-nav{
  position:fixed;
  inset:0;
  z-index:45;
  background:var(--paper);
  padding:96px 32px 32px;
  overflow-y:auto;
}
.mobile-nav[hidden]{display:none;}
.mobile-nav ul{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  flex-direction:column;
}
.mobile-nav a{
  display:block;
  padding:18px 0;
  font-family:'Playfair Display',serif;
  font-size:19px;
  border-bottom:1px solid rgba(70,18,32,0.12);
  color:var(--ink);
}
.mobile-nav a.is-active{color:var(--maroon);}

/* ---------- featured latest issue (Issues listing page) ---------- */
.featured-issue{
  display:grid;
  grid-template-columns:340px 1fr;
  gap:56px;
  align-items:start;
}
.featured-issue-cover{
  aspect-ratio:3/4;
  background:var(--cashmire);
  border-radius:2px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:20px;
  color:rgba(70,18,32,0.55);
  font-size:12px;
  letter-spacing:1px;
  text-transform:uppercase;
}
.featured-issue-content h2{
  font-family:'Playfair Display',serif;
  font-size:clamp(28px,3.6vw,38px);
  margin:8px 0 0;
  line-height:1.2;
}
.cover-callouts{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  flex-direction:column;
  gap:12px;
}
.cover-callouts li{
  position:relative;
  padding-left:20px;
  font-size:14px;
  color:var(--ink);
}
.cover-callouts li::before{
  content:'';
  position:absolute;
  left:0;
  top:7px;
  width:8px;
  height:8px;
  background:var(--maroon);
  border-radius:50%;
}
@media (max-width:760px){
  .featured-issue{grid-template-columns:1fr;gap:28px;}
}

/* ---------- two-column callout row (Get Featured / Browse the Archive) ---------- */
.callout-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:32px;
}
.callout-card{
  border:1px solid var(--cashmire);
  border-radius:2px;
  padding:40px;
}
.callout-card h3{
  font-family:'Playfair Display',serif;
  font-size:22px;
  margin:0 0 12px;
}
.callout-card p{
  color:var(--gray);
  font-size:14px;
  margin:0 0 24px;
}
@media (max-width:760px){
  .callout-row{grid-template-columns:1fr;}
}

/* ---------- issues page: get-featured promo section ---------- */
.get-featured-section{
  position:relative;
  overflow:hidden;
  background:var(--paper);
  border-top:1px solid var(--cashmire);
}
.get-featured-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:0;
  min-height:540px;
  align-items:stretch;
}
.get-featured-image{
  background:var(--cashmire);
  position:relative;
  overflow:hidden;
  min-height:420px;
}
.get-featured-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:transform 0.7s ease;
}
.get-featured-image:hover img{transform:scale(1.03);}
.get-featured-copy{
  padding:72px 56px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.get-featured-copy h2{
  font-family:'Playfair Display',serif;
  font-size:clamp(28px,3.2vw,38px);
  margin:12px 0 18px;
  line-height:1.2;
}
.get-featured-copy p{
  color:var(--gray);
  font-size:15px;
  max-width:420px;
  margin:0 0 28px;
  line-height:1.7;
}
.get-featured-copy .btn,
.archive-promo-copy .hero-cta,
.archive-promo-copy .btn{
  width:auto !important;
  align-self:flex-start;
}
@media (max-width:860px){
  .get-featured-grid{grid-template-columns:1fr;}
  .get-featured-copy{padding:48px 32px;}
}

/* ---------- issues page: archive promo section ---------- */
.archive-promo-section{
  background:var(--maroon);
  color:var(--paper);
}
.archive-promo-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:0;
  min-height:480px;
  align-items:stretch;
}
.archive-promo-copy{
  padding:72px 56px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.archive-promo-copy .kicker{color:var(--cashmire);}
.archive-promo-copy h2{
  font-family:'Playfair Display',serif;
  font-size:clamp(28px,3.2vw,38px);
  color:var(--paper);
  margin:12px 0 18px;
  line-height:1.2;
}
.archive-promo-copy p{
  color:rgba(250,250,248,0.8);
  font-size:15px;
  max-width:420px;
  margin:0 0 28px;
  line-height:1.7;
}
.archive-promo-image{
  background:rgba(0,0,0,0.2);
  position:relative;
  overflow:hidden;
  min-height:420px;
}
.archive-promo-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  opacity:0.6;
  transition:transform 0.7s ease, opacity 0.4s ease;
}
.archive-promo-image:hover img{
  transform:scale(1.03);
  opacity:0.75;
}
@media (max-width:860px){
  .archive-promo-grid{grid-template-columns:1fr;}
  .archive-promo-copy{padding:48px 32px;}
}


/* ---------- stat wall header ---------- */
.stat-wall-head{
  text-align:center;
  padding:56px 48px 56px;
  color:var(--paper);
}
.stat-wall-head .kicker{
  color:var(--cashmire);
}
.stat-wall-head h2{
  font-family:'Playfair Display',serif;
  font-size:clamp(22px,3vw,34px);
  font-weight:700;
  color:var(--paper);
  margin:10px 0 0;
  max-width:640px;
  margin-left:auto;
  margin-right:auto;
  line-height:1.3;
}

/* ---------- stat wall section ---------- */
.stat-wall{
  position:relative;
  background:var(--maroon);
  overflow:hidden;
}
/* Three stacked image panels that reveal on scroll */
.stat-panels{
  display:grid;
  grid-template-columns:1fr 1fr 1fr;
  min-height:640px;
}
.stat-panel{
  position:relative;
  overflow:hidden;
}
/* Warm maroon tint over each panel — never black — so it stays on-brand */
.stat-panel::before{
  content:'';
  position:absolute;
  inset:0;
  background:rgba(70,18,32,0.4);
  z-index:1;
  pointer-events:none;
}
.stat-panel-img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  filter:brightness(0.78) saturate(0.85);
  transform:scale(1.08);
  transition:transform 1.2s ease, filter 1.2s ease;
}
.stat-panel.is-visible .stat-panel-img{
  transform:scale(1);
  filter:brightness(0.72) saturate(0.8);
}
.stat-panel-content{
  position:relative;
  z-index:2; /* must sit above the ::before maroon tint (z-index:1) */
  padding:64px 40px;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  min-height:640px;
  opacity:0;
  transform:translateY(20px);
  transition:opacity 0.8s ease, transform 0.8s ease;
}
.stat-panel.is-visible .stat-panel-content{
  opacity:1;
  transform:translateY(0);
}
.stat-panel:nth-child(1).is-visible .stat-panel-content{transition-delay:0.15s;}
.stat-panel:nth-child(2).is-visible .stat-panel-content{transition-delay:0.35s;}
.stat-panel:nth-child(3).is-visible .stat-panel-content{transition-delay:0.55s;}
/* Vertical dividers between panels */
.stat-panel:not(:last-child)::after{
  content:'';
  position:absolute;
  top:10%;
  right:0;
  width:1px;
  height:80%;
  background:rgba(207,191,181,0.2);
  z-index:3;
}
.stat-number{
  font-family:'Playfair Display',serif;
  font-size:clamp(64px,8vw,96px);
  font-weight:700;
  color:var(--paper);
  line-height:1;
  margin:0 0 8px;
  letter-spacing:-2px;
}
.stat-number span.suffix{
  font-size:0.55em;
  letter-spacing:0;
  vertical-align:top;
  margin-top:12px;
  display:inline-block;
}
.stat-label{
  font-family:'Playfair Display',serif;
  font-style:italic;
  font-size:clamp(16px,1.6vw,20px);
  color:rgba(250,250,248,0.88);
  line-height:1.4;
  margin:0 0 18px;
  max-width:260px;
}
.stat-source{
  font-size:11px;
  letter-spacing:1.5px;
  text-transform:uppercase;
  color:rgba(207,191,181,0.6);
  margin:0 0 24px;
}
.stat-link{
  font-size:13px;
  letter-spacing:1px;
  text-transform:uppercase;
  color:var(--cashmire);
  text-decoration:none;
  border-bottom:1px solid rgba(207,191,181,0.4);
  padding-bottom:2px;
  display:inline-block;
  transition:border-color 0.2s ease, color 0.2s ease;
}
.stat-link:hover{color:var(--paper);border-bottom-color:var(--paper);}
/* Bottom strip that ties all three panels together */
.stat-wall-strip{
  background:var(--maroon);
  padding:28px 0;
  text-align:center;
}
.stat-wall-strip p{
  font-family:'Playfair Display',serif;
  font-style:italic;
  font-size:clamp(15px,1.6vw,18px);
  color:rgba(250,250,248,0.9);
  margin:0;
  letter-spacing:0.5px;
}
.stat-wall-strip strong{color:var(--cashmire);}

@media (max-width:860px){
  .stat-panels{grid-template-columns:1fr;}
  .stat-panel:not(:last-child)::after{
    top:auto;bottom:0;left:10%;right:10%;
    width:80%;height:1px;
  }
  .stat-panel-content{min-height:380px;padding:48px 32px;}
}
.turn-divider{
  position:relative;
  height:52vh;
  min-height:320px;
  overflow:hidden;
  perspective:1800px;
}
.turn-divider .turn-destination{background:var(--maroon);}
.turn-divider .turn-page-front{background:var(--paper);}
.turn-divider .turn-page-front blockquote{
  font-size:clamp(18px,2.4vw,26px);
}
/* This page's divider has brief destination content, so it doesn't need the full 52vh */
/* "Is this you?" section — simple, robust, no JS dependency.
   4 photos as a full-bleed background grid, text centered over them. */
.gf-forwho-section{
  position:relative;
  height:62vh;
  min-height:420px;
  overflow:hidden;
}
.gf-forwho-photobar{
  position:absolute;
  inset:0;
  display:grid;
  grid-template-columns:repeat(4,1fr);
}
.gf-forwho-photo{
  background-size:cover;
  background-position:center 25%;
  filter:saturate(0.88) brightness(0.9);
  transition:transform 0.6s cubic-bezier(.4,0,.2,1), filter 0.4s ease, opacity 0.7s ease;
  opacity:0;
  transform:scale(1.04);
}
.gf-forwho-photo.is-visible{
  opacity:1;
  transform:scale(1);
}
.gf-forwho-photo:hover{
  filter:saturate(1.1) brightness(1.05);
  transform:scale(1.03);
  z-index:1;
}
.gf-forwho-photo:nth-child(1){ transition-delay:0s; }
.gf-forwho-photo:nth-child(2){ transition-delay:0.08s; }
.gf-forwho-photo:nth-child(3){ transition-delay:0.16s; }
.gf-forwho-photo:nth-child(4){ transition-delay:0.24s; }
.gf-forwho-photo:nth-child(5){ transition-delay:0.32s; }
.gf-forwho-photo:nth-child(6){ transition-delay:0.40s; }
/* Centered legible text card, sits above the photo strip */
.gf-forwho-textbox{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  z-index:2;
  background:rgba(250,250,248,0.94);
  backdrop-filter:blur(6px);
  padding:36px 56px;
  border-radius:2px;
  text-align:center;
  box-shadow:0 20px 50px rgba(28,26,26,0.25);
  max-width:90%;
}
.gf-forwho-textbox .kicker{ display:block; margin-bottom:10px; }
.gf-forwho-textbox h2{
  font-family:'Playfair Display',serif;
  font-size:clamp(28px,4vw,44px);
  font-weight:700;
  margin:0;
}
/* .reveal's slide-up transform would fight this element's centering transform —
   pin the centering transform in both states so only opacity animates. */
.gf-forwho-textbox.reveal,
.gf-forwho-textbox.reveal.is-visible{
  transform:translate(-50%,-50%);
}
@media (max-width:680px){
  .gf-forwho-section{ height:56vh; min-height:380px; }
  .gf-forwho-photobar{ grid-template-columns:repeat(2,1fr); }
  .gf-forwho-textbox{ padding:24px 28px; }
}

/* ---------- flip-book: real image pages ---------- */
.flipbook-book-wrap{
  display:flex;
  justify-content:center;
  background:var(--charcoal);
  padding:32px 0;
  border-radius:2px;
}
#flip-book img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  pointer-events:none;
  user-select:none;
}
.stpf-page img{
  width:100%;
  height:100%;
  object-fit:contain;
  display:block;
}

/* ---------- dial-up: entrance animations for split sections ---------- */
.slide-in-left{
  opacity:0;
  transform:translateX(-32px);
  transition:opacity 0.8s ease, transform 0.8s ease;
}
.slide-in-right{
  opacity:0;
  transform:translateX(32px);
  transition:opacity 0.8s ease, transform 0.8s ease;
}
.slide-in-left.is-visible,
.slide-in-right.is-visible{
  opacity:1;
  transform:translateX(0);
}
.fade-up-delay-1{transition-delay:0.1s;}
.fade-up-delay-2{transition-delay:0.2s;}
.fade-up-delay-3{transition-delay:0.3s;}
.archive-filters{
  display:flex;
  flex-wrap:wrap;
  gap:20px;
  align-items:center;
  margin-bottom:40px;
}
.archive-filters label{
  font-size:12px;
  letter-spacing:1px;
  text-transform:uppercase;
  color:var(--gray);
  margin-right:8px;
}
.archive-filters select{
  font-family:'Inter',sans-serif;
  font-size:14px;
  padding:9px 14px;
  border:1px solid rgba(70,18,32,0.25);
  border-radius:2px;
  background:var(--paper);
  color:var(--ink);
}
.archive-empty{
  color:var(--gray);
  font-size:14px;
  padding:32px 0;
  display:none;
}

/* ---------- GDPR cookie consent banner ---------- */
.cookie-banner{
  position:fixed;
  bottom:0;
  left:0;
  right:0;
  z-index:200;
  background:var(--charcoal);
  color:rgba(250,250,248,0.92);
  padding:20px 32px;
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:20px;
  justify-content:space-between;
  font-size:14px;
  line-height:1.5;
  box-shadow:0 -2px 24px rgba(0,0,0,0.2);
  transform:translateY(0);
  transition:transform 0.4s ease;
}
.cookie-banner[hidden]{
  display:none;
}
.cookie-banner p{
  margin:0;
  max-width:560px;
  color:rgba(250,250,248,0.85);
}
.cookie-banner a{color:var(--cashmire);}
.cookie-banner-actions{
  display:flex;
  align-items:center;
  gap:24px;
  flex-shrink:0;
  flex-wrap:wrap;
}
.cookie-manage{
  background:none;
  border:none;
  color:rgba(250,250,248,0.85);
  font-family:'Inter',sans-serif;
  font-size:13px;
  font-weight:600;
  letter-spacing:0.5px;
  text-transform:uppercase;
  text-decoration:underline;
  text-underline-offset:3px;
  cursor:pointer;
  padding:0;
  white-space:nowrap;
}
.cookie-manage:hover{color:var(--paper);}
.cookie-accept{
  padding:12px 24px;
  background:var(--maroon);
  color:var(--paper);
  border:none;
  border-radius:2px;
  font-family:'Inter',sans-serif;
  font-size:13px;
  font-weight:700;
  letter-spacing:1px;
  text-transform:uppercase;
  cursor:pointer;
  white-space:nowrap;
}
.cookie-accept:hover{background:#2c0b14;}
.cookie-reject{
  padding:12px 22px;
  background:none;
  color:rgba(250,250,248,0.85);
  border:1px solid rgba(250,250,248,0.3);
  border-radius:2px;
  font-family:'Inter',sans-serif;
  font-size:13px;
  font-weight:600;
  letter-spacing:1px;
  text-transform:uppercase;
  cursor:pointer;
  white-space:nowrap;
}
.cookie-reject:hover{border-color:rgba(250,250,248,0.6);color:var(--paper);}
@media (max-width:780px){
  .cookie-banner{padding:18px 20px;flex-direction:column;align-items:flex-start;}
  .cookie-banner-actions{width:100%;justify-content:space-between;}
}
@media (max-width:480px){
  .cookie-banner-actions{flex-direction:column;align-items:stretch;gap:10px;}
  .cookie-manage{text-align:center;padding:8px 0;}
  .cookie-accept,.cookie-reject{width:100%;text-align:center;}
}

/* ---------- cookie preferences modal ---------- */
.cookie-modal-overlay{
  position:fixed;
  inset:0;
  z-index:300;
  background:rgba(28,26,26,0.6);
  display:flex;
  align-items:center;
  justify-content:center;
  padding:24px;
}
.cookie-modal-overlay[hidden]{display:none;}
.cookie-modal{
  background:var(--paper);
  max-width:520px;
  width:100%;
  max-height:88vh;
  overflow-y:auto;
  border-radius:3px;
  padding:40px;
  position:relative;
  box-shadow:0 24px 64px rgba(0,0,0,0.3);
}
.cookie-modal-close{
  position:absolute;
  top:18px;
  right:18px;
  background:none;
  border:none;
  font-size:26px;
  line-height:1;
  color:var(--gray);
  cursor:pointer;
  padding:4px;
}
.cookie-modal-close:hover{color:var(--ink);}
.cookie-modal h3{
  font-family:'Playfair Display',serif;
  font-size:24px;
  font-weight:700;
  color:var(--ink);
  margin:0 0 14px;
}
.cookie-modal-intro{
  font-size:14px;
  color:var(--gray);
  line-height:1.6;
  margin:0 0 28px;
}
.cookie-modal-intro a{color:var(--maroon);}
.cookie-pref-row{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:20px;
  padding:18px 0;
  border-top:1px solid var(--cashmire);
}
.cookie-pref-text h4{
  font-family:'Inter',sans-serif;
  font-size:15px;
  font-weight:600;
  color:var(--ink);
  margin:0 0 6px;
}
.cookie-pref-text p{
  font-size:13px;
  color:var(--gray);
  line-height:1.5;
  margin:0;
}
.cookie-toggle{
  flex-shrink:0;
  position:relative;
  display:inline-block;
}
.cookie-toggle input{
  position:absolute;
  opacity:0;
  width:0;
  height:0;
}
.cookie-toggle-track{
  display:block;
  width:42px;
  height:24px;
  background:rgba(70,18,32,0.2);
  border-radius:12px;
  position:relative;
  transition:background 0.2s ease;
  cursor:pointer;
}
.cookie-toggle-thumb{
  position:absolute;
  top:3px;
  left:3px;
  width:18px;
  height:18px;
  background:var(--paper);
  border-radius:50%;
  transition:transform 0.2s ease;
  box-shadow:0 1px 3px rgba(0,0,0,0.2);
}
.cookie-toggle input:checked + .cookie-toggle-track{background:var(--maroon);}
.cookie-toggle input:checked + .cookie-toggle-track .cookie-toggle-thumb{transform:translateX(18px);}
.cookie-toggle--locked .cookie-toggle-track{cursor:not-allowed;opacity:0.7;}
.cookie-modal-actions{
  display:flex;
  gap:12px;
  margin-top:28px;
  padding-top:24px;
  border-top:1px solid var(--cashmire);
}
.cookie-modal-actions .cookie-accept,
.cookie-modal-actions .cookie-reject{
  flex:1;
  text-align:center;
}
.cookie-modal-actions .cookie-reject{
  color:var(--ink);
  border-color:rgba(70,18,32,0.3);
}
.cookie-modal-actions .cookie-reject:hover{border-color:var(--maroon);color:var(--maroon);}

@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto;}
  *{transition:none !important; animation:none !important;}
  .reveal{opacity:1;transform:none;}
  .hero-mosaic-col{opacity:1;transform:none;}
}

/* ================================================================
   THE WOMEN — archive index + profile pages
   ================================================================ */

/* ---------- women archive: filter pills ---------- */
.women-filter{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-bottom:52px;
  align-items:center;
}
.women-filter-label{
  font-size:12px;
  letter-spacing:1.5px;
  text-transform:uppercase;
  color:var(--gray);
  margin-right:4px;
}
.filter-pill{
  display:inline-block;
  padding:7px 18px;
  border:1px solid rgba(70,18,32,0.25);
  border-radius:2px;
  font-size:12px;
  letter-spacing:1px;
  text-transform:uppercase;
  color:var(--ink);
  background:none;
  font-family:'Inter',sans-serif;
  cursor:pointer;
  transition:background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.filter-pill:hover{
  border-color:var(--maroon);
  color:var(--maroon);
}
.filter-pill.is-active{
  background:var(--maroon);
  border-color:var(--maroon);
  color:var(--paper);
}

/* Issue heading in the archive grid */
.women-issue-heading{
  display:flex;
  align-items:center;
  gap:20px;
  margin-bottom:40px;
}
.women-issue-heading h2{
  font-family:'Playfair Display',serif;
  font-size:22px;
  font-weight:600;
  margin:0;
  color:var(--ink);
}
.women-issue-heading .issue-pill{
  font-size:11px;
  letter-spacing:1.5px;
  text-transform:uppercase;
  color:var(--maroon);
  border:1px solid var(--cashmire);
  padding:4px 12px;
  border-radius:2px;
  white-space:nowrap;
}

/* Issue badge on individual woman cards */
.woman-issue-badge{
  font-size:11px;
  letter-spacing:1px;
  text-transform:uppercase;
  color:var(--gray);
  margin-bottom:10px;
  display:block;
}

/* Empty state when filter finds nothing */
.women-empty{
  display:none;
  padding:60px 0;
  text-align:center;
  color:var(--gray);
}
.women-empty p{
  font-family:'Playfair Display',serif;
  font-style:italic;
  font-size:18px;
  margin:0 0 16px;
}
.women-empty a{
  font-size:13px;
  letter-spacing:1px;
  text-transform:uppercase;
  color:var(--maroon);
  border-bottom:1px solid var(--cashmire);
  padding-bottom:2px;
}

/* ---------- women archive: CTA section ---------- */
.women-cta-section{
  background:var(--maroon);
  padding:88px 0;
}
.women-cta-inner{
  max-width:680px;
}
.women-cta-inner .kicker{
  color:var(--cashmire);
}
.women-cta-inner h2{
  font-family:'Playfair Display',serif;
  font-size:clamp(30px,3.8vw,44px);
  font-weight:600;
  color:var(--paper);
  margin:0 0 20px;
  line-height:1.1;
}
.women-cta-inner p{
  color:rgba(250,250,248,0.8);
  max-width:520px;
  margin:0 0 36px;
  font-size:16px;
  line-height:1.7;
}

/* ---------- profile pages ---------- */
.profile-hero{
  background:linear-gradient(155deg, #2c0b14 0%, var(--maroon) 55%, #5a1a2b 100%);
  padding:80px 0 72px;
}
.profile-hero-inner{
  max-width:1180px;
  margin:0 auto;
  padding:0 32px;
}
.profile-issue-link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:12px;
  letter-spacing:1.5px;
  text-transform:uppercase;
  color:var(--cashmire);
  margin-bottom:32px;
  opacity:0.85;
  transition:opacity 0.2s;
}
.profile-issue-link:hover{opacity:1;}
.profile-issue-link svg{width:14px;height:14px;stroke:currentColor;fill:none;}

.profile-headline{
  font-family:'Playfair Display',serif;
  font-style:italic;
  font-size:clamp(16px,2vw,21px);
  color:var(--cashmire);
  margin:0 0 16px;
  font-weight:400;
  letter-spacing:0.3px;
}
.profile-hero h1{
  font-family:'Playfair Display',serif;
  font-size:clamp(36px,5.5vw,64px);
  font-weight:700;
  color:var(--paper);
  margin:0 0 14px;
  line-height:1.0;
  letter-spacing:-0.5px;
}
.profile-hero-role{
  font-size:15px;
  color:rgba(250,250,248,0.7);
  letter-spacing:0.3px;
  margin:0;
}
.profile-hero-rule{
  height:1px;
  background:rgba(207,191,181,0.3);
  border:none;
  margin:40px 0 0;
}

/* Profile body: portrait + intro */
.profile-body{
  padding:80px 0 0;
}
.profile-layout{
  display:grid;
  grid-template-columns:5fr 7fr;
  gap:64px;
  align-items:start;
}
.profile-portrait{
  position:sticky;
  top:100px;
}
.profile-portrait .woman-photo{
  aspect-ratio:4/5;
  width:100%;
  margin:0;
}
.profile-portrait-caption{
  font-size:12px;
  color:var(--gray);
  margin-top:14px;
  line-height:1.5;
}
.profile-intro .lead{
  font-family:'Playfair Display',serif;
  font-size:clamp(18px,2vw,22px);
  line-height:1.6;
  color:var(--ink);
  margin:0 0 28px;
  font-weight:400;
}
.profile-intro p{
  font-size:16px;
  line-height:1.75;
  color:var(--ink);
  margin:0 0 22px;
}
.profile-intro p:last-child{margin-bottom:0;}

/* Pull quote */
.pull-quote{
  max-width:820px;
  margin:80px auto;
  padding:0 32px;
  text-align:center;
}
.pull-quote p{
  font-family:'Playfair Display',serif;
  font-style:italic;
  font-size:clamp(22px,3vw,34px);
  line-height:1.4;
  color:var(--maroon);
  margin:0 0 20px;
  position:relative;
}
.pull-quote p::before{
  content:'\201C';
  font-size:1.4em;
  line-height:0;
  vertical-align:-0.4em;
  margin-right:4px;
  color:var(--cashmire);
}
.pull-quote p::after{
  content:'\201D';
  font-size:1.4em;
  line-height:0;
  vertical-align:-0.4em;
  margin-left:4px;
  color:var(--cashmire);
}
.pull-quote cite{
  font-size:12px;
  letter-spacing:1.5px;
  text-transform:uppercase;
  color:var(--gray);
  font-style:normal;
}

/* Profile interview / editorial content */
.profile-content{
  padding:0 0 80px;
}
.profile-content .profile-section{
  max-width:700px;
  margin:0 auto 56px;
}
.profile-content h3{
  font-family:'Playfair Display',serif;
  font-size:clamp(18px,1.8vw,22px);
  font-weight:600;
  margin:0 0 18px;
  color:var(--ink);
}
.profile-content .question{
  font-weight:600;
  font-size:15px;
  color:var(--maroon);
  margin:0 0 10px;
  text-transform:none;
  letter-spacing:0;
}
.profile-content .answer{
  font-size:16px;
  line-height:1.75;
  color:var(--ink);
  margin:0 0 32px;
}

/* More from this issue */
.more-women-section{
  background:var(--paper);
  border-top:1px solid var(--cashmire);
  padding:80px 0;
}
.more-women-section .section-head{
  margin-bottom:48px;
}
.more-women-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:32px 24px;
}

@media (max-width:880px){
  .profile-layout{
    grid-template-columns:1fr;
    gap:40px;
  }
  .profile-portrait{
    position:static;
  }
  .profile-portrait .woman-photo{
    aspect-ratio:3/2;
  }
  .more-women-grid{
    grid-template-columns:repeat(2,1fr);
  }
}
@media (max-width:560px){
  .more-women-grid{
    grid-template-columns:1fr;
  }
  .profile-hero{padding:60px 0 52px;}
}

/* ================================================================
   THE WOMEN — branding landing page (the-women/index.html)
   ================================================================ */

/* Hero */
.tw-hero{
  background:linear-gradient(155deg, #2c0b14 0%, var(--maroon) 55%, #5a1a2b 100%);
  padding:100px 0 88px;
}
.tw-hero-inner{
  max-width:1180px;
  margin:0 auto;
  padding:0 32px;
  display:grid;
  grid-template-columns:1fr auto;
  gap:64px;
  align-items:center;
}
.tw-hero h1{
  font-family:'Playfair Display',serif;
  font-size:clamp(36px,5.5vw,68px);
  font-weight:700;
  color:var(--paper);
  margin:16px 0 24px;
  line-height:1.05;
  letter-spacing:-1px;
}
.tw-hero-deck{
  font-family:'Playfair Display',serif;
  font-style:italic;
  color:rgba(250,250,248,0.8);
  font-size:clamp(16px,1.6vw,19px);
  line-height:1.6;
  max-width:500px;
  margin:0 0 36px;
}
.tw-hero-stat{
  display:flex;
  flex-direction:column;
  gap:40px;
  border-left:1px solid rgba(207,191,181,0.3);
  padding-left:48px;
}
.tw-stat-num{
  display:block;
  font-family:'Playfair Display',serif;
  font-size:56px;
  font-weight:700;
  color:var(--paper);
  line-height:1;
  margin-bottom:6px;
}
.tw-stat-label{
  font-size:13px;
  letter-spacing:0.5px;
  color:var(--cashmire);
  line-height:1.5;
}

/* Manifesto strip — now image + quote, two-column */
.tw-manifesto{
  background:var(--paper);
  border-top:3px solid var(--maroon);
  border-bottom:1px solid var(--cashmire);
  padding:80px 0;
}
.tw-manifesto-grid{
  display:grid;
  grid-template-columns:0.85fr 1fr;
  gap:56px;
  align-items:center;
}
.tw-manifesto-image{
  aspect-ratio:4/5;
  background:var(--cashmire);
  border-radius:2px;
  width:100%;
  object-fit:cover;
  display:block;
}
.tw-manifesto-quote{
  font-family:'Playfair Display',serif;
  font-style:italic;
  font-size:clamp(19px,2.4vw,28px);
  color:var(--ink);
  line-height:1.5;
  margin:0;
}
.tw-manifesto-quote cite{
  display:block;
  margin-top:20px;
  font-size:12px;
  letter-spacing:1.5px;
  text-transform:uppercase;
  color:var(--gray);
  font-style:normal;
}

/* ---------- holistic sell section: image collage + copy ---------- */
.tw-sell{
  position:relative;
  padding:0;
  background:var(--paper);
}
.tw-sell-collage{
  display:grid;
  grid-template-columns:1.4fr 1fr;
  gap:14px;
  max-width:1180px;
  margin:0 auto;
  padding:80px 32px 0;
}
.tw-sell-img{
  background:var(--cashmire);
  border-radius:2px;
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.tw-sell-img--main{
  grid-row:1 / 3;
  aspect-ratio:4/5;
}
.tw-sell-img--top{ aspect-ratio:16/10; }
.tw-sell-img--bottom{ aspect-ratio:16/10; }
.tw-sell-copy{
  max-width:680px;
  margin:0 auto;
  padding:56px 32px 96px;
  text-align:center;
}
.tw-sell-copy h2{
  font-family:'Playfair Display',serif;
  font-size:clamp(28px,3.4vw,42px);
  font-weight:700;
  color:var(--ink);
  margin:14px 0 22px;
  line-height:1.15;
}
.tw-sell-copy p{
  font-size:16px;
  color:var(--gray);
  line-height:1.75;
  margin:0 0 8px;
}
.tw-sell-copy .hero-cta{
  color:var(--maroon);
  border-color:var(--maroon);
}
.tw-sell-copy .hero-cta:hover{
  background:var(--maroon);
  color:var(--paper);
}

/* ---------- how it works: light bg, icon circles, optional image slots ---------- */
.tw-how{
  background:var(--cashmire);
  padding:96px 0;
}
.tw-how-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:56px;
}
.tw-how-item{
  text-align:left;
}

/* Large maroon icon circle with gloss / page-turn hover interaction */
.tw-how-circle{
  position:relative;
  width:120px;
  height:120px;
  border-radius:50%;
  background:var(--maroon);
  color:var(--paper);
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  margin-bottom:28px;
  cursor:default;
  transform-style:preserve-3d;
  transition:transform 0.5s cubic-bezier(.45,0,.15,1), box-shadow 0.4s ease;
  box-shadow:0 8px 24px rgba(70,18,32,0.18);
}
.tw-how-circle svg{
  position:relative;
  z-index:2;
  transition:transform 0.5s ease;
}
/* Diagonal gloss sweep, like a page catching light as it turns */
.tw-how-gloss{
  position:absolute;
  top:-60%;
  left:-60%;
  width:60%;
  height:220%;
  background:linear-gradient(120deg, transparent 0%, rgba(250,250,248,0.5) 50%, transparent 100%);
  transform:rotate(20deg) translateX(-160%);
  transition:transform 0.8s ease;
  z-index:1;
  pointer-events:none;
}
.tw-how-item:hover .tw-how-circle,
.tw-how-circle:focus-visible{
  transform:rotateY(-18deg) scale(1.06);
  box-shadow:0 16px 36px rgba(70,18,32,0.3);
}
.tw-how-item:hover .tw-how-gloss,
.tw-how-circle:focus-visible .tw-how-gloss{
  transform:rotate(20deg) translateX(160%);
}
.tw-how-item:hover .tw-how-circle svg,
.tw-how-circle:focus-visible svg{
  transform:scale(1.1);
}

/* Much larger step numbers */
.tw-how-num{
  font-family:'Playfair Display',serif;
  font-size:clamp(48px,5.5vw,72px);
  font-weight:700;
  color:var(--maroon);
  display:block;
  line-height:1;
  margin-bottom:20px;
  opacity:0.9;
}

/* Vertical rule beside each paragraph, text left-justified to it */
.tw-how-text{
  border-left:2px solid var(--maroon);
  padding-left:22px;
}
.tw-how-item h3{
  font-family:'Playfair Display',serif;
  font-size:20px;
  font-weight:600;
  color:var(--ink);
  margin:0 0 14px;
}
.tw-how-item p{
  font-size:14px;
  color:var(--gray);
  line-height:1.7;
  margin:0;
  max-width:300px;
}

/* Responsive */
@media (max-width:960px){
  .tw-hero-inner{
    grid-template-columns:1fr;
    gap:48px;
  }
  .tw-hero-stat{
    flex-direction:row;
    border-left:none;
    border-top:1px solid rgba(207,191,181,0.3);
    padding-left:0;
    padding-top:32px;
  }
  .tw-manifesto-grid{
    grid-template-columns:1fr;
    gap:32px;
  }
  .tw-sell-collage{
    grid-template-columns:1fr;
    padding-top:56px;
  }
  .tw-sell-img--main{ grid-row:auto; aspect-ratio:16/10; }
  .tw-how-grid{
    grid-template-columns:1fr;
    gap:48px;
  }
}
@media (max-width:560px){
  .tw-hero{ padding:72px 0 64px; }
}

/* ================================================================
   THE WOMEN — archive page (the-women/archive.html)
   ================================================================ */

/* Tally count line */
.tw-tally{
  font-size:13px;
  color:var(--gray);
  margin:0 0 40px;
  letter-spacing:0.3px;
}

/* Issue row: label column + grid */
.tw-issue-row{
  margin-bottom:72px;
}
.tw-issue-row-label{
  display:flex;
  align-items:baseline;
  gap:12px;
  margin-bottom:36px;
  padding-bottom:16px;
  border-bottom:2px solid var(--maroon);
}
.tw-issue-month{
  font-family:'Playfair Display',serif;
  font-size:22px;
  font-weight:600;
  color:var(--ink);
}
.tw-issue-year{
  font-size:14px;
  color:var(--gray);
  letter-spacing:0.5px;
}
.tw-issue-row-link{
  margin-left:auto;
  font-size:12px;
  letter-spacing:1px;
  text-transform:uppercase;
  color:var(--maroon);
  border-bottom:1px solid var(--cashmire);
  padding-bottom:2px;
}
.tw-issue-row-link:hover{ border-bottom-color:var(--maroon); }

/* ---------- issues page: evergreen mission section (replaces monthly women grid) ---------- */
.issues-mission{
  display:grid;
  grid-template-columns:1.1fr 1fr;
  gap:64px;
  align-items:center;
  background:var(--paper);
  border:1px solid var(--cashmire);
  border-radius:2px;
  padding:56px;
}
.issues-mission-text h2{
  font-family:'Playfair Display',serif;
  font-size:clamp(26px,3vw,38px);
  font-weight:700;
  color:var(--ink);
  margin:14px 0 18px;
  line-height:1.15;
}
.issues-mission-text p{
  font-size:15px;
  color:var(--gray);
  line-height:1.75;
  margin:0 0 28px;
  max-width:460px;
}
.issues-mission-stats{
  display:flex;
  flex-direction:column;
  gap:28px;
}
.issues-mission-stat{
  padding-left:20px;
  border-left:2px solid var(--maroon);
}
.im-stat-num{
  display:block;
  font-family:'Playfair Display',serif;
  font-size:clamp(20px,2.2vw,28px);
  font-weight:700;
  color:var(--maroon);
  line-height:1.15;
  margin-bottom:6px;
}
.im-stat-label{
  font-size:13px;
  color:var(--gray);
  letter-spacing:0.2px;
}
@media (max-width:880px){
  .issues-mission{
    grid-template-columns:1fr;
    padding:40px 28px;
    gap:36px;
  }
}

/* ---------- issues page: closing quote break (paper bg between maroon archive promo and footer) ---------- */
.issues-closing-quote{
  background:var(--paper);
  padding:88px 0;
  border-top:1px solid var(--cashmire);
}

/* ---------- women archive: pending issue label (no profile pages yet) ---------- */
.tw-issue-row-pending{
  margin-left:auto;
  font-size:11px;
  letter-spacing:0.5px;
  font-style:italic;
  color:var(--gray);
}
/* Non-link placeholder cards (profile pending) shouldn't show pointer/hover affordances */
.woman-card:not(a){
  pointer-events:none;
}
.woman-card:not(a) .woman-photo{
  opacity:0.6;
}

/* ================================================================
   PROFILE PAGE TEMPLATE — additions: socials, digital feature
   (excerpt + embedded mini flipbook), 4-photo creative collage
   ================================================================ */

/* Social icon row, sits near name/role in the profile hero */
.profile-social-row{
  display:flex;
  gap:14px;
  margin-top:18px;
}
.profile-social-row a{
  width:34px;
  height:34px;
  border-radius:50%;
  border:1px solid rgba(207,191,181,0.4);
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--cashmire);
  transition:background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.profile-social-row a:hover{
  background:var(--cashmire);
  color:var(--maroon);
  border-color:var(--cashmire);
}
.profile-social-row svg{ width:16px; height:16px; }

/* Digital feature section: short excerpt + embedded mini flipbook of her actual print pages */
.profile-feature{
  background:var(--paper);
  padding:80px 0;
  border-top:1px solid var(--cashmire);
}
.profile-feature .section-head{
  text-align:center;
  margin:0 auto 40px;
  max-width:640px;
}
.profile-feature-excerpt{
  max-width:640px;
  margin:0 auto 48px;
  font-family:'Playfair Display',serif;
  font-style:italic;
  font-size:clamp(17px,1.9vw,21px);
  line-height:1.65;
  color:var(--ink);
  text-align:center;
}
.profile-feature-meta{
  text-align:center;
  margin-top:28px;
}
.profile-feature-meta a{
  font-size:12px;
  letter-spacing:1px;
  text-transform:uppercase;
  color:var(--maroon);
  border-bottom:1px solid var(--cashmire);
  padding-bottom:2px;
}

/* 4-photo creative collage — asymmetric, editorial */
.profile-collage{
  padding:88px 0;
  background:var(--paper);
}
.profile-collage-grid{
  display:grid;
  grid-template-columns:1.3fr 1fr 1fr;
  grid-template-rows:auto auto;
  gap:16px;
  max-width:1000px;
  margin:0 auto;
}
.profile-collage-img{
  background:var(--cashmire);
  border-radius:2px;
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.profile-collage-img--a{ grid-row:1 / 3; aspect-ratio:4/5; }
.profile-collage-img--b{ aspect-ratio:1/1; }
.profile-collage-img--c{ aspect-ratio:1/1; }
.profile-collage-img--d{ grid-column:2 / 4; aspect-ratio:21/9; }

@media (max-width:760px){
  .profile-collage-grid{
    grid-template-columns:1fr 1fr;
  }
  .profile-collage-img--a{ grid-row:auto; grid-column:1 / 3; aspect-ratio:16/10; }
  .profile-collage-img--d{ grid-column:1 / 3; }
}

/* ================================================================
   GET FEATURED — sell page (level-10 dynamic graphics)
   ================================================================ */

/* ---------- live badge + pulsing dot (reused in hero + limited section) ---------- */
.gf-live-dot{
  width:8px;
  height:8px;
  border-radius:50%;
  background:#4ade80;
  display:inline-block;
  animation:gfPulse 2s ease-in-out infinite;
  box-shadow:0 0 0 0 rgba(74,222,128,0.6);
}
.gf-live-dot--dark{ background:var(--maroon); box-shadow:0 0 0 0 rgba(70,18,32,0.5); }
@keyframes gfPulse{
  0%   { box-shadow:0 0 0 0 rgba(74,222,128,0.55); }
  70%  { box-shadow:0 0 0 8px rgba(74,222,128,0); }
  100% { box-shadow:0 0 0 0 rgba(74,222,128,0); }
}
.gf-live-dot--dark{ animation-name:gfPulseDark; }
@keyframes gfPulseDark{
  0%   { box-shadow:0 0 0 0 rgba(70,18,32,0.45); }
  70%  { box-shadow:0 0 0 8px rgba(70,18,32,0); }
  100% { box-shadow:0 0 0 0 rgba(70,18,32,0); }
}

/* ---------- HERO ---------- */
.gf-hero{
  position:relative;
  overflow:hidden;
  padding:108px 0 0;
  background:linear-gradient(155deg, #2c0b14 0%, var(--maroon) 55%, #5a1a2b 100%);
}
.gf-hero-bg{
  position:absolute;
  inset:0;
  background:
    linear-gradient(155deg, rgba(44,11,20,0.88) 0%, rgba(70,18,32,0.85) 55%, rgba(90,26,43,0.82) 100%),
    radial-gradient(circle at 18% 25%, rgba(207,191,181,0.18), transparent 45%),
    radial-gradient(circle at 82% 70%, rgba(207,191,181,0.14), transparent 50%),
    url('../assets/img/get-featured/hero-bg.jpg');
  background-size:cover;
  background-position:center 30%;
  animation:gfDrift 18s ease-in-out infinite alternate;
  pointer-events:none;
}
@keyframes gfDrift{
  0%   { transform:translate(0,0) scale(1); }
  100% { transform:translate(-2%,2%) scale(1.05); }
}
.gf-hero-inner{
  position:relative;
  z-index:2;
  max-width:760px;
  margin:0 auto;
  padding:0 32px;
  text-align:center;
}
.gf-live-badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:8px 18px;
  border:1px solid rgba(207,191,181,0.4);
  border-radius:30px;
  font-size:12px;
  letter-spacing:0.5px;
  color:var(--cashmire);
  margin-bottom:28px;
}
.gf-hero h1{
  font-family:'Playfair Display',serif;
  font-size:clamp(36px,6vw,68px);
  font-weight:700;
  color:var(--paper);
  line-height:1.05;
  letter-spacing:-1px;
  margin:0 0 22px;
}
.gf-hero-deck{
  font-size:clamp(15px,1.6vw,18px);
  color:rgba(250,250,248,0.82);
  line-height:1.7;
  max-width:600px;
  margin:0 auto 36px;
}
.gf-hero-actions{
  display:flex;
  gap:16px;
  justify-content:center;
  flex-wrap:wrap;
  margin-bottom:64px;
}

/* hero stat strip */
.gf-hero-stats{
  position:relative;
  z-index:2;
  max-width:980px;
  margin:0 auto;
  padding:40px 32px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:32px;
  border-top:1px solid rgba(207,191,181,0.22);
}
.gf-hero-stat{ text-align:center; }
.gf-stat-num{
  display:block;
  font-family:'Playfair Display',serif;
  font-weight:700;
  font-size:clamp(34px,4.2vw,52px);
  color:var(--paper);
  line-height:1;
  margin-bottom:8px;
}
.gf-stat-num--text{ font-size:clamp(26px,3vw,36px); }
.gf-stat-num .suffix{ color:var(--cashmire); }
.gf-stat-label{
  font-size:12.5px;
  color:rgba(250,250,248,0.7);
  line-height:1.5;
  display:block;
  max-width:200px;
  margin:0 auto;
}

/* ---------- PUBLICATION / CHANNEL CARDS ---------- */
.gf-publication{ padding:100px 0; background:var(--paper); }
.gf-channel-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:28px;
}
.gf-channel-card{
  padding:36px 28px;
  border:1px solid var(--cashmire);
  border-radius:3px;
  background:var(--paper);
  transition:transform 0.35s cubic-bezier(.2,.8,.2,1), box-shadow 0.35s ease, border-color 0.35s ease;
}
.gf-channel-card:hover{
  transform:translateY(-8px);
  box-shadow:0 20px 40px rgba(70,18,32,0.12);
  border-color:var(--maroon);
}
.gf-channel-icon{
  width:54px;
  height:54px;
  border-radius:50%;
  background:var(--cashmire);
  color:var(--maroon);
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:20px;
  transition:background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.gf-channel-card:hover .gf-channel-icon{
  background:var(--maroon);
  color:var(--paper);
  transform:rotate(-8deg) scale(1.08);
}
.gf-channel-card h3{
  font-family:'Playfair Display',serif;
  font-size:17px;
  font-weight:600;
  color:var(--ink);
  margin:0 0 10px;
}
.gf-channel-card p{
  font-size:13.5px;
  color:var(--gray);
  line-height:1.6;
  margin:0;
}

/* ---------- TWO-COLUMN NARRATIVE ---------- */
.gf-narrative{ padding:96px 0; background:var(--cashmire); }
.gf-narrative-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:64px;
}
.gf-narrative-col h2{
  font-family:'Playfair Display',serif;
  font-size:clamp(24px,2.6vw,32px);
  font-weight:700;
  color:var(--ink);
  margin:14px 0 22px;
  line-height:1.2;
}
.gf-narrative-col p{
  font-size:15px;
  color:var(--ink);
  opacity:0.85;
  line-height:1.75;
  margin:0 0 16px;
}
.gf-check-list{
  list-style:none;
  margin:0 0 20px;
  padding:0;
}
.gf-check-list li{
  position:relative;
  padding-left:30px;
  margin-bottom:14px;
  font-size:14.5px;
  color:var(--ink);
  line-height:1.6;
}
.gf-check-list li::before{
  content:'';
  position:absolute;
  left:0;
  top:3px;
  width:18px;
  height:18px;
  border-radius:50%;
  background:var(--maroon);
}
.gf-check-list li::after{
  content:'';
  position:absolute;
  left:5px;
  top:7px;
  width:8px;
  height:4px;
  border-left:2px solid var(--paper);
  border-bottom:2px solid var(--paper);
  transform:rotate(-45deg);
}
.gf-narrative-note{
  font-family:'Playfair Display',serif;
  font-style:italic;
  font-size:15px;
  color:var(--maroon);
}

/* ---------- LONG-TERM ASSET ---------- */
.gf-asset{ padding:100px 0; background:var(--maroon); }
.gf-asset-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:64px;
  align-items:center;
}
.gf-asset-copy h2{
  font-family:'Playfair Display',serif;
  font-size:clamp(26px,2.8vw,36px);
  font-weight:700;
  color:var(--paper);
  line-height:1.2;
  margin:14px 0 18px;
}
.gf-asset-copy p{
  font-size:15px;
  color:rgba(250,250,248,0.78);
  line-height:1.75;
}
.gf-asset-item{
  display:flex;
  gap:18px;
  align-items:flex-start;
  padding:18px 0;
  border-bottom:1px solid rgba(207,191,181,0.18);
  transition:padding-left 0.3s ease;
}
.gf-asset-item:hover{ padding-left:10px; }
.gf-asset-item:last-child{ border-bottom:none; }
.gf-asset-num{
  font-family:'Playfair Display',serif;
  font-size:13px;
  color:var(--cashmire);
  flex-shrink:0;
  padding-top:2px;
}
.gf-asset-item p{
  margin:0;
  font-size:14.5px;
  color:rgba(250,250,248,0.9);
  line-height:1.6;
}

/* ---------- LIMITED AVAILABILITY ---------- */
.gf-limited{ padding:88px 0; background:var(--paper); }
.gf-limited-inner{
  max-width:640px;
  margin:0 auto;
  text-align:center;
}
.gf-limited-pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:8px 18px;
  border:1px solid rgba(70,18,32,0.25);
  border-radius:30px;
  font-size:11.5px;
  letter-spacing:1px;
  text-transform:uppercase;
  color:var(--maroon);
  font-weight:600;
  margin-bottom:22px;
}
.gf-limited-inner h2{
  font-family:'Playfair Display',serif;
  font-size:clamp(24px,2.8vw,32px);
  font-weight:700;
  color:var(--ink);
  line-height:1.25;
  margin:0 0 18px;
}
.gf-limited-inner p{
  font-size:15px;
  color:var(--gray);
  line-height:1.75;
  margin:0 0 28px;
}

/* ---------- PRICING ---------- */
.gf-pricing{ padding:100px 0; background:var(--cashmire); }
.gf-pricing-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
  align-items:stretch;
}
.gf-price-card{
  position:relative;
  background:var(--paper);
  border:1px solid rgba(70,18,32,0.15);
  border-radius:4px;
  overflow:hidden;
  transition:transform 0.4s cubic-bezier(.2,.8,.2,1), box-shadow 0.4s ease;
}
.gf-price-card:hover{
  transform:translateY(-10px);
  box-shadow:0 24px 48px rgba(70,18,32,0.18);
}
.gf-price-card-inner{
  padding:36px 28px 32px;
  display:flex;
  flex-direction:column;
  height:100%;
}
.gf-price-tier{
  font-size:12px;
  letter-spacing:1.5px;
  text-transform:uppercase;
  color:var(--gray);
  margin-bottom:14px;
}
.gf-price-amount{
  font-family:'Playfair Display',serif;
  font-size:42px;
  font-weight:700;
  color:var(--ink);
  margin-bottom:14px;
  line-height:1;
}
.gf-price-currency{ font-size:22px; vertical-align:top; margin-right:2px; }
.gf-price-desc{
  font-size:13.5px;
  color:var(--gray);
  line-height:1.6;
  margin:0 0 22px;
}
.gf-price-features{
  list-style:none;
  margin:0 0 28px;
  padding:0;
  flex-grow:1;
}
.gf-price-features li{
  position:relative;
  padding-left:22px;
  margin-bottom:11px;
  font-size:13px;
  color:var(--ink);
  line-height:1.5;
}
.gf-price-features li::before{
  content:'+';
  position:absolute;
  left:0;
  top:0;
  color:var(--maroon);
  font-weight:700;
}
.gf-price-card .btn,
.gf-price-card .hero-cta{ width:100%; justify-content:center; }

/* Featured (signature) tier — visually elevated */
.gf-price-card--featured{
  background:var(--maroon);
  border-color:var(--maroon);
  transform:scale(1.04);
}
.gf-price-card--featured:hover{ transform:scale(1.04) translateY(-10px); }
.gf-price-card--featured .gf-price-tier{ color:var(--cashmire); }
.gf-price-card--featured .gf-price-amount{ color:var(--paper); }
.gf-price-card--featured .gf-price-desc{ color:rgba(250,250,248,0.78); }
.gf-price-card--featured .gf-price-features li{ color:var(--paper); }
.gf-price-card--featured .gf-price-features li::before{ color:var(--cashmire); }
.gf-price-badge{
  position:absolute;
  top:0;
  right:0;
  background:var(--cashmire);
  color:var(--maroon);
  font-size:10.5px;
  letter-spacing:1px;
  text-transform:uppercase;
  font-weight:700;
  padding:7px 16px;
  border-bottom-left-radius:4px;
}

/* Cover tier — dark, premium */
.gf-price-card--cover{
  background:var(--ink);
  border-color:var(--ink);
}
.gf-price-card--cover .gf-price-tier{ color:rgba(250,250,248,0.55); }
.gf-price-card--cover .gf-price-amount{ color:var(--paper); }
.gf-price-card--cover .gf-price-desc{ color:rgba(250,250,248,0.7); }
.gf-price-card--cover .gf-price-features li{ color:var(--paper); }
.gf-price-card--cover .gf-price-features li::before{ color:var(--cashmire); }

.gf-pricing-footnote{
  text-align:center;
  margin:48px auto 0;
  max-width:480px;
  font-family:'Playfair Display',serif;
  font-style:italic;
  font-size:14.5px;
  color:var(--gray);
}

/* ---------- HOW WOMEN USE THEIR FEATURE ---------- */
.gf-usage{ padding:96px 0; background:var(--paper); }
.gf-usage-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}
.gf-usage-item{
  background:var(--paper);
  border:1px solid rgba(70,18,32,0.12);
  border-radius:3px;
  overflow:hidden;
  transition:transform 0.4s cubic-bezier(.2,.8,.2,1), box-shadow 0.4s ease, border-color 0.4s ease;
}
.gf-usage-item:hover{
  transform:translateY(-6px);
  box-shadow:0 20px 40px rgba(70,18,32,0.16);
  border-color:transparent;
}
.gf-usage-photo{
  width:100%;
  height:320px;
  object-fit:cover;
  display:block;
  transition:transform 0.5s ease;
}
.gf-usage-item:hover .gf-usage-photo{ transform:scale(1.05); }

.gf-usage-text{
  padding:22px 24px 26px;
  border-left:3px solid var(--maroon);
  margin:0 20px;
  transform:translateY(-14px);
  background:var(--paper);
  position:relative;
}
.gf-usage-text p{
  font-size:14px;
  color:var(--ink);
  line-height:1.55;
  font-weight:500;
  margin:0;
}

/* ---------- ACCORDION FAQ ---------- */
.gf-faq{ padding:96px 0; background:var(--cashmire); }
.gf-accordion-item{
  border-bottom:1px solid rgba(70,18,32,0.18);
}
.gf-accordion-trigger{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:22px 4px;
  background:none;
  border:none;
  cursor:pointer;
  text-align:left;
  font-family:'Playfair Display',serif;
  font-size:17px;
  font-weight:600;
  color:var(--ink);
}
.gf-accordion-icon{
  position:relative;
  flex-shrink:0;
  width:22px;
  height:22px;
}
.gf-accordion-icon::before,
.gf-accordion-icon::after{
  content:'';
  position:absolute;
  background:var(--maroon);
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
}
.gf-accordion-icon::before{ width:14px; height:2px; }
.gf-accordion-icon::after{ width:2px; height:14px; transition:transform 0.3s ease; }
.gf-accordion-item.is-open .gf-accordion-icon::after{ transform:translate(-50%,-50%) rotate(90deg); opacity:0; }
.gf-accordion-panel{
  max-height:0;
  overflow:hidden;
  transition:max-height 0.4s cubic-bezier(.2,.8,.2,1);
}
.gf-accordion-item.is-open .gf-accordion-panel{
  max-height:600px;
}
.gf-accordion-panel p{
  padding:0 4px 24px;
  margin:0;
  font-size:14.5px;
  color:var(--ink);
  opacity:0.85;
  line-height:1.7;
}
.gf-accordion-panel a{ color:var(--maroon); text-decoration:underline; }

/* ---------- ADVERTISERS ---------- */
.gf-advertise{ padding:96px 0; background:var(--ink); }
.gf-advertise-inner{ max-width:640px; margin:0 auto; text-align:center; }
.gf-advertise-copy h2{
  font-family:'Playfair Display',serif;
  font-size:clamp(26px,3vw,36px);
  font-weight:700;
  color:var(--paper);
  margin:14px 0 18px;
}
.gf-advertise-copy p{
  font-size:15px;
  color:rgba(250,250,248,0.75);
  line-height:1.75;
  margin:0 0 30px;
}

/* ---------- FINAL CTA ---------- */
.gf-final-cta{ padding:110px 0; background:var(--paper); }
.gf-final-cta h2{
  font-family:'Playfair Display',serif;
  font-size:clamp(28px,3.6vw,44px);
  font-weight:700;
  color:var(--ink);
  margin:14px 0 18px;
}

/* ---------- STICKY BOTTOM CTA BAR ---------- */
.gf-sticky-cta{
  position:fixed;
  left:0;
  right:0;
  bottom:0;
  z-index:150;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:16px 32px;
  background:var(--maroon);
  box-shadow:0 -4px 20px rgba(0,0,0,0.18);
  transform:translateY(100%);
  transition:transform 0.4s cubic-bezier(.2,.8,.2,1);
}
.gf-sticky-cta.is-visible{ transform:translateY(0); }
.gf-sticky-cta-text{
  font-size:13px;
  color:var(--paper);
  letter-spacing:0.3px;
}
.gf-sticky-cta .btn{
  background:var(--cashmire);
  border-color:var(--cashmire);
  color:var(--maroon);
  white-space:nowrap;
}
.gf-sticky-cta .btn:hover{ background:var(--paper); border-color:var(--paper); }

/* ---------- RESPONSIVE ---------- */
@media (max-width:980px){
  .gf-channel-grid{ grid-template-columns:repeat(2,1fr); }
  .gf-pricing-grid{ grid-template-columns:repeat(2,1fr); }
  .gf-price-card--featured{ transform:none; }
  .gf-price-card--featured:hover{ transform:translateY(-10px); }
  .gf-usage-grid{ grid-template-columns:repeat(2,1fr); }
}
@media (max-width:880px){
  .gf-narrative-grid{ grid-template-columns:1fr; gap:48px; }
  .gf-asset-grid{ grid-template-columns:1fr; gap:40px; }
  .gf-hero-stats{ grid-template-columns:1fr; gap:28px; }
}
@media (max-width:680px){
  .gf-channel-grid{ grid-template-columns:1fr; }
  .gf-pricing-grid{ grid-template-columns:1fr; }
  .gf-usage-grid{ grid-template-columns:1fr; }
  .gf-sticky-cta{
    flex-direction:column;
    align-items:stretch;
    text-align:center;
    gap:10px;
    padding:14px 20px;
  }
  .gf-sticky-cta .btn{ justify-content:center; }
}

/* ================================================================
   ISSUES — hero (mirrors The Women hero structure for consistency)
   ================================================================ */
.iss-hero{
  background:linear-gradient(155deg, #2c0b14 0%, var(--maroon) 55%, #5a1a2b 100%);
  padding:100px 0 88px;
}
.iss-hero-inner{
  max-width:1180px;
  margin:0 auto;
  padding:0 32px;
  display:grid;
  grid-template-columns:1fr auto;
  gap:64px;
  align-items:center;
}
.iss-hero h1{
  font-family:'Playfair Display',serif;
  font-size:clamp(36px,5.5vw,68px);
  font-weight:700;
  color:var(--paper);
  margin:16px 0 24px;
  line-height:1.05;
  letter-spacing:-0.5px;
}
.iss-hero-deck{
  color:rgba(250,250,248,0.8);
  font-size:clamp(15px,1.4vw,17px);
  line-height:1.7;
  max-width:480px;
  margin:0 0 36px;
}
.iss-hero-stat{
  display:flex;
  flex-direction:column;
  gap:40px;
  border-left:1px solid rgba(207,191,181,0.3);
  padding-left:48px;
}
.iss-stat-num{
  display:block;
  font-family:'Playfair Display',serif;
  font-size:42px;
  font-weight:700;
  color:var(--paper);
  line-height:1;
  margin-bottom:6px;
}
.iss-stat-label{
  font-size:13px;
  letter-spacing:0.3px;
  color:var(--cashmire);
  line-height:1.5;
}
@media (max-width:960px){
  .iss-hero-inner{ grid-template-columns:1fr; gap:48px; }
  .iss-hero-stat{
    flex-direction:row;
    border-left:none;
    border-top:1px solid rgba(207,191,181,0.3);
    padding-left:0;
    padding-top:32px;
  }
}
@media (max-width:560px){
  .iss-hero{ padding:72px 0 64px; }
}

/* ================================================================
   ABOUT PAGE
   ================================================================ */
.abt-hero{
  background:linear-gradient(155deg, #2c0b14 0%, var(--maroon) 55%, #5a1a2b 100%);
  padding:100px 0 88px;
}
.abt-hero-inner{
  max-width:1180px;
  margin:0 auto;
  padding:0 32px;
  display:grid;
  grid-template-columns:1fr auto;
  gap:64px;
  align-items:center;
}
.abt-hero h1{
  font-family:'Playfair Display',serif;
  font-size:clamp(36px,5.5vw,64px);
  font-weight:700;
  color:var(--paper);
  margin:16px 0 24px;
  line-height:1.05;
  letter-spacing:-0.5px;
}
.abt-hero-deck{
  color:rgba(250,250,248,0.8);
  font-size:clamp(15px,1.4vw,17px);
  line-height:1.7;
  max-width:480px;
  margin:0 0 36px;
}
.abt-hero-stat{
  display:flex;
  flex-direction:column;
  gap:36px;
  border-left:1px solid rgba(207,191,181,0.3);
  padding-left:44px;
}
.abt-stat-num{
  display:block;
  font-family:'Playfair Display',serif;
  font-size:38px;
  font-weight:700;
  color:var(--paper);
  line-height:1;
  margin-bottom:6px;
}
.abt-stat-label{
  font-size:12.5px;
  letter-spacing:0.3px;
  color:var(--cashmire);
  line-height:1.5;
}

/* Origin story */
.abt-origin{ padding:100px 0; background:var(--paper); }
.abt-origin-grid{
  display:grid;
  grid-template-columns:0.85fr 1fr;
  gap:64px;
  align-items:center;
}
.abt-origin-img{
  width:100%;
  border-radius:2px;
  transition:transform 0.6s cubic-bezier(.2,.8,.2,1);
}
.abt-origin-img-wrap{ overflow:hidden; border-radius:2px; }
.abt-origin-img-wrap:hover .abt-origin-img{ transform:scale(1.05); }
.abt-origin-copy h2{
  font-family:'Playfair Display',serif;
  font-size:clamp(26px,3vw,36px);
  font-weight:700;
  color:var(--ink);
  margin:14px 0 20px;
  line-height:1.2;
}
.abt-origin-copy p{
  font-size:15px;
  color:var(--gray);
  line-height:1.8;
  margin:0 0 16px;
}

/* Mission pillars */
.abt-pillars{ padding:96px 0; background:var(--cashmire); }
.abt-pillars-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}
.abt-pillar{
  background:var(--paper);
  padding:34px 26px;
  border-radius:3px;
  transition:transform 0.4s cubic-bezier(.2,.8,.2,1), box-shadow 0.4s ease;
}
.abt-pillar:hover{
  transform:translateY(-8px);
  box-shadow:0 20px 40px rgba(70,18,32,0.16);
}
.abt-pillar-icon{
  width:50px;
  height:50px;
  border-radius:50%;
  background:var(--maroon);
  color:var(--paper);
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:20px;
  transition:transform 0.4s ease;
}
.abt-pillar:hover .abt-pillar-icon{ transform:rotate(-8deg) scale(1.08); }
.abt-pillar h3{
  font-family:'Playfair Display',serif;
  font-size:16.5px;
  font-weight:600;
  color:var(--ink);
  margin:0 0 10px;
}
.abt-pillar p{
  font-size:13px;
  color:var(--gray);
  line-height:1.6;
  margin:0;
}

/* Photo gallery */
.abt-gallery{ padding:100px 0; background:var(--paper); }
.abt-gallery-grid{
  display:grid;
  grid-template-columns:1fr 1fr 1fr;
  grid-template-rows:auto auto;
  gap:16px;
  max-width:1100px;
  margin:0 auto;
}
.abt-gallery-img{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:2px;
  display:block;
  transition:transform 0.5s ease, filter 0.4s ease;
}
.abt-gallery-item{ overflow:hidden; border-radius:2px; }
.abt-gallery-item:hover .abt-gallery-img{ transform:scale(1.06); }
.abt-gallery-item--a{ grid-row:1/3; aspect-ratio:4/5; }
.abt-gallery-item--b{ aspect-ratio:16/10; }
.abt-gallery-item--c{ aspect-ratio:16/10; }
.abt-gallery-item--d{ grid-column:2/4; aspect-ratio:21/8; }

/* Final CTA */
.abt-cta{ padding:100px 0; background:var(--maroon); text-align:center; }
.abt-cta h2{
  font-family:'Playfair Display',serif;
  font-size:clamp(28px,3.4vw,40px);
  font-weight:700;
  color:var(--paper);
  margin:14px 0 28px;
}
.abt-cta-actions{
  display:flex;
  gap:16px;
  justify-content:center;
  flex-wrap:wrap;
}

@media (max-width:960px){
  .abt-hero-inner{ grid-template-columns:1fr; gap:48px; }
  .abt-hero-stat{
    flex-direction:row;
    border-left:none;
    border-top:1px solid rgba(207,191,181,0.3);
    padding-left:0;
    padding-top:28px;
  }
  .abt-origin-grid{ grid-template-columns:1fr; gap:40px; }
  .abt-pillars-grid{ grid-template-columns:repeat(2,1fr); }
}
@media (max-width:680px){
  .abt-pillars-grid{ grid-template-columns:1fr; }
  .abt-gallery-grid{ grid-template-columns:1fr 1fr; }
  .abt-gallery-item--a{ grid-row:auto; grid-column:1/3; aspect-ratio:16/10; }
  .abt-gallery-item--d{ grid-column:1/3; aspect-ratio:16/10; }
}

/* ================================================================
   CONTACT PAGE
   ================================================================ */
.ctc-hero{
  background:linear-gradient(155deg, #2c0b14 0%, var(--maroon) 55%, #5a1a2b 100%);
  padding:96px 0 80px;
  text-align:center;
}
.ctc-hero h1{
  font-family:'Playfair Display',serif;
  font-size:clamp(32px,5vw,56px);
  font-weight:700;
  color:var(--paper);
  margin:14px 0 18px;
  line-height:1.1;
}
.ctc-hero p{
  color:rgba(250,250,248,0.8);
  font-size:15.5px;
  max-width:480px;
  margin:0 auto;
  line-height:1.7;
}

.ctc-main{ padding:96px 0 120px; background:var(--paper); }
.ctc-grid{
  display:grid;
  grid-template-columns:1.3fr 1fr;
  gap:64px;
  align-items:start;
}

/* form */
.ctc-form{ position:relative; }
.ctc-field{
  margin-bottom:26px;
}
.ctc-field label{
  display:block;
  font-size:12px;
  letter-spacing:1px;
  text-transform:uppercase;
  color:var(--gray);
  margin-bottom:9px;
}
.ctc-field input,
.ctc-field select,
.ctc-field textarea{
  width:100%;
  padding:13px 0;
  border:none;
  border-bottom:1.5px solid var(--cashmire);
  background:none;
  font-family:'Inter',sans-serif;
  font-size:15px;
  color:var(--ink);
  transition:border-color 0.3s ease;
}
.ctc-field select{ cursor:pointer; }
.ctc-field textarea{ resize:vertical; min-height:110px; }
.ctc-field input:focus,
.ctc-field select:focus,
.ctc-field textarea:focus{
  outline:none;
  border-bottom-color:var(--maroon);
}
.ctc-field-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
}
.ctc-submit{
  margin-top:8px;
}
.ctc-submit .btn{ min-width:200px; justify-content:center; }
.ctc-form-note{
  font-size:12px;
  color:var(--gray);
  margin-top:16px;
}

/* success state */
.ctc-success{
  text-align:center;
  padding:60px 20px;
}
.ctc-success-icon{
  width:64px;
  height:64px;
  border-radius:50%;
  background:var(--maroon);
  color:var(--paper);
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 auto 24px;
}
.ctc-success h3{
  font-family:'Playfair Display',serif;
  font-size:24px;
  color:var(--ink);
  margin:0 0 12px;
}
.ctc-success p{
  color:var(--gray);
  font-size:14.5px;
  max-width:360px;
  margin:0 auto;
  line-height:1.6;
}

/* info column */
.ctc-info-card{
  background:var(--maroon);
  border-radius:3px;
  padding:40px 36px;
  color:var(--paper);
}
.ctc-info-card h3{
  font-family:'Playfair Display',serif;
  font-size:20px;
  font-weight:600;
  margin:0 0 8px;
}
.ctc-info-card > p{
  font-size:14px;
  color:rgba(250,250,248,0.75);
  line-height:1.7;
  margin:0 0 28px;
}
.ctc-info-row{
  display:flex;
  align-items:flex-start;
  gap:14px;
  padding:16px 0;
  border-top:1px solid rgba(207,191,181,0.2);
}
.ctc-info-row:first-of-type{ border-top:none; }
.ctc-info-icon{
  width:34px;
  height:34px;
  border-radius:50%;
  border:1px solid rgba(207,191,181,0.4);
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
  color:var(--cashmire);
}
.ctc-info-row a,
.ctc-info-row span{
  font-size:14px;
  color:var(--paper);
}
.ctc-info-row a:hover{ color:var(--cashmire); }
.ctc-info-label{
  display:block;
  font-size:11px;
  letter-spacing:0.5px;
  text-transform:uppercase;
  color:var(--cashmire);
  margin-bottom:3px;
}
.ctc-social-row{
  display:flex;
  gap:12px;
  margin-top:28px;
  padding-top:24px;
  border-top:1px solid rgba(207,191,181,0.2);
}
.ctc-social-row a{
  width:36px;
  height:36px;
  border-radius:50%;
  border:1px solid rgba(207,191,181,0.4);
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--cashmire);
  transition:background 0.2s ease, color 0.2s ease;
  font-size:11px;
  letter-spacing:0.5px;
}
.ctc-social-row a:hover{ background:var(--cashmire); color:var(--maroon); }

@media (max-width:880px){
  .ctc-grid{ grid-template-columns:1fr; gap:48px; }
  .ctc-field-row{ grid-template-columns:1fr; gap:0; }
}

/* ================================================================
   INSIGHTS — listing page (3x3 grid, category filter)
   ================================================================ */
.ins-hero{
  background:linear-gradient(155deg, #2c0b14 0%, var(--maroon) 55%, #5a1a2b 100%);
  padding:100px 0 80px;
}
.ins-hero-inner{
  max-width:1180px;
  margin:0 auto;
  padding:0 32px;
  display:grid;
  grid-template-columns:1fr auto;
  gap:64px;
  align-items:center;
}
.ins-hero h1{
  font-family:'Playfair Display',serif;
  font-size:clamp(36px,5.5vw,64px);
  font-weight:700;
  color:var(--paper);
  margin:16px 0 24px;
  line-height:1.05;
  letter-spacing:-0.5px;
}
.ins-hero-deck{
  color:rgba(250,250,248,0.8);
  font-size:clamp(15px,1.4vw,17px);
  line-height:1.7;
  max-width:460px;
}
.ins-hero-stat{
  display:flex;
  flex-direction:column;
  gap:36px;
  border-left:1px solid rgba(207,191,181,0.3);
  padding-left:44px;
}
.ins-stat-num{
  display:block;
  font-family:'Playfair Display',serif;
  font-size:38px;
  font-weight:700;
  color:var(--paper);
  line-height:1;
  margin-bottom:6px;
}
.ins-stat-label{
  font-size:12.5px;
  letter-spacing:0.3px;
  color:var(--cashmire);
  line-height:1.5;
}
@media (max-width:960px){
  .ins-hero-inner{ grid-template-columns:1fr; gap:48px; }
  .ins-hero-stat{ flex-direction:row; border-left:none; border-top:1px solid rgba(207,191,181,0.3); padding-left:0; padding-top:28px; }
}

/* Category filter pills (reuses .filter-pill from The Women archive for consistency) */
.ins-filter{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  justify-content:center;
  margin:0 auto 56px;
}

/* Tally line */
.ins-tally{
  text-align:center;
  font-size:13px;
  color:var(--gray);
  margin:0 0 40px;
}

/* 3x3 grid */
.ins-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:40px 32px;
}
.ins-card{
  display:block;
  transition:opacity 0.4s ease, transform 0.4s ease;
}
.ins-card[hidden]{ display:none; }
.ins-card-photo{
  aspect-ratio:16/10;
  border-radius:2px;
  overflow:hidden;
  margin-bottom:20px;
}
.ins-card-photo img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:transform 0.5s ease;
}
.ins-card:hover .ins-card-photo img{ transform:scale(1.06); }
.ins-card-tag{
  font-size:11px;
  letter-spacing:1.5px;
  text-transform:uppercase;
  color:var(--maroon);
  margin-bottom:10px;
  display:block;
}
.ins-card h3{
  font-family:'Playfair Display',serif;
  font-size:19px;
  font-weight:700;
  color:var(--ink);
  line-height:1.3;
  margin:0 0 14px;
  transition:color 0.25s ease;
}
.ins-card:hover h3{ color:var(--maroon); }
/* Horizontal rule — brand convention: horizontal rules are cashmire */
.ins-card-rule{
  height:1px;
  width:36px;
  background:var(--cashmire);
  border:none;
  margin:0 0 14px;
  transition:width 0.3s ease;
}
.ins-card:hover .ins-card-rule{ width:64px; background:var(--maroon); }
.ins-card p{
  font-size:13.5px;
  color:var(--gray);
  line-height:1.65;
  margin:0;
}

/* Empty state when a filter has no matches yet */
.ins-empty{
  display:none;
  text-align:center;
  padding:60px 0;
  color:var(--gray);
}
.ins-empty p{
  font-family:'Playfair Display',serif;
  font-style:italic;
  font-size:18px;
  margin:0;
}

@media (max-width:880px){
  .ins-grid{ grid-template-columns:repeat(2,1fr); }
}
@media (max-width:560px){
  .ins-grid{ grid-template-columns:1fr; }
}

/* ================================================================
   INSIGHTS — individual article page
   ================================================================ */
.art-hero{
  background:linear-gradient(155deg, #2c0b14 0%, var(--maroon) 55%, #5a1a2b 100%);
  padding:80px 0 0;
}
.art-hero-inner{
  max-width:800px;
  margin:0 auto;
  padding:0 32px 64px;
  text-align:center;
}
.art-category-link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:12px;
  letter-spacing:1.5px;
  text-transform:uppercase;
  color:var(--cashmire);
  margin-bottom:28px;
  opacity:0.9;
}
.art-category-link svg{ width:13px; height:13px; stroke:currentColor; fill:none; }
.art-hero h1{
  font-family:'Playfair Display',serif;
  font-size:clamp(32px,5vw,52px);
  font-weight:700;
  color:var(--paper);
  margin:0 0 22px;
  line-height:1.15;
}
.art-dek{
  font-family:'Playfair Display',serif;
  font-style:italic;
  font-size:clamp(16px,1.8vw,19px);
  color:rgba(250,250,248,0.82);
  line-height:1.6;
  max-width:600px;
  margin:0 auto 28px;
}
.art-meta{
  font-size:12px;
  letter-spacing:0.5px;
  color:var(--cashmire);
}
.art-hero-photo{
  max-width:980px;
  margin:0 auto;
  padding:0 32px;
}
.art-hero-photo img{
  width:100%;
  aspect-ratio:16/9;
  object-fit:cover;
  border-radius:2px;
  display:block;
  transform:translateY(40px);
  box-shadow:0 30px 60px rgba(28,26,26,0.25);
}

.art-body{
  max-width:680px;
  margin:0 auto;
  padding:96px 32px 40px;
}
.art-body p{
  font-size:17px;
  color:var(--ink);
  line-height:1.85;
  margin:0 0 26px;
}
.art-body p:first-of-type::first-letter{
  font-family:'Playfair Display',serif;
  font-size:64px;
  font-weight:700;
  color:var(--maroon);
  float:left;
  line-height:0.8;
  padding:8px 10px 0 0;
}

.art-footer{
  max-width:680px;
  margin:0 auto;
  padding:0 32px 40px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:16px;
  border-top:1px solid var(--cashmire);
  padding-top:32px;
}
.art-tag-pill{
  font-size:11px;
  letter-spacing:1px;
  text-transform:uppercase;
  color:var(--maroon);
  border:1px solid var(--cashmire);
  padding:6px 16px;
  border-radius:20px;
}
.art-share{
  display:flex;
  gap:10px;
}
.art-share a{
  width:34px;
  height:34px;
  border-radius:50%;
  border:1px solid var(--cashmire);
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--maroon);
  font-size:11px;
  transition:background 0.2s ease, color 0.2s ease;
}
.art-share a:hover{ background:var(--maroon); color:var(--paper); }

/* More from this category */
.art-more{
  background:var(--cashmire);
  padding:80px 0;
}
.art-more-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:32px;
}

@media (max-width:760px){
  .art-body p:first-of-type::first-letter{ font-size:48px; }
  .art-more-grid{ grid-template-columns:1fr; }
}

/* ================================================================
   INSIGHTS — long-form original article additions
   ================================================================ */
.art-badge{
  display:inline-block;
  font-size:10.5px;
  letter-spacing:1px;
  text-transform:uppercase;
  color:var(--cashmire);
  border:1px solid rgba(207,191,181,0.5);
  padding:4px 12px;
  border-radius:20px;
  margin-bottom:18px;
}
.art-body h2{
  font-family:'Playfair Display',serif;
  font-size:clamp(22px,2.6vw,28px);
  font-weight:700;
  color:var(--ink);
  margin:48px 0 20px;
  line-height:1.25;
}
.art-body ul{
  margin:0 0 26px;
  padding-left:0;
  list-style:none;
}
.art-body ul li{
  position:relative;
  padding-left:26px;
  margin-bottom:12px;
  font-size:16.5px;
  color:var(--ink);
  line-height:1.7;
}
.art-body ul li::before{
  content:'';
  position:absolute;
  left:2px;
  top:9px;
  width:7px;
  height:7px;
  border-radius:50%;
  background:var(--maroon);
}

/* Table of contents */
.art-toc{
  background:var(--cashmire);
  border-radius:3px;
  padding:28px 32px;
  margin:0 0 40px;
}
.art-toc h4{
  font-size:11px;
  letter-spacing:1.5px;
  text-transform:uppercase;
  color:var(--maroon);
  margin:0 0 14px;
}
.art-toc ol{
  margin:0;
  padding-left:20px;
  counter-reset:toc;
}
.art-toc li{
  font-size:14px;
  margin-bottom:8px;
}
.art-toc a{
  color:var(--ink);
  border-bottom:1px solid transparent;
  transition:border-color 0.2s ease, color 0.2s ease;
}
.art-toc a:hover{ color:var(--maroon); border-bottom-color:var(--maroon); }

/* Key takeaways box */
.art-takeaways{
  background:var(--maroon);
  border-radius:3px;
  padding:32px 36px;
  margin:48px 0;
}
.art-takeaways h4{
  font-family:'Playfair Display',serif;
  font-size:18px;
  font-weight:700;
  color:var(--paper);
  margin:0 0 16px;
}
.art-takeaways ul li{
  color:rgba(250,250,248,0.92);
}
.art-takeaways ul li::before{ background:var(--cashmire); }

/* FAQ section */
.art-faq{
  margin:56px 0 0;
}
.art-faq h2{ margin-top:0; }
.art-faq-item{
  border-top:1px solid var(--cashmire);
  padding:24px 0;
}
.art-faq-item:last-child{ border-bottom:1px solid var(--cashmire); }
.art-faq-item h3{
  font-family:'Inter',sans-serif;
  font-size:16px;
  font-weight:600;
  color:var(--ink);
  margin:0 0 10px;
}
.art-faq-item p{
  font-size:15px;
  color:var(--gray);
  line-height:1.7;
  margin:0;
}

@media (max-width:760px){
  .art-toc{ padding:22px 24px; }
  .art-takeaways{ padding:26px 24px; }
}


/* ═══════════════════════════════════════════════════════════════
   SUBSCRIBE POPUP
   ═══════════════════════════════════════════════════════════════ */

#mm-subscribe-popup {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.mm-popup-overlay {
  position: absolute;
  inset: 0;
  background: rgba(28, 26, 26, 0.72);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  opacity: 0;
  transition: opacity 0.35s ease;
}

#mm-subscribe-popup.mm-popup--visible .mm-popup-overlay {
  opacity: 1;
}

/* ── Panel ──────────────────────────────────────────────────── */
.mm-popup-panel {
  position: relative;
  z-index: 1;
  display: flex;
  width: 100%;
  max-width: 780px;
  min-height: 420px;
  background: var(--paper);
  border-radius: 3px;
  overflow: hidden;
  transform: translateY(28px) scale(0.97);
  opacity: 0;
  transition: transform 0.38s cubic-bezier(.22,.68,0,1.2), opacity 0.32s ease;
  box-shadow: 0 32px 80px rgba(28,26,26,0.28), 0 4px 16px rgba(28,26,26,0.12);
}

#mm-subscribe-popup.mm-popup--visible .mm-popup-panel {
  transform: translateY(0) scale(1);
  opacity: 1;
}

/* ── Close ──────────────────────────────────────────────────── */
.mm-popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(250,250,248,0.9);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  color: var(--ink);
  transition: background 0.15s, color 0.15s;
}

.mm-popup-close:hover {
  background: var(--ink);
  color: var(--paper);
}

/* ── Visual (left column) ────────────────────────────────────── */
.mm-popup-visual {
  position: relative;
  flex: 0 0 260px;
  min-height: 420px;
  overflow: hidden;
  background: var(--maroon);
}

.mm-popup-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  opacity: 0.85;
}

.mm-popup-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(70,18,32,0.45) 0%,
    rgba(70,18,32,0.15) 50%,
    rgba(70,18,32,0.75) 100%
  );
}

.mm-popup-visual-text {
  position: absolute;
  bottom: 28px;
  left: 24px;
  right: 24px;
  color: var(--paper);
}

.mm-popup-kicker {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--cashmire);
  margin-bottom: 6px;
}

.mm-popup-issue {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--paper);
  line-height: 1.15;
}

/* ── Body (right column) ─────────────────────────────────────── */
.mm-popup-body {
  flex: 1;
  padding: 52px 44px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mm-popup-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--maroon);
  margin: 0 0 14px;
}

.mm-popup-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
  margin: 0 0 14px;
}

.mm-popup-sub {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: var(--gray);
  margin: 0 0 28px;
}

/* ── Form ────────────────────────────────────────────────────── */
.mm-popup-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mm-popup-field-wrap {
  position: relative;
}

.mm-popup-input {
  width: 100%;
  padding: 13px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--ink);
  background: #fff;
  border: 1.5px solid var(--cashmire);
  border-radius: 2px;
  outline: none;
  transition: border-color 0.15s;
  box-sizing: border-box;
}

.mm-popup-input:focus {
  border-color: var(--maroon);
}

.mm-popup-input--error {
  border-color: #c0392b;
}

.mm-popup-input::placeholder {
  color: #aaa;
}

.mm-popup-submit {
  width: 100%;
  padding: 13px 20px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--paper);
  background: var(--maroon);
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.18s, opacity 0.18s;
}

.mm-popup-submit:hover {
  background: #5a1a2b;
}

.mm-popup-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.mm-popup-legal {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: #aaa;
  margin: 0;
  line-height: 1.5;
  text-align: center;
}

.mm-popup-legal a {
  color: var(--gray);
  text-decoration: underline;
}

/* ── Success state ────────────────────────────────────────────── */
.mm-popup-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 8px 0;
}

.mm-popup-success[hidden] { display: none; }

.mm-popup-success-head {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  margin: 0;
}

.mm-popup-success-sub {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
  margin: 0;
}

/* ── Skip link ────────────────────────────────────────────────── */
.mm-popup-skip {
  background: none;
  border: none;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: #bbb;
  cursor: pointer;
  padding: 8px 0 0;
  text-align: center;
  letter-spacing: 0.5px;
  transition: color 0.15s;
  align-self: center;
  margin-top: 4px;
}

.mm-popup-skip:hover { color: var(--gray); }

/* ── Reduced motion ───────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .mm-popup-panel,
  .mm-popup-overlay {
    transition: opacity 0.15s ease;
    transform: none !important;
  }
}

/* ── Responsive ───────────────────────────────────────────────── */
@media (max-width: 620px) {
  .mm-popup-panel {
    flex-direction: column;
    max-width: 100%;
    min-height: auto;
    max-height: 92vh;
    overflow-y: auto;
  }

  .mm-popup-visual {
    flex: 0 0 180px;
    min-height: 180px;
  }

  .mm-popup-issue { font-size: 22px; }

  .mm-popup-body {
    padding: 32px 28px 28px;
  }

  .mm-popup-headline {
    font-size: 22px;
  }
}

/* ── Popup GDPR consent ──────────────────────────────────────── */
.mm-popup-gdpr {
  margin: 4px 0 8px;
}

.mm-popup-gdpr-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  line-height: 1.55;
  color: var(--gray);
}

.mm-popup-gdpr-check {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: var(--maroon);
  cursor: pointer;
}

.mm-popup-gdpr-label a {
  color: var(--maroon);
  text-decoration: underline;
}

.mm-popup-gdpr-error {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: #c0392b;
  margin: 4px 0 0 26px;
}

.mm-popup-gdpr-error[hidden] { display: none; }

/* ── Footer subscribe form ───────────────────────────────────── */
.footer-subscribe {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(250,250,248,0.1);
  padding-top: 32px;
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-subscribe-copy {
  flex: 1;
  min-width: 220px;
}

.footer-subscribe-copy h4 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--paper);
  margin: 0 0 4px;
}

.footer-subscribe-copy p {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--cashmire);
  margin: 0;
  line-height: 1.5;
}

.footer-subscribe-form {
  display: flex;
  gap: 0;
  flex: 1;
  min-width: 260px;
  max-width: 400px;
  flex-direction: column;
  gap: 8px;
}

.footer-subscribe-row {
  display: flex;
  gap: 0;
}

.footer-subscribe-input {
  flex: 1;
  padding: 11px 14px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--ink);
  background: rgba(250,250,248,0.95);
  border: none;
  border-radius: 2px 0 0 2px;
  outline: none;
}

.footer-subscribe-input::placeholder { color: #999; }

.footer-subscribe-btn {
  padding: 11px 18px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--paper);
  background: var(--maroon);
  border: none;
  border-radius: 0 2px 2px 0;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s;
}

.footer-subscribe-btn:hover { background: #5a1a2b; }

.footer-subscribe-gdpr {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: rgba(207,191,181,0.7);
  line-height: 1.5;
  cursor: pointer;
}

.footer-subscribe-gdpr input[type="checkbox"] {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  margin-top: 1px;
  accent-color: var(--maroon);
}

.footer-subscribe-gdpr a {
  color: var(--cashmire);
  text-decoration: underline;
}

.footer-subscribe-success {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 14px;
  color: var(--cashmire);
  display: none;
}

@media (max-width: 680px) {
  .footer-subscribe {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .footer-subscribe-form { max-width: 100%; width: 100%; }
}


/* ═══════════════════════════════════════════════════════════════
   MOBILE OPTIMISATION FIXES
   Targeted fixes for 390px (iPhone 14/15) and 360px (Android)
   ═══════════════════════════════════════════════════════════════ */

/* ── Tighten header padding on very small screens ─────────────── */
@media (max-width: 480px) {
  .header-inner {
    padding: 14px 18px;
  }
  .brand {
    font-size: 18px;
    letter-spacing: 4px;
  }
}

/* ── Wrap padding: reduce on small screens to give content room ── */
@media (max-width: 480px) {
  .wrap {
    padding: 0 20px;
  }
}

/* ── Hero CTAs: stack vertically and go full-width on small screens */
@media (max-width: 560px) {
  .hero-cta {
    display: flex;
    width: 100%;
    justify-content: center;
    margin-top: 16px;
    padding: 15px 20px;
    box-sizing: border-box;
    text-align: center;
  }
  .hero-cta + .hero-cta {
    margin-top: 10px;
  }
}

/* ── Issues page: hero subscribe ghost button stacking ────────── */
@media (max-width: 560px) {
  .iss-hero .hero-cta {
    margin-top: 14px;
  }
}

/* ── Homepage stat wall: single column on phones ─────────────── */
@media (max-width: 560px) {
  .stat-panels {
    grid-template-columns: 1fr;
  }
  .stat-panel {
    min-height: 200px;
  }
  .stat-number {
    font-size: clamp(48px, 14vw, 80px);
  }
}

/* ── About / editor section: tighter on phones ────────────────── */
@media (max-width: 480px) {
  .editor-photo {
    max-width: 160px;
  }
}

/* ── Be Featured: hero stats single column on phones ─────────── */
@media (max-width: 480px) {
  .gf-hero-stats {
    grid-template-columns: 1fr;
    padding: 32px 20px;
    gap: 20px;
  }
  .gf-stat-num {
    font-size: clamp(28px, 10vw, 42px);
  }
}

/* ── Be Featured: pricing cards full-width on phones ─────────── */
@media (max-width: 480px) {
  .gf-price-card-inner {
    padding: 28px 22px;
  }
  .gf-price-amount {
    font-size: clamp(36px, 12vw, 52px);
  }
}

/* ── Profile collage: simpler 2-col on phones ────────────────── */
@media (max-width: 480px) {
  .profile-collage-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .profile-collage-img--a,
  .profile-collage-img--b,
  .profile-collage-img--c,
  .profile-collage-img--d {
    grid-column: 1;
    grid-row: auto;
    aspect-ratio: 4/3;
  }
}

/* ── Women archive grid: single column on phones ─────────────── */
@media (max-width: 480px) {
  .women-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .woman-photo {
    aspect-ratio: 4/3;
  }
}

/* ── Contact form: single column on phones ───────────────────── */
@media (max-width: 560px) {
  .ctc-grid {
    grid-template-columns: 1fr;
  }
  .ctc-form-col,
  .ctc-info-col {
    padding: 0;
  }
}

/* ── Footer subscribe: stack on phones ───────────────────────── */
@media (max-width: 480px) {
  .footer-subscribe-row {
    flex-direction: column;
    gap: 8px;
  }
  .footer-subscribe-input {
    border-radius: 2px;
    width: 100%;
    box-sizing: border-box;
  }
  .footer-subscribe-btn {
    border-radius: 2px;
    width: 100%;
    padding: 13px;
  }
}

/* ── Article body: readable line length on phones ────────────── */
@media (max-width: 560px) {
  .art-body {
    padding: 40px 0;
  }
  .art-body p,
  .art-body h2,
  .art-body blockquote {
    font-size: clamp(15px, 4vw, 17px);
  }
}

/* ── Insight cards: ensure images don't overflow ─────────────── */
@media (max-width: 480px) {
  .ins-card-photo {
    aspect-ratio: 16/9;
  }
  .ins-card-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

/* ── Flipbook: fit on phones ─────────────────────────────────── */
@media (max-width: 480px) {
  .flipbook-section {
    padding: 40px 0;
  }
  #flip-book {
    width: 100% !important;
    height: auto !important;
  }
  .flipbook-controls {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }
}

/* ── June / March issue page: TOC on phones ──────────────────── */
@media (max-width: 560px) {
  .iss-toc-item {
    flex-direction: column;
    gap: 6px;
  }
  .iss-toc-pg {
    font-size: 11px;
  }
}

/* ── Popup: full-screen on very small phones ─────────────────── */
@media (max-width: 420px) {
  #mm-subscribe-popup {
    padding: 0;
    align-items: flex-end;
  }
  .mm-popup-panel {
    border-radius: 8px 8px 0 0;
    max-height: 90vh;
    overflow-y: auto;
  }
  .mm-popup-visual {
    flex: 0 0 140px;
    min-height: 140px;
  }
  .mm-popup-body {
    padding: 24px 22px 28px;
  }
  .mm-popup-headline {
    font-size: 20px;
  }
}

/* ── Prevent horizontal scroll globally ─────────────────────── */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}

/* ── Minimum touch target size (WCAG 2.5.5) ─────────────────── */
button, a, input[type="submit"] {
  min-height: 44px;
}
.mm-popup-close {
  min-height: 32px; /* exception: close button in popup corner */
}
.footer-subscribe-gdpr input[type="checkbox"],
.mm-popup-gdpr-check {
  min-height: unset; /* checkboxes are not primary touch targets */
}

/* ── Improve tap highlight on mobile ─────────────────────────── */
@media (hover: none) {
  .hero-cta:hover,
  .btn:hover,
  .footer-subscribe-btn:hover {
    background: unset;
    color: unset;
    transform: none;
  }
}


/* ═══════════════════════════════════════════════════════════════
   MOBILE CRITICAL FIXES v2
   ═══════════════════════════════════════════════════════════════ */

/* ── FIX 1: Hamburger button — min-height must not block display:none ── */
.nav-toggle {
  min-height: unset !important;
}
@media (max-width: 880px) {
  .nav-toggle {
    display: flex !important;
    min-height: 44px;
    width: 44px;
    align-items: center;
    justify-content: center;
  }
  nav.primary-nav {
    display: none !important;
  }
}

/* ── FIX 2: Footer grid — proper 2-col then 1-col stacking on mobile ── */
@media (max-width: 680px) {
  .footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    justify-content: unset;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 420px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .footer-col {
    width: 100%;
  }
}

/* ── FIX 3: Issue page hero — inline grid must stack on mobile ── */
/* Target the inline-style 1fr 1fr grid on june/march issue pages */
@media (max-width: 700px) {
  .issue-hero-layout,
  [style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }
  /* Cover image should be reasonable size, not full-width tall portrait */
  [style*="aspect-ratio:3/4"] {
    max-width: 240px;
    margin: 0 auto;
  }
  /* Buttons in issue hero should stack */
  [style*="display:flex;gap:14px"] {
    flex-direction: column;
    gap: 10px;
  }
}

/* ── Also fix .btn min-height not blocking things ─────────────── */
.nav-toggle span {
  min-height: unset !important;
}

/* ── Ensure all buttons respect display:none correctly ─────────── */
[hidden] {
  display: none !important;
}

/* ── Issue hero layout (replaces inline grid) ────────────────── */
.issue-hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

@media (max-width: 700px) {
  .issue-hero-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .issue-hero-layout .slide-in-left {
    max-width: 220px;
    margin: 0 auto;
  }
  .issue-hero-layout [style*="display:flex;gap:14px"],
  .issue-hero-layout > div > div[style*="display:flex"] {
    flex-direction: column;
    gap: 10px;
  }
  .issue-hero-layout .btn {
    width: 100%;
    justify-content: center;
    box-sizing: border-box;
  }
}


/* ═══════════════════════════════════════════════════════════════
   BE FEATURED — NEW COMPONENTS
   ═══════════════════════════════════════════════════════════════ */

/* ── Carousel ────────────────────────────────────────────────── */
.gf-carousel-track-wrap {
  overflow: hidden;
  position: relative;
  margin: 0 -16px;
}

.gf-carousel-track {
  display: flex;
  gap: 24px;
  padding: 8px 16px 16px;
  transition: transform 0.5s cubic-bezier(.4,0,.2,1);
  cursor: grab;
  user-select: none;
}

.gf-carousel-track:active { cursor: grabbing; }

.gf-carousel-slide {
  flex: 0 0 calc(33.333% - 16px);
  min-width: 260px;
}

.gf-carousel-quote {
  background: var(--paper);
  border: 1px solid var(--cashmire);
  border-top: 3px solid var(--maroon);
  border-radius: 2px;
  padding: 28px 28px 24px;
  margin: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 4px 16px rgba(28,26,26,0.06);
  transition: box-shadow 0.2s, transform 0.2s;
}

.gf-carousel-quote:hover {
  box-shadow: 0 8px 28px rgba(28,26,26,0.12);
  transform: translateY(-2px);
}

.gf-carousel-quote p {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  margin: 0 0 16px;
  flex: 1;
}

.gf-carousel-quote cite {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--maroon);
  font-style: normal;
  display: block;
}

.gf-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 28px;
}

.gf-carousel-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--cashmire);
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.gf-carousel-btn:hover {
  background: var(--maroon);
  border-color: var(--maroon);
  color: var(--paper);
}

.gf-carousel-dots {
  display: flex;
  gap: 8px;
}

.gf-carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cashmire);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}

.gf-carousel-dot.is-active {
  background: var(--maroon);
  transform: scale(1.3);
}

@media (max-width: 760px) {
  .gf-carousel-slide { flex: 0 0 calc(100% - 16px); }
}

@media (max-width: 480px) {
  .gf-carousel-slide { flex: 0 0 85vw; min-width: unset; }
}

/* ── Forwho: 6-column photo bar ──────────────────────────────── */
.gf-forwho-photobar {
  grid-template-columns: repeat(6, 1fr) !important;
}

@media (max-width: 760px) {
  .gf-forwho-photobar { grid-template-columns: repeat(3, 1fr) !important; }
}
@media (max-width: 480px) {
  .gf-forwho-photobar { grid-template-columns: repeat(2, 1fr) !important; }
}

/* ── Animated checklist ──────────────────────────────────────── */
.gf-check-list--animate li {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.gf-check-list--animate.is-visible li {
  opacity: 1;
  transform: translateY(0);
}

.gf-check-list--animate.is-visible li:nth-child(1) { transition-delay: 0.05s; }
.gf-check-list--animate.is-visible li:nth-child(2) { transition-delay: 0.15s; }
.gf-check-list--animate.is-visible li:nth-child(3) { transition-delay: 0.25s; }
.gf-check-list--animate.is-visible li:nth-child(4) { transition-delay: 0.35s; }
.gf-check-list--animate.is-visible li:nth-child(5) { transition-delay: 0.45s; }

/* Check icon pop */
.gf-check-list--animate li::before,
.gf-check-list--animate li::after {
  transition: transform 0.35s cubic-bezier(.34,1.56,.64,1), opacity 0.3s ease;
  transform: scale(0);
  opacity: 0;
}

.gf-check-list--animate.is-visible li::before,
.gf-check-list--animate.is-visible li::after {
  transform: scale(1) rotate(-45deg);
  opacity: 1;
}
.gf-check-list--animate.is-visible li::before {
  transform: scale(1);
}

.gf-check-list--animate.is-visible li:nth-child(1)::before { transition-delay: 0.1s; }
.gf-check-list--animate.is-visible li:nth-child(2)::before { transition-delay: 0.2s; }
.gf-check-list--animate.is-visible li:nth-child(3)::before { transition-delay: 0.3s; }
.gf-check-list--animate.is-visible li:nth-child(4)::before { transition-delay: 0.4s; }

/* ── Process section ─────────────────────────────────────────── */
.gf-process {
  background: var(--paper);
  padding: 96px 0;
  border-top: 1px solid var(--cashmire);
}

.gf-process-track {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 720px;
  margin: 0 auto;
  position: relative;
}

.gf-process-step {
  display: grid;
  grid-template-columns: 72px 4px 1fr;
  gap: 0 28px;
  align-items: start;
}

.gf-process-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding-top: 4px;
}

.gf-process-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--maroon);
  color: var(--paper);
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(70,18,32,0.25);
  transition: transform 0.3s cubic-bezier(.34,1.56,.64,1);
}

.gf-process-step.is-visible .gf-process-num {
  transform: scale(1.08);
}

.gf-process-icon {
  color: var(--maroon);
  opacity: 0.6;
}

.gf-process-line {
  grid-column: 2;
  width: 4px;
  background: linear-gradient(to bottom, var(--maroon), var(--cashmire));
  min-height: 80px;
  border-radius: 2px;
  align-self: stretch;
  margin-top: 48px;
  margin-bottom: 0;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.6s ease 0.3s;
}

.gf-process-step.is-visible .gf-process-line {
  transform: scaleY(1);
}

.gf-process-line--last {
  background: transparent;
}

.gf-process-content {
  padding: 0 0 56px;
}

.gf-process-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  margin: 8px 0 12px;
  line-height: 1.25;
}

.gf-process-content p {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.75;
  color: var(--gray);
  margin: 0;
}

.gf-process-content a {
  color: var(--maroon);
  text-decoration: underline;
}

@media (max-width: 560px) {
  .gf-process-step {
    grid-template-columns: 52px 3px 1fr;
    gap: 0 16px;
  }
  .gf-process-num {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  .gf-process-content h3 { font-size: 18px; }
}

/* ── Flipbook on Be Featured ─────────────────────────────────── */
.gf-flipbook-preview {
  border-top: 1px solid var(--cashmire);
  border-bottom: 1px solid var(--cashmire);
}

/* ── Homepage featured quotes ────────────────────────────────── */
.home-featured-quotes {
  background: var(--cashmire);
  padding: 88px 0;
}

.home-featured-quotes .section-head .kicker {
  color: var(--maroon);
}

.home-featured-quotes .section-head h2 {
  color: var(--ink);
}

.hfq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.hfq-card {
  position: relative;
  background: var(--paper);
  border: 1px solid rgba(70,18,32,0.1);
  border-top: 3px solid var(--maroon);
  border-radius: 2px;
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.hfq-card:hover {
  box-shadow: 0 10px 36px rgba(70,18,32,0.14);
  transform: translateY(-4px);
}

.hfq-quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  line-height: 0.7;
  color: var(--maroon);
  margin-bottom: 14px;
  display: block;
}

.hfq-quote {
  margin: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.hfq-quote p {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  margin: 0 0 20px;
  flex: 1;
}

.hfq-cite {
  border-top: 1px solid rgba(70,18,32,0.1);
  padding-top: 16px;
  margin-top: auto;
}

.hfq-cite-text strong {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.3px;
  margin-bottom: 3px;
}

.hfq-cite-text span {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--maroon);
}

@media (max-width: 780px) {
  .hfq-grid { grid-template-columns: 1fr; gap: 20px; }
}



/* ── Process CTA button fix ──────────────────────────────────── */
.gf-process-cta {
  margin-top: 48px !important;
}
.gf-process-cta .hero-cta {
  color: var(--paper);
  border-color: var(--maroon);
  background: var(--maroon);
}
.gf-process-cta .hero-cta:hover {
  background: #5a1a2b;
  border-color: #5a1a2b;
}


/* ═══════════════════════════════════════════════════════════════
   BE FEATURED v44 — ALL NEW COMPONENTS
   ═══════════════════════════════════════════════════════════════ */

/* ── Reach stats (animated counters) ────────────────────────── */
.gf-reach-stats {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 56px;
  padding: 44px 48px;
  background: var(--ink);
  border-radius: 4px;
}

.gf-reach-stat {
  text-align: center;
  color: var(--paper);
}

.gf-reach-num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 700;
  line-height: 1;
  color: var(--paper);
  margin-bottom: 10px;
}

.gf-reach-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--cashmire);
  line-height: 1.6;
}

@media (max-width: 560px) {
  .gf-reach-stats { flex-direction: column; gap: 24px; padding: 32px 24px; }
}

/* ── Carousel ────────────────────────────────────────────────── */
.gf-carousel-wrap {
  overflow: hidden;
  position: relative;
}

.gf-carousel-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(.4,0,.2,1);
  will-change: transform;
  cursor: grab;
  user-select: none;
}

.gf-carousel-track:active { cursor: grabbing; }

.gf-carousel-slide {
  flex: 0 0 calc(33.333% - 16px);
  min-width: 260px;
}

/* Vertically center quote within each card */
.gf-carousel-quote {
  background: var(--paper);
  border: 1px solid var(--cashmire);
  border-top: 3px solid var(--maroon);
  border-radius: 2px;
  padding: 32px 28px;
  margin: 0;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  box-shadow: 0 2px 12px rgba(28,26,26,0.06);
  transition: box-shadow 0.2s, transform 0.2s;
}

.gf-carousel-quote:hover {
  box-shadow: 0 8px 28px rgba(28,26,26,0.12);
  transform: translateY(-2px);
}

.gf-carousel-quote p {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  margin: 0 0 16px;
}

.gf-carousel-quote cite {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--maroon);
  font-style: normal;
}

.gf-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 28px;
}

.gf-carousel-btn {
  width: 40px;
  height: 40px;
  min-height: unset;
  border-radius: 50%;
  border: 1.5px solid var(--cashmire);
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  font-size: 16px;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.gf-carousel-btn:hover {
  background: var(--maroon);
  border-color: var(--maroon);
  color: var(--paper);
}

.gf-carousel-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.gf-carousel-dot {
  width: 8px;
  height: 8px;
  min-height: unset;
  border-radius: 50%;
  background: var(--cashmire);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}

.gf-carousel-dot.is-active {
  background: var(--maroon);
  transform: scale(1.35);
}

@media (max-width: 760px) {
  .gf-carousel-slide { flex: 0 0 calc(100% - 8px); min-width: unset; }
}

/* ── Forwho photos — entry animation + hover ─────────────────── */
.gf-forwho-photobar {
  grid-template-columns: repeat(6, 1fr) !important;
}

.gf-forwho-photo {
  background-size: cover;
  background-position: center 25%;
  filter: saturate(0.85) brightness(0.88);
  opacity: 0;
  transform: scale(1.06);
  transition:
    opacity 0.7s ease,
    transform 0.7s cubic-bezier(.4,0,.2,1),
    filter 0.4s ease;
}

.gf-forwho-photo.photo-visible {
  opacity: 1;
  transform: scale(1);
}

.gf-forwho-photo:hover {
  filter: saturate(1.15) brightness(1.08);
  transform: scale(1.04);
  z-index: 2;
  position: relative;
}

.gf-forwho-photo[data-photo="1"] { transition-delay: 0s; }
.gf-forwho-photo[data-photo="2"] { transition-delay: 0.08s; }
.gf-forwho-photo[data-photo="3"] { transition-delay: 0.16s; }
.gf-forwho-photo[data-photo="4"] { transition-delay: 0.24s; }
.gf-forwho-photo[data-photo="5"] { transition-delay: 0.32s; }
.gf-forwho-photo[data-photo="6"] { transition-delay: 0.40s; }

@media (max-width: 760px) {
  .gf-forwho-photobar { grid-template-columns: repeat(3, 1fr) !important; }
}
@media (max-width: 480px) {
  .gf-forwho-photobar { grid-template-columns: repeat(2, 1fr) !important; }
}

/* ── Animated checklist ──────────────────────────────────────── */
.gf-check-animated li {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.gf-check-animated.checklist-visible li {
  opacity: 1;
  transform: translateY(0);
}

.gf-check-animated.checklist-visible li:nth-child(1) { transition-delay: 0.05s; }
.gf-check-animated.checklist-visible li:nth-child(2) { transition-delay: 0.15s; }
.gf-check-animated.checklist-visible li:nth-child(3) { transition-delay: 0.25s; }
.gf-check-animated.checklist-visible li:nth-child(4) { transition-delay: 0.35s; }

/* Check icon spring pop */
.gf-check-animated li::before {
  transform: scale(0);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(.34,1.56,.64,1), opacity 0.3s ease;
}

.gf-check-animated li::after {
  opacity: 0;
  transition: opacity 0.3s ease 0.1s;
}

.gf-check-animated.checklist-visible li::before {
  transform: scale(1);
  opacity: 1;
}

.gf-check-animated.checklist-visible li::after {
  opacity: 1;
}

.gf-check-animated.checklist-visible li:nth-child(1)::before { transition-delay: 0.1s; }
.gf-check-animated.checklist-visible li:nth-child(2)::before { transition-delay: 0.2s; }
.gf-check-animated.checklist-visible li:nth-child(3)::before { transition-delay: 0.3s; }
.gf-check-animated.checklist-visible li:nth-child(4)::before { transition-delay: 0.4s; }

/* ── Process section ─────────────────────────────────────────── */
.gf-process {
  background: var(--paper);
  padding: 96px 0;
}

.gf-process-track {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.gf-process-step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 0 32px;
  position: relative;
}

.gf-process-node-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.gf-process-node {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--maroon);
  color: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1px;
  box-shadow: 0 4px 18px rgba(70,18,32,0.22);
  transform: scale(0.7);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(.34,1.56,.64,1), opacity 0.4s ease;
  z-index: 1;
}

.gf-process-step.step-visible .gf-process-node {
  transform: scale(1);
  opacity: 1;
}

.gf-process-step:nth-child(1) .gf-process-node { transition-delay: 0s; }
.gf-process-step:nth-child(2) .gf-process-node { transition-delay: 0.15s; }
.gf-process-step:nth-child(3) .gf-process-node { transition-delay: 0.3s; }

.gf-process-line {
  flex: 1;
  width: 2px;
  background: linear-gradient(to bottom, var(--maroon), var(--cashmire));
  min-height: 48px;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.5s ease 0.4s;
}

.gf-process-step.step-visible .gf-process-line {
  transform: scaleY(1);
}

.gf-process-line--last {
  background: transparent;
}

.gf-process-content {
  padding: 4px 0 52px;
}

.gf-process-num { display: none; }

.gf-process-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 10px;
  line-height: 1.3;
}

.gf-process-content p {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.75;
  color: var(--gray);
  margin: 0 0 12px;
}

.gf-process-content a {
  color: var(--maroon);
  text-decoration: underline;
}

.gf-process-link {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--maroon);
  text-decoration: none;
  border-bottom: 1px solid var(--maroon);
  padding-bottom: 2px;
  transition: opacity 0.2s;
}

.gf-process-link:hover { opacity: 0.7; }

@media (max-width: 560px) {
  .gf-process-step { grid-template-columns: 48px 1fr; gap: 0 20px; }
  .gf-process-node { width: 44px; height: 44px; }
  .gf-process-content h3 { font-size: 18px; }
}


/* ═══════════════════════════════════════════════════════════════
   HOMEPAGE — LATEST ISSUE SHOWCASE
   ═══════════════════════════════════════════════════════════════ */

.home-issue-showcase {
  background: var(--ink);
  padding: 88px 0;
  overflow: hidden;
}

.his-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 72px;
  align-items: center;
}

.his-cover {
  position: relative;
  flex-shrink: 0;
}

.his-cover-img {
  width: 100%;
  border-radius: 3px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5), 0 8px 24px rgba(0,0,0,0.3);
  display: block;
  transform: rotate(-1.5deg);
  transition: transform 0.5s ease;
}

.his-cover:hover .his-cover-img {
  transform: rotate(0deg) scale(1.02);
}

.his-cover-badge {
  position: absolute;
  top: -12px;
  right: -12px;
  background: var(--cashmire);
  color: var(--maroon);
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 2px;
}

.his-content .kicker {
  color: var(--cashmire);
}

.his-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  color: var(--paper);
  margin: 12px 0 16px;
  line-height: 1.2;
}

.his-deck {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(250,250,248,0.7);
  margin: 0 0 32px;
  max-width: 520px;
}

.his-spreads {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 36px;
  border-radius: 3px;
  overflow: hidden;
}

.his-spread {
  aspect-ratio: 3/4;
  background-size: cover;
  background-position: center top;
  filter: saturate(0.9) brightness(0.85);
  transition: filter 0.3s ease, transform 0.3s ease;
}

.his-spread:hover {
  filter: saturate(1.1) brightness(1);
  transform: scale(1.03);
  z-index: 1;
  position: relative;
}

.his-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 860px) {
  .his-grid { grid-template-columns: 1fr; gap: 40px; }
  .his-cover { max-width: 260px; margin: 0 auto; }
  .his-cover-img { transform: none; }
}

@media (max-width: 560px) {
  .his-spreads { grid-template-columns: repeat(2, 1fr); }
  .his-actions { flex-direction: column; }
  .his-actions .hero-cta { width: 100%; justify-content: center; }
}


/* ═══════════════════════════════════════════════════════════════
   HOMEPAGE — THE WOMEN SECTION
   ═══════════════════════════════════════════════════════════════ */

.home-women-section {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Photo mosaic fills the background */
.home-women-mosaic {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
}

.hwm-photo {
  background-size: cover;
  background-position: center 20%;
  filter: saturate(0.8) brightness(0.65);
  transition: filter 0.4s ease;
}

.home-women-section:hover .hwm-photo {
  filter: saturate(0.85) brightness(0.55);
}

/* Grid placement — 4 cols (2fr 1fr 1fr 2fr), 2 rows
   Col1: Crystina spans both rows. Middle cols: 4 photos. Col4: Morgane spans both rows */
/* hwm grid placement handled via inline styles */

/* Dark gradient overlay so text reads clearly */
.home-women-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(28,26,26,0.72) 0%,
    rgba(70,18,32,0.65) 50%,
    rgba(28,26,26,0.78) 100%
  );
}

.home-women-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  padding: 96px 32px;
  color: var(--paper);
}

.home-women-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 700;
  line-height: 1.2;
  margin: 14px 0 20px;
  color: var(--paper);
}

.home-women-content p {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(250,250,248,0.78);
  margin: 0 0 32px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* Women content reveal override — keep centered transform */
.home-women-content.reveal,
.home-women-content.reveal.is-visible {
  transform: translateY(26px);
}

.home-women-content.reveal.is-visible {
  transform: translateY(0);
}

@media (max-width: 680px) {
  .home-women-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(4, 1fr);
  }
  .home-women-mosaic { grid-template-columns: 1fr 1fr 1fr; }
  .hwm-photo:nth-child(1) { grid-column: 1; grid-row: 1 / 3; }
  .hwm-photo:nth-child(2) { grid-column: 2; grid-row: 1; }
  .hwm-photo:nth-child(3) { grid-column: 2; grid-row: 2; }
  .hwm-photo:nth-child(4) { grid-column: 3; grid-row: 1; }
  .hwm-photo:nth-child(5) { grid-column: 3; grid-row: 2; }
  .hwm-photo:nth-child(6), .hwm-photo:nth-child(7) { display: none; }
  .hwm-photo:nth-child(8) { grid-column: 1 / 4; grid-row: 3; grid-column: unset; display: none; }
  .home-women-content h2 { font-size: 32px; }
}


/* ── Women mosaic mobile ─────────────────────────────────────── */
@media (max-width: 680px) {
  .home-women-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(4, 1fr);
  }
  /* Remap 8 photos into 2 cols x 4 rows */
  .home-women-mosaic .hwm-photo:nth-child(1) { grid-column:1; grid-row:1; }
  .home-women-mosaic .hwm-photo:nth-child(2) { grid-column:2; grid-row:1; }
  .home-women-mosaic .hwm-photo:nth-child(3) { grid-column:1; grid-row:2; }
  .home-women-mosaic .hwm-photo:nth-child(4) { grid-column:2; grid-row:2; }
  .home-women-mosaic .hwm-photo:nth-child(5) { grid-column:1; grid-row:3; }
  .home-women-mosaic .hwm-photo:nth-child(6) { grid-column:2; grid-row:3; }
  .home-women-mosaic .hwm-photo:nth-child(7) { grid-column:1; grid-row:4; }
  .home-women-mosaic .hwm-photo:nth-child(8) { grid-column:2; grid-row:4; }
  .home-women-section { min-height: 600px; }
}

/* ── Issue section (turn-destination) mobile ─────────────────── */
@media (max-width: 760px) {
  /* Allow turn-zone to grow to fit content on mobile */
  .turn-zone {
    height: auto;
    min-height: 0;
    overflow: visible;
  }
  /* Turn-destination becomes normal flow instead of absolute */
  .turn-destination {
    position: relative;
    inset: auto;
    padding: 48px 24px;
    text-align: left;
  }
  /* Turn-page sits on top initially then flips away */
  .turn-page {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100vh;
  }
  /* Issue section grid: single column */
  .his-grid {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
    padding: 0 !important;
  }
  .his-cover {
    max-width: 260px;
    margin: 0 auto;
  }
  .his-cover-img {
    transform: none !important;
  }
  /* Description text left-aligned */
  .his-content h2,
  .his-deck {
    text-align: left;
  }
  /* Spreads: 2x2 on mobile */
  .his-spreads {
    grid-template-columns: 1fr 1fr;
  }
  /* Buttons stack */
  .his-actions {
    flex-direction: column;
    gap: 10px;
  }
  .his-actions .hero-cta {
    width: 100%;
    justify-content: center;
    box-sizing: border-box;
  }
}
