/* =========================================================
   FaitPourVous — Pinterest Culinary Luxury × Métisse
   Palette : crème perle, noir velours, bordeaux profond,
   émeraude sourd, dorure champagne nacré.
   Motifs subtils inspirés du bogolan/wax intégrés en bordures.
   ========================================================= */

:root {
  /* Core palette — luxe Pinterest culinaire */
  --cream: #f1ead9;          /* crème perle */
  --cream-deep: #e6dcc4;     /* crème vieillie */
  --paper: #faf6ec;          /* papier ivoire */
  --pearl: #fcf8ee;          /* perle nacrée */
  --ink: #131210;            /* noir velours, plus profond que noir pur */
  --ink-soft: #2a2520;       /* noir adouci */
  --cocoa: #3d2e22;          /* brun expresso */

  /* Accents glamour */
  --bordeaux: #6e1f2e;       /* bordeaux profond, signature luxe */
  --bordeaux-deep: #4a121d;  /* bordeaux nuit */
  --emerald: #1f4538;        /* émeraude sourd, ton restaurant chic */
  --emerald-deep: #142d24;
  --gold: #b8954e;           /* or champagne nacré */
  --gold-bright: #d4b572;    /* or clair, hover */
  --gold-deep: #8c6f33;      /* or bronze */
  --rose-dust: #b88a82;      /* rose poudré subtil */

  /* Compatibilité — alias avec anciennes variables pour ne rien casser */
  --terracotta: var(--bordeaux);
  --terracotta-deep: var(--bordeaux-deep);
  --clay: #c97a4f;
  --champagne: var(--gold);
  --champagne-deep: var(--gold-deep);
  --sage: var(--emerald);
  --bone: #e8dcc4;
  --line: #d4c5a8;

  /* Type — touche éditoriale magazine */
  --serif: 'Cormorant Garamond', 'EB Garamond', Georgia, serif;
  --display: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --script: 'Caveat', cursive;

  /* Layout */
  --max: 1340px;
  --gutter: clamp(20px, 4vw, 56px);

  /* Motifs métisses — bordures bogolan/wax subtiles, en SVG inline */
  --bogolan-border: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='6' viewBox='0 0 24 6'><path d='M0 3 L4 1 L4 5 L8 3 L12 1 L12 5 L16 3 L20 1 L20 5 L24 3' stroke='%23b8954e' stroke-width='0.8' fill='none' opacity='0.5'/></svg>");
  --wax-pattern: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'><circle cx='20' cy='20' r='1.5' fill='%23b8954e' opacity='0.06'/><circle cx='0' cy='0' r='1.5' fill='%23b8954e' opacity='0.06'/><circle cx='40' cy='0' r='1.5' fill='%23b8954e' opacity='0.06'/><circle cx='0' cy='40' r='1.5' fill='%23b8954e' opacity='0.06'/><circle cx='40' cy='40' r='1.5' fill='%23b8954e' opacity='0.06'/><path d='M20 8 L24 16 L20 24 L16 16 Z' stroke='%23b8954e' stroke-width='0.4' fill='none' opacity='0.08'/></svg>");
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  /* Texture papier perlé + motif wax très discret en arrière-plan */
  background-image:
    radial-gradient(at 8% 3%, rgba(110, 31, 46, 0.035) 0%, transparent 45%),
    radial-gradient(at 92% 97%, rgba(31, 69, 56, 0.03) 0%, transparent 45%),
    var(--wax-pattern);
  background-size: auto, auto, 80px 80px;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* =========================================================
   TOPBAR
   ========================================================= */
.topbar {
  background: var(--ink);
  color: var(--cream);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  position: relative;
  /* Touche métisse : fine bordure bogolan dorée en bas */
  border-bottom: 1px solid var(--gold-deep);
}
.topbar::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 3px;
  background-image: var(--bogolan-border);
  background-repeat: repeat-x;
  background-size: 24px 6px;
  opacity: 0.7;
  pointer-events: none;
}
.topbar-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 9px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.topbar-divider { color: var(--champagne); }
.topbar-link {
  color: var(--champagne);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
.topbar-link:hover { border-color: var(--champagne); }

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(6px);
}
.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px var(--gutter);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  line-height: 1.05;
  gap: 4px;
}
.brand-name {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0.01em;
  color: var(--ink);
}
.brand-name em {
  font-style: italic;
  color: var(--terracotta);
  font-weight: 400;
}
.brand-tagline {
  font-family: var(--sans);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-top: 2px;
}
/* legacy support if anyone uses brand-mark */
.brand-mark {
  font-family: var(--serif);
  font-style: italic;
  font-size: 28px;
  color: var(--terracotta);
  letter-spacing: -0.02em;
  margin-bottom: 2px;
}

.primary-nav > ul {
  display: flex;
  gap: 32px;
  list-style: none;
}
.primary-nav > ul > li {
  position: relative;
}
.primary-nav > ul > li > a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 12px 0;
  display: inline-block;
  transition: color 0.2s;
}
.primary-nav > ul > li > a:hover { color: var(--terracotta); }

/* Megamenu */
.megamenu {
  position: absolute;
  top: 100%;
  left: -40px;
  width: 820px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-top: 3px solid var(--terracotta);
  padding: 36px;
  display: grid;
  grid-template-columns: repeat(3, 1fr) 1.2fr;
  gap: 32px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.25s ease;
  box-shadow: 0 24px 60px rgba(28, 20, 15, 0.15);
}
.primary-nav > ul > li:hover .megamenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.megamenu-col h4 {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--bone);
}
.megamenu-col a {
  display: block;
  padding: 6px 0;
  font-family: var(--serif);
  font-size: 17px;
  color: var(--ink);
  transition: all 0.2s;
}
.megamenu-col a:hover { color: var(--terracotta); padding-left: 4px; }

.megamenu-feature .feature-link {
  padding: 0;
}
.megamenu-feature .feature-img {
  height: 140px;
  background-size: cover;
  background-position: center;
  margin-bottom: 14px;
  position: relative;
}
.megamenu-feature .feature-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--paper);
  color: var(--ink);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 10px;
  font-weight: 600;
  font-family: var(--sans);
}
.megamenu-feature h5 {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.25;
  font-weight: 500;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: flex-end;
}
.icon-btn {
  background: none;
  border: none;
  color: var(--ink);
  cursor: pointer;
  padding: 8px;
  display: flex;
  transition: color 0.2s;
}
.icon-btn:hover { color: var(--terracotta); }

.header-cta {
  background: var(--ink);
  color: var(--gold-bright);
  padding: 11px 22px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid var(--ink);
  position: relative;
  transition: all 0.3s;
}
.header-cta::before {
  content: '';
  position: absolute;
  inset: 3px;
  border: 1px solid transparent;
  transition: border-color 0.3s;
  pointer-events: none;
}
.header-cta:hover {
  background: var(--bordeaux);
  border-color: var(--bordeaux);
  color: var(--gold-bright);
}
.header-cta:hover::before {
  border-color: rgba(212, 181, 114, 0.5);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  padding: clamp(28px, 4vw, 48px) var(--gutter);
  max-width: var(--max);
  margin: 0 auto;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: clamp(24px, 3vw, 40px);
  align-items: stretch;
}

.hero-feature-link {
  display: block;
  height: 100%;
}
.hero-img {
  height: clamp(380px, 52vw, 620px);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.hero-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(28, 20, 15, 0.65));
  pointer-events: none;
}
.hero-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  background: var(--ink);
  color: var(--gold-bright);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 10px 18px;
  z-index: 2;
  border: 1px solid var(--gold);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}
.hero-badge::before {
  content: '✦ ';
  color: var(--gold-bright);
  margin-right: 4px;
}
.hero-feature-text {
  padding-top: 28px;
  max-width: 640px;
}
.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 600;
  display: block;
  margin-bottom: 14px;
}
.hero-feature h1 {
  font-family: var(--serif);
  font-size: clamp(34px, 4.5vw, 58px);
  line-height: 1.05;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
  color: var(--ink);
}
.hero-feature p {
  font-family: var(--serif);
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.5;
  color: var(--ink-soft);
  font-style: italic;
  margin-bottom: 18px;
  max-width: 540px;
}
.hero-author {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cocoa);
}

/* Hero side */
.hero-side {
  background: var(--cream);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  border-top: 3px solid var(--terracotta);
}
.hero-side-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 18px;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--bone);
}
.hero-side-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--cocoa);
}
.hero-side-num {
  font-family: var(--serif);
  font-style: italic;
  color: var(--terracotta);
  font-size: 16px;
}
.hero-side-item {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--bone);
  transition: transform 0.25s;
}
.hero-side-item:last-child { border-bottom: none; }
.hero-side-item:hover { transform: translateX(4px); }
.hero-side-img {
  width: 90px;
  height: 90px;
  background-size: cover;
  background-position: center;
}
.hero-side-item .cat {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
}
.hero-side-item h3 {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.2;
  font-weight: 500;
  margin-bottom: 4px;
}
.hero-side-item .meta {
  font-size: 12px;
  color: var(--cocoa);
}

/* =========================================================
   TICKER
   ========================================================= */
.ticker {
  background: var(--ink);
  color: var(--cream);
  overflow: hidden;
  padding: 14px 0;
  border-block: 1px solid var(--cocoa);
}
.ticker-track {
  display: flex;
  gap: 36px;
  white-space: nowrap;
  animation: scroll 38s linear infinite;
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  letter-spacing: 0.04em;
}
.ticker-track span:nth-child(odd) { color: var(--champagne); }
@keyframes scroll {
  to { transform: translateX(-50%); }
}

/* =========================================================
   SECTION HEAD
   ========================================================= */
.section-head {
  text-align: center;
  margin-bottom: 56px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.section-head--inline {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  text-align: left;
  max-width: 100%;
  margin-bottom: 48px;
  gap: 24px;
  flex-wrap: wrap;
}
.section-eyebrow {
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
  display: inline-block;
  margin-bottom: 14px;
  position: relative;
  padding: 0 32px;
}
.section-head--inline .section-eyebrow { padding: 0; }
.section-head:not(.section-head--inline) .section-eyebrow::before,
.section-head:not(.section-head--inline) .section-eyebrow::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 24px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold) 50%, transparent);
}
.section-head:not(.section-head--inline) .section-eyebrow::before { left: 0; }
.section-head:not(.section-head--inline) .section-eyebrow::after { right: 0; }

.section-title {
  font-family: var(--serif);
  font-size: clamp(38px, 5.4vw, 64px);
  line-height: 1.02;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 18px;
}
.section-title em {
  font-style: italic;
  color: var(--bordeaux);
  font-weight: 400;
  position: relative;
}
.section-title em::after {
  content: '';
  position: absolute;
  bottom: 0.08em;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.7;
}
.section-lede {
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.5;
  color: var(--ink-soft);
  font-style: italic;
}

.link-arrow {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid var(--terracotta);
  padding-bottom: 4px;
  transition: all 0.25s;
}
.link-arrow:hover { color: var(--terracotta); padding-bottom: 6px; }

/* =========================================================
   CATEGORIES
   ========================================================= */
.categories {
  padding: clamp(56px, 8vw, 100px) 0;
  background: var(--cream);
  position: relative;
}
.categories::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 56px;
  background: var(--terracotta);
}
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 280px;
  gap: 16px;
}
.cat-card {
  position: relative;
  overflow: hidden;
  display: block;
  cursor: pointer;
}
.cat-card::after {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid transparent;
  z-index: 3;
  transition: border-color 0.4s, inset 0.4s;
  pointer-events: none;
}
.cat-card:hover::after {
  border-color: var(--gold-bright);
  inset: 12px;
}
.cat-card--lg { grid-column: span 2; }
.cat-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 1.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.cat-card:hover .cat-img { transform: scale(1.08); }
.cat-text {
  position: absolute;
  bottom: 28px;
  left: 28px;
  right: 28px;
  color: var(--paper);
  z-index: 2;
}
.cat-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--gold-bright);
  display: block;
  margin-bottom: 10px;
  letter-spacing: 0.06em;
}
.cat-num::before {
  content: '✦ ';
  font-style: normal;
}
.cat-text h3 {
  font-family: var(--serif);
  font-size: 30px;
  line-height: 1.05;
  font-weight: 500;
  margin-bottom: 6px;
  letter-spacing: -0.005em;
}
.cat-card--lg .cat-text h3 { font-size: 40px; }
.cat-count {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(241, 234, 217, 0.85);
  font-weight: 500;
}

/* =========================================================
   EDITOR'S NOTE
   ========================================================= */
.editors-note {
  padding: clamp(60px, 9vw, 110px) 0;
  background: var(--paper);
}
.editors-note-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
}
.editors-text {
  position: relative;
}
.editors-text .section-eyebrow { padding: 0; }
.editors-text .section-eyebrow::before,
.editors-text .section-eyebrow::after { display: none; }
.editors-text blockquote {
  position: relative;
  padding: 24px 0;
}
.quote-mark {
  font-family: var(--serif);
  font-size: 80px;
  line-height: 0.5;
  color: var(--terracotta);
  display: inline-block;
  vertical-align: middle;
}
.editors-text blockquote p {
  font-family: var(--serif);
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.4;
  color: var(--ink);
  font-style: italic;
  display: inline;
  font-weight: 400;
}
.editors-text blockquote p em {
  font-style: italic;
  color: var(--terracotta);
  text-decoration: underline;
  text-decoration-color: var(--champagne);
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}
.editors-sign { margin-top: 24px; }
.editors-sign .sig {
  font-family: var(--script);
  font-size: 32px;
  color: var(--ink);
  display: block;
  line-height: 1;
}
.editors-sign .role {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cocoa);
  margin-top: 6px;
  display: block;
}
.editors-img {
  height: 520px;
  background-size: cover;
  background-position: center;
  filter: sepia(0.15) saturate(0.95);
}

/* =========================================================
   WORKSHOP
   ========================================================= */
.workshop {
  padding: clamp(56px, 8vw, 100px) 0;
  background: var(--ink);
  color: var(--cream);
  position: relative;
  overflow: hidden;
  /* Liserés bogolan en haut et en bas */
  border-top: 1px solid var(--gold-deep);
  border-bottom: 1px solid var(--gold-deep);
}
.workshop::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--wax-pattern);
  background-size: 80px 80px;
  opacity: 0.4;
  pointer-events: none;
}
.workshop > * { position: relative; z-index: 1; }
.workshop .section-eyebrow { color: var(--gold-bright); }
.workshop .section-eyebrow::before,
.workshop .section-eyebrow::after {
  background: linear-gradient(90deg, transparent, var(--gold-bright) 50%, transparent);
}
.workshop .section-title { color: var(--cream); }
.workshop .section-title em { color: var(--gold-bright); }
.workshop .section-title em::after {
  background: linear-gradient(90deg, transparent, var(--gold-bright), transparent);
}
.workshop .link-arrow {
  color: var(--cream);
  border-bottom-color: var(--gold);
}
.workshop .link-arrow:hover { color: var(--gold-bright); }

.workshop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(200, 165, 102, 0.25);
}
.workshop-card {
  padding: 40px 32px 40px 0;
  border-right: 1px solid rgba(200, 165, 102, 0.25);
  border-bottom: 1px solid rgba(200, 165, 102, 0.25);
  transition: background 0.3s;
  cursor: pointer;
  display: block;
}
.workshop-card:nth-child(1) { padding-right: 32px; }
.workshop-card:nth-child(2) { padding: 40px 32px; }
.workshop-card:nth-child(3) { padding: 40px 0 40px 32px; border-right: none; }
.workshop-card:hover { background: rgba(200, 165, 102, 0.05); }
.workshop-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--champagne);
  margin-bottom: 18px;
  letter-spacing: 0.06em;
}
.workshop-card h3 {
  font-family: var(--serif);
  font-size: 26px;
  line-height: 1.15;
  font-weight: 500;
  margin-bottom: 14px;
  color: var(--cream);
}
.workshop-card p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  line-height: 1.5;
  color: rgba(244, 236, 223, 0.78);
  margin-bottom: 18px;
}
.workshop-meta {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--champagne);
}

/* =========================================================
   GUIDES
   ========================================================= */
.guides-section {
  padding: clamp(56px, 8vw, 100px) 0;
  background: var(--paper);
}
.guides-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
}
.guide-card--featured {
  display: block;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.guide-card--featured .guide-img {
  height: 380px;
  background-size: cover;
  background-position: center;
  transition: transform 1s;
}
.guide-card--featured:hover .guide-img { transform: scale(1.04); }
.guide-card--featured .guide-body {
  padding: 32px;
}
.guide-tag {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--terracotta);
  display: inline-block;
  margin-bottom: 12px;
}
.guide-card--featured h3 {
  font-family: var(--serif);
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.1;
  font-weight: 500;
  margin-bottom: 14px;
  color: var(--ink);
}
.guide-card--featured p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  line-height: 1.5;
  color: var(--ink-soft);
  margin-bottom: 14px;
}
.guide-meta {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cocoa);
}

.guides-list {
  display: flex;
  flex-direction: column;
}
.guide-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--bone);
  transition: padding 0.25s;
}
.guide-row:first-child { padding-top: 0; }
.guide-row:last-child { border-bottom: none; }
.guide-row:hover { padding-left: 8px; }
.guide-row-img {
  width: 100px;
  height: 100px;
  background-size: cover;
  background-position: center;
}
.guide-row .guide-tag { font-size: 10px; margin-bottom: 6px; }
.guide-row h4 {
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1.2;
  font-weight: 500;
  margin-bottom: 4px;
}

/* =========================================================
   NEWSLETTER
   ========================================================= */
.newsletter {
  padding: clamp(70px, 10vw, 130px) var(--gutter);
  position: relative;
  background: var(--bordeaux-deep);
  color: var(--cream);
  overflow: hidden;
  border-top: 1px solid var(--gold-deep);
  border-bottom: 1px solid var(--gold-deep);
}
.newsletter::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--wax-pattern);
  background-size: 80px 80px;
  opacity: 0.5;
  pointer-events: none;
}
.newsletter::after {
  content: '✦';
  position: absolute;
  top: 36px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--gold);
  font-size: 18px;
  pointer-events: none;
}
.newsletter-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1556909114-f6e7ad7d3136?w=2000');
  background-size: cover;
  background-position: center;
  opacity: 0.12;
  filter: sepia(0.3) saturate(0.8);
  mix-blend-mode: luminosity;
}
.newsletter-inner {
  position: relative;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  z-index: 2;
}
.newsletter-eyebrow {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--gold-bright);
  margin-bottom: 18px;
  letter-spacing: 0.06em;
}
.newsletter h2 {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.05;
  font-weight: 500;
  margin-bottom: 22px;
  color: var(--cream);
}
.newsletter h2 em {
  font-style: italic;
  color: var(--champagne);
}
.newsletter p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  line-height: 1.5;
  color: rgba(244, 236, 223, 0.85);
  margin-bottom: 32px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.newsletter-form {
  display: flex;
  gap: 0;
  max-width: 520px;
  margin: 0 auto 16px;
}
.newsletter-form input {
  flex: 1;
  padding: 18px 20px;
  background: rgba(244, 236, 223, 0.08);
  border: 1px solid rgba(244, 236, 223, 0.3);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 15px;
  transition: all 0.25s;
}
.newsletter-form input::placeholder { color: rgba(244, 236, 223, 0.5); }
.newsletter-form input:focus {
  outline: none;
  border-color: var(--champagne);
  background: rgba(244, 236, 223, 0.12);
}
.newsletter-form button {
  padding: 18px 36px;
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  color: var(--ink);
  border: 1px solid var(--gold);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
}
.newsletter-form button:hover {
  background: var(--cream);
  border-color: var(--cream);
  letter-spacing: 0.24em;
}
.newsletter-disclaimer {
  font-size: 12px;
  color: rgba(241, 234, 217, 0.6);
  letter-spacing: 0.06em;
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: var(--ink);
  color: var(--cream);
  padding: 70px 0 30px;
  position: relative;
  border-top: 1px solid var(--gold-deep);
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 1px;
  left: 0;
  right: 0;
  height: 3px;
  background-image: var(--bogolan-border);
  background-repeat: repeat-x;
  background-size: 24px 6px;
  opacity: 0.7;
  pointer-events: none;
}
.site-footer::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--wax-pattern);
  background-size: 80px 80px;
  opacity: 0.4;
  pointer-events: none;
}
.site-footer > * { position: relative; z-index: 1; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(200, 165, 102, 0.2);
}
.footer-mark {
  font-family: var(--serif);
  font-style: italic;
  font-size: 36px;
  color: var(--terracotta);
  line-height: 1;
  display: block;
  margin-bottom: 12px;
}
.footer-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--champagne);
  line-height: 1;
  display: block;
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}
.footer-brand h3 {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0.01em;
  margin-bottom: 16px;
}
.footer-brand h3 em {
  font-style: italic;
  color: var(--terracotta);
}
.footer-brand p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  line-height: 1.55;
  color: rgba(244, 236, 223, 0.7);
  max-width: 380px;
  margin-bottom: 20px;
}
.footer-brand p em { color: var(--champagne); }
.footer-social {
  display: flex;
  gap: 18px;
}
.footer-social a {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--champagne);
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: border-color 0.2s;
}
.footer-social a:hover { border-color: var(--champagne); }
.footer-col h4 {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 18px;
}
.footer-col a {
  display: block;
  font-family: var(--serif);
  font-size: 16px;
  color: rgba(244, 236, 223, 0.78);
  padding: 5px 0;
  transition: all 0.2s;
}
.footer-col a:hover { color: var(--cream); padding-left: 4px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(244, 236, 223, 0.5);
  letter-spacing: 0.04em;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom span:last-child {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--champagne);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .header-inner { grid-template-columns: auto auto auto; }
  .primary-nav { display: none; }
  .menu-toggle { display: flex; }
  .hero-grid { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .editors-note-grid { grid-template-columns: 1fr; }
  .editors-img { height: 380px; }
  .workshop-grid { grid-template-columns: 1fr; }
  .workshop-card,
  .workshop-card:nth-child(1),
  .workshop-card:nth-child(2),
  .workshop-card:nth-child(3) {
    padding: 32px 0;
    border-right: none;
  }
  .guides-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .topbar-inner { font-size: 11px; }
  .topbar-divider { display: none; }
  .header-actions .icon-btn:nth-child(2) { display: none; }
  .header-cta { padding: 8px 14px; font-size: 11px; }
  .brand-name { font-size: 18px; }
  .cat-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .cat-card--lg { grid-column: span 1; }
  .cat-text h3,
  .cat-card--lg .cat-text h3 { font-size: 26px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .newsletter-form { flex-direction: column; gap: 8px; }
  .section-head--inline { flex-direction: column; align-items: flex-start; }
  .editors-text blockquote p { font-size: 22px; }
  .quote-mark { font-size: 56px; }
}
