/* ============================================================
   Adrián Frič · personal site
   Recreated from the Claude Design "Feature" prototype.
   ============================================================ */

:root {
  --bg: #0a0a0a;
  --ink: #f4f2ea;
  --muted: #d8d6cd;
  --muted-2: #cfcdc4;
  --body: #a4a29a;
  --faint: #7a7870;
  --faintest: #56554f;
  --accent: #8b6dff;
  --panel: #141414;
  --maxw: 1400px;
  --gutter: 40px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Hanken Grotesk', sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--ink); color: var(--bg); }

img { display: block; }

a { color: inherit; }

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.archivo { font-family: 'Archivo', sans-serif; }
.mono { font-family: 'JetBrains Mono', monospace; }

/* Eyebrow / kicker labels ---------------------------------- */
.kicker {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 22px;
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px var(--gutter);
  transition: background .4s ease, padding .4s ease;
}
.nav.scrolled {
  background: rgba(10, 10, 10, 0.82);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  padding: 15px var(--gutter);
}
.nav__brand {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.02em;
  text-decoration: none;
  text-transform: uppercase;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav__link {
  display: none;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}
.btn-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 700;
  white-space: nowrap;
}
.btn-solid {
  background: var(--ink);
  color: var(--bg);
}
.btn-ghost {
  background: transparent;
  border: 1px solid rgba(244, 242, 234, 0.25);
  color: var(--ink);
}
.nav .btn-pill {
  padding: 10px 20px;
  font-size: 14px;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 94vh;
  min-height: 620px;
  overflow: hidden;
}
.hero__img {
  position: absolute;
  inset: -6% 0 0 0;
  will-change: transform;
}
.hero__img img {
  width: 100%;
  height: 106%;
  object-fit: cover;
  object-position: 50% 42%;
}
.hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(10,10,10,0.62) 0%,
    rgba(10,10,10,0.18) 26%,
    rgba(10,10,10,0.45) 56%,
    rgba(10,10,10,0.80) 78%,
    rgba(10,10,10,0.97) 100%);
}
.hero__inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 60px;
}
.hero__eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 22px;
}
.hero__title {
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  font-size: clamp(56px, 12vw, 184px);
  line-height: 0.98;
  letter-spacing: -0.04em;
  margin: 0;
  text-transform: uppercase;
}
.hero__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  margin-top: 34px;
}
.hero__lead {
  font-size: clamp(16px, 1.5vw, 20px);
  color: var(--muted);
  margin: 0;
  max-width: 480px;
  line-height: 1.5;
}
.hero .btn-pill {
  padding: 15px 28px;
  font-size: 15px;
}
.hero__scroll {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 22px;
  color: var(--muted-2);
  animation: ft-bounce 2.2s ease-in-out infinite;
}

/* ============================================================
   INTRO STATEMENT
   ============================================================ */
.intro {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 120px var(--gutter);
}
.intro__grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 64px;
  align-items: start;
}
.intro .kicker { margin-bottom: 22px; }
.intro__left { padding-top: 10px; }
.intro__h {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 4vw, 58px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin: 0;
  max-width: none;
}
.accent { color: var(--accent); }

/* ============================================================
   PILLARS
   ============================================================ */
.pillar {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter) 110px;
}
.pillar:last-of-type { padding-bottom: 130px; }
.pillar__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.pillar__img {
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 4/5;
}
.pillar__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pillar__kicker { margin-bottom: 22px; }
.pillar__h {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: clamp(30px, 3.6vw, 52px);
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin: 0 0 22px;
  text-transform: uppercase;
}
.pillar__p {
  font-size: 18px;
  line-height: 1.6;
  color: var(--body);
  margin: 0 0 18px;
}
.pillar__note {
  font-size: 16px;
  line-height: 1.6;
  color: var(--faint);
  margin: 0;
}

/* ============================================================
   FULL-BLEED STATEMENT
   ============================================================ */
.bleed {
  position: relative;
  height: min(86vh, 720px);
  overflow: hidden;
}
.bleed > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 40%;
}
.bleed__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(10,10,10,0.50) 0%,
    rgba(10,10,10,0.55) 50%,
    rgba(10,10,10,0.92) 100%);
}
.bleed__inner {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 90px;
}
.bleed__h {
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  font-size: clamp(36px, 6.6vw, 116px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  margin: 0;
  text-transform: uppercase;
  max-width: 16ch;
  text-shadow: 0 2px 50px rgba(0, 0, 0, 0.5);
}

/* ============================================================
   NUMBERS
   ============================================================ */
.numbers {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 130px var(--gutter);
}
.numbers .kicker { margin-bottom: 56px; }
.numbers__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.stat {
  border-top: 1px solid rgba(244, 242, 234, 0.16);
  padding-top: 26px;
}
.stat__value {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: clamp(46px, 5.5vw, 84px);
  line-height: 0.92;
  letter-spacing: -0.04em;
}
.stat__label {
  font-size: 14px;
  color: var(--faint);
  margin-top: 14px;
}

/* ============================================================
   GALLERY MARQUEE
   ============================================================ */
.gallery { padding: 0 0 130px; }
.gallery__head {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter) 40px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 16px;
}
.gallery__h {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: clamp(26px, 3.4vw, 46px);
  line-height: 1;
  letter-spacing: -0.03em;
  margin: 0;
  text-transform: uppercase;
}
.gallery__meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--faint);
}
.marquee {
  display: flex;
  width: max-content;
  gap: 16px;
  padding: 0 8px;
  animation: ft-marq 50s linear infinite;
  will-change: transform;
}
.marquee__group {
  display: flex;
  gap: 16px;
}
.marquee figure {
  margin: 0;
  height: 320px;
  border-radius: 6px;
  overflow: hidden;
}
.marquee figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fig-lg { width: 480px; }
.fig-md { width: 360px; }
.fig-sm { width: 300px; }

/* ============================================================
   WATCH & LISTEN
   ============================================================ */
.watch {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter) 130px;
}
.watch__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 46px;
}
.watch__kicker { margin-bottom: 22px; }
.watch__h {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 3.8vw, 52px);
  line-height: 1;
  letter-spacing: -0.03em;
  margin: 0;
  text-transform: uppercase;
}
.watch__sub {
  font-size: 15.5px;
  color: var(--body);
  max-width: 34ch;
  margin: 0;
  line-height: 1.5;
}
.watch__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.video {
  border-radius: 6px;
  overflow: hidden;
  background: var(--panel);
  aspect-ratio: 16/9;
  border: 1px solid rgba(244, 242, 234, 0.12);
}
.video iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.spotify { margin-top: 18px; }
.spotify iframe {
  border-radius: 12px;
  border: 0;
  display: block;
  width: 100%;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter) 130px;
}
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.contact__img {
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 1/1;
}
.contact__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 20%;
}
.contact__kicker { margin-bottom: 24px; }
.contact__h {
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  font-size: clamp(36px, 5vw, 78px);
  line-height: 0.92;
  letter-spacing: -0.04em;
  margin: 0 0 24px;
  text-transform: uppercase;
}
.contact__p {
  font-size: 18px;
  line-height: 1.6;
  color: var(--body);
  margin: 0 0 36px;
  max-width: 46ch;
}
.contact__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-bottom: 40px;
}
.contact__cta .btn-pill {
  padding: 16px 28px;
  font-size: 15px;
}
.contact__direct {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact__direct a {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: clamp(20px, 2vw, 28px);
  text-decoration: none;
  letter-spacing: -0.01em;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  border-top: 1px solid rgba(244, 242, 234, 0.12);
  padding: 50px var(--gutter) 44px;
}
.footer__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}
.footer__brand {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.footer__links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.footer__links a,
.footer__copy {
  font-size: 13px;
  color: var(--faint);
  text-decoration: none;
}
.footer__copy { color: var(--faintest); }

/* ============================================================
   REVEAL (JS-driven scroll-in)
   ============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .9s cubic-bezier(.16, 1, .3, 1),
              transform .9s cubic-bezier(.16, 1, .3, 1);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* ============================================================
   KEYFRAMES
   ============================================================ */
@keyframes ft-marq {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes ft-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(7px); }
}

/* ============================================================
   RESPONSIVE  (mirrors the prototype's applyResponsive logic)
   ============================================================ */

/* show nav links above 820px */
@media (min-width: 821px) {
  .nav__link { display: inline-block; }
}

/* numbers: 4 -> 2 cols below 900, 1 col below 600 */
@media (max-width: 900px) {
  .numbers__grid { grid-template-columns: repeat(2, 1fr); }
}

/* watch: 3 -> 2 cols below 900, 1 col below 600 */
@media (max-width: 900px) {
  .watch__grid { grid-template-columns: repeat(2, 1fr); }
}

/* pillars + contact stack below 900; image first */
@media (max-width: 900px) {
  .pillar__grid,
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  /* flipped pillar still shows image first when stacked */
  .pillar--flip .pillar__img { order: 0; }
}

@media (max-width: 600px) {
  .numbers__grid,
  .watch__grid { grid-template-columns: 1fr; }
}

/* tighten gutters on small screens */
@media (max-width: 600px) {
  :root { --gutter: 22px; }
  .intro, .numbers { padding-top: 90px; padding-bottom: 90px; }
  .hero__inner { padding-bottom: 44px; }
}

/* desktop pillar flip: image on the right for flipped rows */
@media (min-width: 901px) {
  .pillar--flip .pillar__img { order: 2; }
  .pillar--flip .pillar__body { order: 1; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee, .hero__scroll { animation: none; }
  [data-reveal] { transition: none; }
}

/* ============================================================
   WRITING / NEWS
   ============================================================ */
.news-sec {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter) 130px;
}
.news-sec__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 46px;
}
.news-sec .kicker { margin-bottom: 22px; }
.news-sec__h {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 3.8vw, 52px);
  line-height: 1;
  letter-spacing: -0.03em;
  margin: 0;
  text-transform: uppercase;
}
.news-sec__all {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
  position: relative;
}
.news-sec__all::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 100%; height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s cubic-bezier(.16,1,.3,1);
}
.news-sec__all:hover::after { transform: scaleX(1); }

.news-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.news-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 280px;
  padding: 32px 34px 30px;
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(20,20,20,0.9), rgba(14,14,14,0.9));
  border: 1px solid rgba(244, 242, 234, 0.10);
  text-decoration: none;
  color: var(--ink);
  overflow: hidden;
  transition: border-color .5s ease, transform .4s cubic-bezier(.16,1,.3,1), box-shadow .5s ease;
  transform-style: preserve-3d;
}
/* glow sweep that follows the cursor inside the card (JS sets --mx/--my) */
.news-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(380px circle at var(--mx, 50%) var(--my, 0%),
              rgba(139, 109, 255, 0.16), transparent 60%);
  opacity: 0;
  transition: opacity .5s ease;
  pointer-events: none;
}
.news-card:hover {
  border-color: rgba(139, 109, 255, 0.45);
  box-shadow: 0 24px 60px -24px rgba(139, 109, 255, 0.35);
}
.news-card:hover::before { opacity: 1; }
.news-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: auto;
}
.news-card__tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 6px 12px;
  border: 1px solid rgba(139, 109, 255, 0.3);
  border-radius: 100px;
}
.news-card__date {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--faint);
}
.news-card__title {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 30px 0 14px;
}
.news-card__excerpt {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--body);
  margin: 0 0 26px;
}
.news-card__cta {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap .35s cubic-bezier(.16,1,.3,1);
}
.news-card:hover .news-card__cta { gap: 14px; color: var(--accent); }

@media (max-width: 720px) {
  .news-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   FANCY EFFECTS
   ============================================================ */

/* Scroll progress bar */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 100%;
  z-index: 70;
  background: linear-gradient(90deg, var(--accent), #c4b5ff);
  transform: scaleX(0);
  transform-origin: 0 50%;
  will-change: transform;
}

/* Film grain overlay */
.grain {
  position: fixed;
  inset: -120% -120%;
  width: 340%;
  height: 340%;
  z-index: 81;
  pointer-events: none;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain-shift 0.7s steps(3) infinite;
}
@keyframes grain-shift {
  0% { transform: translate(0,0); }
  33% { transform: translate(-3%, 2%); }
  66% { transform: translate(2%, -3%); }
  100% { transform: translate(0,0); }
}

/* Hero spotlight that follows the cursor (JS sets --gx/--gy) */
.hero__glow {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(420px circle at var(--gx, 70%) var(--gy, 30%),
              rgba(139, 109, 255, 0.30), transparent 65%);
  mix-blend-mode: screen;
  opacity: 0;
  transition: opacity .6s ease;
}
.hero:hover .hero__glow { opacity: 1; }
.hero__inner { z-index: 2; }

/* Custom cursor */
.cursor-dot, .cursor-ring {
  position: fixed;
  top: 0; left: 0;
  z-index: 90;
  pointer-events: none;
  border-radius: 50%;
  opacity: 0;
  transition: opacity .3s ease;
  will-change: transform;
}
.cursor-dot {
  width: 7px; height: 7px;
  margin: -3.5px 0 0 -3.5px;
  background: var(--accent);
}
.cursor-ring {
  width: 38px; height: 38px;
  margin: -19px 0 0 -19px;
  border: 1px solid rgba(244, 242, 234, 0.55);
  transition: opacity .3s ease, width .3s ease, height .3s ease,
              margin .3s ease, background-color .3s ease, border-color .3s ease;
}
body.has-cursor .cursor-dot,
body.has-cursor .cursor-ring { opacity: 1; }
body.has-cursor.cursor-hot .cursor-ring {
  width: 64px; height: 64px;
  margin: -32px 0 0 -32px;
  background: rgba(139, 109, 255, 0.12);
  border-color: rgba(139, 109, 255, 0.8);
}
body.has-cursor.cursor-hot .cursor-dot { opacity: 0; }
/* hide native cursor only on fine-pointer devices that get the custom one */
@media (pointer: fine) {
  body.has-cursor, body.has-cursor a, body.has-cursor button { cursor: none; }
}

/* Magnetic + tilt elements get a smooth settle transition (JS drives transform) */
[data-magnetic] { transition: transform .35s cubic-bezier(.16,1,.3,1); will-change: transform; }
[data-tilt] { transition: transform .4s cubic-bezier(.16,1,.3,1); will-change: transform; }

/* Animated gradient on the intro accent words */
.accent--anim {
  background: linear-gradient(90deg, #8b6dff, #c4b5ff, #8b6dff);
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: accent-pan 6s linear infinite;
}
@keyframes accent-pan {
  to { background-position: 220% center; }
}

/* Pause the marquee while hovering the gallery */
.gallery:hover .marquee { animation-play-state: paused; }

@media (prefers-reduced-motion: reduce) {
  .grain, .accent--anim { animation: none; }
  .cursor-dot, .cursor-ring { display: none; }
  .hero__glow { display: none; }
}

/* Touch / coarse pointers: no custom cursor, no hover-only glow reliance */
@media (pointer: coarse) {
  .cursor-dot, .cursor-ring { display: none; }
}

/* ============================================================
   REDESIGN v2 · components
   ============================================================ */

/* Language toggle */
.lang-toggle {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--ink);
  background: transparent;
  border: 1px solid rgba(244, 242, 234, 0.25);
  border-radius: 100px;
  padding: 7px 13px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: border-color .3s ease, color .3s ease;
}
.lang-toggle:hover { border-color: var(--accent); color: var(--accent); }
.lang-toggle--footer { padding: 5px 11px; }

/* Nav actions (lang link + CTA) */
.nav__actions { display: flex; align-items: center; gap: 16px; }
section[id], header[id] { scroll-margin-top: 84px; }

/* on mobile the CTA pill is covered by the sticky bottom bar */
@media (max-width: 820px) {
  .nav__actions .btn-pill { display: none; }
}

/* Hero sentence headline (replaces the giant name) */
.hero__title--lead {
  font-size: clamp(34px, 6.2vw, 88px);
  line-height: 1.02;
  text-transform: none;
  max-width: 16ch;
}
.hero__meta {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 26px;
}
.hero__name {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted-2);
}

/* Scarcity / status chip */
.chip {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--muted-2);
  padding: 6px 13px;
  border: 1px solid rgba(244, 242, 234, 0.2);
  border-radius: 100px;
}

/* Client logo showcase (rotating logo wall) */
.clients {
  padding: 78px 0 0;
  text-align: center;
}
.clients__kicker {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 36px;
}
.logo-marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.logo-track {
  display: flex;
  width: max-content;
  animation: ft-marq 40s linear infinite;
  will-change: transform;
}
.logo-group { display: flex; align-items: center; }
.logo {
  height: 96px;
  width: auto;
  margin: 0 26px;
  opacity: 0.6;
  transition: opacity .35s ease;
}
.logo:hover { opacity: 1; }
.clients:hover .logo-track { animation-play-state: paused; }
.clients__line {
  max-width: var(--maxw);
  margin: 36px auto 0;
  padding: 0 var(--gutter);
  font-size: 14px;
  color: var(--faint);
}
@media (prefers-reduced-motion: reduce) {
  .logo-track { animation: none; flex-wrap: wrap; justify-content: center; }
}

/* Intro problem line */
.intro__problem {
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
  max-width: none;
}

/* Soft inline CTA */
.soft-cta {
  display: inline-block;
  margin-top: 8px;
  font-size: 15px;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(139, 109, 255, 0.4);
  padding-bottom: 2px;
  transition: border-color .3s ease, gap .3s ease;
}
.soft-cta:hover { border-bottom-color: var(--accent); }

/* FAQ */
.faq {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter) 130px;
}
.faq__head { margin-bottom: 46px; }
.faq__h {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 3.8vw, 52px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 22px 0 0;
  text-transform: uppercase;
  max-width: 22ch;
}
.faq__intro {
  margin: 22px 0 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 56ch;
}
.faq__list { border-top: 1px solid rgba(244, 242, 234, 0.10); }
.faq__row {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  padding: 30px 0;
  border-bottom: 1px solid rgba(244, 242, 234, 0.08);
}
.faq__q {
  display: flex;
  gap: 14px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: clamp(18px, 1.7vw, 20px);
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.faq__idx {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  padding-top: 4px;
  flex-shrink: 0;
}
.faq__a {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--muted);
}
.faq__cta { margin-top: 36px; }

@media (max-width: 900px) {
  .faq__row { grid-template-columns: 1fr; gap: 10px; }
}

/* Reassurance list */
.reassure {
  list-style: none;
  margin: 0 0 34px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.reassure li {
  position: relative;
  padding-left: 28px;
  font-size: 15.5px;
  color: var(--muted);
}
.reassure li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* Big primary button + secondary booking link */
.btn-pill.btn-lg, .contact__cta .btn-lg { padding: 18px 32px; font-size: 16px; }
.contact__secondary {
  display: inline-block;
  margin: 18px 0 0;
  font-size: 14px;
  color: var(--faint);
  text-decoration: none;
  border-bottom: 1px solid rgba(244, 242, 234, 0.18);
  padding-bottom: 2px;
  transition: color .3s ease, border-color .3s ease;
}
.contact__secondary:hover { color: var(--ink); border-bottom-color: var(--ink); }
.contact__direct { margin-top: 34px; }

/* Footer CTA band + legal line */
.footer__cta {
  max-width: var(--maxw);
  margin: 0 auto 36px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 28px;
  padding: 30px 0 48px;
  border-bottom: 1px solid rgba(244, 242, 234, 0.12);
}
.footer__cta-text {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: clamp(24px, 2.8vw, 44px);
  line-height: 1.06;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  max-width: 22ch;
  margin: 0;
}
.footer__cta .btn-pill { padding: 15px 26px; font-size: 15px; flex-shrink: 0; }
.footer__legal {
  max-width: var(--maxw);
  margin: 22px auto 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12px;
  color: var(--faintest);
}

/* Subtle divider between media and articles */
.tail-divider {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 60px 0 24px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--faint);
}
.tail-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(244, 242, 234, 0.12);
}

/* Credibility-tail article cards (compact, no excerpt), airy */
.news-grid--tail { margin-top: 22px; gap: 22px; }
.news-grid--tail .news-card {
  min-height: 260px;
  padding: 42px 44px;
  background: rgba(244, 242, 234, 0.02);
  border-color: rgba(244, 242, 234, 0.08);
  border-radius: 16px;
}
.news-grid--tail .news-card__top { margin-bottom: 0; }
.news-grid--tail .news-card__title {
  margin: 42px 0 0;
  line-height: 1.18;
}
.news-grid--tail .news-card__cta {
  margin-top: auto;
  padding-top: 34px;
}

/* Mobile sticky booking bar */
.mcta {
  position: fixed;
  left: 14px; right: 14px; bottom: 14px;
  z-index: 75;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px 22px;
  border-radius: 100px;
  background: var(--ink);
  color: var(--bg);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  box-shadow: 0 14px 34px -10px rgba(0,0,0,0.7);
  transform: translateY(140%);
  transition: transform .4s cubic-bezier(.16,1,.3,1);
}
.mcta.visible { transform: translateY(0); }

@media (max-width: 900px) {
  .intro__grid { grid-template-columns: 1fr; gap: 28px; }
  .intro__left { padding-top: 0; }
}
@media (max-width: 820px) {
  .mcta { display: flex; }
}

/* ============================================================
   SOCIAL ICONS (nav + footer)
   ============================================================ */
.socials {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}
.socials a {
  display: inline-flex;
  color: var(--faint);
  transition: color .3s ease, transform .3s ease;
}
.socials a:hover { color: var(--ink); transform: translateY(-2px); }
.socials svg { display: block; width: 18px; height: 18px; }

/* in the nav: lighter, with a hairline separator before the lang toggle */
.nav__social { gap: 15px; padding-right: 18px; margin-right: 4px; border-right: 1px solid rgba(244, 242, 234, 0.18); }
.nav__social a { color: var(--muted-2); }
.nav__social a:hover { color: var(--ink); }

/* footer: brand + socials stacked on the left */
.footer__brandcol { display: flex; flex-direction: column; gap: 18px; }
.footer__social svg { width: 19px; height: 19px; }

@media (max-width: 700px) {
  .nav__social { display: none; }
}
