/* ============================================
   MAKE MEDIA — CSS Premium Mobile-First
   ============================================ */

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

:root {
  --gold: #C9A84C;
  --gold-light: #E8C76A;
  --gold-dark: #9A7A2E;
  --black: #0a0a0a;
  --black-2: #111111;
  --black-3: #1a1a1a;
  --gray-1: #2a2a2a;
  --gray-2: #3a3a3a;
  --gray-light: #8a8a8a;
  --white: #ffffff;
  --white-90: rgba(255,255,255,.9);
  --white-60: rgba(255,255,255,.6);
  --white-10: rgba(255,255,255,.1);

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;

  --nav-h: 64px;
  --container: 1200px;
  --radius: 4px;
  --radius-lg: 12px;
  --transition: .3s cubic-bezier(.4,0,.2,1);
  --transition-slow: .6s cubic-bezier(.4,0,.2,1);
}

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

body {
  font-family: var(--font-sans);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

/* === UTILITIES === */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* === REVEAL ANIMATIONS === */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal--delay-1 { transition-delay: .12s; }
.reveal--delay-2 { transition-delay: .24s; }
.reveal--delay-3 { transition-delay: .36s; }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: var(--transition);
  white-space: nowrap;
}
.btn--gold {
  background: var(--gold);
  color: var(--black);
}
.btn--gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,.35); }
.btn--ghost {
  border: 1px solid rgba(255,255,255,.3);
  color: var(--white);
  background: transparent;
}
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn--whatsapp {
  background: #25D366;
  color: var(--white);
  margin-top: 8px;
  width: 100%;
  justify-content: center;
}
.btn--whatsapp:hover { background: #1da851; transform: translateY(-2px); }
.btn--full { width: 100%; justify-content: center; }

/* === SECTION SHARED === */
.section-tag {
  display: inline-block;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--white);
}
.section-title em {
  font-style: italic;
  color: var(--gold);
}
.section-sub {
  color: var(--white-60);
  font-size: .9375rem;
  margin-top: 12px;
  max-width: 520px;
}
.section-header { margin-bottom: 48px; }

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background var(--transition), box-shadow var(--transition);
}
.nav.scrolled {
  background: rgba(10,10,10,.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255,255,255,.06);
}
.nav__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  max-width: var(--container);
  margin: 0 auto;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 101;
}
.nav__logo-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}
.nav__logo-text {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: .02em;
}
.nav__logo-text span { color: var(--gold); }

.nav__burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  z-index: 101;
}
.nav__burger span {
  display: block;
  height: 1.5px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
  transform-origin: center;
}
.nav__burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav__links {
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,.98);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.nav__links.open { opacity: 1; pointer-events: all; }

.nav__link {
  font-size: 1.5rem;
  font-family: var(--font-serif);
  font-weight: 300;
  letter-spacing: .04em;
  transition: color var(--transition);
}
.nav__link:hover { color: var(--gold); }
.nav__link--cta {
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 10px 28px;
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: var(--font-sans);
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 40px) 20px 80px;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(10,10,10,.55) 0%, rgba(10,10,10,.4) 50%, rgba(10,10,10,.75) 100%),
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0,0,0,.3) 0%, transparent 70%);
}
.hero__gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 240px;
  background: linear-gradient(to top, var(--black), transparent);
}
.hero__content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  text-align: center;
}
.hero__eyebrow {
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 8vw, 5rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 24px;
}
.hero__title em {
  font-style: italic;
  color: var(--gold);
}
.hero__sub {
  font-size: clamp(.875rem, 2.5vw, 1.0625rem);
  color: var(--white-60);
  line-height: 1.7;
  margin-bottom: 36px;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.hero__scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
}
.hero__scroll-hint span {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(201,168,76,.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: .4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(.7) translateY(-8px); }
}

/* ============================================
   STATS
   ============================================ */
.stats {
  padding: 60px 0;
  border-top: 1px solid var(--white-10);
  border-bottom: 1px solid var(--white-10);
  background: var(--black-2);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--white-10);
  border: 1px solid var(--white-10);
  border-radius: var(--radius);
  overflow: hidden;
}
.stats__item {
  background: var(--black-2);
  padding: 32px 20px;
  text-align: center;
}
.stats__number {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
}
.stats__unit {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 3vw, 1.5rem);
  color: var(--gold);
}
.stats__label {
  font-size: .75rem;
  color: var(--white-60);
  margin-top: 8px;
  line-height: 1.4;
}

/* ============================================
   SERVICES
   ============================================ */
.services {
  padding: 80px 0;
  background: var(--black);
}
.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.service-card {
  background: var(--black-2);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.service-card:hover {
  border-color: rgba(201,168,76,.35);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,.4);
}
.service-card__icon {
  width: 44px;
  height: 44px;
  color: var(--gold);
  margin-bottom: 20px;
}
.service-card__icon svg { width: 100%; height: 100%; }
.service-card__title {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 400;
  margin-bottom: 12px;
}
.service-card__desc {
  font-size: .875rem;
  color: var(--white-60);
  line-height: 1.65;
  margin-bottom: 16px;
}
.service-card__list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.service-card__list li {
  font-size: .8rem;
  color: var(--white-60);
  padding-left: 14px;
  position: relative;
}
.service-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 1px;
  background: var(--gold);
}
.services__cta {
  margin-top: 48px;
  text-align: center;
}

/* ============================================
   RÉALISATIONS / GALLERY
   ============================================ */
.realisations {
  padding: 80px 0;
  background: var(--black-2);
  overflow: hidden;
}
.gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  margin-top: 0;
}
.gallery__thumb {
  position: relative;
  overflow: hidden;
  background: var(--gray-1);
  height: 200px;
}
.gallery__thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.gallery__thumb:hover img { transform: scale(1.04); }
.gallery__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.7) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery__thumb:hover .gallery__overlay { opacity: 1; }
.gallery__overlay span {
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--white);
}


/* ============================================
   À PROPOS
   ============================================ */
.apropos {
  padding: 80px 0;
  background: var(--black);
}
.apropos__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
.apropos__text {
  font-size: .9375rem;
  color: var(--white-60);
  line-height: 1.75;
  margin-bottom: 16px;
}
.apropos__text strong { color: var(--white); }
.apropos__values {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 28px 0 32px;
}
.apropos__value {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.apropos__value-icon {
  color: var(--gold);
  font-size: .55rem;
  margin-top: 6px;
  flex-shrink: 0;
}
.apropos__value strong {
  display: block;
  font-size: .9375rem;
  margin-bottom: 2px;
}
.apropos__value p {
  font-size: .8125rem;
  color: var(--white-60);
}
.apropos__visual { display: none; }
.apropos__img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.apropos__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.apropos__badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: var(--gold);
  color: var(--black);
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.apropos__badge-num {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1;
}
.apropos__badge-text {
  font-size: .55rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  line-height: 1.3;
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
  padding: 100px 0 120px;
  background: var(--black);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.contact .section-header {
  text-align: center;
}
.contact__glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 100%, rgba(201,168,76,.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 50% 50%, rgba(201,168,76,.04) 0%, transparent 60%);
  pointer-events: none;
}
.contact__cta-block {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}
.contact__card {
  position: relative;
  padding: 56px 48px 48px;
  border: 1px solid rgba(201,168,76,.18);
  background: linear-gradient(160deg, rgba(201,168,76,.04) 0%, rgba(255,255,255,.02) 100%);
  backdrop-filter: blur(4px);
  text-align: center;
}
.contact__corner {
  position: absolute;
  width: 20px;
  height: 20px;
  border-color: var(--gold);
  border-style: solid;
}
.contact__corner--tl {
  top: -1px; left: -1px;
  border-width: 2px 0 0 2px;
}
.contact__corner--br {
  bottom: -1px; right: -1px;
  border-width: 0 2px 2px 0;
}
.contact__card-deco {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  margin-bottom: 32px;
}
.contact__diamond {
  font-size: .55rem;
  color: var(--gold);
  opacity: .7;
}
.contact__rule {
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,.5), transparent);
}
.contact__cta-text {
  font-size: 1.05rem;
  color: rgba(255,255,255,.65);
  line-height: 1.9;
  margin-bottom: 40px;
}
.btn--contact-cta {
  padding: 16px 40px;
  font-size: .9rem;
  letter-spacing: .12em;
  box-shadow: 0 0 0 0 rgba(201,168,76,0);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn--contact-cta svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition);
}
.btn--contact-cta:hover svg { transform: translateX(4px); }
.btn--contact-cta:hover {
  box-shadow: 0 0 32px rgba(201,168,76,.4), 0 8px 24px rgba(201,168,76,.25);
}
.contact__cta-note {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-top: 20px;
  font-size: .7rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
}
.contact__cta-note svg {
  width: 11px !important;
  height: 11px !important;
  max-width: 11px;
  max-height: 11px;
  color: var(--gold);
  opacity: .5;
  flex-shrink: 0;
}
.contact__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
  min-width: 0;
  width: 100%;
}
.contact__item-icon {
  width: 45px;
  height: 45px;
  background: rgba(201,168,76,.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}
.contact__item-icon svg { width: 22px; height: 22px; }
.contact__item-label {
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2px;
}
.contact__item-value {
  font-size: .9375rem;
  color: var(--white-90);
  transition: color var(--transition);
  word-break: break-word;
  overflow-wrap: break-word;
  min-width: 0;
}
a.contact__item-value:hover { color: var(--gold); }

.contact__item > div {
  min-width: 0;
  flex: 1;
}

/* FORM */
.contact__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group--full { grid-column: 1 / -1; }
.form-group label {
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--white-60);
}
.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 12px 14px;
  color: var(--white);
  font-size: .9375rem;
  transition: border-color var(--transition);
  -webkit-appearance: none;
  appearance: none;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}

/* Radio group */
.radio-group {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.radio-option {
  display: flex;
  align-items: center;
  gap: 0;
  cursor: pointer;
  flex: 1;
  min-width: 90px;
}
.radio-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.radio-option span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 11px 10px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  font-size: .8375rem;
  font-weight: 500;
  color: var(--white-60);
  background: rgba(255,255,255,.04);
  transition: border-color var(--transition), color var(--transition), background var(--transition);
  text-align: center;
  letter-spacing: .02em;
}
.radio-option input[type="radio"]:checked + span {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,.1);
}
.radio-option:hover span {
  border-color: rgba(201,168,76,.4);
  color: var(--white-90);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-light); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group--full.btn-wrap { grid-column: 1 / -1; }
.contact__form .btn--gold { grid-column: 1 / -1; }
.form-note {
  grid-column: 1 / -1;
  text-align: center;
  font-size: .75rem;
  color: var(--white-60);
  margin-top: -4px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--black);
  border-top: 1px solid var(--white-10);
  padding: 48px 0 24px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 32px;
}
.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer__brand img { width: 36px; height: 36px; object-fit: contain; }
.footer__brand-name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
}
.footer__brand-name span { color: var(--gold); }
.footer__tagline {
  font-size: .8125rem;
  color: var(--white-60);
  max-width: 240px;
  line-height: 1.5;
}
.footer__socials {
  display: flex;
  flex-direction: row;
  gap: 8px;
  margin-top: 4px;
}
.footer__socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 6px;
  color: var(--white-60);
  border: 1px solid var(--white-10);
  transition: color var(--transition), border-color var(--transition), transform var(--transition);
}
.footer__socials a svg {
  width: 12px;
  height: 12px;
}
.footer__socials a:hover {
  color: var(--gold);
  border-color: var(--gold);
  transform: translateY(-2px);
}
.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
}
.footer__nav a {
  font-size: .875rem;
  color: var(--white-60);
  transition: color var(--transition);
}
.footer__nav a:hover { color: var(--gold); }
.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer__contact a {
  font-size: .875rem;
  color: var(--white-60);
  transition: color var(--transition);
}
.footer__contact a:hover { color: var(--gold); }
.footer__bottom {
  border-top: 1px solid var(--white-10);
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  justify-content: space-between;
}
.footer__bottom p {
  font-size: .75rem;
  color: var(--gray-light);
}

/* ============================================
   WHATSAPP FAB
   ============================================ */
.whatsapp-fab {
  position: fixed;
  bottom: 16px;
  right: 14px;
  z-index: 90;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(37,211,102,.35);
  transition: transform var(--transition), box-shadow var(--transition);
}
.whatsapp-fab svg { width: 28px; height: 28px; }
.whatsapp-fab:hover { transform: scale(1.07); box-shadow: 0 4px 16px rgba(37,211,102,.5); }

@media (max-width: 480px) {
  .contact__card { padding: 36px 24px 32px; }
}

/* ============================================
   DESKTOP (≥768px)
   ============================================ */
@media (min-width: 768px) {
  .nav__burger { display: none; }
  .nav__links {
    position: static;
    background: none;
    flex-direction: row;
    opacity: 1;
    pointer-events: all;
    gap: 4px;
  }
  .nav__link {
    font-size: .8125rem;
    font-family: var(--font-sans);
    font-weight: 400;
    letter-spacing: .04em;
    padding: 6px 14px;
    border-radius: 4px;
  }
  .nav__link--cta {
    font-size: .75rem;
    padding: 8px 18px;
  }
  .nav.scrolled { background: rgba(10,10,10,.92); }

  .hero { padding: calc(var(--nav-h) + 60px) 40px 100px; }
  .hero__content { margin: 0 auto; text-align: center; }
  .hero__actions { justify-content: center; }

  .stats__item { padding: 40px 24px; }

  .services { padding: 100px 0; }
  .services__grid { grid-template-columns: 1fr 1fr; }

  .realisations { padding: 100px 0; }
  .gallery {
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
  }
  .gallery__thumb { height: 300px; }

  .apropos { padding: 100px 0; }
  .apropos__inner { grid-template-columns: 1fr 1fr; align-items: center; }
  .apropos__visual { display: block; }

  .contact { padding: 120px 0 140px; }
  .contact__inner { grid-template-columns: 1fr 1.5fr; align-items: start; }

  .footer__inner { grid-template-columns: 1.5fr 1fr 1fr; align-items: start; }
  .footer__bottom { flex-direction: row; }
}

@media (min-width: 1024px) {
  .services__grid { grid-template-columns: repeat(4, 1fr); }
  .gallery { grid-template-columns: repeat(3, 1fr); gap: 6px; }
  .hero { min-height: 100svh; }
}

/* === Accessibility === */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
