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

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

:root {
  --bg:      #EDE8DF;
  --white:   #FFFFFF;
  --text:    #2C2820;
  --accent:  #B8512A;
  --muted:   #9A9186;
  --border:  rgba(44,40,32,.10);
  --card-bg: #FFFFFF;
  --soon-bg: #E8E2D8;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

/* ── Layout ─────────────────────────────────── */
.wrap { max-width: 1040px; margin: 0 auto; padding: 0 28px; }
.wrap--narrow { max-width: 720px; margin: 0 auto; padding: 0 28px; }

/* ── Header ─────────────────────────────────── */
header {
  padding: 18px 0;
  position: sticky; top: 0; z-index: 20;
  background: rgba(237,232,223,.90);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
header .wrap { display: flex; align-items: center; justify-content: space-between; }

.logo {
  display: flex; align-items: center; gap: 9px;
  font-size: .95rem;
  font-weight: 400;
  color: var(--text);
  letter-spacing: .01em;
}

.lang-btn {
  display: flex; align-items: center; gap: 6px;
  font-size: .8rem;
  color: var(--muted);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 5px 13px;
  cursor: default;
  background: rgba(255,255,255,.5);
}
.lang-btn svg { opacity: .6; }

/* ── Hero ────────────────────────────────────── */
.hero {
  padding: 72px 28px 64px;
  text-align: center;
}
.hero__wreath {
  display: flex; justify-content: center;
  margin-bottom: 18px;
  color: var(--text);
  opacity: .85;
}
.hero__eyebrow {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.hero__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.8rem, 7vw, 4.8rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.05;
  margin-bottom: 18px;
  font-style: normal;
}
.hero__title em {
  font-style: italic;
  font-weight: 600;
  color: var(--accent);
}
.hero__sub {
  font-size: .97rem;
  color: var(--muted);
  font-weight: 300;
  margin-bottom: 28px;
}
.hero__line {
  width: 40px; height: 2px;
  background: var(--accent);
  margin: 0 auto;
}

/* ── Section label ───────────────────────────── */
.section-label {
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  margin-bottom: 32px;
}

/* ── Brands grid ─────────────────────────────── */
#marques { padding: 20px 0 80px; }

.brands-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 640px) { .brands-grid { grid-template-columns: 1fr; } }

/* Active brand card */
.brand-card {
  background: var(--card-bg);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  display: flex; flex-direction: column;
  transition: box-shadow .2s, transform .2s;
}
.brand-card:hover { box-shadow: 0 6px 28px rgba(44,40,32,.10); transform: translateY(-2px); }

.brand-card__preview {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--bg);
  overflow: hidden;
  position: relative;
}
.brand-card__preview img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top;
  display: block;
}
.brand-card__preview iframe {
  width: 200%; height: 200%;
  transform: scale(.5); transform-origin: top left;
  pointer-events: none; border: 0;
}

.brand-card__body { padding: 20px 22px 22px; }
.brand-card__title {
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 6px;
}
.brand-card__desc {
  font-size: .85rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.55;
  margin-bottom: 16px;
}
.brand-card__link {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: .82rem;
  font-weight: 500;
  color: var(--accent);
  transition: gap .15s;
}
.brand-card__link:hover { gap: 8px; }

/* Soon card */
.brand-card--soon {
  background: var(--soon-bg);
  border: 1px solid rgba(44,40,32,.08);
}
.brand-card--soon .brand-card__preview {
  background: var(--soon-bg);
  display: flex; align-items: center; justify-content: center;
}
.brand-card--soon .brand-card__preview svg { opacity: .18; }
.brand-card--soon:hover { transform: none; box-shadow: none; cursor: default; }
.brand-card__soon-badge {
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}
.brand-card--soon .brand-card__title { color: var(--text); }
.brand-card--soon .brand-card__desc { margin-bottom: 0; }

/* ── Journal (blog) ──────────────────────────── */
#journal {
  padding: 20px 0 80px;
  border-top: 1px solid var(--border);
}
#journal .section-label { margin-top: 48px; }

.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 768px) { .journal-grid { grid-template-columns: 1fr; } }
@media (min-width: 641px) and (max-width: 768px) { .journal-grid { grid-template-columns: 1fr 1fr; } }

.article-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 22px;
  display: flex; flex-direction: column;
  transition: box-shadow .2s;
}
.article-card:hover { box-shadow: 0 4px 20px rgba(44,40,32,.08); }

.article-card__tag {
  font-size: .66rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.article-card__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 10px;
}
.article-card__excerpt {
  font-size: .84rem;
  color: var(--muted);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 16px;
}
.article-card__link {
  font-size: .8rem;
  font-weight: 500;
  color: var(--accent);
  display: inline-flex; align-items: center; gap: 4px;
  align-self: flex-start;
}
.article-card__link:hover { gap: 8px; }

/* ── Blog single page ────────────────────────── */
.blog-post { padding: 64px 0 100px; }
.blog-post__back {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .78rem; font-weight: 500;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 40px;
}
.blog-post__back:hover { color: var(--text); }
.blog-post__back::before { content: '←'; }
.blog-post__header {
  border-top: 2px solid var(--accent);
  padding-top: 24px;
  margin-bottom: 36px;
}
.blog-post__tag {
  font-size: .68rem; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 10px;
}
.blog-post__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}
.blog-post__body { background: var(--white); border-radius: 8px; padding: 36px; border: 1px solid var(--border); }
.blog-post__body h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; font-weight: 700;
  color: var(--text); margin: 32px 0 10px;
}
.blog-post__body h2:first-child { margin-top: 0; }
.blog-post__body p { font-size: .95rem; color: #4A4540; margin-bottom: 16px; line-height: 1.75; }
.blog-post__body a { color: var(--accent); text-underline-offset: 3px; text-decoration: underline; }
.blog-post__body a:hover { color: var(--text); }
.lang-section { border-left: 3px solid rgba(184,81,42,.25); padding-left: 22px; margin-bottom: 40px; }
.lang-badge {
  display: inline-block; background: rgba(184,81,42,.08);
  color: var(--accent); font-size: .68rem; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase;
  padding: 3px 10px; border-radius: 3px; margin-bottom: 14px;
}

/* ── Footer ──────────────────────────────────── */
footer {
  border-top: 1px solid var(--border);
  padding: 40px 0 52px;
  text-align: center;
}
.footer__logo {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-size: .95rem; color: var(--accent); margin-bottom: 12px;
}
.footer__links {
  font-size: .8rem; color: var(--muted);
  margin-bottom: 6px;
}
.footer__links a:hover { color: var(--accent); }
.footer__copy { font-size: .75rem; color: var(--muted); }
