/* ============================================================
   MORNING BIRDS — friperie vintage & objets d'époque, Montpellier
   Éditorial, chaleureux, contrasté. Typo d'enseigne (Anton condensé,
   oxblood/or), grands aplats, photographie plein cadre. Mobile-first.
   ============================================================ */

/* ---------- Fontes de marque : Ostrich Sans (logo Morning Birds) ---------- */
@font-face {
  font-family: "Ostrich"; font-style: normal; font-weight: 700;
  src: url("assets/fonts/OstrichSans-Bold.woff2") format("woff2"); font-display: swap;
}
@font-face {
  font-family: "Ostrich"; font-style: normal; font-weight: 900;
  src: url("assets/fonts/OstrichSans-Heavy.woff2") format("woff2"); font-display: swap;
}
@font-face {
  font-family: "Ostrich Inline"; font-style: normal; font-weight: 400;
  src: url("assets/fonts/OstrichSansInline.woff2") format("woff2"); font-display: swap;
}

:root {
  /* Palette d'après le logo : bordeaux + or, sur vert canard, papier vieilli */
  --paper:   #e7dcbf;   /* papier crème vieilli */
  --paper-2: #ddd0ad;   /* crème plus dense */
  --ink:     #3a3025;   /* encre brun-noir passée */
  --ink-2:   #6d5f4b;   /* texte courant, brun sourd */
  --oxblood: #7c2b22;   /* bordeaux du logo */
  --oxblood-d:#5f1f18;
  --rust:    #b45a34;   /* terracotta */
  --gold:    #cf9b3c;   /* or du liseré */
  --gold-lt: #e6b84a;   /* or clair de l'inline */
  --teal:    #3a8776;   /* vert du logo (unifié header + panneau + sections) */
  --teal-d:  #2c6a5b;
  --cream:   #f1e9d2;

  --display: "Ostrich", "Arial Narrow", sans-serif;
  --inline:  "Ostrich Inline", "Ostrich", sans-serif;
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "DM Sans", system-ui, -apple-system, "Segoe UI", sans-serif;

  --maxw: 1180px;
  --pad: clamp(1.25rem, 5vw, 4.5rem);

  /* ===== SYSTÈME MORNING BIRDS (échantillonné dans le logo) ===== */
  --vert:      #3a8776;   /* fond du panneau */
  --vert-deep: #1d4b40;   /* vert profond — matière & ombres */
  --rouille:   #9a3526;   /* accent / CTA */
  --or:        #e4b457;   /* linework / détails déco */
  --creme:     #f2e8d5;   /* texte */

  --font-title: "Fraunces", Georgia, "Times New Roman", serif;  /* serif 70s chaleureux */
  --font-text:  "Mulish", system-ui, -apple-system, sans-serif;

  /* échelle d'espacement 4 / 8 */
  --space-1: 0.5rem;  --space-2: 1rem;   --space-3: 1.5rem;
  --space-4: 2rem;    --space-5: 3rem;   --space-6: 4rem;
}

/* SEO : titre réel, masqué visuellement (lu par Google & lecteurs d'écran) */
.visually-hidden {
  position: absolute !important; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

/* focus clavier visible */
:focus-visible { outline: 2px solid var(--or); outline-offset: 3px; border-radius: 2px; }

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--serif);
  color: var(--ink);
  background-color: var(--paper);
  /* papier vieilli, taches douces et vignettage léger */
  background-image:
    radial-gradient(70% 55% at 15% 10%, rgba(150,110,60,0.06), transparent 60%),
    radial-gradient(60% 50% at 88% 20%, rgba(120,70,50,0.05), transparent 60%),
    radial-gradient(65% 55% at 80% 92%, rgba(90,65,35,0.06), transparent 60%),
    radial-gradient(130% 120% at 50% 45%, transparent 62%, rgba(58,48,37,0.12));
  background-attachment: fixed;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

/* grain d'impression, chaud et discret */
.grain {
  position: fixed; inset: 0; z-index: 9999; pointer-events: none;
  opacity: 0.07; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px;
}

/* ---------- Type ---------- */
h1, h2, h3 { font-family: var(--serif); font-weight: 600; margin: 0; line-height: 1.04; letter-spacing: -0.01em; }
p { margin: 0; }
a { color: inherit; }

.kicker {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--rust);
  margin: 0 0 1.4rem;
}
.kicker.light { color: var(--gold-lt); }

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--sans); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.78rem;
  padding: 1rem 1.75rem; text-decoration: none;
  border: 1.5px solid transparent; border-radius: 2px;
  transition: background .18s ease, color .18s ease, border-color .18s ease;
  cursor: pointer;
}
.btn-primary { background: var(--oxblood); color: var(--cream); }
.btn-primary:hover { background: var(--oxblood-d); }
.btn-outline-light { border-color: rgba(244,236,214,0.7); color: var(--cream); }
.btn-outline-light:hover { background: var(--cream); color: var(--ink); border-color: var(--cream); }
.btn-sm { background: var(--oxblood); color: var(--cream); padding: 0.7rem 1.15rem; font-size: 0.72rem; }
.btn-sm:hover { background: var(--oxblood-d); }

/* ---------- Header (fond vert du logo) ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; gap: 1.5rem;
  padding: 0.6rem var(--pad);
  background: var(--teal);
  border-bottom: 1px solid rgba(244,236,214,0.2);
}
.brand { display: flex; align-items: center; margin-right: auto; line-height: 0; }
.brand img { height: clamp(42px, 5vw, 54px); width: auto; display: block; }
.site-nav { display: flex; gap: 1.8rem; }
.site-nav a {
  text-decoration: none; color: var(--cream);
  font-size: 0.82rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.06em;
  position: relative; padding: 2px 0;
}
.site-nav a::after {
  content: ""; position: absolute; left: 0; bottom: -3px; height: 1.5px; width: 0;
  background: var(--gold-lt); transition: width .2s ease;
}
.site-nav a:hover::after { width: 100%; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--cream); transition: .25s; }

/* menu mobile plein écran */
.mobile-menu {
  display: none; flex-direction: column; justify-content: center; align-items: center; gap: var(--space-1);
  position: fixed; inset: 0; z-index: 90;
  padding: 5rem var(--pad) var(--space-5);
  background: var(--teal);
}
.mobile-menu a {
  text-decoration: none; color: var(--cream);
  text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; font-size: 1.4rem;
  padding: 0.7rem 0;
}
.mobile-menu a:hover { color: var(--or); }

/* ============================================================
   HERO — deux zones séparées : PANNEAU texte (vert texturé) + PHOTO.
   Le texte n'est jamais posé sur l'image. Rétro 70s + linework déco.
   Mobile : photo en haut (hauteur maîtrisée), panneau dessous.
   ============================================================ */
.hero {
  display: flex; flex-direction: column;   /* mobile : empilé */
  font-family: var(--font-text);
  color: var(--creme);
}

/* ----- ZONE PHOTO ----- */
.hero-photo {
  position: relative; order: -1;           /* mobile : au-dessus */
  height: clamp(240px, 42vh, 400px);
  overflow: hidden; background: var(--vert-deep);
}
.hero-photo > img {
  width: 100%; height: 100%; object-fit: cover; object-position: 50% 30%;
  filter: saturate(1.05) contrast(1.02);
}
/* ----- PANNEAU TEXTE (fond uni + matière papier) ----- */
.hero-panel {
  position: relative; overflow: hidden;
  background: var(--vert);
  display: flex; align-items: center;
}
/* matière : grain papier + léger dégradé de profondeur (subtil, lisibilité intacte) */
.hero-panel::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(120% 90% at 15% 12%, rgba(255,255,255,0.06), transparent 55%),
    radial-gradient(120% 100% at 90% 100%, rgba(18,48,40,0.35), transparent 60%);
}
.hero-panel::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  opacity: 0.5; mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)'/%3E%3C/svg%3E");
  background-size: 180px;
}
.hero-panel-inner {
  position: relative; z-index: 1; width: 100%; max-width: 560px; margin: 0 auto;
  padding: var(--space-5) var(--pad);
}

/* échelle typo — 1 : surtitre + filet double-trait or */
.hero-eyebrow {
  font-family: var(--font-text); text-transform: uppercase;
  letter-spacing: 0.24em; font-size: 0.76rem; font-weight: 700;
  color: var(--or); margin: 0 0 var(--space-2);
}
.deco-rule {
  display: block; width: 72px; height: 6px; margin: 0 0 var(--space-3);
  border-top: 1.5px solid var(--or); border-bottom: 1.5px solid var(--or);
}

/* 2 — logo, taille généreuse */
.hero-logo { display: block; height: clamp(84px, 8vw, 130px); width: auto; margin: 0 0 var(--space-4); }

/* 3 — tagline en Fraunces (serif 70s chaleureux) */
.hero-tagline {
  font-family: var(--font-title); font-weight: 500;
  font-size: clamp(2rem, 3.6vw, 3rem); line-height: 1.1; letter-spacing: -0.01em;
  color: var(--creme); margin: 0 0 var(--space-3);
}
.hero-tagline .amp { color: var(--or); font-style: italic; }

/* 4 — sous-ligne */
.hero-lead {
  font-family: var(--font-text); font-weight: 400;
  font-size: clamp(1rem, 1.3vw, 1.15rem); line-height: 1.55;
  color: rgba(242,232,213,0.9); max-width: 44ch; margin: 0 0 var(--space-4);
}

/* 5 — actions */
.hero-cta { display: flex; gap: 0.8rem; flex-wrap: wrap; margin: 0 0 var(--space-4); }
.hero .btn { font-family: var(--font-text); }
.hero .btn-primary { background: var(--rouille); color: var(--creme); border-color: var(--rouille); }
.hero .btn-primary:hover { background: #7f2b1e; border-color: #7f2b1e; }
.btn-hero-ghost {
  background: transparent; color: var(--creme);
  border: 1.5px solid rgba(228,180,87,0.8);
}
.btn-hero-ghost:hover { background: var(--or); color: var(--vert-deep); border-color: var(--or); }

/* 6 — preuve sociale */
.hero-rating {
  display: flex; align-items: center; flex-wrap: wrap; gap: 0.55rem;
  font-family: var(--font-text); font-size: 0.85rem; letter-spacing: 0.02em;
  color: rgba(242,232,213,0.88); margin: 0;
}
.hero-rating .stars { color: var(--or); letter-spacing: 0.1em; }
.hero-rating strong { color: var(--creme); font-weight: 800; }
.hero-rating .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--rouille); display: inline-block; }

/* ----- DESKTOP : deux zones côte à côte ----- */
@media (min-width: 880px) {
  .hero { display: grid; grid-template-columns: minmax(440px, 46%) 1fr; min-height: clamp(580px, 84vh, 820px); }
  .hero-photo { order: 0; height: auto; }
  .hero-photo::after {                     /* fond le raccord au panneau */
    content: ""; position: absolute; inset: 0; pointer-events: none;
    box-shadow: inset 44px 0 70px -44px rgba(18,48,40,0.75);
  }
  .hero-panel-inner { margin: 0; padding: var(--space-6) clamp(2rem, 4vw, 3.5rem); }
}

/* ---------- Ribbon ---------- */
.ribbon {
  position: relative; overflow: hidden;
  background: var(--oxblood); color: var(--cream);
  padding: 0.85rem 0;
  font-family: var(--sans); font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em;
  font-size: clamp(0.72rem, 3.6vw, 0.86rem);
}
/* mobile : le ruban défile en boucle (2 copies → boucle sans couture) */
.ribbon-track {
  position: relative; z-index: 1;
  display: flex; align-items: center; width: max-content;
  animation: ribbon-marquee 24s linear infinite;
}
.ribbon-track span { display: inline-flex; align-items: center; white-space: nowrap; }
.ribbon-track span::before {
  content: "✳"; color: var(--gold-lt); font-size: 0.7em;
  margin: 0 clamp(1rem, 4.5vw, 1.6rem);
}
@keyframes ribbon-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* desktop : tout tient → version statique, centrée, sans doublon */
@media (min-width: 721px) {
  .ribbon { display: flex; justify-content: center; padding: 0.9rem var(--pad); }
  .ribbon-track { animation: none; width: auto; flex-wrap: wrap; justify-content: center; }
  .ribbon-track .dup { display: none; }
  .ribbon-track span:first-child::before { display: none; }
}
/* accessibilité : pas d'animation si l'utilisateur la refuse → repli statique */
@media (prefers-reduced-motion: reduce) {
  .ribbon { display: flex; justify-content: center; padding-left: var(--pad); padding-right: var(--pad); }
  .ribbon-track { animation: none; width: auto; flex-wrap: wrap; justify-content: center; }
  .ribbon-track .dup { display: none; }
  .ribbon-track span:first-child::before { display: none; }
}

/* ---------- Sections ---------- */
.section { padding: clamp(4rem, 10vw, 8rem) 0; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad); }
.wrap.center { text-align: center; }

.block-head { max-width: var(--maxw); margin: 0 auto clamp(2.5rem, 5vw, 4rem); padding: 0 var(--pad); }
.block-head h2 {
  font-family: var(--serif); font-weight: 900;
  font-size: clamp(2.4rem, 6vw, 4.4rem); line-height: 1.0; letter-spacing: -0.02em;
  color: var(--oxblood);
}

/* Feature (texte + image plein cadre alterné) */
.feature {
  max-width: 1320px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; align-items: center;
  gap: clamp(2rem, 6vw, 5.5rem);
  padding: 0 var(--pad);
}
.feature.reverse .feature-media { order: -1; }
.feature-text { max-width: 520px; }
.feature-text h2 {
  font-family: var(--serif); font-weight: 900;
  font-size: clamp(2.2rem, 4.6vw, 3.5rem); line-height: 1.02; letter-spacing: -0.02em;
  color: var(--oxblood); margin-bottom: 1.4rem;
}
.feature-text p { color: var(--ink-2); font-size: 1.1rem; margin-bottom: 1.1rem; }
.feature-line {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.6vw, 1.7rem); font-style: italic; font-weight: 500;
  color: var(--ink); margin-top: 1.6rem !important; line-height: 1.35;
}
.feature-media { position: relative; margin: 0; overflow: hidden; }
.feature-media img {
  width: 100%; height: 100%; max-height: 78vh; object-fit: cover;
  filter: saturate(1.05) contrast(1.02);
}
/* léger vignettage seulement, on garde la couleur */
.feature-media::after, .grid figure::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  box-shadow: inset 0 0 60px rgba(40,28,18,0.14);
}

.tags { list-style: none; padding: 0; margin: 1.8rem 0 0; display: flex; flex-wrap: wrap; gap: 0.5rem; }
.tags li {
  font-size: 0.76rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.08em;
  padding: 0.45rem 0.95rem; border: 1px solid rgba(36,27,17,0.3); border-radius: 100px; color: var(--ink-2);
}

.univers { background: var(--paper); }
.selection { background: var(--paper-2); }
.infos { background: var(--paper-2); }

/* grain d'impression sur les aplats de couleur */
.ribbon, .trouvailles, .reviews { position: relative; }
.ribbon::before, .trouvailles::before, .reviews::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  opacity: 0.5; mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)'/%3E%3C/svg%3E");
  background-size: 170px;
}
.trouvailles > *, .reviews > * { position: relative; z-index: 1; }

/* ---------- Trouvailles (liste éditoriale) ---------- */
.trouvailles { background: var(--teal); color: var(--cream); }
.trouvailles .block-head h2 { color: var(--cream); }
.finds {
  list-style: none; margin: 0 auto; padding: 0 var(--pad); max-width: var(--maxw);
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 0;
}
.finds li {
  padding: 2rem 0; border-top: 1px solid rgba(244,236,214,0.22);
  display: grid; grid-template-columns: auto 1fr; column-gap: 1.4rem; align-items: baseline;
}
.finds li:nth-child(odd) { padding-right: clamp(1rem, 4vw, 3rem); }
.finds li:nth-child(even) { padding-left: clamp(1rem, 4vw, 3rem); border-left: 1px solid rgba(244,236,214,0.22); }
@media (min-width: 721px) { .finds li:nth-child(1), .finds li:nth-child(2) { border-top: 0; } }
.find-no { font-family: var(--display); font-size: 1.1rem; color: var(--gold-lt); }
.finds h3 { font-size: 1.7rem; text-transform: uppercase; color: var(--cream); margin-bottom: 0.4rem; }
.finds p { color: rgba(244,236,214,0.78); font-size: 0.98rem; grid-column: 2; }

/* ---------- Galerie ---------- */
.galerie { background: var(--paper); padding-bottom: 0; }
.grid {
  display: grid; grid-template-columns: repeat(6, 1fr); grid-auto-rows: clamp(180px, 23vw, 300px);
  gap: 6px; margin-top: clamp(1.5rem, 4vw, 2.5rem);
}
.grid figure { margin: 0; overflow: hidden; position: relative; grid-column: span 2; }
.grid figure::after { z-index: 2; }
.grid img { width: 100%; height: 100%; object-fit: cover; filter: saturate(1.05) contrast(1.02); transition: transform .6s ease; }
.grid figure:hover img { transform: scale(1.04); }
.g-tall { grid-row: span 2; }

/* ---------- Infos ---------- */
.infos-list { margin: 2rem 0; padding: 0; display: grid; gap: 1.4rem; }
.infos-list div { display: grid; grid-template-columns: 130px 1fr; gap: 1rem; align-items: baseline; }
.infos-list dt {
  font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.14em; font-weight: 600; color: var(--oxblood);
}
.infos-list dd { margin: 0; color: var(--ink-2); font-size: 1.02rem; }
.infos-list a { color: var(--oxblood); font-weight: 600; }

/* ---------- Avis ---------- */
.reviews { background: var(--oxblood); color: var(--cream); }
.reviews-score {
  font-family: var(--serif); font-weight: 900;
  font-size: clamp(4rem, 14vw, 9rem); line-height: 0.9; color: var(--cream); margin: 0.3rem 0 0;
}
.reviews-score span { font-family: var(--sans); font-size: 0.16em; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; vertical-align: middle; margin-left: 0.4rem; }
.quotes { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1.5rem, 4vw, 3rem); max-width: 860px; margin: clamp(2rem, 5vw, 3.5rem) auto 0; }
.quotes blockquote {
  margin: 0; font-size: 1.12rem; font-style: italic; line-height: 1.5;
  color: rgba(244,236,214,0.92); text-align: left;
}

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: rgba(244,236,214,0.72); padding: clamp(3rem, 6vw, 4.5rem) var(--pad) 1.6rem; }
.footer-top { max-width: var(--maxw); margin: 0 auto; display: flex; flex-wrap: wrap; gap: 2rem 3rem; justify-content: space-between; padding-bottom: 2rem; border-bottom: 1px solid rgba(244,236,214,0.16); }
.footer-word { font-family: var(--display); font-size: 2rem; text-transform: uppercase; letter-spacing: 0.03em; color: var(--cream); margin: 0 0 0.6rem; }
.footer-sub { font-size: 0.92rem; line-height: 1.6; margin: 0; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 0.6rem 1.6rem; align-content: flex-start; max-width: 520px; }
.footer-nav a { text-decoration: none; color: rgba(244,236,214,0.8); font-size: 0.86rem; text-transform: uppercase; letter-spacing: 0.05em; }
.footer-nav a:hover { color: var(--gold-lt); }
.footer-bottom { max-width: var(--maxw); margin: 1.4rem auto 0; font-size: 0.78rem; letter-spacing: 0.03em; color: rgba(244,236,214,0.5); }

/* ---------- Pages légales ---------- */
.legal-header { padding: 1.4rem var(--pad); border-bottom: 1px solid rgba(36,27,17,0.14); }
.legal-header .brand { display: inline-block; line-height: 1; font-family: var(--display); font-size: 1.4rem; text-transform: uppercase; letter-spacing: 0.04em; color: var(--oxblood); text-decoration: none; }
.legal { max-width: 760px; margin: 0 auto; padding: clamp(2.5rem, 6vw, 4.5rem) var(--pad) 5rem; }
.legal h1 { font-size: clamp(2.4rem, 6vw, 3.4rem); text-transform: uppercase; color: var(--oxblood); margin-bottom: 0.6rem; }
.legal .updated { color: var(--ink-2); font-size: 0.85rem; margin-bottom: 2.5rem; }
.legal h2 { font-size: 1.5rem; text-transform: uppercase; color: var(--ink); margin: 2.4rem 0 0.7rem; }
.legal p, .legal li { color: var(--ink-2); font-size: 1rem; margin-bottom: 0.8rem; }
.legal a { color: var(--oxblood); }
.legal .todo { background: rgba(192,134,44,0.18); border: 1px dashed var(--gold); color: var(--ink); padding: 0.05rem 0.4rem; border-radius: 3px; font-size: 0.9em; white-space: nowrap; }
.legal .back { display: inline-block; margin-top: 2.5rem; text-decoration: none; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; font-size: 0.82rem; color: var(--oxblood); }
.legal .note { margin-top: 2.5rem; padding: 1.1rem 1.3rem; background: var(--paper-2); border-left: 3px solid var(--gold); font-size: 0.92rem; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .site-nav, .header .btn-sm { display: none; }
  .site-header .btn-sm { display: none; }
  .nav-toggle { display: flex; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .mobile-menu { display: flex; }
  .mobile-menu[hidden] { display: none; }
}

@media (max-width: 720px) {
  .hero-panel-inner { padding-top: var(--space-4); padding-bottom: var(--space-4); }
  .hero-eyebrow { letter-spacing: 0.2em; }
  .hero-logo { height: clamp(70px, 20vw, 96px); margin-bottom: var(--space-3); }
  .feature { grid-template-columns: 1fr; gap: 2rem; }
  .feature.reverse .feature-media { order: 0; }
  .feature-media img { max-height: 60vh; }
  .finds { grid-template-columns: 1fr; }
  .finds li { padding: 1.6rem 0 !important; border-left: 0 !important; border-top: 1px solid rgba(244,236,214,0.22) !important; }
  .grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: clamp(160px, 34vw, 240px); }
  .grid figure { grid-column: span 1; }
  .g-tall { grid-row: span 2; }
  .quotes { grid-template-columns: 1fr; }
  .infos-list div { grid-template-columns: 1fr; gap: 0.2rem; }
}

@media (max-width: 420px) {
  .grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .grid figure { grid-column: span 1; }
  .g-tall { grid-row: span 1; }
}
