/* ============================================================
   ADELINE FAUCHARD — Photographe
   Design System — Dark Luxury Editorial
   ============================================================ */

/* ─── IMPORT FONTS ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=DM+Sans:wght@300;400;500&display=swap');

/* ─── CUSTOM PROPERTIES ────────────────────────────────────── */
:root {
  /* Palette */
  --black:        #090909;
  --dark:         #111111;
  --dark-2:       #191919;
  --dark-3:       #222222;
  --mid:          #333333;
  --border:       #2a2a2a;
  --border-light: rgba(255, 255, 255, 0.07);

  --gold:         #c9a255;
  --gold-light:   #dbbf7e;
  --gold-dark:    #9e7c3a;
  --gold-subtle:  rgba(201, 162, 85, 0.12);
  --gold-glow:    rgba(201, 162, 85, 0.25);

  --white:        #ffffff;
  --cream:        #f0ece4;
  --text:         #ddd9d0;
  --text-muted:   #888480;
  --text-dim:     #55524f;

  /* Typography */
  --serif:        'Cormorant Garamond', Georgia, serif;
  --sans:         'DM Sans', system-ui, -apple-system, sans-serif;

  /* Scale */
  --fs-xs:   0.75rem;
  --fs-sm:   0.875rem;
  --fs-base: 1rem;
  --fs-md:   1.125rem;
  --fs-lg:   1.375rem;
  --fs-xl:   1.75rem;
  --fs-2xl:  2.25rem;
  --fs-3xl:  3rem;
  --fs-4xl:  4rem;
  --fs-5xl:  5.5rem;
  --fs-hero: clamp(4rem, 10vw, 8.5rem);

  /* Spacing */
  --sp-1:  0.25rem;
  --sp-2:  0.5rem;
  --sp-3:  0.75rem;
  --sp-4:  1rem;
  --sp-6:  1.5rem;
  --sp-8:  2rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-24: 6rem;
  --sp-32: 8rem;
  --sp-48: 12rem;

  /* Layout */
  --max-w:       1480px;
  --max-w-text:  780px;
  --max-w-narrow: 640px;
  --header-h:    88px;
  --gutter:      clamp(1.5rem, 5vw, 4rem);

  /* Motion */
  --ease-out:    cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-in-out: cubic-bezier(0.45, 0, 0.55, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --dur-fast:    200ms;
  --dur-mid:     400ms;
  --dur-slow:    700ms;
  --dur-xslow:   1000ms;

  /* Shadows */
  --shadow-sm:   0 2px 16px rgba(0,0,0,0.4);
  --shadow-md:   0 8px 40px rgba(0,0,0,0.5);
  --shadow-lg:   0 24px 80px rgba(0,0,0,0.7);
  --shadow-gold: 0 0 40px rgba(201,162,85,0.2);

  /* Border radius */
  --r-sm:  4px;
  --r-md:  8px;
  --r-lg:  16px;
  --r-xl:  24px;
}

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

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

body {
  font-family: var(--sans);
  font-weight: 300;
  font-size: var(--fs-base);
  line-height: 1.7;
  color: var(--text);
  background-color: var(--black);
  overflow-x: hidden;
  cursor: none; /* custom cursor */
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: none;
  font-family: inherit;
}

::selection {
  background: var(--gold);
  color: var(--black);
}

/* ─── CUSTOM CURSOR ────────────────────────────────────────── */
.cursor {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
}

.cursor__dot {
  position: fixed;
  top: 0; left: 0;
  width: 8px;
  height: 8px;
  background: var(--white);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: transform var(--dur-fast) var(--ease-out),
              width var(--dur-mid) var(--ease-spring),
              height var(--dur-mid) var(--ease-spring),
              background var(--dur-mid) var(--ease-out);
  pointer-events: none;
  z-index: 9999;
}

.cursor__ring {
  position: fixed;
  top: 0; left: 0;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: transform 120ms var(--ease-out),
              border-color var(--dur-mid) var(--ease-out);
  pointer-events: none;
  z-index: 9998;
}

.cursor--hover .cursor__dot {
  width: 60px;
  height: 60px;
  background: var(--gold);
  opacity: 0.15;
}

.cursor--hover .cursor__ring {
  opacity: 0;
}

/* ─── SCROLLBAR ─────────────────────────────────────────────── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 2px; }

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

.container--narrow {
  max-width: var(--max-w-text);
}

section {
  position: relative;
}

.section-pad {
  padding-block: clamp(5rem, 12vw, 10rem);
}

.section-pad--lg {
  padding-block: clamp(7rem, 15vw, 14rem);
}

/* ─── TYPOGRAPHY ────────────────────────────────────────────── */
.t-serif { font-family: var(--serif); }
.t-sans  { font-family: var(--sans);  }

.t-display {
  font-family: var(--serif);
  font-size: var(--fs-hero);
  font-weight: 300;
  line-height: 0.92;
  letter-spacing: -0.02em;
}

.t-headline {
  font-family: var(--serif);
  font-size: clamp(var(--fs-3xl), 5vw, var(--fs-5xl));
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.01em;
}

.t-title {
  font-family: var(--serif);
  font-size: clamp(var(--fs-xl), 3vw, var(--fs-3xl));
  font-weight: 400;
  line-height: 1.2;
}

.t-subtitle {
  font-family: var(--sans);
  font-size: var(--fs-xs);
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}

.t-body {
  font-size: clamp(var(--fs-base), 1.1vw, var(--fs-md));
  line-height: 1.8;
  color: var(--text-muted);
}

.t-lead {
  font-family: var(--serif);
  font-size: clamp(var(--fs-lg), 2vw, var(--fs-2xl));
  font-weight: 300;
  font-style: italic;
  line-height: 1.5;
  color: var(--cream);
}

.t-gold  { color: var(--gold); }
.t-muted { color: var(--text-muted); }
.t-white { color: var(--white); }
.t-center{ text-align: center; }

/* ─── SECTION HEADER ────────────────────────────────────────── */
.section-header {
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.section-header--center {
  text-align: center;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: var(--fs-xs);
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-6);
}

.section-tag::before,
.section-tag::after {
  content: '';
  display: block;
  width: 2rem;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

.section-tag--no-line::before,
.section-tag--no-line::after {
  display: none;
}

/* ─── BUTTONS ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  font-family: var(--sans);
  font-size: var(--fs-xs);
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  border-radius: 0;
  transition:
    background var(--dur-mid) var(--ease-out),
    color var(--dur-mid) var(--ease-out),
    border-color var(--dur-mid) var(--ease-out),
    transform var(--dur-fast) var(--ease-spring),
    box-shadow var(--dur-mid) var(--ease-out);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  isolation: isolate; /* crée un stacking context : texte toujours au-dessus du ::before */
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: translateX(-101%);
  transition: transform var(--dur-slow) var(--ease-out);
  z-index: -1; /* sous le texte dans le stacking context du bouton */
}

.btn > * {
  position: relative;
  z-index: 1;
}

.btn:hover::before {
  transform: translateX(0);
}

/* Primary */
.btn--primary {
  background: var(--gold);
  color: #0a0a0f;
  border: 1px solid var(--gold);
}

.btn--primary::before {
  background: var(--gold-light);
}

.btn--primary:hover {
  color: #0a0a0f;
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}

/* Outline */
.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.25);
}

.btn--outline:hover {
  color: #0a0a0f;
  border-color: var(--gold);
}

/* Ghost */
.btn--ghost {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 0.75rem 2rem;
}

.btn--ghost::before {
  background: var(--gold);
}

.btn--ghost:hover {
  color: #0a0a0f;
}

/* Text link */
.btn--link {
  background: none;
  border: none;
  color: var(--gold);
  padding: 0;
  font-size: var(--fs-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  position: relative;
}

.btn--link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--dur-mid) var(--ease-out);
}

.btn--link:hover::after {
  width: 100%;
}

.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--text-muted);
  transition: all var(--dur-mid) var(--ease-out);
}

.btn-icon:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: scale(1.1);
}

/* ─── NAVIGATION ────────────────────────────────────────────── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition:
    background var(--dur-slow) var(--ease-out),
    backdrop-filter var(--dur-slow) var(--ease-out),
    border-color var(--dur-mid) var(--ease-out);
  border-bottom: 1px solid transparent;
}

.header.scrolled {
  background: rgba(9, 9, 9, 0.92);
  backdrop-filter: blur(20px) saturate(120%);
  -webkit-backdrop-filter: blur(20px) saturate(120%);
  border-bottom-color: var(--border);
}

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

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  text-decoration: none;
}

/* ─── LOGO IMAGE ────────────────────────────────────────────── */
.logo__img {
  height: clamp(72px, 9vw, 100px);
  width: auto;
  display: block;
  transition:
    height var(--dur-slow) var(--ease-out),
    opacity var(--dur-mid) var(--ease-out);
}

/* Logo légèrement réduit quand le header est scrollé */
.header.scrolled .logo__img {
  height: clamp(60px, 7vw, 80px);
}

.logo:hover .logo__img {
  opacity: 0.75;
}

.logo:hover .logo__name-accent {
  opacity: 0.8;
}

/* Fallback texte */
.logo__mark {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  letter-spacing: 0.05em;
}

.logo__text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.logo__name {
  font-family: var(--serif);
  font-size: clamp(0.9rem, 1.4vw, 1.15rem);
  font-weight: 300;
  letter-spacing: 0.15em;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1.1;
}
.logo__name-main {
  font-weight: 300;
}
.logo__name-accent {
  color: var(--gold);
  font-weight: 400;
}

.logo__tagline {
  font-family: var(--sans);
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 2px;
}

/* Nav */
.nav__list {
  display: flex;
  align-items: center;
  gap: clamp(var(--sp-6), 3vw, var(--sp-12));
}

.nav__item a {
  font-family: var(--sans);
  font-size: var(--fs-xs);
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  position: relative;
  transition: color var(--dur-fast) var(--ease-out);
}

.nav__item a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--dur-mid) var(--ease-out);
}

.nav__item a:hover,
.nav__item a.active {
  color: var(--white);
}

.nav__item a:hover::after,
.nav__item a.active::after {
  width: 100%;
}

.nav__cta {
  margin-left: var(--sp-6);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  cursor: none;
  z-index: 1001;
}

.hamburger span {
  display: block;
  height: 1px;
  background: var(--white);
  transition:
    transform var(--dur-mid) var(--ease-out),
    opacity var(--dur-fast) var(--ease-out),
    width var(--dur-mid) var(--ease-out);
}

.hamburger span:nth-child(2) {
  width: 70%;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Mobile nav */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-8);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur-mid) var(--ease-out);
}

.nav-mobile.open {
  display: flex;
  opacity: 1;
  pointer-events: all;
}

.nav-mobile .nav__item a {
  font-family: var(--serif);
  font-size: var(--fs-3xl);
  font-weight: 300;
  letter-spacing: 0.05em;
  color: var(--white);
}

/* ─── HERO ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  width: 100%;
  height: 100dvh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--black);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  transition: transform 10s var(--ease-out);
}

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

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.1) 100%),
    linear-gradient(to right, rgba(0,0,0,0.3) 0%, transparent 60%);
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-bottom: clamp(4rem, 8vw, 8rem);
  width: 100%;
}

.hero__eyebrow {
  font-size: var(--fs-xs);
  font-weight: 400;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-6);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s 0.3s var(--ease-out), transform 0.8s 0.3s var(--ease-out);
}

.hero__title {
  font-family: var(--serif);
  font-size: var(--fs-hero);
  font-weight: 300;
  line-height: 0.88;
  letter-spacing: -0.02em;
  color: var(--white);
  overflow: hidden;
}

.hero__title-line {
  display: block;
  overflow: hidden;
}

.hero__title-inner {
  display: block;
  transform: translateY(110%);
  transition: transform 1s var(--ease-out);
}

.hero__title-line:nth-child(2) .hero__title-inner {
  transition-delay: 0.15s;
}

.hero.ready .hero__eyebrow {
  opacity: 1;
  transform: translateY(0);
}

.hero.ready .hero__title-inner {
  transform: translateY(0);
}

.hero__sub {
  margin-top: var(--sp-8);
  font-family: var(--serif);
  font-size: clamp(var(--fs-lg), 2vw, var(--fs-2xl));
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.65);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s 0.9s var(--ease-out), transform 0.8s 0.9s var(--ease-out);
}

.hero.ready .hero__sub {
  opacity: 1;
  transform: translateY(0);
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
  margin-top: var(--sp-10);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s 1.1s var(--ease-out), transform 0.8s 1.1s var(--ease-out);
}

.hero.ready .hero__actions {
  opacity: 1;
  transform: translateY(0);
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  right: var(--gutter);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-3);
  z-index: 3;
  opacity: 0;
  animation: fadeIn 1s 2s forwards;
}

.hero__scroll-text {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
  writing-mode: vertical-rl;
}

.hero__scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2s 2s infinite;
}

@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  50.1%{ transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ─── ABOUT SECTION ─────────────────────────────────────────── */
.about {
  background: var(--dark);
  overflow: hidden;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(4rem, 8vw, 8rem);
  align-items: center;
}

.about__image-wrap {
  position: relative;
}

.about__image-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.about__image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

.about__image-frame:hover img {
  transform: scale(1.03);
}

.about__image-decor {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 70%;
  height: 70%;
  border: 1px solid var(--gold-dark);
  z-index: -1;
}

.about__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-6);
  margin-top: var(--sp-12);
}

.about__stat {
  text-align: center;
  padding: var(--sp-6);
  border: 1px solid var(--border);
  transition: border-color var(--dur-mid) var(--ease-out);
}

.about__stat:hover {
  border-color: var(--gold-dark);
}

.about__stat-num {
  font-family: var(--serif);
  font-size: var(--fs-4xl);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}

.about__stat-label {
  font-size: var(--fs-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: var(--sp-2);
}

/* ─── SERVICES (PRESTATIONS) ────────────────────────────────── */
.services {
  background: var(--black);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: clamp(3rem, 6vw, 5rem);
}

.service-card {
  position: relative;
  background: var(--black);
  padding: clamp(2rem, 4vw, 3.5rem);
  overflow: hidden;
  transition: background var(--dur-mid) var(--ease-out);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-slow) var(--ease-out);
}

.service-card:hover {
  background: var(--dark-2);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card__num {
  font-family: var(--serif);
  font-size: var(--fs-4xl);
  font-weight: 300;
  color: var(--border);
  line-height: 1;
  transition: color var(--dur-mid) var(--ease-out);
  margin-bottom: var(--sp-6);
}

.service-card:hover .service-card__num {
  color: var(--gold-subtle);
}

.service-card__icon {
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-sm);
  color: var(--gold);
  margin-bottom: var(--sp-6);
  transition: border-color var(--dur-mid), transform var(--dur-mid) var(--ease-spring);
}

.service-card:hover .service-card__icon {
  border-color: var(--gold);
  transform: rotate(10deg) scale(1.1);
}

.service-card__title {
  font-family: var(--serif);
  font-size: var(--fs-xl);
  font-weight: 400;
  color: var(--cream);
  margin-bottom: var(--sp-4);
  transition: color var(--dur-mid);
}

.service-card:hover .service-card__title {
  color: var(--white);
}

.service-card__desc {
  font-size: var(--fs-sm);
  line-height: 1.7;
  color: var(--text-muted);
}

.service-card__arrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  margin-top: var(--sp-6);
  font-size: var(--fs-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity var(--dur-mid) var(--ease-out),
    transform var(--dur-mid) var(--ease-out);
}

.service-card:hover .service-card__arrow {
  opacity: 1;
  transform: translateY(0);
}

/* ─── PORTFOLIO (GALERIE) ───────────────────────────────────── */
.portfolio {
  background: var(--dark);
  overflow: hidden;
}

/* Filtres */
.filter-bar {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  flex-wrap: wrap;
  margin-bottom: var(--sp-12);
}

.filter-btn {
  font-family: var(--sans);
  font-size: var(--fs-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: var(--sp-2) var(--sp-4);
  border: 1px solid transparent;
  transition: all var(--dur-mid) var(--ease-out);
  cursor: none;
}

.filter-btn:hover,
.filter-btn.active {
  color: var(--white);
  border-color: var(--gold);
}

.filter-btn.active {
  background: var(--gold-subtle);
  color: var(--gold);
}

/* Grille galerie */
.gallery-grid {
  columns: 3;
  column-gap: var(--sp-4);
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: var(--sp-4);
  overflow: hidden;
  position: relative;
  cursor: none;
}

.gallery-item__img {
  width: 100%;
  display: block;
  transition: transform 0.7s var(--ease-out);
}

.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: var(--sp-6);
  transition: background var(--dur-slow) var(--ease-out);
}

.gallery-item:hover .gallery-item__img {
  transform: scale(1.05);
}

.gallery-item:hover .gallery-item__overlay {
  background: rgba(0,0,0,0.55);
}

.gallery-item__info {
  transform: translateY(20px);
  opacity: 0;
  transition:
    transform var(--dur-mid) var(--ease-out),
    opacity var(--dur-mid) var(--ease-out);
}

.gallery-item:hover .gallery-item__info {
  transform: translateY(0);
  opacity: 1;
}

.gallery-item__cat {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-1);
}

.gallery-item__title {
  font-family: var(--serif);
  font-size: var(--fs-lg);
  font-weight: 300;
  color: var(--white);
}

.gallery-item__zoom {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: var(--fs-sm);
  transition: transform var(--dur-mid) var(--ease-spring);
}

.gallery-item:hover .gallery-item__zoom {
  transform: translate(-50%, -50%) scale(1);
}

/* ─── STATS COUNTER ─────────────────────────────────────────── */
.stats {
  background: var(--dark-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  divide-x: var(--border);
}

.stat-item {
  text-align: center;
  padding: clamp(3rem, 6vw, 5rem) var(--sp-6);
  border-right: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.stat-item:last-child {
  border-right: none;
}

.stat-item__num {
  font-family: var(--serif);
  font-size: clamp(var(--fs-3xl), 5vw, 5rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
}

.stat-item__suffix {
  font-size: 0.4em;
  color: var(--gold);
}

.stat-item__label {
  font-size: var(--fs-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: var(--sp-3);
}

.stat-item::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 1.2s var(--ease-out);
}

.stat-item.counted::before {
  width: 100%;
}

/* ─── TESTIMONIALS ──────────────────────────────────────────── */
.testimonials {
  background: var(--black);
}

.testimonials__slider {
  position: relative;
  overflow: hidden;
}

.testimonial-slide {
  display: none;
  opacity: 0;
  transition: opacity var(--dur-mid) var(--ease-out);
}

.testimonial-slide.active {
  display: block;
  opacity: 1;
}

.testimonial-card {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: clamp(3rem, 6vw, 5rem);
  position: relative;
}

.testimonial-card__quote {
  font-family: var(--serif);
  font-size: 8rem;
  line-height: 0.5;
  color: var(--gold);
  opacity: 0.15;
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  user-select: none;
}

.testimonial-card__text {
  font-family: var(--serif);
  font-size: clamp(var(--fs-lg), 2.2vw, var(--fs-2xl));
  font-weight: 300;
  font-style: italic;
  line-height: 1.7;
  color: var(--cream);
  position: relative;
  z-index: 1;
}

.testimonial-card__author {
  margin-top: var(--sp-8);
}

.testimonial-card__name {
  font-family: var(--sans);
  font-size: var(--fs-sm);
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.testimonial-card__role {
  font-size: var(--fs-xs);
  color: var(--gold);
  margin-top: var(--sp-1);
}

.testimonial-card__stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-top: var(--sp-4);
  color: var(--gold);
  font-size: var(--fs-sm);
}

.testimonials__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-4);
  margin-top: var(--sp-12);
}

.slider-btn {
  width: 3rem;
  height: 3rem;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all var(--dur-mid) var(--ease-out);
  cursor: none;
}

.slider-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.slider-dots {
  display: flex;
  gap: var(--sp-2);
}

.slider-dot {
  width: 20px;
  height: 1px;
  background: var(--border);
  transition: all var(--dur-mid) var(--ease-out);
  cursor: none;
}

.slider-dot.active {
  width: 40px;
  background: var(--gold);
}

/* ─── CONTACT CTA SECTION ───────────────────────────────────── */
.cta-section {
  background: var(--dark-2);
  text-align: center;
  overflow: hidden;
  position: relative;
}

.cta-section__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.08;
  filter: grayscale(100%);
}

.cta-section__content {
  position: relative;
  z-index: 1;
}

/* ─── CONTACT FORM ──────────────────────────────────────────── */
.contact-section {
  background: var(--dark);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(4rem, 8vw, 8rem);
  align-items: start;
}

.contact__info-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
  margin-bottom: var(--sp-8);
}

.contact__info-icon {
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: var(--fs-xs);
  flex-shrink: 0;
}

.contact__info-label {
  font-size: var(--fs-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: var(--sp-1);
}

.contact__info-value {
  font-family: var(--serif);
  font-size: var(--fs-lg);
  color: var(--cream);
}

.contact__socials {
  display: flex;
  gap: var(--sp-4);
  margin-top: var(--sp-12);
}

/* Form */
.form-group {
  margin-bottom: var(--sp-6);
}

.form-label {
  display: block;
  font-size: var(--fs-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--sp-2);
}

.form-control {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: var(--sans);
  font-size: var(--fs-sm);
  padding: var(--sp-4) var(--sp-4);
  outline: none;
  transition:
    border-color var(--dur-mid) var(--ease-out),
    background var(--dur-mid) var(--ease-out);
  border-radius: 0;
  -webkit-appearance: none;
}

.form-control::placeholder {
  color: var(--text-dim);
}

.form-control:focus {
  border-color: var(--gold);
  background: rgba(201, 162, 85, 0.05);
}

.form-control:focus::placeholder {
  opacity: 0.5;
}

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

select.form-control {
  cursor: none;
  color: var(--text);
}

select.form-control option {
  background: var(--dark-2);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
}

.form-error {
  color: #e05555;
  font-size: var(--fs-xs);
  margin-top: var(--sp-2);
}

.form-success {
  padding: var(--sp-6);
  border: 1px solid rgba(201, 162, 85, 0.3);
  background: var(--gold-subtle);
  color: var(--gold-light);
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
}

/* Honeypot */
.field-hp {
  display: none !important;
  visibility: hidden;
}

/* ─── FOOTER ────────────────────────────────────────────────── */
.footer {
  background: var(--dark-2);
  /* Pas de border-top : le dégradé .footer__wave gère la transition */
  position: relative;
}

/* Séparateur dégradé — élimine le trait dur entre la dernière section et le footer */
.footer__wave {
  width: 100%;
  height: 3px;
  background: linear-gradient(
    to right,
    transparent 0%,
    rgba(201, 162, 85, 0.3) 30%,
    rgba(201, 162, 85, 0.5) 50%,
    rgba(201, 162, 85, 0.3) 70%,
    transparent 100%
  );
}

/* ── Grille 4 colonnes ── */
.footer__grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: clamp(2rem, 4vw, 4rem);
  padding: clamp(3.5rem, 6vw, 5rem) 0 clamp(2.5rem, 4vw, 3.5rem);
  border-bottom: 1px solid var(--border);
}

/* ── Colonne marque ── */
.footer__brand {}

.footer__logo-link {
  display: flex;
  flex-direction: column;
  gap: 3px;
  text-decoration: none;
  margin-bottom: 1.1rem;
}
.footer__logo-name {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.1;
}
.footer__logo-accent {
  color: var(--gold);
  font-weight: 400;
}
.footer__logo-sub {
  font-family: var(--sans);
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.footer__tagline {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 270px;
  margin-bottom: 1.25rem;
}

/* ── Réseaux sociaux ── */
.footer__social {
  display: flex;
  gap: 0.55rem;
}
.footer__social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--text-muted);
  font-size: 0.82rem;
  text-decoration: none;
  transition: border-color var(--dur-fast), color var(--dur-fast), background var(--dur-fast);
}
.footer__social-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 162, 85, 0.08);
}

/* ── Titre de colonne ── */
.footer__col-title {
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
  font-family: var(--sans);
  font-weight: 600;
}

/* ── Liens de navigation ── */
.footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.footer__links li { display: block; }
.footer__links a {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--dur-fast), padding-left var(--dur-fast);
  display: inline-block;
}
.footer__links a:hover {
  color: var(--gold-light);
  padding-left: 0.3rem;
}

/* ── Liste contact ── */
.footer__contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.footer__contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}
.footer__contact-list a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--dur-fast);
}
.footer__contact-list a:hover { color: var(--gold-light); }
.footer__contact-icon {
  color: var(--gold);
  font-size: 0.7rem;
  width: 14px;
  flex-shrink: 0;
  margin-top: 0.18rem;
}

/* ── Bouton CTA footer ── */
.footer__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 1.1rem;
  border: 1px solid rgba(201, 162, 85, 0.45);
  border-radius: var(--r-sm);
  font-size: 0.68rem;
  font-family: var(--sans);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--gold);
  transition: background var(--dur-fast), border-color var(--dur-fast), color var(--dur-fast);
}
.footer__cta-btn i { font-size: 0.6rem; }
.footer__cta-btn:hover {
  background: rgba(201, 162, 85, 0.1);
  border-color: var(--gold);
  color: var(--gold-light);
}

/* ── Barre du bas ── */
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 1.5rem 0 2rem;
}

.footer__copyright {
  font-size: 0.68rem;
  color: var(--text-dim);
  letter-spacing: 0.04em;
}
.footer__copyright a {
  color: inherit;
  text-decoration: none;
  transition: color var(--dur-fast);
}
.footer__copyright a:hover { color: var(--gold); }

.footer__legal {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.footer__legal a {
  font-size: 0.68rem;
  color: var(--text-dim);
  text-decoration: none;
  transition: color var(--dur-fast);
}
.footer__legal a:hover { color: var(--gold); }
.footer__legal-sep {
  color: var(--text-dim);
  font-size: 0.55rem;
  opacity: 0.5;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem 3rem;
  }
  .footer__brand { grid-column: 1 / -1; }
  .footer__tagline { max-width: none; }
}
@media (max-width: 600px) {
  .footer__grid { grid-template-columns: 1fr; }
  .footer__brand { grid-column: auto; }
  .footer__bottom { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
  .footer__legal { flex-wrap: wrap; }
}

/* ─── PAGE HERO (inner pages) ───────────────────────────────── */
.page-hero {
  padding-top: calc(var(--header-h) + clamp(2rem, 3vw, 3rem));
  padding-bottom: clamp(2.5rem, 4vw, 4rem);
  background: var(--dark);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.page-hero__breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  font-size: var(--fs-xs);
  color: var(--text-dim);
  letter-spacing: 0.15em;
  margin-bottom: var(--sp-6);
}

.page-hero__breadcrumb a:hover {
  color: var(--gold);
}

/* ─── TARIFS ────────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.pricing-card {
  background: var(--dark);
  padding: clamp(2.5rem, 4vw, 3.5rem);
  position: relative;
  overflow: hidden;
  transition: background var(--dur-mid) var(--ease-out);
}

.pricing-card.featured {
  background: var(--dark-2);
}

.pricing-card.featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--gold), var(--gold-light));
}

.pricing-card__badge {
  display: inline-block;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  padding: 3px 10px;
  margin-bottom: var(--sp-6);
}

.pricing-card__title {
  font-family: var(--serif);
  font-size: var(--fs-xl);
  font-weight: 400;
  color: var(--cream);
  margin-bottom: var(--sp-2);
}

.pricing-card__price {
  font-family: var(--serif);
  font-size: clamp(var(--fs-3xl), 4vw, var(--fs-4xl));
  font-weight: 300;
  color: var(--white);
  line-height: 1;
  margin: var(--sp-6) 0;
}

.pricing-card__price-sub {
  font-size: var(--fs-xs);
  color: var(--text-muted);
  font-family: var(--sans);
  font-weight: 300;
  display: block;
  margin-top: var(--sp-2);
}

.pricing-card__includes {
  border-top: 1px solid var(--border);
  padding-top: var(--sp-6);
  margin-top: var(--sp-6);
}

.pricing-card__includes li {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: var(--fs-sm);
  color: var(--text-muted);
  padding: var(--sp-2) 0;
}

.pricing-card__includes li::before {
  content: '';
  width: 16px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

/* ─── LOADING SCREEN ────────────────────────────────────────── */
.loader {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: var(--sp-8);
  transition: opacity 0.6s var(--ease-out), visibility 0.6s var(--ease-out);
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader__logo {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 300;
  color: var(--gold);
  letter-spacing: 0.2em;
  animation: pulse 1.5s ease-in-out infinite;
}

.loader__bar {
  width: 200px;
  height: 1px;
  background: var(--border);
  overflow: hidden;
}

.loader__progress {
  height: 100%;
  background: var(--gold);
  animation: loadProgress 1.8s var(--ease-out) forwards;
}

@keyframes loadProgress {
  from { width: 0; }
  to   { width: 100%; }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.4; }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ─── MISC UTILITIES ────────────────────────────────────────── */
.divider {
  width: 3rem;
  height: 1px;
  background: var(--gold);
  margin: var(--sp-6) auto;
}

.divider--left {
  margin-left: 0;
}

.spacer-sm  { height: var(--sp-8);  }
.spacer-md  { height: var(--sp-16); }
.spacer-lg  { height: var(--sp-32); }

.hidden { display: none !important; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

.flash-message {
  padding: var(--sp-4) var(--sp-6);
  margin-bottom: var(--sp-6);
  border-left: 3px solid;
  font-size: var(--fs-sm);
}

.flash-success {
  background: rgba(16, 185, 129, 0.1);
  border-color: #10b981;
  color: #6ee7b7;
}

.flash-error {
  background: rgba(239, 68, 68, 0.1);
  border-color: #ef4444;
  color: #fca5a5;
}

/* Grid helper */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-6); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-6); }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.96);
  z-index: 9990;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--dur-mid) var(--ease-out);
  cursor: none;
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lightbox__img {
  max-width: 92vw;
  max-height: 88vh;
  object-fit: contain;
  transition: transform var(--dur-mid) var(--ease-out);
  box-shadow: var(--shadow-lg);
}

.lightbox__close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: var(--fs-sm);
  cursor: none;
  transition: all var(--dur-fast);
  z-index: 1;
}

.lightbox__close:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 3.5rem;
  height: 3.5rem;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  cursor: none;
  transition: all var(--dur-fast);
}

.lightbox__nav:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.lightbox__nav--prev { left: 2rem; }
.lightbox__nav--next { right: 2rem; }

.lightbox__caption {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: var(--text-muted);
  font-size: var(--fs-xs);
  letter-spacing: 0.1em;
}

.lightbox__counter {
  font-family: var(--serif);
  font-size: var(--fs-lg);
  color: var(--gold);
  margin-bottom: var(--sp-1);
}

/* ─── BACK TO TOP ───────────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 2.5rem;
  right: 2.5rem;
  width: 3.25rem;
  height: 3.25rem;
  border: 1px solid rgba(201, 162, 85, 0.35);
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px) scale(0.9);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    border-color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
  z-index: 500;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.back-to-top:hover {
  border-color: var(--gold);
  background: rgba(201, 162, 85, 0.12);
  box-shadow: 0 4px 24px rgba(201, 162, 85, 0.2);
  transform: translateY(-3px) scale(1.05);
}

/* ─── FAQ ACCORDÉON (page Contact) ─────────────────────────── */
.faq-item {
  cursor: pointer;
}

.faq-item summary::-webkit-details-marker,
.faq-item summary::marker {
  display: none;
  content: '';
}

.faq-item[open] summary i {
  transform: rotate(180deg);
}

.faq-item summary:hover {
  color: var(--gold);
}

.faq-item summary:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

/* ─── PAGE ACTIONS (admin compat + public) ───────────────── */
.page-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: .75rem;
}

.page-actions__left {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-wrap: wrap;
}

/* Client revisions */
.header__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: var(--sp-6);
}

.header .logo {
  grid-column: 2;
  justify-self: center;
}

.header .nav {
  grid-column: 1;
  grid-row: 1;
  justify-self: start;
}

.header__inner > div:last-child {
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
}

.logo__name,
.footer__logo-name,
.loader__wordmark {
  font-family: var(--serif);
  text-transform: uppercase;
  letter-spacing: .2em;
}

.loader__wordmark {
  color: var(--gold);
  font-size: clamp(1.6rem, 4vw, 3rem);
  font-weight: 300;
  animation: pulse 1.5s ease-in-out infinite;
}

.footer__grid {
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: clamp(1.25rem, 3vw, 2.25rem);
  padding: clamp(1.75rem, 4vw, 2.75rem) 0 clamp(1.25rem, 3vw, 2rem);
}

.footer__bottom {
  padding: 1rem 0 1.15rem;
}

.footer__tagline {
  margin-bottom: .9rem;
}

@media (max-width: 1024px) {
  .header__inner {
    display: flex;
  }
}
