/* ============================================================
   JOKARI CLUB ZÜRICH — styles.css
   Palette : #1A3A5C navy · #FFFFFF white · #F5F0E8 sand · #C0392B red
   Type    : Playfair Display (titles) + Lato (body)
   ============================================================ */

:root {
  --navy: #1A3A5C;
  --navy-deep: #122a44;
  --white: #FFFFFF;
  --sand: #F5F0E8;
  --sand-deep: #E8DEC9;
  --red: #C0392B;
  --red-deep: #9c2c20;
  --ink: #1A1714;
  --muted: rgba(26, 23, 20, 0.62);
  --line: rgba(26, 58, 92, 0.16);
  --line-strong: rgba(26, 58, 92, 0.32);

  --serif: "Playfair Display", Georgia, serif;
  --sans: "Lato", -apple-system, system-ui, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;

  --rail: clamp(20px, 5vw, 80px);
  --section-gap: clamp(80px, 10vw, 130px);
}

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

body {
  background: var(--white);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
img { max-width: 100%; display: block; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 0;
  line-height: 1.1;
}

.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}
.eyebrow-red { color: var(--red); }
.eyebrow-cream { color: rgba(245, 240, 232, 0.7); }

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--rail);
}
.container-narrow {
  width: 100%;
  max-width: 880px;
  margin: 0 auto;
  padding: 0 var(--rail);
}

/* ============ Nav ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.93);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px var(--rail);
  max-width: 1440px;
  margin: 0 auto;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-mark {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--sand);
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
  position: relative;
}
.nav-mark::after {
  content: "";
  position: absolute;
  top: 4px; right: 6px;
  width: 4px; height: 4px;
  background: var(--red);
  border-radius: 50%;
}
.nav-title {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1;
}
.nav-title small {
  display: block;
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
  font-weight: 700;
}
.nav-links {
  display: flex;
  gap: 26px;
  align-items: center;
}
.nav-link {
  font-size: 14px;
  color: var(--ink);
  white-space: nowrap;
  padding: 6px 0;
  position: relative;
  transition: color 0.15s ease;
}
.nav-link:hover, .nav-link.active { color: var(--red); }
.nav-link.active::after {
  content: "";
  position: absolute;
  inset: auto 0 -3px 0;
  height: 1px;
  background: var(--red);
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.lang-toggle {
  display: flex;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  overflow: hidden;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.lang-toggle button {
  background: transparent;
  border: none;
  padding: 6px 12px;
  color: var(--muted);
  font: inherit;
}
.lang-toggle button.active { background: var(--navy); color: var(--sand); }

.nav-burger {
  display: none;
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  width: 38px; height: 38px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  padding: 0;
}
.nav-burger span { width: 16px; height: 1.5px; background: var(--ink); }

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--red); color: var(--white); }
.btn-primary:hover { background: var(--red-deep); }
.btn-navy { background: var(--navy); color: var(--sand); }
.btn-navy:hover { background: var(--navy-deep); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn-ghost:hover { background: var(--ink); color: var(--white); }
.btn-cream { background: var(--sand); color: var(--navy); }

/* ============ Placeholders (striped) ============ */
.ph {
  position: relative;
  background: var(--sand);
  overflow: hidden;
}
.ph::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(135deg, #EAD9B8 0 14px, #DCC79C 14px 28px);
}
.ph--navy::before {
  background: repeating-linear-gradient(135deg, #1A3A5C 0 14px, #234d76 14px 28px);
}
.ph--red::before {
  background: repeating-linear-gradient(135deg, #C0392B 0 14px, #a02e22 14px 28px);
}
.ph--sand::before {
  background: repeating-linear-gradient(135deg, #E8DEC9 0 14px, #D9CAA8 14px 28px);
}
.ph-corner, .ph-label {
  position: absolute;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  z-index: 1;
  color: rgba(26, 23, 20, 0.6);
}
.ph-corner { top: 14px; left: 16px; }
.ph-label {
  bottom: 14px; left: 16px; right: 16px;
  display: flex; justify-content: space-between;
}
.ph--navy .ph-corner, .ph--navy .ph-label,
.ph--red .ph-corner, .ph--red .ph-label { color: rgba(245, 240, 232, 0.8); }
.ph-sun {
  position: absolute;
  width: 36%; aspect-ratio: 1;
  border-radius: 50%;
  top: 18%; right: 12%;
  background: radial-gradient(circle, #F5E8C8, #E5C68E);
  z-index: 1; opacity: 0.92;
}

/* ============ Tag ============ */
.tag {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
}
.tag-red { color: var(--red); border-color: var(--red); }
.tag-navy { color: var(--navy); border-color: var(--navy); }
.tag-filled-navy { background: var(--navy); color: var(--sand); border-color: var(--navy); }
.tag-filled-red { background: var(--red); color: var(--white); border-color: var(--red); }

/* ============ Form ============ */
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.field input, .field textarea, .field select {
  font-family: var(--sans);
  font-size: 15px;
  padding: 13px 16px;
  border: 1px solid var(--line-strong);
  background: var(--white);
  border-radius: 2px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.15s ease;
}
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--navy); }
.field textarea { resize: vertical; min-height: 110px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.radio-card {
  display: block;
  border: 1px solid var(--line-strong);
  padding: 22px;
  border-radius: 4px;
  background: var(--white);
  cursor: pointer;
  transition: all 0.15s ease;
  position: relative;
}
.radio-card.selected { border-color: var(--navy); background: var(--sand); box-shadow: 0 0 0 1px var(--navy); }
.radio-card input { position: absolute; opacity: 0; }
.radio-card-label { font-family: var(--serif); font-size: 22px; display: block; margin-bottom: 4px; }
.radio-card-meta {
  font-size: 10px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--red); margin-bottom: 12px; display: block;
}
.radio-card-desc { font-size: 13px; color: var(--muted); line-height: 1.55; }

.checkbox-row {
  display: flex; align-items: start; gap: 12px;
  font-size: 14px; line-height: 1.5; cursor: pointer;
}
.checkbox-row input { margin-top: 4px; }

.form-status {
  padding: 18px 22px;
  border: 1px solid var(--line);
  background: var(--sand);
  font-size: 14px;
  display: none;
  margin-top: 18px;
}
.form-status.success { background: #E8F0E5; border-color: #7BA371; color: #2F5126; display: block; }
.form-status.error { background: #FBEAE7; border-color: var(--red); color: var(--red-deep); display: block; }

/* ============ Cards ============ */
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}
.card:hover { transform: translateY(-2px); box-shadow: 0 14px 40px -20px rgba(26, 58, 92, 0.25); }

/* ============ Footer ============ */
.footer {
  background: var(--navy);
  color: var(--sand);
  padding: 80px 0 30px;
  margin-top: 110px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.4fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(245, 240, 232, 0.2);
}
.footer-col h4 {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.6);
  margin-bottom: 18px;
}
.footer-col a { display: block; padding: 5px 0; font-size: 14px; opacity: 0.85; cursor: pointer; }
.footer-col a:hover { opacity: 1; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 28px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.55);
}

.newsletter-inline {
  display: flex;
  margin-top: 8px;
  border: 1px solid rgba(245, 240, 232, 0.3);
  border-radius: 999px;
  overflow: hidden;
}
.newsletter-inline input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 11px 16px;
  color: var(--sand);
  font: inherit;
  font-size: 14px;
  outline: none;
}
.newsletter-inline input::placeholder { color: rgba(245, 240, 232, 0.5); }
.newsletter-inline button {
  background: var(--red);
  color: var(--white);
  border: none;
  padding: 0 18px;
  font-size: 14px;
  font-weight: 700;
}

/* ============ Hero (Home) ============ */
.hero {
  padding: 50px 0 80px;
}
.hero-meta {
  display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 14px;
  margin-bottom: 40px;
}
.hero-title {
  font-size: clamp(48px, 8vw, 116px);
  letter-spacing: -0.035em;
  line-height: 0.96;
  font-weight: 500;
  margin: 0;
}
.hero-title em { font-style: italic; color: var(--red); }
.hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 50px;
  align-items: end;
  margin-top: 44px;
}
.hero-lead {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(26, 23, 20, 0.85);
}
.hero-cta { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }

/* ============ Generic sections ============ */
.section { padding: var(--section-gap) 0; }
.section-cream { background: var(--sand); }
.section-navy { background: var(--navy); color: var(--sand); }
.section-navy h1, .section-navy h2, .section-navy h3 { color: var(--sand); }
.section-navy .eyebrow { color: rgba(245, 240, 232, 0.6); }

.section-head {
  display: flex; justify-content: space-between;
  align-items: end; gap: 24px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}
.section-title {
  font-size: clamp(36px, 4.5vw, 64px);
  letter-spacing: -0.02em;
  margin-top: 18px;
  white-space: pre-line;
}
.section-lead {
  color: var(--muted);
  max-width: 460px;
  font-size: 16px;
  line-height: 1.6;
}

/* About / manifesto */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: start;
}
.about-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.about-images .ph-tall { aspect-ratio: 3/4; }
.about-images .ph-wide { grid-column: span 2; aspect-ratio: 16/7; }

/* Stats */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.stat-item {
  padding-left: 30px;
  border-left: 1px solid rgba(245, 240, 232, 0.2);
}
.stat-item:first-child { padding-left: 0; border-left: none; }
.stat-n {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(56px, 7vw, 92px);
  line-height: 1;
  color: var(--sand);
}
.stat-l {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.75;
  margin-top: 12px;
}

/* Event card */
.event-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.event-grid--2 { grid-template-columns: repeat(2, 1fr); }
.event-thumb { aspect-ratio: 16/10; }
.event-body { padding: 24px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.event-tags { display: flex; gap: 8px; }
.event-title { font-size: 26px; letter-spacing: -0.01em; margin-top: 4px; }
.event-meta {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex; flex-direction: column; gap: 4px;
}
.event-desc { font-size: 14px; color: rgba(26, 23, 20, 0.75); line-height: 1.55; margin: 0; }
.event-foot {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: auto; padding-top: 16px; border-top: 1px solid var(--line);
}
.event-price { font-family: var(--serif); font-style: italic; font-size: 22px; }

/* Newsletter strip */
.newsletter-strip {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
}
.newsletter-card {
  background: var(--white);
  border: 1px solid var(--line-strong);
  padding: 32px;
  display: flex; flex-direction: column; gap: 16px;
}

/* ============ Magazine page ============ */
.mag-masthead {
  padding: 50px 0 30px;
  border-bottom: 2px solid var(--ink);
}
.mag-masthead-row {
  display: flex; justify-content: space-between; align-items: baseline;
  flex-wrap: wrap; gap: 12px;
}
.mag-title {
  font-size: clamp(56px, 10vw, 170px);
  letter-spacing: -0.04em;
  line-height: 0.9;
  font-style: italic;
  margin-top: 18px;
  white-space: pre-line;
}
.mag-lead {
  margin-top: 22px;
  font-size: 17px;
  line-height: 1.65;
  color: rgba(26, 23, 20, 0.8);
  max-width: 640px;
}
.mag-featured {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 50px;
  margin-top: 28px;
}
.mag-side { display: flex; flex-direction: column; gap: 32px; }
.mag-side article { border-top: 1px solid var(--line); padding-top: 24px; }
.mag-featured h2 {
  font-size: clamp(34px, 4vw, 54px);
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-top: 14px;
}
.mag-featured-img { aspect-ratio: 16/10; }

.reco-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 44px; }
.reco-img { aspect-ratio: 4/5; }
.reco-list { list-style: none; padding: 0; margin: 18px 0 0; }
.reco-list li {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: baseline;
  padding: 13px 0;
  border-top: 1px solid var(--line);
}
.reco-list .reco-n {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--red);
  letter-spacing: 0.1em;
}
.reco-list .reco-title {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
}
.reco-list .reco-author { font-size: 12px; color: var(--muted); margin-top: 2px; }
.reco-list .reco-year { font-family: var(--mono); font-size: 11px; color: var(--muted); }

/* Forum */
.forum {
  border: 1px solid var(--line-strong);
}
.forum-row {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 22px;
  align-items: center;
  padding: 20px 26px;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  transition: background 0.15s ease;
}
.forum-row:last-child { border-bottom: none; }
.forum-row:hover { background: var(--sand); }
.forum-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--sand);
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
}
.forum-title { font-family: var(--serif); font-size: 19px; }
.forum-meta {
  margin-top: 4px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.forum-replies { text-align: right; }
.forum-replies .n { font-family: var(--serif); font-style: italic; font-size: 22px; }
.forum-replies .l {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.forum-age {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  min-width: 110px;
  text-align: right;
}

/* Jokari page */
.history-cols {
  columns: 2 320px;
  column-gap: 40px;
  font-size: 17px;
  line-height: 1.75;
  color: rgba(26, 23, 20, 0.85);
  margin-top: 32px;
}
.history-cols p { margin: 0 0 1em; break-inside: avoid; }
.dropcap::first-letter {
  font-family: var(--serif);
  font-style: italic;
  font-size: 78px;
  line-height: 0.85;
  float: left;
  margin: 8px 10px 0 0;
  color: var(--red);
}
.rules-grid {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
.rule-card {
  border-top: 1px solid rgba(245, 240, 232, 0.3);
  padding-top: 20px;
}
.rule-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--red);
}
.rule-title { font-family: var(--serif); font-size: 22px; margin-top: 10px; color: var(--sand); }
.rule-body { margin-top: 12px; font-size: 14px; line-height: 1.6; opacity: 0.8; }

.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
  grid-auto-rows: 140px;
}
.gallery > div { position: relative; }
.gallery .g-1 { grid-column: span 5; grid-row: span 2; }
.gallery .g-2 { grid-column: span 4; }
.gallery .g-3 { grid-column: span 3; }
.gallery .g-4 { grid-column: span 3; }
.gallery .g-5 { grid-column: span 4; }
.gallery .g-6 { grid-column: span 5; grid-row: span 2; }
.gallery .g-7 { grid-column: span 4; }
.gallery .g-8 { grid-column: span 3; }
.gallery > div .ph { position: absolute; inset: 0; }

/* Events page */
.calendar-strip {
  display: flex;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow-x: auto;
}
.cal-cell {
  flex: 1;
  min-width: 180px;
  padding: 22px;
  border-left: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 6px;
}
.cal-cell:first-child { border-left: none; }
.cal-month {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
}
.cal-day {
  font-family: var(--serif);
  font-style: italic;
  font-size: 38px;
  line-height: 1;
}
.cal-title { font-size: 13px; margin-top: 4px; }
.cal-loc {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Info blocks (Contact) */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 70px;
}
.info-block {
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.info-block h3 {
  font-family: var(--serif);
  font-size: 26px;
  margin-top: 10px;
  letter-spacing: -0.01em;
}
.info-block .info-lines {
  margin-top: 6px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

/* Shop */
.partner-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line-strong);
}
.partner-img { min-height: 380px; }
.partner-text {
  padding: 50px 44px;
  background: var(--sand);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.partner-name {
  font-family: var(--serif);
  font-style: italic;
  font-size: 50px;
  letter-spacing: -0.02em;
  margin-top: 14px;
  line-height: 1;
}
.partner-code {
  padding: 8px 14px;
  border: 1px dashed var(--red);
  color: var(--red);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.product { display: flex; flex-direction: column; gap: 12px; }
.product-img { aspect-ratio: 4/5; }
.product-row {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-top: 4px;
}
.product-name { font-family: var(--serif); font-size: 22px; letter-spacing: -0.01em; }
.product-price { font-family: var(--serif); font-style: italic; font-size: 18px; }
.product-desc { font-size: 13px; color: var(--muted); line-height: 1.55; margin: 0; }
.product-link {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-top: 4px;
}

/* Stepper for event registration */
.stepper {
  margin-top: 40px;
  display: flex;
  border-top: 1px solid var(--line-strong);
}
.step {
  flex: 1;
  padding: 16px 14px 0;
  border-top: 2px solid transparent;
  margin-top: -1px;
  opacity: 0.4;
}
.step.active, .step.done {
  border-top-color: var(--red);
  opacity: 1;
}
.step .step-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.step.active .step-label { color: var(--red); }

/* Sun ornament */
.sun {
  display: inline-block;
}

/* Utility */
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 36px; }
.text-center { text-align: center; }

/* ============ Responsive ============ */
@media (max-width: 980px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    padding: 20px var(--rail);
    gap: 14px;
  }
  .hero-grid, .about-grid, .newsletter-strip, .contact-grid,
  .partner-block, .mag-featured { grid-template-columns: 1fr; gap: 36px; }
  .event-grid, .event-grid--2, .product-grid, .reco-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .rules-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .field-row { grid-template-columns: 1fr; }
  .radio-group { grid-template-columns: 1fr !important; }
  .gallery { grid-auto-rows: 120px; }
  .gallery > div { grid-column: span 6 !important; grid-row: auto !important; }
  .partner-img { min-height: 280px; }
  .forum-row { grid-template-columns: auto 1fr; }
  .forum-replies, .forum-age { display: none; }
  .stepper { flex-wrap: wrap; }
  .step { min-width: 50%; padding: 12px 8px 0; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 18px; }
  .stat-item { padding-left: 16px; }
  .nav-title { display: none; }
  .lang-toggle button { padding: 5px 10px; }
}

/* ============ News & Articles (Phase A) ============ */
.news-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 28px;
  margin-top: 36px;
}
.news-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.news-card:hover { transform: translateY(-2px); box-shadow: 0 14px 40px -20px rgba(26, 58, 92, 0.25); }
.news-card-img { aspect-ratio: 16/10; }
.news-card.featured .news-card-img { aspect-ratio: 4/3; }
.news-card-body { padding: 24px 24px 28px; display: flex; flex-direction: column; flex: 1; }
.news-card .news-meta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 12px;
  display: flex; gap: 14px; align-items: center;
}
.news-card .news-cat {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
}
.news-card h3 {
  font-size: 24px;
  letter-spacing: -0.01em;
  line-height: 1.18;
}
.news-card.featured h3 { font-size: 34px; }
.news-card p {
  margin: 12px 0 0;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(26,23,20,0.78);
}
.news-card .news-card-link {
  margin-top: auto;
  padding-top: 18px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
@media (max-width: 920px) {
  .news-grid { grid-template-columns: 1fr; }
}

/* Category tabs (Lifestyle) */
.cat-tabs {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin: 28px 0 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.cat-tab {
  background: transparent;
  border: 1px solid var(--line-strong);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 10px 18px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.15s ease;
}
.cat-tab:hover { background: var(--sand); }
.cat-tab.active { background: var(--navy); color: var(--sand); border-color: var(--navy); }

.cat-select-wrap {
  display: none;
  margin: 24px 0 8px;
}
.cat-select {
  width: 100%;
  font-family: var(--sans);
  font-size: 14px;
  padding: 14px 16px;
  border: 1px solid var(--line-strong);
  background: var(--white);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%231A3A5C' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}
@media (max-width: 720px) {
  .cat-tabs { display: none; }
  .cat-select-wrap { display: block; }
}

/* Article card (grid item, used on lifestyle & list pages) */
.art-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 36px 28px;
  margin-top: 36px;
}
.art-card { display: flex; flex-direction: column; }
.art-card-img { aspect-ratio: 4/3; margin-bottom: 16px; }
.art-card .art-cat {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 8px;
}
.art-card h3 {
  font-size: 24px;
  letter-spacing: -0.005em;
  line-height: 1.2;
}
.art-card p {
  margin: 10px 0 0;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(26,23,20,0.78);
}
.art-card .art-meta {
  margin-top: 14px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--muted);
}

/* Top-5 list (per category on lifestyle landing) */
.cat-block { margin-top: 70px; }
.cat-block-head {
  display: flex; align-items: baseline; justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--ink);
  margin-bottom: 28px;
  gap: 18px; flex-wrap: wrap;
}
.cat-block-head h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 42px);
  letter-spacing: -0.01em;
}
.cat-block-head .see-all {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
}
.cat-list {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 56px;
}
.cat-list li {
  display: grid;
  grid-template-columns: 38px 1fr auto;
  align-items: start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.cat-list li:last-child, .cat-list li:nth-last-child(2):nth-child(odd) { border-bottom: 1px solid var(--line); }
.cat-list .cat-n {
  font-family: var(--mono);
  font-size: 14px;
  color: var(--red);
  font-weight: 700;
}
.cat-list .cat-t { font-family: var(--serif); font-size: 20px; line-height: 1.2; letter-spacing: -0.005em; }
.cat-list .cat-x { font-size: 13px; color: var(--muted); margin-top: 4px; }
.cat-list .cat-d {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.06em;
  white-space: nowrap;
}
@media (max-width: 760px) {
  .cat-list { grid-template-columns: 1fr; gap: 0; }
}

/* Article detail / news detail page */
.post-hero { padding: 60px 0 40px; }
.post-breadcrumb {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 28px;
}
.post-breadcrumb a { color: var(--red); }
.post-cat {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
  display: inline-block;
}
.post-title {
  font-family: var(--serif);
  font-size: clamp(36px, 6vw, 76px);
  letter-spacing: -0.025em;
  line-height: 1.04;
  margin: 0;
  max-width: 18ch;
}
.post-byline {
  margin-top: 28px;
  font-size: 14px;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
}
.post-byline strong { color: var(--ink); font-weight: 700; }
.post-cover { aspect-ratio: 16/8; margin: 40px 0 50px; }
.post-body {
  font-size: 18px;
  line-height: 1.75;
  color: rgba(26,23,20,0.88);
  max-width: 720px;
  margin: 0 auto;
}
.post-body p { margin: 0 0 22px; }
.post-body p:first-of-type::first-letter {
  font-family: var(--serif);
  font-size: 5.4em;
  float: left;
  line-height: 0.9;
  padding: 6px 12px 0 0;
  color: var(--red);
}
.post-foot {
  max-width: 720px;
  margin: 60px auto 0;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}
.post-related { margin-top: 90px; }

/* Simplified shop block */
.shop-now {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  margin-top: 36px;
}
.shop-soon {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}
.shop-soon-card {
  border: 1px dashed var(--line-strong);
  padding: 28px 24px;
  position: relative;
}
.shop-soon-card .soon-tag {
  position: absolute; top: 16px; right: 16px;
  background: var(--sand);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  padding: 6px 10px;
  color: var(--muted);
}
.shop-soon-card h4 {
  font-size: 22px;
  letter-spacing: -0.005em;
  margin: 50px 0 8px;
}
.shop-soon-card p { margin: 0; font-size: 13px; color: var(--muted); line-height: 1.55; }
@media (max-width: 820px) {
  .shop-now { grid-template-columns: 1fr; }
  .shop-soon { grid-template-columns: 1fr; }
}

/* Forum-style post on lifestyle landing — reuse forum-row */
.empty-state {
  padding: 60px 24px;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
  border: 1px dashed var(--line-strong);
}
