/* ============================================================
   sabates.cat — Full shared stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=DM+Sans:wght@300;400;500&family=Playfair+Display:ital,wght@1,400;1,700&display=swap');

/* ── VARIABLES ── */
:root {
  --cream: #F5F0E8;
  --ink: #1A1410;
  --terra: #8B4A2B;
  --gold: #C9A96E;
  --muted: #7A6E65;
  --light-border: #E0D8CC;
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
img { max-width: 100%; display: block; }
body {
  background: var(--cream);
  color: var(--ink);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

/* ── HEADER ── */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 2px solid var(--ink);
  padding: 0 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
  animation: slideDown 0.6s ease;
}
@keyframes slideDown {
  from { transform: translateY(-100%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink);
  text-decoration: none;
}
.logo span { color: var(--terra); }
nav {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
nav a {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
nav a:hover { color: var(--terra); }
.header-right {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.btn-newsletter {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--ink);
  color: var(--cream);
  border: none;
  padding: 0.45rem 1rem;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-newsletter:hover { background: var(--terra); }

/* ── SECTION LABEL ── */
.section-label {
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--light-border);
}

/* ── FOOTER ── */
footer {
  background: var(--ink);
  color: rgba(245,240,232,0.5);
  padding: 3rem 4rem 1.5rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(245,240,232,0.1);
  margin-bottom: 1.5rem;
}
.footer-brand .logo { color: var(--cream); display: block; margin-bottom: 1rem; font-size: 1.3rem; }
.footer-brand p { font-size: 0.78rem; line-height: 1.7; max-width: 280px; }
.footer-col h4 {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.4);
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.5rem; }
.footer-col a {
  color: rgba(245,240,232,0.55);
  text-decoration: none;
  font-size: 0.8rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── TICKER ── */
.ticker {
  background: var(--terra);
  color: #fff;
  padding: 0.6rem 0;
  overflow: hidden;
}
.ticker-track {
  display: flex;
  gap: 4rem;
  white-space: nowrap;
  animation: ticker 35s linear infinite;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.ticker-item::before { content: '✦'; margin-right: 4rem; }

/* ============================================================
   INDEX PAGE
   ============================================================ */

/* ── HERO ── */
.hero {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(70vh - 56px);
  border-bottom: 1px solid var(--light-border);
}
.hero-left {
  padding: 3.5rem 3rem 3rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--light-border);
  animation: fadeUp 0.9s ease 0.2s both;
}
@keyframes fadeUp {
  from { transform: translateY(30px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
.hero-tag {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.hero-tag::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--terra);
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.6rem, 4.5vw, 4.4rem);
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 1.4rem;
  color: var(--ink);
}
.hero-title em { font-style: italic; color: var(--terra); }
.hero-desc {
  font-size: 0.88rem;
  line-height: 1.8;
  color: var(--muted);
  max-width: 380px;
  margin-bottom: 2rem;
}
.hero-cta { display: flex; gap: 1rem; align-items: center; }
.cta-primary {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--ink);
  color: #fff;
  border: none;
  padding: 0.75rem 1.6rem;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
  display: inline-block;
}
.cta-primary:hover { background: var(--terra); }
.cta-secondary {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  border-bottom: 1px solid var(--light-border);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.cta-secondary:hover { color: var(--ink); border-color: var(--ink); }
.hero-right {
  position: relative;
  overflow: hidden;
  animation: fadeIn 1.1s ease 0.1s both;
  background: var(--ink);
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-right::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, transparent 40%, rgba(26,20,16,0.4));
  pointer-events: none;
}
.hero-caption {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 2;
  color: rgba(245,240,232,0.5);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hero-issue {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 2;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  color: rgba(245,240,232,0.35);
  letter-spacing: 0.08em;
  writing-mode: vertical-rl;
}

/* ── FEATURED GRID ── */
.featured { padding: 2.5rem 4rem; }
.featured-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: auto auto;
  gap: 2px;
}
.article-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--ink);
  display: block;
  text-decoration: none;
}
.article-card:hover .card-img img { transform: scale(1.04); }
.card-img {
  width: 100%;
  overflow: hidden;
}
.card-img img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}
.card-1 .card-img img { min-height: 440px; }
.card-2 .card-img img,
.card-3 .card-img img { min-height: 215px; }
.card-img-fallback {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-1 .card-img-fallback {
  min-height: 440px;
  background: linear-gradient(135deg, #2d1f15, #5c3220, #3d2510);
}
.card-2 .card-img-fallback {
  min-height: 215px;
  background: linear-gradient(135deg, #1e2832, #2d4055, #1a2a3a);
}
.card-3 .card-img-fallback {
  min-height: 215px;
  background: linear-gradient(135deg, #251e15, #403020, #1e1a10);
}
.card-4 .card-img-fallback {
  min-height: 215px;
  background: linear-gradient(135deg, #1a2318, #2d4028, #1a2a1a);
}
.card-emoji { font-size: 5rem; opacity: 0.2; }
.card-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(26,20,16,0.95) 0%, transparent 100%);
  color: #fff;
}
.card-cat {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}
.card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 0.4rem;
}
.card-1 .card-title { font-size: 2rem; }
.card-meta {
  font-size: 0.65rem;
  color: rgba(245,240,232,0.4);
  letter-spacing: 0.06em;
}
.card-side { display: flex; flex-direction: column; gap: 2px; }

/* ── THEMES BAR ── */
.themes-bar {
  border-top: 1px solid var(--light-border);
  border-bottom: 2px solid var(--ink);
  display: flex;
}
.tbar-item {
  flex: 1;
  padding: 0.85rem 1rem;
  border-right: 1px solid var(--light-border);
  text-align: center;
  text-decoration: none;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  transition: background 0.15s, color 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}
.tbar-item:last-child { border-right: none; }
.tbar-item:hover { background: var(--ink); color: var(--cream); }
.tbar-count {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  font-style: italic;
  color: var(--terra);
  transition: color 0.15s;
}
.tbar-item:hover .tbar-count { color: var(--gold); }

/* ── FABRICANTS INDEX ── */
.fabricants { padding: 2.5rem 4rem; background: #F0EBE0; }
.fabricants-index { display: flex; flex-direction: column; }
.fab-row {
  display: grid;
  grid-template-columns: 2.5rem 11rem 1fr 2fr auto;
  gap: 2rem;
  align-items: center;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--light-border);
  text-decoration: none;
  color: inherit;
  transition: background 0.15s;
}
.fab-row:first-child { border-top: 1px solid var(--light-border); }
.fab-row:hover { background: rgba(139,74,43,0.06); margin: 0 -4rem; padding: 1.1rem 4rem; }
.fab-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-style: italic;
  color: var(--terra);
  opacity: 0.5;
  line-height: 1;
}
.fab-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1;
}
.fab-data {
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--terra);
}
.fab-excerpt {
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--muted);
}
.fab-link {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terra);
  white-space: nowrap;
}

/* ── ARTICLES ROW ── */
.articles { padding: 2.5rem 4rem; }
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}
.article-mini {
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
}
.article-mini:hover .mini-img img { transform: scale(1.03); }
.mini-img-wrap {
  overflow: hidden;
  margin-bottom: 0.9rem;
  aspect-ratio: 4/3;
  background: var(--ink);
}
.mini-img {
  width: 100%;
  height: 100%;
}
.mini-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.mini-img-fallback {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  opacity: 0.3;
}
.mini-a .mini-img-fallback { background: linear-gradient(135deg, #3d2a1e, #6b3f2a); }
.mini-b .mini-img-fallback { background: linear-gradient(135deg, #1e2d1e, #2d4a2d); }
.mini-c .mini-img-fallback { background: linear-gradient(135deg, #1a1a2e, #2d2d4a); }
.mini-cat {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 0.4rem;
}
.mini-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 0.4rem;
  color: var(--ink);
}
.mini-excerpt {
  font-size: 0.8rem;
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: 0.6rem;
}
.mini-meta {
  font-size: 0.62rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  opacity: 0.7;
}

/* ── QUOTE BANNER ── */
.quote-banner {
  padding: 4rem 5rem;
  background: var(--ink);
  color: var(--cream);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.quote-banner::before {
  content: '"';
  position: absolute;
  font-family: 'Cormorant Garamond', serif;
  font-size: 28rem;
  color: rgba(201,169,110,0.04);
  top: -8rem;
  left: 5%;
  line-height: 1;
  pointer-events: none;
}
.quote-text {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.4rem, 2.5vw, 2.4rem);
  font-weight: 400;
  line-height: 1.4;
  max-width: 700px;
  margin: 0 auto 1rem;
  position: relative;
}
.quote-author {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── NEWSLETTER ── */
.newsletter {
  padding: 3rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  border-top: 2px solid var(--ink);
}
.nl-left .section-label { margin-bottom: 1rem; }
.nl-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 0.8rem;
}
.nl-title em { font-style: italic; color: var(--terra); }
.nl-desc {
  font-size: 0.85rem;
  line-height: 1.75;
  color: var(--muted);
}
.nl-form { display: flex; flex-direction: column; gap: 0.75rem; }
.nl-input {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--light-border);
  background: transparent;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s;
}
.nl-input:focus { border-color: var(--terra); }
.nl-input::placeholder { color: var(--muted); }
.nl-btn {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: var(--ink);
  color: var(--cream);
  border: none;
  padding: 0.9rem 1.8rem;
  cursor: pointer;
  transition: background 0.2s;
  align-self: flex-start;
}
.nl-btn:hover { background: var(--terra); }
.nl-note {
  font-size: 0.68rem;
  color: var(--muted);
  opacity: 0.7;
}

/* ── SECTION DIVIDER ── */
.section-divider {
  border: none;
  border-top: 1px solid var(--light-border);
  margin: 0;
}

/* ============================================================
   ARTICLE PAGE
   ============================================================ */

.art-hero {
  margin-top: 56px;
  position: relative;
  height: 70vh;
  min-height: 480px;
  overflow: hidden;
  background: var(--ink);
}
.art-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.art-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26,20,16,0.2) 0%,
    rgba(26,20,16,0.7) 70%,
    rgba(26,20,16,0.92) 100%
  );
}
.art-hero-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 3rem 5rem;
  z-index: 2;
  color: var(--cream);
}
.art-cat {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1rem;
}
.art-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 1rem;
  color: var(--cream);
}
.art-title em { font-style: italic; color: var(--gold); }
.art-meta {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: rgba(245,240,232,0.5);
}

/* Article body */
.art-container {
  max-width: 820px;
  margin: 0 auto;
  padding: 5rem 2rem;
}
.art-lead {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--ink);
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--light-border);
}
.art-body h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem;
  font-weight: 400;
  line-height: 1.2;
  margin: 3rem 0 1.2rem;
  color: var(--ink);
}
.art-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 400;
  margin: 2rem 0 0.8rem;
  color: var(--terra);
}
.art-body p {
  font-size: 0.97rem;
  line-height: 1.85;
  color: #3a2e28;
  margin-bottom: 1.2rem;
}
.art-body strong { font-weight: 500; color: var(--ink); }
.art-body ul {
  margin: 1rem 0 1.5rem 1.5rem;
}
.art-body ul li {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #3a2e28;
  margin-bottom: 0.4rem;
}
.art-body hr {
  border: none;
  border-top: 1px solid var(--light-border);
  margin: 3rem 0;
}

/* Inline figures */
.art-figure {
  margin: 2.5rem -4rem;
}
.art-figure img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center;
}
.art-figure figcaption {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.8rem;
  padding-left: 0.5rem;
  border-left: 2px solid var(--terra);
}
.art-figure-inline {
  margin: 2rem 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.art-figure-inline img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}
.art-figure-inline figcaption {
  grid-column: 1 / -1;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-top: 0.4rem;
}

/* Data table */
.art-table-wrap {
  margin: 3rem 0;
  padding: 2.5rem;
  background: #EEE8DC;
  border-left: 3px solid var(--terra);
}
.art-table-wrap h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-bottom: 1.5rem;
  color: var(--ink);
}
.art-table-wrap table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}
.art-table-wrap td {
  padding: 0.6rem 0.8rem;
  border-bottom: 1px solid var(--light-border);
  line-height: 1.5;
}
.art-table-wrap td:first-child {
  font-weight: 500;
  color: var(--terra);
  width: 45%;
  white-space: nowrap;
}
.art-table-wrap td:last-child { color: #3a2e28; }
.art-table-wrap tr:last-child td { border-bottom: none; }

/* Pull quote */
.art-pullquote {
  margin: 3rem 0;
  padding: 2rem 2.5rem;
  border-left: 3px solid var(--gold);
  background: rgba(201,169,110,0.06);
}
.art-pullquote p {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.art-pullquote cite {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terra);
}

/* Closing line */
.art-closing {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--light-border);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--muted);
}

/* Related articles */
.art-related {
  background: #F0EBE0;
  padding: 3rem 4rem;
}
.art-related .section-label { margin-bottom: 1.5rem; }
.art-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.art-related-card {
  text-decoration: none;
  color: inherit;
  display: block;
}
.art-related-card:hover .art-rel-img img { transform: scale(1.04); }
.art-rel-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--ink);
  margin-bottom: 0.8rem;
}
.art-rel-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.art-rel-img-fallback {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  opacity: 0.25;
}
.art-rel-cat {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 0.4rem;
}
.art-rel-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.3;
  color: var(--ink);
}

/* ============================================================
   CURA PAGE
   ============================================================ */

.cura-hero {
  margin-top: 56px;
  position: relative;
  height: 55vh;
  min-height: 380px;
  overflow: hidden;
  background: var(--ink);
}
.cura-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.cura-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(26,20,16,0.3) 0%, rgba(26,20,16,0.85) 100%);
}
.cura-hero-text {
  position: absolute;
  bottom: 3rem;
  left: 5rem;
  z-index: 2;
  color: var(--cream);
  max-width: 640px;
}
.cura-hero-text .art-cat { margin-bottom: 0.8rem; }
.cura-hero-text h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 0.8rem;
}
.cura-hero-text h1 em { font-style: italic; color: var(--gold); }
.cura-hero-text p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(245,240,232,0.7);
}

/* Intro bar */
.cura-intro {
  padding: 2rem 4rem;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-bottom: 1px solid var(--light-border);
}
.cura-nav-item {
  padding: 1.2rem 1rem;
  border-right: 1px solid var(--light-border);
  text-align: center;
  text-decoration: none;
  display: block;
  transition: background 0.2s;
}
.cura-nav-item:last-child { border-right: none; }
.cura-nav-item:hover { background: rgba(139,74,43,0.06); }
.cura-nav-icon { font-size: 1.4rem; display: block; margin-bottom: 0.4rem; }
.cura-nav-name {
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Section */
.cura-section {
  padding: 4rem 4rem;
  border-bottom: 1px solid var(--light-border);
}
.cura-section:nth-child(even) { background: #F0EBE0; }
.cura-section-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 3rem;
}
.cura-section-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--ink);
}
.cura-section-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cura-section-img-fallback {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  opacity: 0.2;
}
.cura-section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 1rem;
  color: var(--ink);
}
.cura-section-title em { font-style: italic; color: var(--terra); }
.cura-section-desc {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 2rem;
}
.cura-tips {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.cura-tip {
  padding: 1.5rem;
  background: var(--cream);
  border: 1px solid var(--light-border);
  transition: border-color 0.2s;
}
.cura-section:nth-child(even) .cura-tip { background: var(--cream); }
.cura-tip:hover { border-color: var(--terra); }
.cura-tip-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--terra);
  opacity: 0.4;
  margin-bottom: 0.4rem;
  line-height: 1;
}
.cura-tip-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--ink);
}
.cura-tip-body {
  font-size: 0.82rem;
  line-height: 1.75;
  color: var(--muted);
}

/* Alert box */
.cura-alert {
  margin-top: 1.5rem;
  padding: 1.2rem 1.8rem;
  border-left: 3px solid var(--gold);
  background: rgba(201,169,110,0.08);
}
.cura-alert p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--ink);
}
.cura-alert strong { color: var(--terra); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .art-figure { margin: 2.5rem -2rem; }
  .fab-row { grid-template-columns: 2.5rem 9rem 1fr auto; }
  .fab-excerpt { display: none; }
}

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { border-right: none; border-bottom: 1px solid var(--light-border); }
  .hero-right { display: none; }
  .featured-grid { grid-template-columns: 1fr; }
  .articles-grid { grid-template-columns: 1fr 1fr; gap: 1.2rem; }
  .themes-bar { flex-wrap: wrap; }
  .tbar-item { flex-basis: 33.333%; border-bottom: 1px solid var(--light-border); }
  .newsletter { grid-template-columns: 1fr; gap: 2rem; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .fabricants-index .fab-row { grid-template-columns: 2rem 1fr auto; }
  .fab-data { display: none; }
  header { padding: 0 1.5rem; }
  nav { display: none; }
  .featured { padding: 2rem 1.5rem; }
  .articles { padding: 2rem 1.5rem; }
  .fabricants { padding: 2rem 1.5rem; }
  .newsletter { padding: 2rem 1.5rem; }
  footer { padding: 2.5rem 1.5rem 1.2rem; }
  .art-hero { height: 55vh; }
  .art-hero-overlay { padding: 2rem; }
  .art-container { padding: 3rem 1.5rem; }
  .art-figure { margin: 2rem 0; }
  .art-related { padding: 2.5rem 1.5rem; }
  .art-related-grid { grid-template-columns: 1fr; gap: 1.2rem; }
  .cura-hero-text { left: 2rem; }
  .cura-intro { grid-template-columns: repeat(3, 1fr); padding: 1.5rem; }
  .cura-section { padding: 3rem 1.5rem; }
  .cura-section-header { grid-template-columns: 1fr; gap: 2rem; }
  .cura-tips { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .footer-top { grid-template-columns: 1fr; }
  .hero-left { padding: 2.5rem 1.5rem 2rem; }
  .articles-grid { grid-template-columns: 1fr; }
  .cura-intro { grid-template-columns: repeat(2, 1fr); }
  .tbar-item { flex-basis: 50%; }
  .art-title { font-size: 1.9rem; }
}
