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

:root {
  --rouge: #8b1a1a;
  --rouge-dark: #651010;
  --bois-pale: #c8a882;
  --creme: #fdf6ec;
  --lin: #f0e8d8;
  --blanc: #fffef9;
  --anthracite: #2c2c2c;
  --gris: #5a5a5a;
  --line: #dfd4c4;
  --max: 1180px;
  --radius: 12px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--anthracite);
  background: var(--blanc);
  font-family: 'Lato', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
}
a { color: var(--rouge); text-underline-offset: 3px; }
a:focus-visible, button:focus-visible { outline: 3px solid var(--rouge); outline-offset: 3px; }
.skip-link { position: absolute; left: -9999px; top: 8px; background: #fff; padding: 10px; z-index: 20; }
.skip-link:focus { left: 8px; }

.site-header {
  background: rgba(253,246,236,.97);
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
  position: sticky;
  top: 0;
  z-index: 10;
}
.header-inner {
  width: min(var(--max), calc(100% - 5vw));
  min-height: 65px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: .7rem;
  color: var(--rouge);
  font: 700 18px 'Playfair Display', Georgia, serif;
  text-decoration: none;
  white-space: nowrap;
}
.brand img { width: 42px; height: 42px; object-fit: contain; border-radius: 8px; }
.nav { display: flex; gap: 1.1rem; align-items: center; justify-content: flex-end; }
.nav > a { color: var(--anthracite); text-decoration: none; font-size: 14px; font-weight: 700; white-space: nowrap; }
.nav > a:hover, .nav > a[aria-current='page'] { color: var(--rouge); }
.nav .cta { background: var(--rouge); color: #fff; padding: .62rem 1rem; border-radius: 999px; }
.nav .cta:hover { color: #fff; background: var(--rouge-dark); }
.guides-link { border-bottom: 2px solid var(--rouge); }
.content-languages { display: flex; align-items: center; gap: 2px; margin-left: .2rem; }
.content-lang {
  width: 36px;
  height: 36px;
  padding: 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  border-radius: 6px;
  opacity: .58;
}
.content-lang:hover, .content-lang.active { opacity: 1; }
.content-lang.active { border-color: var(--rouge); }
.content-lang img { width: 24px; height: 16px; object-fit: cover; border-radius: 2px; }

.hero {
  min-height: 500px;
  display: grid;
  align-items: end;
  color: #fff;
  background: linear-gradient(90deg,rgba(16,12,9,.88),rgba(16,12,9,.22)),var(--hero) center/cover;
}
.hero-inner { width: min(var(--max), calc(100% - 8vw)); margin: 0 auto; padding: 5rem 0 4.5rem; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: .78rem;
  font-weight: 700;
  color: rgba(255,255,255,.84);
}
.eyebrow::before { content: ''; width: 28px; height: 2px; background: var(--bois-pale); }
.hero h1 {
  max-width: 960px;
  margin: .65rem 0 1rem;
  font: 700 clamp(2.45rem,5.3vw,4.8rem)/1.04 'Playfair Display', Georgia, serif;
  text-wrap: balance;
}
.hero p { max-width: 760px; margin: 0; font-size: clamp(1.05rem,1.7vw,1.28rem); color: rgba(255,255,255,.9); }
.hero-actions { display: flex; gap: .8rem; flex-wrap: wrap; margin-top: 1.6rem; }
.button {
  display: inline-flex;
  min-height: 46px;
  padding: .75rem 1.25rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--rouge);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  transition: transform .2s, background .2s;
}
.button:hover { transform: translateY(-2px); background: var(--rouge-dark); }
.button.secondary { background: rgba(255,255,255,.95); color: var(--rouge); }

main { max-width: var(--max); margin: auto; padding: 2.7rem 4vw 4.5rem; }
.breadcrumbs { font-size: .9rem; color: var(--gris); margin-bottom: 2rem; }
.breadcrumbs a { font-weight: 700; }
.content-grid { display: grid; grid-template-columns: minmax(0,2fr) minmax(270px,1fr); gap: 2.4rem; align-items: start; }
.prose {
  position: relative;
  overflow: hidden;
  background: #fff;
  padding: clamp(1.5rem,3.5vw,3rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 38px rgba(44,44,44,.06);
}
.prose::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--rouge); }
.prose h2 { font: 700 clamp(1.6rem,3vw,2.25rem)/1.18 'Playfair Display', Georgia, serif; margin: 2.2rem 0 .7rem; color: var(--rouge-dark); }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font: 700 1.2rem 'Playfair Display', Georgia, serif; margin: 1.5rem 0 .45rem; }
.prose p { color: #45413d; }
.prose ul { padding-left: 1.25rem; }
.prose li + li { margin-top: .45rem; }
.side-card {
  background: linear-gradient(145deg,var(--rouge),var(--rouge-dark));
  color: #fff;
  padding: 1.65rem;
  border-radius: var(--radius);
  position: sticky;
  top: 90px;
  box-shadow: 0 16px 35px rgba(107,16,16,.2);
}
.side-card h2 { font: 700 1.65rem 'Playfair Display', Georgia, serif; margin: 0 0 .7rem; }
.side-card p { color: rgba(255,255,255,.84); }
.side-card a { color: #fff; }
.side-card .button { width: 100%; margin: .5rem 0; background: #fff; color: var(--rouge-dark); }
.related { margin-top: 2.7rem; padding-top: 2rem; border-top: 1px solid var(--line); }
.related h2 { font: 700 2rem 'Playfair Display', Georgia, serif; }
.cards { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 1rem; }
.card { background: var(--creme); border: 1px solid var(--line); padding: 1.25rem; border-radius: 10px; }
.card h3 { margin: .1rem 0 .55rem; font: 700 1.25rem 'Playfair Display', Georgia, serif; }

.site-footer { background: var(--anthracite); color: rgba(255,255,255,.64); }
.footer-inner {
  max-width: var(--max);
  margin: auto;
  padding: 2.2rem 4vw;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.site-footer a { color: rgba(255,255,255,.86); }

@media (max-width: 1100px) {
  .header-inner { width: calc(100% - 2rem); flex-wrap: wrap; padding: .55rem 0; }
  .nav { gap: .75rem; }
  .nav > a:not(.cta):not(.guides-link) { display: none; }
}
@media (max-width: 760px) {
  .header-inner { align-items: center; }
  .brand { flex: 1 1 auto; }
  .nav { width: 100%; justify-content: space-between; order: 2; padding-top: .35rem; border-top: 1px solid rgba(44,44,44,.08); }
  .content-languages { order: -1; }
  .content-lang { width: 34px; height: 34px; }
  .hero { min-height: 430px; }
  .hero-inner { width: calc(100% - 2.5rem); padding: 3.3rem 0; }
  .content-grid { grid-template-columns: 1fr; }
  .side-card { position: static; }
  .cards { grid-template-columns: 1fr; }
}
@media (max-width: 420px) {
  .nav { flex-wrap: wrap; }
  .nav .cta { order: 3; flex: 1 0 100%; padding-inline: .8rem; font-size: 13px; text-align: center; }
  .guides-link { font-size: 13px; }
  .content-languages { gap: 0; }
  .content-lang { width: 31px; padding: 4px; }
  .content-lang img { width: 22px; height: 15px; }
  .hero h1 { font-size: 2.35rem; }
}

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