/* ==========================================================================
   BBQ SWISS GRILLS — Design tokens
   Palette née des matériaux du produit lui-même : acier anthracite,
   laiton des rivets, cuivre du modèle haut de gamme, braise du charbon.
   ========================================================================== */

:root{
  /* couleurs */
  --charcoal-950: #16130f;
  --charcoal-900: #1c1813;
  --charcoal-800: #262019;
  --charcoal-700: #362d23;
  --brass: #b9904f;
  --brass-light: #dcb877;
  --brass-dim: #8a6b3c;
  --copper: #c37b4e;
  --ember: #8a3220;
  --ember-light: #b04a30;
  --ivory: #efe8da;
  --ivory-dim: #e4dbc7;
  --ink: #241f18;
  --steel: #5a5346;
  --steel-light: #8a8172;
  --line: rgba(185,144,79,0.28);
  --line-dark: rgba(239,232,218,0.12);

  /* typographie */
  --f-display: "Big Shoulders Display", "Arial Narrow", sans-serif;
  --f-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --f-mono: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;

  --radius: 2px;
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
ul{ margin: 0; padding: 0; list-style: none; }
h1,h2,h3,h4{ margin: 0; font-family: var(--f-display); font-weight: 700; letter-spacing: 0.01em; }
p{ margin: 0; }
button{ font-family: inherit; cursor: pointer; }

.container{
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

/* focus visibility */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible{
  outline: 2px solid var(--brass-light);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce){
  *{ animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

/* ==========================================================================
   Eyebrow / mono labels
   ========================================================================== */
.eyebrow{
  font-family: var(--f-mono);
  font-size: 12.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before{
  content: "";
  width: 22px;
  height: 1px;
  background: var(--brass);
  display: inline-block;
}
.on-light .eyebrow{ color: var(--ember); }
.on-light .eyebrow::before{ background: var(--ember); }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header{
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(22,19,15,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header .container{
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.brand{
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 0.02em;
  color: var(--ivory);
  text-transform: uppercase;
  line-height: 1;
}
.brand span{ color: var(--brass); }
.brand small{
  display: block;
  font-family: var(--f-mono);
  font-size: 9.5px;
  letter-spacing: 0.14em;
  color: var(--steel-light);
  text-transform: uppercase;
  font-weight: 400;
  margin-top: 3px;
}
.nav{
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav a{
  font-size: 13.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  font-weight: 600;
  position: relative;
  padding: 6px 0;
  transition: color 0.2s;
}
.nav a:hover{ color: var(--brass-light); }
.nav a.current{ color: var(--brass-light); }
.nav a.current::after{
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--brass);
}
.nav-cta{
  background: var(--ember);
  color: var(--ivory) !important;
  padding: 10px 18px !important;
  border-radius: var(--radius);
  font-size: 12.5px !important;
}
.nav-cta:hover{ background: var(--ember-light) !important; }
.menu-toggle{
  display: none;
  background: none;
  border: 1px solid var(--line);
  color: var(--ivory);
  width: 42px; height: 42px;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

@media (max-width: 860px){
  .menu-toggle{ display: flex; }
  .nav{
    position: absolute;
    top: 76px; left: 0; right: 0;
    background: var(--charcoal-950);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 28px 28px;
    gap: 18px;
    border-bottom: 1px solid var(--line);
    display: none;
  }
  .nav.open{ display: flex; }
  .nav-cta{ margin-top: 6px; }
}

/* ==========================================================================
   Rivet plate — élément signature, dérivé des coins rivetés du produit
   ========================================================================== */
.plate{
  position: relative;
  border: 1px solid var(--line);
  background: var(--charcoal-800);
}
.plate::before, .plate::after,
.plate .rivet-tl, .plate .rivet-tr, .plate .rivet-bl, .plate .rivet-br{
  content: "";
  position: absolute;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, var(--brass-light), var(--brass-dim) 70%);
  box-shadow: 0 1px 2px rgba(0,0,0,0.5);
}
.plate::before{ top: 10px; left: 10px; }
.plate::after{ top: 10px; right: 10px; }
.plate .rivet-bl{ bottom: 10px; left: 10px; }
.plate .rivet-br{ bottom: 10px; right: 10px; }

.plate.on-ivory{
  background: #fff;
  border-color: rgba(138,50,32,0.18);
}
.plate.on-ivory::before, .plate.on-ivory::after,
.plate.on-ivory .rivet-bl, .plate.on-ivory .rivet-br{
  background: radial-gradient(circle at 35% 30%, var(--brass-light), var(--brass-dim) 70%);
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  font-family: var(--f-mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn-primary{
  background: var(--ember);
  color: var(--ivory);
}
.btn-primary:hover{ background: var(--ember-light); transform: translateY(-1px); }
.btn-outline{
  border-color: var(--brass);
  color: var(--brass-light);
}
.btn-outline:hover{ background: rgba(185,144,79,0.1); }
.btn-outline.on-light{
  border-color: var(--ember);
  color: var(--ember);
}
.btn-outline.on-light:hover{ background: rgba(138,50,32,0.06); }
.btn-block{ width: 100%; justify-content: center; }
.btn-sm{ padding: 11px 18px; font-size: 11.5px; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero{
  background: var(--charcoal-950);
  color: var(--ivory);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.hero::after{
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 900px 500px at 82% 20%, rgba(185,144,79,0.14), transparent 60%),
    radial-gradient(ellipse 700px 500px at 10% 90%, rgba(138,50,32,0.16), transparent 60%);
  pointer-events: none;
}
.hero .container{
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
  padding-top: 76px;
  padding-bottom: 56px;
  min-height: 640px;
}
.hero-headline{
  font-size: clamp(42px, 5.6vw, 78px);
  line-height: 0.98;
  text-transform: uppercase;
  margin: 22px 0 26px;
}
.hero-headline .line{ display: block; }
.hero-headline .accent{ color: var(--brass-light); }
.hero-sub{
  font-size: 17px;
  color: var(--ivory-dim);
  max-width: 460px;
  margin-bottom: 34px;
  line-height: 1.65;
}
.hero-actions{ display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }
.hero-image-wrap{
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-image-plate{
  padding: 28px;
  width: 100%;
  max-width: 400px;
}
.hero-image-plate img{ width: 100%; }
.hero-image-caption{
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--steel-light);
  text-align: center;
  margin-top: 14px;
}

.hero-strip{
  border-top: 1px solid var(--line);
  position: relative;
}
.hero-strip .container{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 0;
  min-height: 0;
}
.hero-strip-item{
  padding: 22px 26px;
  border-left: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-strip-item:first-child{ border-left: none; }
.hero-strip-num{
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--brass);
  border: 1px solid var(--brass-dim);
  border-radius: 50%;
  width: 26px; height: 26px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hero-strip-item strong{
  display: block;
  font-size: 13.5px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--ivory);
  margin-bottom: 2px;
}
.hero-strip-item span{
  font-size: 12.5px;
  color: var(--steel-light);
}

@media (max-width: 900px){
  .hero .container{ grid-template-columns: 1fr; padding-top: 40px; min-height: 0; }
  .hero-image-wrap{ order: -1; }
  .hero-strip .container{ grid-template-columns: 1fr; }
  .hero-strip-item{ border-left: none; border-top: 1px solid var(--line); }
  .hero-strip-item:first-child{ border-top: none; }
}

/* ==========================================================================
   Section commons
   ========================================================================== */
.section{ padding: 96px 0; }
.section-dark{ background: var(--charcoal-950); color: var(--ivory); }
.section-tight{ padding: 64px 0; }
.section-head{
  max-width: 640px;
  margin-bottom: 52px;
}
.section-head h2{
  font-size: clamp(32px, 3.6vw, 48px);
  text-transform: uppercase;
  line-height: 1.02;
  margin-top: 16px;
  color: var(--ink);
}
.section-dark .section-head h2{ color: var(--ivory); }
.section-head p{
  margin-top: 18px;
  font-size: 16px;
  color: var(--steel);
  line-height: 1.7;
}
.section-dark .section-head p{ color: var(--ivory-dim); }
.section-head.center{ margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow{ justify-content: center; }
.section-head.center .eyebrow::before{ display: none; }

/* ==========================================================================
   Feature grid (sécurité)
   ========================================================================== */
.feature-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
}
.feature-card{
  background: var(--charcoal-950);
  padding: 34px 30px;
}
.feature-card .num{
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--brass);
  letter-spacing: 0.1em;
}
.feature-card h3{
  font-size: 21px;
  text-transform: uppercase;
  margin: 16px 0 10px;
  color: var(--ivory);
}
.feature-card p{
  font-size: 14.5px;
  color: var(--ivory-dim);
  line-height: 1.65;
}
@media (max-width: 760px){
  .feature-grid{ grid-template-columns: 1fr; }
}

/* ==========================================================================
   Product cards
   ========================================================================== */
.product-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.product-card{
  padding: 26px 22px 24px;
  display: flex;
  flex-direction: column;
}
.product-card .swatch{
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ember);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}
.product-card .swatch-dot{
  width: 11px; height: 11px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.15);
  flex-shrink: 0;
}
.product-card .thumb{
  background: linear-gradient(180deg, #f7f3ea, #ede4d2);
  padding: 18px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 210px;
}
.product-card .thumb img{ max-height: 190px; width: auto; margin: 0 auto; }
.product-card h3{
  font-size: 22px;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 6px;
}
.product-card .meta{
  font-family: var(--f-mono);
  font-size: 14.5px;
  color: var(--ivory-dim);
  background: rgba(239,232,218,0.06);
  border-left: 2px solid var(--brass);
  padding: 10px 12px;
  margin-bottom: 14px;
  line-height: 1.9;
}
.on-ivory .meta{
  color: var(--ink);
  background: rgba(138,50,32,0.05);
  border-left-color: var(--ember);
}
.product-card .desc{
  font-size: 14px;
  color: var(--steel);
  line-height: 1.65;
  margin-bottom: 18px;
  flex-grow: 1;
}
.product-card .price-row{
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  border-top: 1px solid rgba(138,50,32,0.14);
  padding-top: 16px;
  margin-bottom: 16px;
}
.product-card .price{
  font-family: var(--f-mono);
  font-size: 26px;
  font-weight: 600;
  color: var(--ink);
}
.product-card .price small{
  font-size: 12px;
  color: var(--steel-light);
  font-weight: 400;
  margin-left: 4px;
}
.product-card .discounts{
  font-family: var(--f-mono);
  font-size: 11.5px;
  color: var(--steel-light);
  text-align: right;
  line-height: 1.6;
}
.product-card .ref{
  font-family: var(--f-mono);
  font-size: 10.5px;
  color: var(--steel-light);
  letter-spacing: 0.08em;
}

@media (max-width: 980px){
  .product-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px){
  .product-grid{ grid-template-columns: 1fr; }
}

/* ==========================================================================
   Ambiance split
   ========================================================================== */
.split{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
}
.split img{ width: 100%; height: 100%; object-fit: cover; }
.split-text{
  padding: 70px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.split-text h2{
  font-size: clamp(28px, 3vw, 40px);
  text-transform: uppercase;
  margin: 16px 0 20px;
  line-height: 1.05;
}
.split-text p{
  font-size: 15.5px;
  color: var(--ivory-dim);
  line-height: 1.75;
  margin-bottom: 14px;
}
.reverse{ direction: rtl; }
.reverse > *{ direction: ltr; }

@media (max-width: 860px){
  .split{ grid-template-columns: 1fr; }
  .split-text{ padding: 48px 28px; }
  .split img{ max-height: 320px; }
}

/* ==========================================================================
   Charcoal section
   ========================================================================== */
.charcoal-stats{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(138,50,32,0.14);
  border: 1px solid rgba(138,50,32,0.14);
  margin-top: 40px;
}
.charcoal-stat{
  background: var(--ivory);
  padding: 26px 20px;
  text-align: center;
}
.charcoal-stat .val{
  font-family: var(--f-mono);
  font-size: 30px;
  font-weight: 600;
  color: var(--ember);
}
.charcoal-stat .label{
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--steel);
  margin-top: 6px;
}
@media (max-width: 700px){
  .charcoal-stats{ grid-template-columns: repeat(2, 1fr); }
}

/* ==========================================================================
   Video showcase
   ========================================================================== */
.video-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}
.video-card{ padding: 20px; }
.video-card video{ width: 100%; border-radius: 1px; }
.video-card .cap{
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  margin-top: 14px;
}
@media (max-width: 800px){
  .video-grid{ grid-template-columns: 1fr; }
}

/* ==========================================================================
   CTA band
   ========================================================================== */
.cta-band{
  background: var(--ember);
  color: var(--ivory);
  padding: 64px 0;
}
.cta-band .container{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.cta-band h2{
  font-size: clamp(26px, 3vw, 38px);
  text-transform: uppercase;
  line-height: 1.05;
}
.cta-band .btn-primary{
  background: var(--charcoal-950);
}
.cta-band .btn-primary:hover{ background: #000; }
.cta-band .btn-outline{ border-color: rgba(239,232,218,0.55); color: var(--ivory); }
.cta-band .btn-outline:hover{ background: rgba(239,232,218,0.1); }
.cta-actions{ display: flex; gap: 14px; flex-wrap: wrap; }

/* ==========================================================================
   Contact page
   ========================================================================== */
.contact-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}
.contact-block{ margin-bottom: 34px; }
.contact-block h3{
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ember);
  font-family: var(--f-mono);
  margin-bottom: 12px;
}
.contact-block p, .contact-block a{
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
}
.contact-block a{ text-decoration: underline; text-decoration-color: rgba(138,50,32,0.4); text-underline-offset: 3px; }
.contact-block a:hover{ color: var(--ember); }

.channel-list{ display: flex; flex-direction: column; gap: 14px; margin-top: 8px; }
.channel{
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border: 1px solid rgba(138,50,32,0.16);
  background: #fff;
  transition: border-color 0.2s;
}
.channel:hover{ border-color: var(--ember); }
.channel .icon{
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(138,50,32,0.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--ember);
  flex-shrink: 0;
  font-family: var(--f-mono);
  font-size: 15px;
  font-weight: 700;
}
.channel .txt strong{ display: block; font-size: 14.5px; }
.channel .txt span{ font-size: 13px; color: var(--steel); }

.form{
  padding: 34px;
}
.form .field{ margin-bottom: 20px; }
.form label{
  display: block;
  font-family: var(--f-mono);
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 8px;
}
.form input, .form select, .form textarea{
  width: 100%;
  border: 1px solid rgba(90,83,70,0.3);
  background: #fff;
  padding: 13px 14px;
  font-family: var(--f-body);
  font-size: 15px;
  color: var(--ink);
  border-radius: var(--radius);
}
.form input:focus, .form select:focus, .form textarea:focus{
  border-color: var(--ember);
  outline: none;
}
.form textarea{ resize: vertical; min-height: 120px; }
.form-note{
  font-size: 12.5px;
  color: var(--steel-light);
  margin-top: 14px;
  line-height: 1.6;
}
.form-success{
  display: none;
  background: rgba(90,140,90,0.1);
  border: 1px solid rgba(90,140,90,0.3);
  color: #3a5a3a;
  padding: 16px 18px;
  font-size: 14px;
  margin-bottom: 20px;
}
.form-success.show{ display: block; }

@media (max-width: 860px){
  .contact-grid{ grid-template-columns: 1fr; }
}

/* ==========================================================================
   Map / address block
   ========================================================================== */
.map-plate{
  height: 260px;
  background: var(--charcoal-900);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--steel-light);
  font-family: var(--f-mono);
  font-size: 12.5px;
  text-align: center;
  padding: 20px;
  line-height: 1.8;
  margin-top: 30px;
}
.map-plate strong{ color: var(--brass-light); display:block; margin-bottom: 8px; font-size: 14px; letter-spacing: 0.04em;}

/* ==========================================================================
   Galerie ambiance — mosaïque photo
   ========================================================================== */
.gallery-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 260px;
  gap: 14px;
}
.gallery-item{
  margin: 0;
  position: relative;
  overflow: hidden;
  grid-column: span 1;
  grid-row: span 1;
}
.gallery-item.span-2{ grid-column: span 2; grid-row: span 2; }
.gallery-item img{
  width: 100%; height: 100%;
  object-fit: cover;
  cursor: zoom-in;
  transition: transform 0.4s ease;
}
.gallery-item:hover img{ transform: scale(1.06); }
.gallery-item figcaption{
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 16px 18px;
  background: linear-gradient(180deg, transparent, rgba(22,19,15,0.82));
  color: var(--ivory);
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  pointer-events: none;
}

@media (max-width: 900px){
  .gallery-grid{ grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; }
  .gallery-item.span-2{ grid-column: span 2; grid-row: span 1; }
}
@media (max-width: 560px){
  .gallery-grid{ grid-template-columns: 1fr; grid-auto-rows: 260px; }
  .gallery-item.span-2{ grid-column: span 1; grid-row: span 1; }
}

/* ==========================================================================
   Lightbox — agrandissement des photos produit au clic
   ========================================================================== */
.zoomable{ cursor: zoom-in; transition: transform 0.2s ease; }
.zoomable:hover{ transform: scale(1.03); }

.lightbox{
  position: fixed;
  inset: 0;
  background: rgba(22,19,15,0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
  padding: 40px;
  cursor: zoom-out;
}
.lightbox.open{ display: flex; }
.lightbox img{
  max-width: min(720px, 90vw);
  max-height: 85vh;
  width: auto;
  background: linear-gradient(180deg, #f7f3ea, #ede4d2);
  padding: 30px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.lightbox-close{
  position: absolute;
  top: 24px; right: 28px;
  color: var(--ivory);
  font-family: var(--f-mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--line);
  padding: 8px 16px;
  background: transparent;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer{
  background: var(--charcoal-950);
  color: var(--ivory-dim);
  padding: 64px 0 28px;
  border-top: 1px solid var(--line);
}
.footer-grid{
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 44px;
}
.footer-brand .brand{ margin-bottom: 14px; }
.footer-brand p{
  font-size: 13.5px;
  color: var(--steel-light);
  line-height: 1.7;
  max-width: 280px;
}
.footer-col h4{
  font-family: var(--f-mono);
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 16px;
  font-weight: 500;
}
.footer-col ul{ display: flex; flex-direction: column; gap: 11px; }
.footer-col a{
  font-size: 14px;
  color: var(--ivory-dim);
  transition: color 0.2s;
}
.footer-col a:hover{ color: var(--brass-light); }
.footer-bottom{
  border-top: 1px solid var(--line);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-family: var(--f-mono);
  font-size: 11.5px;
  color: var(--steel-light);
}
@media (max-width: 860px){
  .footer-grid{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px){
  .footer-grid{ grid-template-columns: 1fr; gap: 30px; }
}

/* ==========================================================================
   Page hero (pages secondaires)
   ========================================================================== */
.page-hero{
  background: var(--charcoal-950);
  color: var(--ivory);
  padding: 64px 0 54px;
  border-bottom: 1px solid var(--line);
}
.page-hero h1{
  font-size: clamp(36px, 5vw, 58px);
  text-transform: uppercase;
  margin-top: 16px;
  line-height: 1;
}
.page-hero p{
  margin-top: 18px;
  font-size: 16px;
  color: var(--ivory-dim);
  max-width: 560px;
  line-height: 1.7;
}

/* ==========================================================================
   Legal page
   ========================================================================== */
.legal{ max-width: 760px; }
.legal h2{
  font-size: 22px;
  text-transform: uppercase;
  margin: 44px 0 14px;
  color: var(--ink);
}
.legal h2:first-child{ margin-top: 0; }
.legal p, .legal li{
  font-size: 15px;
  color: var(--steel);
  line-height: 1.75;
  margin-bottom: 10px;
}
.legal ul{ list-style: disc; padding-left: 20px; margin-bottom: 16px; }
.legal table{ width: 100%; border-collapse: collapse; margin: 16px 0; }
.legal td{ padding: 8px 0; border-bottom: 1px solid rgba(90,83,70,0.15); font-size: 14.5px; }
.legal td:first-child{ color: var(--steel-light); width: 220px; font-family: var(--f-mono); font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.04em; }
