:root {
  --ink: #14192B;
  --paper: #F7F4EE;
  --paper-deep: #EEE9DF;
  --ink-soft: #4A4F63;
  --line: #E1DCCF;

  --gold-hot: #F2C14E;
  --accent: #C6952F;
  --white: #FFFFFF;

  --shadow-dialog: 0 30px 100px rgba(20, 25, 43, 0.24);

  --container: 1180px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);

  --radius-sm: 8px;
  --radius-md: 10px;

  --font-display: "Fraunces", Georgia, serif;
  --font-body:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;

  --transition-fast: 180ms ease;
  --transition-base: 280ms ease;
  --transition-slow: 600ms cubic-bezier(.22, 1, .36, 1);
}


/* =========================================================
   RESET
   ========================================================= */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
  background: var(--paper);
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body:has(dialog[open]) {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

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

::selection {
  background: rgba(198, 149, 47, 0.22);
  color: var(--ink);
}

[hidden] {
  display: none !important;
}

:focus-visible {
  outline: 2px solid var(--gold-hot);
  outline-offset: 4px;
}


/* =========================================================
   LAYOUT
   ========================================================= */

.container {
  width: min(
    100% - (var(--gutter) * 2),
    var(--container)
  );
  margin-inline: auto;
}


/* =========================================================
   ACCESSIBILITY
   ========================================================= */

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 1000;
  padding: 0.6rem 0.85rem;
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  transform: translateY(-180%);
  transition: transform var(--transition-fast);
}

.skip-link:focus {
  transform: translateY(0);
}


/* =========================================================
   TYPOGRAPHY
   ========================================================= */

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0 0 1rem;
  color: currentColor;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 1.7rem;
  height: 1px;
  flex: 0 0 auto;
  background: currentColor;
  opacity: 0.45;
  content: "";
}

h1,
h2,
h3 {
  margin-top: 0;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.04;
}

h1 em,
h2 em,
h3 em {
  font-style: italic;
}

.section {
  padding-block: clamp(5rem, 11vw, 9rem);
}

.text-action {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  width: fit-content;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 650;
  text-align: left;
}

.text-action span {
  transition: transform var(--transition-fast);
}

.text-action:hover span,
.text-action:focus-visible span {
  transform: translateX(0.3rem);
}

.text-action--light {
  color: rgba(247, 244, 238, 0.88);
}

.text-action--light:hover,
.text-action--light:focus-visible {
  color: var(--white);
}


/* =========================================================
   BUTTONS
   ========================================================= */

.button {
  display: inline-flex;
  min-height: 3.15rem;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.78rem 1.1rem;
  font-size: 0.78rem;
  font-weight: 760;
  line-height: 1;
  text-align: center;
  transition:
    transform 220ms ease,
    background-color 220ms ease,
    border-color 220ms ease,
    color 220ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button--primary {
  background: var(--paper);
  color: var(--ink);
}

.button--primary:hover,
.button--primary:focus-visible {
  background: #fffdf9;
}

.button--dark {
  background: var(--ink);
  color: var(--paper);
}

.button--dark:hover,
.button--dark:focus-visible {
  background: #20273d;
}

.button__arrow {
  width: 0.9rem;
  height: 0.9rem;
  transition: transform 220ms ease;
}

.button:hover .button__arrow {
  transform: translateX(3px);
}


/* =========================================================
   HEADER
   ========================================================= */

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 50;
  color: var(--paper);
}

.site-header__inner {
  display: flex;
  min-height: 5rem;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  width: fit-content;
}

.brand-mark {
  display: grid;
  width: 1.85rem;
  height: 1.85rem;
  place-items: center;
  border: 1px solid rgba(247, 244, 238, 0.35);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 0.92rem;
  line-height: 1;
}

.brand-name {
  font-size: 0.76rem;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.desktop-nav {
  display: none;
}

.nav-contact {
  border: 0;
  background: transparent;
  padding: 0;
  color: inherit;
  font: inherit;
}

.mobile-menu-toggle {
  display: inline-flex;
  width: 2.75rem;
  height: 2.75rem;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.3rem;
  border: 1px solid rgba(247, 244, 238, 0.25);
  border-radius: 50%;
  background: rgba(20, 25, 43, 0.18);
  color: var(--paper);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.mobile-menu-toggle span {
  width: 0.9rem;
  height: 1px;
  background: currentColor;
  transition:
    transform var(--transition-fast),
    opacity var(--transition-fast);
}

.mobile-menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(0.15rem) rotate(45deg);
}

.mobile-menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-0.15rem) rotate(-45deg);
}

.mobile-menu {
  border-top: 1px solid rgba(247, 244, 238, 0.12);
  background: rgba(20, 25, 43, 0.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.mobile-menu__inner {
  padding-block: 1.25rem 1.5rem;
}

.mobile-menu nav {
  display: grid;
}

.mobile-menu nav a {
  padding-block: 0.9rem;
  border-bottom: 1px solid rgba(247, 244, 238, 0.11);
  color: rgba(247, 244, 238, 0.84);
}

.mobile-menu__contact {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.2rem;
  border: 0;
  border-radius: 999px;
  background: var(--paper);
  padding: 0.95rem 1.1rem;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 650;
}


/* =========================================================
   HERO
   =========================================================
   Stratégie anti-zoom + anti-voile bleu :
   - fond noir neutre (plus de bleu nuit)
   - .hero__background : version floutée (cover) → remplit tout
   - .hero::before      : image nette (contain)   → jamais rognée
   - .hero::after       : dégradés NOIRS pour la lisibilité
   ========================================================= */

.hero {
  --hero-image: none;

  position: relative;
  min-height: min(78svh, 820px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
  /* Noir neutre : plus de teinte bleutée */
  background: #0a0a0a;
  color: var(--paper);
}

/* Fond flouté : remplit tout le hero sans zoom visible */
.hero__background {
  position: absolute;
  inset: -4rem;
  z-index: -3;
  background-image: var(--hero-image);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  /* Pas de brightness → couleurs naturelles préservées */
  filter: blur(50px) saturate(1.1);
  transform: scale(1.1);
  opacity: 0.85;
  pointer-events: none;
}

/* Image nette, entièrement visible, jamais zoomée */
.hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: var(--hero-image);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  content: "";
}

/* Voile dégradé NOIR pour la lisibilité du texte */
.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.35) 0%,
    rgba(0, 0, 0, 0.10) 35%,
    rgba(0, 0, 0, 0.35) 65%,
    rgba(0, 0, 0, 0.90) 100%
  );
  content: "";
}

.hero__content {
  width: 100%;
  padding-top: 8rem;
  padding-bottom: clamp(4rem, 9vw, 7rem);
}

.hero__eyebrow {
  color: rgba(247, 244, 238, 0.76);
}

.hero__title {
  max-width: 12ch;
  margin-bottom: 1.35rem;
  font-size: clamp(3rem, 10vw, 7.2rem);
  line-height: 0.94;
}

.hero__title span {
  display: block;
  color: rgba(247, 244, 238, 0.66);
  font-style: italic;
}

.hero__intro {
  max-width: 34rem;
  margin-bottom: 1.9rem;
  color: rgba(247, 244, 238, 0.72);
  font-size: clamp(0.92rem, 2vw, 1.08rem);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.35rem;
}


/* =========================================================
   SECTIONS / HEADINGS
   ========================================================= */

.section--selection,
.section--catalogue {
  background: var(--paper);
}

.section--manifesto {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper-deep);
}

.section-heading {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2.4rem;
}

.section-heading h2 {
  max-width: 10ch;
  margin-bottom: 0;
  font-size: clamp(2.3rem, 7vw, 4.6rem);
}

.section-heading__intro {
  max-width: 28rem;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}


/* =========================================================
   FEATURED
   ========================================================= */

.featured-grid {
  display: grid;
  gap: 1rem;
}

.featured-card {
  position: relative;
  min-height: 21rem;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--paper-deep);
  cursor: pointer;
}

.featured-card__media {
  position: absolute;
  inset: 0;
  background: var(--featured-image) center / cover no-repeat;
}

.featured-card::after {
  position: absolute;
  inset: auto 0 0;
  height: 55%;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(20, 25, 43, 0.62)
  );
  pointer-events: none;
  content: "";
}

.featured-card__content {
  position: absolute;
  right: 1.25rem;
  bottom: 1.2rem;
  left: 1.25rem;
  z-index: 2;
  color: var(--paper);
}

.featured-card__content .eyebrow {
  color: rgba(247, 244, 238, 0.72);
}

.featured-card__name {
  margin-bottom: 0.25rem;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5vw, 3.1rem);
  line-height: 1;
}

.featured-card__meta {
  color: rgba(247, 244, 238, 0.72);
  font-size: 0.76rem;
}


/* =========================================================
   MANIFESTO
   ========================================================= */

.manifesto {
  max-width: 900px;
}

.manifesto__signature {
  width: 2rem;
  margin-bottom: 1rem;
  color: var(--gold-hot);
}

.icon-drop {
  width: 100%;
  height: auto;
}

.icon-drop path,
.footer-signature path {
  fill: currentColor;
}

.manifesto__title {
  max-width: 11ch;
  margin-bottom: 2rem;
  font-size: clamp(3rem, 9vw, 6.6rem);
  line-height: 0.94;
}

.manifesto__body {
  max-width: 39rem;
  color: var(--ink-soft);
  font-size: clamp(1rem, 2vw, 1.08rem);
}

.manifesto__location {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2.25rem;
  color: var(--ink-soft);
  font-size: 0.7rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.manifesto__location-label {
  color: var(--ink);
}

.manifesto__location-line {
  width: 2rem;
  height: 1px;
  background: currentColor;
  opacity: 0.35;
}


/* =========================================================
   FILTERS
   ========================================================= */

.catalogue-filters {
  display: flex;
  gap: 0.55rem;
  margin-bottom: 2rem;
  overflow-x: auto;
  padding-bottom: 0.25rem;
  scrollbar-width: none;
}

.catalogue-filters::-webkit-scrollbar {
  display: none;
}

.filter-pill {
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  padding: 0.62rem 0.88rem;
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 650;
  transition:
    background-color var(--transition-fast),
    border-color var(--transition-fast),
    color var(--transition-fast);
}

.filter-pill:hover {
  border-color: rgba(198, 149, 47, 0.45);
  color: var(--ink);
}

.filter-pill.is-active,
.filter-pill[aria-pressed="true"] {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}


/* =========================================================
   PRODUCT GRID
   ========================================================= */

.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem 1rem;
}

.product-card__button {
  display: block;
  width: 100%;
  border: 0;
  background: transparent;
  padding: 0;
  color: inherit;
  text-align: left;
}

.product-card__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-sm);
  background: var(--paper-deep);
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 700ms cubic-bezier(.22, 1, .36, 1);
}

.product-card__button:hover .product-card__media img,
.product-card__button:focus-visible .product-card__media img {
  transform: scale(1.025);
}

.product-card__details {
  padding-top: 0.95rem;
}

.product-card__category {
  margin-bottom: 0.25rem;
  color: var(--ink-soft);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.product-card__name {
  margin-bottom: 0.35rem;
  font-family: var(--font-display);
  font-size: 1.55rem;
  line-height: 1;
}

.product-card__notes {
  display: -webkit-box;
  overflow: hidden;
  margin-bottom: 0.65rem;
  color: var(--ink-soft);
  font-size: 0.76rem;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.product-card__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.product-card__price {
  margin: 0;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 700;
}

.product-card__cta {
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 700;
}


/* =========================================================
   INVITATION
   ========================================================= */

.invitation {
  background: var(--paper);
}

.invitation__inner {
  display: grid;
  gap: 2rem;
  align-items: end;
  border-top: 1px solid var(--line);
  padding-top: clamp(3rem, 7vw, 6rem);
}

.invitation__content h2 {
  max-width: 9ch;
  margin: 0.8rem 0 1rem;
  font-size: clamp(3rem, 7.5vw, 6.8rem);
}

.invitation__content p {
  max-width: 45ch;
  margin: 0;
  color: var(--ink-soft);
}


/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
  background: var(--ink);
  color: var(--paper);
}

.footer-top {
  display: grid;
  gap: 3rem;
  padding-block: 4rem 3rem;
}

.footer-brand__name {
  display: inline-block;
  margin-bottom: 0.85rem;
  font-family: var(--font-display);
  font-size: 1.65rem;
  line-height: 1;
}

.footer-brand p {
  margin: 0 0 0.1rem;
  color: rgba(247, 244, 238, 0.55);
  font-size: 0.76rem;
}

.footer-signature {
  width: 1.55rem;
  height: 1.55rem;
  margin-top: 1.5rem;
  color: var(--accent);
}

.footer-column {
  min-width: 0;
}

.footer-label {
  margin-bottom: 1.05rem;
  color: rgba(247, 244, 238, 0.42);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-contact-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 0.58rem;
  margin: 0;
  border: 0;
  background: transparent;
  padding: 0;
  color: rgba(247, 244, 238, 0.86);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.4;
  text-align: left;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.footer-contact-link:hover,
.footer-contact-link:focus-visible {
  color: var(--paper);
}

.footer-contact-link > span:last-child {
  color: var(--gold-hot);
  transition: transform var(--transition-fast);
}

.footer-contact-link:hover > span:last-child,
.footer-contact-link:focus-visible > span:last-child {
  transform: translateX(3px);
}

.footer-icon {
  display: inline-flex;
  width: 1.05rem;
  height: 1.05rem;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  color: currentColor;
}

.footer-icon svg {
  width: 100%;
  height: 100%;
}

.footer-phone {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 0.58rem;
  margin-top: 0.7rem;
  color: rgba(247, 244, 238, 0.5);
  font-size: 0.75rem;
}

.footer-phone:hover,
.footer-phone:focus-visible {
  color: rgba(247, 244, 238, 0.88);
}

.footer-socials {
  display: grid;
  gap: 0.8rem;
}

.footer-social {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 0.65rem;
  color: rgba(247, 244, 238, 0.72);
  font-size: 0.78rem;
  transition:
    color var(--transition-fast),
    transform var(--transition-fast);
}

.footer-social:hover,
.footer-social:focus-visible {
  color: var(--paper);
  transform: translateX(2px);
}

.footer-social__icon {
  display: inline-flex;
  width: 1.08rem;
  height: 1.08rem;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.footer-social__icon svg {
  width: 100%;
  height: 100%;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  border-top: 1px solid rgba(247, 244, 238, 0.1);
  padding-block: 1rem 1.5rem;
  color: rgba(247, 244, 238, 0.4);
  font-size: 0.68rem;
}


/* =========================================================
   PRODUCT DIALOG
   ========================================================= */

dialog {
  max-width: none;
  margin: auto;
  border: 0;
  padding: 0;
}

dialog::backdrop {
  background: rgba(10, 13, 22, 0.68);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.dialog-close {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  z-index: 5;
  display: grid;
  width: 2.35rem;
  height: 2.35rem;
  place-items: center;
  border: 1px solid rgba(20, 25, 43, 0.1);
  border-radius: 50%;
  background: rgba(247, 244, 238, 0.82);
  color: var(--ink);
  font-size: 1.25rem;
  line-height: 1;
}

.product-dialog,
.channel-dialog {
  width: min(
    calc(100% - 1.5rem),
    980px
  );
  border-radius: var(--radius-md);
  background: var(--paper);
  color: var(--ink);
  box-shadow: var(--shadow-dialog);
}

.product-dialog__shell {
  display: grid;
  min-height: min(78vh, 760px);
}

.product-dialog__media {
  min-height: 19rem;
  background: var(--paper-deep);
}

.product-dialog__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-dialog__content {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: clamp(1.5rem, 5vw, 3rem);
}

.product-dialog__top {
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--line);
}

.product-dialog__top h2 {
  margin-bottom: 0.55rem;
  font-size: clamp(2.25rem, 7vw, 4rem);
  line-height: 0.95;
}

.product-dialog__price {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.8rem;
  font-weight: 700;
}

.product-dialog__notes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding-block: 1rem;
  border-bottom: 1px solid var(--line);
}

.product-dialog__notes span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.45rem 0.65rem;
  color: var(--ink-soft);
  font-size: 0.67rem;
}

.product-dialog__description {
  padding-top: 1.15rem;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.product-dialog__meta {
  display: grid;
  gap: 0.4rem;
  margin-top: auto;
  padding-top: 1.1rem;
  color: var(--ink-soft);
  font-size: 0.72rem;
}

.product-dialog__actions {
  margin-top: 1.4rem;
}

.product-dialog__actions .button {
  width: 100%;
}


/* =========================================================
   CHANNEL SELECTOR
   ========================================================= */

.channel-dialog {
  width: min(
    calc(100% - 1.5rem),
    600px
  );
}

.channel-dialog__shell {
  position: relative;
  padding: clamp(1.5rem, 5vw, 3rem);
}

.channel-dialog__content h2 {
  max-width: 11ch;
  margin-bottom: 1rem;
  font-size: clamp(2.3rem, 7vw, 4rem);
  line-height: 0.96;
}

.channel-dialog__intro {
  max-width: 31rem;
  margin-bottom: 0.8rem;
  color: var(--ink-soft);
  font-size: 0.88rem;
  line-height: 1.65;
}

.channel-dialog__context {
  margin: 0 0 1.25rem;
  color: var(--ink);
  font-size: 0.74rem;
  font-weight: 650;
}

.channel-options {
  display: grid;
  border-top: 1px solid var(--line);
}

.channel-option {
  display: grid;
  grid-template-columns: 2rem 1fr auto;
  gap: 0.8rem;
  width: 100%;
  align-items: center;
  min-height: 4.4rem;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  padding: 1rem 0;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  transition:
    padding-left var(--transition-fast),
    color var(--transition-fast);
}

.channel-option:hover,
.channel-option:focus-visible {
  padding-left: 0.25rem;
  color: var(--ink);
}

.channel-option__icon {
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
}

.channel-option__icon svg {
  width: 1.3rem;
  height: 1.3rem;
}

.channel-option__text {
  display: grid;
  gap: 0.08rem;
}

.channel-option__text strong {
  font-size: 0.86rem;
  font-weight: 790;
}

.channel-option__text small {
  color: var(--ink-soft);
  font-size: 0.7rem;
}

.channel-option__arrow {
  color: var(--ink-soft);
  transition:
    transform var(--transition-fast),
    color var(--transition-fast);
}

.channel-option:hover .channel-option__arrow,
.channel-option:focus-visible .channel-option__arrow {
  color: var(--accent);
  transform: translateX(0.25rem);
}

.channel-option[data-channel="whatsapp"]
.channel-option__icon svg path {
  fill: currentColor;
  stroke: none;
}


/* =========================================================
   REVEAL
   ========================================================= */

.js .reveal {
  opacity: 0;
  transform: translateY(1.5rem);
  transition:
    opacity 700ms ease,
    transform 700ms cubic-bezier(.22, 1, .36, 1);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}


/* =========================================================
   TABLET
   ========================================================= */

@media (min-width: 640px) {
  .section-heading {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: end;
  }

  .featured-grid {
    grid-template-columns: 1.55fr 0.85fr;
    min-height: 36rem;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 1.2rem;
  }

  .footer-top {
    grid-template-columns:
      minmax(0, 1.25fr)
      minmax(12rem, 0.8fr)
      minmax(11rem, 0.8fr);
    align-items: start;
  }

  .footer-bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .product-dialog__shell {
    grid-template-columns:
      minmax(0, 0.95fr)
      minmax(0, 1.05fr);
  }

  .product-dialog__media {
    min-height: 100%;
  }
}


/* =========================================================
   MOBILE HERO
   ========================================================= */

@media (max-width: 639px) {
  .hero {
    min-height: min(82svh, 820px);
  }

  /* Image nette : on la remonte un peu pour laisser respirer le texte */
  .hero::before {
    background-position: center 38%;
  }

  /* Voile NOIR plus marqué en bas pour la lisibilité du texte */
  .hero::after {
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.12) 0%,
      rgba(0, 0, 0, 0.18) 35%,
      rgba(0, 0, 0, 0.60) 62%,
      rgba(0, 0, 0, 0.94) 100%
    );
  }

  .hero__actions {
    align-items: flex-start;
    flex-direction: column;
  }
}


/* =========================================================
   DESKTOP
   ========================================================= */

@media (min-width: 960px) {
  .site-header__inner {
    min-height: 5.5rem;
  }

  .desktop-nav {
    display: flex;
    align-items: center;
    gap: 1.6rem;
  }

  .desktop-nav a,
  .nav-contact {
    position: relative;
    color: rgba(247, 244, 238, 0.74);
    font-size: 0.72rem;
    font-weight: 650;
  }

  .desktop-nav a:hover,
  .desktop-nav a:focus-visible,
  .nav-contact:hover,
  .nav-contact:focus-visible {
    color: var(--paper);
  }

  .mobile-menu-toggle,
  .mobile-menu {
    display: none !important;
  }

  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2.1rem 1.35rem;
  }

  .footer-top {
    padding-block: 5rem 4rem;
  }

  .hero {
    min-height: min(86svh, 900px);
  }

  /* Image nette ancrée à droite, texte lisible à gauche */
  .hero::before {
    background-position: right center;
    background-size: contain;
  }

  /* Dégradés NOIRS : plus sombre à gauche, transparent à droite */
  .hero::after {
    background:
      linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.88) 0%,
        rgba(0, 0, 0, 0.55) 38%,
        rgba(0, 0, 0, 0.08) 60%,
        rgba(0, 0, 0, 0.00) 78%
      ),
      linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.12) 0%,
        rgba(0, 0, 0, 0.00) 55%,
        rgba(0, 0, 0, 0.55) 100%
      );
  }
}


/* =========================================================
   LARGE DESKTOP
   ========================================================= */

@media (min-width: 1200px) {
  .hero__title {
    max-width: 10ch;
  }

  .featured-grid {
    min-height: 42rem;
  }

  .manifesto {
    padding-inline-start: 5vw;
  }
}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}