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

:root {
  --bg: #EEECEA;
  --dark: #111110;
  --muted: #888884;
  --border: rgba(17,17,16,0.12);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; cursor: none; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--dark);
  overflow-x: hidden;
}

/* CUSTOM CURSOR */
.cursor {
  position: fixed;
  top: 0; left: 0;
  width: 10px; height: 10px;
  background: var(--dark);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease, width 0.3s ease, height 0.3s ease, background 0.3s ease;
  mix-blend-mode: difference;
}
.cursor.hover {
  width: 40px; height: 40px;
  background: var(--dark);
}
.cursor-ring {
  position: fixed;
  top: 0; left: 0;
  width: 36px; height: 36px;
  border: 1px solid rgba(17,17,16,0.4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.35s cubic-bezier(.23,1,.32,1), width 0.4s ease, height 0.4s ease;
}
.cursor-ring.hover { width: 60px; height: 60px; }

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 48px;
  mix-blend-mode: multiply;
}
.nav-logo {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dark);
  text-decoration: none;
}
.nav-logo svg {
  width: 28px; height: 28px;
}
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 13px;
  font-weight: 400;
  color: var(--dark);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: opacity 0.25s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 1px;
  background: var(--dark);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s cubic-bezier(.77,0,.18,1);
}
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-cta {
  font-size: 13px;
  font-weight: 400;
  color: var(--dark);
  text-decoration: underline;
  text-underline-offset: 3px;
  letter-spacing: 0.02em;
  transition: opacity 0.25s;
}
.nav-cta:hover { opacity: 0.6; }

/* PAGE SECTIONS */
.page { min-height: 100vh; position: relative; }

/* ============ HERO ============ */
#home {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 100vh;
  padding: 0;
  overflow: hidden;
}
.hero-bg-text {
  position: absolute;
  bottom: -8vh;
  left: -2vw;
  right: -2vw;
  font-family: var(--serif);
  font-size: clamp(100px, 18vw, 260px);
  font-weight: 300;
  color: rgba(17,17,16,0.06);
  letter-spacing: -0.02em;
  line-height: 1;
  white-space: nowrap;
  user-select: none;
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 72px 1fr 1fr;
  min-height: 100vh;
  padding-top: 100px;
}
.hero-sidebar {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 0;
  border-right: 1px solid var(--border);
}
.hero-sidebar-year {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--muted);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  margin-top: auto;
  padding-bottom: 20px;
}
.hero-sidebar-role {
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--muted);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  margin-bottom: auto;
  padding-top: 120px;
  text-transform: uppercase;
}
.hero-left {
  padding: 48px 56px 56px;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
}
.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 48px;
  margin-bottom: auto;
}
.stat-number {
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.05em;
  margin-top: 6px;
}
.hero-headline {
  margin-top: auto;
  margin-bottom: 16px;
}
.hero-hello {
  font-family: var(--serif);
  font-size: clamp(80px, 12vw, 160px);
  font-weight: 300;
  line-height: 0.88;
  letter-spacing: -0.03em;
  display: block;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1s cubic-bezier(.23,1,.32,1) 0.4s forwards;
}
.hero-sub {
  font-size: 14px;
  color: var(--muted);
  letter-spacing: 0.02em;
  margin-top: 20px;
  opacity: 0;
  animation: fadeUp 0.8s cubic-bezier(.23,1,.32,1) 0.7s forwards;
}
.hero-sub em { font-style: normal; color: var(--dark); }
.hero-cv-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dark);
  text-decoration: none;
  border: 1px solid var(--border);
  padding: 12px 24px;
  margin-top: 32px;
  transition: border-color 0.3s ease, gap 0.3s ease;
}
.hero-cv-btn:hover { border-color: var(--dark); gap: 16px; }
.hero-scroll {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--muted);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 48px;
  opacity: 0;
  animation: fadeUp 0.8s 1s forwards;
}
.hero-scroll-line {
  width: 40px;
  height: 1px;
  background: var(--muted);
  position: relative;
  overflow: hidden;
}
.hero-scroll-line::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: var(--dark);
  animation: slideRight 2s ease-in-out 1.5s infinite;
}
.hero-right {
  position: relative;
  overflow: hidden;
}
.hero-portrait-area {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.hero-portrait-placeholder {
  width: 75%;
  height: 88%;
  background: var(--bg);
  border-radius: 4px 4px 0 0;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(60px);
  animation: fadeUp 1.2s cubic-bezier(.23,1,.32,1) 0.2s forwards;
}
.hero-portrait-placeholder img {
  filter: grayscale(100%);
  mix-blend-mode: multiply;
  -webkit-mask-image: radial-gradient(ellipse 88% 92% at 50% 40%, black 50%, transparent 80%);
  mask-image: radial-gradient(ellipse 88% 92% at 50% 40%, black 50%, transparent 80%);
}
.hero-portrait-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 65% 70% at 50% 35%, transparent 40%, var(--bg) 80%);
  pointer-events: none;
  z-index: 1;
}
.portrait-glasses {
  position: absolute;
  top: calc(15% + 20%);
  left: 50%;
  transform: translateX(-50%);
  width: 36%;
  height: 8%;
  border: 2px solid rgba(40,38,36,0.7);
  border-radius: 50px;
  background: rgba(40,38,36,0.08);
  display: flex;
  gap: 6px;
  align-items: center;
  justify-content: center;
}

/* ============ ABOUT ============ */
#about {
  padding: 120px 48px 120px 120px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  border-top: 1px solid var(--border);
}
.about-label {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.about-label::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--muted);
}
.about-heading {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 40px;
}
.about-heading em {
  font-style: italic;
  color: var(--muted);
}
.about-body {
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
  max-width: 480px;
  margin-bottom: 48px;
}
.about-body strong { color: var(--dark); font-weight: 500; }
.about-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 500;
  color: var(--dark);
  text-decoration: none;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--dark);
  padding-bottom: 4px;
  transition: gap 0.3s ease;
}
.about-cta:hover { gap: 20px; }
.about-right {
  position: relative;
  height: 560px;
}
.about-img-card {
  position: absolute;
  background: #C5C1B9;
  border-radius: 4px;
  overflow: hidden;
}
.about-img-card.large {
  width: 72%;
  height: 80%;
  right: 0; top: 0;
  background: linear-gradient(135deg, #C8C4BC 0%, #888480 100%);
}
.about-img-card.small {
  width: 48%;
  height: 52%;
  left: 0; bottom: 40px;
  background: linear-gradient(135deg, #B8B4AC 0%, #787470 100%);
  border: 6px solid var(--bg);
}
.about-years-badge {
  position: absolute;
  right: 40px; bottom: 0;
  background: var(--dark);
  color: var(--bg);
  padding: 24px 28px;
  text-align: center;
}
.about-years-badge .num {
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 300;
  line-height: 1;
  display: block;
}
.about-years-badge .lbl {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(238,236,234,0.6);
  display: block;
  margin-top: 4px;
}

/* ============ WORK ============ */
#portfolio {
  padding: 120px 48px;
  border-top: 1px solid var(--border);
}
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 80px;
  padding: 0 0;
}
.section-label {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.section-label::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--muted);
}
.section-heading {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.work-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.work-item {
  position: relative;
  overflow: hidden;
  cursor: none;
}
.work-item-inner {
  display: block;
  aspect-ratio: 4/3;
  background: #C0BDB5;
  position: relative;
  overflow: hidden;
  transition: transform 0.6s cubic-bezier(.23,1,.32,1);
  text-decoration: none;
}
.work-item:hover .work-item-inner { transform: scale(1.03); }
.work-item.tall .work-item-inner { aspect-ratio: 3/4; }
.work-item-bg { position: absolute; inset: 0; }
.work-item-bg.bg1 { background: linear-gradient(135deg, #C8C4BC 0%, #787470 100%); }
.work-item-bg.bg2 { background: linear-gradient(225deg, #B8B4AC 0%, #686460 100%); }
.work-item-bg.bg3 { background: linear-gradient(45deg, #D0CCC4 0%, #989490 100%); }
.work-item-bg.bg4 { background: linear-gradient(315deg, #C0BCBA 0%, #888480 100%); }
.work-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(17,17,16,0);
  transition: background 0.4s ease;
  display: flex;
  align-items: flex-end;
  padding: 32px;
}
.work-item:hover .work-item-overlay { background: rgba(17,17,16,0.5); }
.work-item-info {
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(.23,1,.32,1);
  color: white;
}
.work-item:hover .work-item-info { transform: translateY(0); opacity: 1; }
.work-item-num {
  font-size: 11px;
  letter-spacing: 0.1em;
  opacity: 0.6;
  margin-bottom: 8px;
}
.work-item-title {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 300;
  line-height: 1.1;
}
.work-item-tag {
  font-size: 11px;
  letter-spacing: 0.1em;
  opacity: 0.7;
  margin-top: 8px;
  text-transform: uppercase;
}
.work-meta {
  position: absolute;
  bottom: 16px; right: 16px;
  font-size: 11px;
  font-weight: 400;
  color: var(--muted);
}
.work-grid-left { display: grid; gap: 2px; }
.work-grid-right { display: grid; gap: 2px; grid-template-rows: 1fr 1fr; }

/* ============ SERVICES ============ */
#services {
  padding: 120px 48px;
  border-top: 1px solid var(--border);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 80px;
  border: 1px solid var(--border);
}
.service-item {
  padding: 48px 40px;
  border-right: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: background 0.3s ease;
}
.service-item:last-child { border-right: none; }
.service-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--dark);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.5s cubic-bezier(.23,1,.32,1);
  z-index: 0;
}
.service-item:hover::before { transform: scaleY(1); }
.service-item > * { position: relative; z-index: 1; }
.service-item:hover .service-num,
.service-item:hover .service-title,
.service-item:hover .service-desc { color: var(--bg); }
.service-num {
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 300;
  color: rgba(17,17,16,0.1);
  line-height: 1;
  margin-bottom: 40px;
  transition: color 0.3s ease;
}
.service-title {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
  transition: color 0.3s ease;
}
.service-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
  transition: color 0.3s ease;
}
.service-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 32px;
  color: var(--dark);
  transition: color 0.3s ease, gap 0.3s ease;
}
.service-item:hover .service-arrow { color: var(--bg); gap: 14px; }

/* ============ PARCOURS TIMELINE ============ */
#parcours {
  padding: 120px 48px;
  border-top: 1px solid var(--border);
  background: var(--dark);
  color: var(--bg);
}
#parcours .section-label { color: rgba(238,236,234,0.4); }
#parcours .section-label::before { background: rgba(238,236,234,0.3); }
#parcours .section-heading { color: var(--bg); }

.timeline {
  margin-top: 80px;
}
.timeline-item {
  display: grid;
  grid-template-columns: 80px 32px 1fr;
  gap: 0 40px;
}
.timeline-year {
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(238,236,234,0.35);
  text-align: right;
  padding-top: 2px;
  line-height: 1.6;
}
.timeline-node {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.timeline-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--bg);
  flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(238,236,234,0.08);
}
.timeline-item.future .timeline-dot {
  background: transparent;
  border: 2px solid rgba(238,236,234,0.25);
  box-shadow: none;
}
.timeline-line {
  width: 1px;
  flex: 1;
  min-height: 64px;
  background: rgba(238,236,234,0.15);
  margin: 6px 0;
}
.timeline-line.dashed {
  background: repeating-linear-gradient(
    to bottom,
    rgba(238,236,234,0.25) 0,
    rgba(238,236,234,0.25) 5px,
    transparent 5px,
    transparent 13px
  );
}
.timeline-body {
  padding-bottom: 56px;
}
.timeline-title {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 300;
  line-height: 1.1;
  color: var(--bg);
  margin-bottom: 6px;
}
.timeline-item.future .timeline-title {
  color: rgba(238,236,234,0.35);
}
.timeline-subtitle {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(238,236,234,0.35);
  margin-bottom: 12px;
}
.timeline-desc {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(238,236,234,0.5);
  max-width: 520px;
}
.timeline-item.future .timeline-desc {
  color: rgba(238,236,234,0.3);
}

/* ============ TESTIMONIALS ============ */
#testimonials {
  padding: 120px 48px;
  border-top: 1px solid var(--border);
  overflow: hidden;
}
.testi-marquee-wrap { margin-top: 80px; overflow: hidden; }
.testi-marquee {
  display: flex;
  gap: 32px;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.testi-card {
  width: 400px;
  flex-shrink: 0;
  border: 1px solid var(--border);
  padding: 40px;
}
.testi-quote {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--dark);
  margin-bottom: 32px;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #C8C4BC, #888480);
}
.testi-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--dark);
}
.testi-role {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}

/* ============ CONTACT ============ */
#contact {
  padding: 120px 48px;
  border-top: 1px solid var(--border);
  text-align: center;
}
.contact-eyebrow {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 32px;
}
.contact-heading {
  font-family: var(--serif);
  font-size: clamp(56px, 8vw, 120px);
  font-weight: 300;
  line-height: 0.9;
  letter-spacing: -0.03em;
  color: var(--dark);
  margin-bottom: 56px;
}
.contact-heading em { font-style: italic; color: var(--muted); }
.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: var(--dark);
  color: var(--bg);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 20px 40px;
  text-decoration: none;
  transition: background 0.3s ease, gap 0.3s ease;
}
.contact-btn:hover { gap: 24px; background: #333; }
.contact-btn-cv {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dark);
  text-decoration: none;
  border: 1px solid var(--dark);
  padding: 18px 36px;
  transition: background 0.3s ease, color 0.3s ease, gap 0.3s ease;
}
.contact-btn-cv:hover { background: var(--dark); color: var(--bg); gap: 18px; }
.contact-socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-top: 80px;
}
.contact-social {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.25s;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
}
.contact-social:hover { color: var(--dark); border-color: var(--dark); }

/* ============ FOOTER ============ */
footer {
  padding: 32px 48px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-copy {
  font-size: 12px;
  color: var(--muted);
}
.footer-back {
  font-size: 12px;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.25s;
}
.footer-back:hover { color: var(--dark); }

/* ANIMATIONS */
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes slideRight {
  0% { left: -100%; }
  100% { left: 100%; }
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(.23,1,.32,1), transform 0.8s cubic-bezier(.23,1,.32,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* MOBILE NAV TOGGLE */
.nav-hamburger { display: none; }

@media (max-width: 768px) {
  nav { padding: 20px 24px; }
  .nav-links { display: none; }
  .nav-hamburger {
    display: block;
    width: 24px; height: 16px;
    position: relative;
    cursor: none;
  }
  .hero-inner { grid-template-columns: 40px 1fr; }
  .hero-right { display: none; }
  .hero-left { padding: 24px 24px 48px; }
  #about { grid-template-columns: 1fr; padding: 80px 24px; }
  .about-right { display: none; }
  #portfolio { padding: 80px 24px; }
  .work-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  #parcours { padding: 80px 24px; }
  .timeline-item { grid-template-columns: 56px 24px 1fr; gap: 0 20px; }
  .timeline-title { font-size: 24px; }
  .timeline-body { padding-bottom: 40px; }
  #contact { padding: 80px 24px; }
  footer { padding: 24px; }
}

/* ============ PATINAGE ============ */
#patinage {
  padding: 120px 48px;
  border-top: 1px solid var(--border);
}
.patinage-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 80px;
}
.patinage-text p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 32px;
}
.patinage-text p strong { color: var(--dark); font-weight: 500; }
.patinage-tiktok {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 500;
  color: var(--dark);
  text-decoration: none;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--dark);
  padding-bottom: 4px;
  transition: gap 0.3s ease;
}
.patinage-tiktok:hover { gap: 20px; }
.patinage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.patinage-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 4px;
  transition: transform 0.5s cubic-bezier(.23,1,.32,1);
}
.patinage-grid img:hover { transform: scale(1.03); }
@media (max-width: 768px) {
  #patinage { padding: 80px 24px; }
  .patinage-inner { grid-template-columns: 1fr; gap: 40px; }
}

/* Page transitions */
.page-transition {
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 1000;
  transform: scaleY(0);
  transform-origin: top;
}
