/* ═══════════════════════════════════════════════════════
   TAKEYS V3 — overrides on top of v2
   Goals: sober, shorter, real logo, clearer bifurcation
   ═══════════════════════════════════════════════════════ */

:root {
  --section-pad: clamp(56px, 7vw, 110px); /* was 80-160 */
}

/* ══════════ NAV — logo visible in top nav ══════════ */
.nav-logo { height: 40px !important; width: auto; }
#nav.scrolled .nav-logo { height: 34px !important; }
#nav { justify-content: space-between !important; }
#nav::before { content: none !important; display: none !important; }
#nav.scrolled::before { content: none !important; display: none !important; }

/* ══════════ HERO — restructured, tighter, no watermark ══════════ */
#hero {
  min-height: 92vh !important;
  padding: clamp(130px, 16vh, 180px) var(--gutter) 60px !important;
  justify-content: center !important;
}
.hero-watermark {
  display: none !important;
  top: 50% !important;
  bottom: auto !important;
  right: clamp(40px, 5vw, 100px) !important;
  left: auto !important;
  transform: translateY(-50%) !important;
  width: clamp(160px, 22vw, 380px) !important;
  max-width: 380px !important;
  height: auto !important;
  opacity: 0.22 !important;
  color: transparent !important;
  background-image: url('assets/logo-takeys-v2.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  aspect-ratio: 1024 / 804;
  mix-blend-mode: screen;
  filter: brightness(0.95) contrast(0.8);
  pointer-events: none !important;
  z-index: 1 !important;
}
.hero-meta-top { top: 80px !important; }

.hero-inner {
  max-width: 1100px !important;
  margin-top: 0 !important;
}

.hero-label {
  margin-bottom: 28px !important;
}

.hero-tagline {
  font-size: clamp(48px, 8.5vw, 128px) !important;
  line-height: 0.95 !important;
}

.hero-sub {
  margin-top: 28px !important;
  font-size: clamp(17px, 1.6vw, 22px) !important;
  max-width: 560px !important;
}

/* New clear CTA pair — replaces bifurcation */
.hero-cta-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 44px;
  max-width: 720px;
}
.hcta {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 22px 26px;
  border: 1px solid rgba(244, 239, 229, 0.2);
  background: rgba(26, 23, 19, 0.28);
  backdrop-filter: blur(10px) saturate(1.1);
  -webkit-backdrop-filter: blur(10px) saturate(1.1);
  transition: all .4s var(--ease-smooth);
}
.hcta-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hcta-tag {
  color: var(--sauge);
  opacity: .8;
}
.hcta-title {
  font-family: var(--f-serif);
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--bone);
}
.hcta-arrow {
  font-family: var(--f-serif);
  font-size: 22px;
  color: var(--sauge);
  transition: transform .4s var(--ease-smooth);
}
.hcta:hover {
  background: rgba(244, 239, 229, 0.08);
  border-color: var(--bone);
  transform: translateY(-2px);
}
.hcta:hover .hcta-arrow { transform: translateX(6px); color: var(--bone); }
.hcta-trav { border-left: 2px solid var(--sauge); }
.hcta-own {
  border-left: none;
  background: var(--sauge);
  border-color: var(--sauge);
}
.hcta-own .hcta-tag { color: var(--ink); opacity: .7; }
.hcta-own .hcta-title { color: var(--ink); }
.hcta-own .hcta-arrow { color: var(--ink); }
.hcta-own:hover {
  background: var(--bone);
  border-color: var(--bone);
}

.hero-cities {
  margin-top: 36px !important;
  gap: 20px !important;
  padding-top: 24px !important;
  border-top: 1px solid rgba(244, 239, 229, 0.08);
}
.hc-btn { font-size: 18px !important; padding: 6px 0 !important; }

.scroll-indicator { display: none !important; }

/* ══════════ STAT BAND — replaces marquee + has motion ══════════ */
.stat-band {
  background: var(--ink);
  border-top: 1px solid var(--bone-line-2);
  border-bottom: 1px solid var(--bone-line-2);
  padding: 36px 0;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.stat-band::before {
  content: "";
  position: absolute;
  top: 0; left: -100%;
  width: 50%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--sauge), transparent);
  animation: sheen 6s linear infinite;
}
@keyframes sheen {
  0% { left: -60%; }
  100% { left: 160%; }
}
.stat-band-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.sbi {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0 8px 0 28px;
  border-left: 1px solid var(--bone-line-2);
  position: relative;
  transition: transform .5s var(--ease-smooth);
}
.sbi:first-child { border-left: none; padding-left: 0; }
.sbi::after {
  content: "";
  position: absolute;
  left: 28px; bottom: -8px;
  width: 0; height: 1px;
  background: var(--sauge);
  transition: width .5s var(--ease-smooth);
}
.sbi:first-child::after { left: 0; }
.sbi:hover { transform: translateY(-2px); }
.sbi:hover::after { width: 40px; }
.sbi-num {
  font-family: var(--f-serif);
  font-weight: 500;
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1;
  color: var(--bone);
  letter-spacing: 0;
  display: inline-block;
}
.sbi-num em {
  font-style: italic;
  color: var(--sauge);
  font-size: 0.55em;
  margin-left: 2px;
}
.sbi-lbl {
  color: var(--bone-dim);
  letter-spacing: 0.12em;
  line-height: 1.3;
  font-size: 10px;
}

/* ══════════ INTRO — compacter ══════════ */
#intro {
  padding: clamp(56px, 7vw, 100px) 0 clamp(56px, 7vw, 100px) !important;
}
.intro-grid {
  gap: 60px !important;
}
.intro-right { padding-top: 20px !important; }
.intro-body p { font-size: 16px !important; line-height: 1.65 !important; margin-bottom: 14px !important; }
.intro-body p.intro-sig { font-size: 19px !important; margin-top: 18px !important; }

/* Stats sticky — compress to 80vh, less stark */
.stats-sticky {
  margin-top: 80px !important;
  height: 82vh !important;
}
.stat-block {
  width: 38vw !important;
  padding: 0 3vw !important;
}
.stat-num {
  font-size: clamp(80px, 12vw, 180px) !important;
}

/* ══════════ DESTINATIONS — less padding ══════════ */
.dest-header { margin-bottom: 48px !important; }
.section-label { margin-bottom: 24px !important; }
.section-title { font-size: clamp(38px, 6vw, 88px) !important; }

/* Rules cleaner */
.rule { margin: 32px 0 22px !important; }

/* ══════════ VALUES — compacter quad ══════════ */
#values { padding: var(--section-pad) 0 !important; }
.values-grid { gap: 60px !important; }
.val { padding: 32px 26px !important; }
.val-name { font-size: 28px !important; margin-bottom: 12px !important; }
.val-num { margin-bottom: 28px !important; }
.val-desc { font-size: 14px !important; line-height: 1.6 !important; }

/* ══════════ PROPRIOS — moins d'air ══════════ */
.proprios-grid { gap: 60px !important; }
.proprios-text p { font-size: 16px !important; margin-bottom: 14px !important; }
.owners-list { margin: 24px 0 30px !important; }
.owners-list li { padding: 14px 0 14px 30px !important; font-size: 14px !important; }
.owners-metrics { margin: 28px 0 !important; gap: 32px !important; }
.ometric-num { font-size: clamp(48px, 6vw, 76px) !important; }

/* ══════════ LICENCE — collapsible-like, compacter ══════════ */
#licence { padding: var(--section-pad) 0 !important; }
.licence-grid { gap: 60px !important; }
.lstep { padding: 24px 0 !important; grid-template-columns: 64px 1fr !important; gap: 22px !important; }
.lstep-num { font-size: 40px !important; }
.lstep-body h3 { font-size: 22px !important; }
.lstep-body p { font-size: 14px !important; }

/* ══════════ REVIEWS — tighter ══════════ */
.reviews-header { margin-bottom: 48px !important; }
.rcard { padding: 36px 32px !important; }
.rcard-text { font-size: clamp(17px, 1.6vw, 21px) !important; margin-bottom: 22px !important; }
.reviews-aggregate { margin-top: 48px !important; padding-top: 40px !important; gap: 28px !important; }
.agg-score { font-size: clamp(64px, 10vw, 140px) !important; }

/* ══════════ JOURNAL ══════════ */
.journal-header { margin-bottom: 48px !important; }
.jcard-title { font-size: 22px !important; }
.jcard-excerpt { font-size: 13px !important; }

/* ══════════ CONTACT ══════════ */
.contact-grid { gap: 60px !important; }
.contact-intro { font-size: 19px !important; margin: 24px 0 28px !important; }
.cinfo { padding: 16px 0 !important; }
.cinfo-v { font-size: 16px !important; }

/* ══════════ FOOTER ══════════ */
footer { padding-top: clamp(60px, 8vw, 100px) !important; padding-bottom: 30px !important; }
.footer-hero { margin-bottom: 60px !important; }
.footer-logo { height: 28px !important; filter: none !important; opacity: 1 !important; }
.footer-slogan { font-size: clamp(42px, 7vw, 112px) !important; }
.footer-cols { padding-top: 40px !important; margin-bottom: 40px !important; }

/* ══════════ MAP — smaller, clearer ══════════ */
.map-frame { aspect-ratio: 16/7; }

/* ══════════ RESPONSIVE — TABLET ══════════ */
@media (max-width: 1024px) {
  :root { --section-pad: clamp(48px, 7vw, 80px); }
  .stat-band-row { grid-template-columns: repeat(2, 1fr); row-gap: 28px; }
  .sbi:nth-child(3) { border-left: none; padding-left: 0; }
  .sbi:nth-child(3)::after { left: 0; }
  .values-grid { gap: 48px !important; }
  .intro-grid { gap: 48px !important; }
}

/* ══════════ RESPONSIVE — MOBILE ══════════ */
@media (max-width: 720px) {
  :root { --section-pad: 56px; --gutter: 20px; }

  /* NAV */
  #nav { padding: 14px var(--gutter) !important; }
  #nav::before { font-size: 11px !important; letter-spacing: 0.28em !important; }
  .nav-lang { display: none !important; }
  .nav-logo { height: 28px !important; }

  /* HERO — tighter */
  #hero {
    min-height: 88vh !important;
    padding: 110px var(--gutter) 48px !important;
  }
  .hero-tagline { font-size: clamp(40px, 12vw, 64px) !important; line-height: 1 !important; }
  .hero-sub { font-size: 15px !important; margin-top: 20px !important; }
  .hero-label { margin-bottom: 20px !important; font-size: 10px !important; letter-spacing: 0.28em !important; }
  .hero-meta-top { display: none !important; }

  /* Hero wordmark watermark — mobile: centré en bas */
  .hero-watermark { display: none !important; }

  /* CTA pair */
  .hero-cta-pair { grid-template-columns: 1fr !important; max-width: none !important; gap: 10px !important; margin-top: 32px !important; }
  .hcta { padding: 16px 18px !important; }
  .hcta-title { font-size: 17px !important; }
  .hcta-tag { font-size: 10px !important; }

  /* Hero cities — stack horizontal scroll */
  .hero-cities {
    margin-top: 28px !important;
    gap: 14px !important;
    padding-top: 18px !important;
    flex-wrap: wrap !important;
  }
  .hc-btn { font-size: 14px !important; }

  /* STAT BAND — 2x2 */
  .stat-band { padding: 28px 0 !important; }
  .stat-band-row { grid-template-columns: 1fr 1fr !important; gap: 22px 16px !important; padding: 0 var(--gutter) !important; }
  .sbi { padding-left: 12px !important; }
  .sbi:nth-child(3) { border-left: none; padding-left: 0 !important; }
  .sbi:nth-child(3)::after { left: 0; }
  .sbi::after { left: 12px !important; }
  .sbi:first-child::after, .sbi:nth-child(3)::after { left: 0 !important; }
  .sbi-num { font-size: 38px !important; }
  .sbi-lbl { font-size: 9px !important; }

  /* INTRO */
  #intro { padding: 56px 0 !important; }
  .intro-grid { grid-template-columns: 1fr !important; gap: 32px !important; }
  .intro-right { padding-top: 0 !important; }
  .intro-body p { font-size: 15px !important; }
  .intro-body p.intro-sig { font-size: 17px !important; }

  /* STATS STICKY — shorter */
  .stats-sticky { margin-top: 48px !important; height: 60vh !important; }
  .stat-block { width: 85vw !important; padding: 0 6vw !important; }
  .stat-num { font-size: clamp(56px, 20vw, 100px) !important; }
  .stat-lbl { font-size: 11px !important; }

  /* DESTINATIONS / LOGEMENTS / JOURNAL cards */
  .dest-header { margin-bottom: 32px !important; }
  .section-label { margin-bottom: 16px !important; font-size: 10px !important; letter-spacing: 0.28em !important; }
  .section-title { font-size: clamp(32px, 9vw, 48px) !important; line-height: 1.05 !important; }
  .rule { margin: 24px 0 18px !important; }

  /* VALUES — 1 col */
  .values-grid, .values-quad { grid-template-columns: 1fr !important; gap: 20px !important; }
  .val { padding: 26px 22px !important; }
  .val-name { font-size: 24px !important; }

  /* PROPRIOS */
  .proprios-grid { grid-template-columns: 1fr !important; gap: 40px !important; }
  .proprios-text p { font-size: 15px !important; }
  .owners-metrics { gap: 22px !important; flex-wrap: wrap !important; }
  .ometric-num { font-size: 44px !important; }
  .pv-card { left: 0 !important; bottom: -40px !important; max-width: 80vw !important; }
  .pv-tag { right: 0 !important; top: -14px !important; }

  /* LICENCE */
  .licence-grid { grid-template-columns: 1fr !important; gap: 40px !important; }
  .lstep { grid-template-columns: 48px 1fr !important; gap: 16px !important; padding: 20px 0 !important; }
  .lstep-num { font-size: 32px !important; }
  .lstep-body h3 { font-size: 19px !important; }

  /* REVIEWS */
  .reviews-header { margin-bottom: 32px !important; }
  .reviews-grid { grid-template-columns: 1fr !important; }
  .rcard { padding: 26px 22px !important; }
  .rcard-text { font-size: 16px !important; }
  .reviews-aggregate { flex-wrap: wrap !important; margin-top: 32px !important; padding-top: 28px !important; gap: 20px !important; }
  .agg-score { font-size: 56px !important; }

  /* JOURNAL */
  .journal-grid { grid-template-columns: 1fr !important; gap: 30px !important; }
  .journal-header { margin-bottom: 32px !important; }
  .jcard-title { font-size: 20px !important; }

  /* CONTACT */
  .contact-grid { grid-template-columns: 1fr !important; gap: 36px !important; }
  .contact-intro { font-size: 17px !important; margin: 20px 0 !important; }
  .cinfo-v { font-size: 15px !important; }

  /* MAP */
  .map-frame { display: none !important; }
  .map-strip { display: flex !important; flex-direction: column !important; gap: 0 !important; }
  .mstrip-btn { width: 100% !important; text-align: left !important; padding: 16px 18px !important; border-radius: 0 !important; }

  /* FOOTER */
  footer { padding-top: 56px !important; padding-bottom: 24px !important; }
  .footer-hero { margin-bottom: 40px !important; }
  .footer-slogan { font-size: clamp(32px, 10vw, 52px) !important; }
  .footer-cols { grid-template-columns: 1fr 1fr !important; gap: 28px !important; padding-top: 28px !important; }
  .footer-brand-line { flex-direction: column !important; align-items: flex-start !important; gap: 12px !important; }

  /* TWEAKS panel */
  #tweaks { bottom: 12px !important; right: 12px !important; left: 12px !important; width: auto !important; }
}

/* ══════════ RESPONSIVE — SMALL MOBILE ══════════ */
@media (max-width: 380px) {
  .hero-tagline { font-size: 40px !important; }
  .sbi-num { font-size: 32px !important; }
  .stat-band-row { grid-template-columns: 1fr !important; }
  .sbi, .sbi:nth-child(3) { border-left: none !important; padding-left: 0 !important; }
  .sbi::after { left: 0 !important; }
}
