/*
Theme Name:  IAG Visuals
Description: Thème custom minimal pour iag_visuals — photographe & vidéaste automobile, Lausanne
Author:      IAG Visuals
Version:     1.0
Text Domain: iag
*/

/* ============================================================
   TOKENS
   ============================================================ */
:root {
  --blue:      #1E3A8A;
  --blue-h:    #162D6E;
  --bg:        #FAFAF9;
  --bg-alt:    #F3F2EF;
  --white:     #FFFFFF;
  --text:      #0C0A09;
  --muted:     #6B6A68;
  --border:    #E5E3DF;
  --nav-h:     72px;
  --max:       1280px;
  --pad:       clamp(1.25rem, 5vw, 3rem);
  --ease:      cubic-bezier(0.25, 1, 0.5, 1);
}

/* ============================================================
   SELECTION COLOR
   ============================================================ */
::selection        { background: rgba(30, 58, 138, 0.18); color: var(--text); }
::-moz-selection   { background: rgba(30, 58, 138, 0.18); color: var(--text); }

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, video { display: block; max-width: 100%; height: auto; }
ul, ol { list-style: none; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; background: none; border: none; font: inherit; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 400;
  line-height: 1.15;
  color: var(--text);
}

h1 { font-size: clamp(2.4rem, 5vw, 4.5rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.75rem); }
h4 { font-size: 1.1rem; }

p {
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  color: var(--muted);
  max-width: 62ch;
  line-height: 1.75;
}

em { font-style: italic; }

.iag-eyebrow {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue);
  display: block;
  margin-bottom: 1rem;
}

/* ============================================================
   LAYOUT
   ============================================================ */
.iag-wrap {
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--pad);
}

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

/* ============================================================
   BUTTONS
   ============================================================ */
.iag-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  height: 48px;
  padding: 0 1.75rem;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 200ms var(--ease), color 200ms var(--ease), border-color 200ms var(--ease), transform 150ms var(--ease);
}

.iag-btn:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}

/* Primary — blue fill */
.iag-btn--primary {
  background: var(--blue);
  color: var(--white);
  border: 1.5px solid var(--blue);
}
.iag-btn--primary:hover { background: var(--blue-h); border-color: var(--blue-h); }

/* Ghost — white text on dark bg */
.iag-btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.45);
}
.iag-btn--ghost:hover { border-color: rgba(255,255,255,0.9); background: rgba(255,255,255,0.08); }

/* Outline — dark text on light bg */
.iag-btn--outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}
.iag-btn--outline:hover { border-color: var(--text); }

/* Nav pill — blue outlined */
.iag-btn--nav {
  height: 40px;
  padding: 0 1.25rem;
  background: transparent;
  color: var(--blue);
  border: 1.5px solid var(--blue);
  font-size: 0.78rem;
  font-weight: 500;
  transition: background 180ms, color 180ms;
}
.iag-btn--nav:hover { background: var(--blue); color: var(--white); }

/* Arrow icon inside buttons */
.iag-btn svg { flex-shrink: 0; transition: transform 200ms var(--ease); }
.iag-btn:hover svg { transform: translateX(3px); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.iag-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 900;
  display: flex;
  align-items: center;
  transition: background 300ms, backdrop-filter 300ms, border-color 300ms;
}

.iag-nav.is-scrolled {
  background: rgba(250, 250, 249, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

/* Transparent on hero — links white */
.iag-nav:not(.is-scrolled) .iag-nav__link { color: rgba(255,255,255,0.82); }
.iag-nav:not(.is-scrolled) .iag-nav__link:hover,
.iag-nav:not(.is-scrolled) .iag-nav__link.is-active { color: #fff; }
.iag-nav:not(.is-scrolled) .iag-nav__logo { color: #fff; }
.iag-nav:not(.is-scrolled) .iag-nav__logo img { filter: brightness(10); }
.iag-nav:not(.is-scrolled) .iag-btn--nav { color: #fff; border-color: rgba(255,255,255,0.55); }
.iag-nav:not(.is-scrolled) .iag-btn--nav:hover { background: rgba(255,255,255,0.12); color: #fff; border-color: rgba(255,255,255,0.9); }
.iag-nav:not(.is-scrolled) .iag-nav__burger span { background: #fff; }

.iag-nav__inner {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--pad);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
}

/* Logo */
.iag-nav__logo {
  justify-self: start;
  display: flex;
  align-items: center;
  color: var(--text);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: opacity 150ms;
}
.iag-nav__logo:hover { opacity: 0.7; }
.iag-nav__logo img { height: 40px; width: auto; max-width: 160px; object-fit: contain; }

/* Center links */
.iag-nav__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.iag-nav__link {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--muted);
  position: relative;
  padding-bottom: 2px;
  transition: color 150ms;
}
.iag-nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1.5px;
  background: var(--blue);
  transition: width 250ms var(--ease);
}
.iag-nav__link:hover,
.iag-nav__link.is-active { color: var(--text); }
.iag-nav__link:hover::after,
.iag-nav__link.is-active::after { width: 100%; }

/* Right side */
.iag-nav__right {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Burger */
.iag-nav__burger {
  display: none;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.iag-nav__burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  transition: transform 250ms var(--ease), opacity 200ms;
}
.iag-nav__burger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.iag-nav__burger.is-open span:nth-child(2) { opacity: 0; }
.iag-nav__burger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu */
.iag-mobile-menu {
  display: none;
  position: fixed;
  inset: var(--nav-h) 0 0 0;
  background: var(--white);
  z-index: 850;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}
.iag-mobile-menu.is-open { display: flex; }
.iag-mobile-menu a {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 400;
  font-style: italic;
  color: var(--text);
  transition: color 150ms;
}
.iag-mobile-menu a:hover { color: var(--blue); }

/* ============================================================
   HERO
   ============================================================ */
.iag-hero {
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: 640px;
  overflow: hidden;
  background: #080706;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

/* ── Hero image fallback (ancien front-page.php) ── */
.iag-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.iag-hero__img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ── Hero Slider ── */
.iag-hero__slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.iag-hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  will-change: opacity;
}
.iag-hero__slide.is-active {
  opacity: 1;
}
.iag-hero__slide img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
@keyframes heroLoad {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ── Hero Dots ── */
.iag-hero__dots {
  position: absolute;
  bottom: clamp(2.5rem, 5vw, 4rem);
  right: var(--pad);
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.iag-hero__dots button {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  border: none;
  cursor: pointer;
  transition: background 300ms, transform 300ms;
  padding: 0;
}
.iag-hero__dots button.is-active {
  background: #fff;
  transform: scale(1.4);
}

/* Vignette — strong edges, keeps center readable */
.iag-hero__vignette {
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 180px rgba(0,0,0,0.7);
  z-index: 1;
  pointer-events: none;
}

/* Gradient bottom → dark */
.iag-hero__fade {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 55%;
  background: linear-gradient(to top, rgba(5,5,4,0.88) 0%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}

/* Content */
.iag-hero__content {
  position: relative;
  z-index: 3;
  padding: var(--pad);
  padding-bottom: clamp(10rem, 18vw, 16rem);
  max-width: var(--max);
  margin-inline: auto;
  width: 100%;
  animation: heroContent 1.2s var(--ease) 0.4s both;
}
@keyframes heroContent {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.iag-hero__label {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  display: block;
  margin-bottom: 1.25rem;
}

.iag-hero__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 400;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 2rem;
  max-width: 14ch;
}
.iag-hero__title em {
  font-style: italic;
  color: rgba(255,255,255,0.85);
}

.iag-hero__actions {
  display: flex;
  gap: 0.875rem;
  flex-wrap: wrap;
  align-items: center;
}

/* Scroll indicator */
.iag-hero__scroll {
  position: absolute;
  bottom: clamp(2.5rem, 5vw, 4rem);
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  pointer-events: none;
}
/* single scroll line — rendered via .iag-hero__scroll-line div, no ::after */
.iag-hero__scroll-line {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50%       { opacity: 0.35; transform: scaleY(0.6); }
}

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.iag-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.iag-reveal.is-visible { opacity: 1; transform: none; }
.iag-reveal[data-delay="1"] { transition-delay: 0.1s; }
.iag-reveal[data-delay="2"] { transition-delay: 0.22s; }
.iag-reveal[data-delay="3"] { transition-delay: 0.36s; }
.iag-reveal[data-delay="4"] { transition-delay: 0.52s; }
.iag-reveal[data-delay="5"] { transition-delay: 0.68s; }

/* ============================================================
   SECTION HEADER
   ============================================================ */
.iag-section-header {
  margin-bottom: clamp(3rem, 5vw, 4.5rem);
}
.iag-section-header h2 {
  margin-top: 0.75rem;
}
.iag-section-header p {
  margin-top: 1rem;
}

/* ============================================================
   SERVICES — HOMEPAGE
   ============================================================ */
.iag-services { background: var(--bg); }

.iag-svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--border);
  border: 1.5px solid var(--border);
}

.iag-svc-item {
  background: var(--white);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  cursor: default;
  transition: background 200ms;
}
.iag-svc-item:hover { background: var(--bg-alt); }

.iag-svc-item__num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 0.85rem;
  font-style: italic;
  color: var(--blue);
  opacity: 0.6;
}

.iag-svc-item h3 {
  font-size: 1.2rem;
  font-weight: 400;
}

.iag-svc-item p {
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 100%;
}

/* ============================================================
   SELECTED WORKS — HOMEPAGE
   ============================================================ */
.iag-works { background: var(--bg-alt); }

.iag-works__grid {
  display: grid;
  gap: 6px;
}

.iag-works__row-1 { grid-template-columns: 1fr; }
.iag-works__row-2 { grid-template-columns: 1fr 1fr; }
.iag-works__row-3 { grid-template-columns: 1fr; }

.iag-work {
  position: relative;
  display: block;
  overflow: hidden;
  background: #111;
  cursor: pointer;
}
.iag-work--landscape { aspect-ratio: 16/9; }
.iag-work--portrait  { aspect-ratio: 4/5; }
.iag-work--wide      { aspect-ratio: 21/9; }

.iag-work__img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease);
}
.iag-work:hover .iag-work__img { transform: scale(1.04); }

.iag-work__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.68) 0%, transparent 55%);
  transition: background 300ms;
}
.iag-work:hover .iag-work__overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.12) 55%);
}

.iag-work__info {
  position: absolute;
  bottom: 0; left: 0;
  padding: clamp(1.25rem, 3vw, 2rem);
  transform: translateY(6px);
  transition: transform 300ms var(--ease);
}
.iag-work:hover .iag-work__info { transform: none; }

.iag-work__cat {
  display: block;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.35rem;
}

.iag-work__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1rem, 2vw, 1.5rem);
  font-style: italic;
  color: #fff;
  line-height: 1.2;
}

.iag-works__cta {
  text-align: center;
  margin-top: 1.5rem;
}

/* ============================================================
   ABOUT STRIP — HOMEPAGE
   ============================================================ */
.iag-about-strip {
  background: var(--white);
  padding-block: clamp(5rem, 9vw, 8rem);
}

.iag-about-strip__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.iag-about-strip__img {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}
.iag-about-strip__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 600ms var(--ease);
}
.iag-about-strip:hover .iag-about-strip__img img { transform: scale(1.03); }

.iag-about-strip__text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.iag-about-strip__text h2 { margin-top: 0.5rem; }
.iag-about-strip__text p { max-width: 44ch; }

/* ============================================================
   PORTFOLIO PAGE
   ============================================================ */
.iag-portfolio { background: var(--bg); }

.iag-pf-hero {
  padding-top: calc(var(--nav-h) + clamp(3rem, 6vw, 5rem));
  padding-bottom: 0;
  background: var(--bg);
}

/* Filters */
.iag-pf-filters {
  display: flex;
  gap: 0;
  border-bottom: 1.5px solid var(--border);
  margin-bottom: clamp(2.5rem, 4vw, 4rem);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.iag-pf-filter {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--muted);
  padding: 0.875rem 1.5rem;
  border-bottom: 2px solid transparent;
  position: relative;
  bottom: -1.5px;
  white-space: nowrap;
  transition: color 150ms, border-color 150ms;
  cursor: pointer;
}
.iag-pf-filter:hover { color: var(--text); }
.iag-pf-filter.is-active { color: var(--blue); border-bottom-color: var(--blue); }

/* Grid — masonry columns */
.iag-pf-grid {
  columns: 3;
  column-gap: 8px;
}

.iag-pf-item {
  break-inside: avoid;
  position: relative;
  overflow: hidden;
  display: block;
  margin-bottom: 8px;
  cursor: pointer;
  background: #111;
}

.iag-pf-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 600ms var(--ease);
}
.iag-pf-item:hover img { transform: scale(1.04); }

.iag-pf-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
  transition: background 300ms;
}
.iag-pf-item:hover .iag-pf-item__overlay { background: rgba(0,0,0,0.55); }

.iag-pf-item__info {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 250ms, transform 250ms var(--ease);
}
.iag-pf-item:hover .iag-pf-item__info { opacity: 1; transform: none; }

.iag-pf-item__cat {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  display: block;
  margin-bottom: 0.25rem;
}

.iag-pf-item__name {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 1rem;
  color: #fff;
}

.iag-pf-item.is-hidden { display: none; }

/* Play icon for videos */
.iag-pf-item__play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  opacity: 0;
  transition: opacity 250ms, background 200ms;
}
.iag-pf-item[data-video]:hover .iag-pf-item__play { opacity: 1; background: rgba(30,58,138,0.7); }

/* Lightbox */
.iag-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.96);
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.iag-lightbox.is-open { display: flex; }
.iag-lightbox__img-wrap {
  position: relative;
  max-width: 90vw;
  max-height: 90svh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.iag-lightbox__img-wrap img {
  max-width: 90vw;
  max-height: 90svh;
  object-fit: contain;
}
.iag-lightbox__iframe-wrap {
  width: 85vw;
  max-width: 1100px;
  aspect-ratio: 16/9;
}
.iag-lightbox__iframe-wrap iframe {
  width: 100%; height: 100%;
  border: none;
}
.iag-lightbox__close {
  position: fixed;
  top: 1.5rem; right: 1.5rem;
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 1.5rem;
  transition: color 150ms;
  cursor: pointer;
}
.iag-lightbox__close:hover { color: #fff; }

/* ============================================================
   MATÉRIEL PAGE
   ============================================================ */
.iag-gear { background: var(--bg); }

.iag-gear-hero {
  padding-top: calc(var(--nav-h) + clamp(3rem, 6vw, 5rem));
  padding-bottom: clamp(3rem, 5vw, 4rem);
}

.iag-gear-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.iag-gear-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--white);
  overflow: hidden;
  transition: box-shadow 300ms var(--ease);
}
.iag-gear-card:hover { box-shadow: 0 8px 40px rgba(0,0,0,0.09); }

.iag-gear-card__img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg-alt);
}
.iag-gear-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 500ms var(--ease);
}
.iag-gear-card:hover .iag-gear-card__img img { transform: scale(1.04); }

.iag-gear-card__body {
  padding: 1.5rem 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.iag-gear-card__type {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  opacity: 0.7;
}

.iag-gear-card__name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--text);
}

.iag-gear-card__desc {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
  max-width: 100%;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.iag-contact { background: var(--bg); }

.iag-contact-hero {
  padding-top: calc(var(--nav-h) + clamp(3rem, 6vw, 5rem));
  padding-bottom: clamp(3rem, 5vw, 4rem);
}

.iag-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}

.iag-contact-bio { display: flex; flex-direction: column; gap: 1.5rem; }
.iag-contact-bio p { max-width: 38ch; }

.iag-contact-detail {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding-top: 1.5rem;
  border-top: 1.5px solid var(--border);
}
.iag-contact-detail__label {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  opacity: 0.7;
}
.iag-contact-detail__value {
  font-size: 0.92rem;
  color: var(--text);
}
.iag-contact-detail a { transition: color 150ms; }
.iag-contact-detail a:hover { color: var(--blue); }

/* Brevo form wrapper */
.iag-contact-form-wrap {
  background: var(--white);
  padding: 2.5rem;
  border: 1.5px solid var(--border);
}

/* ============================================================
   BLOG — ARCHIVE
   ============================================================ */
.iag-blog { background: var(--bg); }

.iag-blog-hero {
  padding-top: calc(var(--nav-h) + clamp(3rem, 6vw, 5rem));
  padding-bottom: clamp(2rem, 4vw, 3rem);
}

.iag-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.iag-post-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  cursor: pointer;
}

.iag-post-card__img {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--bg-alt);
  margin-bottom: 1.25rem;
}
.iag-post-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 500ms var(--ease);
}
.iag-post-card:hover .iag-post-card__img img { transform: scale(1.04); }

.iag-post-card__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.6rem;
}
.iag-post-card__cat {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
}
.iag-post-card__date {
  font-size: 0.75rem;
  color: var(--muted);
}
.iag-post-card__sep {
  width: 1px;
  height: 10px;
  background: var(--border);
  display: block;
}
.iag-post-card__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 400;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 0.6rem;
  transition: color 150ms;
}
.iag-post-card:hover .iag-post-card__title { color: var(--blue); }
.iag-post-card__excerpt {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.65;
  max-width: 100%;
}

.iag-pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 4rem;
}
.iag-pagination a,
.iag-pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  font-size: 0.82rem;
  font-weight: 500;
  border: 1.5px solid var(--border);
  transition: border-color 150ms, background 150ms, color 150ms;
  color: var(--muted);
}
.iag-pagination a:hover { border-color: var(--blue); color: var(--blue); }
.iag-pagination .current { background: var(--blue); border-color: var(--blue); color: #fff; }

/* ============================================================
   SINGLE POST
   ============================================================ */
.iag-single { background: var(--bg); }

.iag-single-hero {
  padding-top: calc(var(--nav-h) + clamp(3rem, 6vw, 5rem));
  padding-bottom: clamp(2rem, 4vw, 3rem);
}
.iag-single-hero__img {
  margin-top: 2.5rem;
  aspect-ratio: 21/9;
  overflow: hidden;
  background: var(--bg-alt);
}
.iag-single-hero__img img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.iag-article {
  max-width: 700px;
  margin-inline: auto;
  padding: clamp(3rem, 6vw, 5rem) var(--pad);
}
.iag-article p { margin-bottom: 1.5rem; color: var(--text); font-size: 1rem; line-height: 1.8; max-width: 100%; }
.iag-article h2 { margin: 2.5rem 0 1rem; }
.iag-article h3 { margin: 2rem 0 0.75rem; }
.iag-article img { width: 100%; margin: 2rem 0; }
.iag-article a { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }
.iag-article blockquote {
  border-left: 3px solid var(--blue);
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--muted);
}

/* ============================================================
   FOOTER
   ============================================================ */
.iag-footer { background: var(--text); padding-top: clamp(3.5rem, 7vw, 5.5rem); padding-bottom: 0; }
.iag-footer__grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-template-rows: auto auto;
  column-gap: clamp(2rem, 5vw, 5rem);
  row-gap: 0;
  align-items: start;
  padding-bottom: clamp(2.5rem, 4vw, 3.5rem);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
/* Ligne 1 */
.iag-footer__logo-cell                              { grid-column: 1; grid-row: 1; }
.iag-footer__grid > .iag-footer__col-title:nth-child(2) { grid-column: 2; grid-row: 1; }
.iag-footer__grid > .iag-footer__col-title:nth-child(3) { grid-column: 3; grid-row: 1; }
/* Ligne 2 */
.iag-footer__brand-body                             { grid-column: 1; grid-row: 2; }
.iag-footer__grid > nav                             { grid-column: 2; grid-row: 2; }
.iag-footer__info-list--right                       { grid-column: 3; grid-row: 2; }

.iag-footer__logo { display: block; }
.iag-footer__logo img { height: 240px; width: auto; }
.iag-footer__brand-body { padding-top: 0; }
.iag-footer__col-title {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  margin: 0 0 1.25rem 0;
  padding-top: 0.15rem; /* optical alignment with logo top */
}
.iag-footer__col-title--right { text-align: right; }
.iag-footer__tagline { font-size: 0.82rem; color: rgba(255,255,255,0.38); line-height: 1.7; margin: 0 0 1.75rem 0; }
.iag-footer__brand-body { padding-top: 0; }
.iag-footer__social-row { display: flex; gap: 1.25rem; align-items: center; }
.iag-footer__social-row a { color: rgba(255,255,255,0.32); transition: color 220ms; display: flex; align-items: center; }
.iag-footer__social-row a:hover { color: var(--white); }
/* Nav horizontale */
.iag-footer__nav-list {
  list-style: none; padding: 0; margin: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.5rem 2rem;
}
.iag-footer__nav-list a { font-size: 0.82rem; color: rgba(255,255,255,0.45); transition: color 200ms; white-space: nowrap; }
.iag-footer__nav-list a:hover { color: var(--white); }
.iag-footer__info-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0; }
.iag-footer__info-list--right { text-align: right; }
.iag-footer__info-list li { font-size: 0.82rem; color: rgba(255,255,255,0.45); line-height: 1.7; }
.iag-footer__info-list a { color: rgba(255,255,255,0.55); transition: color 200ms; }
.iag-footer__info-list a:hover { color: var(--white); }
.iag-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: 1.5rem;
  width: 100%;
}
.iag-footer__copy {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.2);
  margin: 0 !important;
  padding: 0 !important;
  text-indent: 0 !important;
  text-align: left !important;
  flex-shrink: 0;
}
.iag-footer__copy--right {
  text-align: right !important;
  flex-shrink: 0;
}

/* ============================================================
   EMPTY STATE
   ============================================================ */
.iag-empty {
  text-align: center;
  padding: clamp(5rem, 10vw, 8rem) var(--pad);
  color: var(--muted);
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 1.25rem;
}

/* ============================================================
   RESPONSIVE — 1024px
   ============================================================ */
@media (max-width: 1024px) {
  .iag-svc-grid { grid-template-columns: 1fr 1fr; }
  .iag-gear-grid { grid-template-columns: repeat(2, 1fr); }
  .iag-posts-grid { grid-template-columns: repeat(2, 1fr); }
  .iag-pf-grid { columns: 2; }
  .iag-about-strip__inner { grid-template-columns: 1fr; }
  .iag-contact-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   RESPONSIVE — 768px
   ============================================================ */
@media (max-width: 768px) {
  .iag-nav__links,
  .iag-nav__right .iag-btn--nav { display: none; }
  .iag-nav__burger { display: flex; }

  .iag-hero__title { max-width: 100%; }

  .iag-svc-grid { grid-template-columns: 1fr; background: none; border: none; gap: 0; }
  .iag-svc-item { border-bottom: 1.5px solid var(--border); }

  .iag-works__row-2 { grid-template-columns: 1fr; }
  .iag-work--portrait { aspect-ratio: 16/9; }
  .iag-work--wide { aspect-ratio: 16/9; }

  .iag-gear-grid { grid-template-columns: 1fr; }
  .iag-posts-grid { grid-template-columns: 1fr; }
  .iag-pf-grid { columns: 1; }

  .iag-single-hero__img { aspect-ratio: 16/9; }
  .iag-article { padding-inline: 1.25rem; }

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

/* ============================================================
   RESPONSIVE — 480px
   ============================================================ */
@media (max-width: 480px) {
  .iag-hero__actions { flex-direction: column; align-items: flex-start; }
  .iag-hero__actions .iag-btn { width: 100%; justify-content: center; }
}

/* ============================================================
   CURSOR
   ============================================================ */
a, button, [role="button"],
.iag-pf-item, .iag-work,
.iag-gear-card, .iag-post-card { cursor: pointer; }

/* ============================================================
   SUPPLEMENT — alias & missing classes for PHP templates
   ============================================================ */

/* Container alias */
.iag-container {
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--pad);
}
.iag-container--narrow { max-width: 800px; }

/* Button extras */
.iag-btn--lg { height: 56px; padding: 0 2.25rem; font-size: 0.85rem; }
.iag-btn--block { width: 100%; justify-content: center; }

/* ─── NAV extras ───────────────────────────────────────────── */
.iag-nav__links a {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--muted);
  position: relative;
  padding-bottom: 2px;
  transition: color 150ms;
}
.iag-nav__links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1.5px;
  background: var(--blue);
  transition: width 250ms var(--ease);
}
.iag-nav__links a:hover,
.iag-nav__links a[aria-current="page"] { color: var(--text); }
.iag-nav__links a:hover::after,
.iag-nav__links a[aria-current="page"]::after { width: 100%; }

/* Hero-mode nav (transparent) */
.iag-nav--hero .iag-nav__links a { color: rgba(255,255,255,0.82); }
.iag-nav--hero .iag-nav__links a:hover,
.iag-nav--hero .iag-nav__links a[aria-current="page"] { color: #fff; }
.iag-nav--hero .iag-nav__logo { color: #fff; }
.iag-nav--hero .iag-nav__logo img { filter: brightness(10); }
.iag-nav--hero .iag-btn--nav { color: #fff; border-color: rgba(255,255,255,0.55); }
.iag-nav--hero .iag-btn--nav:hover { background: rgba(255,255,255,0.12); color: #fff; border-color: rgba(255,255,255,0.9); }
.iag-nav--hero .iag-burger span { background: #fff; }
.iag-nav--hero.is-scrolled { background: rgba(250,250,249,0.92); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-bottom: 1px solid var(--border); }
.iag-nav--hero.is-scrolled .iag-nav__links a { color: var(--muted); }
.iag-nav--hero.is-scrolled .iag-btn--nav { color: var(--blue); border-color: var(--blue); }
.iag-nav--hero.is-scrolled .iag-burger span { background: var(--text); }
.iag-nav--solid { background: rgba(250,250,249,0.92); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-bottom: 1px solid var(--border); }

/* Wordmark fallbacks */
.iag-nav__wordmark { font-family: 'Inter', system-ui, sans-serif; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; }
.iag-footer__wordmark { font-family: 'Inter', system-ui, sans-serif; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.75); }

/* Burger alias */
.iag-burger {
  display: none;
  width: 44px; height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.iag-burger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--text);
  transition: transform 250ms var(--ease), opacity 200ms;
}
.iag-burger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.iag-burger.is-open span:nth-child(2) { opacity: 0; }
.iag-burger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile close + overlay */
.iag-mobile-menu__close { position: absolute; top: 1.5rem; right: 1.5rem; width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; color: var(--muted); transition: color 150ms; }
.iag-mobile-menu__close:hover { color: var(--text); }
.iag-mobile-overlay { display: none; position: fixed; inset: 0; z-index: 840; background: rgba(0,0,0,0.25); }
.iag-mobile-overlay.is-visible { display: block; }

/* ─── HERO extras ──────────────────────────────────────────── */
.iag-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(5,5,4,0.9) 0%, transparent 55%), radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,0.55) 100%);
  z-index: 2; pointer-events: none;
}
.iag-hero__eyebrow {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.5); display: block; margin-bottom: 1.25rem;
}
.iag-hero__sub {
  font-size: clamp(0.85rem, 1.5vw, 1rem); color: rgba(255,255,255,0.6);
  max-width: 42ch; line-height: 1.65; margin-bottom: 2.25rem;
}
.iag-hero__ctas { display: flex; gap: 0.875rem; flex-wrap: wrap; align-items: center; }
/* .iag-hero__scroll-line defined above near .iag-hero__scroll */

/* ─── SECTION HEADER ───────────────────────────────────────── */
.iag-section-head { margin-bottom: clamp(3rem, 5vw, 4.5rem); }
.iag-section-head--center { text-align: center; }
.iag-section-head--split { display: flex; align-items: flex-end; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; }
.iag-section-label { font-family: 'Inter', system-ui, sans-serif; font-size: 0.68rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--blue); display: block; margin-bottom: 0.75rem; }
.iag-section-title { font-family: 'Playfair Display', Georgia, serif; font-size: clamp(1.9rem, 3.5vw, 3rem); font-weight: 400; color: var(--text); line-height: 1.15; margin-top: 0; }

/* ─── PAGE HEADER ──────────────────────────────────────────── */
.iag-page-header { padding-top: calc(var(--nav-h) + clamp(3rem, 6vw, 5rem)); padding-bottom: clamp(3rem, 5vw, 4.5rem); background: var(--bg); }
.iag-page-title { font-family: 'Playfair Display', Georgia, serif; font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 400; color: var(--text); margin-top: 0.5rem; line-height: 1.1; }
.iag-page-desc { margin-top: 1.25rem; font-size: clamp(0.9rem, 1.5vw, 1rem); color: var(--muted); max-width: 52ch; line-height: 1.75; }

/* ─── STATEMENT ────────────────────────────────────────────── */
.iag-statement { position: relative; background-size: cover; background-position: center; background-repeat: no-repeat; padding-block: clamp(6rem, 12vw, 10rem); overflow: hidden; }
.iag-statement__overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(0,0,0,0.62) 0%, rgba(0,0,0,0.38) 60%, rgba(0,0,0,0.18) 100%); z-index: 1; }
.iag-statement__inner { position: relative; z-index: 2; }
.iag-statement__quote { border: none; margin: 0; padding: 0; font-style: normal; }
.iag-statement__quote p { font-family: 'Playfair Display', Georgia, serif; font-size: clamp(1.8rem, 3.8vw, 2.8rem); font-weight: 400; color: #fff; line-height: 1.4; max-width: 26ch; text-shadow: 0 2px 24px rgba(0,0,0,0.35); }
.iag-statement__quote em { font-style: italic; color: rgba(255,255,255,0.85); }

/* ─── SERVICES ─────────────────────────────────────────────── */
.iag-services { background: var(--bg); padding-block: clamp(5rem, 9vw, 8rem); }
.iag-services__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5px; background: var(--border); border: 1.5px solid var(--border); }
.iag-service-card { background: var(--white); padding: 2.5rem 2rem; display: flex; flex-direction: column; gap: 1.25rem; transition: background 200ms; }
.iag-service-card:hover { background: var(--bg-alt); }
.iag-service-card__icon { color: var(--blue); opacity: 0.75; }
.iag-service-card__title { font-family: 'Playfair Display', Georgia, serif; font-size: 1.15rem; font-weight: 400; color: var(--text); }
.iag-service-card__desc { font-size: 0.86rem; color: var(--muted); line-height: 1.7; max-width: 100%; }

/* ─── WORKS BENTO ──────────────────────────────────────────── */
.iag-works { background: var(--bg-alt); padding-top: clamp(5rem, 9vw, 8rem); padding-bottom: clamp(1.5rem, 3vw, 2.5rem); }
.iag-works__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(6, 210px);  /* 6 rangées : top 2 + portrait 4 */
  gap: 10px;
}
.iag-work-item { position: relative; overflow: hidden; background: var(--bg-alt); cursor: pointer; border-radius: 8px; }
/* Bento 9 items */
.iag-work-item:nth-child(1) { grid-column: 1/3;  grid-row: 1/3; }  /* grand paysage */
.iag-work-item:nth-child(2) { grid-column: 3;    grid-row: 1/3; }  /* portrait */
.iag-work-item:nth-child(3) { grid-column: 4;    grid-row: 1; }    /* carré */
.iag-work-item:nth-child(4) { grid-column: 4;    grid-row: 2; }    /* carré */
.iag-work-item:nth-child(5) { grid-column: 1;    grid-row: 3/7; }  /* portrait GT4RS — 840px */
.iag-work-item:nth-child(6) { grid-column: 2;    grid-row: 3/5; }  /* portrait haut-droite */
.iag-work-item:nth-child(7) { grid-column: 3/5;  grid-row: 3/5; }  /* paysage haut-droite */
.iag-work-item:nth-child(8) { grid-column: 2/4;  grid-row: 5/7; }  /* paysage bas-droite */
.iag-work-item:nth-child(9) { grid-column: 4;    grid-row: 5/7; }  /* portrait bas-droite */
.iag-work-item__inner { position: relative; width: 100%; height: 100%; }
.iag-work-item__img-wrap { position: absolute; inset: 0; overflow: hidden; }
.iag-work-item__img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 700ms var(--ease); display: block; }
.iag-work-item:hover .iag-work-item__img-wrap img { transform: scale(1.05); }
.iag-work-item__placeholder { width: 100%; height: 100%; background: #1a1a1a; }
.iag-work-item__overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, transparent 55%); display: flex; flex-direction: column; justify-content: flex-end; padding: clamp(1rem, 2.5vw, 1.75rem); gap: 0.3rem; opacity: 0; transition: opacity 280ms var(--ease); }
.iag-work-item:hover .iag-work-item__overlay { opacity: 1; }
.iag-work-item__label { font-family: 'Inter', system-ui, sans-serif; font-size: 0.6rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.55); }
.iag-work-item__title { font-family: 'Playfair Display', Georgia, serif; font-style: italic; font-size: clamp(0.95rem, 1.8vw, 1.35rem); color: #fff; line-height: 1.2; }
.iag-works__cta { text-align: center; padding-top: 1.5rem; }
.iag-works__scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 2rem;
  pointer-events: none;
}
.iag-works__scroll-line {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.25), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ─── ABOUT ────────────────────────────────────────────────── */
.iag-about { background: var(--white); padding-block: clamp(5rem, 9vw, 8rem); }
.iag-about__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(3rem, 6vw, 6rem); align-items: center; }
.iag-about__visual { position: relative; }
.iag-about__img-frame { aspect-ratio: 3/4; overflow: hidden; position: relative; }
.iag-about__img-frame img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms var(--ease); }
.iag-about__visual:hover .iag-about__img-frame img { transform: scale(1.03); }
.iag-about__portrait-placeholder { width: 100%; height: 100%; background: var(--bg-alt); min-height: 420px; }
.iag-about__body { display: flex; flex-direction: column; gap: 1.5rem; }
.iag-about__body p { max-width: 44ch; }

/* ─── TESTIMONIALS ─────────────────────────────────────────── */
.iag-testimonials { background: var(--bg-alt); padding-block: clamp(5rem, 9vw, 8rem); }
.iag-testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: clamp(2.5rem, 5vw, 3.5rem); }
.iag-testi-card { background: var(--white); border: 1.5px solid var(--border); border-top: 3px solid var(--blue); padding: clamp(1.75rem, 3.5vw, 2.5rem); display: flex; flex-direction: column; transition: transform 320ms var(--ease), box-shadow 320ms var(--ease), opacity 600ms var(--ease), translate 600ms var(--ease); }
.iag-testi-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(0,0,0,0.08); }
/* Stagger d'entrée identique aux cartes services */
.iag-testi-grid .iag-testi-card:nth-child(1) { transition-delay: 0ms; }
.iag-testi-grid .iag-testi-card:nth-child(2) { transition-delay: 120ms; }
.iag-testi-grid .iag-testi-card:nth-child(3) { transition-delay: 240ms; }
.iag-testi-card__text { font-family: 'Playfair Display', Georgia, serif; font-style: italic; font-size: clamp(0.95rem, 1.6vw, 1.1rem); color: var(--text); line-height: 1.65; flex: 1; margin-bottom: 1.75rem; }
.iag-testi-card__author { font-family: 'Inter', system-ui, sans-serif; font-size: 0.82rem; font-weight: 600; color: var(--text); display: block; margin-bottom: 0.2rem; }
.iag-testi-card__role { font-family: 'Inter', system-ui, sans-serif; font-size: 0.75rem; color: var(--muted); display: block; }

/* ─── INSTAGRAM CARROUSEL ──────────────────────────────────── */
.iag-instagram { background: var(--bg); padding-block: clamp(5rem, 9vw, 8rem); overflow: hidden; }

/* Header controls */
.iag-insta-controls { display: flex; align-items: center; gap: 0.75rem; }
.iag-insta-arrow {
  width: 44px; height: 44px;
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--text);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 200ms, border-color 200ms, color 200ms;
  border-radius: 0;
  flex-shrink: 0;
}
.iag-insta-arrow:hover { background: var(--text); color: #fff; border-color: var(--text); }

/* Slider wrapper — déborde légèrement pour effet d'amorce */
.iag-insta-slider-wrap {
  margin-top: clamp(2rem, 4vw, 3rem);
  overflow: hidden;
  cursor: grab;
  user-select: none;
}
.iag-insta-slider-wrap:active { cursor: grabbing; }

.iag-insta-slider {
  display: flex;
  gap: 16px;
  transition: transform 550ms cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

/* Carte individuelle */
.iag-insta-item {
  position: relative;
  flex: 0 0 calc(25% - 12px);
  aspect-ratio: 2553/4292;
  overflow: hidden;
  background: var(--bg-alt);
  display: block;
  border-radius: 28px;
  transition: transform 350ms var(--ease), box-shadow 350ms var(--ease);
}
.iag-insta-item:hover { box-shadow: 0 20px 48px rgba(0,0,0,0.12); }
.iag-insta-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms var(--ease); display: block; border-radius: inherit; }
.iag-insta-item:hover img { transform: scale(1.05); }
.iag-insta-item__placeholder { width: 100%; height: 100%; background: var(--bg-alt); }
.iag-insta-item__overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0);
  display: flex; align-items: center; justify-content: center;
  color: #fff; opacity: 0;
  transition: background 280ms, opacity 280ms;
  border-radius: 28px;
}
.iag-insta-item:hover .iag-insta-item__overlay { background: rgba(0,0,0,0.4); opacity: 1; }

/* Dots */
.iag-insta-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 2rem;
}
.iag-insta-dots button {
  width: 6px; height: 6px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,0.15);
  cursor: pointer;
  transition: background 250ms, transform 250ms, width 250ms;
  padding: 0;
}
.iag-insta-dots button.is-active {
  background: var(--blue);
  width: 22px;
  border-radius: 3px;
}

/* ─── LEAD FORM ────────────────────────────────────────────── */
.iag-lead {
  position: relative;
  background: var(--bg-alt);
  padding-block: clamp(5rem, 9vw, 8rem);
  width: 100%;
}
.iag-lead__overlay { display: none; }
.iag-lead__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}
/* Left column — text */
.iag-lead__body { padding-top: 0.5rem; }
.iag-lead__body h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--text);
  margin-top: 0.75rem;
  margin-bottom: 1rem;
  line-height: 1.15;
}
.iag-lead__body p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.8;
  max-width: 38ch;
}
.iag-lead__trust {
  list-style: none;
  padding: 0;
  margin: 1.75rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.iag-lead__trust li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--muted);
  font-size: 0.85rem;
  letter-spacing: 0.01em;
}
.iag-lead__trust li svg { flex-shrink: 0; color: var(--blue); }

/* Right column — carte blanche comme les témoignages */
.iag-lead__form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  padding: clamp(1.75rem, 3.5vw, 2.75rem);
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  border-radius: 4px;
}
.iag-lead__form-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 400;
  color: var(--text);
  margin-bottom: 0.35rem;
}
.iag-lead__form-intro {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.iag-lead__form-wrap .iag-form__group label { color: var(--text); }
.iag-lead__form-wrap .iag-form__group input,
.iag-lead__form-wrap .iag-form__group textarea,
.iag-lead__form-wrap .iag-form__group select {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  color: var(--text);
}
.iag-lead__form-wrap .iag-form__group input::placeholder,
.iag-lead__form-wrap .iag-form__group textarea::placeholder { color: var(--muted); opacity: 0.6; }
.iag-lead__form-wrap .iag-form__group select option { background: var(--white); color: var(--text); }
.iag-lead__form-wrap .iag-form__group input:focus,
.iag-lead__form-wrap .iag-form__group textarea:focus,
.iag-lead__form-wrap .iag-form__group select:focus {
  border-color: var(--blue);
  background: var(--white);
  outline: none;
}
/* Bouton full-width */
.iag-lead__form-wrap .iag-btn--block { width: 100%; justify-content: center; margin-top: 0.25rem; }

/* ─── CTA BANNER ───────────────────────────────────────────── */
.iag-cta-banner { background: var(--text); padding-block: clamp(4rem, 8vw, 7rem); }
.iag-cta-banner__inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.iag-cta-banner__title { font-family: 'Playfair Display', Georgia, serif; font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 400; color: var(--white); margin-bottom: 0.75rem; }
.iag-cta-banner__sub { font-size: 0.92rem; color: rgba(255,255,255,0.55); max-width: 46ch; }
.iag-cta-banner .iag-btn--primary { background: var(--white); color: var(--text); border-color: var(--white); }
.iag-cta-banner .iag-btn--primary:hover { background: rgba(255,255,255,0.88); border-color: rgba(255,255,255,0.88); }

/* ─── PORTFOLIO PAGE ───────────────────────────────────────── */
.iag-portfolio-filters { position: sticky; top: var(--nav-h); z-index: 50; background: var(--bg); border-bottom: 1.5px solid var(--border); }
.iag-filter-tabs { display: flex; overflow-x: auto; -webkit-overflow-scrolling: touch; max-width: var(--max); margin-inline: auto; padding-inline: var(--pad); }
.iag-filter-tab { font-family: 'Inter', system-ui, sans-serif; font-size: 0.78rem; font-weight: 500; letter-spacing: 0.06em; color: var(--muted); padding: 1rem 1.5rem; border-bottom: 2px solid transparent; position: relative; bottom: -1.5px; white-space: nowrap; transition: color 150ms, border-color 150ms; cursor: pointer; }
.iag-filter-tab:hover { color: var(--text); }
.iag-filter-tab.is-active, .iag-filter-tab[aria-selected="true"] { color: var(--blue); border-bottom-color: var(--blue); }
.iag-portfolio-grid-wrap { padding-block: clamp(3rem, 5vw, 4rem); }
.iag-portfolio-grid { columns: 3; column-gap: 8px; }
.iag-portfolio-item { break-inside: avoid; position: relative; overflow: hidden; display: block; margin-bottom: 8px; cursor: pointer; background: var(--bg-alt); }
.iag-portfolio-item--tall .iag-portfolio-item__inner { aspect-ratio: 3/4; }
.iag-portfolio-item--wide { column-span: all; }
.iag-portfolio-item__inner { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.iag-portfolio-item__inner img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms var(--ease); display: block; }
.iag-portfolio-item:hover .iag-portfolio-item__inner img { transform: scale(1.04); }
.iag-portfolio-item__placeholder { width: 100%; height: 100%; background: var(--bg-alt); min-height: 260px; }
.iag-portfolio-item__overlay { position: absolute; inset: 0; background: rgba(0,0,0,0); display: flex; flex-direction: column; justify-content: flex-end; padding: 1.25rem; transition: background 300ms; }
.iag-portfolio-item:hover .iag-portfolio-item__overlay { background: rgba(0,0,0,0.58); }
.iag-portfolio-item__play { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 52px; height: 52px; background: rgba(255,255,255,0.12); display: flex; align-items: center; justify-content: center; color: #fff; border-radius: 50%; opacity: 0; transition: opacity 250ms, background 200ms; }
.iag-portfolio-item:hover .iag-portfolio-item__play { opacity: 1; background: rgba(30,58,138,0.75); }
.iag-portfolio-item__meta { opacity: 0; transform: translateY(8px); transition: opacity 250ms, transform 250ms var(--ease); display: flex; flex-direction: column; gap: 0.2rem; }
.iag-portfolio-item:hover .iag-portfolio-item__meta { opacity: 1; transform: none; }
.iag-portfolio-item__label { font-family: 'Inter', system-ui, sans-serif; font-size: 0.6rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.55); }
.iag-portfolio-item__title { font-family: 'Playfair Display', Georgia, serif; font-style: italic; font-size: 1rem; color: #fff; }
.iag-portfolio-item.is-hidden { display: none; }

/* ─── LIGHTBOX extras ──────────────────────────────────────── */
.iag-lightbox__backdrop { position: absolute; inset: 0; cursor: pointer; }
.iag-lightbox__stage { position: relative; z-index: 1; display: flex; align-items: center; justify-content: center; width: 100%; max-height: 92svh; }
.iag-lightbox__content { display: flex; align-items: center; justify-content: center; max-width: 90vw; max-height: 90svh; }
.iag-lightbox__content img { max-width: 90vw; max-height: 88svh; object-fit: contain; display: block; }
.iag-lightbox__content iframe { width: 85vw; max-width: 1100px; aspect-ratio: 16/9; border: none; }
.iag-lightbox__content video { max-width: 90vw; max-height: 88svh; outline: none; }
.iag-lightbox__prev, .iag-lightbox__next { position: fixed; top: 50%; transform: translateY(-50%); width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.55); transition: color 150ms; z-index: 2; }
.iag-lightbox__prev { left: 1.5rem; }
.iag-lightbox__next { right: 1.5rem; }
.iag-lightbox__prev:hover, .iag-lightbox__next:hover { color: #fff; }
.iag-lightbox__caption { position: fixed; bottom: 1.5rem; left: 50%; transform: translateX(-50%); font-family: 'Playfair Display', Georgia, serif; font-style: italic; font-size: 0.88rem; color: rgba(255,255,255,0.45); white-space: nowrap; z-index: 2; }

/* ─── MATÉRIEL PAGE ────────────────────────────────────────── */
.iag-gear-section { padding-block: clamp(3rem, 5vw, 4.5rem); border-bottom: 1.5px solid var(--border); }
.iag-gear-section:last-of-type { border-bottom: none; }
.iag-gear-section__title { font-family: 'Inter', system-ui, sans-serif; font-size: 0.68rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--blue); margin-bottom: 2rem; }
.iag-gear-card__visual { aspect-ratio: 4/3; overflow: hidden; background: var(--bg-alt); }
.iag-gear-card__visual img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms var(--ease); }
.iag-gear-card:hover .iag-gear-card__visual img { transform: scale(1.04); }
.iag-gear-card__placeholder { width: 100%; height: 100%; min-height: 200px; background: var(--bg-alt); display: flex; align-items: center; justify-content: center; color: var(--muted); }
.iag-gear-cta { background: var(--bg-alt); padding-block: clamp(4rem, 7vw, 6rem); }
.iag-gear-cta__inner { max-width: 600px; display: flex; flex-direction: column; gap: 1.25rem; }
.iag-gear-cta__inner h2 { font-size: clamp(1.5rem, 2.5vw, 2rem); }

/* ─── CONTACT PAGE ─────────────────────────────────────────── */
.iag-page-header--contact { padding-bottom: 0; }
.iag-contact-section { padding-block: clamp(3rem, 6vw, 5rem); }
.iag-contact-info { display: flex; flex-direction: column; gap: 2rem; }
.iag-contact-portrait { aspect-ratio: 3/4; overflow: hidden; background: var(--bg-alt); max-width: 320px; }
.iag-contact-portrait img { width: 100%; height: 100%; object-fit: cover; }
.iag-contact-portrait__placeholder { width: 100%; height: 100%; background: var(--bg-alt); min-height: 300px; }
.iag-contact-bio { display: flex; flex-direction: column; gap: 0.5rem; }
.iag-contact-bio__name { font-family: 'Playfair Display', Georgia, serif; font-size: 1.35rem; font-weight: 400; color: var(--text); }
.iag-contact-bio__role { font-family: 'Inter', system-ui, sans-serif; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--blue); display: block; }
.iag-contact-bio__text { font-size: 0.9rem; color: var(--muted); line-height: 1.75; max-width: 42ch; }
.iag-contact-details { display: flex; flex-direction: column; border-top: 1.5px solid var(--border); }
.iag-contact-details__item { display: flex; flex-direction: column; gap: 0.3rem; padding-block: 1.25rem; border-bottom: 1.5px solid var(--border); }
.iag-contact-details dt { font-family: 'Inter', system-ui, sans-serif; font-size: 0.65rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); display: flex; align-items: center; gap: 0.5rem; }
.iag-contact-details dd { font-size: 0.88rem; color: var(--text); line-height: 1.55; }
.iag-contact-details__sub { font-size: 0.78rem; color: var(--muted); display: block; }
.iag-contact-details a:hover { color: var(--blue); transition: color 150ms; }
.iag-contact-form-wrap { background: var(--white); border: 1.5px solid var(--border); padding: clamp(2rem, 4vw, 3rem); }
.iag-contact-form-inner { display: flex; flex-direction: column; gap: 1.5rem; }
.iag-contact-form-title { font-family: 'Playfair Display', Georgia, serif; font-size: 1.5rem; font-weight: 400; color: var(--text); margin: 0; }
.iag-contact-form-intro { font-size: 0.88rem; color: var(--muted); max-width: 100%; }
.iag-form { display: flex; flex-direction: column; gap: 1.25rem; }
.iag-form__row { display: flex; flex-direction: column; gap: 1.25rem; }
.iag-form__row--half { flex-direction: row; gap: 1rem; }
.iag-form__row--half .iag-form__group { flex: 1; min-width: 0; }
.iag-form__group { display: flex; flex-direction: column; gap: 0.5rem; }
.iag-form__group label { font-family: 'Inter', system-ui, sans-serif; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.iag-form__group input, .iag-form__group textarea, .iag-form__group select { font-family: 'Inter', system-ui, sans-serif; font-size: 0.9rem; color: var(--text); background: var(--bg); border: 1.5px solid var(--border); padding: 0.75rem 1rem; outline: none; transition: border-color 150ms; width: 100%; appearance: none; }
.iag-form__group input:focus, .iag-form__group textarea:focus, .iag-form__group select:focus { border-color: var(--blue); }
.iag-form__group textarea { resize: vertical; min-height: 140px; }
.iag-form__group input::placeholder, .iag-form__group textarea::placeholder { color: rgba(107,106,104,0.4); }

/* ─── BLOG / ARCHIVE ───────────────────────────────────────── */
.iag-blog-section { padding-block: clamp(3rem, 5vw, 4.5rem); }
.iag-blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.iag-post-card { display: flex; flex-direction: column; background: var(--white); overflow: hidden; transition: box-shadow 300ms var(--ease); }
.iag-post-card:hover { box-shadow: 0 6px 32px rgba(0,0,0,0.08); }
.iag-post-card__thumb { display: block; aspect-ratio: 16/10; overflow: hidden; background: var(--bg-alt); }
.iag-post-card__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms var(--ease); }
.iag-post-card:hover .iag-post-card__thumb img { transform: scale(1.04); }
.iag-post-card__body { padding: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; flex: 1; }
.iag-post-card__meta { display: flex; align-items: center; gap: 1rem; }
.iag-post-card__date { font-family: 'Inter', system-ui, sans-serif; font-size: 0.7rem; color: var(--muted); }
.iag-post-card__cat { font-family: 'Inter', system-ui, sans-serif; font-size: 0.62rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--blue); }
.iag-post-card__title { font-family: 'Playfair Display', Georgia, serif; font-size: 1.2rem; font-weight: 400; color: var(--text); line-height: 1.3; }
.iag-post-card__title a { transition: color 150ms; }
.iag-post-card__title a:hover { color: var(--blue); }
.iag-post-card__excerpt { font-size: 0.85rem; color: var(--muted); line-height: 1.65; max-width: 100%; flex: 1; }
.iag-post-card__link { font-family: 'Inter', system-ui, sans-serif; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.05em; color: var(--blue); display: inline-flex; align-items: center; gap: 0.4rem; margin-top: auto; transition: gap 200ms; }
.iag-post-card__link:hover { gap: 0.65rem; }
.iag-blog-empty { text-align: center; padding: clamp(4rem, 8vw, 7rem) 0; display: flex; flex-direction: column; align-items: center; gap: 2rem; color: var(--muted); }

/* ─── SINGLE ARTICLE ───────────────────────────────────────── */
.iag-article__header { padding-top: calc(var(--nav-h) + clamp(3rem, 6vw, 5rem)); padding-bottom: clamp(2rem, 4vw, 3.5rem); background: var(--bg); }
.iag-article__title { font-family: 'Playfair Display', Georgia, serif; font-size: clamp(2rem, 4.5vw, 3.5rem); font-weight: 400; color: var(--text); line-height: 1.15; margin-top: 0.75rem; }
.iag-article__intro { font-size: 1rem; color: var(--muted); max-width: 56ch; line-height: 1.7; margin-top: 1.25rem; font-style: italic; font-family: 'Playfair Display', Georgia, serif; }
.iag-article__meta { display: flex; align-items: center; gap: 1.25rem; margin-bottom: 1rem; }
.iag-article__meta time { font-family: 'Inter', system-ui, sans-serif; font-size: 0.72rem; color: var(--muted); }
.iag-article__cat { font-family: 'Inter', system-ui, sans-serif; font-size: 0.62rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--blue); }
.iag-article__hero { max-height: 72svh; overflow: hidden; background: #111; }
.iag-article__hero-img { width: 100%; height: 100%; object-fit: cover; max-height: 72svh; display: block; }
.iag-article__body { padding-block: clamp(3rem, 5vw, 5rem); background: var(--bg); }
.iag-article__content { font-size: 1rem; line-height: 1.8; color: var(--text); }
.iag-article__content p { max-width: 100%; color: var(--text); margin-bottom: 1.5rem; }
.iag-article__content h2 { margin: 2.5rem 0 1rem; }
.iag-article__content h3 { margin: 2rem 0 0.75rem; }
.iag-article__content img { width: 100%; margin: 2rem 0; }
.iag-article__content blockquote { border-left: 3px solid var(--blue); padding-left: 1.5rem; margin: 2rem 0; font-style: italic; color: var(--muted); font-family: 'Playfair Display', Georgia, serif; font-size: 1.1rem; }
.iag-article__tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 2.5rem; padding-top: 2rem; border-top: 1.5px solid var(--border); }
.iag-tag { font-family: 'Inter', system-ui, sans-serif; font-size: 0.7rem; font-weight: 500; letter-spacing: 0.06em; padding: 0.35rem 0.875rem; background: var(--bg-alt); color: var(--muted); border: 1.5px solid var(--border); transition: border-color 150ms, color 150ms; }
.iag-tag:hover { color: var(--blue); border-color: var(--blue); }
.iag-article__nav { background: var(--bg-alt); padding-block: clamp(2.5rem, 4vw, 4rem); }
.iag-article__nav-inner { display: flex; justify-content: space-between; gap: 2rem; }
.iag-article__nav-link { display: flex; flex-direction: column; gap: 0.5rem; max-width: 300px; transition: color 150ms; }
.iag-article__nav-link--next { align-items: flex-end; text-align: right; }
.iag-article__nav-dir { font-family: 'Inter', system-ui, sans-serif; font-size: 0.68rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); display: flex; align-items: center; gap: 0.4rem; }
.iag-article__nav-title { font-family: 'Playfair Display', Georgia, serif; font-size: 0.95rem; color: var(--text); line-height: 1.3; }
.iag-article__nav-link:hover .iag-article__nav-title { color: var(--blue); }
.iag-breadcrumb { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1.5rem; }
.iag-breadcrumb a { font-family: 'Inter', system-ui, sans-serif; font-size: 0.75rem; color: var(--muted); transition: color 150ms; }
.iag-breadcrumb a:hover { color: var(--blue); }

/* ─── FOOTER ───────────────────────────────────────────────── */
.iag-footer { background: #0C0A09; color: rgba(255,255,255,0.55); }
.iag-footer__inner { max-width: var(--max); margin-inline: auto; padding: clamp(3.5rem, 6vw, 5rem) var(--pad) 2.5rem; display: grid; grid-template-columns: 1fr auto auto; gap: clamp(2rem, 5vw, 5rem); align-items: start; border-bottom: 1px solid rgba(255,255,255,0.07); }
.iag-footer__brand { display: flex; flex-direction: column; gap: 1rem; }
.iag-footer__logo { display: inline-flex; }
.iag-footer__logo img { height: 22px; width: auto; filter: brightness(10) opacity(0.6); }
.iag-footer__tagline { font-size: 0.8rem; color: rgba(255,255,255,0.35); line-height: 1.65; max-width: 32ch; }
.iag-footer__nav ul { display: flex; flex-direction: column; gap: 0.75rem; }
.iag-footer__nav a { font-size: 0.78rem; font-weight: 500; letter-spacing: 0.04em; color: rgba(255,255,255,0.38); transition: color 150ms; }
.iag-footer__nav a:hover { color: rgba(255,255,255,0.85); }
.iag-footer__social { display: flex; flex-direction: column; gap: 1rem; }
.iag-footer__social a { color: rgba(255,255,255,0.35); transition: color 150ms; display: flex; align-items: center; }
.iag-footer__social a:hover { color: rgba(255,255,255,0.85); }
.iag-footer__bottom { max-width: var(--max); margin-inline: auto; padding: 1.75rem var(--pad); display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; }
.iag-footer__bottom p { font-size: 0.72rem; color: rgba(255,255,255,0.22); max-width: 100%; margin: 0; }

/* ─── RESPONSIVE SUPPLEMENT ────────────────────────────────── */
@media (max-width: 1024px) {
  .iag-services__grid { grid-template-columns: repeat(2, 1fr); }
  .iag-works__grid { grid-template-columns: repeat(2, 1fr); }
  .iag-work-item--wide { grid-column: span 2; }
  .iag-about__grid { grid-template-columns: 1fr; }
  .iag-insta-grid { grid-template-columns: repeat(3, 1fr); }
  .iag-portfolio-grid { columns: 2; }
  .iag-blog-grid { grid-template-columns: repeat(2, 1fr); }
  .iag-footer__inner { grid-template-columns: 1fr 1fr; }
  .iag-gear-grid { grid-template-columns: repeat(2, 1fr); }
  .iag-contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .iag-nav__links, .iag-nav__right .iag-btn--nav { display: none; }
  .iag-burger, .iag-nav__burger { display: flex; }
  .iag-services__grid { grid-template-columns: 1fr; background: none; border: none; gap: 0; }
  .iag-service-card { border-bottom: 1.5px solid var(--border); }
  .iag-works__grid { grid-template-columns: 1fr; }
  .iag-work-item--wide { grid-column: span 1; aspect-ratio: 16/9; }
  .iag-about__img-frame { aspect-ratio: 16/9; }
  .iag-insta-grid { grid-template-columns: repeat(2, 1fr); }
  .iag-portfolio-grid { columns: 1; }
  .iag-blog-grid { grid-template-columns: 1fr; }
  .iag-footer__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .iag-footer__bottom { flex-direction: column; align-items: flex-start; }
  .iag-cta-banner__inner { flex-direction: column; }
  .iag-form__row--half { flex-direction: column; }
  .iag-article__nav-inner { flex-direction: column; }
  .iag-article__nav-link--next { align-items: flex-start; text-align: left; }
}
@media (max-width: 480px) {
  .iag-hero__ctas, .iag-hero__actions { flex-direction: column; align-items: flex-start; }
  .iag-hero__ctas .iag-btn, .iag-hero__actions .iag-btn { width: 100%; justify-content: center; }
  .iag-insta-grid { grid-template-columns: repeat(2, 1fr); }
  .iag-blog-grid { grid-template-columns: 1fr; }
}

/* Cursor */
.iag-portfolio-item, .iag-work-item, .iag-post-card { cursor: pointer; }
