/* ============================================================
   VIDEOCRAFT — Main Stylesheet
   Breakpoints: 375 / 768 / 1024 / 1440px
   ============================================================ */

/* ── CSS Variables ── */
:root {
  --clr-black:      #000000;
  --clr-white:      #ffffff;
  --clr-bg:         #ffffff;
  --clr-bg-light:   #f8f9fa;
  --clr-text:       #111111;
  --clr-text-mid:   #444444;
  --clr-text-muted: #888888;
  --clr-border:     #e5e7eb;
  --clr-card-bg:    #ffffff;

  --ff-sans: 'Inter', system-ui, -apple-system, sans-serif;

  --fw-regular: 400;
  --fw-medium:  500;
  --fw-semibold: 600;
  --fw-bold:    700;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 100px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow-card: 0 4px 16px rgba(0,0,0,.08);

  --max-w: 1280px;
  --gutter: 24px;
  --nav-h: 72px;

  --transition: 260ms cubic-bezier(.4,0,.2,1);
}

@media (min-width: 768px)  { :root { --gutter: 40px; } }
@media (min-width: 1440px) { :root { --gutter: 80px; } }

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--ff-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--clr-text);
  background: var(--clr-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { display: block; max-width: 100%; height: auto; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; }
::selection { background: var(--clr-black); color: var(--clr-white); }

/* ── Utilities ── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border-width: 0;
}

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px;
  font-size: 15px; font-weight: var(--fw-medium);
  border-radius: var(--radius-pill);
  transition: background var(--transition), color var(--transition),
              border-color var(--transition), transform var(--transition);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--clr-black); color: var(--clr-white);
  border: 2px solid var(--clr-black);
}
.btn--primary:hover { background: #222; border-color: #222; }

.btn--outline {
  background: transparent; color: var(--clr-white);
  border: 2px solid rgba(255,255,255,.5);
}
.btn--outline:hover { border-color: var(--clr-white); background: rgba(255,255,255,.08); }

.btn--sm { padding: 10px 22px; font-size: 14px; }

/* ── Section titles ── */
.section-tag {
  font-size: 13px; font-weight: var(--fw-medium);
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--clr-text-muted);
  margin-bottom: 12px;
  display: block;
}
.section-title {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: var(--fw-bold);
  line-height: 1.1;
  letter-spacing: -.02em;
  color: var(--clr-text);
}
.section-subtitle {
  margin-top: 16px;
  font-size: 17px;
  color: var(--clr-text-muted);
  max-width: 680px;
  line-height: 1.7;
}
.section-header { text-align: center; }
.section-header .section-subtitle { margin-inline: auto; }


/* ═══════════════════════════════════════════
   HEADER / NAV
═══════════════════════════════════════════ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  height: var(--nav-h);
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid transparent;
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
}
.site-header.scrolled {
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  border-bottom-color: var(--clr-border);
  box-shadow: 0 2px 20px rgba(0,0,0,.08);
}

.site-header .container { height: 100%; }

.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%;
}

.nav__logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Lilita One', cursive;
  font-size: 20px; font-weight: 400;
  letter-spacing: .04em; text-transform: uppercase;
  color: var(--clr-white);
  transition: color var(--transition);
}
.site-header.scrolled .nav__logo { color: var(--clr-black); }

.nav__logo-img {
  width: 64px; height: 64px;
  border-radius: 50%;
  object-fit: contain;
  background-color: #000;
  flex-shrink: 0;
}

.nav__links {
  display: none;
  gap: 36px;
}
@media (min-width: 768px) { .nav__links { display: flex; align-items: center; } }

.nav__links a {
  font-size: 15px; font-weight: var(--fw-medium);
  color: rgba(255,255,255,.8);
  transition: color var(--transition);
  position: relative;
}
.site-header.scrolled .nav__links a { color: var(--clr-text-mid); }
.nav__links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1.5px; background: var(--clr-black);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--transition);
}
.nav__links a:hover { color: var(--clr-white); }
.nav__links a:hover::after { transform: scaleX(1); background: var(--clr-white); }
.nav__links a.active { color: var(--clr-white); }
.nav__links a.active::after { transform: scaleX(1); background: var(--clr-white); }
.site-header.scrolled .nav__links a:hover { color: var(--clr-black); }
.site-header.scrolled .nav__links a:hover::after { background: var(--clr-black); }
.site-header.scrolled .nav__links a.active { color: var(--clr-black); }
.site-header.scrolled .nav__links a.active::after { background: var(--clr-black); }

.nav__cta { display: none; }
@media (min-width: 768px) { .nav__cta { display: inline-flex; } }

/* Burger */
.nav__burger {
  display: flex; flex-direction: column; justify-content: center;
  gap: 5px; width: 32px; height: 32px; padding: 4px;
}
@media (min-width: 768px) { .nav__burger { display: none; } }

.nav__burger span {
  display: block; height: 2px; background: var(--clr-white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition), width var(--transition), background var(--transition);
}
.site-header.scrolled .nav__burger span { background: var(--clr-black); }
.nav__burger span:nth-child(2) { width: 75%; }
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: translateX(-6px); }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.nav__mobile {
  position: fixed; inset: 0; top: var(--nav-h); z-index: 800;
  background: var(--clr-white);
  padding: 32px var(--gutter);
  display: flex; flex-direction: column; gap: 8px;
  transform: translateX(100%);
  transition: transform 360ms cubic-bezier(.4,0,.2,1);
}
.nav__mobile.open { transform: translateX(0); }
.nav__mobile a {
  font-size: 22px; font-weight: var(--fw-semibold);
  color: var(--clr-text); padding: 12px 0;
  border-bottom: 1px solid var(--clr-border);
  transition: color var(--transition);
}
.nav__mobile a:hover { color: var(--clr-black); }
.nav__mobile .btn { margin-top: 24px; width: 100%; justify-content: center; }


/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center;
  overflow: hidden;
  background: var(--clr-black);
}

.hero__bg {
  position: absolute; inset: 0;
  opacity: .85;
}
.hero__bg::after {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    135deg,
    rgba(0,0,0,.7) 0%,
    rgba(0,0,0,.3) 60%,
    rgba(0,0,0,.55) 100%
  );
}

.hero__bg-img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: opacity 1.5s ease;
}
.hero__bg-img--a { opacity: 1; }
.hero__bg-img--b { opacity: 0; }

.hero__content {
  position: relative; z-index: 2;
  padding-top: calc(var(--nav-h) + 40px);
  padding-bottom: 80px;
  max-width: 760px;
}

.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: var(--fw-medium);
  letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,255,255,.65);
  margin-bottom: 28px;
}
.hero__eyebrow span { display: inline-block; width: 32px; height: 1px; background: rgba(255,255,255,.4); }

.hero__title {
  font-size: clamp(40px, 6.5vw, 88px);
  font-weight: var(--fw-bold);
  line-height: 1.04;
  letter-spacing: -.03em;
  color: var(--clr-white);
  margin-bottom: 24px;
}
.hero__title em {
  font-style: italic;
  font-weight: var(--fw-regular);
  color: rgba(255,255,255,.75);
}

.hero__subtitle {
  font-size: clamp(16px, 1.8vw, 19px);
  color: rgba(255,255,255,.6);
  max-width: 500px;
  line-height: 1.7;
  margin-bottom: 44px;
}

.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }

.hero__scroll {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,.45);
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
}
.hero__scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,.4), transparent);
  animation: scrollDown 1.8s ease-in-out infinite;
}
@keyframes scrollDown {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* Stats strip below hero */
.hero-stats {
  background: var(--clr-white);
  border-bottom: 1px solid var(--clr-border);
}
.hero-stats__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  divide-x: 1px solid var(--clr-border);
}
@media (min-width: 768px) { .hero-stats__inner { grid-template-columns: repeat(4, 1fr); } }

.stat {
  padding: 32px 24px;
  text-align: center;
  border-right: 1px solid var(--clr-border);
}
.stat:last-child { border-right: none; }
.stat__number {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: var(--fw-bold);
  color: var(--clr-black);
  letter-spacing: -.02em;
  line-height: 1;
  margin-bottom: 6px;
}
.stat__label {
  font-size: 13px; color: var(--clr-text-muted);
  text-transform: uppercase; letter-spacing: .08em;
}


/* ═══════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════ */
.about { padding: 96px 0; background: var(--clr-bg-light); }

.about__grid {
  display: grid;
  gap: 48px;
  align-items: center;
}
@media (min-width: 768px) {
  .about__grid { grid-template-columns: 1fr 1fr; gap: 64px; }
}
@media (min-width: 1024px) {
  .about__grid { grid-template-columns: 1.05fr 1fr; gap: 80px; }
}

.about__img-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.about__img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.about__img-wrap:hover img { transform: scale(1.03); }

.about__badge {
  position: absolute; bottom: 24px; left: 24px;
  background: rgba(0,0,0,.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--clr-white);
  padding: 12px 20px;
  border-radius: var(--radius-md);
  font-size: 14px; font-weight: var(--fw-medium);
}
.about__badge strong { display: block; font-size: 22px; font-weight: var(--fw-bold); }

.about__content { }

.about__title {
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: var(--fw-bold);
  letter-spacing: -.025em;
  line-height: 1.08;
  margin-bottom: 24px;
}

.about__body {
  font-size: 16px; line-height: 1.8;
  color: var(--clr-text-mid);
  margin-bottom: 16px;
}
.about__body + .about__body { margin-bottom: 36px; }

.about__stats {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px; margin-top: 36px;
}

.about-stat {
  padding: 20px 24px;
  background: var(--clr-bg-light);
  border-radius: var(--radius-md);
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  gap: 6px;
}
.about-stat__icon {
  width: 36px; height: 36px; margin-bottom: 4px;
  color: var(--clr-text-muted);
}
.about-stat__icon svg { width: 100%; height: 100%; }
.about-stat__number {
  font-size: 32px; font-weight: var(--fw-bold);
  letter-spacing: -.02em; line-height: 1;
  color: var(--clr-black);
}
.about-stat__label { font-size: 13px; color: var(--clr-text-muted); }

.about__cta { margin-top: 36px; }


/* ═══════════════════════════════════════════
   PORTFOLIO
═══════════════════════════════════════════ */
.portfolio { padding: 96px 0; background: var(--clr-white); }

.portfolio__header { margin-bottom: 48px; }

.portfolio__filters {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-top: 36px;
  justify-content: center;
}

.filter-btn {
  padding: 9px 22px;
  font-size: 14px; font-weight: var(--fw-medium);
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--clr-border);
  color: var(--clr-text-mid);
  background: transparent;
  transition: background var(--transition), color var(--transition),
              border-color var(--transition);
}
.filter-btn:hover { border-color: var(--clr-text-mid); color: var(--clr-text); }
.filter-btn.active {
  background: var(--clr-black); color: var(--clr-white);
  border-color: var(--clr-black);
}

.portfolio__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 40px;
}
@media (min-width: 600px)  { .portfolio__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .portfolio__grid { grid-template-columns: repeat(3, 1fr); } }

.portfolio-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  background: #111;
}
.portfolio-card.hidden { display: none; }

.portfolio-card__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease, opacity .5s ease;
}
.portfolio-card:hover .portfolio-card__img {
  transform: scale(1.06); opacity: .85;
}

.portfolio-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.72) 0%, rgba(0,0,0,.15) 50%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 24px;
  transition: opacity var(--transition);
}

.portfolio-card__cat {
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.7); font-weight: var(--fw-medium);
  margin-bottom: 6px;
}
.portfolio-card__title {
  font-size: 20px; font-weight: var(--fw-semibold);
  color: var(--clr-white); line-height: 1.25;
}

.portfolio-card__arrow {
  position: absolute; top: 20px; right: 20px;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.18);
  backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity var(--transition), background var(--transition);
}
.portfolio-card:hover .portfolio-card__arrow { opacity: 1; }
.portfolio-card__arrow svg { width: 16px; height: 16px; color: white; }

.portfolio__more {
  text-align: center; margin-top: 48px;
}


/* ═══════════════════════════════════════════
   SERVICES
═══════════════════════════════════════════ */
.services { padding: 96px 0 80px; background: var(--clr-bg-light); }

.services__header { margin-bottom: 56px; }

.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 600px)  { .services__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services__grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  background: var(--clr-card-bg);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--clr-border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.service-card__icon {
  width: 52px; height: 52px;
  background: var(--clr-black);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.service-card__icon svg { width: 22px; height: 22px; color: var(--clr-white); }

.service-card__title {
  font-size: 18px; font-weight: var(--fw-semibold);
  color: var(--clr-text);
  margin-bottom: 12px;
  line-height: 1.3;
}
.service-card__desc {
  font-size: 14px; color: var(--clr-text-muted);
  line-height: 1.7;
}


/* ═══════════════════════════════════════════
   TARIFS
═══════════════════════════════════════════ */
.tarifs { padding: 80px 0 96px; background: var(--clr-white); }

.tarifs__header { margin-bottom: 64px; }

.tarifs__group { margin-bottom: 56px; }

.tarifs__group-title {
  font-size: 20px; font-weight: var(--fw-semibold);
  letter-spacing: .04em;
  color: var(--clr-text-mid);
  margin-bottom: 16px;
  text-align: center;
}

.collab-card {
  display: flex;
  align-items: center;
  gap: 14px;
  width: fit-content;
  margin: 0 auto 28px;
  padding: 14px 18px 14px 14px;
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: var(--clr-text);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.collab-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
  border-color: #c0c0c0;
}
.collab-card__avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--clr-bg-light);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--clr-text-mid);
}
.collab-card__info {
  display: flex; flex-direction: column; gap: 2px;
}
.collab-card__name {
  font-size: 15px; font-weight: var(--fw-semibold);
  color: var(--clr-text);
}
.collab-card__role {
  font-size: 13px; color: var(--clr-text-muted);
}
.collab-card__arrow {
  flex-shrink: 0;
  color: var(--clr-text-muted);
  transition: transform var(--transition), color var(--transition);
  margin-left: 4px;
}
.collab-card:hover .collab-card__arrow {
  transform: translate(2px, -2px);
  color: var(--clr-text);
}

.tarifs__grid {
  display: grid; grid-template-columns: 1fr; gap: 24px;
}
@media (min-width: 768px) { .tarifs__grid { grid-template-columns: repeat(2, 1fr); } }

.tarif-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.tarif-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }

.tarif-card--featured {
  background: var(--clr-black);
  border-color: var(--clr-black);
  color: var(--clr-white);
}

.tarif-card__badge {
  display: inline-block;
  font-size: 11px; font-weight: var(--fw-semibold); letter-spacing: .1em; text-transform: uppercase;
  background: var(--clr-bg-light); color: var(--clr-text-muted);
  border-radius: var(--radius-pill);
  padding: 4px 12px;
  margin-bottom: 20px;
}
.tarif-card--featured .tarif-card__badge { background: rgba(255,255,255,.12); color: rgba(255,255,255,.7); }

.tarif-card__name {
  font-size: 20px; font-weight: var(--fw-bold);
  color: inherit;
  margin-bottom: 10px;
  line-height: 1.2;
}

.tarif-card__price {
  font-size: 42px; font-weight: var(--fw-bold);
  letter-spacing: -.03em;
  color: inherit;
  margin-bottom: 4px;
  line-height: 1;
}

.tarif-card__note {
  font-size: 13px; color: var(--clr-text-muted);
  margin-bottom: 24px;
}
.tarif-card--featured .tarif-card__note { color: rgba(255,255,255,.5); }

.tarif-card__divider {
  height: 1px;
  background: var(--clr-border);
  margin: 24px 0;
}
.tarif-card--featured .tarif-card__divider { background: rgba(255,255,255,.15); }

.tarif-card__features { display: flex; flex-direction: column; gap: 12px; }

.tarif-card__feature {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; line-height: 1.5;
  color: var(--clr-text-mid);
}
.tarif-card--featured .tarif-card__feature { color: rgba(255,255,255,.8); }

.tarif-card__feature svg {
  flex-shrink: 0; width: 15px; height: 15px;
  margin-top: 3px;
  color: var(--clr-black);
}
.tarif-card--featured .tarif-card__feature svg { color: var(--clr-white); }

.tarifs__options {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  margin-bottom: 56px;
}

.tarifs__options-title {
  font-size: 17px; font-weight: var(--fw-semibold);
  margin-bottom: 24px;
}

.tarifs__options-grid {
  display: grid; grid-template-columns: 1fr; gap: 14px;
}
@media (min-width: 600px) { .tarifs__options-grid { grid-template-columns: repeat(2, 1fr); } }

.tarifs__option {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--clr-text-mid);
}
.tarifs__option svg { flex-shrink: 0; width: 16px; height: 16px; color: var(--clr-text-muted); }

.tarifs__cta {
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 24px;
}
.tarifs__cta p { font-size: 16px; color: var(--clr-text-muted); }


/* ═══════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════ */
.contact { padding: 96px 0; background: var(--clr-white); }

.contact__header { margin-bottom: 64px; }

.contact__grid {
  display: grid; gap: 56px;
}
@media (min-width: 768px) { .contact__grid { grid-template-columns: 1fr 1.2fr; gap: 64px; } }

/* Left column */
.contact__info-title {
  font-size: 22px; font-weight: var(--fw-semibold);
  margin-bottom: 12px;
}
.contact__info-text {
  font-size: 15px; color: var(--clr-text-muted); line-height: 1.7;
  margin-bottom: 36px;
}

.contact__details { display: flex; flex-direction: column; gap: 16px; margin-bottom: 40px; }

.contact-detail {
  display: flex; align-items: center; gap: 14px;
}
.contact-detail__icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--clr-bg-light);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
}
.contact-detail__icon svg { width: 18px; height: 18px; color: var(--clr-text-mid); }
.contact-detail__label {
  font-size: 12px; text-transform: uppercase; letter-spacing: .1em;
  color: var(--clr-text-muted); margin-bottom: 2px;
}
.contact-detail__value { font-size: 15px; font-weight: var(--fw-medium); color: var(--clr-text); }

/* Instagram / Social */
.contact__social-title {
  font-size: 15px; font-weight: var(--fw-semibold); margin-bottom: 16px;
}
.contact__qr {
  width: 160px; height: 160px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--clr-border);
}
.contact__qr img { width: 100%; height: 100%; object-fit: cover; }

/* Right column — Form */
.contact__form { display: flex; flex-direction: column; gap: 0; }

.form-row { display: grid; gap: 20px; }
@media (min-width: 600px) { .form-row { grid-template-columns: 1fr 1fr; } }

.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 20px; }

.form-label {
  font-size: 13px; font-weight: var(--fw-medium);
  color: var(--clr-text); letter-spacing: .01em;
}
.form-label .required { color: #e53e3e; margin-left: 2px; }

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 13px 16px;
  font-size: 15px; color: var(--clr-text);
  background: var(--clr-white);
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius-md);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
  -webkit-appearance: none;
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--clr-text-muted); font-size: 14px; }
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--clr-black);
  box-shadow: 0 0 0 3px rgba(0,0,0,.07);
}

.form-select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 44px; }
.form-select option { color: var(--clr-text); }

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

.form-submit {
  width: 100%; padding: 16px;
  font-size: 15px; font-weight: var(--fw-semibold);
  color: var(--clr-white); background: var(--clr-black);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center; gap: 10px;
  transition: background var(--transition), transform var(--transition);
  margin-top: 8px;
}
.form-submit:hover { background: #222; transform: translateY(-1px); }
.form-submit svg { width: 18px; height: 18px; }


/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.site-footer {
  background: var(--clr-black);
  color: rgba(255,255,255,.75);
  padding-top: 72px;
}

.footer__top {
  display: grid; gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
@media (min-width: 768px)  { .footer__top { grid-template-columns: 1fr 2fr; gap: 40px; } }
@media (min-width: 1024px) { .footer__top { grid-template-columns: 1fr 2.5fr; } }

.footer__brand { }
.footer__logo {
  font-size: 18px; font-weight: var(--fw-bold);
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--clr-white);
  display: block; margin-bottom: 14px;
}
.footer__tagline {
  font-size: 14px; line-height: 1.7;
  color: rgba(255,255,255,.5); max-width: 260px;
}

.footer__col-title {
  font-size: 13px; font-weight: var(--fw-semibold);
  text-transform: uppercase; letter-spacing: .12em;
  color: var(--clr-white);
  margin-bottom: 20px;
}

.footer__links { display: flex; flex-direction: row; flex-wrap: wrap; gap: 12px 24px; }
.footer__links a {
  font-size: 14px; color: rgba(255,255,255,.55);
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--clr-white); }

.footer__contact-items { display: flex; flex-direction: column; gap: 10px; }
.footer__contact-item { font-size: 14px; color: rgba(255,255,255,.55); }

.footer__bottom {
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: space-between;
  gap: 16px;
  padding: 24px 0;
}
.footer__copy { font-size: 13px; color: rgba(255,255,255,.35); }
.footer__legal { display: flex; gap: 24px; }
.footer__legal a {
  font-size: 13px; color: rgba(255,255,255,.45);
  transition: color var(--transition);
}
.footer__legal a:hover { color: var(--clr-white); }


/* ═══════════════════════════════════════════
   ANIMATIONS / REVEAL
═══════════════════════════════════════════ */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .65s ease, transform .65s ease;
  }
  .reveal.in-view {
    opacity: 1;
    transform: translateY(0);
  }
  .reveal[data-delay="1"] { transition-delay: .1s; }
  .reveal[data-delay="2"] { transition-delay: .2s; }
  .reveal[data-delay="3"] { transition-delay: .3s; }
  .reveal[data-delay="4"] { transition-delay: .4s; }
  .reveal[data-delay="5"] { transition-delay: .5s; }
}

/* Reduced motion: always visible */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
}

/* ── Portfolio card — play variant ── */
.portfolio-card--video { cursor: pointer; }
.portfolio-card__play svg { width: 18px; height: 18px; }

/* ── Video modal ── */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 280ms cubic-bezier(.4,0,.2,1);
}
.video-modal:not([hidden]) { display: flex; }
.video-modal[hidden]       { display: none !important; }
.video-modal.open {
  opacity: 1;
  pointer-events: auto;
}
.video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.88);
  backdrop-filter: blur(8px);
}
.video-modal__content {
  position: relative;
  width: 100%;
  max-width: 1000px;
  z-index: 1;
}
.video-modal__close {
  position: absolute;
  top: -48px;
  right: 0;
  color: var(--clr-white);
  opacity: .65;
  padding: 8px;
  transition: opacity var(--transition);
}
.video-modal__close:hover { opacity: 1; }
.video-modal__player {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,.6);
}

.video-modal--vertical .video-modal__content { max-width: 420px; }

/* Plyr theme override — accent rouge du site */
.plyr--video { --plyr-color-main: #c8374f; }
.plyr__control--overlaid { background: #c8374f; }
.plyr__control--overlaid:hover { background: #a62e42; }
