:root {
  --black: #f7f5f0;     /* light surfaces (table head, secondary panels) */
  --dark: #ffffff;      /* main background */
  --dark2: #ebe7dc;     /* hover / secondary surface */
  --border: #d8d3c7;    /* dividers and outlines */
  --accent: #b08a4a;    /* brand gold (darkened for contrast on white) */
  --accent2: #8b6f3a;   /* darker hover state of accent */
  --white: #1a1a1a;     /* high-contrast headings & emphasis (was light, now dark) */
  --muted: #6b6b6b;     /* muted secondary text */
  --text: #2e2e2e;      /* body text */
  --on-accent: #0d0d0d; /* fixed dark text used on accent-colored backgrounds */
  --radius: 4px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--dark);
  color: var(--text);
  line-height: 1.7;
  font-weight: 300;
}

/* Accessibility — skip link & focus rings */
.skip-link {
  position: absolute;
  left: -10000px;
  top: 0;
  padding: 8px 16px;
  background: var(--accent);
  color: var(--on-accent);
  z-index: 200;
}
.skip-link:focus { left: 0; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: 60px;
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.02em;
}
.logo span { color: var(--accent); }
.nav-links { display: flex; gap: 32px; list-style: none; align-items: center; }
.nav-links a {
  font-size: 13px; font-weight: 400; color: var(--muted);
  text-decoration: none; letter-spacing: 0.05em;
  text-transform: uppercase; transition: color .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--accent); }

/* Mobile menu toggle (hidden on desktop) */
.nav-toggle { display: none; }
.nav-burger { display: none; }
.nav-menu { display: flex; align-items: center; gap: 24px; }

/* Language switcher */
.lang-switch {
  display: flex; align-items: center; gap: 4px;
  font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
}
.lang-switch a {
  padding: 4px 8px; color: var(--muted); text-decoration: none;
  border: 1px solid transparent; border-radius: var(--radius);
  transition: color .15s, border-color .15s;
}
.lang-switch a.active { color: var(--accent); border-color: var(--border); }
.lang-switch a:hover { color: var(--white); }

/* ── HERO ── */
.hero { border-bottom: 1px solid var(--border); }
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  min-height: 520px;
}
.hero-left {
  padding: 64px 56px 56px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--border);
  border-left: 1px solid var(--border);
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 28px;
}
.hero-tag::before {
  content: ''; display: block; width: 24px; height: 1px; background: var(--accent);
}
h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700; color: var(--white); line-height: 1.15;
  letter-spacing: -0.01em; margin-bottom: 28px;
}
.hero-desc {
  font-size: 16px; color: var(--muted); font-weight: 300;
  line-height: 1.7; max-width: 480px; margin-bottom: 40px;
}
.hero-meta {
  display: flex; align-items: center; gap: 16px;
  padding-top: 24px; border-top: 1px solid var(--border);
}
.avatars { display: flex; align-items: center; flex-shrink: 0; }
.avatar {
  width: 40px; height: 40px;
  border-radius: 50%; overflow: hidden;
  border: 2px solid var(--dark); background: var(--dark2);
  flex-shrink: 0;
}
.avatar + .avatar { margin-left: -10px; }
.avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.meta-name { font-size: 14px; font-weight: 500; color: var(--white); }
.meta-role { font-size: 12px; color: var(--muted); }
.meta-sep { width: 1px; height: 28px; background: var(--border); margin: 0 4px; }
.meta-date { font-size: 12px; color: var(--muted); letter-spacing: 0.03em; }

.hero-right {
  position: relative; overflow: hidden;
  border-right: 1px solid var(--border);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.hero-right img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  filter: brightness(0.95) saturate(1.0);
  display: block;
}
.hero-right::after { display: none; }
.hero-right::before { display: none; }

/* ── SECTIONS / CARDS / GRIDS ── */
.section { max-width: 1100px; margin: 0 auto; padding: 64px 40px; }
.section-label {
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 32px;
  display: flex; align-items: center; gap: 12px;
}
.section-label::after { content: ''; flex: 1; height: 1px; background: var(--border); }

.catalog-cards {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
  background: var(--border); border: 1px solid var(--border);
  margin-bottom: 64px;
}
.catalog-card {
  position: relative; overflow: hidden;
  background: var(--dark);
  padding: 40px 40px 36px;
  display: flex; flex-direction: column; gap: 16px;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.catalog-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--accent) 50%, transparent 100%);
  transform: scaleX(0); transform-origin: center;
  transition: transform .35s ease;
}
.catalog-card:hover {
  background: var(--dark);
  transform: translateY(-3px);
  box-shadow: 0 14px 32px -16px rgba(176,138,74,0.25);
  z-index: 1;
}
.catalog-card:hover::before { transform: scaleX(1); }
.card-number {
  font-family: 'Playfair Display', serif;
  font-size: 56px; font-weight: 700;
  background: linear-gradient(135deg, #b08a4a 0%, #e8c990 50%, #b08a4a 100%);
  background-size: 200% 100%;
  background-position: 0% 50%;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  line-height: 1; margin-bottom: 12px; opacity: 0.55;
  transition: opacity .25s ease, background-position .6s ease;
}
.catalog-card:hover .card-number { opacity: 1; background-position: 100% 50%; }
.card-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 700; color: var(--white);
  line-height: 1.3;
}
.card-desc { font-size: 14px; color: var(--muted); line-height: 1.65; flex: 1; }
.card-btn {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--on-accent); text-decoration: none;
  padding: 12px 24px;
  align-self: flex-start; margin-top: 8px;
  background: linear-gradient(110deg, #8b6f3a 0%, #b08a4a 25%, #e8c990 50%, #b08a4a 75%, #8b6f3a 100%);
  background-size: 300% 100%;
  animation: offerCtaShimmer 5s linear infinite;
  transition: transform .2s, box-shadow .2s;
  border: none;
}
.card-btn > * { position: relative; z-index: 1; }
.card-btn::after {
  content: ''; position: absolute; top: 0; left: -60%;
  width: 40%; height: 100%; pointer-events: none;
  background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,0.4) 50%, transparent 100%);
  animation: offerCtaShine 4s ease-in-out infinite;
}
.card-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px -6px rgba(176,138,74,0.55);
}
.card-btn svg { transition: transform .2s; }
.card-btn:hover svg { transform: translateX(4px); }
@media (prefers-reduced-motion: reduce) {
  .catalog-card, .catalog-card::before, .card-number { transition: none; }
  .card-btn { animation: none; background: var(--accent); }
  .card-btn::after { display: none; }
}

.cat-label {
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 20px;
  display: flex; align-items: center; gap: 12px;
}
.cat-label::after { content: ''; flex: 1; height: 1px; background: var(--border); }

.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1px; background: var(--border); border: 1px solid var(--border);
  margin-bottom: 64px;
}
.cat-item {
  background: var(--dark); padding: 14px 18px;
  display: flex; align-items: center; gap: 12px;
  font-size: 13px; font-weight: 400; color: var(--muted);
  text-decoration: none;
  transition: background .15s, color .15s;
}
.cat-item:hover { background: var(--dark2); color: var(--accent); }
.cat-item svg { flex-shrink: 0; color: var(--accent); opacity: 0.7; transition: opacity .15s; }
.cat-item:hover svg { opacity: 1; }

/* ── BLOG POST (single article) ── */
.post-hero {
  max-width: 1100px; margin: 0 auto;
  padding: 0 40px; box-sizing: border-box;
}
.post-hero img {
  width: 100%; aspect-ratio: 16/8;
  object-fit: cover; object-position: center;
  display: block;
}
.post {
  max-width: 1100px; margin: 0 auto;
  padding: 56px 40px 40px;
}
.post-header { margin-bottom: 28px; }
.post-tag {
  font-size: 11px; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 20px;
}
.post-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700; color: var(--white);
  line-height: 1.15; letter-spacing: -0.01em;
  margin: 0 0 24px;
}
.post-meta {
  display: flex; align-items: center; gap: 12px;
  font-size: 13px; color: var(--muted); font-weight: 300;
}
.post-meta .avatars { display: flex; }
.post-meta .avatar { width: 32px; height: 32px; border-radius: 50%; overflow: hidden; border: 1.5px solid var(--dark); margin-left: -8px; }
.post-meta .avatar:first-child { margin-left: 0; }
.post-meta .avatar img { width: 100%; height: 100%; object-fit: cover; }
.post-meta-text { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; }
.post-meta-name { color: var(--white); font-weight: 400; }
.post-meta-sep { color: var(--border); }
.post-lead {
  font-family: 'Playfair Display', serif;
  font-size: 19px; font-weight: 400; color: var(--text);
  line-height: 1.6; font-style: italic;
  margin: 0 0 28px; padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}
.post-disclaimer {
  display: block;
  background: rgba(176, 138, 74, 0.06);
  border-left: 2px solid var(--accent);
  padding: 14px 18px;
  margin: 56px 0 0;
  font-size: 12px; color: var(--muted);
  line-height: 1.55; font-style: italic;
}

/* ── OFFER CARD (used on category/landing pages) ── */
.offer-card {
  display: block;
  background: linear-gradient(135deg, rgba(176,138,74,0.08) 0%, rgba(176,138,74,0.02) 100%);
  border: 1px solid var(--accent);
  padding: 32px 36px;
  margin: 0 0 48px;
}
.offer-card-badge {
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 16px;
}
.offer-card-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 2.6vw, 28px);
  font-weight: 700; color: var(--white);
  line-height: 1.25; margin: 0 0 14px;
}
.offer-card-desc {
  font-size: 15px; color: var(--text);
  line-height: 1.65; margin: 0 0 22px; font-weight: 400;
}
.offer-card-features {
  list-style: none; padding: 0; margin: 0 0 28px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px 28px;
}
.offer-card-features li {
  font-size: 14px; color: var(--text); font-weight: 400;
  padding-left: 22px; position: relative;
  line-height: 1.5;
}
.offer-card-features li::before {
  content: ''; position: absolute; left: 0; top: 7px;
  width: 12px; height: 6px;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
}
.offer-card-cta {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--on-accent);
  font-size: 13px; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; padding: 14px 30px;
  text-decoration: none; border: none;
  background: linear-gradient(110deg, #8b6f3a 0%, #b08a4a 25%, #e8c990 50%, #b08a4a 75%, #8b6f3a 100%);
  background-size: 300% 100%;
  animation: offerCtaShimmer 5s linear infinite;
  transition: transform .2s, box-shadow .2s;
}
.offer-card-cta > * { position: relative; z-index: 1; }
.offer-card-cta::after {
  content: ''; position: absolute; top: 0; left: -60%;
  width: 40%; height: 100%; pointer-events: none;
  background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,0.45) 50%, transparent 100%);
  animation: offerCtaShine 3.2s ease-in-out infinite;
}
.offer-card-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 22px -8px rgba(176,138,74,0.6);
}
.offer-card-cta svg { transition: transform .2s; }
.offer-card-cta:hover svg { transform: translateX(4px); }

@keyframes offerCtaShimmer {
  0%   { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}
@keyframes offerCtaShine {
  0%   { left: -60%; }
  60%  { left: 120%; }
  100% { left: 120%; }
}
@media (prefers-reduced-motion: reduce) {
  .offer-card-cta { animation: none; background: var(--accent); }
  .offer-card-cta::after { display: none; }
}
@media (max-width: 720px) {
  .offer-card { padding: 24px 22px; }
  .offer-card-features { grid-template-columns: 1fr; }
}
.post-body { font-size: 16px; line-height: 1.8; color: var(--text); }
.post-body h2 {
  font-family: 'Playfair Display', serif;
  font-size: 26px; font-weight: 600; color: var(--white);
  margin: 48px 0 16px; line-height: 1.3;
}
.post-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 19px; font-weight: 600; color: var(--white);
  margin: 32px 0 12px; line-height: 1.35;
}
.post-body p { font-size: 16px; font-weight: 300; line-height: 1.8; margin-bottom: 18px; color: var(--text); }
.post-body a {
  color: var(--accent); text-decoration: none;
  border-bottom: 1px solid rgba(201,169,110,0.3);
  transition: border-color .15s;
}
.post-body a:hover { border-color: var(--accent); }
.post-body ul { margin: 0 0 18px; padding-left: 22px; }
.post-body li { margin-bottom: 8px; line-height: 1.7; font-weight: 300; }
.post-body .highlight { margin: 32px 0; }
.post-body .table-wrap { overflow-x: auto; margin: 32px 0; }
.post-body .summary-table { margin: 0; font-size: 14px; }
.post-body h2#faq { margin-top: 64px; padding-top: 48px; border-top: 1px solid var(--border); }

/* ── ARTICLE BODY (used by home page) ── */
.article-body { max-width: 1100px; margin: 0 auto; padding: 0 40px 80px; }
.article-body h2 {
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 600; color: var(--white);
  margin: 56px 0 16px; line-height: 1.3;
  padding-top: 56px; border-top: 1px solid var(--border);
}
.article-body h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.article-body p {
  font-size: 15px; font-weight: 300; color: var(--text);
  margin-bottom: 18px; line-height: 1.8;
}
.article-body a {
  color: var(--accent); text-decoration: none;
  border-bottom: 1px solid rgba(201,169,110,0.3);
  transition: border-color .15s;
}
.article-body a:hover { border-color: var(--accent); }

.highlight {
  border-left: 2px solid var(--accent);
  padding: 20px 24px;
  background: rgba(201,169,110,0.05);
  margin: 28px 0;
}
.highlight strong {
  display: block; font-size: 13px; font-weight: 600;
  color: var(--accent); letter-spacing: 0.05em;
  text-transform: uppercase; margin-bottom: 8px;
}
.highlight p { font-size: 14px; color: var(--muted); margin: 0; }

/* ── TABLE ── */
.summary-table {
  width: 100%; border-collapse: collapse;
  font-size: 13px; margin: 32px 0; border: 1px solid var(--border);
}
.summary-table th {
  text-align: left; padding: 12px 16px;
  font-weight: 500; font-size: 11px;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
  background: var(--black);
}
.summary-table td {
  padding: 12px 16px; border-bottom: 1px solid var(--border);
  color: var(--text); font-weight: 300; vertical-align: top;
}
.summary-table tr:last-child td { border-bottom: none; }
.summary-table tr:hover td { background: var(--dark2); }

/* ── FAQ — using <details>/<summary> for accessibility ── */
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item summary {
  list-style: none;
  padding: 20px 0;
  font-size: 15px; font-weight: 400; color: var(--white);
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
  transition: color .15s;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--accent); }
.faq-icon {
  width: 20px; height: 20px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 14px;
  color: var(--accent);
  transition: background .15s, border-color .15s, transform .2s;
}
.faq-item[open] summary .faq-icon {
  background: var(--accent); border-color: var(--accent); color: var(--on-accent);
  transform: rotate(45deg);
}
.faq-a {
  font-size: 14px; color: var(--muted);
  line-height: 1.7; font-weight: 300;
  padding-bottom: 20px;
}

/* ── CTA ── */
.cta-section {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 64px 40px; text-align: center; margin-top: 64px;
  max-width: 1100px; margin-left: auto; margin-right: auto;
}
.cta-section h3 {
  font-family: 'Playfair Display', serif;
  font-size: 28px; font-weight: 700; color: var(--white);
  margin-bottom: 12px;
}
.cta-section p { font-size: 14px; color: var(--muted); margin-bottom: 32px; }
.cta-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--accent); color: var(--on-accent);
  font-size: 13px; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; padding: 16px 36px;
  text-decoration: none; transition: background .2s;
}
.cta-btn:hover { background: var(--accent2); }

/* ── RECENT POSTS BLOCK (home + category pages) ── */
.recent-posts {
  border-top: 1px solid var(--border);
  background: var(--black);
  margin-top: 64px;
}
.recent-posts-inner {
  max-width: 1100px; margin: 0 auto;
  padding: 64px 40px;
}
.recent-posts-header {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 36px; gap: 16px; flex-wrap: wrap;
}
.recent-posts-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 2.6vw, 28px);
  font-weight: 700; color: var(--white);
  line-height: 1.2; margin: 0;
}
.recent-posts-all {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--accent); text-decoration: none;
  border-bottom: 1px solid rgba(176,138,74,0.3);
  padding-bottom: 2px;
  transition: border-color .2s;
}
.recent-posts-all:hover { border-color: var(--accent); }
.recent-posts-all svg { transition: transform .2s; }
.recent-posts-all:hover svg { transform: translateX(3px); }
.recent-posts-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
}
.recent-post {
  display: flex; flex-direction: column;
  text-decoration: none; color: inherit;
  background: var(--dark);
  border: 1px solid var(--border);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  overflow: hidden;
}
.recent-post:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
  box-shadow: 0 14px 32px -16px rgba(176,138,74,0.3);
}
.recent-post-img {
  aspect-ratio: 16/10; overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.recent-post-img img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .4s ease;
}
.recent-post:hover .recent-post-img img { transform: scale(1.04); }
.recent-post-meta {
  font-size: 11px; letter-spacing: 0.06em;
  color: var(--muted); margin: 20px 24px 8px;
  text-transform: uppercase;
}
.recent-post-title {
  font-family: 'Playfair Display', serif;
  font-size: 18px; font-weight: 600; color: var(--white);
  line-height: 1.35; margin: 0 24px 12px;
}
.recent-post-desc {
  font-size: 14px; color: var(--muted);
  line-height: 1.55; font-weight: 300;
  margin: 0 24px 16px; flex: 1;
  display: -webkit-box; -webkit-line-clamp: 3; line-clamp: 3;
  -webkit-box-orient: vertical; overflow: hidden;
}
.recent-post-cta {
  font-size: 12px; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--accent);
  margin: 0 24px 24px;
}

/* ── BLOG INDEX ── */
.blog-list { max-width: 1100px; margin: 0 auto; padding: 64px 40px; }
.blog-list-header { margin-bottom: 48px; }
.blog-list-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700; color: var(--white);
  line-height: 1.15; margin: 0 0 8px;
}
.blog-list-header p {
  color: var(--muted); font-size: 15px;
  line-height: 1.5; margin: 0;
}
.blog-card {
  display: grid; grid-template-columns: 220px 1fr;
  gap: 32px; padding: 32px 0;
  border-bottom: 1px solid var(--border);
}
.blog-card:first-of-type { border-top: 1px solid var(--border); }
.blog-card-img {
  aspect-ratio: 4/3; overflow: hidden;
  border: 1px solid var(--border);
}
.blog-card-img img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  filter: brightness(0.85) saturate(0.9);
  transition: filter .2s, transform .3s;
}
.blog-card:hover .blog-card-img img { filter: none; transform: scale(1.04); }
.blog-card-body { display: flex; flex-direction: column; gap: 12px; justify-content: center; }
.blog-card h2 {
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 600; color: var(--white);
  line-height: 1.3;
}
.blog-card h2 a { color: inherit; text-decoration: none; }
.blog-card h2 a:hover { color: var(--accent); }
.blog-card-desc { font-size: 14px; color: var(--muted); line-height: 1.6; }
.blog-card-meta { font-size: 12px; color: var(--muted); letter-spacing: 0.03em; }

.blog-empty {
  text-align: center; padding: 80px 40px;
  color: var(--muted);
}

/* ── LEGAL PAGES ── */
.legal-page {
  max-width: 820px; margin: 0 auto;
  padding: 64px 40px 100px;
}
.legal-header { margin-bottom: 48px; padding-bottom: 32px; border-bottom: 1px solid var(--border); }
.legal-tag {
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 20px;
}
.legal-page h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 700; color: var(--white);
  margin-bottom: 12px; line-height: 1.2;
}
.legal-updated { font-size: 13px; color: var(--muted); }
.legal-body h2 {
  font-family: 'Playfair Display', serif;
  font-size: 20px; font-weight: 600;
  color: var(--white);
  margin: 40px 0 14px; line-height: 1.3;
}
.legal-body h3 { font-size: 16px; font-weight: 500; color: var(--white); margin: 28px 0 10px; }
.legal-body p { font-size: 15px; color: var(--text); line-height: 1.8; margin-bottom: 16px; font-weight: 300; }
.legal-body ul, .legal-body ol { margin: 0 0 18px 24px; }
.legal-body li { font-size: 15px; color: var(--text); line-height: 1.8; font-weight: 300; margin-bottom: 6px; }
.legal-body code { background: var(--dark2); padding: 2px 6px; border-radius: 3px; font-size: 13px; color: var(--accent2); }
.legal-body a { color: var(--accent); text-decoration: none; border-bottom: 1px solid rgba(201,169,110,0.3); }
.legal-body a:hover { border-color: var(--accent); }
.legal-body .placeholder {
  background: rgba(201,169,110,0.1);
  border: 1px dashed var(--accent);
  padding: 1px 6px; border-radius: var(--radius);
  font-family: monospace; font-size: 13px;
  color: var(--accent2);
}

/* ── AFFILIATE DISCLOSURE ── */
.affiliate-notice {
  max-width: 1100px; margin: 0 auto;
  padding: 12px 40px;
  background: rgba(201,169,110,0.06);
  border-bottom: 1px solid var(--border);
  font-size: 12px; color: var(--muted);
  text-align: center;
}
.affiliate-notice a { color: var(--accent); text-decoration: none; border-bottom: 1px dotted var(--accent); }

.sponsored-tag {
  display: inline-block;
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 2px 8px;
  margin-left: 12px;
  border-radius: 2px;
  vertical-align: middle;
}
.section-label .sponsored-tag,
.cat-label .sponsored-tag { margin-left: auto; }

/* Footer legal links */
.footer-links {
  display: flex; gap: 20px; flex-wrap: wrap;
  font-size: 12px;
}
.footer-links a {
  color: var(--muted); text-decoration: none;
  transition: color .15s;
}
.footer-links a:hover { color: var(--accent); }
.footer-inner { align-items: flex-start; }
.footer-col { display: flex; flex-direction: column; gap: 8px; }

/* ── 404 ── */
.error-page {
  max-width: 720px; margin: 0 auto;
  padding: 120px 40px 160px; text-align: center;
}
.error-page h1 {
  font-size: clamp(56px, 10vw, 128px);
  margin-bottom: 16px; color: var(--accent);
}
.error-page p { font-size: 16px; color: var(--muted); margin-bottom: 32px; }

/* ── FOOTER ── */
footer {
  background: var(--black);
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  padding: 32px 40px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px; flex-wrap: wrap;
}
footer p { font-size: 12px; color: var(--muted); }

/* ── MOBILE MENU (burger) ── */
@media (max-width: 768px) {
  .nav-burger {
    display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
    width: 36px; height: 36px; cursor: pointer;
    margin-left: auto; padding: 6px;
    border: 1px solid var(--border); border-radius: 4px;
    transition: border-color .2s;
  }
  .nav-burger:hover { border-color: var(--accent); }
  .nav-burger span {
    display: block; height: 2px; width: 20px;
    background: var(--white); border-radius: 2px;
    transition: transform .25s ease, opacity .25s ease;
    transform-origin: center;
  }
  .nav-toggle:checked ~ .nav-inner .nav-burger span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .nav-toggle:checked ~ .nav-inner .nav-burger span:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle:checked ~ .nav-inner .nav-burger span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .nav-menu {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--dark);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 12px 24px -12px rgba(0,0,0,0.18);
    max-height: 0; overflow: hidden;
    transition: max-height .3s ease;
  }
  .nav-toggle:checked ~ .nav-inner .nav-menu {
    max-height: 480px;
  }
  .nav-menu .nav-links {
    flex-direction: column; gap: 0;
    padding: 8px 0;
  }
  .nav-menu .nav-links li {
    border-bottom: 1px solid var(--border);
  }
  .nav-menu .nav-links li:last-child { border-bottom: none; }
  .nav-menu .nav-links a {
    display: block; padding: 14px 24px;
    font-size: 14px; letter-spacing: 0.05em;
  }
  .nav-menu .lang-switch {
    padding: 16px 24px;
    border-top: 1px solid var(--border);
    justify-content: center; gap: 8px;
  }
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav-inner { padding: 0 20px; gap: 12px; position: relative; }
  .lang-switch { gap: 0; }
  .lang-switch a { padding: 4px 6px; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-right { height: auto; aspect-ratio: 1200/804; border-right: none; border-top: none; }
  .hero-right::after { display: none; }
  .hero-right img { filter: brightness(1.0) saturate(1.0); }
  .hero-left { padding: 40px 24px; }
  .section { padding: 40px 20px; }
  .catalog-cards { grid-template-columns: 1fr; }
  .article-body { padding: 0 20px 60px; max-width: 100%; }
  .cta-section { padding: 40px 20px; }
  .footer-inner { padding: 24px 20px; }
  .cat-grid { grid-template-columns: 1fr 1fr; }
  .blog-list { padding: 40px 20px; }
  .blog-card { grid-template-columns: 1fr; gap: 16px; }
  .legal-page { padding: 40px 20px 60px; }
  .affiliate-notice { padding: 10px 20px; font-size: 11px; }
  .recent-posts-inner { padding: 40px 20px; }
  .recent-posts-grid { grid-template-columns: 1fr; gap: 24px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
