/* ── HERO ── */
.article-hero {
  background: var(--ink);
  padding: 80px 56px 72px;
  position: relative;
  overflow: hidden;
}

.article-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(74,107,110,0.2) 0%, transparent 60%);
  pointer-events: none;
}

.article-hero-inner { max-width: 680px; position: relative; z-index: 1; }

.article-tag {
  font-size: 0.58rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: #7ab5b8; margin-bottom: 20px;
  display: flex; align-items: center; gap: 10px;
}

.article-tag::before { content: ''; width: 24px; height: 1px; background: #7ab5b8; }

.article-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 300; line-height: 1.12;
  letter-spacing: -0.01em;
  color: rgba(250,247,242,0.95);
  margin-bottom: 24px;
}

.article-title em { font-style: italic; color: #7ab5b8; }

.article-subtitle {
  font-size: 0.92rem; line-height: 1.8;
  color: rgba(250,247,242,0.5);
  max-width: 520px; letter-spacing: 0.02em;
  margin-bottom: 28px;
}

.article-meta {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
}

.article-meta-item {
  font-size: 0.6rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(250,247,242,0.3);
}

.article-meta-sep { color: rgba(250,247,242,0.15); }

/* ── ARTICLE LAYOUT ── */
.article-wrap {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 64px;
  max-width: 1080px;
  margin: 0 auto;
  padding: 64px 56px 100px;
}

@media (max-width: 900px) {
  .article-wrap { grid-template-columns: 1fr; gap: 0; padding: 48px 24px 80px; }
  .article-sidebar { display: none; }
  .article-hero { padding: 56px 24px 48px; }
}

/* ── ARTICLE CONTENT ── */
.article-body > * + * { margin-top: 24px; }

.article-body h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem; font-weight: 400;
  color: var(--ink); letter-spacing: 0.01em;
  margin-top: 56px !important;
  padding-top: 56px;
  border-top: 1px solid var(--border);
  line-height: 1.2;
}

.article-body h2:first-child { margin-top: 0 !important; padding-top: 0; border-top: none; }

.article-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; font-weight: 400;
  color: var(--ink); margin-top: 36px !important;
  letter-spacing: 0.01em;
}

.article-body p {
  font-size: 0.92rem; line-height: 1.95;
  color: var(--drift); letter-spacing: 0.02em;
}

.article-body strong { color: var(--ink); font-weight: 500; }
.article-body em { font-style: italic; color: var(--ink); }
.article-body a { color: var(--tide); text-decoration: none; }
.article-body a:hover { text-decoration: underline; }

/* ── PAIN POINT OPENER ── */
.pain-intro {
  background: var(--sand);
  border-left: 3px solid var(--tide);
  border-radius: 0 3px 3px 0;
  padding: 24px 28px;
  margin-top: 0 !important;
}

.pain-intro p {
  font-size: 0.95rem; line-height: 1.85;
  color: var(--ink); font-style: italic;
}

/* ── VISUAL CROP EXPLAINER ── */
.crop-visual {
  background: var(--sand);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 32px;
  margin-top: 32px !important;
}

.crop-visual-label {
  font-size: 0.56rem; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--drift);
  margin-bottom: 20px; text-align: center;
}

.crop-visual-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  align-items: end;
}

@media (max-width: 600px) {
  .crop-visual-grid { grid-template-columns: repeat(2, 1fr); }
}

.crop-card {
  display: flex; flex-direction: column; gap: 8px;
}

.crop-frame {
  border-radius: 3px;
  overflow: hidden;
  position: relative;
  background: var(--warm);
  border: 1px solid var(--border);
}

.crop-frame-inner {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.crop-frame-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  pointer-events: none;
}

.crop-frame-inner::after {
  content: '';
  position: absolute;
  inset: 5px;
  border: 1.5px dashed rgba(255,255,255,0.55);
  border-radius: 2px;
  pointer-events: none;
}

.crop-1-1  .crop-frame-inner { aspect-ratio: 1/1; }
.crop-4-3  .crop-frame-inner { aspect-ratio: 4/3; }
.crop-5-4  .crop-frame-inner { aspect-ratio: 5/4; }
.crop-4-5  .crop-frame-inner { aspect-ratio: 4/5; }

.crop-info { text-align: center; }

.crop-ratio {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem; color: var(--ink);
  letter-spacing: 0.06em; display: block;
}

.crop-where {
  font-size: 0.54rem; color: var(--stone);
  letter-spacing: 0.1em; text-transform: uppercase;
  line-height: 1.4; display: block;
  margin-top: 2px;
}

/* ── BEFORE/AFTER VISUAL ── */
.before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px !important;
}

@media (max-width: 600px) { .before-after { grid-template-columns: 1fr; } }

.ba-card {
  border-radius: 4px; overflow: hidden;
  border: 1px solid var(--border);
}

.ba-header {
  padding: 8px 14px;
  font-size: 0.58rem; letter-spacing: 0.18em;
  text-transform: uppercase;
  display: flex; align-items: center; gap: 7px;
}

.ba-card.bad .ba-header { background: #f5e8e8; color: #8e4a4a; }
.ba-card.good .ba-header { background: #e8f0e8; color: #4a6e4a; }

.ba-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.ba-card.bad .ba-dot { background: #c87070; }
.ba-card.good .ba-dot { background: #70a870; }

.ba-body {
  background: var(--sand);
  padding: 18px;
  font-size: 0.8rem; color: var(--drift);
  line-height: 1.7; letter-spacing: 0.02em;
}

.ba-body strong { color: var(--ink); }

/* ── STEP LIST ── */
.step-list {
  display: flex; flex-direction: column; gap: 0;
  margin-top: 24px !important;
}

.step-item {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.step-item:last-child { border-bottom: none; }

.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; font-weight: 300;
  color: var(--tide); flex-shrink: 0;
  width: 36px; text-align: center;
  font-style: italic; line-height: 1;
  margin-top: 2px;
}

.step-content h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem; font-weight: 400;
  color: var(--ink); margin-bottom: 6px;
}

.step-content p {
  font-size: 0.82rem; color: var(--drift);
  line-height: 1.75; letter-spacing: 0.02em;
  margin: 0 !important;
}

/* ── SIZE REFERENCE CARDS ── */
.size-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 24px !important;
}

.size-card {
  background: var(--sand);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 18px 20px;
  display: flex; gap: 14px; align-items: flex-start;
}

.size-dot {
  width: 10px; height: 10px;
  border-radius: 50%; flex-shrink: 0;
  margin-top: 4px;
}

.size-card-ratio {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem; color: var(--ink);
  margin-bottom: 3px;
}

.size-card-px {
  font-size: 0.72rem; color: var(--tide);
  letter-spacing: 0.06em; font-weight: 500;
  margin-bottom: 3px;
}

.size-card-desc {
  font-size: 0.62rem; color: var(--stone);
  letter-spacing: 0.08em; text-transform: uppercase;
}

/* ── PRODUCT INTRO ── */
.product-intro {
  background: var(--ink);
  border-radius: 4px;
  padding: 40px 40px;
  margin-top: 48px !important;
  position: relative;
  overflow: hidden;
}

.product-intro::before {
  content: '';
  position: absolute; right: -40px; top: -40px;
  width: 200px; height: 200px; border-radius: 50%;
  background: rgba(74,107,110,0.15);
  pointer-events: none;
}

.product-intro-eyebrow {
  font-size: 0.56rem; letter-spacing: 0.28em;
  text-transform: uppercase; color: #7ab5b8;
  margin-bottom: 14px;
  display: flex; align-items: center; gap: 8px;
}

.product-intro-eyebrow::before { content: ''; width: 20px; height: 1px; background: #7ab5b8; }

.product-intro h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem; font-weight: 300;
  color: rgba(250,247,242,0.92);
  margin-bottom: 14px; letter-spacing: 0.01em;
  line-height: 1.25;
  margin-top: 0 !important;
}

.product-intro > p {
  font-size: 0.84rem; color: rgba(250,247,242,0.5);
  line-height: 1.8; letter-spacing: 0.02em;
  margin-bottom: 20px !important;
}

.product-features {
  display: flex; flex-direction: column; gap: 8px;
  margin-bottom: 28px;
}

.product-feature {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.78rem; color: rgba(250,247,242,0.6);
  letter-spacing: 0.03em;
}

.product-feature::before {
  content: '\2713';
  color: #7ab5b8; font-size: 0.75rem; flex-shrink: 0;
}

.product-intro-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px;
  background: transparent;
  color: rgba(250,247,242,0.9);
  font-size: 0.68rem; letter-spacing: 0.2em;
  font-weight: 400;
  text-transform: uppercase; border-radius: var(--r);
  text-decoration: none;
  border: 1px solid rgba(250,247,242,0.4);
  transition: background 0.2s, border-color 0.2s;
}

.product-intro-cta:hover {
  background: rgba(250,247,242,0.1);
  border-color: rgba(250,247,242,0.7);
  text-decoration: none;
}

/* ── CALLOUT ── */
.callout {
  background: var(--sand);
  border: 1px solid var(--border);
  border-left: 3px solid var(--tide);
  border-radius: 0 3px 3px 0;
  padding: 20px 24px;
}

.callout-label {
  font-size: 0.54rem; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--tide);
  margin-bottom: 8px;
}

.callout p { font-size: 0.86rem; color: var(--ink); margin: 0 !important; line-height: 1.75; }

/* ── CHECKLIST ── */
.checklist {
  background: var(--sand);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 28px 32px;
}

.checklist-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem; color: var(--ink);
  margin-bottom: 18px; letter-spacing: 0.02em;
}

.checklist-items {
  display: flex; flex-direction: column; gap: 12px;
}

.checklist-item {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 0.82rem; color: var(--drift);
  line-height: 1.6; letter-spacing: 0.02em;
}

.check-box {
  width: 16px; height: 16px;
  border: 1.5px solid var(--stone);
  border-radius: 2px; flex-shrink: 0;
  margin-top: 1px;
}

/* ── SIDEBAR ── */
.article-sidebar { position: relative; }

.sidebar-sticky {
  position: sticky; top: 88px;
  display: flex; flex-direction: column; gap: 20px;
}

.sidebar-card {
  background: var(--sand);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 20px 22px;
}

.sidebar-card-title {
  font-size: 0.56rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--drift);
  margin-bottom: 14px;
}

.sidebar-toc { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.sidebar-toc li { font-size: 0; }

.sidebar-toc li a {
  font-size: 0.76rem; color: var(--drift);
  text-decoration: none; line-height: 1.5;
  letter-spacing: 0.02em; transition: color 0.15s;
  display: flex; gap: 8px; align-items: flex-start;
}

.sidebar-toc li a::before {
  content: '\2013'; color: var(--stone); flex-shrink: 0; margin-top: 1px;
}

.sidebar-toc li a:hover { color: var(--tide); }

.sidebar-cta {
  background: var(--tide);
  border-radius: 4px;
  padding: 22px 22px;
  text-align: center;
}

.sidebar-cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem; font-weight: 300;
  color: rgba(255,255,255,0.9);
  margin-bottom: 8px;
}

.sidebar-cta p {
  font-size: 0.72rem; color: rgba(255,255,255,0.6);
  margin-bottom: 14px; line-height: 1.65;
  letter-spacing: 0.02em;
}

.sidebar-cta a {
  display: block; padding: 9px;
  background: rgba(255,255,255,0.15);
  color: #fff; border: 1px solid rgba(255,255,255,0.3);
  font-size: 0.6rem; letter-spacing: 0.18em;
  text-transform: uppercase; border-radius: var(--r);
  text-decoration: none; transition: background 0.15s;
}

.sidebar-cta a:hover { background: rgba(255,255,255,0.25); }

/* ── FOOTER ── */
footer { background: var(--ink); color: rgba(250,247,242,0.6); padding: 56px 56px 36px; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(250,247,242,0.1); margin-bottom: 32px; }
.footer-logo-sm { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 400; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(250,247,242,0.9); margin-bottom: 12px; display: block; }
.footer-logo-sm em { color: #7ab5b8; font-style: italic; }
.footer-tagline-sm { font-size: 0.75rem; line-height: 1.75; color: rgba(250,247,242,0.45); max-width: 260px; letter-spacing: 0.03em; }
.footer-col-title-sm { font-size: 0.58rem; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(250,247,242,0.35); margin-bottom: 16px; }
.footer-links-sm { display: flex; flex-direction: column; gap: 10px; }
.footer-links-sm a { font-size: 0.75rem; color: rgba(250,247,242,0.55); text-decoration: none; letter-spacing: 0.04em; transition: color 0.15s; }
.footer-links-sm a:hover { color: rgba(250,247,242,0.9); }
.footer-bottom-sm { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-copy-sm { font-size: 0.6rem; letter-spacing: 0.1em; color: rgba(250,247,242,0.25); }
.footer-note-sm { font-size: 0.58rem; color: rgba(250,247,242,0.2); letter-spacing: 0.08em; text-align: center; margin-top: 24px; }

@media (max-width: 768px) {
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  footer { padding: 40px 24px 28px; }
}
