/* =========================================================
   THE VELURA EDIT — Magazine stylesheet
   Editorial typography inspired by Women's Health, Goop,
   Vogue & Cosmopolitan. Palette: rose, oxblood, cream, ink.
   ========================================================= */

:root {
  --cream:        #f7f1ea;
  --cream-deep:   #efe6db;
  --paper:        #fbf7f2;
  --ink:          #1a1413;
  --ink-soft:     #2a2220;
  --rose:         #d4a5a0;
  --blush:        #e9c8c2;
  --oxblood:      #6b1f2a;
  --wine:         #8a2b3a;
  --gold:         #b08a4a;
  --rule:         #1a1413;
  --muted:        #6b5e58;

  --serif-display: 'Playfair Display', 'Times New Roman', serif;
  --serif-body:    'Cormorant Garamond', Georgia, serif;
  --sans:          'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--serif-body);
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
a:hover { color: var(--oxblood); }

img { max-width: 100%; display: block; }

/* ---------- Top strip ---------- */
.top-strip {
  background: var(--ink);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 10px 24px;
}
.strip-inner {
  max-width: 1400px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px; flex-wrap: wrap;
}
.strip-inner a { color: var(--blush); margin-left: 18px; }
.strip-inner a:hover { color: #fff; }
.strip-tag a { text-decoration: underline; text-underline-offset: 3px; margin-left: 6px; }

/* ---------- Masthead ---------- */
.masthead {
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
  padding: 28px 24px 0;
}
.masthead-inner {
  max-width: 1400px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.nav-left, .nav-right {
  display: flex; gap: 28px;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.nav-right { justify-content: flex-end; }
.nav-left a, .nav-right a {
  position: relative;
  padding-bottom: 4px;
}
.nav-left a:hover, .nav-right a:hover {
  border-bottom: 1px solid var(--oxblood);
}
.nav-search { font-size: 18px !important; }

.logo {
  text-align: center; line-height: 1;
  display: flex; flex-direction: column; align-items: center; gap: 4px;
}
.logo-mark {
  font-family: var(--serif-body);
  font-style: italic;
  font-size: 14px;
  color: var(--oxblood);
  letter-spacing: 0.08em;
}
.logo-word {
  font-family: var(--serif-display);
  font-weight: 900;
  font-size: 48px;
  letter-spacing: 0.18em;
  color: var(--ink);
}

.masthead-tagline {
  display: flex; align-items: center; justify-content: center;
  gap: 18px;
  padding: 18px 0 16px;
  font-family: var(--serif-body);
  font-style: italic;
  font-size: 14px;
  color: var(--muted);
}
.masthead-tagline .rule {
  flex: 1; max-width: 220px; height: 1px; background: var(--ink);
  opacity: 0.4;
}

/* ---------- Hero / Cover ---------- */
.hero {
  position: relative;
  min-height: 720px;
  display: flex; align-items: flex-end;
  overflow: hidden;
  background: var(--cream-deep);
}
.hero-image {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 25% 30%, rgba(212,165,160,0.55), transparent 55%),
    radial-gradient(circle at 75% 60%, rgba(107,31,42,0.45), transparent 60%),
    linear-gradient(135deg, #2a1a1a 0%, #5a2a30 35%, #d4a5a0 75%, #f7e8e1 100%);
}
.hero-image::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.55) 100%),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.02) 0 2px, transparent 2px 4px);
}
.hero-overlay {
  position: relative; z-index: 2;
  max-width: 1400px; margin: 0 auto;
  padding: 80px 48px;
  color: #fff;
  width: 100%;
}
.kicker {
  display: inline-block;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  padding: 6px 14px;
  border: 1px solid currentColor;
  margin-bottom: 28px;
  color: var(--blush);
}
.kicker.light { color: var(--oxblood); border-color: var(--oxblood); }
.hero-headline {
  font-family: var(--serif-display);
  font-weight: 900;
  font-size: clamp(56px, 9vw, 132px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  text-shadow: 0 2px 30px rgba(0,0,0,0.25);
}
.hero-headline em {
  font-style: italic;
  font-weight: 400;
  color: var(--blush);
}
.hero-deck {
  font-family: var(--serif-body);
  font-size: 22px;
  line-height: 1.5;
  max-width: 640px;
  margin-bottom: 28px;
  color: rgba(255,255,255,0.92);
}
.hero-meta {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
  display: flex; flex-wrap: wrap; gap: 14px; align-items: center;
}
.hero-meta .dot { opacity: 0.6; }
.hero-cta {
  display: inline-block;
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  padding: 16px 32px;
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--paper);
  transition: all 0.25s ease;
}
.hero-cta:hover {
  background: transparent;
  color: var(--paper);
  border-color: var(--paper);
}

/* ---------- In This Issue ---------- */
.in-this-issue {
  max-width: 1400px; margin: 0 auto;
  padding: 100px 48px 60px;
}
.iti-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}
.iti-head h2,
.dept-head,
.fw-title,
.newsletter h2 {
  font-family: var(--serif-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
}
.iti-head p {
  font-family: var(--serif-body);
  font-style: italic;
  font-size: 20px;
  color: var(--muted);
}
.iti-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(0, auto);
  gap: 56px 32px;
}
.iti-card.large { grid-column: span 6; }
.iti-card { grid-column: span 2; }

.iti-card.large .iti-img { height: 520px; }
.iti-card.large .iti-body { max-width: 720px; margin: 0 auto; text-align: center; padding-top: 28px; }
.iti-card.large h3 {
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.05;
}

.iti-img {
  height: 280px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.iti-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.18));
}
.iti-img-1 { background:
  linear-gradient(135deg, #6b1f2a 0%, #d4a5a0 60%, #f7e8e1 100%); }
.iti-img-2 { background:
  linear-gradient(160deg, #2a1a1a 0%, #8a2b3a 70%); }
.iti-img-3 { background:
  linear-gradient(200deg, #efe6db 0%, #d4a5a0 100%); }
.iti-img-4 { background:
  linear-gradient(120deg, #1a1413 0%, #6b1f2a 100%); }
.iti-img-5 { background:
  linear-gradient(180deg, #b08a4a 0%, #efe6db 100%); }
.iti-img-6 { background:
  linear-gradient(140deg, #e9c8c2 0%, #f7f1ea 60%, #b08a4a 100%); }

.iti-body { padding-top: 22px; }
.cat {
  display: inline-block;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--oxblood);
  margin-bottom: 14px;
}
.iti-card h3 {
  font-family: var(--serif-display);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.18;
  margin-bottom: 12px;
  letter-spacing: -0.005em;
}
.iti-card h3:hover { color: var(--oxblood); cursor: pointer; }
.byline {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- Pull break ---------- */
.pull-break {
  background: var(--ink);
  color: var(--cream);
  padding: 100px 48px;
  text-align: center;
}
.pull-mark {
  font-family: var(--serif-display);
  font-size: 120px;
  line-height: 0.5;
  color: var(--rose);
  margin-bottom: 24px;
}
.pull-break blockquote {
  font-family: var(--serif-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(28px, 3.6vw, 46px);
  line-height: 1.25;
  max-width: 980px;
  margin: 0 auto 28px;
  letter-spacing: -0.005em;
}
.pull-break cite {
  font-family: var(--sans);
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blush);
}

/* ---------- Feature well ---------- */
.feature-well {
  max-width: 1400px; margin: 0 auto;
  padding: 100px 48px;
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr) 280px;
  gap: 64px;
}
.fw-rail { position: sticky; top: 24px; align-self: start; }
.fw-rail .kicker { color: var(--oxblood); border-color: var(--oxblood); }
.fw-title {
  font-size: clamp(32px, 3.4vw, 44px);
  margin-bottom: 16px;
}
.fw-deck {
  font-style: italic; color: var(--muted); font-size: 17px;
}
.fw-article {
  font-family: var(--serif-body);
  font-size: 20px;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 640px;
}
.fw-article p { margin-bottom: 22px; }
.fw-article a.brand-link {
  color: var(--oxblood);
  border-bottom: 1px solid var(--oxblood);
  font-weight: 500;
}
.dropcap .cap {
  float: left;
  font-family: var(--serif-display);
  font-weight: 900;
  font-size: 96px;
  line-height: 0.85;
  padding: 6px 12px 0 0;
  color: var(--oxblood);
}
.fw-sub {
  font-family: var(--serif-display);
  font-weight: 700;
  font-size: 26px;
  margin: 36px 0 16px;
  letter-spacing: -0.005em;
}
.inline-pull {
  border-left: 3px solid var(--oxblood);
  padding: 8px 0 8px 24px;
  margin: 28px 0 !important;
  font-family: var(--serif-display);
  font-style: italic;
  font-size: 24px !important;
  line-height: 1.35 !important;
  color: var(--ink);
}
.ip-attr {
  display: block;
  margin-top: 12px;
  font-family: var(--sans);
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.end-mark {
  text-align: center;
  font-size: 14px !important;
  color: var(--oxblood);
  margin: 40px 0 24px !important;
}
.fw-footer {
  border-top: 1px solid var(--rule);
  padding-top: 20px;
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
}
.fw-footer a { color: var(--oxblood); border-bottom: 1px solid var(--oxblood); }

.fw-side { position: sticky; top: 24px; align-self: start; }
.fw-side h4 {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--ink);
}
.fw-side ul { list-style: none; margin-bottom: 40px; }
.fw-side li {
  display: flex; justify-content: space-between; gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  font-family: var(--serif-body);
}
.fw-side li a { font-size: 17px; line-height: 1.3; flex: 1; }
.fw-side li a:hover { color: var(--oxblood); }
.fw-side li span {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--muted);
  text-transform: uppercase;
}
.fw-side-shop {
  background: var(--cream);
  padding: 28px 24px;
  border-top: 3px solid var(--oxblood);
}
.fw-side-shop h5 {
  font-family: var(--serif-display);
  font-size: 26px;
  margin: 12px 0;
}
.fw-side-shop p {
  font-size: 16px;
  line-height: 1.45;
  color: var(--muted);
  margin-bottom: 16px;
}
.side-cta {
  display: inline-block;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--oxblood);
  border-bottom: 1px solid var(--oxblood);
  padding-bottom: 4px;
}

/* ---------- Departments ---------- */
.departments {
  background: var(--cream);
  padding: 100px 48px;
}
.dept-head {
  text-align: center;
  margin-bottom: 64px;
}
.dept-grid {
  max-width: 1400px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 64px 80px;
}
.dept {
  border-top: 2px solid var(--ink);
  padding-top: 28px;
}
.dept-num {
  font-family: var(--serif-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.2em;
  color: var(--oxblood);
  display: block;
  margin-bottom: 12px;
}
.dept h3 {
  font-family: var(--serif-display);
  font-weight: 700;
  font-size: 36px;
  line-height: 1.1;
  margin-bottom: 12px;
}
.dept-deck {
  font-family: var(--serif-body);
  font-style: italic;
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 20px;
  max-width: 520px;
}
.dept ul { list-style: none; }
.dept li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}
.dept li a {
  font-family: var(--serif-body);
  font-size: 19px;
  line-height: 1.35;
}
.dept li a:hover { color: var(--oxblood); font-style: italic; }

/* ---------- Newsletter ---------- */
.newsletter {
  background: var(--blush);
  padding: 120px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.newsletter::before, .newsletter::after {
  content: '';
  position: absolute;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(107,31,42,0.18), transparent 70%);
}
.newsletter::before { top: -120px; left: -100px; }
.newsletter::after { bottom: -160px; right: -120px; }

.news-inner { max-width: 720px; margin: 0 auto; position: relative; z-index: 2; }
.newsletter h2 { color: var(--ink); }
.newsletter p {
  font-family: var(--serif-body);
  font-size: 20px;
  line-height: 1.5;
  color: var(--ink-soft);
  margin-bottom: 32px;
}
.news-form {
  display: flex; gap: 12px;
  max-width: 540px; margin: 0 auto 18px;
}
.news-form input {
  flex: 1;
  padding: 18px 20px;
  border: 1px solid var(--ink);
  background: transparent;
  font-family: var(--serif-body);
  font-size: 18px;
  color: var(--ink);
}
.news-form input::placeholder { color: var(--muted); font-style: italic; }
.news-form input:focus { outline: none; border-color: var(--oxblood); background: rgba(255,255,255,0.4); }
.news-form button {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0 32px;
  background: var(--ink);
  color: var(--paper);
  border: none;
  cursor: pointer;
  transition: background 0.25s;
}
.news-form button:hover { background: var(--oxblood); }
.news-fine {
  font-family: var(--sans) !important;
  font-size: 11px !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase;
  color: var(--muted) !important;
  margin: 0 !important;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: var(--cream);
  padding: 80px 48px 28px;
}
.foot-top {
  max-width: 1400px; margin: 0 auto 48px;
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: 64px;
}
.foot-logo {
  font-family: var(--serif-display);
  font-weight: 900;
  font-size: 36px;
  letter-spacing: 0.22em;
  display: block;
  margin-bottom: 18px;
}
.foot-brand p {
  font-family: var(--serif-body);
  font-size: 17px;
  line-height: 1.55;
  color: rgba(247,241,234,0.75);
  max-width: 420px;
}
.foot-brand a {
  color: var(--blush);
  border-bottom: 1px solid var(--blush);
}
.foot-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.foot-cols h6 {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-bottom: 18px;
  color: var(--rose);
}
.foot-cols a {
  display: block;
  font-family: var(--serif-body);
  font-size: 17px;
  padding: 6px 0;
  color: rgba(247,241,234,0.85);
}
.foot-cols a:hover { color: var(--blush); font-style: italic; }

.foot-bottom {
  max-width: 1400px; margin: 0 auto;
  border-top: 1px solid rgba(247,241,234,0.18);
  padding-top: 24px;
  display: flex; justify-content: space-between; gap: 24px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(247,241,234,0.55);
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .feature-well { grid-template-columns: 1fr; gap: 48px; }
  .fw-rail, .fw-side { position: static; }
  .iti-grid { grid-template-columns: repeat(4, 1fr); }
  .iti-card.large { grid-column: span 4; }
  .iti-card { grid-column: span 2; }
}

@media (max-width: 800px) {
  .strip-inner { justify-content: center; text-align: center; }
  .strip-tag { display: none; }
  .masthead-inner { grid-template-columns: 1fr; text-align: center; }
  .nav-left, .nav-right { justify-content: center; flex-wrap: wrap; gap: 18px; font-size: 11px; }
  .logo-word { font-size: 36px; }
  .masthead-tagline .rule { max-width: 60px; }
  .hero { min-height: 600px; }
  .hero-overlay { padding: 48px 24px; }
  .in-this-issue, .feature-well, .departments, .newsletter, .site-footer { padding-left: 24px; padding-right: 24px; }
  .iti-grid { grid-template-columns: 1fr; gap: 48px; }
  .iti-card.large, .iti-card { grid-column: span 1; }
  .iti-card.large .iti-img { height: 320px; }
  .dept-grid { grid-template-columns: 1fr; gap: 48px; }
  .news-form { flex-direction: column; }
  .news-form button { padding: 18px; }
  .foot-top { grid-template-columns: 1fr; }
  .foot-cols { grid-template-columns: repeat(2, 1fr); }
  .foot-bottom { flex-direction: column; text-align: center; }
  .pull-break { padding: 64px 24px; }
  .dropcap .cap { font-size: 72px; }
}
