/* ==========================================================================
   Imprimerie Fertard — Premium Editorial Printing House
   Aesthetic: Industrial heritage meets modern editorial luxury
   CMYK-accented, bento grid, paper texture, scroll-driven
   ========================================================================== */

/* ---------- Custom Properties ---------- */
:root {
  --navy: #0f1b2d;
  --navy-deep: #080e1a;
  --navy-mid: #162340;
  --gold: #c8a55a;
  --gold-light: #dfc07a;
  --gold-muted: rgba(200, 165, 90, 0.35);
  --cream: #f5f0e8;
  --cream-light: #faf7f2;
  --cream-dark: #e8e0d0;
  --paper: #f8f5ef;
  --ink: #1a1a1a;
  --ink-soft: #4a4a4a;
  --text-muted: #6b6b6b;
  --text-on-dark: #c8c2b4;

  --cyan: #00a0d2;
  --magenta: #e4007c;
  --yellow: #ffed00;

  --ff-display: 'Playfair Display', 'Georgia', serif;
  --ff-body: 'DM Sans', 'Helvetica Neue', sans-serif;

  --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);

  --container: 1280px;
  --gutter: 32px;
  --radius: 6px;
  --radius-lg: 12px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--ff-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream-light);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; }

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

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ---------- Paper Grain Texture (reusable) ---------- */
.grain::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px;
  pointer-events: none;
  z-index: 1;
}

/* ---------- Section Intro ---------- */
.section-intro {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}

.section-intro__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.section-intro__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  display: inline-block;
}

.section-intro__dot--gold { background: var(--gold); }

.section-intro__title {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 20px;
}

/* Use standard font for ampersands to avoid Playfair's ornate & */
.amp {
  font-family: var(--ff-body);
  font-style: normal;
}

.section-intro--light .section-intro__title {
  color: var(--cream);
}

.section-intro--light .section-intro__label {
  color: var(--gold-light);
}

.section-intro__text {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  font-family: var(--ff-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.4s var(--ease-expo);
  position: relative;
  overflow: hidden;
}

.btn--gold {
  background: var(--gold);
  color: var(--navy-deep);
}

.btn--gold:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(200, 165, 90, 0.35);
}

.btn--ghost {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(255,255,255,0.25);
}

.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
}

.btn--full {
  width: 100%;
  padding: 18px 40px;
  font-size: 0.85rem;
}

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.4s ease;
}

.nav--scrolled {
  background: rgba(8, 14, 26, 0.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 10px 0;
  box-shadow: 0 1px 0 rgba(200,165,90,0.08);
}

.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1001;
}

.nav__logo-img {
  height: 42px;
  width: auto;
  transition: transform 0.3s ease;
}

.nav__logo:hover .nav__logo-img {
  transform: scale(1.05);
}

.nav__logo-text {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  font-weight: 500;
  font-style: italic;
  color: var(--cream);
  letter-spacing: -0.02em;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav__links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-on-dark);
  transition: color 0.3s ease;
  position: relative;
}

.nav__links a:not(.nav__cta)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width 0.4s var(--ease-expo);
}

.nav__links a:not(.nav__cta):hover { color: var(--gold); }
.nav__links a:not(.nav__cta):hover::after { width: 100%; }

.nav__cta {
  background: var(--gold);
  color: var(--navy-deep) !important;
  padding: 10px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  transition: all 0.3s ease;
}

.nav__cta:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

/* Mobile Toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.nav__toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--cream);
  transition: transform 0.3s ease, opacity 0.3s ease;
  border-radius: 1px;
}

.nav__toggle--open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__toggle--open span:nth-child(2) { opacity: 0; }
.nav__toggle--open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ========================================================================== */
/* HERO                                                                       */
/* ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
}

.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  transition: transform 8s ease;
}

.hero--loaded .hero__bg-img {
  transform: scale(1);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(8,14,26,0.88) 0%,
    rgba(15,27,45,0.75) 40%,
    rgba(22,35,64,0.65) 100%
  );
}

.hero__grain {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 140px var(--gutter) 100px;
}

/* CMYK bar */
.hero__cmyk-bar {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 40px;
}

.hero__cmyk-bar span {
  width: 32px;
  height: 4px;
  border-radius: 2px;
  opacity: 0.7;
}

.hero__badge {
  display: inline-block;
  font-family: var(--ff-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-muted);
  padding: 8px 28px;
  border-radius: 100px;
  margin-bottom: 36px;
}

.hero__title {
  margin-bottom: 28px;
}

.hero__title-sub {
  display: block;
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--cream);
  letter-spacing: 0.05em;
  line-height: 1.2;
}

.hero__title-main {
  display: block;
  font-family: var(--ff-display);
  font-weight: 800;
  font-style: italic;
  font-size: clamp(3.5rem, 10vw, 8.5rem);
  color: var(--gold);
  letter-spacing: -0.02em;
  line-height: 0.95;
}

.hero__subtitle {
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  font-weight: 300;
  color: var(--text-on-dark);
  line-height: 1.9;
  margin-bottom: 48px;
  letter-spacing: 0.02em;
}

.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Scroll hint */
.hero__scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--text-on-dark);
  opacity: 0;
  animation: scrollHintFadeIn 1s ease 2s forwards;
}

@keyframes scrollHintFadeIn {
  to { opacity: 0.5; }
}

.hero__scroll-hint span {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 500;
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.3; transform: scaleY(0.6); transform-origin: top; }
}

/* ========================================================================== */
/* SAVOIR-FAIRE — BENTO GRID                                                  */
/* ========================================================================== */
.savoir-faire {
  padding: 100px 0 0;
  background: var(--cream-light);
}

/* Bento Grid */
.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(180px, auto);
  gap: 16px;
}

.bento__card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

/* Text cards */
.bento__card--text {
  background: var(--navy);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bento__num {
  font-family: var(--ff-display);
  font-size: 5rem;
  font-weight: 800;
  color: rgba(200,165,90,0.08);
  position: absolute;
  top: 16px;
  right: 24px;
  line-height: 1;
}

.bento__title {
  font-family: var(--ff-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 12px;
}

.bento__desc {
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--text-on-dark);
  line-height: 1.7;
  margin-bottom: 20px;
}

.bento__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.bento__tags li {
  font-family: var(--ff-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(200,165,90,0.25);
  padding: 5px 14px;
  border-radius: 100px;
  transition: all 0.3s ease;
}

.bento__tags li:hover {
  background: rgba(200,165,90,0.12);
  border-color: var(--gold);
}

/* Image cards */
.bento__card--img {
  position: relative;
}

.bento__card--img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-expo);
}

.bento__card--img:hover img {
  transform: scale(1.08);
}

/* Bento grid placement — desktop */
.bento__card--creation       { grid-column: 1 / 6;  grid-row: 1 / 3; }
.bento__card--creation-img   { grid-column: 6 / 10; grid-row: 1 / 3; }
.bento__card--creation-sm    { grid-column: 10 / 13; grid-row: 1 / 3; }

.bento__card--impression-img { grid-column: 1 / 5;  grid-row: 3 / 5; }
.bento__card--impression     { grid-column: 5 / 10; grid-row: 3 / 5; }
.bento__card--impression-sm  { grid-column: 10 / 13; grid-row: 3 / 5; }

.bento__card--finition       { grid-column: 1 / 6;  grid-row: 5 / 7; }
.bento__card--finition-img   { grid-column: 6 / 10; grid-row: 5 / 7; }
.bento__card--finition-sm    { grid-column: 10 / 13; grid-row: 5 / 7; }
.bento__card--finition-sm img { object-fit: contain; object-position: center; background: var(--navy-deep); }

/* ========================================================================== */
/* PROCESS BAR                                                                */
/* ========================================================================== */
.process {
  padding: 0 0 40px;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.process__inner {
  padding: 40px 36px;
}

.process__title {
  font-family: var(--ff-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  margin-bottom: 28px;
}

.process__steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.process__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 8px 20px;
  transition: transform 0.3s ease;
}

.process__step:hover { transform: translateY(-4px); }

.process__icon {
  width: 36px;
  height: 36px;
  color: var(--navy);
  transition: color 0.3s ease;
}

.process__icon svg {
  width: 100%;
  height: 100%;
}

.process__step:hover .process__icon { color: var(--gold); }

.process__step span {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  white-space: nowrap;
}

.process__connector {
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--navy), transparent);
  flex-shrink: 0;
}

/* ========================================================================== */
/* GALLERY BENTO                                                              */
/* ========================================================================== */
.galerie {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(160deg, #0d1220 0%, #1e2a42 100%);
}

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

.gallery-grid__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
}

.gallery-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-expo), filter 0.4s ease;
}

.gallery-grid__item:hover img {
  transform: scale(1.1);
  filter: brightness(0.7);
}

.gallery-grid__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-grid__item:hover .gallery-grid__overlay {
  opacity: 1;
}

.gallery-grid__overlay span {
  font-family: var(--ff-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--cream);
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.gallery-grid__item--wide {
  grid-column: span 2;
}


/* ========================================================================== */
/* PRODUITS                                                                   */
/* ========================================================================== */
.produits {
  padding: 100px 0;
  background: var(--cream-light);
}

.produits__tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 56px;
}

.produits__tab {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 2px solid var(--cream-dark);
  background: transparent;
  color: var(--ink-soft);
  cursor: pointer;
  border-radius: var(--radius);
  transition: all 0.35s ease;
}

.produits__tab svg {
  width: 18px;
  height: 18px;
}

.produits__tab--active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--cream);
}

.produits__tab:hover:not(.produits__tab--active) {
  border-color: var(--gold);
  color: var(--navy);
}

.produits__panel { display: none; }
.produits__panel--active {
  display: block;
  animation: fadeSlide 0.5s var(--ease-expo);
}

@keyframes fadeSlide {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.produits__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
}

.produits__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.produits__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 380px;
  transition: transform 0.7s var(--ease-expo);
}

.produits__img:hover img {
  transform: scale(1.05);
}

.produits__cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.produit-card {
  background: white;
  padding: 28px 32px;
  border-radius: var(--radius);
  border: 1px solid rgba(0,0,0,0.04);
  position: relative;
  padding-left: 40px;
  transition: transform 0.4s var(--ease-expo), box-shadow 0.4s ease;
}

.produit-card:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 32px rgba(15,27,45,0.06);
}

.produit-card__accent {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  border-radius: var(--radius) 0 0 var(--radius);
}

.produit-card h4 {
  font-family: var(--ff-body);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}

.produit-card p {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ========================================================================== */
/* &Agrave; PROPOS                                                                   */
/* ========================================================================== */
.apropos {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  background: linear-gradient(160deg, #0d1220 0%, #1e2a42 100%);
}

.apropos__content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.apropos__text p {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--text-on-dark);
  line-height: 1.85;
  margin-bottom: 16px;
}

.apropos__text strong {
  font-weight: 600;
  color: var(--cream);
}

.apropos__stats {
  display: flex;
  gap: 48px;
  margin-top: 56px;
  padding-top: 48px;
  border-top: 1px solid rgba(200,165,90,0.15);
  flex-wrap: wrap;
}

.apropos__stat-number {
  display: block;
  font-family: var(--ff-display);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.apropos__stat-plus {
  font-size: 2rem;
  font-weight: 400;
}

.apropos__stat-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-on-dark);
  opacity: 0.7;
}

/* Photo collage */
.apropos__photos {
  display: flex;
  gap: 16px;
  margin-top: 56px;
}

.apropos__photo {
  border-radius: var(--radius);
  width: 33.333%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.5s var(--ease-expo), filter 0.3s ease;
}

.apropos__photo:hover {
  transform: translateY(-8px) scale(1.02);
  filter: brightness(1.1);
}

.apropos__photo--2 {
  margin-top: 24px;
}

/* ---------- Journal Clins d'Oeil (in À propos) ---------- */
.apropos__journal {
  margin-top: 56px;
  padding-top: 48px;
  border-top: 1px solid rgba(200,165,90,0.12);
}

.apropos__journal-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background: rgba(200,165,90,0.06);
  border: 1px solid rgba(200,165,90,0.15);
  border-radius: var(--radius-lg);
  padding: 32px 40px;
}

.apropos__journal-img {
  width: 140px;
  height: auto;
  flex-shrink: 0;
  border-radius: var(--radius);
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
}

.apropos__journal-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.apropos__journal-text h3 {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  font-weight: 700;
  font-style: italic;
  color: var(--cream);
  margin-bottom: 8px;
}

.apropos__journal-text p {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text-on-dark);
  line-height: 1.6;
  margin-bottom: 0;
}

.apropos__journal-text strong {
  color: var(--cream);
  font-weight: 600;
}

.btn--journal {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-color: var(--gold-muted);
  color: var(--gold);
}

.btn--journal:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy-deep);
}

/* ========================================================================== */
/* MODAL — Journal Clins d'Oeil                                               */
/* ========================================================================== */
.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.modal--open {
  opacity: 1;
  pointer-events: all;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8,14,26,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.modal__container {
  position: relative;
  background: var(--cream-light);
  border-radius: var(--radius-lg);
  max-width: 680px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  transform: translateY(24px) scale(0.97);
  transition: transform 0.5s var(--ease-expo);
  box-shadow: 0 32px 80px rgba(0,0,0,0.4);
}

.modal--open .modal__container {
  transform: translateY(0) scale(1);
}

.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  background: white;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.3s ease;
}

.modal__close svg {
  width: 18px;
  height: 18px;
  color: var(--ink);
}

.modal__close:hover {
  background: var(--navy);
  border-color: var(--navy);
}

.modal__close:hover svg {
  color: var(--cream);
}

.modal__content {
  padding: 0;
}

.modal__header {
  background: var(--navy);
  padding: 48px 48px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.modal__header::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px;
  pointer-events: none;
}

.modal__cmyk {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.modal__cmyk span {
  width: 24px;
  height: 3px;
  border-radius: 2px;
  opacity: 0.6;
}

.modal__journal-img {
  max-width: 260px;
  height: auto;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.3));
}

.modal__badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.modal__header h2 {
  font-family: var(--ff-display);
  font-size: 2.6rem;
  font-weight: 800;
  font-style: italic;
  color: var(--cream);
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.modal__subtitle {
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-on-dark);
  position: relative;
  z-index: 1;
}

.modal__stats {
  display: flex;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.modal__stat {
  flex: 1;
  text-align: center;
  padding: 28px 16px;
  border-right: 1px solid rgba(0,0,0,0.06);
}

.modal__stat:last-child {
  border-right: none;
}

.modal__stat-number {
  display: block;
  font-family: var(--ff-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 6px;
}

.modal__stat-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.modal__body {
  padding: 40px 48px 48px;
}

.modal__body h3 {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
  margin-top: 28px;
}

.modal__body h3:first-child {
  margin-top: 0;
}

.modal__body p {
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--ink-soft);
  line-height: 1.8;
  margin-bottom: 8px;
}

.modal__body ul {
  padding-left: 0;
  margin-bottom: 8px;
}

.modal__body li {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--ink-soft);
  line-height: 1.7;
  padding: 5px 0 5px 22px;
  position: relative;
}

.modal__body li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 8px;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
}

.modal__body strong {
  font-weight: 600;
  color: var(--navy);
}

.modal__cta {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(0,0,0,0.06);
  text-align: center;
}

.modal__cta p {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 16px;
}

/* Modal responsive */
@media (max-width: 768px) {
  .modal__header {
    padding: 36px 24px 32px;
  }

  .modal__header h2 {
    font-size: 2rem;
  }

  .modal__body {
    padding: 28px 24px 36px;
  }

  .modal__stats {
    flex-direction: column;
  }

  .modal__stat {
    border-right: none;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    padding: 20px 16px;
  }

  .modal__stat:last-child {
    border-bottom: none;
  }

  .apropos__journal-inner {
    flex-direction: column;
    text-align: center;
    padding: 24px;
  }

  .apropos__journal-img {
    width: 120px;
  }

  .modal__journal-img {
    max-width: 180px;
  }
}

/* ========================================================================== */
/* DEVIS / CONTACT                                                            */
/* ========================================================================== */
.devis {
  padding: 100px 0;
  background: white;
}

.devis__layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
}

/* Form styling */
.devis__form {
  background: var(--cream-light);
  padding: 48px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0,0,0,0.04);
}

.form-section {
  margin-bottom: 40px;
}

.form-section:last-of-type {
  margin-bottom: 32px;
}

.form-section__title {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold-muted);
}

.form-section__hint {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.form-row {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}

.form-row--2 > * { flex: 1; }

.form-field {
  margin-bottom: 16px;
}

.form-row .form-field {
  margin-bottom: 0;
}

.form-field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 8px;
}

.required { color: #c0392b; }

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--ff-body);
  font-size: 0.92rem;
  color: var(--ink);
  background: white;
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  outline: none;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,165,90,0.12);
}

.form-field textarea {
  resize: vertical;
  min-height: 100px;
}

.form-field select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' fill='none' stroke='%236b6b6b' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

/* Product checkboxes */
.form-products {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-product {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: white;
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.3s ease;
}

.form-product:hover {
  border-color: var(--gold-muted);
}

.form-product input[type="checkbox"] {
  display: none;
}

.form-product__check {
  width: 20px;
  height: 20px;
  border: 2px solid var(--cream-dark);
  border-radius: 4px;
  flex-shrink: 0;
  position: relative;
  transition: all 0.2s ease;
}

.form-product input[type="checkbox"]:checked ~ .form-product__check {
  background: var(--gold);
  border-color: var(--gold);
}

.form-product input[type="checkbox"]:checked ~ .form-product__check::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 2px;
  width: 6px;
  height: 10px;
  border: solid var(--navy-deep);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.form-product__name {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink);
  flex: 1;
}

.form-product__qty {
  width: 70px !important;
  padding: 8px 10px !important;
  font-size: 0.82rem !important;
  text-align: center;
  border: 1.5px solid var(--cream-dark) !important;
  border-radius: var(--radius) !important;
  transition: all 0.3s ease;
}

.form-product__qty:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.form-product__qty:not(:disabled) {
  opacity: 1;
  border-color: var(--gold) !important;
}

.form-product input[type="checkbox"]:checked ~ .form-product__name {
  color: var(--navy);
  font-weight: 600;
}

/* Radio groups */
.form-radios-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.form-radio-group {
  border: none;
  padding: 0;
}

.form-radio-group legend {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 12px;
  display: block;
}

.form-radio {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  padding: 6px 0;
  font-size: 0.88rem;
  color: var(--ink);
  transition: color 0.2s ease;
}

.form-radio input[type="radio"] {
  display: none;
}

.form-radio__mark {
  width: 18px;
  height: 18px;
  border: 2px solid var(--cream-dark);
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  transition: border-color 0.2s ease;
}

.form-radio input[type="radio"]:checked ~ .form-radio__mark {
  border-color: var(--gold);
}

.form-radio input[type="radio"]:checked ~ .form-radio__mark::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.form-radio:hover { color: var(--navy); }
.form-radio:hover .form-radio__mark { border-color: var(--gold-muted); }

/* Sidebar */
.devis__sidebar {
  position: sticky;
  top: 100px;
}

.devis__contact-card {
  background: var(--navy);
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  margin-bottom: 16px;
}

.devis__logo {
  height: 56px;
  width: auto;
  margin-bottom: 24px;
}

.devis__contact-card h3 {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 28px;
}

.devis__info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.devis__info-item {
  display: flex;
  gap: 14px;
}

.devis__info-item svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 3px;
}

.devis__info-item strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 2px;
}

.devis__info-item span,
.devis__info-item a {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--text-on-dark);
  line-height: 1.5;
  transition: color 0.3s ease;
}

.devis__info-item a:hover {
  color: var(--gold);
}

.devis__divider {
  height: 1px;
  background: rgba(200,165,90,0.12);
}

.devis__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  height: 280px;
}

.devis__map iframe {
  width: 100%;
  height: 100%;
  display: block;
  filter: saturate(0.6) contrast(1.1);
  transition: filter 0.4s ease;
}

.devis__map:hover iframe {
  filter: saturate(1) contrast(1);
}

.devis__map-link {
  position: absolute;
  bottom: 12px;
  left: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--navy);
  color: var(--cream);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all 0.3s ease;
  text-decoration: none;
}

.devis__map-link svg {
  width: 14px;
  height: 14px;
}

.devis__map-link:hover {
  background: var(--gold);
  color: var(--navy-deep);
}

/* ========================================================================== */
/* FOOTER                                                                     */
/* ========================================================================== */
.footer {
  background: var(--navy-deep);
  padding: 72px 0 0;
  color: var(--text-on-dark);
}

.footer__top {
  display: flex;
  justify-content: space-between;
  gap: 80px;
  padding-bottom: 48px;
}

.footer__brand { max-width: 380px; }

.footer__logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.footer__logo-img {
  height: 48px;
  width: auto;
}

.footer__logo-name {
  display: block;
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--cream);
}

.footer__logo-since {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-muted);
}

.footer__tagline {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.7;
  opacity: 0.65;
}

.footer__links {
  display: flex;
  gap: 64px;
}

.footer__col h5 {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.footer__col li { margin-bottom: 10px; }

.footer__col a {
  font-size: 0.85rem;
  font-weight: 300;
  opacity: 0.65;
  transition: opacity 0.3s ease, color 0.3s ease;
}

.footer__col a:hover {
  opacity: 1;
  color: var(--gold-light);
}

/* CMYK bar in footer */
.footer__cmyk {
  display: flex;
  gap: 0;
  height: 3px;
  margin: 0 -32px;
  overflow: hidden;
}

.footer__cmyk span {
  flex: 1;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  padding: 24px 0;
  font-size: 0.78rem;
  font-weight: 300;
  opacity: 0.55;
  margin-top: 24px;
}

/* ---------- Form Notification ---------- */
.form-notification {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 2000;
  max-width: 420px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s var(--ease-expo), transform 0.4s var(--ease-expo);
  pointer-events: none;
}

.form-notification--visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.form-notification__inner {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--navy);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--gold);
}

.form-notification__inner svg {
  width: 28px;
  height: 28px;
  color: var(--gold);
  flex-shrink: 0;
}

.form-notification__inner strong {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 2px;
}

.form-notification__inner p {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--text-on-dark);
  margin: 0;
}

.form-notification__close {
  margin-left: auto;
  background: none;
  border: none;
  color: var(--text-on-dark);
  font-size: 1.4rem;
  cursor: pointer;
  padding: 4px 8px;
  opacity: 0.5;
  transition: opacity 0.2s ease;
  flex-shrink: 0;
}

.form-notification__close:hover {
  opacity: 1;
}

/* ========================================================================== */
/* SCROLL REVEAL                                                              */
/* ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease-expo), transform 0.9s var(--ease-expo);
}

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

/* Stagger delays for bento cards */
.bento .reveal:nth-child(2)  { transition-delay: 0.1s; }
.bento .reveal:nth-child(3)  { transition-delay: 0.2s; }
.bento .reveal:nth-child(4)  { transition-delay: 0.08s; }
.bento .reveal:nth-child(5)  { transition-delay: 0.16s; }
.bento .reveal:nth-child(6)  { transition-delay: 0.24s; }
.bento .reveal:nth-child(7)  { transition-delay: 0.06s; }
.bento .reveal:nth-child(8)  { transition-delay: 0.14s; }
.bento .reveal:nth-child(9)  { transition-delay: 0.22s; }

.gallery-grid .reveal:nth-child(2) { transition-delay: 0.06s; }
.gallery-grid .reveal:nth-child(3) { transition-delay: 0.12s; }
.gallery-grid .reveal:nth-child(4) { transition-delay: 0.18s; }
.gallery-grid .reveal:nth-child(5) { transition-delay: 0.08s; }
.gallery-grid .reveal:nth-child(6) { transition-delay: 0.14s; }
.gallery-grid .reveal:nth-child(7) { transition-delay: 0.20s; }
.gallery-grid .reveal:nth-child(8) { transition-delay: 0.10s; }
.gallery-grid .reveal:nth-child(9) { transition-delay: 0.16s; }

.hero__content .reveal:nth-child(1) { transition-delay: 0.3s; }
.hero__content .reveal:nth-child(2) { transition-delay: 0.5s; }
.hero__content .reveal:nth-child(3) { transition-delay: 0.7s; }
.hero__content .reveal:nth-child(4) { transition-delay: 0.9s; }
.hero__content .reveal:nth-child(5) { transition-delay: 1.1s; }

.produits__cards .reveal:nth-child(2) { transition-delay: 0.1s; }
.produits__cards .reveal:nth-child(3) { transition-delay: 0.2s; }
.produits__cards .reveal:nth-child(4) { transition-delay: 0.3s; }

.apropos__stats .apropos__stat:nth-child(2) { transition-delay: 0.1s; }
.apropos__stats .apropos__stat:nth-child(3) { transition-delay: 0.2s; }
.apropos__stats .apropos__stat:nth-child(4) { transition-delay: 0.3s; }

/* ========================================================================== */
/* RESPONSIVE                                                                 */
/* ========================================================================== */
@media (max-width: 1024px) {
  .bento {
    grid-template-columns: repeat(6, 1fr);
  }

  .bento__card--creation       { grid-column: 1 / 4; grid-row: 1 / 3; }
  .bento__card--creation-img   { grid-column: 4 / 7; grid-row: 1 / 3; }
  .bento__card--creation-sm    { display: none; }

  .bento__card--impression-img { grid-column: 1 / 4; grid-row: 3 / 5; }
  .bento__card--impression     { grid-column: 4 / 7; grid-row: 3 / 5; }
  .bento__card--impression-sm  { display: none; }

  .bento__card--finition       { grid-column: 1 / 4; grid-row: 5 / 7; }
  .bento__card--finition-img   { grid-column: 4 / 7; grid-row: 5 / 7; }
  .bento__card--finition-sm    { display: none; }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 200px;
  }

  .produits__split {
    grid-template-columns: 1fr;
  }

  .produits__img img {
    min-height: 260px;
  }

  .devis__layout {
    grid-template-columns: 1fr;
  }

  .devis__sidebar {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .footer__top {
    flex-direction: column;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  :root {
    --gutter: 20px;
  }

  .nav__toggle { display: flex; }

  /* When menu is open, the nav becomes the fullscreen overlay itself */
  .nav.nav--menu-open {
    position: fixed;
    inset: 0;
    background: rgba(8,14,26,0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    z-index: 1000;
  }

  .nav.nav--menu-open .nav__inner {
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding-top: 0;
  }

  .nav.nav--menu-open .nav__logo {
    position: absolute;
    top: 16px;
    left: var(--gutter);
  }

  .nav.nav--menu-open .nav__toggle {
    position: absolute;
    top: 16px;
    right: var(--gutter);
  }

  .nav__links {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
  }

  .nav__links--open {
    display: flex;
  }

  .nav__links a {
    font-size: 1rem;
    letter-spacing: 0.15em;
  }

  .nav__cta {
    margin-top: 12px;
  }

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

  .btn { width: 100%; max-width: 300px; }

  .bento {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .bento__card--creation,
  .bento__card--creation-img,
  .bento__card--impression-img,
  .bento__card--impression,
  .bento__card--finition,
  .bento__card--finition-img {
    grid-column: 1 / -1 !important;
    grid-row: auto !important;
  }

  /* Force text card before image for each service */
  .bento__card--creation       { order: 1; }
  .bento__card--creation-img   { order: 2; }
  .bento__card--impression     { order: 3; }
  .bento__card--impression-img { order: 4; }
  .bento__card--finition       { order: 5; }
  .bento__card--finition-img   { order: 6; }

  .bento__card--creation-sm,
  .bento__card--impression-sm,
  .bento__card--finition-sm {
    display: none;
  }

  .bento__card--img { min-height: 220px; }

  /* On mobile, image goes below cards */
  .produits__img { order: 2; }
  .produits__cards { order: 1; }
  .produits__img img { min-height: 200px; max-height: 250px; }

  .process__inner {
    padding: 28px 24px;
  }

  .process__title {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }

  .process__steps {
    flex-direction: column;
  }

  .process__connector {
    width: 1px;
    height: 24px;
    background: linear-gradient(to bottom, transparent, var(--navy), transparent);
  }

  .process__step {
    flex-direction: row;
    gap: 14px;
    padding: 6px 0;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 180px;
  }

  .gallery-grid__item--wide { grid-column: span 2; }

  .produits__tabs {
    flex-direction: column;
    align-items: stretch;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }

  .form-products {
    grid-template-columns: 1fr;
  }

  .form-radios-grid {
    grid-template-columns: 1fr;
  }

  .form-row { flex-direction: column; }

  .devis__form {
    padding: 28px 20px;
  }

  .devis__sidebar {
    grid-template-columns: 1fr;
  }

  .apropos__stats {
    gap: 32px;
  }

  .apropos__photos {
    flex-direction: column;
  }

  .apropos__photo {
    width: 100%;
    height: 200px;
  }

  .apropos__photo--2 { margin-top: 0; }

  .savoir-faire {
    padding: 56px 0 0;
  }

  .galerie,
  .produits,
  .devis {
    padding: 56px 0;
  }

  .apropos {
    padding: 56px 0;
  }

  .process {
    padding: 32px 0;
  }

  .section-intro {
    margin-bottom: 32px;
  }

  .footer__links { gap: 40px; }

  .footer__bottom {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }

  .footer__cmyk { margin: 0; }
}

@media (max-width: 480px) {
  .hero__title-main {
    font-size: 3.2rem;
  }

  .hero__badge {
    padding: 6px 20px;
    font-size: 0.65rem;
  }

  .apropos__stat-number {
    font-size: 2.5rem;
  }

  .bento__card--text {
    padding: 28px 24px;
  }

  .bento__title {
    font-size: 1.6rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 150px;
  }
}
