:root {
  --bg: #12121f;
  --bg-card: #1a1a2e;
  --bg-elevated: #22223a;
  --text: #f5f5f7;
  --muted: #b8b8c8;
  --accent: #ffa500;
  --accent-dark: #e69500;
  --accent-rgb: 255, 165, 0;
  --line: rgba(255, 255, 255, 0.08);
  --radius: 6px;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  --font: "Barlow", sans-serif;
  --font-display: "Barlow Condensed", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

img {
  width: 100%;
  display: block;
  object-fit: cover;
}

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

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

.text-accent {
  color: var(--accent);
}

.section {
  padding: 5rem 0;
}

.section-label {
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 0.6rem;
}

.section-label.center,
.center {
  text-align: center;
}

.section-sub {
  color: var(--muted);
  max-width: 560px;
  margin: 0.75rem auto 0;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  transition: transform 0.2s, background 0.2s, border-color 0.2s;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--accent);
  color: #111;
  border-color: var(--accent);
}

.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--text);
  background: transparent;
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-sm {
  padding: 0.55rem 1rem;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 1rem 1.8rem;
  font-size: 1rem;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: rgba(18, 18, 31, 0.85);
  border-bottom: 1px solid transparent;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.header-scrolled {
  background: rgba(18, 18, 31, 0.97);
  border-color: var(--line);
  box-shadow: var(--shadow);
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 1rem;
}

.menu-cta-mobile {
  display: none;
  margin-top: 0.5rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--line);
}

.menu-cta-mobile .btn {
  width: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-logo {
  display: block;
  height: 62px;
  width: auto;
  max-width: min(240px, 54vw);
  object-fit: contain;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.45))
    drop-shadow(0 0 12px rgba(var(--accent-rgb), 0.22));
}

.menu {
  display: flex;
  gap: 1.4rem;
  list-style: none;
}

.menu a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s;
}

.menu a:hover {
  color: var(--accent);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: transform 0.25s, opacity 0.25s;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.header-cta svg {
  flex-shrink: 0;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 76px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url("assets/images/hd/hero-bg.jpg") center / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(18, 18, 31, 0.75) 0%,
    rgba(18, 18, 31, 0.92) 55%,
    var(--bg) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 4rem 0 2rem;
  max-width: 820px;
  margin: 0 auto;
}

.hero-tag {
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: clamp(2.8rem, 7vw, 4.8rem);
  margin-bottom: 1.2rem;
}

.hero-lead {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 620px;
  margin: 0 auto 2rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.hero-stats {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 3rem;
  padding-bottom: 3rem;
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  padding: 1.2rem 1rem;
  text-align: center;
  border-radius: var(--radius);
}

.stat-icon {
  font-size: 1.4rem;
  display: block;
  margin-bottom: 0.4rem;
}

.stat-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--accent);
}

.stat-card span:last-child {
  font-size: 0.82rem;
  color: var(--muted);
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-visual img {
  border-radius: var(--radius);
  min-height: 420px;
  box-shadow: var(--shadow);
}

.about-badge {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  background: var(--accent);
  color: #111;
  padding: 1.2rem 1.4rem;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
}

.about-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
}

.about-badge span {
  font-size: 0.8rem;
  font-weight: 600;
}

.check-list {
  list-style: none;
  margin: 1.5rem 0 2rem;
}

.check-list li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.65rem;
  color: var(--muted);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* Collections */
.collection-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  margin-top: 2.5rem;
}

.collection-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  min-height: 240px;
}

.collection-card img {
  height: 100%;
  min-height: 240px;
  transition: transform 0.5s;
}

.collection-card:hover img {
  transform: scale(1.06);
}

.collection-label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--accent);
  color: #111;
  padding: 0.85rem 1.15rem;
  clip-path: polygon(0 12%, 100% 0, 100% 100%, 0 100%);
}

.collection-label h3 {
  font-size: 1.35rem;
  margin-bottom: 0.2rem;
}

.collection-label a {
  font-weight: 600;
  font-size: 0.9rem;
}

/* Features */
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2.5rem;
  align-items: start;
}

.features-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.feature-box {
  background: var(--bg-card);
  border: 1px solid var(--line);
  padding: 1.2rem;
  border-radius: var(--radius);
}

.feature-icon {
  display: inline-flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #111;
  border-radius: 50%;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.feature-box h3 {
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
}

.feature-box p {
  font-size: 0.88rem;
  color: var(--muted);
}

.features-image {
  margin-top: 2.5rem;
}

.features-image img {
  border-radius: var(--radius);
  max-height: 420px;
  box-shadow: var(--shadow);
}

/* Articles grid */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin: 2rem 0 2.5rem;
}

.filter-btn {
  background: var(--bg-card);
  border: 1px solid var(--line);
  color: var(--muted);
  padding: 0.55rem 1.2rem;
  border-radius: 999px;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  transition: all 0.2s;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #111;
}

.filter-btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.catalog-note {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.15rem 1.35rem;
  margin: -0.5rem auto 2rem;
  max-width: 680px;
}

.catalog-note-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.65rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.catalog-note .check-list {
  margin: 0;
}

.catalog-note .check-list li {
  margin-bottom: 0.45rem;
  font-size: 0.86rem;
}

.catalog-note .check-list li:last-child {
  margin-bottom: 0;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 1rem;
}

.article-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  transition: opacity 0.35s, transform 0.35s;
}

.article-card.hidden {
  display: none;
}

.article-card.tall {
  grid-row: span 2;
}

.article-card.wide {
  grid-column: span 2;
}

.article-media {
  position: relative;
  height: 100%;
  min-height: 220px;
  cursor: pointer;
}

.article-media img {
  height: 100%;
  min-height: 220px;
  transition: transform 0.5s;
}

.article-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.2rem;
  background: linear-gradient(
    to top,
    rgba(var(--accent-rgb), 0.95) 0%,
    rgba(var(--accent-rgb), 0.75) 45%,
    transparent 100%
  );
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  color: #111;
  pointer-events: none;
}

.article-card.is-active .article-overlay {
  pointer-events: auto;
}

@media (hover: hover) and (pointer: fine) {
  .article-card:hover .article-overlay {
    pointer-events: auto;
  }
}

.article-card.is-active .article-overlay {
  opacity: 1;
  transform: translateY(0);
}

.article-card.is-active .article-media img {
  transform: scale(1.05);
}

@media (hover: hover) and (pointer: fine) {
  .article-card:hover .article-overlay {
    opacity: 1;
    transform: translateY(0);
  }

  .article-card:hover .article-media img {
    transform: scale(1.05);
  }
}

.article-tag {
  align-self: flex-start;
  background: rgba(0, 0, 0, 0.25);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.55rem;
  border-radius: 3px;
  margin-bottom: 0.5rem;
}

.article-overlay h3 {
  font-size: 1.15rem;
  margin-bottom: 0.2rem;
}

.article-price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
}

.article-meta {
  font-size: 0.82rem;
  margin-bottom: 0.75rem;
  opacity: 0.9;
}

.article-overlay .btn-primary {
  align-self: flex-start;
  background: #111;
  border-color: #111;
  color: #fff;
}

.article-overlay .btn-primary:hover {
  background: #222;
}

/* Delivery */
.delivery {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}

.delivery-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      105deg,
      rgba(18, 18, 31, 0.92) 0%,
      rgba(18, 18, 31, 0.78) 45%,
      rgba(18, 18, 31, 0.55) 100%
    ),
    url("assets/images/hd/delivery-bg.png") center / cover no-repeat;
}

.delivery-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
}

.delivery-steps {
  list-style: none;
  margin: 2rem 0;
}

.delivery-steps li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
  color: var(--muted);
}

.delivery-steps span {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: #111;
  font-weight: 800;
  border-radius: 50%;
  font-size: 0.9rem;
}

.delivery-note {
  margin-top: 1rem;
  font-size: 0.88rem;
  color: var(--muted);
}

/* Blog */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 2.5rem;
}

.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.blog-card img {
  height: 200px;
}

.blog-body {
  padding: 1.2rem;
}

.blog-body time {
  font-size: 0.78rem;
  color: var(--accent);
  font-weight: 600;
}

.blog-body h3 {
  font-size: 1.15rem;
  margin: 0.4rem 0 0.6rem;
}

.blog-body a {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.contact-list {
  list-style: none;
  margin: 1.5rem 0 2rem;
}

.contact-list li {
  margin-bottom: 0.6rem;
  color: var(--muted);
}

.contact-list a {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-list a:hover {
  color: var(--accent);
}

.contact-note {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.contact-note a {
  color: var(--accent);
  font-weight: 600;
}

.footer-contact-links {
  list-style: none;
  margin-bottom: 1rem;
}

.footer-contact-links a {
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-contact-links a:hover {
  color: var(--accent);
}

.contact-map img {
  border-radius: var(--radius);
  min-height: 320px;
  box-shadow: var(--shadow);
}

/* Footer */
.footer {
  background: #0c0c14;
  border-top: 1px solid var(--line);
  padding: 3.5rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
}

.footer-brand p {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 1rem;
  max-width: 280px;
}

.footer h4 {
  font-family: var(--font-display);
  margin-bottom: 1rem;
  color: var(--accent);
}

.footer ul {
  list-style: none;
}

.footer li {
  margin-bottom: 0.45rem;
}

.footer a:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 1.2rem 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.85rem;
}

/* Message flottant client */
.floating-hint {
  position: fixed;
  right: max(1.2rem, env(safe-area-inset-right));
  bottom: calc(5.5rem + env(safe-area-inset-bottom));
  z-index: 145;
  width: min(300px, calc(100vw - 2.4rem));
  padding: 1rem 1.1rem 1.05rem;
  border-radius: var(--radius);
  border: 1px solid rgba(var(--accent-rgb), 0.35);
  background: rgba(26, 26, 46, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  color: var(--text);
  animation: hint-in 0.5s ease forwards;
}

.floating-hint[hidden] {
  display: none !important;
}

.floating-hint.is-hidden {
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
}

@keyframes hint-in {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.floating-hint-close {
  position: absolute;
  top: 0.35rem;
  right: 0.4rem;
  width: 28px;
  height: 28px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.floating-hint-close:hover {
  background: rgba(var(--accent-rgb), 0.25);
  color: var(--text);
}

.floating-hint-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.4rem;
  padding-right: 1.5rem;
}

.floating-hint-text {
  font-size: 0.88rem;
  line-height: 1.5;
  color: rgba(245, 245, 247, 0.92);
  margin-bottom: 0.75rem;
}

.floating-hint-text strong {
  color: #fff;
  font-weight: 600;
}

.floating-hint-link {
  display: inline-flex;
  align-items: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent);
  transition: color 0.2s;
}

.floating-hint-link:hover {
  color: #ffb347;
}

body.nav-open .floating-hint {
  opacity: 0;
  pointer-events: none;
}

/* Floats */
.whatsapp-float {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 150;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s;
}

.whatsapp-float:hover {
  transform: scale(1.08);
}

.back-to-top {
  position: fixed;
  right: 1.2rem;
  bottom: 5.5rem;
  z-index: 140;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: var(--radius);
  background: var(--accent);
  color: #111;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, visibility 0.25s;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

/* ——— Tablette (portrait / petite tablette) ——— */
@media (max-width: 1024px) {
  .section {
    padding: 4rem 0;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .collection-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .collection-card:nth-child(3),
  .collection-card:nth-child(4) {
    grid-column: span 1;
    max-width: none;
    margin: 0;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .articles-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: auto;
    gap: 0.75rem;
    width: 100%;
  }

  .article-card {
    min-width: 0;
  }

  .article-card.tall,
  .article-card.wide {
    grid-row: span 1;
    grid-column: span 1;
  }

  .article-media {
    aspect-ratio: 3 / 4;
    min-height: 0;
    height: auto;
  }

  .article-media img {
    min-height: 100%;
    height: 100%;
  }

  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-card:last-child {
    grid-column: 1 / -1;
    max-width: 50%;
    margin: 0 auto;
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .delivery-content {
    max-width: 100%;
  }
}

/* ——— Mobile ——— */
@media (max-width: 768px) {
  .container {
    width: min(1180px, 92%);
  }

  .section {
    padding: 2.25rem 0;
  }

  .section-label {
    font-size: 0.72rem;
    margin-bottom: 0.4rem;
  }

  h2 {
    font-size: 1.65rem;
  }

  .section-sub {
    font-size: 0.88rem;
    margin-top: 0.5rem;
  }

  .section-head {
    margin-bottom: 0.25rem;
  }

  .btn {
    padding: 0.65rem 1.15rem;
    font-size: 0.88rem;
    min-height: 42px;
  }

  .btn-sm {
    padding: 0.45rem 0.85rem;
    font-size: 0.8rem;
    min-height: 38px;
  }

  .header-inner {
    min-height: 60px;
  }

  .brand-logo {
    height: 54px;
    max-width: min(210px, 58vw);
  }

  .brand-logo--footer {
    height: 76px;
    max-width: 230px;
  }

  .menu-toggle {
    display: flex;
    min-width: 40px;
    min-height: 40px;
    align-items: center;
    justify-content: center;
  }

  .header-inner nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-card);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    display: none;
    max-height: calc(100dvh - 60px);
    overflow-y: auto;
  }

  .header-inner nav:has(.menu.open) {
    display: block;
  }

  .menu {
    flex-direction: column;
    padding: 0.5rem 4% 0.75rem;
    gap: 0;
  }

  .menu li a:not(.btn) {
    padding: 0.6rem 0.15rem;
    font-size: 0.92rem;
    min-height: 40px;
    display: flex;
    align-items: center;
  }

  .menu-cta-mobile {
    display: block;
    margin-top: 0.35rem;
    padding-top: 0.5rem;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: 0;
    padding-top: 60px;
  }

  .hero-content {
    padding: 1.35rem 0 0.85rem;
  }

  .hero-tag {
    font-size: 0.68rem;
    margin-bottom: 0.5rem;
  }

  .hero h1 {
    font-size: 1.85rem;
    margin-bottom: 0.65rem;
    line-height: 1.15;
  }

  .hero-lead {
    font-size: 0.86rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    padding: 0;
  }

  .hero-cta {
    gap: 0.55rem;
  }

  .hero-cta .btn {
    flex: 1;
    min-width: 0;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.45rem;
    margin-top: 1rem;
    padding-bottom: 1.25rem;
  }

  .stat-card {
    padding: 0.55rem 0.35rem;
  }

  .stat-icon {
    font-size: 1rem;
    margin-bottom: 0.2rem;
  }

  .stat-card strong {
    font-size: 1.1rem;
  }

  .stat-card span:last-child {
    font-size: 0.65rem;
    line-height: 1.3;
  }

  .about-grid,
  .features-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .about-text h2 {
    margin-bottom: 0.5rem;
  }

  .about-text p {
    font-size: 0.9rem;
  }

  .check-list {
    margin: 0.85rem 0 1.15rem;
  }

  .check-list li {
    font-size: 0.84rem;
    margin-bottom: 0.45rem;
    padding-left: 1.35rem;
  }

  .about-visual img {
    min-height: 200px;
  }

  .about-badge {
    right: 0.35rem;
    bottom: 0.35rem;
    padding: 0.55rem 0.7rem;
  }

  .about-badge strong {
    font-size: 1.2rem;
  }

  .about-badge span {
    font-size: 0.68rem;
  }

  .collection-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-top: 1.25rem;
  }

  .collection-card,
  .collection-card:last-child {
    max-width: none;
    min-height: 170px;
  }

  .collection-card img {
    min-height: 170px;
  }

  .collection-label {
    padding: 0.75rem 1rem;
  }

  .collection-label h3 {
    font-size: 1.25rem;
  }

  .collection-label a {
    font-size: 0.82rem;
  }

  .features-grid {
    gap: 1rem;
  }

  .features-text p {
    font-size: 0.9rem;
  }

  .features-cards {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.75rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    margin: 0 -2%;
    padding: 0 2% 0.35rem;
  }

  .features-cards::-webkit-scrollbar {
    display: none;
  }

  .feature-box {
    flex: 0 0 min(82vw, 280px);
    scroll-snap-align: start;
    padding: 0.85rem 1rem;
  }

  .feature-box h3 {
    font-size: 0.95rem;
  }

  .feature-box p {
    font-size: 0.8rem;
  }

  .features-image {
    margin-top: 1rem;
  }

  .features-image img {
    max-height: none;
    min-height: 160px;
  }

  .filter-bar {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin: 1.15rem -2% 1.25rem;
    padding: 0 2% 0.35rem;
    gap: 0.4rem;
  }

  .filter-bar::-webkit-scrollbar {
    display: none;
  }

  .filter-btn {
    flex-shrink: 0;
    min-height: 36px;
    padding: 0.4rem 0.75rem;
    font-size: 0.8rem;
  }

  .catalog-note {
    margin: 0 0 1rem;
    padding: 0.9rem 1rem;
  }

  .catalog-note .check-list li {
    font-size: 0.8rem;
  }

  .articles-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: auto;
    gap: 0.55rem;
    width: 100%;
  }

  .article-card {
    min-width: 0;
  }

  .article-card.tall,
  .article-card.wide {
    grid-row: span 1;
    grid-column: span 1;
  }

  .article-media {
    aspect-ratio: 3 / 4;
    min-height: 0;
    max-height: none;
    height: auto;
  }

  .article-media img {
    min-height: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }

  .article-overlay {
    padding: 0.65rem 0.75rem;
  }

  .article-overlay h3 {
    font-size: 0.92rem;
    margin-bottom: 0.1rem;
  }

  .article-price {
    font-size: 1.1rem;
    margin-bottom: 0.15rem;
  }

  .article-meta {
    font-size: 0.72rem;
    margin-bottom: 0.45rem;
  }

  .article-tag {
    font-size: 0.65rem;
    margin-bottom: 0.3rem;
  }

  .article-overlay .btn {
    min-height: 36px;
    padding: 0.4rem 0.7rem;
    font-size: 0.78rem;
    width: 100%;
  }

  .blog-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-top: 1.25rem;
  }

  .blog-card img {
    height: 140px;
  }

  .blog-body {
    padding: 0.75rem 0.85rem;
  }

  .blog-body h3 {
    font-size: 1rem;
    margin: 0.25rem 0 0.35rem;
  }

  .delivery {
    padding: 2.25rem 0;
  }

  .delivery-content h2 {
    font-size: 1.55rem;
  }

  .delivery-content > p {
    font-size: 0.88rem;
  }

  .delivery-steps {
    margin: 1rem 0;
  }

  .delivery-steps li {
    font-size: 0.84rem;
    margin-bottom: 0.55rem;
    gap: 0.65rem;
  }

  .delivery-steps span {
    width: 26px;
    height: 26px;
    font-size: 0.8rem;
  }

  .delivery-note {
    font-size: 0.78rem;
    margin-top: 0.65rem;
  }

  .delivery-bg {
    background:
      linear-gradient(
        180deg,
        rgba(18, 18, 31, 0.94) 0%,
        rgba(18, 18, 31, 0.88) 100%
      ),
      url("assets/images/hd/delivery-bg.png") center / cover no-repeat;
  }

  .contact-list li {
    font-size: 0.88rem;
    margin-bottom: 0.4rem;
  }

  .contact-map img {
    min-height: 180px;
  }

  .footer {
    padding-top: 2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.25rem;
    padding-bottom: 1.5rem;
  }

  .footer-brand p {
    max-width: none;
    margin-top: 0.65rem;
    font-size: 0.84rem;
  }

  .footer h4 {
    font-size: 0.95rem;
    margin-bottom: 0.55rem;
  }

  .footer-bottom {
    padding: 0.85rem 0;
    font-size: 0.78rem;
  }

.footer .brand {
  justify-content: center;
}

.brand-logo--footer {
  height: 84px;
  max-width: 280px;
  filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.5))
    drop-shadow(0 0 16px rgba(var(--accent-rgb), 0.25));
}

  .whatsapp-float {
    right: max(0.75rem, env(safe-area-inset-right));
    bottom: max(0.75rem, env(safe-area-inset-bottom));
    width: 48px;
    height: 48px;
  }

  .whatsapp-float img {
    width: 24px;
    height: 24px;
  }

  .back-to-top {
    right: max(0.75rem, env(safe-area-inset-right));
    bottom: calc(4.25rem + env(safe-area-inset-bottom));
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }

  .floating-hint {
    right: max(0.6rem, env(safe-area-inset-right));
    left: max(0.6rem, env(safe-area-inset-left));
    width: auto;
    bottom: calc(4.5rem + env(safe-area-inset-bottom));
    padding: 0.65rem 0.75rem 0.7rem;
  }

  .floating-hint-title {
    font-size: 0.88rem;
    margin-bottom: 0.25rem;
  }

  .floating-hint-text {
    font-size: 0.76rem;
    line-height: 1.4;
    margin-bottom: 0.45rem;
  }

  .floating-hint-link {
    font-size: 0.78rem;
  }

  .floating-hint-close {
    width: 24px;
    height: 24px;
    font-size: 1.1rem;
  }
}

@media (hover: none) and (pointer: coarse) {
  .collection-card:hover img {
    transform: none;
  }
}

/* ——— Petit telephone ——— */
@media (max-width: 480px) {
  .section {
    padding: 1.85rem 0;
  }

  .hero h1 {
    font-size: 1.65rem;
  }

  .hero h1 br {
    display: none;
  }

  .hero-cta {
    flex-direction: column;
    width: 100%;
  }

  .hero-cta .btn {
    width: 100%;
  }

  h2 {
    font-size: 1.45rem;
  }

  .articles-grid {
    gap: 0.45rem;
  }

  .article-media {
    aspect-ratio: 3 / 4;
  }

  .collection-card,
  .collection-card img {
    min-height: 145px;
  }

  .stat-card strong {
    font-size: 1rem;
  }
}

/* ——— Grand ecran PC ——— */
@media (min-width: 1280px) {
  .container {
    width: min(1240px, 90%);
  }

  .hero-content {
    max-width: 900px;
  }

  .articles-grid {
    gap: 1.15rem;
    grid-auto-rows: 240px;
  }

  .article-media,
  .article-media img {
    min-height: 240px;
  }
}
