/* =============================================
   MOVING MARSEILLE — Redesign éditorial
   ============================================= */

:root {
  --blue:     #4437FF; /* Bleu Roi */
  --yellow:   #FFF800; /* Bright Sun */
  --midnight: #0C1956;
  --sanguine: #FF4C0D;
  --white:  #FFFFFF;
  --black:  #0A0A0A;
  --gray:   #F2F2EF;
  --muted:  #888;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-menu: 'Fraunces', 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --max-w: 1200px;
  --nav-h: 60px;
}

:root, html[data-theme="light"] {
  --bg: #F2F2EF;
  --fg: #0A0A0A;
  --bg2: #FFFFFF;
  --border: rgba(0,0,0,0.08);
  --nav-scrolled: rgba(242,242,239,0.95);
}
html[data-theme="dark"] {
  --bg: #0A0A0A;
  --fg: #F2F2EF;
  --bg2: #141414;
  --border: rgba(255,255,255,0.08);
  --nav-scrolled: rgba(10,10,10,0.95);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  transition: background 0.3s, color 0.3s;
}
a { text-decoration: none; color: inherit; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 40px; }

/* EYEBROW */
.eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
}
html[data-theme="dark"] .eyebrow { color: var(--yellow); }

/* NAV */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  z-index: 200;
  transition: background 0.3s, box-shadow 0.3s;
  background: linear-gradient(to bottom, rgba(0,0,0,0.25) 0%, transparent 100%);
}
.nav.scrolled {
  background: var(--nav-scrolled);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-logo {
  display: flex;
  align-items: center;
  line-height: 0;
  transition: transform 0.2s ease;
}
.nav-logo:hover { transform: scale(1.05); }
.nav-logo img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  animation: navLogoSpin 10s linear infinite;
}
@keyframes navLogoSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.nav-center {
  display: flex;
  align-items: center;
  gap: 36px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.nav-link {
  font-family: var(--font-menu);
  font-size: 15px;
  font-weight: 700;
  color: white;
  text-decoration: none;
  opacity: 0.85;
  transition: opacity 0.2s;
  letter-spacing: 0;
  text-transform: lowercase;
}
.nav-link:hover { opacity: 1; }
.nav.scrolled .nav-link { color: var(--fg); opacity: 0.6; }
.nav.scrolled .nav-link:hover { opacity: 1; }

.nav-right { display: flex; align-items: center; gap: 16px; }
.lang-toggle { display: flex; gap: 2px; }
.lang-btn {
  background: none; border: none;
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.6);
  padding: 4px 6px; cursor: pointer;
  transition: color 0.2s;
}
.lang-btn:hover { color: white; }
.lang-btn.active { color: white; }
.nav.scrolled .lang-btn { color: var(--muted); }
.nav.scrolled .lang-btn.active { color: var(--fg); }

.theme-toggle {
  background: rgba(255,255,255,0.15);
  border: 1.5px solid rgba(255,255,255,0.5);
  border-radius: 100px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 15px;
  color: white;
  position: relative;
  transition: background 0.2s, border-color 0.2s;
}
.theme-toggle:hover {
  background: rgba(255,255,255,0.25);
  border-color: white;
}
.nav.scrolled .theme-toggle {
  background: var(--bg);
  border-color: var(--border);
  color: var(--fg);
}
.nav.scrolled .theme-toggle:hover {
  border-color: var(--blue);
}
.theme-icon { position: absolute; transition: opacity 0.3s, transform 0.3s; }
.theme-icon--light { opacity: 1; }
.theme-icon--dark { opacity: 0; transform: scale(0.5); }
html[data-theme="dark"] .theme-icon--light { opacity: 0; transform: scale(0.5); }
html[data-theme="dark"] .theme-icon--dark { opacity: 1; transform: scale(1); }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none; border: none;
  cursor: pointer; padding: 4px;
  z-index: 201;
}
.burger span {
  display: block; width: 22px; height: 1.5px;
  background: white;
  transition: transform 0.3s, opacity 0.3s, background 0.2s;
  transform-origin: center;
}
.nav.scrolled .burger span { background: var(--fg); }

/* Burger → X when open */
.burger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); background: white !important; }
.burger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); background: white !important; }

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--blue);
  z-index: 190;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mm-link {
  font-family: var(--font-menu);
  font-size: clamp(32px, 8vw, 56px);
  font-weight: 900;
  color: white;
  letter-spacing: -0.02em;
  text-transform: lowercase;
}
.mm-link:hover { color: var(--yellow); }

/* HERO */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  background: var(--blue);
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.5;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(2,132,255,0.6) 0%, rgba(2,132,255,0.3) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 60px 80px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.hero-title {
  display: flex;
  flex-direction: column;
  line-height: 1.08;
  margin-bottom: 32px;
}
.hero-line1 {
  display: flex;
  align-items: baseline;
  gap: 0.1em;
}
.hero-line2 {
  font-family: var(--font-display);
  font-size: clamp(72px, 13vw, 180px);
  font-weight: 700;
  color: white;
  letter-spacing: -0.04em;
}
.hero-word {
  font-family: var(--font-display);
  font-size: clamp(72px, 13vw, 180px);
  font-weight: 700;
  color: white;
  letter-spacing: -0.04em;
  white-space: nowrap;
}
.hero-prep-wrap {
  position: relative;
  display: inline-block;
  overflow: hidden;
  vertical-align: baseline;
}
.prep-ghost {
  font-family: var(--font-display);
  font-size: clamp(72px, 13vw, 180px);
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.04em;
  visibility: hidden;
  white-space: nowrap;
  line-height: 0.95;
  display: block;
}
.prep {
  position: absolute;
  bottom: 0; left: 0;
  font-family: var(--font-display);
  font-size: clamp(72px, 13vw, 180px);
  font-weight: 400;
  font-style: italic;
  color: var(--yellow);
  letter-spacing: -0.04em;
  white-space: nowrap;
  line-height: 0.95;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.prep.active { opacity: 1; transform: translateY(0); }

.hero-sub {
  font-family: var(--font-menu);
  font-size: clamp(14px, 1.6vw, 22px);
  font-style: italic;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  max-width: none;
  white-space: nowrap;
  margin-bottom: 32px;
}
/* SKIP LINK */
.skip-link {
  position: fixed;
  top: 0;
  left: 0;
  background: var(--blue);
  color: white;
  padding: 8px 16px;
  border-radius: 0 0 4px 0;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  z-index: 9999;
  transform: translateY(-100%);
  transition: transform 0.2s;
}
.skip-link:focus { transform: translateY(0); }

/* FOCUS STYLES */
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
  border-radius: 2px;
}

/* HERO CTAs */
.hero-ctas {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: white;
  border-bottom: 1px solid rgba(255,255,255,0.4);
  padding-bottom: 4px;
  width: fit-content;
  transition: border-color 0.2s;
}
.hero-cta:hover { border-color: white; }
.hero-cta svg { transition: transform 0.2s; }
.hero-cta:hover svg { transform: translateY(3px); }
.hero-cta--solid {
  background: var(--yellow);
  color: #0a0a0a;
  border: none;
  border-radius: 100px;
  padding: 12px 24px;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.hero-cta--solid:hover { opacity: 0.9; border: none; }

/* STATEMENT */
.statement {
  padding: 100px 0;
  background: var(--bg);
}
.statement-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
}
.statement-text {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 54px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--fg);
  max-width: 900px;
}
.statement-text em {
  font-style: italic;
  color: var(--blue);
}
html[data-theme="dark"] .statement-text em { color: var(--yellow); }

/* TICKER */
.ticker-bar {
  background: var(--blue);
  padding: 14px 0;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}
.ticker-track {
  display: flex;
  gap: 32px;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
}
.ticker-track span {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.ticker-track .sep { color: var(--yellow); }
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* SPLIT SECTIONS */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}
.split--reverse { direction: rtl; }
.split--reverse > * { direction: ltr; }
.split-img {
  overflow: hidden;
  position: relative;
  min-height: 520px;
}
.split-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.8s ease;
}
.split-img:hover img { transform: scale(1.04); }
.split-text {
  padding: 72px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--bg2);
}
.split-text h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 24px;
}
.split-text p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--muted);
  max-width: 440px;
}
.pull-quote {
  margin-top: 32px;
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 28px);
  font-style: italic;
  font-weight: 700;
  color: var(--sanguine);
  border: none;
  padding: 0;
  line-height: 1.3;
}
html[data-theme="dark"] .pull-quote { color: var(--sanguine); }

/* CITY FULL WIDTH */
.city-full { background: var(--bg); }
.city-full-img {
  background: var(--gray);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
html[data-theme="dark"] .city-full-img { background: #1a1a1a; }
.city-full-img img {
  width: 100%;
  max-width: 1000px;
  height: auto;
  object-fit: contain;
  border-radius: 4px;
  transition: transform 0.8s;
}
.city-full-img:hover img { transform: scale(1.01); }
.city-full-text { padding: 80px 0; }
.city-full-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: start;
}
.city-full-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--fg);
}
.city-full-inner p {
  font-size: 15px;
  line-height: 1.8;
  font-weight: 300;
  color: var(--muted);
  padding-top: 8px;
}

/* PROJECTS */
.projects-section { padding: 100px 0; background: var(--bg); }
.projects-header { margin-bottom: 56px; }
.projects-header h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--fg);
}
.projects-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 48px;
  border-top: 1px solid var(--border);
}
.proj-item {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  gap: 20px;
  align-items: start;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
  cursor: default;
}
.proj-item:hover { background: var(--bg2); padding-left: 12px; padding-right: 12px; margin: 0 -12px; }
.proj-num {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--blue);
}
html[data-theme="dark"] .proj-num { color: var(--yellow); }
.proj-body h3 {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 4px;
}
.proj-body p {
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.6;
}
.proj-tag {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}

/* TEAM */
.team-section { padding: 100px 0; background: var(--bg2); }
.team-header { margin-bottom: 64px; text-align: center; }
.team-header h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 12px;
}
.team-intro-text {
  font-size: 15px;
  font-weight: 300;
  color: var(--muted);
  max-width: 500px;
  margin: 0 auto;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  justify-items: center;
}
.team-member {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  max-width: 280px;
}
.team-img-wrap {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--blue);
  flex-shrink: 0;
}
.team-img-wrap img {
  object-position: center top;
  filter: grayscale(100%);
  transition: filter 0.4s ease;
}
.team-img-wrap:hover img { filter: grayscale(0%); }
.team-info h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 8px;
}
.team-info p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 12px;
}
.team-link {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--blue);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
.team-link:hover { border-color: var(--blue); }
html[data-theme="dark"] .team-link { color: var(--yellow); }

/* CLOSING */
.closing {
  padding: 120px 0;
  background: var(--blue);
}
.closing .container { display: flex; flex-direction: column; gap: 8px; }
.closing-line {
  font-family: var(--font-display);
  font-size: clamp(24px, 4vw, 48px);
  font-weight: 400;
  font-style: italic;
  color: rgba(255,255,255,0.4);
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.closing-accent {
  color: white;
  font-weight: 700;
  font-style: normal;
}

/* CONTACT */
.contact-section {
  display: block;
  position: relative;
  padding: 100px 0 60px;
  background: var(--blue);
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  margin: 0;
  clear: both;
}
/* Gradient overlay to blend image better with blue */
.contact-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(2, 132, 255, 0.55) 0%,
    rgba(2, 132, 255, 0.40) 50%,
    rgba(2, 132, 255, 0.65) 100%
  );
  z-index: 0;
  pointer-events: none;
}
.contact-bg-img {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  opacity: 0.3;
  z-index: 0;
  pointer-events: none;
  transform: scale(1.02);
}
.contact-section .container { position: relative; z-index: 2; }
.contact-inner { max-width: 100%; }
.contact-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.5vw, 72px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: white;
  line-height: 1;
  margin-bottom: 20px;
}
.contact-inner p {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  margin-bottom: 48px;
}
.cta-email {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 500;
  color: var(--yellow);
  border-bottom: 2px solid var(--yellow);
  padding-bottom: 4px;
  margin-bottom: 48px;
  transition: opacity 0.2s;
}
.cta-email:hover { opacity: 0.8; }
.contact-social {
  display: flex;
  gap: 24px;
}
.contact-social a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.contact-social a:hover { color: white; border-color: white; }

/* FOOTER */
.footer {
  display: block;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 20px 0;
  background: var(--blue);
  border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-inner { display: flex; justify-content: space-between; align-items: center; }
.footer-inner span { font-size: 12px; color: rgba(255,255,255,0.35); }
.footer-brand { display: flex; align-items: center; gap: 8px; }
.footer-brand span { color: rgba(255,255,255,0.6); font-weight: 500; }
.footer-logo { width: 18px; height: 18px; object-fit: contain; }

/* REVEAL */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .container { padding: 0 24px; }
  .nav { padding: 0 24px; }
  .nav-center { display: none; }
  .burger { display: flex; }
  .lang-toggle { display: none; }
  .theme-toggle { display: flex; }
  .split { grid-template-columns: 1fr; min-height: auto; }
  .split--reverse { direction: ltr; }
  .split-img { height: 300px; }
  .split-text { padding: 48px 24px; }
  .city-full-inner { grid-template-columns: 1fr; gap: 24px; }
  .team-grid { grid-template-columns: 1fr; gap: 48px; }
  .team-member { align-items: center; text-align: center; }
  .projects-list { grid-template-columns: 1fr; }
  .proj-item { grid-template-columns: 40px 1fr; }
  .statement-inner { padding: 0 24px; }
  .statement { padding: 64px 0; }

  /* Hero mobile fixes */
  .hero-content { padding: 0 20px 60px; }
  .hero-sub { white-space: normal; font-size: 15px; }
  .hero-line1 { flex-wrap: nowrap; overflow: hidden; }
  .hero-word {
    font-size: clamp(42px, 13vw, 72px);
    white-space: nowrap;
  }
  .hero-line2 {
    font-size: clamp(42px, 13vw, 72px);
  }
  .prep, .prep-ghost {
    font-size: clamp(42px, 13vw, 72px);
  }
  .hero-prep-wrap { overflow: hidden; }

  /* Contact mobile */
  .contact-section { padding: 72px 0; }
  .contact-inner h2 { font-size: clamp(32px, 8vw, 56px); }

  /* Projects mobile */
  .projects-header h2 { font-size: clamp(28px, 6vw, 40px); }
}

@media (prefers-reduced-motion: reduce) {
  .ticker-track { animation: none; }
  .prep { transition: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
}


/* =============================================
   MANIFESTO TAGLINE
   ============================================= */
.manifesto-tagline {
  margin-top: 20px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--fg);
  max-width: 440px;
  border-left: 2px solid var(--blue);
  padding-left: 16px;
}
html[data-theme="dark"] .manifesto-tagline { border-color: var(--yellow); }

/* =============================================
   URBAN FIELD TRIPS SECTION
   ============================================= */

.nav-link--cta {
  color: var(--sanguine) !important;
  opacity: 1 !important;
  font-weight: 700;
}
.nav.scrolled .nav-link--cta { color: var(--sanguine) !important; opacity: 1 !important; }

.uft-section {
  padding: 100px 0;
  background: var(--bg2);
}
.uft-header { margin-bottom: 56px; }
.uft-header h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--fg);
  margin-bottom: 20px;
  max-width: 720px;
}
.uft-intro {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--muted);
  max-width: 760px;
}
.uft-intro + .uft-intro { margin-top: 16px; }

/* Practical info */
.uft-practical {
  margin-top: 80px;
  padding-top: 56px;
  border-top: 1px solid var(--border);
}
.uft-practical .eyebrow { display: block; margin-bottom: 24px; }

.uft-practical-top { max-width: 640px; margin-bottom: 40px; }
.uft-practical-top h5,
.uft-price-card h5 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 10px;
}
.uft-practical-top p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--muted);
}

/* Pricing card */
.uft-price-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
}
.uft-price-stat {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 12px 0 14px;
  flex-wrap: wrap;
}
.uft-price-amount {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 700;
  color: var(--sanguine);
  letter-spacing: -0.02em;
  line-height: 1;
}
.uft-price-meta {
  display: flex;
  flex-direction: column;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--muted);
  line-height: 1.4;
}
.uft-price-total {
  font-size: 13px;
  font-weight: 400;
  color: var(--muted);
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.uft-price-card-lists {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.uft-price-card-lists h6 {
  font-family: var(--font-menu);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg);
  margin-bottom: 14px;
}
.uft-included-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.uft-included-list li {
  font-size: 13.5px;
  font-weight: 300;
  line-height: 1.5;
  color: var(--fg);
  padding-left: 26px;
  position: relative;
  margin-bottom: 12px;
}
.uft-included-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--sanguine);
}
.uft-included-list li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 5px;
  width: 6px;
  height: 9px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
}
.uft-included-list--not li {
  color: var(--muted);
}
.uft-included-list--not li::before {
  background: none;
  border: 1.5px solid var(--border);
}
.uft-included-list--not li::after {
  left: 4px;
  top: 7px;
  width: 8px;
  height: 8px;
  border-right: none;
  border-bottom: none;
  border-top: 1.5px solid var(--muted);
  transform: none;
}

/* Open trips heading */
.uft-open { margin-bottom: 72px; }
.uft-sub {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

/* ACCORDION */
.uft-accordion { display: flex; flex-direction: column; border-top: 1px solid var(--border); }

.uft-acc-item { border-bottom: 1px solid var(--border); }

.uft-acc-trigger {
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 20px;
  padding: 24px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background 0.15s;
}
.uft-acc-trigger:hover { background: var(--bg); margin: 0 -20px; padding-left: 20px; padding-right: 20px; }

.uft-acc-num {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--blue);
  width: 28px;
}
html[data-theme="dark"] .uft-acc-num { color: var(--yellow); }

.uft-acc-name {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
  color: var(--fg);
  line-height: 1.2;
}

.uft-acc-date {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #fff;
  background: var(--sanguine);
  padding: 6px 14px;
  border-radius: 100px;
  white-space: nowrap;
}

.uft-acc-cs {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--yellow);
  color: #0a0a0a;
  padding: 3px 10px;
  border-radius: 100px;
  white-space: nowrap;
}

.uft-acc-icon {
  font-size: 20px;
  color: var(--muted);
  transition: transform 0.3s ease;
  line-height: 1;
  margin-left: 8px;
}
.uft-acc-item.is-open .uft-acc-icon { transform: rotate(45deg); }

/* Panel */
.uft-acc-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}
.uft-acc-item.is-open .uft-acc-panel { grid-template-rows: 1fr; }
.uft-acc-panel-inner {
  overflow: hidden;
}
.uft-acc-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding: 0 0 36px 48px;
}
.uft-acc-body p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--muted);
}
.uft-acc-body p + p { margin-top: 16px; }
.uft-acc-tagline {
  font-family: var(--font-menu);
  font-size: 17px !important;
  font-weight: 600 !important;
  line-height: 1.5 !important;
  color: var(--fg) !important;
  margin-bottom: 4px;
}
.uft-note {
  font-size: 13px !important;
  font-style: italic;
  opacity: 0.8;
}
.uft-acc-body h5 {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}
.uft-themes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.uft-themes span {
  font-size: 11px;
  font-weight: 400;
  color: var(--blue);
  border: 1px solid var(--blue);
  border-radius: 100px;
  padding: 4px 12px;
  opacity: 0.75;
}
html[data-theme="dark"] .uft-themes span { color: var(--yellow); border-color: var(--yellow); }

.uft-notify {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--blue);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
.uft-notify:hover { border-color: var(--blue); }
html[data-theme="dark"] .uft-notify { color: var(--yellow); }

/* TAILOR-MADE */
.uft-tailor {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 64px;
  align-items: start;
  padding-top: 64px;
  border-top: 1px solid var(--border);
}
.uft-tailor-intro .eyebrow { margin-bottom: 12px; }
.uft-tailor-intro h3 {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--fg);
  margin-bottom: 16px;
}
.uft-tailor-intro p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--muted);
}

/* Form */
.uft-form { display: flex; flex-direction: column; gap: 18px; }
.uft-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.uft-form-group { display: flex; flex-direction: column; gap: 6px; }
.uft-form-group--full { width: 100%; }
.uft-form-group label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.uft-form-group input,
.uft-form-group select,
.uft-form-group textarea {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 10px 14px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  color: var(--fg);
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.uft-form-group input:focus,
.uft-form-group select:focus,
.uft-form-group textarea:focus { border-color: var(--blue); }
.uft-form-group textarea { resize: vertical; min-height: 80px; }

.uft-checkboxes { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.uft-check {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 300;
  color: var(--fg);
  cursor: pointer;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 5px 14px;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
  user-select: none;
}
.uft-check:hover { border-color: var(--blue); }
.uft-check input[type="checkbox"] { display: none; }
.uft-check.checked {
  background: var(--blue);
  border-color: var(--blue);
  color: white;
}
html[data-theme="dark"] .uft-check.checked {
  background: var(--yellow);
  border-color: var(--yellow);
  color: #0a0a0a;
}

.uft-form-footer { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; margin-top: 8px; }
.uft-submit {
  background: var(--blue);
  color: white;
  border: none;
  border-radius: 100px;
  padding: 13px 32px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.1s;
}
.uft-submit:hover { opacity: 0.85; }
.uft-submit:active { transform: scale(0.98); }
.uft-submit:disabled { opacity: 0.4; cursor: not-allowed; }
html[data-theme="dark"] .uft-submit { background: var(--yellow); color: #0a0a0a; }
.uft-reply { font-size: 13px; font-weight: 300; color: var(--muted); }
.uft-confirm { font-size: 14px; font-weight: 500; color: var(--blue); margin-top: 8px; }
html[data-theme="dark"] .uft-confirm { color: var(--yellow); }

/* =============================================
   CONTACT — COLLAB PATHS
   ============================================= */
.collab-paths {
  display: grid;
  grid-template-columns: 1fr 40px 1fr;
  align-items: center;
  gap: 0;
  margin: 40px 0 48px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  overflow: hidden;
}
.collab-path {
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
}
.collab-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  border-left: 1px solid rgba(255,255,255,0.12);
  border-right: 1px solid rgba(255,255,255,0.12);
}
.collab-divider span {
  font-family: var(--font-display);
  font-size: 12px;
  font-style: italic;
  color: rgba(255,255,255,0.3);
  writing-mode: vertical-rl;
  letter-spacing: 0.12em;
}
.collab-num {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--yellow);
  opacity: 0.7;
}
.collab-title {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 700;
  color: white;
  line-height: 1.2;
}
.collab-desc {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255,255,255,0.6);
  flex: 1;
}
.collab-cta {
  align-self: flex-start;
  margin-top: 8px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.collab-cta:hover { color: white; border-color: white; }
.collab-cta--primary {
  background: var(--yellow);
  color: #0a0a0a !important;
  border: none !important;
  border-radius: 100px;
  padding: 11px 24px;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: opacity 0.2s;
}
.collab-cta--primary:hover { opacity: 0.88; color: #0a0a0a !important; }
.cta-email.collab-cta {
  color: var(--yellow) !important;
  border-bottom: 1px solid rgba(253,234,96,0.35) !important;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 3px;
}
.cta-email.collab-cta:hover { opacity: 0.8; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 900px) {
  .uft-acc-body { grid-template-columns: 1fr; gap: 24px; padding-left: 0; }
  .uft-price-card { grid-template-columns: 1fr; gap: 28px; padding: 28px; }
  .uft-price-card-lists { grid-template-columns: 1fr; gap: 24px; }
  .uft-acc-trigger { grid-template-columns: auto 1fr auto auto; gap: 12px; }
  .uft-acc-date { font-size: 10px; padding: 5px 10px; }
  .uft-tailor { grid-template-columns: 1fr; gap: 32px; }
  .uft-form-row { grid-template-columns: 1fr; }
  .uft-section { padding: 64px 0; }
  .collab-paths { grid-template-columns: 1fr; }
  .collab-divider {
    height: 40px;
    border-left: none; border-right: none;
    border-top: 1px solid rgba(255,255,255,0.12);
    border-bottom: 1px solid rgba(255,255,255,0.12);
    writing-mode: horizontal-tb;
  }
  .collab-divider span { writing-mode: horizontal-tb; }
}



.collab-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 8px;
  margin-bottom: 40px;
}
.collab-or {
  font-family: var(--font-display);
  font-size: 13px;
  font-style: italic;
  color: rgba(255,255,255,0.3);
}



/* Footer refinements */
.footer {
  display: block;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 24px 0;
  background: var(--midnight);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-inner span {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}


/* PROJECTS — updated framing */
.projects-intro {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--muted);
  max-width: 600px;
  margin-top: 16px;
}

/* Status badge replaces tag */
.proj-status {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  border: 1px solid var(--blue);
  border-radius: 100px;
  padding: 3px 10px;
  white-space: nowrap;
  align-self: flex-start;
  margin-top: 4px;
  opacity: 0.7;
}
.proj-status--event {
  color: var(--sanguine);
  border-color: var(--sanguine);
  opacity: 1;
}
html[data-theme="dark"] .proj-status { color: var(--yellow); border-color: var(--yellow); }

/* Bridge to UFT */
.projects-bridge {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.projects-bridge p {
  font-family: var(--font-display);
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 700;
  font-style: italic;
  color: var(--fg);
}
.bridge-cta {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue);
  border-bottom: 2px solid var(--blue);
  padding-bottom: 2px;
  transition: opacity 0.2s;
  white-space: nowrap;
}
.bridge-cta:hover { opacity: 0.7; }
html[data-theme="dark"] .bridge-cta { color: var(--yellow); border-color: var(--yellow); }




/* Contact + footer full width */
html { background: var(--blue); }
.contact-section { width: 100%; box-sizing: border-box; }
.footer { width: 100%; box-sizing: border-box; }
