﻿/*
Theme Name: SQ Web
Theme URI: 
Author: SQ 3D
Author URI: 
Description: A custom theme made by SQ 3D team, tailored to your needs.
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 5.7
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: sq-web
Tags: 
*/

/* ================================================================
   LE MARTEAU QUI CHANTE â€” style.css
   High-contrast, industrial, minimalist lyric opera aesthetic.
   ================================================================ */

/* ----------------------------------------------------------------
   1. CUSTOM PROPERTIES (Design Tokens)
   ---------------------------------------------------------------- */
:root {
  /* Core palette â€” hardened black/white/red triad */
  --clr-white: #ffffff;
  --clr-black: #000000;
  --clr-red: #ff0000;

  /* Complementary â€” eliminated mid-tones, now pure black */
  --clr-charcoal: #000000;
  --clr-silver: #a6a6a6;
  --clr-concrete: #ffffff;
  --clr-dark-mid: #000000;

  /* Typography */
  --font-display:
    "Rubik Mono One", "Arial Black", "Impact", "Franklin Gothic Heavy",
    system-ui, sans-serif;
  --font-body: "Arial", "Helvetica Neue", "Helvetica", system-ui, sans-serif;

  /* Type scale */
  --fs-hero: clamp(2.8rem, 8vw, 7rem);
  --fs-h2: clamp(2rem, 5vw, 4rem);
  --fs-h3: clamp(1.2rem, 2.5vw, 1.8rem);
  --fs-body: 1rem;
  --fs-small: 0.875rem;
  --fs-eyebrow: 0.7rem;

  /* Spacing */
  --sp-xs: 0.5rem;
  --sp-sm: 1rem;
  --sp-md: 2rem;
  --sp-lg: 4rem;
  --sp-xl: 8rem;

  /* Layout */
  --max-w: 1280px;
  --nav-h: 80px;

  /* Transitions */
  --t-fast: 0.15s ease;
  --t-mid: 0.3s ease;
  --t-slow: 0.6s ease;
  --t-grayscale: 0.4s ease-in-out;

  /* Z-index layers */
  --z-base: 1;
  --z-content: 10;
  --z-overlay: 200;
  --z-nav: 300;
  --z-menu: 400;
}

/* ----------------------------------------------------------------
   1b. CUSTOM CURSOR
   Two-part cursor: a hammer image (immediate, swings on click)
   + a lagging red ring. Hidden automatically on touch/pointer:coarse.
   ---------------------------------------------------------------- */

/* Hide the native cursor on non-touch devices */
@media (pointer: fine) {
  * {
    cursor: none !important;
  }
}

/* Hammer â€” replaces the dot. The image is anchored so the striking face
   of the head (not the image's top-left corner) sits at the pointer,
   which keeps clicks landing where the head visually lands. Rotation
   pivots near the base of the handle (the "grip") so it swings like a
   real hammer instead of spinning in place. */
.cursor-hammer {
  position: fixed;
  top: 0;
  left: 0;
  width: 36px;
  height: auto; /* preserves the artwork's native ratio */
  pointer-events: none;
  z-index: 9999;
  transform-origin: 50% 80%;
  transform: translate(-50%, -41%) rotate(-15deg);
  transition: transform var(--t-fast) ease-out;
  will-change: transform;
}

/* Cocked back further on hoverable elements, like it's ready to swing */
body.cursor-hover .cursor-hammer {
  transform: translate(-50%, -41%) rotate(-32deg) scale(1.1);
}

/* The hit â€” a one-shot swing triggered by JS on mousedown */
.cursor-hammer.is-striking {
  animation: hammerStrike 0.32s cubic-bezier(0.3, 0, 0.4, 1);
}

@keyframes hammerStrike {
  0% {
    transform: translate(-50%, -41%) rotate(-15deg);
  }
  25% {
    transform: translate(-50%, -41%) rotate(-36deg);
  }
  55% {
    transform: translate(-50%, -41%) rotate(30deg) scale(0.95);
  }
  75% {
    transform: translate(-50%, -41%) rotate(6deg);
  }
  100% {
    transform: translate(-50%, -41%) rotate(-15deg);
  }
}

/* Impact shockwave â€” a quick expanding ring stamped at the strike point */
.cursor-impact {
  position: fixed;
  top: 0;
  left: 0;
  width: 10px;
  height: 10px;
  border: 2px solid var(--clr-red);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9997;
  transform: translate(-50%, -50%) scale(1);
  opacity: 0.9;
  animation: cursorImpact 0.4s ease-out forwards;
}

@keyframes cursorImpact {
  to {
    transform: translate(-50%, -50%) scale(4.5);
    opacity: 0;
  }
}

/* Ring â€” larger, lags behind (JS lerp), hollow */
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 36px;
  height: 36px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition:
    border-color var(--t-mid),
    width var(--t-mid),
    height var(--t-mid);
  will-change: transform;
}

/* Cursor expand state â€” on hoverable elements */
body.cursor-hover .cursor-ring {
  width: 56px;
  height: 56px;
  border-color: var(--clr-red);
}

/* Hide custom cursor on touch devices */
@media (pointer: coarse) {
  .cursor-hammer,
  .cursor-ring {
    display: none;
  }
}

/* ----------------------------------------------------------------
   1c. CUSTOM SCROLLBAR (Webkit + Firefox)
   ---------------------------------------------------------------- */

/* Webkit browsers (Chrome, Safari, Edge) */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: var(--clr-black);
}

::-webkit-scrollbar-thumb {
  background-color: var(--clr-red);
  border-radius: 0; /* Sharp, industrial â€” no rounding */
}

::-webkit-scrollbar-thumb:hover {
  background-color: var(--clr-white);
}

::-webkit-scrollbar-corner {
  background: var(--clr-black);
}

/* Firefox */
html {
  scrollbar-width: thin;
  scrollbar-color: var(--clr-red) var(--clr-black);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  background-color: var(--clr-black);
  color: var(--clr-white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* img,
svg {
  display: block;
  max-width: 100%;
} */

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

/* ── Reusable custom-list — Marteau hammer SVG marker ──
   Add the `custom-list` class to any <ul> to get the hammer icon
   as the list-item bullet. */
.custom-list {
  margin: 1rem;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.custom-list > li {
  position: relative;
  padding-left: 1.4rem;
}

.custom-list > li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.4em;
  width: 0.8em;
  height: 0.8em;
  background-image: url("assets/img/marteau-list-icon.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  pointer-events: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font: inherit;
}

input,
select,
textarea {
  font: inherit;
}

/* ----------------------------------------------------------------
   3. ACCESSIBILITY
   ---------------------------------------------------------------- */

/* Visible focus ring for keyboard users */
:focus-visible {
  outline: 2px solid var(--clr-red);
  outline-offset: 3px;
}

/* Screen-reader only utility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Respect reduced-motion preferences */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ----------------------------------------------------------------
   5. TYPOGRAPHY SYSTEM
   ---------------------------------------------------------------- */
.section-eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: var(--fs-eyebrow);
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--clr-red);
  margin-bottom: var(--sp-sm);
}

.section-eyebrow--inverted {
  color: rgba(255, 255, 255, 0.6);
}

.section-title {
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--clr-white);
  margin-bottom: var(--sp-md);
}

.section-title--dark {
  color: var(--clr-black);
}

.section-title--white {
  color: var(--clr-white);
}

/* ----------------------------------------------------------------
   6. LETTER HOVER INTERACTION
   JS wraps each character in a <span class="char">.
   Hover on the parent triggers individual char colour shift.
   ---------------------------------------------------------------- */
.js-letter-hover .char {
  display: inline-block;
  transition: color var(--t-mid);
  /* Prevent letter collapse for whitespace */
  white-space: pre;
}

.js-letter-hover:hover .char {
  color: var(--clr-red);
}

/* Staggered delay: applied by JS via --i custom property */
.js-letter-hover .char {
  transition-delay: calc(var(--i, 0) * 20ms);
}

/* When on light background, non-hover state is black */
.section--light .js-letter-hover .char,
.section--concrete .js-letter-hover .char {
  color: var(--clr-black);
}

.section--light .js-letter-hover:hover .char,
.section--concrete .js-letter-hover:hover .char {
  color: var(--clr-red);
}

/* ----------------------------------------------------------------
   7. SCROLL REVEAL ANIMATIONS
   ---------------------------------------------------------------- */
.reveal-item {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered children within a reveal section */
.reveal-item:nth-child(2) {
  transition-delay: 0.1s;
}
.reveal-item:nth-child(3) {
  transition-delay: 0.2s;
}
.reveal-item:nth-child(4) {
  transition-delay: 0.3s;
}

/* ----------------------------------------------------------------
   8. NAVIGATION â€” WordPress Navigation block version
   ----------------------------------------------------------------
   Setup required in the Site Editor (one-time):
   1. Header template part â†’ Advanced â†’ Additional CSS class(es):
        site-header
      (fixed, full-width bar that toggles transparent/white on scroll)
   2. The Group block wrapping the logo + <nav>
      (the row with "is-content-justification-space-between")
      â†’ Additional CSS class(es):
        nav-container
      (centered, max-width flex row)
   3. Optional â€” to style one menu item as a CTA button, give that
      Navigation Link block the Additional CSS class:
        nav-cta

   The mobile/overlay menu is the block's native "Overlay Menu" â€”
   open/close, focus-trap, Escape key, and outside-click are all
   handled by WordPress's Interactivity API. The old burger-btn /
   #mobile-menu / .mobile-link JS can be removed entirely.
   ---------------------------------------------------------------- */

@media (max-width: 1024px) {
  /* Hide the full navigation list unless the mobile modal is actively opened */
  .wp-block-navigation__responsive-container:not(.is-menu-open.has-modal-open) {
    display: none !important;
  }

  /* Force the hamburger toggle button to show on tablet screens */
  .wp-block-navigation__responsive-container-open {
    display: flex !important;
  }
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-nav);
  background-color: transparent;
  border-bottom: 4px solid transparent;
  transition:
    background-color var(--t-mid),
    border-bottom-color var(--t-mid),
    box-shadow var(--t-mid);
}

.site-header.scrolled {
  background-color: var(--clr-white);
  border-bottom-color: var(--clr-red);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
}

.nav-container {
  /* display: flex;
  align-items: center;
  justify-content: space-between; */
  /* max-width: var(--max-w); */
  /* margin: 0 auto; */
  /* padding: var(--sp-sm) var(--sp-md); */
}

/* ---- Desktop nav links ---- */
.wp-block-navigation__container {
  gap: var(--sp-md);
}

.wp-block-navigation-item__content {
  /* font-family: var(--font-display);
  font-size: var(--fs-small);
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85) !important; */
  text-decoration: none;
  transition: color var(--t-fast);
  position: relative;
}

.wp-block-navigation-item__content::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--clr-red);
  transition: width var(--t-mid);
}

.wp-block-navigation-item__content:hover::after,
.wp-block-navigation-item.current-menu-item
  .wp-block-navigation-item__content::after {
  width: 100%;
}

.wp-block-navigation-item.current-menu-item.nav-cta
  .wp-block-navigation-item__content {
  color: var(--clr-white) !important;
  background-color: var(--clr-red);
}

.wp-block-navigation-item__content:hover {
  color: var(--clr-white) !important;
}

/* Scrolled state â€” links switch to black */
.site-header.scrolled .wp-block-navigation-item__content {
  color: rgba(0, 0, 0, 0.65) !important;
}

.site-header.scrolled .wp-block-navigation-item__content:hover {
  color: var(--clr-black) !important;
}

/* ---- Optional CTA-styled menu item (add class "nav-cta" to the link block) ---- */
.wp-block-navigation-item.nav-cta .wp-block-navigation-item__content {
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 0.4rem 1rem;
}

.wp-block-navigation-item.nav-cta .wp-block-navigation-item__content::after {
  display: none;
}

.wp-block-navigation-item.nav-cta .wp-block-navigation-item__content:hover {
  background-color: var(--clr-red);
  border-color: var(--clr-red);
  color: var(--clr-white) !important;
}

.site-header.scrolled
  .wp-block-navigation-item.nav-cta
  .wp-block-navigation-item__content {
  border-color: rgba(0, 0, 0, 0.3);
}

/* ---- Burger / open-menu button ---- */
.wp-block-navigation__responsive-container-open {
  cursor: none; /* keeps your custom hammer cursor active over this control */
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 40px;
  height: 40px;
  padding: 8px;
  transition: border-color var(--t-mid);
}

.wp-block-navigation__responsive-container-open svg path {
  fill: var(--clr-white);
  transition: fill var(--t-mid);
}

.site-header.scrolled .wp-block-navigation__responsive-container-open {
  border-color: rgba(0, 0, 0, 0.2);
}

.site-header.scrolled .wp-block-navigation__responsive-container-open svg path {
  fill: var(--clr-black);
}

/* ----------------------------------------------------------------
   11. BUTTONS â€” WordPress block buttons
   (typography, padding, base border come from theme.json elements.button)
   Moved from marteau-hero block so they are globally accessible
   to every block (hero, events-container, etc.).
   ---------------------------------------------------------------- */

.wp-block-button {
  margin: 0;
}

.wp-block-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-sm);
  /* justify-content: center; */
}

/* â”€â”€ Base button link (core/button â†’ .wp-block-button__link) â”€â”€ */
.wp-block-button__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: var(--fs-small);
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.85rem 1rem;
  border: 2px solid currentColor;
  border-radius: 0;
  background: none;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition:
    background-color var(--t-fast),
    color var(--t-fast),
    border-color var(--t-fast),
    transform var(--t-fast);
}

.wp-block-button__link:hover {
  transform: translateY(-2px);
}

.wp-block-button__link:active {
  transform: translateY(0);
}

/* 1. Default (no style modifier) â†’ solid primary CTA */
.wp-block-button:not(.is-style-outline):not(.btn--outline)
  > .wp-block-button__link {
  background-color: var(--clr-white);
  color: var(--clr-black);
  border-color: var(--clr-white);
}

.wp-block-button:not(.is-style-outline):not(.btn--outline)
  > .wp-block-button__link:hover {
  background-color: var(--clr-red);
  border-color: var(--clr-red);
  color: var(--clr-white);
}

/* 2. Outline (core is-style-outline) */
.wp-block-button.is-style-outline > .wp-block-button__link {
  background-color: transparent;
  color: var(--clr-white);
  border-color: var(--clr-white);
}

.wp-block-button.is-style-outline > .wp-block-button__link:hover {
  background-color: var(--clr-red);
  border-color: var(--clr-red);
  color: var(--clr-white);
}

/* 3. .btn--primary modifier â†’ solid white â†’ red fill on hover */
.wp-block-button.btn--primary > .wp-block-button__link {
  background-color: var(--clr-white);
  color: var(--clr-black);
  border-color: var(--clr-white);
}

.wp-block-button.btn--primary > .wp-block-button__link:hover {
  background-color: var(--clr-red);
  border-color: var(--clr-red);
  color: var(--clr-white);
}

/* 4. .btn--outline modifier â†’ transparent â†’ red fill on hover */
.wp-block-button.btn--outline > .wp-block-button__link {
  background-color: transparent;
  color: var(--clr-white);
  border-color: var(--clr-white);
}

.wp-block-button.btn--outline > .wp-block-button__link:hover {
  background-color: var(--clr-red);
  border-color: var(--clr-red);
  color: var(--clr-white);
}

/* 5. .btn--white modifier (on red backgrounds) â†’ white â†’ black on hover */
.wp-block-button.btn--white > .wp-block-button__link {
  background-color: var(--clr-white);
  color: var(--clr-red);
  border-color: var(--clr-white);
}

/* 6. .btn--black-outline modifier → transparent bg → black text/border → red fill on hover */
.wp-block-button.btn--black-outline > .wp-block-button__link {
  background-color: transparent;
  color: var(--clr-black);
  border-color: var(--clr-black);
}

.wp-block-button.btn--black-outline > .wp-block-button__link:hover {
  background-color: var(--clr-red);
  border-color: var(--clr-red);
  color: var(--clr-white);
}

.wp-block-button.btn--white > .wp-block-button__link:hover {
  background-color: var(--clr-black);
  border-color: var(--clr-black);
  color: var(--clr-white);
}

/* â”€â”€ Ticket button size modifier (used by events-container) â”€â”€ */
.btn--ticket {
  font-size: 0.72rem;
  padding: 0.65rem 1.4rem;
  letter-spacing: 0.14em;
}

/* Text link */
.text-link {
  color: var(--clr-red);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--t-fast);
}

.text-link:hover {
  color: var(--clr-white);
}

.text-link--dark {
  color: var(--clr-black);
}

.text-link--dark:hover {
  color: var(--clr-red);
}

.text-link--light {
  color: rgba(255, 255, 255, 0.8);
}

.text-link--light:hover {
  color: var(--clr-white);
}

/* ----------------------------------------------------------------
   14. SHOW SECTION â€” Le PhlÃ©gÃ©thon
   ---------------------------------------------------------------- */
.show-header {
  margin-bottom: var(--sp-lg);
  max-width: 900px;
}

.show-subtitle {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 400;
  color: var(--clr-charcoal);
  margin-bottom: var(--sp-sm);
  font-style: italic;
}

.show-synopsis {
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.7;
  color: #333;
}

/* Discover link */
.discover-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: var(--sp-lg);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clr-black);
  text-decoration: none;
  border-bottom: 2px solid var(--clr-red);
  padding-bottom: 0.25rem;
  transition:
    color var(--t-fast),
    gap var(--t-mid);
}

.discover-link:hover {
  color: var(--clr-red);
  gap: 1.25rem;
}

.discover-link__arrow {
  font-size: 1.3rem;
  line-height: 1;
  transition: transform var(--t-mid);
}

.discover-link:hover .discover-link__arrow {
  transform: translateX(6px);
}

/* ----------------------------------------------------------------
   15. CUSTOM AUDIO PLAYER (deprecated â€” replaced by video player)
   ---------------------------------------------------------------- */
.audio-player {
  background-color: var(--clr-black);
  color: var(--clr-white);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: var(--sp-md);
  max-width: 700px;
  position: relative;
}

.audio-player::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--clr-red);
}

/* ----------------------------------------------------------------
   16. AGENDA & PRESSE (placeholder sections)
   ---------------------------------------------------------------- */
.agenda-empty,
.presse-empty {
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.7;
  max-width: 600px;
}

.agenda-empty {
  color: rgba(255, 255, 255, 0.7);
}

.presse-empty {
  color: #444;
}

/* ----------------------------------------------------------------
   17. SOUTENIR SECTION
   ---------------------------------------------------------------- */
.soutenir-text {
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.7;
  max-width: 680px;
  margin-bottom: var(--sp-lg);
  color: rgba(255, 255, 255, 0.9);
}

/* â”€â”€ Page editorial intro banner â”€â”€ */
.fabrique-banner {
  padding-top: calc(var(--nav-h) + 5rem);
  padding-bottom: 5rem;
  background-color: var(--clr-black);
  border-bottom: 3px solid var(--clr-red);
  position: relative;
  overflow: hidden;
}

/* Watermark glyph in the banner background â€” hammer, echoes brand */
.fabrique-banner::before {
  content: "âš’";
  position: absolute;
  right: -0.1em;
  bottom: -0.3em;
  font-size: clamp(12rem, 30vw, 22rem);
  font-family: var(--font-display);
  font-weight: 900;
  color: rgba(255, 0, 0, 0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.fabrique-banner .container {
  position: relative;
  z-index: 1;
}

.fabrique-banner__eyebrow {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--clr-red);
  margin-bottom: 1.5rem;
}

.fabrique-banner__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6vw, 5.5rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--clr-white);
  margin-bottom: 1.5rem;
}

.fabrique-banner__subtitle {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2.2vw, 1.35rem);
  font-weight: 300;
  color: var(--clr-silver);
  font-style: italic;
  max-width: 760px;
  line-height: 1.55;
}

/* â”€â”€ Partnership trinity wrapper â”€â”€ */
.fabrique-main {
  background-color: var(--clr-black);
}

/* Shared two-column row: content / media, alternates via modifier */
.partnership {
  padding: 6rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.partnership .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.partnership__content {
  order: 1;
}

.partnership__media {
  order: 2;
}

/* Alternating layout â€” visually flips the columns, DOM order unchanged */
.partnership--alt .partnership__content {
  order: 2;
}

.partnership--alt .partnership__media {
  order: 1;
}

/* Industrial block (Derichebourg) â€” full-bleed charcoal background */
.partnership--industrial {
  background-color: var(--clr-charcoal);
  margin: 0 calc(50% - 50vw);
  padding-left: calc(50vw - 50%);
  padding-right: calc(50vw - 50%);
}

.partnership__meta {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clr-red);
  border: 1px solid rgba(255, 0, 0, 0.3);
  padding: 0.3rem 0.75rem;
  margin-bottom: 1.5rem;
}

.partnership__title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.4vw, 2.75rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--clr-white);
  margin-bottom: 0.5rem;
}

.partnership__text {
  font-size: 0.98rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.6);
  max-width: 560px;
}

/* â”€â”€ Single placeholder media box (sections 1 & 2) â”€â”€ */
.media-placeholder {
  position: relative;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.02);
  background-image: repeating-linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.025) 0px,
    rgba(255, 255, 255, 0.025) 1px,
    transparent 1px,
    transparent 14px
  );
  border: 1px dashed rgba(255, 255, 255, 0.18);
}

/* Corner accent marks â€” industrial framing device */
.media-placeholder::before,
.media-placeholder::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  background-color: var(--clr-red);
}

.media-placeholder::before {
  top: -1px;
  left: -1px;
}

.media-placeholder::after {
  bottom: -1px;
  right: -1px;
}

.media-placeholder__label {
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.35);
  text-transform: uppercase;
  max-width: 85%;
}

/* â”€â”€ Gallery grid (section 3 â€” imagery placeholders) â”€â”€ */
.partnership__gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 130px;
  gap: 0.85rem;
}

.gallery-tile {
  position: relative;
  background-color: rgba(255, 255, 255, 0.015);
  background-image: repeating-linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.03) 0px,
    rgba(255, 255, 255, 0.03) 1px,
    transparent 1px,
    transparent 14px
  );
  border: 1px dashed rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  text-align: center;
}

.gallery-tile--label {
  grid-column: 1 / -1;
  grid-row: span 2;
}

.gallery-tile--label::before,
.gallery-tile--label::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  background-color: var(--clr-red);
}

.gallery-tile--label::before {
  top: -1px;
  left: -1px;
}
.gallery-tile--label::after {
  bottom: -1px;
  right: -1px;
}

.gallery-tile__label {
  font-size: 0.74rem;
  letter-spacing: 0.04em;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.35);
  text-transform: uppercase;
  max-width: 90%;
}

.gallery-tile__mark {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: rgba(255, 255, 255, 0.12);
}

/* â”€â”€ Responsive: stack columns below 860px â”€â”€ */
@media (max-width: 860px) {
  .partnership .container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .partnership {
    padding: 4rem 0;
  }

  .partnership__content,
  .partnership--alt .partnership__content {
    order: 1;
  }

  .partnership__media,
  .partnership--alt .partnership__media {
    order: 2;
  }

  .partnership__text {
    max-width: 100%;
  }

  .partnership--industrial {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

@media (max-width: 480px) {
  .fabrique-banner__title {
    font-size: 2rem;
  }

  .partnership {
    padding: 3rem 0;
  }

  .partnership__gallery {
    grid-auto-rows: 110px;
  }
}

/* ----------------------------------------------------------------
   17c. PHLEGETHON PAGE (phlegethon.html)
   ---------------------------------------------------------------- */
.phlegethon-hero {
  padding-top: calc(var(--nav-h) + 4rem);
  padding-bottom: 4rem;
  background-color: var(--clr-black);
  border-bottom: 3px solid var(--clr-red);
  position: relative;
  overflow: hidden;
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.phlegethon-hero::before {
  content: "â™©";
  position: absolute;
  right: -0.05em;
  bottom: -0.2em;
  font-size: clamp(16rem, 35vw, 28rem);
  font-family: var(--font-display);
  font-weight: 900;
  color: rgba(255, 0, 0, 0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.phlegethon-hero .container {
  position: relative;
  z-index: 2;
}

.phlegethon-hero__bg-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.phlegethon-hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: grayscale(50%) brightness(0.4);
  display: block;
}

.phlegethon-hero__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.3) 60%,
    rgba(0, 0, 0, 0.7) 100%
  );
  z-index: 1;
}

.phlegethon-hero__badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clr-red);
  border: 1px solid rgba(255, 0, 0, 0.35);
  padding: 0.35rem 1rem;
  margin-bottom: 1.5rem;
}

.phlegethon-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 8vw, 6rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--clr-white);
  margin-bottom: 0.5rem;
}

.phlegethon-hero__title .char {
  transition: color var(--t-mid);
}

.phlegethon-hero:hover .phlegethon-hero__title .char {
  color: var(--clr-red);
}

.phlegethon-hero__subtitle {
  font-family: var(--font-body);
  font-size: clamp(1.2rem, 2.8vw, 2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--clr-silver);
  margin-bottom: 1.25rem;
  letter-spacing: 0.03em;
}

.phlegethon-hero__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.06em;
}

.phlegethon-hero__meta-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.phlegethon-hero__meta-item::before {
  content: "â—†";
  color: var(--clr-red);
  font-size: 0.5rem;
}

.phlegethon-main {
  background-color: var(--clr-charcoal);
  padding: var(--sp-xl) 0;
}

.phlegethon-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.phlegethon-col__label {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clr-red);
  margin-bottom: 0.75rem;
}

.phlegethon-col__title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.8vw, 2.2rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: var(--clr-white);
  margin-bottom: 1.25rem;
  line-height: 1.1;
}

.phlegethon-col__text {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
}

.phlegethon-col__text strong {
  color: var(--clr-white);
  font-weight: 700;
}

.phlegethon-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.phlegethon-grid__item {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background-color: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: border-color var(--t-mid);
}

.phlegethon-grid__item:hover {
  border-color: var(--clr-red);
}

.phlegethon-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(60%) brightness(0.7);
  transition: filter var(--t-grayscale);
}

.phlegethon-grid__item:hover img {
  filter: grayscale(10%) brightness(0.9);
}

.phlegethon-grid__item--tall {
  grid-row: span 2;
  aspect-ratio: auto;
}

.tech-specs {
  background-color: var(--clr-black);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 3px solid var(--clr-red);
  padding: 1.75rem 2rem;
  margin-bottom: 2rem;
}

.tech-specs__title {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clr-silver);
  margin-bottom: 0.75rem;
}

.tech-specs__list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.tech-specs__item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.6);
  border-bottom: 1px dashed rgba(255, 255, 255, 0.06);
  padding-bottom: 0.4rem;
}

.tech-specs__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.tech-specs__item strong {
  color: var(--clr-white);
  font-weight: 700;
}

.tech-specs__item .tech-specs__value {
  color: var(--clr-white);
  font-weight: 700;
  font-family: var(--font-display);
  letter-spacing: 0.02em;
}

.cta-panel {
  background-color: var(--clr-black);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-top: 3px solid var(--clr-red);
  padding: 3rem 2.5rem;
  text-align: center;
  margin-top: var(--sp-xl);
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.cta-panel__title {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--clr-white);
  margin-bottom: 0.75rem;
}

.cta-panel__text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
  max-width: 560px;
  margin: 0 auto 2rem;
}

.cta-panel__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-white);
  background-color: var(--clr-red);
  border: 2px solid var(--clr-red);
  padding: 1rem 2.8rem;
  text-decoration: none;
  transition:
    background-color var(--t-fast),
    color var(--t-fast),
    border-color var(--t-fast),
    transform var(--t-fast);
  position: relative;
  overflow: hidden;
}

.cta-panel__btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--clr-white);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-mid);
  z-index: 0;
}

.cta-panel__btn:hover {
  transform: translateY(-2px);
  border-color: var(--clr-white);
}

.cta-panel__btn:hover::after {
  transform: scaleX(1);
}

.cta-panel__btn span {
  position: relative;
  z-index: 1;
  transition: color var(--t-fast);
}

.cta-panel__btn:hover span {
  color: var(--clr-black);
}

.cta-panel__btn .cta-icon {
  display: inline-block;
  font-size: 1.2rem;
  line-height: 1;
  position: relative;
  z-index: 1;
  transition: transform var(--t-mid);
}

.cta-panel__btn:hover .cta-icon {
  transform: translateX(4px);
}

.phlegethon-col.reveal-item:nth-child(1) {
  transition-delay: 0.05s;
}

.phlegethon-col.reveal-item:nth-child(2) {
  transition-delay: 0.15s;
}

@media (max-width: 1024px) {
  .phlegethon-split {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .phlegethon-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .phlegethon-grid__item--tall {
    grid-row: span 1;
  }
}

@media (max-width: 768px) {
  .phlegethon-hero {
    min-height: 50vh;
    padding-top: calc(var(--nav-h) + 3rem);
    padding-bottom: 3rem;
  }

  .phlegethon-hero__bg-img {
    object-position: center 40%;
  }

  .phlegethon-hero__badge {
    font-size: 0.55rem;
    padding: 0.25rem 0.75rem;
  }

  .phlegethon-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cta-panel {
    padding: 2.5rem 1.5rem;
  }

  .cta-panel__btn {
    width: 100%;
    justify-content: center;
    padding: 0.9rem 1.8rem;
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  .phlegethon-hero__title {
    font-size: 2.2rem;
  }

  .phlegethon-hero__subtitle {
    font-size: 1rem;
  }

  .phlegethon-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }

  .phlegethon-col__text {
    font-size: 0.92rem;
  }

  .tech-specs {
    padding: 1.25rem 1.25rem;
  }
}

/* ----------------------------------------------------------------
   17d. PRESSE PAGE (presse.html)
   ---------------------------------------------------------------- */
.presse-banner {
  padding-top: calc(var(--nav-h) + 5rem);
  padding-bottom: 5rem;
  background-color: var(--clr-black);
  border-bottom: 3px solid var(--clr-red);
  position: relative;
  overflow: hidden;
}

.presse-banner::before {
  content: "âœ•";
  position: absolute;
  right: -0.05em;
  bottom: -0.2em;
  font-size: clamp(14rem, 35vw, 28rem);
  font-family: var(--font-display);
  font-weight: 900;
  color: rgba(255, 0, 0, 0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.presse-banner .container {
  position: relative;
  z-index: 1;
}

.presse-banner__eyebrow {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--clr-red);
  margin-bottom: 1.5rem;
}

.presse-banner__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6vw, 5.5rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--clr-white);
  margin-bottom: 1.25rem;
}

.presse-banner__subtitle {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2.2vw, 1.35rem);
  font-weight: 300;
  color: var(--clr-silver);
  font-style: italic;
  max-width: 640px;
  line-height: 1.55;
}

.presse-main {
  background-color: var(--clr-black);
  padding-top: var(--sp-xl);
  padding-bottom: var(--sp-xl);
}

.presse-hub {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.zone-title {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--clr-white);
  border-left: 3px solid var(--clr-red);
  padding-left: 0.85rem;
  margin-bottom: var(--sp-md);
  line-height: 1.1;
}

.zone-eyebrow {
  display: block;
  font-size: var(--fs-eyebrow);
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--clr-red);
  margin-bottom: 0.75rem;
}

.zone-downloads {
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
}

.download-card {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-sm);
  background-color: var(--clr-charcoal);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-top: 3px solid var(--clr-red);
  padding: 1.4rem 1.25rem;
  text-decoration: none;
  color: var(--clr-white);
  transition:
    border-color var(--t-mid),
    background-color var(--t-mid),
    transform var(--t-fast);
}

.download-card:hover {
  border-color: var(--clr-red);
  background-color: var(--clr-dark-mid);
  transform: translateY(-2px);
}

.download-card:focus-visible {
  outline: 2px solid var(--clr-red);
  outline-offset: 3px;
}

.download-card__icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  background-color: var(--clr-red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  transition: background-color var(--t-fast);
}

.download-card:hover .download-card__icon {
  background-color: var(--clr-white);
  color: var(--clr-black);
}

.download-card__icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--clr-white);
  fill: none;
  transition: stroke var(--t-fast);
}

.download-card:hover .download-card__icon svg {
  stroke: var(--clr-black);
}

.download-card__body {
  flex: 1;
}

.download-card__name {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--clr-white);
  margin-bottom: 0.25rem;
  line-height: 1.2;
}

.download-card__meta {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clr-silver);
}

.download-card__tag {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background-color: rgba(255, 0, 0, 0.12);
  color: var(--clr-red);
  border: 1px solid rgba(255, 0, 0, 0.3);
  padding: 0.15rem 0.5rem;
  margin-top: 0.35rem;
}

.download-notice {
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 3px solid var(--clr-silver);
  padding: 1.1rem 1.25rem;
}

.download-notice__text {
  font-size: 0.82rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: var(--sp-sm);
}

.zone-photos {
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem;
}

.photo-item {
  position: relative;
  aspect-ratio: 4 / 3;
  background-color: var(--clr-charcoal);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  display: block;
  text-decoration: none;
  cursor: pointer;
  transition: border-color var(--t-mid);
}

.photo-item:hover {
  border-color: var(--clr-red);
}

.photo-item:focus-visible {
  outline: 2px solid var(--clr-red);
  outline-offset: 3px;
}

.photo-item__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(80%) brightness(0.75);
  transition:
    filter var(--t-slow),
    transform var(--t-slow);
}

.photo-item:hover .photo-item__img {
  filter: grayscale(0%) brightness(0.95);
  transform: scale(1.04);
}

.photo-item--placeholder .photo-item__img {
  display: none;
}

.photo-item--placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      45deg,
      rgba(255, 255, 255, 0.025) 0px,
      rgba(255, 255, 255, 0.025) 1px,
      transparent 1px,
      transparent 12px
    ),
    var(--clr-charcoal);
}

.photo-item--placeholder::after {
  content: "âœ•";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  color: rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

.photo-item__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 0.7rem 0.75rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.72) 0%, transparent 55%);
  opacity: 0;
  transition: opacity var(--t-mid);
  pointer-events: none;
}

.photo-item:hover .photo-item__overlay {
  opacity: 1;
}

.photo-item__badge {
  position: absolute;
  top: 0.6rem;
  right: 0.6rem;
  font-family: var(--font-display);
  font-size: 0.55rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-white);
  background-color: rgba(0, 0, 0, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0.22rem 0.5rem;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0.55;
  transition: opacity var(--t-mid);
}

.photo-item:hover .photo-item__badge {
  opacity: 1;
  border-color: var(--clr-red);
  color: var(--clr-red);
}

.photo-item__caption {
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.35;
}

.photo-drive-banner {
  background-color: var(--clr-charcoal);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-left: 3px solid var(--clr-red);
  padding: 1.1rem 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: var(--sp-sm);
}

.photo-drive-banner__icon {
  flex-shrink: 0;
  color: var(--clr-red);
  margin-top: 2px;
}

.photo-drive-banner__icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
}

.photo-drive-banner__text {
  font-size: 0.82rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
}

.photo-drive-banner__text a {
  color: var(--clr-white);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--t-fast);
}

.photo-drive-banner__text a:hover {
  color: var(--clr-red);
}

.zone-contact {
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
}

.contact-card {
  background-color: var(--clr-concrete);
  color: var(--clr-black);
  border-top: 3px solid var(--clr-red);
  padding: var(--sp-md) 1.5rem;
}

.contact-card__profile {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-sm);
  margin-bottom: var(--sp-md);
  padding-bottom: var(--sp-md);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.contact-card__avatar {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background-color: var(--clr-black);
  color: var(--clr-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 2px;
  flex-shrink: 0;
}

.contact-card__name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--clr-black);
  margin-bottom: 0.2rem;
}

.contact-card__role {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-red);
  line-height: 1.3;
}

.contact-data {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: var(--sp-md);
}

.contact-data__item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.contact-data__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  color: var(--clr-red);
}

.contact-data__icon svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
}

.contact-data__label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.45);
  display: block;
  margin-bottom: 0.1rem;
}

.contact-data__value {
  font-size: 0.88rem;
  color: var(--clr-black);
  line-height: 1.4;
}

.contact-data__value a {
  color: var(--clr-black);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color var(--t-fast);
  word-break: break-all;
}

.contact-data__value a:hover {
  color: var(--clr-red);
}

.btn--dark {
  background-color: var(--clr-black);
  color: var(--clr-white);
  border-color: var(--clr-black);
}

.btn--dark:hover {
  background-color: var(--clr-red);
  border-color: var(--clr-red);
  color: var(--clr-white);
}

.contact-card__note {
  font-size: 0.72rem;
  color: rgba(0, 0, 0, 0.4);
  text-align: center;
  margin-top: 0.75rem;
  letter-spacing: 0.04em;
}

@media (max-width: 1100px) {
  .presse-hub {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .zone-contact {
    grid-column: 1 / -1;
    max-width: 520px;
  }
}

@media (max-width: 680px) {
  .presse-hub {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .zone-contact {
    grid-column: auto;
    max-width: 100%;
  }

  .photo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 420px) {
  .photo-grid {
    grid-template-columns: 1fr;
  }

  .presse-banner__title {
    font-size: 2.2rem;
  }
}

/* ----------------------------------------------------------------
   17e. SOUTENIR PAGE (soutenir.html)
   ---------------------------------------------------------------- */
.soutenir-banner {
  padding-top: calc(var(--nav-h) + 5rem);
  padding-bottom: 5rem;
  background-color: var(--clr-black);
  border-bottom: 3px solid var(--clr-red);
  position: relative;
  overflow: hidden;
}

.soutenir-banner::before {
  content: "âš’";
  position: absolute;
  right: -0.1em;
  bottom: -0.3em;
  font-size: clamp(12rem, 30vw, 22rem);
  font-family: var(--font-display);
  font-weight: 900;
  color: rgba(255, 0, 0, 0.04);
  line-height: 1;
  pointer-events: none;
}

.soutenir-banner .container {
  position: relative;
  z-index: 1;
}

.soutenir-banner__eyebrow {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--clr-red);
  margin-bottom: 1.5rem;
}

.soutenir-banner__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--clr-white);
  margin-bottom: 1.5rem;
}

.soutenir-banner__narrative {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2.2vw, 1.35rem);
  font-weight: 300;
  color: var(--clr-silver);
  font-style: italic;
  max-width: 760px;
  line-height: 1.6;
}

.soutenir-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background-color: var(--clr-black);
}

.soutenir-col {
  padding: 5rem 3.5rem;
}

.soutenir-col--particuliers {
  background-color: var(--clr-white);
  color: var(--clr-black);
}

.soutenir-col--entreprises {
  background-color: var(--clr-concrete);
  color: var(--clr-black);
}

.soutenir-col__title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--clr-black);
  margin-bottom: 1.2rem;
}

.soutenir-col--particuliers .soutenir-col__title {
  color: var(--clr-black);
}

.soutenir-col__subtitle {
  font-family: var(--font-display);
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--clr-red);
  margin-bottom: 1.2rem;
}

.soutenir-impact-list {
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.soutenir-impact-list li {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--clr-charcoal);
  padding-left: 1.2rem;
  position: relative;
}

.soutenir-impact-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.15em;
  width: 0.75em;
  height: 0.75em;
  background-image: url("assets/img/marteau-list-icon.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.soutenir-col__fiscal {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--clr-charcoal);
  background-color: var(--clr-concrete);
  padding: 1.2rem;
  border-left: 3px solid var(--clr-red);
  margin-bottom: 1.8rem;
}

.soutenir-col--particuliers .soutenir-col__fiscal {
  background-color: var(--clr-concrete);
}

.soutenir-col--particuliers .soutenir-impact-list li {
  color: var(--clr-charcoal);
}

.soutenir-col--particuliers .soutenir-col__fiscal {
  background-color: #eee;
}

.btn--don {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.95rem 2.2rem;
  background-color: var(--clr-red);
  color: var(--clr-white);
  border: 2px solid var(--clr-red);
  transition:
    background-color 0.15s ease,
    color 0.15s ease,
    border-color 0.15s ease,
    transform 0.15s ease;
  width: 100%;
}

.btn--don:hover {
  background-color: var(--clr-white);
  color: var(--clr-red);
  border-color: var(--clr-red);
  transform: translateY(-2px);
}

.btn--don:active {
  transform: translateY(0);
}

.soutenir-col--entreprises .soutenir-col__subtitle {
  color: var(--clr-red);
}

.corporate-capabilities {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--clr-charcoal);
  margin-bottom: 1.2rem;
}

.corporate-fiscal {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--clr-charcoal);
  background-color: var(--clr-white);
  padding: 1.2rem;
  border-left: 3px solid var(--clr-red);
  margin-bottom: 1.5rem;
}

.sponsor-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.8rem;
  opacity: 0.3;
}

.sponsor-grid svg {
  height: 32px;
  width: auto;
}

.sponsor-grid--contact svg {
  opacity: 0.5;
}

.btn--outline-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.75rem 1.8rem;
  background-color: transparent;
  color: var(--clr-black);
  border: 2px solid var(--clr-black);
  transition:
    background-color 0.15s ease,
    color 0.15s ease,
    border-color 0.15s ease,
    transform 0.15s ease;
  width: 100%;
}

.btn--outline-dark:hover {
  background-color: var(--clr-black);
  color: var(--clr-white);
  border-color: var(--clr-red);
  transform: translateY(-2px);
}

.btn--outline-dark:active {
  transform: translateY(0);
}

@media (max-width: 860px) {
  .soutenir-split {
    grid-template-columns: 1fr;
  }

  .soutenir-col {
    padding: 3.5rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .soutenir-banner__title {
    font-size: 2rem;
  }

  .soutenir-col {
    padding: 2.5rem 1.25rem;
  }
}

/* ================================================
   CONTACT FORM 7 â€” targets CF7's actual generated DOM
   ================================================ */

.wpcf7-form {
  background-color: var(--wp--custom--color--charcoal);
  border: 1px solid rgba(255, 255, 255, 0.07);
  /* border-top: 3px solid var(--wp--preset--color--red); */
  padding: var(--wp--preset--spacing--50) var(--wp--preset--spacing--40);
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  position: relative;
}
.field-group:focus-within .field-label {
  color: var(--wp--preset--color--white);
}

.field-label {
  font-size: var(--wp--preset--font-size--small);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--wp--preset--color--silver);
  transition: color 0.15s ease;
}
.field-label .req {
  color: var(--wp--preset--color--red);
  margin-left: 0.2rem;
  font-weight: 900;
  font-size: 0.9em;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.wpcf7-form-control-wrap {
  display: block;
  position: relative;
}

/* text / email / select / textarea */
.wpcf7-form-control.field-input,
.wpcf7-form-control.field-select,
.wpcf7-form-control.field-textarea {
  background-color: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--wp--preset--color--white);
  padding: 0.9rem 1rem;
  font-size: var(--wp--preset--font-size--medium);
  font-family: var(--wp--preset--font-family--body);
  width: 100%;
  border-radius: 0;
  appearance: none;
  -webkit-appearance: none;
  transition:
    border-color 0.15s ease,
    box-shadow 0.15s ease,
    background-color 0.15s ease;
}
.field-input::placeholder,
.field-textarea::placeholder {
  color: rgba(255, 255, 255, 0.2);
  font-style: italic;
}

.field-input:hover,
.field-select:hover,
.field-textarea:hover {
  border-color: rgba(255, 255, 255, 0.25);
}
.field-input:focus,
.field-select:focus,
.field-textarea:focus {
  outline: none;
  border-color: var(--wp--preset--color--red);
  background-color: rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 0 3px rgba(255, 0, 0, 0.12);
}

.field-textarea {
  min-height: 180px;
  resize: vertical;
  line-height: 1.6;
}

/* CF7's own required/invalid state â€” set by CF7's included script, not custom JS */
.wpcf7-form-control.wpcf7-not-valid {
  border-color: var(--wp--preset--color--red) !important;
  box-shadow: 0 0 0 3px rgba(255, 0, 0, 0.1);
}
.wpcf7-not-valid-tip {
  display: block;
  font-size: 0.72rem;
  color: var(--wp--preset--color--red);
  letter-spacing: 0.05em;
  margin-top: 0.2rem;
}

/* select */
select.wpcf7-form-control {
  padding-right: 2.75rem;
  cursor: pointer;
}
select.wpcf7-form-control option {
  background-color: var(--wp--custom--color--charcoal);
  color: var(--wp--preset--color--white);
}
select.wpcf7-form-control option[value=""] {
  color: rgba(255, 255, 255, 0.4);
  font-style: italic;
}

.wpcf7-form-control-wrap:has(select)::after {
  content: "\25BE";
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--wp--preset--color--red);
  font-size: 1.1rem;
  transition: transform 0.15s ease;
}
.wpcf7-form-control-wrap:has(select):focus-within::after {
  transform: translateY(-50%) rotate(180deg);
}

/* ============================================
   ACCEPTANCE CHECKBOX â€” matches the self-closed
   [acceptance] wrapped in our own <label>
   ============================================ */
.field-checkbox-label {
  display: flex;
  gap: var(--wp--preset--spacing--30);
  align-items: flex-start;
  cursor: pointer;
}

/* collapse CF7's nested wrapper spans so they don't affect layout */
.field-checkbox-label .wpcf7-form-control-wrap,
.field-checkbox-label .wpcf7-acceptance,
.field-checkbox-label .wpcf7-list-item {
  display: contents;
}

.field-checkbox-input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.field-checkbox-custom {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.25);
  position: relative;
  margin-top: 2px;
  transition:
    border-color 0.15s ease,
    background-color 0.15s ease;
}
.field-checkbox-custom::after {
  content: "";
  display: block;
  width: 10px;
  height: 6px;
  border-left: 2px solid var(--wp--preset--color--white);
  border-bottom: 2px solid var(--wp--preset--color--white);
  transform: rotate(-45deg) translate(1px, -2px);
  opacity: 0;
  transition: opacity 0.15s ease;
}

/* :has() reads the checked/invalid state up from the nested input â€”
   no JS, pure CSS, works regardless of CF7's DOM depth */
.field-checkbox-label:has(.field-checkbox-input:checked)
  .field-checkbox-custom {
  background-color: var(--wp--preset--color--red);
  border-color: var(--wp--preset--color--red);
}
.field-checkbox-label:has(.field-checkbox-input:checked)
  .field-checkbox-custom::after {
  opacity: 1;
}
.field-checkbox-label:has(.field-checkbox-input:focus-visible)
  .field-checkbox-custom {
  outline: 2px solid var(--wp--preset--color--red);
  outline-offset: 3px;
}
.field-checkbox-label:has(.wpcf7-acceptance.wpcf7-not-valid)
  .field-checkbox-custom {
  border-color: var(--wp--preset--color--red);
}

.field-checkbox-text {
  font-size: var(--wp--preset--font-size--small);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.55);
}

/* submit */
.wpcf7-submit {
  font-family: var(--wp--preset--font-family--display);
  font-size: var(--wp--preset--font-size--small);
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  width: 100%;
  background-color: var(--wp--preset--color--red);
  color: var(--wp--preset--color--white);
  border: 2px solid var(--wp--preset--color--red);
  cursor: pointer;
  transition:
    background-color 0.15s ease,
    color 0.15s ease,
    border-color 0.15s ease,
    transform 0.15s ease,
    box-shadow 0.15s ease;
}
.wpcf7-submit:hover {
  background-color: var(--wp--preset--color--white);
  color: var(--wp--custom--color--charcoal);
  border-color: var(--wp--preset--color--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 0, 0, 0.25);
}
.wpcf7-submit:active {
  transform: translateY(0);
  box-shadow: none;
}
.wpcf7-submit:focus-visible {
  outline: 2px solid var(--wp--preset--color--white);
  outline-offset: 3px;
}
.wpcf7-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* CF7's own sent/invalid/spam/failed classes â€” added by CF7's included
   script automatically, not something we write JS for */
.wpcf7-response-output {
  font-size: var(--wp--preset--font-size--small);
  padding: 0.85rem 1rem;
  border-left-width: 3px;
  border-left-style: solid;
  border-left-color: transparent;
  letter-spacing: 0.04em;
  line-height: 1.5;
  margin: 0;
}
.wpcf7-form.sent .wpcf7-response-output {
  border-left-color: #00cc44;
  background-color: rgba(0, 204, 68, 0.07);
  color: #00cc44;
}
.wpcf7-form.invalid .wpcf7-response-output,
.wpcf7-form.failed .wpcf7-response-output,
.wpcf7-form.spam .wpcf7-response-output,
.wpcf7-form.aborted .wpcf7-response-output {
  border-left-color: var(--wp--preset--color--red);
  background-color: rgba(255, 0, 0, 0.07);
  color: var(--wp--preset--color--red);
}

@media (max-width: 780px) {
  .field-row {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }
  .wpcf7-form {
    padding: var(--wp--preset--spacing--40) 1.25rem;
  }
}
@media (max-width: 480px) {
  .wpcf7-form {
    padding: var(--wp--preset--spacing--30) 1rem;
  }
}

/* ----------------------------------------------------------------
   18. FOOTER
   ---------------------------------------------------------------- */
.site-footer {
  background-color: var(--clr-black);
  color: var(--clr-white);
  padding: var(--sp-xl) 0 var(--sp-lg);
}

/* Partner logos */
.partners-block {
  margin-bottom: var(--sp-lg);
}

.partners-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clr-silver);
  margin-bottom: var(--sp-md);
}

.partners-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--sp-lg);
}

.partner-logo {
  opacity: 0.35;
  transition: opacity var(--t-mid);
  color: var(--clr-white);
}

.partner-logo svg {
  height: 40px;
  width: auto;
}

.partner-logo:hover {
  opacity: 0.8;
}

.footer-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin: var(--sp-lg) 0;
}

/* ----------------------------------------------
   Newsletter Form – scoped to .newsletter-form
   ---------------------------------------------- */

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
}

/* ---- CF7 response messages (only inside .newsletter-form) ---- */
.newsletter-form .wpcf7-response-output {
  margin: 0;
  padding: 0.75rem 1rem;
  border: none;
  border-left: 3px solid transparent;
  font-size: var(--fs-small);
  line-height: 1.5;
  background: transparent;
  color: var(--clr-white);
}

.newsletter-form .wpcf7-response-output.wpcf7-mail-sent-ok {
  border-left-color: #00cc44;
  background-color: rgba(0, 204, 68, 0.08);
  color: #00cc44;
}

.newsletter-form .wpcf7-response-output.wpcf7-validation-errors,
.newsletter-form .wpcf7-response-output.wpcf7-mail-sent-ng {
  border-left-color: var(--clr-red);
  background-color: rgba(255, 0, 0, 0.08);
  color: var(--clr-red);
}

/* ---- Spinner (hide it) ---- */
.newsletter-form .wpcf7-spinner {
  display: none;
}

/* ---- Hidden checkbox (unique class: .newsletter-checkbox) ---- */
.newsletter-form .newsletter-checkbox {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  margin: 0;
  padding: 0;
}

/* ---- Custom checkbox (same visual, but scoped) ---- */
.newsletter-form .checkbox-custom {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    border-color var(--t-fast),
    background-color var(--t-fast);
  position: relative;
  margin-top: 2px;
  vertical-align: middle;
}

.newsletter-form .checkbox-custom::after {
  content: "";
  display: block;
  width: 10px;
  height: 6px;
  border-left: 2px solid var(--clr-white);
  border-bottom: 2px solid var(--clr-white);
  transform: rotate(-45deg) translate(1px, -2px);
  opacity: 0;
  transition: opacity var(--t-fast);
}

/* Checked state */
.newsletter-form .newsletter-checkbox:checked + .checkbox-custom {
  background-color: var(--clr-red);
  border-color: var(--clr-red);
}

.newsletter-form .newsletter-checkbox:checked + .checkbox-custom::after {
  opacity: 1;
}

/* Focus ring */
.newsletter-form .newsletter-checkbox:focus-visible + .checkbox-custom {
  outline: 2px solid var(--clr-red);
  outline-offset: 3px;
}

/* ---- Label and text ---- */
.newsletter-form .checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-sm);
  cursor: pointer;
}

.newsletter-form .checkbox-text {
  font-size: var(--fs-small);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.6);
}

/* ---- Select arrow (already uses .select-wrap, but we scope just in case) ---- */
.newsletter-form .select-wrap {
  position: relative;
}

.newsletter-form .select-arrow {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--clr-red);
  font-size: 1rem;
}

/* ---- Input / select styles (keep your existing ones, but we scope) ---- */
.newsletter-form .form-input,
.newsletter-form .form-select {
  background-color: var(--clr-charcoal);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--clr-white);
  padding: 0.85rem 1rem;
  font-size: var(--fs-body);
  width: 100%;
  transition:
    border-color var(--t-fast),
    box-shadow var(--t-fast);
}

.newsletter-form .form-select {
  padding-right: 2.5rem;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.newsletter-form .form-input:focus,
.newsletter-form .form-select:focus {
  border-color: var(--clr-red);
  outline: none;
  box-shadow: 0 0 0 2px rgba(255, 0, 0, 0.15);
}

/* ---- Submit button (full width, styled) ---- */
.newsletter-form .wpcf7-submit {
  width: 100%;
}

/* If your .btn--full already sets width:100%, you can omit the line above */
/* ----------------------------------------------------------------
   19. FOOTER BOTTOM BAR
   ---------------------------------------------------------------- */
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--sp-md);
}

.footer-copyright {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
  flex: 1;
  min-width: 200px;
}

.footer-credits {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
}

.footer-credits__link {
  color: var(--clr-red);
  text-decoration: none;
  transition: color var(--t-fast);
}

.footer-credits__link:hover {
  color: var(--clr-white);
}

/* Social links */
.social-links {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color var(--t-fast);
}

.social-link svg {
  width: 16px;
  height: 16px;
}

.social-link:hover {
  color: var(--clr-white);
}

/* Legal links */
.legal-links {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
}

.legal-link {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  text-decoration: none;
  transition: color var(--t-fast);
}

.legal-link:hover {
  color: var(--clr-white);
}

/* ----------------------------------------------------------------
   20. AGENDA PAGE STYLES (agenda.html)
   ---------------------------------------------------------------- */

/* â”€â”€ Page intro banner â”€â”€ */
.agenda-banner {
  padding-top: calc(var(--nav-h) + 5rem);
  padding-bottom: 5rem;
  background-color: var(--clr-black);
  border-bottom: 3px solid var(--clr-red);
  position: relative;
  overflow: hidden;
}

/* Watermark numeral in the banner background */
.agenda-banner::before {
  content: "â—ˆ";
  position: absolute;
  right: -0.1em;
  bottom: -0.25em;
  font-size: clamp(12rem, 30vw, 22rem);
  font-family: var(--font-display);
  font-weight: 900;
  color: rgba(255, 0, 0, 0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.agenda-banner .container {
  position: relative;
  z-index: 1;
}

.agenda-banner__eyebrow {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--clr-red);
  margin-bottom: 1.5rem;
}

.agenda-banner__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6vw, 5.5rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--clr-white);
  margin-bottom: 1.25rem;
}

.agenda-banner__subtitle {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2.2vw, 1.35rem);
  font-weight: 300;
  color: var(--clr-silver);
  font-style: italic;
  margin-bottom: 1.75rem;
  max-width: 700px;
  line-height: 1.5;
}

.agenda-banner__note {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
  max-width: 620px;
  margin-bottom: 2.5rem;
}

.agenda-banner__note strong {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 700;
}

@media (max-width: 480px) {
  .agenda-banner__title {
    font-size: 2rem;
  }
}

/* â”€â”€ Active nav link styles (from agenda.html inline JS) â”€â”€ */
.nav-link--active {
  color: var(--clr-white) !important;
  position: relative;
}
.nav-link--active::after {
  content: "" !important;
  width: 100% !important;
  background: var(--clr-red) !important;
  position: absolute;
  bottom: -3px;
  left: 0;
  height: 2px;
}
.site-header.scrolled .nav-link--active {
  color: var(--clr-black) !important;
}
.mobile-link--active {
  color: var(--clr-red) !important;
}

/* ----------------------------------------------------------------
   21. CREATION PAGE STYLES (creation.html)
   ---------------------------------------------------------------- */
/* (currently no page-specific styles for creation.html) */

/* ----------------------------------------------------------------
    22. UTILITY CLASSES (from inline style extraction)
    ---------------------------------------------------------------- */
.icon-hidden {
  display: none;
}

.btn-arrow {
  margin-left: 0.5rem;
}

.paragraph-spaced {
  margin-top: 1rem;
}

.submit-btn-icon {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

/* ----------------------------------------------------------------
    23. RESPONSIVE BREAKPOINTS
    ---------------------------------------------------------------- */

/* â”€â”€ Tablet (â‰¤ 1024px) â”€â”€ */
@media (max-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-grid > .section-eyebrow {
    grid-column: 1 / -1;
  }
}

/* â”€â”€ Mobile (â‰¤ 768px) â”€â”€ */
@media (max-width: 768px) {
  :root {
    --sp-xl: 5rem;
    --sp-lg: 3rem;
  }

  /* Show burger, hide desktop nav */
  .burger-btn {
    display: flex;
  }

  .nav-links {
    display: none;
  }

  /* Hero adjustments */
  .hero__content {
    padding: var(--sp-sm);
  }

  .hero__ctas {
    flex-direction: column;
    align-items: stretch;
    max-width: 280px;
    margin: 0 auto var(--sp-lg);
  }

  /* Team grid: single column on mobile */
  .team-grid {
    grid-template-columns: 1fr;
  }

  /* Footer bottom: stack vertically */
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--sp-sm);
  }

  .social-links {
    flex-wrap: wrap;
    gap: var(--sp-sm);
  }

  .legal-links {
    flex-wrap: wrap;
    gap: var(--sp-sm);
  }

  /* Partners: wrap on mobile */
  .partners-row {
    gap: var(--sp-md);
  }

  /* Newsletter title */
  .newsletter-title {
    font-size: 1.4rem;
  }
}

/* â”€â”€ Small mobile (â‰¤ 480px) â”€â”€ */
@media (max-width: 480px) {
  .nav-logo-text {
    display: none; /* show only the âœ• mark on tiny screens */
  }

  .hero__scroll-hint {
    display: none;
  }

  .show-subtitle {
    font-size: 0.9rem;
  }
}
