/* ============================================================
   28INK MARRAKECH — Home Page Styles
   ============================================================ */

/* ─── Hero Section ─── */
#hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.5s ease;
}
.hero-slide.active { opacity: 1; }

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.1);
  transition: transform 8s ease;
  filter: brightness(0.35) contrast(1.1);
}
.hero-slide.active img { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: 
    linear-gradient(to right, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.2) 60%, transparent 100%),
    linear-gradient(to top, rgba(10,10,10,0.9) 0%, transparent 50%);
}

/* Slide indicators */
.hero-indicators {
  position: absolute;
  bottom: 3rem;
  right: 3rem;
  z-index: 5;
  display: flex;
  gap: 0.5rem;
}
.hero-indicator {
  width: 30px; height: 1px;
  background: rgba(255,255,255,0.2);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.hero-indicator.active { background: var(--gold); }
.hero-indicator::after {
  content: '';
  position: absolute;
  left: 0; top: 0;
  height: 100%;
  width: 0;
  background: var(--gold);
}
.hero-indicator.active::after { animation: indicatorProgress 6s linear forwards; }
@keyframes indicatorProgress { to { width: 100%; } }

.hero-nav-arrows {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 1rem;
}
.hero-arrow {
  width: 44px; height: 44px;
  border: 1px solid rgba(201,168,76,0.4);
  background: transparent;
  color: var(--gold);
  font-size: 1rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.hero-arrow:hover { background: var(--gold); color: var(--black); }

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 4;
  max-width: 1200px;
  padding: 0 3rem;
  width: 100%;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: heroFadeUp 1s ease 0.5s forwards;
}
.hero-eyebrow span {
  font-size: 0.7rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: '';
  width: 40px; height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

.hero-title {
  font-family: var(--font-title);
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 900;
  line-height: 0.9;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  opacity: 0;
  animation: heroFadeUp 1s ease 0.7s forwards;
}
.hero-title .line-gold { color: var(--gold); }
.hero-title .line-outline {
  -webkit-text-stroke: 0;
  color: var(--gold);
}

.hero-desc {
  max-width: 520px;
  margin-top: 1.5rem;
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  line-height: 1.8;
  opacity: 0;
  animation: heroFadeUp 1s ease 0.9s forwards;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
  opacity: 0;
  animation: heroFadeUp 1s ease 1.1s forwards;
}

.hero-stats {
  position: absolute;
  right: 3rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  opacity: 0;
  animation: heroFadeRight 1s ease 1.3s forwards;
}
.hero-stat {
  text-align: right;
}
.hero-stat .number {
  font-family: var(--font-title);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.hero-stat .label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--gray);
  text-transform: uppercase;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 3rem;
  left: 3rem;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  opacity: 0;
  animation: heroFadeUp 1s ease 1.5s forwards;
}
.hero-scroll span {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gray);
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50%       { transform: scaleY(0.5); opacity: 0.5; }
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroFadeRight {
  from { opacity: 0; transform: translateX(30px) translateY(-50%); }
  to   { opacity: 1; transform: translateX(0) translateY(-50%); }
}

/* ─── Specialty Ticker ─── */
.specialty-ticker {
  background: var(--gold);
  overflow: hidden;
  white-space: nowrap;
  padding: 0.8rem 0;
  position: relative;
  z-index: 3;
}
.ticker-track {
  display: inline-flex;
  animation: ticker 25s linear infinite;
  gap: 0;
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0 2rem;
  font-family: var(--font-title);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--black);
}
.ticker-dot { width: 5px; height: 5px; background: var(--black); border-radius: 50%; opacity: 0.5; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ─── Intro Section ─── */
#intro {
  padding: 8rem 3rem;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.intro-text-side {}
.intro-quote {
  font-family: var(--font-accent);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-style: italic;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 2rem;
}
.intro-quote span { color: var(--gold); }
.intro-body {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.9;
  margin-bottom: 2rem;
}
.intro-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.intro-tag {
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
}

.intro-visual {
  position: relative;
}
.intro-visual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 200px 200px;
  gap: 8px;
}
.intro-visual-img {
  overflow: hidden;
  position: relative;
}
.intro-visual-img:first-child {
  grid-row: span 2;
}
.intro-visual-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: brightness(0.8);
}
.intro-visual-img:hover img { transform: scale(1.05); filter: brightness(1); }
.intro-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: var(--gold);
  color: var(--black);
  padding: 0.8rem 1.2rem;
  font-family: var(--font-title);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ─── Styles Section ─── */
#styles {
  padding: 6rem 3rem;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
#styles::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 1px; height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(201,168,76,0.1), transparent);
}
.styles-header {
  text-align: center;
  margin-bottom: 4rem;
}
.styles-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.style-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1/1;
}
.style-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
  filter: brightness(0.5) grayscale(0.3);
}
.style-card:hover img { transform: scale(1.08); filter: brightness(0.7) grayscale(0); }
.style-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.95) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  transition: var(--transition);
}
.style-card-tag {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.style-card h3 {
  font-family: var(--font-title);
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  color: var(--white);
}
.style-card-desc {
  color: var(--gray);
  font-size: 0.75rem;
  line-height: 1.6;
  margin-top: 0.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  opacity: 0;
}
.style-card:hover .style-card-desc { max-height: 60px; opacity: 1; }
.style-card-line {
  width: 0; height: 1px;
  background: var(--gold);
  margin-top: 0.8rem;
  transition: width 0.4s ease;
}
.style-card:hover .style-card-line { width: 40px; }

/* ─── Featured Realizations (Homepage Preview) ─── */
#featured-works {
  padding: 6rem 3rem;
  background: var(--black);
}
.featured-header {
  max-width: 1200px;
  margin: 0 auto 3rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.featured-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}
.featured-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1/1;
  cursor: pointer;
}
.featured-item img, .featured-item video {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: brightness(0.7);
}
.featured-item:hover img, .featured-item:hover video { transform: scale(1.05); filter: brightness(1); }
.featured-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.8), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}
.featured-item:hover .featured-item-overlay { opacity: 1; }
.featured-item-info {
  font-size: 0.75rem;
  color: var(--white);
}
.featured-item-info span { color: var(--gold); display: block; font-size: 0.65rem; letter-spacing: 0.2em; margin-bottom: 0.2rem; }
.featured-item.large {
  grid-column: span 1;
  aspect-ratio: 1/1;
}

/* ─── Process Section ─── */
#process {
  padding: 6rem 3rem;
  background: var(--dark);
}
.process-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 4rem;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 2.5rem;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.process-step {
  text-align: center;
  position: relative;
}
.step-number {
  width: 50px; height: 50px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-title);
  font-size: 1rem;
  color: var(--gold);
  margin: 0 auto 1.5rem;
  background: var(--dark);
  position: relative;
  z-index: 1;
  transition: var(--transition);
}
.process-step:hover .step-number { background: var(--gold); color: var(--black); }
.step-title {
  font-family: var(--font-title);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 0.8rem;
  text-transform: uppercase;
}
.step-desc { color: var(--gray); font-size: 0.8rem; line-height: 1.7; }

/* ─── Reviews Section ─── */
#reviews {
  padding: 6rem 3rem;
  background: var(--black);
  overflow: hidden;
}
.reviews-track-wrapper {
  overflow: hidden;
  position: relative;
  margin-top: 3rem;
}
.reviews-track {
  display: flex;
  gap: 1.5rem;
  animation: reviewsScroll 30s linear infinite;
  width: max-content;
}
.reviews-track:hover { animation-play-state: paused; }
@keyframes reviewsScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.review-card {
  min-width: 320px;
  background: var(--dark);
  border: 1px solid rgba(201,168,76,0.1);
  padding: 1.8rem;
  flex-shrink: 0;
  transition: var(--transition);
}
.review-card:hover { border-color: rgba(201,168,76,0.4); transform: translateY(-4px); }
.review-stars {
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
}
.review-text {
  color: var(--light-gray);
  font-size: 0.85rem;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.2rem;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.review-avatar {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--black);
  flex-shrink: 0;
}
.review-author-info strong {
  display: block;
  font-size: 0.85rem;
  color: var(--white);
  font-weight: 600;
}
.review-author-info span {
  font-size: 0.7rem;
  color: var(--gray);
}

/* ─── Blog Preview ─── */
#blog-preview {
  padding: 6rem 3rem;
  background: var(--dark);
}
.blog-preview-header {
  max-width: 1200px;
  margin: 0 auto 3rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.blog-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 1.5rem;
}
.blog-card {
  background: var(--dark-2);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-dark); }
.blog-card-img {
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
}
.blog-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: brightness(0.8);
}
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-cat {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--gold);
  color: var(--black);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
}
.blog-card-body { padding: 1.5rem; }
.blog-card-date { font-size: 0.65rem; color: var(--gray); letter-spacing: 0.15em; margin-bottom: 0.5rem; }
.blog-card-title {
  font-family: var(--font-title);
  font-size: 1rem;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 0.8rem;
}
.blog-card:first-child .blog-card-title { font-size: 1.3rem; }
.blog-card-excerpt { color: var(--gray); font-size: 0.78rem; line-height: 1.7; margin-bottom: 1rem; }
.blog-card-link {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.3s ease;
}
.blog-card-link:hover { gap: 0.8rem; }

/* ─── FAQ Preview ─── */
#faq-preview {
  padding: 6rem 3rem;
  background: var(--black);
}
.faq-inner {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid rgba(201,168,76,0.1);
  overflow: hidden;
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  cursor: pointer;
  font-family: var(--font-title);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  color: var(--white);
  transition: color 0.3s;
}
.faq-question:hover, .faq-item.open .faq-question { color: var(--gold); }
.faq-icon {
  width: 28px; height: 28px;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 0.8rem;
  transition: var(--transition);
  flex-shrink: 0;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--gold); color: var(--black); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer { max-height: 200px; padding-bottom: 1.5rem; }
.faq-answer p { color: var(--gray); font-size: 0.85rem; line-height: 1.8; }

/* ─── Tools / Equipment ─── */
#equipment {
  padding: 5rem 0;
  background: var(--dark);
  overflow: hidden;
}
.equipment-inner {
  max-width: 1300px;
  margin: 0 auto;
  overflow: hidden;
}
.equipment-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.equip-card {
  background: var(--dark-2);
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1px solid rgba(201,168,76,0.1);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.equip-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.equip-card:hover::before { transform: scaleX(1); }
.equip-card:hover { border-color: rgba(201,168,76,0.3); transform: translateY(-4px); }
.equip-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}
.equip-card h4 {
  font-family: var(--font-title);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}
.equip-card p { color: var(--gray); font-size: 0.78rem; line-height: 1.6; }

/* ─── Mini Map CTA ─── */
#mini-cta {
  padding: 4rem 3rem;
  background: var(--black);
}
.mini-cta-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 3rem;
  border: 1px solid rgba(201,168,76,0.15);
  position: relative;
  overflow: hidden;
}
.mini-cta-inner::before {
  content: '28';
  position: absolute;
  right: -2rem;
  bottom: -3rem;
  font-family: var(--font-title);
  font-size: 12rem;
  font-weight: 900;
  color: rgba(201,168,76,0.03);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.mini-cta-text h2 {
  font-family: var(--font-title);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.2;
}
.mini-cta-text h2 span { color: var(--gold); }
.mini-cta-text p { color: var(--gray); font-size: 0.85rem; line-height: 1.8; margin-bottom: 1.5rem; }
.mini-cta-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ═══════════════════════════════════════════════════════
   RESPONSIVE HOME — PC (≥1025px), Tablette (769-1024px), Mobile (≤768px)
   ═══════════════════════════════════════════════════════ */

/* ── PC large (≥1400px) ── */
@media (min-width: 1400px) {
  .hero-content { max-width: 1400px; padding: 0 4rem; }
  #intro { max-width: 1400px; padding: 10rem 4rem; }
  .styles-grid { max-width: 1400px; }
  .featured-grid { max-width: 1400px; }
}

/* ── PC / Tablette (≤1024px) ── */
@media (max-width: 1024px) {
  #intro { grid-template-columns: 1fr; gap: 3rem; padding: 6rem 2.5rem; }
  .intro-visual-grid { grid-template-rows: 220px 180px; }

  .styles-grid { grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }

  .blog-grid { grid-template-columns: 1fr 1fr; gap: 1.2rem; }
  .blog-grid .blog-card:first-child { grid-column: span 2; }

  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .process-steps::before { display: none; }

  .featured-grid { grid-template-columns: repeat(2, 1fr); gap: 1px; }
  .featured-item.large { grid-column: span 2; }

  /* Hero stats hidden sur tablette — remplacé par version en bas */
  .hero-stats {
    position: static;
    transform: none;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 3rem;
    padding: 1.5rem 3rem;
    background: rgba(10,10,10,0.9);
    border-top: 1px solid rgba(201,168,76,0.15);
    animation: none;
    opacity: 1;
  }
  .hero-stat { text-align: center; }

  .equipment-grid { grid-template-columns: repeat(2, 1fr); }
  .mini-cta-inner { grid-template-columns: 1fr; text-align: center; }
  .mini-cta-actions { justify-content: center; }
}

/* ── Mobile (≤768px) — règles de base (mobile.css prend le relais pour les détails) ── */
@media (max-width: 768px) {
  /* Hero */
  #hero {
    height: 100svh;
    height: 100vh;
    min-height: 580px;
  }
  .hero-overlay {
    background:
      linear-gradient(to bottom, rgba(10,10,10,0.5) 0%, rgba(10,10,10,0.1) 30%, rgba(10,10,10,0.8) 75%, rgba(10,10,10,0.97) 100%);
  }
  .hero-content {
    padding: 0 1.2rem;
    padding-top: 70px;
    justify-content: flex-end;
    padding-bottom: 1.5rem;
  }
  .hero-title {
    font-size: clamp(2.8rem, 13vw, 4.2rem);
    line-height: 0.92;
    letter-spacing: 0.03em;
  }
  .hero-desc {
    font-size: 0.82rem;
    max-width: 100%;
    margin-top: 1rem;
    margin-bottom: 1.2rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.6;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.7rem;
    width: 100%;
    margin-top: 0;
  }
  .hero-actions .btn-primary,
  .hero-actions .btn-outline {
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: 0.85rem 1rem;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
  }
  .hero-scroll { display: none; }
  .hero-indicators {
    right: 1rem;
    bottom: 1rem;
  }
  .hero-nav-arrows { display: none; }

  /* Hero stats — gérés dans mobile.css */

  /* Intro */
  #intro {
    grid-template-columns: 1fr;
    padding: 3rem 1.2rem;
    gap: 2rem;
  }
  .intro-quote { font-size: 1.1rem; }
  .intro-body { font-size: 0.8rem; }
  .intro-visual-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 170px 140px;
    gap: 6px;
  }
  .intro-visual-img:first-child { grid-row: span 2; }

  /* Styles */
  #styles { padding: 3rem 0; }
  .styles-header { padding: 0 1.2rem; margin-bottom: 2rem; }
  .styles-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    padding: 0 1rem;
    max-width: 100%;
  }
  .style-card { aspect-ratio: 1 / 1; }
  .style-card-desc { display: none; }

  /* Featured */
  #featured-works { padding: 3rem 0; }
  .featured-header {
    padding: 0 1.2rem 1.5rem;
    flex-direction: column;
    gap: 0.8rem;
    align-items: flex-start;
  }
  .featured-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    padding: 0 1rem;
  }
  .featured-item.large {
    grid-column: 1 / -1;
    aspect-ratio: 16 / 9;
  }
  .featured-item { aspect-ratio: 1 / 1; }

  /* Sections générales */
  #process { padding: 3rem 1.2rem; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem; }

  #reviews { padding: 3rem 0; }
  .review-card { min-width: 260px; }

  #blog-preview { padding: 3rem 0; }
  .blog-preview-header {
    padding: 0 1.2rem 1.5rem;
    flex-direction: column;
    gap: 0.8rem;
    align-items: flex-start;
  }
  .blog-grid {
    grid-template-columns: 1fr;
    padding: 0 1.2rem;
    gap: 1rem;
  }
  .blog-grid .blog-card:first-child { grid-column: span 1; }

  #faq-preview { padding: 3rem 1.2rem; }
  .faq-inner { padding: 0; }

  #mini-cta { padding: 2rem 1.2rem; }
  .mini-cta-inner {
    grid-template-columns: 1fr;
    padding: 1.5rem 1.2rem;
    gap: 1.5rem;
    text-align: center;
  }
  .mini-cta-text h2 { font-size: 1.4rem; }
  .mini-cta-actions {
    flex-direction: column;
    align-items: center;
    gap: 0.7rem;
  }
  .mini-cta-actions a {
    width: 100%;
    max-width: 280px;
    text-align: center;
    justify-content: center;
  }
}

/* ── Ultra-mobile (≤420px) ── */
@media (max-width: 420px) {
  .hero-title {
    font-size: clamp(2.3rem, 15vw, 3rem);
    line-height: 0.9;
  }
  .styles-grid { grid-template-columns: 1fr !important; }
  .featured-grid { grid-template-columns: 1fr !important; }
  .featured-item.large { grid-column: span 1 !important; }
  .process-steps { grid-template-columns: 1fr !important; }
}
