@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;700;800&family=Source+Sans+3:wght@400;500;600;700&display=swap');

:root {
  --bg: #f2f3f5;
  --panel: #ffffff;
  --ink: #151515;
  --soft: #6b7280;
  --line: #e5e7eb;
  --primary: #111827;
  --accent: #b91c1c;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: "Source Sans 3", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.72;
}

.wrap {
  width: min(1220px, 94vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(8px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.logo {
  text-decoration: none;
  color: var(--primary);
  font-family: "Playfair Display", serif;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

nav a {
  text-decoration: none;
  color: #374151;
  margin-left: 18px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.hero { padding: 34px 0 14px; }
.hero-grid {
  display: grid;
  grid-template-columns: 2.1fr 1fr;
  gap: 18px;
}

.hero-card,
.panel,
.card,
.article-shell {
  background: var(--panel);
  border: 1px solid var(--line);
}

.hero-card,
.article-shell {
  box-shadow: 0 14px 28px rgba(17, 24, 39, 0.08);
}

.hero-card img,
.card img,
.article-shell img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.hero-card .inner,
.card .inner,
.panel,
.article-content {
  padding: 18px;
}

.kicker {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
}

h1, h2, h3 {
  margin: 0 0 10px;
  font-family: "Playfair Display", serif;
  line-height: 1.25;
}

h1 { font-size: clamp(30px, 4vw, 48px); }
h2 { font-size: clamp(24px, 2.6vw, 34px); }
h3 { font-size: clamp(21px, 1.8vw, 27px); }

a { color: inherit; }

.meta {
  margin: 0;
  color: var(--soft);
  font-size: 15px;
}

.btn {
  display: inline-block;
  margin-top: 12px;
  text-decoration: none;
  color: white;
  background: var(--primary);
  padding: 10px 16px;
  font-weight: 700;
}

.section { padding: 16px 0 30px; }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 12px;
  margin-bottom: 10px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 14px;
}

.magazine-grid .card {
  grid-column: span 4;
  display: flex;
  flex-direction: column;
}

.magazine-grid .card:nth-child(1) { grid-column: span 8; }
.magazine-grid .card:nth-child(2) { grid-column: span 4; }
.magazine-grid .card:nth-child(3) { grid-column: span 4; }
.magazine-grid .card:nth-child(4) { grid-column: span 4; }
.magazine-grid .card:nth-child(5) { grid-column: span 4; }
.magazine-grid .card:nth-child(6) { grid-column: span 8; }

.magazine-grid .card:nth-child(1) img,
.magazine-grid .card:nth-child(6) img {
  aspect-ratio: 16 / 8.5;
}

.card p { margin: 0; color: var(--soft); }

.editorial-strip {
  background: linear-gradient(120deg, #111827, #1f2937);
  color: #fff;
  border-radius: 14px;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.editorial-strip .meta { color: #d1d5db; }
.editorial-strip .btn { background: #fff; color: #111827; white-space: nowrap; }

.article-shell {
  max-width: 900px;
  margin: 0 auto;
}

.article-content p {
  margin: 0 0 14px;
  font-size: 18px;
}

.footer {
  border-top: 1px solid var(--line);
  color: var(--soft);
  background: #fff;
  padding: 20px 0 32px;
}

ul { padding-left: 20px; }

@media (max-width: 980px) {
  .hero-grid,
  .cards {
    grid-template-columns: 1fr;
  }
}


.split-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 14px;
}

.editorial-note ul { margin: 10px 0 0; padding-left: 18px; }
.editorial-note li { margin-bottom: 8px; }

.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.chip-list span {
  border: 1px solid var(--line);
  background: #f9fafb;
  padding: 6px 10px;
  font-size: 13px;
  font-weight: 700;
}

.lookbook-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.lookbook-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid var(--line);
}

.lookbook-grid img:nth-child(1) { grid-column: span 2; aspect-ratio: 1/1.2; }
.lookbook-grid img:nth-child(2) { grid-column: span 2; aspect-ratio: 1/1.2; }
.lookbook-grid img:nth-child(3) { grid-column: span 2; aspect-ratio: 1/1.2; }
.lookbook-grid img:nth-child(4) { grid-column: span 3; aspect-ratio: 16/9; }
.lookbook-grid img:nth-child(5) { grid-column: span 1; aspect-ratio: 1/1; }
.lookbook-grid img:nth-child(6) { grid-column: span 2; aspect-ratio: 1/1; }

@media (max-width: 980px) {
  .split-grid { grid-template-columns: 1fr; }
  .lookbook-grid { grid-template-columns: 1fr 1fr; }
  .lookbook-grid img { grid-column: span 1 !important; aspect-ratio: 1/1; }
}
