/* =========================================================
   LA LOGE — Roland-Garros 2026
   Editorial luxury concierge aesthetic
   ========================================================= */

:root {
  /* Palette */
  --cream:        #F2EBDC;
  --cream-soft:   #E7DFCB;
  --cream-warm:   #EDE3CC;
  --paper:        #FBF6EA;
  --charcoal:     #1B1814;
  --charcoal-2:   #2A2520;
  --ink:          #3A332B;
  --muted:        #7A6F60;
  --clay:         #BC563E;
  --clay-deep:    #8E3C28;
  --clay-bright:  #D26A4E;
  --emerald:      #1F3A2E;
  --gold:         #A88947;
  --line:         rgba(27, 24, 20, 0.14);
  --line-strong:  rgba(27, 24, 20, 0.32);

  /* Type */
  --display: "Fraunces", "Cormorant Garamond", "Times New Roman", serif;
  --body:    "Manrope", system-ui, -apple-system, sans-serif;

  /* Layout */
  --maxw: 1320px;
  --pad-x: clamp(20px, 4vw, 56px);
  --r-sm: 4px;
  --r-md: 10px;
}

/* ---------- Reset ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--charcoal);
  background: var(--cream);
  font-feature-settings: "ss01", "ss02", "cv11";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: 0; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
em { font-style: italic; }

::selection { background: var(--clay); color: var(--cream); }

/* ---------- Grain overlay ---------- */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: 0.35;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.1, 0 0 0 0 0.09, 0 0 0 0 0.07, 0 0 0 0.55 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* ---------- Ticker ---------- */
.ticker {
  position: relative;
  background: var(--charcoal);
  color: var(--cream);
  overflow: hidden;
  padding: 9px 0;
  border-bottom: 1px solid rgba(242, 235, 220, 0.12);
}
.ticker-track {
  display: flex;
  white-space: nowrap;
  animation: scroll 55s linear infinite;
  font-family: var(--body);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
}
.ticker-track span { padding-right: 2.5em; }
@keyframes scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-66%); }
}

/* ---------- Navigation ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 18px var(--pad-x);
  background: rgba(242, 235, 220, 0.86);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--line);
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--charcoal);
  font-variation-settings: "opsz" 144, "SOFT" 50;
}
.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--clay);
  color: var(--cream);
}
.logo-mark svg { transform: scale(0.95); }
.logo-text { font-style: italic; }
.logo-dot { color: var(--clay); font-style: normal; }

.nav-links {
  display: flex;
  justify-content: center;
  gap: 36px;
  font-size: 13px;
  letter-spacing: 0.04em;
  font-weight: 500;
}
.nav-links a {
  position: relative;
  padding: 6px 0;
  color: var(--ink);
  transition: color .25s ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--clay);
  transition: right .35s ease;
}
.nav-links a:hover { color: var(--clay-deep); }
.nav-links a:hover::after { right: 0; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 22px;
}
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--muted);
  font-weight: 600;
}
.lang-switch button {
  padding: 4px 2px;
  opacity: 0.45;
  transition: opacity .2s ease, color .2s ease;
}
.lang-switch button.active {
  opacity: 1;
  color: var(--charcoal);
}
.lang-switch button:hover { opacity: 1; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1px solid var(--charcoal);
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.06em;
  font-weight: 600;
  background: var(--charcoal);
  color: var(--cream);
  transition: background .25s ease, color .25s ease, transform .25s ease;
}
.nav-cta:hover { background: var(--clay-deep); border-color: var(--clay-deep); transform: translateY(-1px); }

/* ---------- Containers / Sections ---------- */
main { display: block; }
section {
  position: relative;
  padding: clamp(80px, 10vw, 140px) var(--pad-x);
  max-width: var(--maxw);
  margin: 0 auto;
}
.section-head {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 36px;
  align-items: end;
  margin-bottom: clamp(48px, 7vw, 80px);
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
}
.section-head--center {
  grid-template-columns: 1fr;
  text-align: center;
  border: 0;
  padding-bottom: 0;
  margin-bottom: clamp(36px, 5vw, 56px);
}
.section-head--center .section-num {
  margin: 0 auto 12px;
}
.section-num {
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(40px, 5vw, 56px);
  line-height: 1;
  color: var(--clay);
  font-variation-settings: "opsz" 144;
}
.section-title h2 {
  font-family: var(--display);
  font-weight: 350;
  font-size: clamp(40px, 5.5vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.018em;
  color: var(--charcoal);
  font-variation-settings: "opsz" 144, "SOFT" 30;
}
.section-kicker {
  margin-top: 14px;
  max-width: 52ch;
  font-size: 15px;
  line-height: 1.55;
  color: var(--muted);
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  padding-top: clamp(48px, 7vw, 80px);
  padding-bottom: clamp(60px, 8vw, 100px);
  min-height: calc(100vh - 80px);
  display: flex;
  flex-direction: column;
}
.hero-meta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 600;
  margin-bottom: clamp(40px, 5vw, 64px);
}
.dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--clay);
  display: inline-block;
  box-shadow: 0 0 0 4px rgba(188, 86, 62, 0.18);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(188, 86, 62, 0.18); }
  50%      { box-shadow: 0 0 0 9px rgba(188, 86, 62, 0); }
}

.hero-grid {
  flex: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.95fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}

.hero-title {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(64px, 12vw, 168px);
  line-height: 0.92;
  letter-spacing: -0.035em;
  color: var(--charcoal);
  font-variation-settings: "opsz" 144, "SOFT" 25;
  display: block;
}
.hero-title .word { display: block; }
.hero-title .w1 { color: var(--charcoal); }
.hero-title .w2 {
  margin-top: -0.06em;
  margin-left: clamp(20px, 8vw, 120px);
  color: var(--clay);
}
.hero-title .w2 em {
  font-weight: 250;
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.hero-title .w2 .period { color: var(--charcoal); }
.hero-title .w3 {
  margin-top: 0.02em;
  font-size: 0.36em;
  letter-spacing: -0.012em;
  font-weight: 300;
  font-style: italic;
  color: var(--ink);
  font-variation-settings: "opsz" 144, "SOFT" 80;
}

.hero-lede {
  margin-top: clamp(28px, 3vw, 40px);
  max-width: 50ch;
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.6;
  color: var(--ink);
}

.hero-ctas {
  margin-top: clamp(32px, 3.5vw, 44px);
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 26px;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0.04em;
  font-weight: 600;
  transition: all .3s cubic-bezier(.2,.7,.2,1);
}
.btn-primary {
  background: var(--clay);
  color: var(--cream);
  border: 1px solid var(--clay);
}
.btn-primary:hover {
  background: var(--clay-deep);
  border-color: var(--clay-deep);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -14px rgba(142, 60, 40, 0.55);
}
.btn-primary svg { transition: transform .3s ease; }
.btn-primary:hover svg { transform: translateX(4px); }
.btn-ghost {
  border: 1px solid var(--line-strong);
  color: var(--charcoal);
}
.btn-ghost:hover {
  border-color: var(--charcoal);
  background: var(--charcoal);
  color: var(--cream);
}

/* Hero right card */
.hero-right {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-card {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 0.78 / 1;
  padding: 28px 28px 32px;
  background:
    radial-gradient(at 30% 0%, rgba(255, 240, 220, 0.6) 0%, transparent 50%),
    linear-gradient(180deg, var(--cream-warm) 0%, var(--cream-soft) 100%);
  border: 1px solid var(--line);
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 30px 60px -30px rgba(27, 24, 20, 0.35),
    0 8px 16px -8px rgba(27, 24, 20, 0.18);
  overflow: hidden;
  transform: rotate(-1.4deg);
  transition: transform .6s cubic-bezier(.2,.7,.2,1);
}
.hero-card:hover { transform: rotate(0deg) scale(1.015); }

.hero-card::before {
  /* Subtle clay corner watermark */
  content: "";
  position: absolute;
  top: -120px; right: -120px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(188, 86, 62, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

.hero-card-top {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 600;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.hero-card-top .ref { color: var(--clay); }

.hero-card-stamp {
  flex: 1;
  display: grid;
  place-items: center;
  padding: 18px 0;
  color: var(--clay-deep);
  animation: rotate 60s linear infinite;
  position: relative;
}
@keyframes rotate {
  to { transform: rotate(360deg); }
}
/* Stop animation if user prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
  .hero-card-stamp { animation: none; }
  .ticker-track { animation: none; }
  .dot { animation: none; }
}

.hero-card-bottom {
  border-top: 1px solid var(--line);
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hero-card-bottom .row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 12px;
}
.hero-card-bottom .k {
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 600;
}
.hero-card-bottom .v {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: 14px;
  color: var(--charcoal);
}

/* ball marks */
.ball-mark {
  position: absolute;
  width: 32px; height: 14px;
  border-radius: 50%;
  background: var(--clay-deep);
  opacity: 0.38;
  pointer-events: none;
  filter: blur(0.4px);
}
.bm-1 { bottom: 26%; left: 14%; transform: rotate(-22deg); }
.bm-2 { top: 22%; left: 28%; width: 22px; height: 9px; opacity: 0.22; transform: rotate(35deg); }

.hero-foot {
  margin-top: clamp(48px, 6vw, 80px);
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero-foot-left { display: inline-flex; align-items: baseline; gap: 12px; }
.hero-foot-left .num {
  font-family: var(--display);
  font-style: italic;
  font-size: 22px;
  color: var(--clay);
}
.scroll-hint {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}
.scroll-hint svg { animation: bob 2s ease-in-out infinite; }
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(3px); }
}

/* =========================================================
   MATCHS
   ========================================================= */
.matchs {
  background:
    linear-gradient(180deg, var(--cream) 0%, var(--cream) 8%, var(--paper) 100%);
}
.matchs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.match-card {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 28px 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s ease, border-color .35s ease;
  overflow: hidden;
}
.match-card::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--clay);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .55s cubic-bezier(.2,.7,.2,1);
}
.match-card:hover {
  transform: translateY(-6px);
  border-color: rgba(27, 24, 20, 0.28);
  box-shadow: 0 30px 50px -28px rgba(27, 24, 20, 0.35);
}
.match-card:hover::after { transform: scaleX(1); }

.featured-card-soft { background: var(--cream-warm); }
.featured-card {
  background: var(--charcoal);
  color: var(--cream);
  border-color: var(--charcoal);
}
.featured-card .match-tag,
.featured-card .match-meta .k,
.featured-card .match-note { color: rgba(242, 235, 220, 0.65); }
.featured-card .match-meta .v,
.featured-card .match-stage { color: var(--cream); }
.featured-card .match-illu svg { color: rgba(242, 235, 220, 0.4); }
.featured-card::after { background: var(--clay-bright); }
.featured-card .match-cta {
  border-top-color: rgba(242, 235, 220, 0.18);
  color: var(--cream);
}
.featured-card .match-cta:hover { color: var(--clay-bright); }

.featured-flag {
  position: absolute;
  top: 18px; right: 18px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  background: var(--clay-bright);
  color: var(--charcoal);
  border-radius: 999px;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  z-index: 2;
}

.match-head {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.match-tag {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.match-stage {
  font-family: var(--display);
  font-weight: 350;
  font-size: clamp(28px, 2.4vw, 36px);
  line-height: 1.05;
  letter-spacing: -0.012em;
  color: var(--charcoal);
  font-variation-settings: "opsz" 144, "SOFT" 40;
}

.match-illu {
  background: rgba(255, 255, 255, 0.45);
  border-radius: var(--r-sm);
  padding: 8px;
  color: var(--ink);
}
.featured-card .match-illu { background: rgba(255, 255, 255, 0.04); }

.match-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.match-meta {
  display: flex;
  flex-direction: column;
}
.match-meta li {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 10px;
  align-items: baseline;
  padding: 9px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 13px;
}
.match-meta li:last-child { border-bottom: 0; }
.match-meta .k {
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 600;
}
.match-meta .v {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: 15px;
  color: var(--charcoal);
}
.match-note {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink);
}

.match-cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  letter-spacing: 0.06em;
  font-weight: 600;
  color: var(--charcoal);
  transition: color .3s ease;
}
.match-cta svg { transition: transform .3s ease; }
.match-cta:hover { color: var(--clay-deep); }
.match-cta:hover svg { transform: translateX(4px); }

.matchs-footnote {
  margin-top: 36px;
  max-width: 56ch;
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--muted);
  font-style: italic;
}

/* =========================================================
   SERVICE
   ========================================================= */
.service {
  background: var(--paper);
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.pillar {
  padding: 36px 28px 36px 0;
  border-right: 1px solid var(--line);
  position: relative;
}
.pillar:last-child { border-right: 0; }
.pillar:not(:first-child) { padding-left: 28px; }
.pillar-num {
  display: block;
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  color: var(--clay);
  margin-bottom: 18px;
  font-variation-settings: "opsz" 144;
}
.pillar h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--charcoal);
  margin-bottom: 12px;
  font-variation-settings: "opsz" 144, "SOFT" 30;
}
.pillar p {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--ink);
}

.quote {
  margin-top: clamp(56px, 8vw, 96px);
  text-align: center;
  position: relative;
}
.quote::before, .quote::after {
  content: "";
  display: block;
  width: 36px;
  height: 1px;
  background: var(--clay);
  margin: 0 auto 28px;
}
.quote::after { margin: 28px auto 0; }
.quote p {
  font-family: var(--display);
  font-style: italic;
  font-weight: 350;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.32;
  color: var(--charcoal);
  max-width: 22ch;
  margin: 0 auto;
  letter-spacing: -0.012em;
  font-variation-settings: "opsz" 144, "SOFT" 60;
}

/* =========================================================
   CONTACT
   ========================================================= */
.contact {
  background:
    radial-gradient(at 50% 0%, rgba(188, 86, 62, 0.07) 0%, transparent 50%),
    var(--cream);
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1080px;
  margin: 0 auto;
}
.contact-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
  padding: 28px 30px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  transition: transform .35s cubic-bezier(.2,.7,.2,1), border-color .35s ease, box-shadow .35s ease, background .35s ease;
  overflow: hidden;
}
.contact-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--clay) 0%, var(--clay-deep) 100%);
  opacity: 0;
  transition: opacity .4s ease;
  z-index: 0;
}
.contact-card > * { position: relative; z-index: 1; }
.contact-card:hover {
  transform: translateY(-4px);
  border-color: var(--clay-deep);
  box-shadow: 0 30px 50px -28px rgba(142, 60, 40, 0.55);
}
.contact-card:hover::before { opacity: 1; }
.contact-card:hover .k,
.contact-card:hover .v,
.contact-card:hover .contact-value,
.contact-card:hover .contact-icon,
.contact-card:hover .contact-arrow { color: var(--cream); }
.contact-card:hover .contact-icon { background: rgba(255, 255, 255, 0.15); }
.contact-card:hover .contact-arrow { transform: translateX(6px); }

.contact-icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--cream-warm);
  display: grid;
  place-items: center;
  color: var(--clay-deep);
  transition: background .35s ease, color .35s ease;
}
.contact-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.contact-meta .k {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
  transition: color .35s ease;
}
.contact-meta .v {
  font-family: var(--display);
  font-style: italic;
  font-weight: 350;
  font-size: 18px;
  color: var(--charcoal);
  letter-spacing: -0.01em;
  transition: color .35s ease;
  font-variation-settings: "opsz" 144, "SOFT" 50;
}
.contact-value {
  font-family: var(--body);
  font-size: 12.5px;
  color: var(--ink);
  margin-top: 2px;
  letter-spacing: 0.02em;
  font-feature-settings: "tnum";
  transition: color .35s ease;
}
.contact-arrow {
  font-size: 22px;
  color: var(--charcoal);
  transition: color .35s ease, transform .35s ease;
}

.contact-hours {
  margin-top: 36px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--muted);
  width: 100%;
  justify-content: center;
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: var(--charcoal);
  color: var(--cream);
  padding: clamp(56px, 7vw, 88px) var(--pad-x) 32px;
  position: relative;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--clay), transparent);
}
.footer-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(242, 235, 220, 0.12);
}
.footer-brand .logo-text {
  font-family: var(--display);
  font-style: italic;
  font-size: 36px;
  color: var(--cream);
  font-variation-settings: "opsz" 144, "SOFT" 30;
}
.footer-brand .logo-dot { color: var(--clay-bright); font-style: normal; }
.footer-brand p {
  margin-top: 10px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(242, 235, 220, 0.65);
  font-weight: 600;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer-h {
  display: block;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clay-bright);
  font-weight: 700;
  margin-bottom: 14px;
}
.footer-col p {
  font-family: var(--display);
  font-style: italic;
  font-size: 16px;
  font-weight: 350;
  line-height: 1.5;
  color: var(--cream);
  font-variation-settings: "opsz" 144;
}
.lang-switch--footer { color: var(--cream); }
.lang-switch--footer button.active { color: var(--cream); }

.footer-mention {
  max-width: var(--maxw);
  margin: 32px auto 0;
  display: flex;
  justify-content: space-between;
  gap: 48px;
  font-size: 11px;
  line-height: 1.65;
  color: rgba(242, 235, 220, 0.5);
  letter-spacing: 0.01em;
}
.footer-mention p { max-width: 64ch; }
.footer-mention .copy {
  text-align: right;
  white-space: nowrap;
  letter-spacing: 0.08em;
}

/* =========================================================
   Reveal animations
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s cubic-bezier(.2,.7,.2,1), transform 1s cubic-bezier(.2,.7,.2,1);
  transition-delay: var(--rev-delay, 0ms);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 980px) {
  .nav { grid-template-columns: auto auto; gap: 12px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-right { gap: 0; }

  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-right { order: -1; }
  .hero-card { max-width: 320px; }
  .hero-title .w2 { margin-left: 0; }

  .matchs-grid { grid-template-columns: 1fr; gap: 16px; }
  .service-grid {
    grid-template-columns: 1fr 1fr;
  }
  .pillar { border-bottom: 1px solid var(--line); padding-left: 24px !important; padding-right: 24px; }
  .pillar:nth-child(odd) { border-right: 1px solid var(--line); padding-left: 0 !important; }
  .pillar:nth-child(even) { border-right: 0; }
  .pillar:nth-last-child(-n+2) { border-bottom: 0; }

  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .footer-mention { flex-direction: column; gap: 16px; }
  .footer-mention .copy { text-align: left; }

  .section-head {
    grid-template-columns: 1fr;
    gap: 16px;
    align-items: start;
  }
}
@media (max-width: 560px) {
  .ticker-track { font-size: 10px; letter-spacing: 0.18em; }
  .hero-title { font-size: clamp(56px, 16vw, 110px); }
  .hero-title .w3 { font-size: 0.42em; }
  .featured-flag { top: 14px; right: 14px; padding: 4px 8px; font-size: 9px; }
  .contact-card { padding: 22px 22px; gap: 16px; }
  .contact-icon { width: 50px; height: 50px; }
  .service-grid { grid-template-columns: 1fr; }
  .pillar { border-right: 0 !important; padding-left: 0 !important; padding-right: 0; }
  .pillar:not(:last-child) { border-bottom: 1px solid var(--line); }
}
