@charset "UTF-8";
/* ==========================================================================
   THE JOURNAL — shared editorial stylesheet
   --------------------------------------------------------------------------
   Styles for Simply Sexy Cigars Journal article pages.
   Linked by every article page and by journal-template.html.
   Extracted verbatim from art-of-the-cigar-moment.html — no rules changed.
   ========================================================================== */

/* ============ TOKENS (shared with homepage) ============ */
:root {
  --onyx: #0A0A0B;
  --smoke: #17171A;
  --ink: #212125;
  --bone: #F5F1E8;
  --paper: #EBE6D9;
  --champagne: #C9A961;
  --champagne-dim: rgba(201, 169, 97, 0.35);
  --champagne-faint: rgba(201, 169, 97, 0.12);
  --ash: #8B8478;
  --serif: 'Cormorant Garamond', 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --gutter: clamp(1.5rem, 5vw, 5rem);
  --measure: 680px;      /* reading column */
  --wide: 1100px;        /* wide media */
  --nav-h: 110px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--onyx);
  color: var(--bone);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.8;
  letter-spacing: 0.01em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--champagne); color: var(--onyx); }
:focus-visible { outline: 2px solid var(--champagne); outline-offset: 3px; }

/* ============ READING PROGRESS ============ */
.progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 100%;
  background: transparent;
  z-index: 60;
  pointer-events: none;
}
.progress__bar {
  height: 100%;
  width: 0;
  background: var(--champagne);
  transition: width 0.1s linear;
}

/* Global header lives in site-header.css (shared with the homepage). */

/* ============ TYPE ============ */
.eyebrow {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--champagne);
}
/* Progressive enhancement: .reveal is VISIBLE by default so content is never
   trapped invisible if JS/IntersectionObserver does not run. The hidden→animated
   state is enabled only once the page script adds the .js class to <html>. */
.reveal { opacity: 1; }
.js .reveal {
  opacity: 0; transform: translateY(26px);
  transition: opacity 1.1s var(--ease-out), transform 1.1s var(--ease-out);
}
.js .reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal, .js .reveal { opacity: 1; transform: none; }
}

/* ============ PLACEHOLDER FRAMES ============ */
.ph {
  position: relative;
  background:
    radial-gradient(ellipse at 30% 25%, rgba(201, 169, 97, 0.10), transparent 55%),
    linear-gradient(150deg, #1a1712, #0b0908);
  border: 1px solid var(--champagne-faint);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.ph::before, .ph::after {
  content: ''; position: absolute; width: 16px; height: 16px;
  border: 1px solid var(--champagne-dim);
}
.ph::before { top: 14px; left: 14px; border-right: none; border-bottom: none; }
.ph::after  { bottom: 14px; right: 14px; border-left: none; border-top: none; }
.ph__note {
  text-align: center;
  padding: 2.5rem;
  max-width: 40ch;
}
.ph__note strong {
  display: block;
  font-size: 10px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--champagne);
  font-weight: 400;
  margin-bottom: 0.85rem;
}
.ph__note span {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--ash);
}

/* ============ ARTICLE HERO ============ */
.a-hero {
  margin-top: var(--nav-h);
  min-height: calc(88vh - var(--nav-h));
  display: flex;
  align-items: stretch;
}
.a-hero__img {
  width: 100%;
  object-fit: cover;
  object-position: center 45%;
}

/* ============ ARTICLE MASTHEAD ============ */
.a-masthead {
  max-width: 880px;
  margin: 0 auto;
  padding: clamp(4rem, 9vw, 7rem) var(--gutter) clamp(3rem, 6vw, 5rem);
  text-align: center;
}
.a-masthead .eyebrow { margin-bottom: 2rem; }
.a-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.75rem, 7vw, 5.5rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin-bottom: 1.75rem;
}
.a-title em { font-style: italic; color: var(--champagne); }
.a-subtitle {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.25rem, 2.2vw, 1.6rem);
  line-height: 1.4;
  color: var(--paper);
  max-width: 34ch;
  margin: 0 auto 2.75rem;
}
.a-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--ash);
  flex-wrap: wrap;
}
.a-meta span::after {
  content: '\00B7';
  margin-left: 1.5rem;
  color: var(--champagne-dim);
}
.a-meta span:last-child::after { content: none; }

/* ============ ARTICLE BODY ============ */
.a-body {
  max-width: var(--measure);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.a-body p {
  color: var(--paper);
  margin-bottom: 1.9rem;
  font-size: clamp(1.05rem, 1.25vw, 1.15rem);
  line-height: 1.9;
}
.a-body p.placeholder {
  font-family: var(--serif);
  font-style: italic;
  color: var(--ash);
  border-left: 1px solid var(--champagne-faint);
  padding-left: 1.5rem;
}
.a-open::first-letter {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 4.4em;
  line-height: 0.78;
  float: left;
  margin: 0.06em 0.14em 0 0;
  color: var(--champagne);
}
.a-chapter__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--bone);
  margin-bottom: clamp(1.75rem, 3.5vw, 2.5rem);
}
.a-chapter__title em { font-style: italic; color: var(--champagne); }
.a-section-rule {
  width: 48px;
  height: 1px;
  background: var(--champagne-dim);
  margin: clamp(3rem, 6vw, 4.5rem) auto;
  border: none;
}

/* ============ FULL-WIDTH MEDIA ============ */
.a-media-full {
  max-width: var(--wide);
  margin: clamp(3.5rem, 7vw, 6rem) auto;
  padding: 0 var(--gutter);
}
.a-media-full .ph { aspect-ratio: 21 / 9; }
.a-media-full img {
  width: 100%;
  aspect-ratio: 21 / 9;
  object-fit: cover;
  display: block;
}
.a-caption {
  margin-top: 1.25rem;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ash);
  text-align: center;
}

/* ============ PULL QUOTE ============ */
.a-quote {
  max-width: 880px;
  margin: clamp(6rem, 12vw, 9rem) auto;
  padding: 0 var(--gutter);
  text-align: center;
}
.a-quote::before {
  content: '';
  display: block;
  width: 56px;
  height: 1px;
  background: var(--champagne-dim);
  margin: 0 auto clamp(2.5rem, 5vw, 3.5rem);
}
.a-quote blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.6rem, 3.4vw, 2.6rem);
  line-height: 1.35;
  color: var(--bone);
}
.a-quote cite {
  display: block;
  margin-top: 2rem;
  font-family: var(--sans);
  font-style: normal;
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--ash);
}

/* ============ SPLIT LAYOUT ============ */
.a-split {
  max-width: var(--wide);
  margin: clamp(3.5rem, 7vw, 6rem) auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
.a-split--flip { direction: rtl; }
.a-split--flip > * { direction: ltr; }
.a-split .ph { aspect-ratio: 4 / 5; }
.a-split__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid var(--champagne-faint);
}
.a-split__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.6s var(--ease-out);
}
.a-split:hover .a-split__media img { transform: scale(1.02); }
.a-split__text h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.9rem, 3.4vw, 2.75rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 1.75rem;
}
.a-split__text h2 em { font-style: italic; color: var(--champagne); }
.a-split__text p {
  color: var(--ash);
  font-size: 1.02rem;
  line-height: 1.85;
}
.a-split__text p.placeholder {
  font-family: var(--serif);
  font-style: italic;
  border-left: 1px solid var(--champagne-faint);
  padding-left: 1.5rem;
}
@media (max-width: 820px) {
  .a-split, .a-split--flip { grid-template-columns: 1fr; direction: ltr; }
}

/* Closing photograph — the final full-page frame */
.a-media-full--closing {
  max-width: 1400px;
  margin-top: clamp(4.5rem, 9vw, 7rem);
  margin-bottom: clamp(5.5rem, 11vw, 9rem);
}
.a-media-full--closing .a-frame {
  overflow: hidden;
  aspect-ratio: 16 / 9;
}
.a-media-full--closing img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  /* Rebalanced crop: eye lands on the cigars, whiskey, and smoke,
     with the Porsche soft behind; the flute recedes at the right edge */
  object-position: 32% 58%;
  transform: scale(1.14);
  transform-origin: 32% 58%;
}
.a-body--closing p:first-child { margin-top: 0; }

/* ============ SIGNATURE · THE MOMENT ============ */
.a-moment {
  max-width: 560px;
  margin: clamp(5rem, 10vw, 8rem) auto 0;
  padding: 0 var(--gutter);
  text-align: center;
}
.a-moment__title {
  font-size: 11px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--champagne);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}
.a-moment__title::before,
.a-moment__title::after {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--champagne-dim);
}
.a-moment__list { margin: 0; }
.a-moment__row {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--champagne-faint);
}
.a-moment__row:last-child { border-bottom: none; }
.a-moment__row dt {
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--ash);
  margin-bottom: 0.5rem;
}
.a-moment__row dd {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  line-height: 1.55;
  color: var(--paper);
  margin: 0;
}

/* ============ RELATED STORIES ============ */
.a-related {
  border-top: 1px solid var(--champagne-faint);
  margin-top: clamp(5rem, 10vw, 8rem);
  padding: clamp(4rem, 8vw, 6rem) var(--gutter);
}
.a-related__inner { max-width: var(--wide); margin: 0 auto; }
.a-related__header { text-align: center; margin-bottom: clamp(3rem, 6vw, 5rem); }
.a-related__header h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  letter-spacing: -0.01em;
  margin-top: 1.25rem;
}
.a-related__header h2 em { font-style: italic; color: var(--champagne); }
.a-related__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
}
.a-card {
  border: none;
  border-top: 1px solid var(--champagne-dim);
  padding: clamp(2rem, 3.5vw, 2.75rem) 0 0;
  display: flex; flex-direction: column;
  transition: transform 0.6s var(--ease-out);
}
.a-card:hover { transform: translateY(-5px); }
.a-card__cat {
  font-size: 10px; letter-spacing: 0.42em; text-transform: uppercase;
  color: var(--champagne); margin-bottom: 1.5rem;
}
.a-card__title {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(1.5rem, 2.2vw, 1.9rem); line-height: 1.2;
  letter-spacing: -0.005em;
  margin-bottom: 1.25rem;
  transition: color 0.5s var(--ease-out);
}
.a-card:hover .a-card__title { color: #FFFDF7; }
.a-card__preview {
  font-size: 15px; line-height: 1.8; color: var(--ash);
  flex-grow: 1; margin-bottom: 2rem;
  max-width: 34ch;
}
.a-card__soon {
  font-family: var(--serif); font-style: italic;
  font-size: 14px; color: var(--champagne);
}
@media (max-width: 860px) {
  .a-related__grid { grid-template-columns: 1fr; }
}

/* ============ STORY NAV ============ */
.a-storynav {
  border-top: 1px solid var(--champagne-faint);
  padding: clamp(2.5rem, 5vw, 4rem) var(--gutter);
}
.a-storynav__inner {
  max-width: var(--wide);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.a-storynav a {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ash);
  transition: color 0.4s ease;
  display: flex; align-items: center; gap: 0.75rem;
}
.a-storynav a:hover { color: var(--champagne); }
.a-storynav__prev::before { content: '\2190'; letter-spacing: 0; }
.a-storynav__next::after  { content: '\2192'; letter-spacing: 0; }
.a-storynav__home { color: var(--champagne); }
@media (max-width: 640px) {
  .a-storynav__inner { flex-direction: column; }
}

/* ============ FOOTER (slim) ============ */
.a-footer {
  border-top: 1px solid var(--champagne-faint);
  padding: clamp(3rem, 6vw, 4.5rem) var(--gutter);
  text-align: center;
}
.a-footer img {
  width: clamp(180px, 20vw, 230px);
  margin: 0 auto 1.75rem;
}
.a-footer p {
  font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--ash);
}
.a-footer p em {
  font-family: var(--serif); font-style: italic;
  text-transform: none; letter-spacing: 0.02em; color: var(--champagne);
}


/* ============ MOBILE EDITORIAL REFINEMENT ============ */
@media (max-width: 640px) {
  /* Reading rhythm: tighten vertical gaps ~25% */
  .a-masthead { padding-top: 3rem; padding-bottom: 2.25rem; }
  .a-media-full { margin: 2.5rem auto; padding: 0 0.9rem; }
  .a-media-full--closing { margin-top: 3.25rem; margin-bottom: 4rem; padding: 0 0.6rem; }
  .a-media-full--closing .a-frame { aspect-ratio: 3 / 2; }
  .a-media-full--closing img { transform: scale(1.08); transform-origin: 35% 58%; }
  .a-section-rule { margin: 2.25rem auto; }
  .a-quote { margin: 4rem auto; }
  .a-moment { margin-top: 3.5rem; }
  .a-related { margin-top: 3.5rem; padding-top: 3rem; padding-bottom: 3rem; }

  /* Typography: slightly larger body, stronger chapters */
  .a-body p { font-size: 1.1rem; line-height: 1.85; margin-bottom: 1.6rem; }
  .a-chapter__title { font-size: 2.1rem; margin-bottom: 1.5rem; }

  /* Photography: immersive width, natural 3:2 ratio preserved */
  .a-media-full .ph,
  .a-media-full img { aspect-ratio: 3 / 2; width: 100%; object-fit: cover; }
  .a-caption { margin-top: 0.9rem; font-size: 10px; }

  /* Pull quote: larger, more dramatic pause */
  .a-quote blockquote { font-size: 1.75rem; line-height: 1.4; }
  .a-quote::before { margin-bottom: 2rem; }

  /* Related stories: full-width editorial cards, generous internal air */
  .a-related__grid { gap: 0; }
  .a-card {
    padding: 2.25rem 0 2.5rem;
    border-top: 1px solid var(--champagne-dim);
  }
  .a-card__title { font-size: 1.6rem; }
  .a-card__preview { max-width: none; font-size: 15px; }
  .a-card__soon { padding: 0.5rem 0; }

  /* Story nav: comfortable touch targets */
  .a-storynav a { padding: 0.75rem 0; }
}
/* ============ MOBILE ============ */
@media (max-width: 640px) {
  :root { --nav-h: 80px; }
  .a-hero { min-height: 52vh; }
  .a-media-full .ph { aspect-ratio: 4 / 3; }
}
@media (max-width: 380px) {
  :root { --nav-h: 70px; }
}

/* ==========================================================================
   THE JOURNAL — LANDING EXPERIENCE  (journal.html)
   Additive only: new .jx- classes. Alters no existing rule.
   ========================================================================== */

/* ---- The Cover ---- */
.jx-cover {
  position: relative;
  margin-top: var(--nav-h);
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.jx-cover__media { position: absolute; inset: 0; }
.jx-cover__media .ph,
.jx-cover__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  aspect-ratio: auto;
}
.jx-cover__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(to top,
    rgba(5,5,5,0.82) 0%, rgba(5,5,5,0.35) 42%, rgba(5,5,5,0.05) 70%, transparent 100%);
}
.jx-cover__inner {
  position: relative; z-index: 2;
  width: 100%;
  text-align: center;
  padding: 0 var(--gutter) clamp(3rem, 9vh, 6.5rem);
}
.jx-cover__kicker {
  font-size: 12px;
  letter-spacing: 0.6em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: clamp(1.25rem, 3vw, 2rem);
}
.jx-cover__season {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(3.75rem, 13vw, 9.5rem);
  line-height: 0.92;
  letter-spacing: -0.02em;
  color: var(--bone);
  margin-bottom: clamp(1.1rem, 3vw, 1.9rem);
}
.jx-cover__tagline {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.15rem, 2.2vw, 1.6rem);
  color: var(--paper);
}

/* ---- The Editor's Note ---- */
.jx-note {
  max-width: 660px;
  margin: 0 auto;
  padding: clamp(4.5rem, 11vw, 8rem) var(--gutter);
  text-align: center;
}
.jx-note .eyebrow { display: block; margin-bottom: clamp(2rem, 4vw, 3rem); }
.jx-note p {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  line-height: 1.6;
  color: var(--bone);
  margin-bottom: 1.6rem;
}
.jx-note__sign {
  margin-top: clamp(2.25rem, 5vw, 3.25rem);
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ash);
}

/* thin divider between movements */
.jx-rule { width: 48px; height: 1px; background: var(--champagne-dim); border: none; margin: 0 auto; }

/* ---- The Featured Story ---- */
.jx-featured {
  max-width: var(--wide);
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 4rem) var(--gutter) clamp(3.5rem, 7vw, 5.5rem);
}
.jx-featured__link { display: block; color: inherit; }
.jx-featured__media { overflow: hidden; border: 1px solid var(--champagne-faint); }
.jx-featured__media .ph,
.jx-featured__media img { width: 100%; aspect-ratio: 21 / 9; object-fit: cover; display: block; }
.jx-featured__media img { transition: transform 1.6s var(--ease-out); }
.jx-featured__link:hover .jx-featured__media img { transform: scale(1.03); }
.jx-featured__body { text-align: center; max-width: 640px; margin: clamp(1.75rem, 4vw, 2.75rem) auto 0; }
.jx-featured__cat {
  font-size: 10px; letter-spacing: 0.42em; text-transform: uppercase;
  color: var(--champagne); margin-bottom: 1.1rem;
}
.jx-featured__title {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(2.25rem, 5vw, 3.75rem); line-height: 1.05;
  letter-spacing: -0.015em; color: var(--bone); margin-bottom: 1.25rem;
  transition: color 0.5s var(--ease-out);
}
.jx-featured__title em { font-style: italic; color: var(--champagne); }
.jx-featured__link:hover .jx-featured__title { color: #FFFDF7; }
.jx-featured__excerpt {
  font-size: 1.05rem; line-height: 1.85; color: var(--ash); margin-bottom: 1.75rem;
}
.jx-cta {
  font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--champagne); display: inline-flex; align-items: baseline; gap: 0.6rem;
}
.jx-cta span { transition: transform 0.5s var(--ease-out); display: inline-block; }
.jx-featured__link:hover .jx-cta span { transform: translateX(5px); }

/* ---- The Reading Order ---- */
.jx-order { max-width: var(--wide); margin: 0 auto; padding: 0 var(--gutter) clamp(4rem, 9vw, 7rem); }
.jx-order__header { text-align: center; margin-bottom: clamp(2.5rem, 5vw, 3.5rem); }
.jx-order__header h2 {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem); letter-spacing: -0.01em; color: var(--bone); margin-top: 1rem;
}
.jx-order__header h2 em { font-style: italic; color: var(--champagne); }
.jx-order__list { border-top: 1px solid var(--champagne-faint); }
.jx-order__item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: baseline;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  padding: clamp(1.6rem, 3.2vw, 2.2rem) 0;
  border-bottom: 1px solid var(--champagne-faint);
  color: inherit;
  transition: padding-left 0.5s var(--ease-out);
}
.jx-order__item:hover { padding-left: 0.5rem; }
.jx-order__num {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(1.1rem, 1.6vw, 1.35rem); color: var(--champagne-dim); min-width: 2.5ch;
  transition: color 0.4s var(--ease-out);
}
.jx-order__item:hover .jx-order__num { color: var(--champagne); }
.jx-order__cat {
  font-size: 9px; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--champagne); margin-bottom: 0.6rem;
}
.jx-order__title {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(1.4rem, 2.4vw, 1.9rem); line-height: 1.2; color: var(--bone);
  transition: color 0.4s var(--ease-out);
}
.jx-order__title em { font-style: italic; color: var(--champagne); }
.jx-order__item:hover .jx-order__title { color: #FFFDF7; }
.jx-order__preview { font-size: 14px; line-height: 1.7; color: var(--ash); margin-top: 0.6rem; max-width: 54ch; }
.jx-order__arrow {
  font-size: 14px; color: var(--champagne-dim);
  transition: transform 0.5s var(--ease-out), color 0.4s var(--ease-out);
}
.jx-order__item:hover .jx-order__arrow { color: var(--champagne); transform: translateX(5px); }

/* ---- The Close ---- */
.jx-close {
  border-top: 1px solid var(--champagne-faint);
  text-align: center;
  padding: clamp(3.5rem, 8vw, 6rem) var(--gutter);
}
.jx-close p {
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: clamp(1.3rem, 2.6vw, 1.9rem); line-height: 1.5; color: var(--paper);
  max-width: 42ch; margin: 0 auto;
}

@media (max-width: 640px) {
  .jx-cover { min-height: 80vh; }
  .jx-note p { font-size: 1.2rem; }
  .jx-order__item { grid-template-columns: auto 1fr; column-gap: 1.25rem; }
  .jx-order__arrow { display: none; }
}

/* ---- The Journal front door (journal.html) ---- */
.jx-frontdoor {
  margin-top: var(--nav-h);
  text-align: center;
  padding: clamp(4.5rem, 11vw, 8rem) var(--gutter) clamp(1.5rem, 3vw, 2.5rem);
}
.jx-frontdoor .eyebrow { display: block; margin-bottom: 1.75rem; }

/* ============ EDITORIAL CAROUSEL — The Journal collections ============ */
.jx-shelf {
  max-width: var(--wide);
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 3.5rem) var(--gutter) clamp(4rem, 9vw, 7rem);
}
.jx-shelf__head {
  display: flex; align-items: flex-end; justify-content: flex-end;
  gap: 1.5rem; margin-bottom: clamp(1.75rem, 4vw, 2.5rem);
}
.jx-shelf__intro .eyebrow { display: block; margin-bottom: 1rem; }
.jx-shelf__title {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  line-height: 1.05; letter-spacing: -0.02em;
}
.jx-shelf__title em { font-style: italic; color: var(--champagne); }

.jx-shelf__ctrl { display: flex; gap: 0.75rem; flex: none; }
.jx-shelf__arrow {
  width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid var(--champagne-dim);
  background: transparent; color: var(--champagne);
  font-family: var(--serif); font-size: 1.5rem; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: border-color .4s var(--ease-out), background .4s var(--ease-out),
              color .4s var(--ease-out), opacity .4s var(--ease-out);
}
.jx-shelf__arrow:hover { border-color: var(--champagne); background: var(--champagne-faint); }
.jx-shelf__arrow:disabled { opacity: 0.28; cursor: default; }
.jx-shelf__arrow:focus-visible { outline: 2px solid var(--champagne); outline-offset: 3px; }

/* Track — bleeds to the container edges, horizontal scroll + snap */
.jx-shelf__track {
  display: flex;
  gap: clamp(1.1rem, 2.2vw, 1.75rem);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  margin: 0 calc(-1 * var(--gutter));
  padding: 0.5rem var(--gutter) 1.25rem;
  scrollbar-width: none;
}
.jx-shelf__track::-webkit-scrollbar { display: none; }
.jx-shelf__track:focus-visible { outline: 2px solid var(--champagne); outline-offset: 4px; }

/* Cover card — a luxury magazine cover */
.jx-cc {
  position: relative; flex: 0 0 auto;
  width: clamp(258px, 76vw, 320px);
  aspect-ratio: 3 / 4.2;
  scroll-snap-align: start;
  border: 1px solid var(--champagne-faint);
  border-radius: 2px; overflow: hidden;
  text-decoration: none; color: inherit; display: block;
  background: var(--smoke);
  box-shadow: 0 18px 40px -24px rgba(0,0,0,0.85);
  transition: transform .6s var(--ease-out), border-color .6s var(--ease-out), box-shadow .6s var(--ease-out);
}
a.jx-cc:hover {
  transform: translateY(-6px);
  border-color: var(--cc-accent, var(--champagne-dim));
  box-shadow: 0 30px 60px -28px rgba(0,0,0,0.9);
}
a.jx-cc:focus-visible { outline: 2px solid var(--champagne); outline-offset: 4px; }

.jx-cc__media { position: absolute; inset: 0; }
.jx-cc__media img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 1.8s var(--ease-out);
}
a.jx-cc:hover .jx-cc__media img { transform: scale(1.05); }

/* Teaser cover — calm abstract editorial cover (no icons; typography carries it) */
.jx-cc__cover {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 26%, color-mix(in srgb, var(--cc-accent) 18%, transparent), transparent 68%),
    linear-gradient(158deg, #1b1b1f 0%, #101012 58%, #0A0A0B 100%);
}
.jx-cc__cover::after {
  content: ''; position: absolute; inset: 15px;
  border: 1px solid color-mix(in srgb, var(--cc-accent) 24%, transparent);
}

.jx-cc__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(6,6,7,0.94) 0%, rgba(6,6,7,0.55) 34%, rgba(6,6,7,0.05) 62%, transparent 100%);
}

.jx-cc__status {
  position: absolute; top: 14px; right: 14px; z-index: 2;
  font-family: var(--sans); font-size: 9px; font-weight: 500;
  letter-spacing: 0.24em; text-transform: uppercase; color: var(--bone);
  background: rgba(10,10,11,0.6); border: 1px solid var(--champagne-dim);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  padding: 0.5rem 0.7rem; border-radius: 999px;
}
.jx-cc__status--live { color: var(--onyx); background: var(--champagne); border-color: var(--champagne); }

.jx-cc__body { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: clamp(1.25rem, 3vw, 1.6rem); }
.jx-cc__body > :last-child { margin-bottom: 0; }
.jx-cc__title {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(1.6rem, 4.2vw, 2rem); line-height: 1.05; letter-spacing: -0.01em;
  color: #FFFDF7; margin-bottom: 0.5rem;
}
.jx-cc__sub {
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: clamp(0.98rem, 2.4vw, 1.08rem); line-height: 1.35; color: var(--paper); margin-bottom: 0.9rem;
}
.jx-cc--teaser { cursor: default; }

@media (hover: none) {
  .jx-shelf__ctrl { display: none; }   /* touch devices: swipe instead of arrows */
}

/* ============ BACK TO THE JOURNAL — publication footer link ============ */
.jx-backlink {
  text-align: center;
  padding: clamp(3rem, 7vw, 5rem) var(--gutter) 0;
}
.jx-backlink a {
  font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--champagne);
  display: inline-flex; align-items: center; gap: 0.75rem;
  transition: gap 0.4s var(--ease-out);
}
.jx-backlink a::before { content: '\2190'; letter-spacing: 0; font-size: 14px; }
.jx-backlink a:hover { gap: 1.1rem; }
