/* ============================================================
   RUBY CAFTÁN — Style inspired by bouchrafilalilahlou.com
   Palette: dark luxe (noir) + ivory + warm grays
   Fonts: Didot (headings) + Arimo (body)
   ============================================================ */

:root {
  /* Dark scheme (default) */
  --bg: #000000;
  --bg-soft: #0a0a0a;
  --bg-card: #131313;
  --line: rgba(255, 255, 255, .10);
  --line-2: rgba(255, 255, 255, .18);

  --ink: #fdfdfa;             /* ivory white */
  --ink-soft: rgba(253, 253, 250, .72);
  --ink-muted: rgba(253, 253, 250, .45);
  --ink-faint: rgba(253, 253, 250, .22);

  /* Light scheme accents (used in alternating sections) */
  --bg-light: #fdfdfa;
  --ink-on-light: #343434;

  /* Brand accents (subtle, derived from product photos) */
  --gold: #b8893b;
  --burgundy: #7a1f2a;
  --emerald: #1f5f3f;

  /* Type — Bouchra uses Arimo + Didot for editorial */
  --font-display: 'Didot', 'Bodoni 72', 'Playfair Display', 'Cormorant Garamond', 'Times New Roman', serif;
  --font-body: 'Arimo', 'Helvetica Neue', Arial, sans-serif;
  --font-mono: 'Courier New', monospace;
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  font-weight: 400;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

/* ============================================================
   LAYOUT
   ============================================================ */
.wrap { max-width: 1340px; margin: 0 auto; padding: 0 40px; }
@media (max-width: 700px) { .wrap { padding: 0 20px; } }

.section { padding: 100px 0; }
.section--light { background: var(--bg-light); color: var(--ink-on-light); }
.section--light .eyebrow { color: var(--ink-on-light); opacity: .55; }
.section--light .section__title { color: var(--ink-on-light); }
.section--light .section__lede { color: var(--ink-on-light); opacity: .72; }

.section__head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 64px;
  padding: 0 40px;
}
.eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 18px;
}
.section__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -.005em;
  color: var(--ink);
  margin-bottom: 18px;
}
.section__lede {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 620px;
  margin: 0 auto;
}
.center { text-align: center; }
.mt-3 { margin-top: 40px; }

/* ============================================================
   TOP BAR
   ============================================================ */
.topbar {
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.topbar__inner {
  max-width: 1340px;
  margin: 0 auto;
  padding: 10px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.topbar__tagline { font-weight: 400; }
.topbar__links { display: flex; align-items: center; gap: 24px; }
.topbar__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  transition: opacity .2s;
}
.topbar__link:hover { opacity: .6; }
.topbar__ig-handle { font-weight: 400; }
.topbar__phone { color: var(--ink); }
@media (max-width: 700px) {
  .topbar__tagline { display: none; }
  .topbar__ig-handle { display: none; }
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(0, 0, 0, .92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  max-width: 1340px;
  margin: 0 auto;
  padding: 22px 40px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
}
.nav__brand { display: flex; align-items: center; gap: 12px; justify-self: start; }
.nav__logo {
  height: 56px;
  width: auto;
  display: block;
}
.nav__mark {
  width: 32px; height: 32px;
  display: grid; place-items: center;
  border: 1px solid var(--ink);
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--ink);
  background: transparent;
  letter-spacing: 0;
}
.nav__name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: .01em;
}
.nav__links {
  display: flex;
  gap: 40px;
  justify-content: center;
}
.nav__links a {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  transition: color .25s;
  position: relative;
}
.nav__links a:hover { color: var(--ink); }
.nav__right { display: flex; align-items: center; gap: 18px; justify-self: end; }
.nav__social {
  display: grid;
  place-items: center;
  width: 36px; height: 36px;
  color: var(--ink-soft);
  transition: color .2s, transform .2s;
}
.nav__social:hover { color: var(--ink); transform: scale(1.1); }
.nav__cta {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink);
  border: 1px solid var(--ink);
  padding: 11px 22px;
  transition: all .25s;
}
.nav__cta:hover { background: var(--ink); color: var(--bg); }

@media (max-width: 980px) {
  .nav__inner { grid-template-columns: auto 1fr auto; }
  .nav__links { display: none; }
  .nav__name { display: none; }
  .nav__logo { height: 40px; }
}

/* ============================================================
   LANG SWITCH
   ============================================================ */
.lang { display: flex; gap: 0; border: 1px solid var(--line-2); }
.lang__btn {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  padding: 7px 11px;
  color: var(--ink-soft);
  transition: all .2s;
  border-right: 1px solid var(--line-2);
}
.lang__btn:last-child { border-right: 0; }
.lang__btn.active { background: var(--ink); color: var(--bg); }
.lang__btn:not(.active):hover { color: var(--ink); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  border-radius: 0;
  transition: all .3s ease;
  cursor: pointer;
  border: 1px solid transparent;
}
.btn--primary { background: var(--ink); color: var(--bg); }
.btn--primary:hover { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--ghost { background: transparent; color: var(--ink); border: 1px solid var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--bg); }
.btn--block { display: flex; width: 100%; }

/* On light sections, button text/bg invert */
.section--light .btn--primary { background: var(--ink-on-light); color: var(--bg-light); }
.section--light .btn--primary:hover { background: transparent; color: var(--ink-on-light); border-color: var(--ink-on-light); }
.section--light .btn--ghost { color: var(--ink-on-light); border-color: var(--ink-on-light); }
.section--light .btn--ghost:hover { background: var(--ink-on-light); color: var(--bg-light); }

/* ============================================================
   HERO — Bouchra style: full-bleed, no overlay, big title below
   ============================================================ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: end;
  overflow: hidden;
  background: var(--bg);
}
.hero__image {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.25) 0%, rgba(0,0,0,.55) 100%),
              radial-gradient(ellipse at center, #2a2a2a 0%, #000 100%);
  background-size: cover;
  background-position: center;
}
.hero__image::after {
  content: '';
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(45deg, transparent 0 30px, rgba(255,255,255,.015) 30px 31px),
    repeating-linear-gradient(-45deg, transparent 0 30px, rgba(255,255,255,.015) 30px 31px);
}
.hero__content {
  position: relative;
  width: 100%;
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 40px 80px;
  text-align: center;
}
.hero__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 24px;
  opacity: .75;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(48px, 7.5vw, 96px);
  font-weight: 400;
  line-height: 1.0;
  color: var(--ink);
  letter-spacing: -.01em;
  margin-bottom: 32px;
}
.hero__title em {
  font-style: italic;
  font-weight: 400;
}
.hero__lede {
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 520px;
  margin: 0 auto 40px;
  letter-spacing: .04em;
}
.hero__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero__scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--ink);
  font-size: 14px;
  opacity: .55;
  letter-spacing: .3em;
  animation: bounce 2.5s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ============================================================
   MARQUEE — Bouchra style: thin, italic serif
   ============================================================ */
.marquee {
  background: var(--bg-light);
  color: var(--ink-on-light);
  padding: 16px 0;
  overflow: hidden;
  border-top: 1px solid rgba(0,0,0,.08);
  border-bottom: 1px solid rgba(0,0,0,.08);
}
.marquee__track {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: 18px;
  font-style: italic;
  animation: marquee 45s linear infinite;
}
.marquee__track span { padding: 0 8px; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================================
   EDITORIAL FEATURE — Bouchra's "L'officiel 2026" pattern
   1 big image + 5 small thumbnails
   ============================================================ */
.editorial {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: auto auto;
  gap: 12px;
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 40px;
}
.editorial__main {
  grid-row: span 2;
  aspect-ratio: 9/16;
  position: relative;
  overflow: hidden;
  display: block;
}
.editorial__main .ph {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-size: 18px;
  font-style: italic;
  color: var(--ink-faint);
}
.editorial__side {
  aspect-ratio: 9/16;
  position: relative;
  overflow: hidden;
  display: block;
}
.editorial__side .ph {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-size: 14px;
  font-style: italic;
  color: var(--ink-faint);
}
@media (max-width: 900px) {
  .editorial { grid-template-columns: 1fr; }
  .editorial__main { grid-row: auto; aspect-ratio: 9/16; }
}

/* ============================================================
   CATEGORY CARROUSEL-LIKE GRID
   ============================================================ */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 900px) { .cat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .cat-grid { grid-template-columns: 1fr; } }
.cat {
  position: relative;
  aspect-ratio: 9/16;
  overflow: hidden;
  display: flex;
  align-items: end;
  padding: 24px;
  transition: transform .4s;
}
.cat:hover { transform: scale(.98); }
.cat__label {
  position: relative;
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--ink);
  z-index: 2;
}
.cat__ph {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-size: 14px;
  font-style: italic;
  color: var(--ink-faint);
  z-index: 1;
}
.cat__ph::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.5) 100%);
  z-index: 1;
}
.section--light .cat__label { color: var(--ink-on-light); }

/* ============================================================
   GALLERY — clean 4-tile row (9/16, uniforme)
   ============================================================ */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: auto;
  gap: 16px;
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 40px;
}
.gallery__item {
  position: relative;
  overflow: hidden;
  display: block;
  aspect-ratio: 9/16;
  background: var(--line-2, #ececec);
}
.gallery__item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity .35s ease;
}
.gallery__item:hover img { opacity: .88; }
.gallery__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gallery__ph {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-size: 14px;
  font-style: italic;
  color: var(--ink-faint);
}
@media (max-width: 900px) {
  .gallery { grid-template-columns: repeat(2, 1fr); padding: 0 24px; gap: 12px; }
}

/* ============================================================
   REELS — Collection vidéo dédiée (2×2 desktop, 1×4 mobile)
   ============================================================ */
.reels-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 40px;
}
.reel {
  position: relative;
  display: block;
  aspect-ratio: 9/16;
  overflow: hidden;
  background: #000;
  transition: transform .35s;
}
.reel:hover { transform: scale(1.02); }
.reel__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.reel__label {
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 2;
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: .04em;
  color: #fff;
  background: rgba(0, 0, 0, .45);
  padding: 6px 12px;
  border: 1px solid rgba(255, 255, 255, .3);
  backdrop-filter: blur(4px);
}
@media (max-width: 980px) {
  .reels-grid { grid-template-columns: repeat(2, 1fr); padding: 0 24px; }
}
@media (max-width: 540px) {
  .reels-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   FEATURE CARDS — 3 columns (rental services)
   ============================================================ */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 900px) { .feat-grid { grid-template-columns: 1fr; } }
.feat {
  text-align: center;
  padding: 48px 32px;
  border: 1px solid var(--line);
}
.feat__icon {
  font-size: 28px;
  margin-bottom: 20px;
  font-family: var(--font-display);
  color: var(--ink);
}
.feat__title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 12px;
}
.feat__text {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.7;
}
.section--light .feat { border-color: rgba(0,0,0,.12); }
.section--light .feat__title { color: var(--ink-on-light); }
.section--light .feat__text { color: var(--ink-on-light); opacity: .72; }
.section--light .feat__icon { color: var(--ink-on-light); }

/* ============================================================
   PROCESS — Bouchra style: thin numbered rows
   ============================================================ */
.process {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}
.process__list {
  list-style: none;
  display: flex;
  flex-direction: column;
}
.process__row {
  display: grid;
  grid-template-columns: 80px 1fr 1fr;
  gap: 40px;
  padding: 40px 0;
  border-top: 1px solid var(--line);
  align-items: center;
}
.process__row:last-child { border-bottom: 1px solid var(--line); }
@media (max-width: 700px) {
  .process__row { grid-template-columns: 1fr; gap: 8px; }
}
.process__num {
  font-family: var(--font-display);
  font-size: 32px;
  font-style: italic;
  color: var(--ink);
  opacity: .55;
}
.process__title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  color: var(--ink);
}
.process__text {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.7;
}
.section--light .process__row { border-color: rgba(0,0,0,.1); }
.section--light .process__title { color: var(--ink-on-light); }
.section--light .process__text { color: var(--ink-on-light); opacity: .72; }

/* ============================================================
   BLOG
   ============================================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 900px) { .blog-grid { grid-template-columns: 1fr; } }
.post {
  display: flex;
  flex-direction: column;
}
.post__cover {
  aspect-ratio: 9/16;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}
.post__cover .ph {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-size: 13px;
  font-style: italic;
  color: var(--ink-faint);
}
.post__date {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 12px;
}
.post__title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: 10px;
}
.post__excerpt {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 14px;
  flex: 1;
}
.post__more {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 4px;
  align-self: flex-start;
  transition: opacity .2s;
}
.post__more:hover { opacity: .6; }
.section--light .post__date { color: var(--ink-on-light); opacity: .6; }
.section--light .post__title { color: var(--ink-on-light); }
.section--light .post__excerpt { color: var(--ink-on-light); opacity: .72; }
.section--light .post__more { color: var(--ink-on-light); border-color: var(--ink-on-light); }
.section--light .post__cover { background: transparent; }

/* ============================================================
   TESTIMONIALS — Bouchra style: huge serif quote
   ============================================================ */
.testi {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
}
.testi__quote {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-style: italic;
  line-height: 1.3;
  color: var(--ink);
  margin-bottom: 32px;
  font-weight: 400;
}
.testi__quote::before { content: '“'; font-size: 1.3em; opacity: .5; margin-right: 8px; }
.testi__quote::after { content: '”'; font-size: 1.3em; opacity: .5; margin-left: 4px; }
.testi__author {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.section--light .testi__quote { color: var(--ink-on-light); }
.section--light .testi__author { color: var(--ink-on-light); opacity: .6; }

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 40px;
}
.faq__item {
  border-top: 1px solid var(--line);
  padding: 24px 0;
}
.faq__item:last-child { border-bottom: 1px solid var(--line); }
.faq__item summary {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 4px 0;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '+';
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--ink);
  font-weight: 300;
  transition: transform .3s;
  flex-shrink: 0;
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.7;
  padding: 16px 0 4px;
  max-width: 720px;
}
.section--light .faq__item { border-color: rgba(0,0,0,.1); }
.section--light .faq__item summary { color: var(--ink-on-light); }
.section--light .faq__item p { color: var(--ink-on-light); opacity: .72; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}
.contact__map {
  grid-column: 1 / -1;
  margin-top: 40px;
  border: 1px solid var(--line-2, #ececec);
  overflow: hidden;
}
.contact__map iframe {
  display: block;
  width: 100%;
  height: 360px;
  border: 0;
  filter: saturate(0.9);
}
.contact__map-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}
.contact__map-actions .btn {
  flex: 1;
  min-width: 220px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  padding: 14px 22px;
  cursor: pointer;
}
@media (max-width: 600px) {
  .contact__map-actions { flex-direction: column; }
  .contact__map-actions .btn { width: 100%; }
}
.contact__value--map {
  text-decoration: none;
  transition: color .2s;
  line-height: 1.5;
}
.contact__value--map:hover { color: var(--ink); }
@media (max-width: 900px) { .contact { grid-template-columns: 1fr; gap: 48px; } }
.contact__info { display: flex; flex-direction: column; gap: 28px; }
.contact__line { display: flex; flex-direction: column; gap: 6px; }
.contact__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.contact__value {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--ink);
  transition: opacity .2s;
}
a.contact__value:hover { opacity: .6; }

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact__form label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-top: 14px;
}
.contact__form input,
.contact__form textarea {
  font: inherit;
  font-size: 14px;
  padding: 14px 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line-2);
  color: var(--ink);
  transition: border-color .2s;
  border-radius: 0;
  resize: vertical;
}
.contact__form input:focus,
.contact__form textarea:focus {
  outline: none;
  border-color: var(--ink);
}
.contact__form button { margin-top: 28px; align-self: flex-start; }
.contact__buttons { display: flex; flex-direction: column; gap: 12px; margin-top: 8px; }
.contact__buttons .btn { width: 100%; display: inline-flex; align-items: center; justify-content: center; }
.section--light .contact__form input,
.section--light .contact__form textarea { color: var(--ink-on-light); border-color: rgba(0,0,0,.25); }
.section--light .contact__form input:focus,
.section--light .contact__form textarea:focus { border-color: var(--ink-on-light); }
.section--light .contact__label { color: var(--ink-on-light); opacity: .55; }
.section--light .contact__value { color: var(--ink-on-light); }

/* ============================================================
   PRESS LOGOS STRIP
   ============================================================ */
.press-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 32px 0;
  background: var(--bg);
}
.press-strip__inner {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.press-strip__logo {
  font-family: var(--font-display);
  font-size: 16px;
  font-style: italic;
  color: var(--ink-muted);
  letter-spacing: .1em;
}

/* ============================================================
   FOOTER — Bouchra style: minimal, lots of breathing room
   ============================================================ */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--line);
  padding: 80px 40px 32px;
}
.footer__inner {
  max-width: 1340px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
@media (max-width: 900px) {
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 540px) {
  .footer__inner { grid-template-columns: 1fr; }
}
.footer__brand-name {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--ink);
  margin-bottom: 12px;
}
.footer__brand { display: flex; flex-direction: column; gap: 14px; }
.footer__logo {
  height: 72px;
  width: auto;
  display: block;
  margin-bottom: 4px;
}
.footer__brand-tag {
  font-size: 13px;
  color: var(--ink-muted);
  line-height: 1.7;
  max-width: 320px;
}
.footer__col h4 {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 20px;
}
.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer__col a {
  font-size: 13px;
  color: var(--ink-soft);
  transition: color .2s;
}
.footer__col a:hover { color: var(--ink); }

.footer__bottom {
  max-width: 1340px;
  margin: 0 auto;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-size: 12px;
  color: var(--ink-muted);
  flex-wrap: wrap;
}
.footer__bottom a { color: var(--ink-soft); }
.footer__bottom a:hover { color: var(--ink); }

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px; height: 56px;
  background: #25d366;
  color: white;
  display: grid;
  place-items: center;
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(37, 211, 102, .35);
  z-index: 100;
  transition: transform .3s, box-shadow .3s;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(37, 211, 102, .5);
}
@media (max-width: 600px) { .wa-float { width: 52px; height: 52px; bottom: 16px; right: 16px; } }

/* ============================================================
   ARTICLE PAGE — layout single-column éditorial
   ============================================================ */
.article {
  max-width: 760px;
  margin: 0 auto;
  padding: 60px 24px 100px;
}
.article__back {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 40px;
  transition: color .25s;
}
.article__back:hover { color: var(--ink); }
.article__eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 16px;
}
.article__title {
  font-family: var(--font-display);
  font-size: 44px;
  line-height: 1.15;
  font-weight: 400;
  color: var(--ink);
  margin: 0 0 24px;
  letter-spacing: -.01em;
}
.article__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--ink-muted);
  letter-spacing: .04em;
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line-2);
}
.article__meta-dot { width: 3px; height: 3px; background: var(--ink-muted); border-radius: 50%; }
.article__cover {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  margin-bottom: 56px;
  background: var(--line-2);
}
.article__cover img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.article__body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink);
}
.article__body p { margin: 0 0 24px; }
.article__body h2 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  color: var(--ink);
  margin: 48px 0 20px;
  letter-spacing: -.005em;
}
.article__body h3 {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin: 40px 0 14px;
}
.article__body ul {
  margin: 0 0 24px;
  padding-left: 0;
  list-style: none;
}
.article__body ul li {
  padding-left: 22px;
  position: relative;
  margin-bottom: 10px;
}
.article__body ul li::before {
  content: '✦';
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--ink-soft);
  font-size: 12px;
}
.article__body blockquote {
  margin: 40px 0;
  padding: 0 0 0 24px;
  border-left: 2px solid var(--ink);
  font-family: var(--font-display);
  font-size: 22px;
  font-style: italic;
  line-height: 1.5;
  color: var(--ink);
}
.article__share {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 56px 0 0;
  padding-top: 32px;
  border-top: 1px solid var(--line-2);
}
.article__share-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-right: 8px;
}
.article__nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 1340px;
  margin: 80px auto 0;
  padding: 40px 40px 0;
  border-top: 1px solid var(--line-2);
}
.article__nav-link {
  display: block;
  padding: 20px 0;
  font-family: var(--font-body);
  color: var(--ink);
  text-decoration: none;
  transition: opacity .25s;
}
.article__nav-link:hover { opacity: .65; }
.article__nav-link--next { text-align: right; }
.article__nav-tag {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 6px;
}
.article__nav-title {
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1.3;
}
@media (max-width: 700px) {
  .article { padding: 40px 20px 60px; }
  .article__title { font-size: 32px; }
  .article__body { font-size: 16px; }
  .article__nav { grid-template-columns: 1fr; padding: 32px 20px 0; gap: 0; }
  .article__nav-link--next { text-align: left; }
}

/* ============================================================
   GIVEAWAY — carte façon post Instagram
   ============================================================ */
.giveaway {
  background: var(--ink, #111);
  color: #fff;
}
.giveaway .section__head .eyebrow { color: rgba(255, 255, 255, .55); }
.giveaway .section__title { color: #fff; }
.giveaway .section__lede { color: rgba(255, 255, 255, .7); }
.giveaway__card {
  max-width: 540px;
  margin: 0 auto;
  background: #fff;
  color: var(--ink, #111);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .35);
}
.giveaway__head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-bottom: 1px solid #efefef;
}
.giveaway__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: linear-gradient(135deg, #f9ce34 0%, #ee2a7b 50%, #6228d7 100%);
  padding: 2px;
}
.giveaway__avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
  border: 2px solid #fff;
}
.giveaway__user {
  flex: 1;
  display: flex;
  flex-direction: column;
  font-family: var(--font-body);
  line-height: 1.3;
}
.giveaway__user strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink, #111);
}
.giveaway__user span {
  font-size: 11px;
  color: #8e8e8e;
}
.giveaway__follow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  color: #0095f6;
  text-decoration: none;
  padding: 6px 14px;
  border: 1px solid #0095f6;
  border-radius: 4px;
  transition: background .2s, color .2s;
}
.giveaway__follow:hover { background: #0095f6; color: #fff; }

.giveaway__media {
  position: relative;
  aspect-ratio: 9/16;
  max-height: 540px;
  overflow: hidden;
  background: #000;
}
.giveaway__media img,
.giveaway__media video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.giveaway__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(0, 0, 0, .75);
  color: #fff;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}

.giveaway__body {
  padding: 20px 22px 8px;
  font-family: var(--font-body);
  color: var(--ink, #111);
}
.giveaway__text {
  font-size: 15px;
  line-height: 1.55;
  margin: 0 0 18px;
}
.giveaway__rules {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  background: #fafafa;
  border: 1px solid #efefef;
  border-radius: 4px;
  padding: 14px 18px;
}
.giveaway__rules li {
  font-size: 14px;
  line-height: 1.5;
  padding: 4px 0 4px 22px;
  position: relative;
  color: #262626;
}
.giveaway__rules li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 4px;
  color: #0095f6;
  font-weight: 700;
}
.giveaway__ends {
  font-size: 13px;
  color: #8e8e8e;
  margin: 0 0 16px;
  letter-spacing: .02em;
}
.giveaway__ends strong {
  color: var(--ink, #111);
  font-weight: 700;
}

.giveaway__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0 22px 22px;
}
.giveaway__actions .btn {
  flex: 1;
  min-width: 180px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.giveaway__actions .btn--primary {
  background: linear-gradient(135deg, #f9ce34 0%, #ee2a7b 50%, #6228d7 100%);
  border: none;
  color: #fff;
}
.giveaway__actions .btn--primary:hover {
  background: linear-gradient(135deg, #e0bb2e 0%, #d62470 50%, #5423bc 100%);
  color: #fff;
}
@media (max-width: 600px) {
  .giveaway__actions { flex-direction: column; }
  .giveaway__actions .btn { width: 100%; }
}
