/* ============================================================
   MJ STATION — style.css
   Brand palette:
     --cr  : #f5f4f0  (cream, primary bg)
     --bk  : #000000  (black)
     --tl  : #00b4a0  (teal, accent)
     --yw  : #ffdd00  (yellow, accent)
     --lv  : #afaee0  (lavender, accent)
     --co  : #ff6f61  (coral, accent)
     --nv  : #2a3d66  (navy, accent)
     --ch  : #4b4f54  (charcoal, secondary text)
   Fonts:
     --fh  : 'Museo Moderno'  (headlines, brand)
     --fb  : 'HK Grotesk'     (body, UI)
     --fe  : 'EB Garamond'    (editorial, italic)
   ============================================================ */

/* ── RESET & TOKENS ─────────────────────────────────────── */
:root {
  --cr:   #f5f4f0;
  --bk:   #000000;
  --tl:   #00b4a0;
  --yw:   #ffdd00;
  --lv:   #afaee0;
  --co:   #ff6f61;
  --nv:   #2a3d66;
  --ch:   #4b4f54;
  --dim:  rgba(245, 244, 240, 0.42);
  --rule: rgba(245, 244, 240, 0.1);
  --rule-cr: #e0ddd8;
  --fh: 'EB Garamond', serif;
  --fb: 'EB Garamond', serif;
  --fe: 'EB Garamond', serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--cr);
  color: var(--bk);
  font-family: var(--fb);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ── NAV ────────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 300;
  padding: 0 48px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  border: none;
  transition: none;
}

.nav-mark {
  height: 88px;
  width: auto;
  object-fit: contain;
  filter: invert(1);
  transition: filter 0.4s ease;
}

nav.on-light .nav-mark { filter: none; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-btn {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245, 244, 240, 0.6);
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--fb);
  transition: color 0.2s;
}

nav.on-light .nav-btn { color: var(--ch); }
.nav-btn:hover { color: rgba(245, 244, 240, 0.9); }
nav.on-light .nav-btn:hover { color: var(--bk); }

.nav-cta {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid rgba(245, 244, 240, 0.5);
  color: rgba(245, 244, 240, 0.9);
  padding: 8px 20px;
  border-radius: 2px;
  cursor: pointer;
  background: transparent;
  font-family: var(--fb);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

nav.on-light .nav-cta {
  border-color: var(--bk);
  color: var(--bk);
}

.nav-cta:hover {
  background: rgba(245, 244, 240, 0.15);
}

nav.on-light .nav-cta:hover {
  background: var(--bk);
  color: var(--cr);
}

/* ── OVERLAYS ───────────────────────────────────────────── */
.overlay {
  position: fixed;
  inset: 0;
  z-index: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.overlay.open {
  opacity: 1;
  pointer-events: all;
}

#overlay-contact { background: var(--bk); }

#overlay-article {
  background: var(--cr);
  overflow-y: auto;
  align-items: flex-start;
}

.ov-close,
.ov-close-b {
  position: absolute;
  top: 28px; right: 48px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--fb);
  transition: color 0.2s;
}

.ov-close { color: var(--dim); }
.ov-close:hover { color: var(--cr); }
.ov-close-b { color: var(--ch); }
.ov-close-b:hover { color: var(--bk); }

.ov-inner {
  width: 100%;
  max-width: 560px;
  padding: 0 32px;
}

.ov-title {
  font-family: var(--fh);
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 400;
  line-height: 0.95;
  color: var(--cr);
  margin-bottom: 48px;
  letter-spacing: -0.02em;
}

.ov-title em {
  font-style: italic;
  font-weight: 300;
}

.o-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 24px;
}

.o-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dim);
}

.o-input {
  background: #1a1a18;
  border: 1px solid rgba(245, 244, 240, 0.15);
  border-radius: 2px;
  padding: 12px 16px;
  font-size: 14px;
  color: var(--cr);
  font-family: var(--fb);
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}

.o-input:focus { border-color: rgba(245, 244, 240, 0.5); }
.o-input::placeholder { color: rgba(245, 244, 240, 0.25); }
.o-textarea { resize: vertical; min-height: 90px; line-height: 1.5; }

.o-submit {
  margin-top: 16px;
  background: var(--cr);
  color: var(--bk);
  border: none;
  padding: 16px 36px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  font-family: var(--fb);
  transition: background 0.2s, transform 0.2s;
}

.o-submit:hover {
  background: var(--yw);
  transform: translateY(-1px);
}

.o-success {
  display: none;
  flex-direction: column;
  gap: 12px;
}

.o-success-title {
  font-family: var(--fh);
  font-size: 28px;
  font-weight: 400;
  font-style: italic;
  color: var(--cr);
}

.o-success-text {
  font-size: 14px;
  color: var(--dim);
  line-height: 1.6;
}

/* Article overlay */
.art-ov-wrap {
  width: 100%;
  max-width: 720px;
  padding: 96px 32px;
  margin: 0 auto;
}

.art-ov-tag {
  font-family: var(--fe);
  font-size: 13px;
  font-style: italic;
  color: var(--ch);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.art-ov-tag::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--ch);
}

.art-ov-h {
  font-family: var(--fh);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 48px;
  color: var(--bk);
}

.art-ov-h em {
  font-style: italic;
  font-weight: 300;
  text-transform: none;
}

.art-ov-body {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.art-ov-body p {
  font-family: var(--fe);
  font-size: 19px;
  font-style: italic;
  color: var(--ch);
  line-height: 1.8;
}

.art-ov-body p strong {
  font-style: normal;
  font-weight: 700;
  color: var(--bk);
}

.art-ov-body h4 {
  font-family: var(--fh);
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--bk);
  margin-top: 16px;
}

.art-ov-body .pull {
  font-family: var(--fh);
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.2;
  color: var(--bk);
  border-left: 3px solid var(--yw);
  padding-left: 24px;
  margin: 8px 0;
}

/* ── HERO ───────────────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  background: var(--bk);
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
  opacity: 0.35;
}

.hero-grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.2) 60%,
    rgba(0, 0, 0, 0.6) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 48px 72px;
  width: 100%;
}

.hero-h1 {
  font-family: var(--fb);
  font-size: clamp(68px, 10vw, 150px);
  font-weight: 500;
  line-height: 0.88;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--cr);
  margin-bottom: 40px;
}

.hero-h1 em {
  font-family: var(--fe);
  font-style: italic;
  font-weight: 300;
  text-transform: none;
}

.hero-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid var(--rule);
}

.hero-byline {
  font-family: var(--fe);
  font-size: 15px;
  font-style: italic;
  color: rgba(245, 244, 240, 0.45);
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bk);
  background: var(--cr);
  border: none;
  padding: 16px 32px;
  border-radius: 2px;
  cursor: pointer;
  font-family: var(--fb);
  transition: background 0.2s, gap 0.2s, transform 0.2s;
}

.hero-cta::after { content: '→'; }

.hero-cta:hover {
  background: var(--yw);
  gap: 18px;
  transform: translateY(-1px);
}

/* ── TICKER ─────────────────────────────────────────────── */
.ticker {
  overflow: hidden;
  background: var(--yw);
  padding: 22px 0;
}

.ticker-track {
  display: flex;
  white-space: nowrap;
  animation: ticker 22s linear infinite;
}

.ticker-track:hover { animation-play-state: paused; }

.ticker-item {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bk);
  padding: 0 40px;
}

@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── STATEMENT ──────────────────────────────────────────── */
#statement {
  background: var(--cr);
  padding: 120px 48px;
}

.stmt-kicker {
  font-family: var(--fe);
  font-size: 15px;
  font-style: italic;
  color: var(--ch);
  margin-bottom: 48px;
  display: block;
}

.stmt-body {
  font-family: var(--fe);
  font-size: clamp(48px, 6.5vw, 96px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--bk);
  max-width: 1100px;
}

.stmt-body em { font-style: italic; }

/* ── SECTION HEADERS ────────────────────────────────────── */
.s-head {
  display: flex;
  align-items: baseline;
  gap: 18px;
  padding-bottom: 28px;
  margin-bottom: 72px;
}

.s-title {
  font-family: var(--fh);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ── REASONS / WORK GRID ────────────────────────────────── */
#reasons {
  background: var(--bk);
  padding: 120px 48px;
}

.reasons-h {
  font-family: var(--fe);
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 400;
  font-style: italic;
  color: var(--cr);
  text-align: center;
  line-height: 1.2;
  margin-bottom: 72px;
}

.reasons-sub {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--dim);
  text-align: center;
  margin-bottom: 48px;
  margin-top: -32px;
}

.work-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
}

.wi {
  background: var(--bk);
  padding: 52px 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: background 0.3s;
}

.wi:hover { background: #151513; }

.wi-n {
  font-family: var(--fh);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 244, 240, 0.35);
}

.wi-name {
  font-family: var(--fh);
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--cr);
  line-height: 1.1;
}

.wi-desc {
  font-family: var(--fe);
  font-size: 15px;
  font-style: italic;
  color: var(--dim);
  line-height: 1.65;
  flex: 1;
}

.wi-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
}

.wi-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.07em;
  padding: 4px 12px;
  background: rgba(245, 244, 240, 0.08);
  border-radius: 100px;
  color: rgba(245, 244, 240, 0.55);
  white-space: nowrap;
}

/* ── BACKGROUND / CV ────────────────────────────────────── */
#cv {
  background: var(--cr);
  padding: 112px 48px;
}

.cv-gate {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.cv-intro-row {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 32px;
}

.cv-face {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  flex-shrink: 0;
}

.cv-intro {
  font-family: var(--fe);
  font-size: 20px;
  font-style: italic;
  color: var(--ch);
  line-height: 1.7;
}

.cv-bullets {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cv-bullet {
  font-size: 14px;
  color: var(--ch);
  padding-left: 20px;
  position: relative;
  line-height: 1.55;
}

.cv-bullet::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--rule-cr);
}

.cv-bullet strong { color: var(--bk); font-weight: 600; }
.cv-bullet em { font-family: var(--fe); font-style: italic; }

/* CV form */
.cv-form-box {
  background: var(--cr);
  border: 1px solid var(--rule-cr);
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cv-form-title {
  font-family: var(--fh);
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--bk);
}

.cv-form-sub {
  font-family: var(--fe);
  font-size: 14px;
  font-style: italic;
  color: var(--ch);
}

.cv-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cv-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ch);
}

.cv-input {
  background: #eceae5;
  border: 1px solid #ccc9c3;
  border-radius: 2px;
  padding: 12px 16px;
  font-size: 14px;
  color: var(--bk);
  font-family: var(--fb);
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}

.cv-input:focus { border-color: var(--bk); }
.cv-input::placeholder { color: rgba(0, 0, 0, 0.3); }

.cv-submit {
  margin-top: 8px;
  background: var(--bk);
  color: var(--cr);
  border: none;
  padding: 16px 32px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  font-family: var(--fb);
  transition: background 0.2s, transform 0.2s;
  align-self: flex-start;
}

.cv-submit:hover {
  background: var(--nv);
  transform: translateY(-1px);
}

.cv-ok {
  display: none;
  flex-direction: column;
  gap: 12px;
  padding: 32px;
  background: var(--cr);
  border: 1px solid var(--rule-cr);
}

.cv-ok-t {
  font-family: var(--fh);
  font-size: 18px;
  font-weight: 400;
  font-style: italic;
  color: var(--bk);
}

.cv-ok-b {
  font-family: var(--fe);
  font-size: 14px;
  font-style: italic;
  color: var(--ch);
  line-height: 1.6;
}

/* ── LOGO MARQUEE ───────────────────────────────────────── */
#clients {
  background: var(--bk);
  padding: 72px 0;
  overflow: hidden;
}

.marquee-outer {
  overflow: hidden;
  -webkit-mask: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  mask: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.marquee-track {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: logos 28s linear infinite;
}

.marquee-track:hover { animation-play-state: paused; }

.m-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 96px;
  height: 160px;
  flex-shrink: 0;
  opacity: 0.55;
  filter: brightness(0) invert(1);
  transition: opacity 0.3s;
}

.m-logo:hover { opacity: 1; }
.m-logo img {
  height: 100%;
  max-height: 70px;
  width: auto;
  max-width: 280px;
  object-fit: contain;
}

/* Per-logo size overrides */
.m-logo--half img { max-height: 52px; max-width: 210px; }
.m-logo--lg img   { max-height: 105px; max-width: 420px; }
.m-logo--xl img   { max-height: 140px; max-width: 560px; }

/* Multi-color logos (e.g. crests) where flattening to white destroys detail */
.m-logo--color { filter: none; opacity: 0.9; }
/* Logos on a white background (JPGs): invert flips the bg to black (invisible on
   dark marquee) while keeping the dark logo content readable in inverted colors */
.m-logo--invert { filter: invert(1); }
.m-logo-text {
  font-family: var(--fh);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cr);
}

.m-sep { color: var(--rule); font-size: 20px; padding: 0 8px; }

@keyframes logos {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── REFERENCES ─────────────────────────────────────────── */
#recommendations {
  background: var(--yw);
  padding: 112px 48px;
}

#recommendations .s-head { border-bottom: 1px solid rgba(0, 0, 0, 0.12); }
#recommendations .s-title { color: var(--bk); }

.reco-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(0, 0, 0, 0.1);
}

.ri {
  background: var(--yw);
  padding: 52px 44px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.ri-q {
  font-family: var(--fe);
  font-size: 17px;
  font-style: italic;
  line-height: 1.75;
  flex: 1;
  color: var(--bk);
  padding-left: 20px;
  position: relative;
}

.ri-q::before {
  content: '\201C';
  font-size: 52px;
  line-height: 1;
  position: absolute;
  left: -6px; top: -6px;
  color: rgba(0, 0, 0, 0.1);
  font-family: var(--fe);
  font-style: normal;
}

.ri-name {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--bk);
}

.ri-role {
  font-family: var(--fe);
  font-size: 13px;
  font-style: italic;
  color: rgba(0, 0, 0, 0.5);
  margin-top: 3px;
}

/* ── NEWS ───────────────────────────────────────────────── */
#articles {
  background: var(--cr);
  padding: 0 48px 112px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule-cr);
}

.news-card {
  background: var(--cr);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.news-card.clickable {
  cursor: pointer;
  transition: background 0.3s;
}

.news-card.clickable:hover { background: #eeecea; }
.news-card.upcoming { opacity: 0.4; cursor: default; }

.news-tag-label {
  font-family: var(--fe);
  font-size: 12px;
  font-style: italic;
  color: var(--ch);
}

.news-title {
  font-family: var(--fh);
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.2;
  color: var(--bk);
  flex: 1;
}

.news-tease {
  font-family: var(--fe);
  font-size: 15px;
  font-style: italic;
  color: var(--ch);
  line-height: 1.6;
}

.news-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bk);
  margin-top: 4px;
  transition: gap 0.2s;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  width: fit-content;
}

.news-cta::after { content: '→'; }
.news-card.clickable:hover .news-cta { gap: 16px; }

.news-soon {
  font-family: var(--fe);
  font-size: 12px;
  font-style: italic;
  color: var(--rule-cr);
  margin-top: auto;
}

/* ── GET IN TOUCH ───────────────────────────────────────── */
#contact {
  background: var(--bk);
  padding: 0 48px;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-bg-logo {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  height: 120%; width: auto;
  filter: invert(1);
  opacity: 0.03;
  pointer-events: none;
}

.contact-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--dim);
}

.contact-h {
  font-family: var(--fe);
  font-size: clamp(56px, 10vw, 140px);
  font-weight: 400;
  font-style: italic;
  line-height: 0.95;
  color: var(--cr);
  cursor: pointer;
  transition: opacity 0.3s;
}

.contact-h:hover { opacity: 0.7; }

.contact-sub {
  font-family: var(--fe);
  font-size: 16px;
  font-style: italic;
  color: var(--dim);
}

.contact-sub a {
  border-bottom: 1px solid rgba(245, 244, 240, 0.3);
  padding-bottom: 1px;
  transition: color 0.2s;
}

.contact-sub a:hover { color: var(--cr); }

/* ── FOOTER ─────────────────────────────────────────────── */
footer {
  background: var(--bk);
  padding: 80px 48px 0;
  display: flex;
  flex-direction: column;
}

.ft-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding-bottom: 64px;
}

.ft-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ft-services-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ft-col-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 244, 240, 0.25);
  padding-bottom: 12px;
}

.ft-col-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ft-col-links span {
  font-family: var(--fe);
  font-size: 15px;
  font-style: italic;
  color: var(--dim);
}

.ft-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-end;
  text-align: right;
}

.ft-practice {
  font-family: var(--fh);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cr);
  margin-bottom: 4px;
}

.ft-tagline {
  font-family: var(--fe);
  font-size: 14px;
  font-style: italic;
  color: var(--dim);
  line-height: 1.7;
}

.ft-follow {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--rule);
  align-items: flex-end;
}

.ft-follow-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 244, 240, 0.25);
}

.ft-linkedin {
  font-family: var(--fe);
  font-size: 14px;
  font-style: italic;
  color: var(--dim);
  transition: color 0.2s;
}

.ft-linkedin:hover { color: var(--cr); }

.ft-big {
  overflow: hidden;
  padding: 32px 0 16px;
}

.ft-big-text {
  font-family: var(--fh);
  font-size: clamp(80px, 15vw, 240px);
  font-weight: 600;
  line-height: 0.88;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--cr);
  opacity: 0.06;
  white-space: nowrap;
  margin-left: -4px;
}

.ft-bottom {
  padding: 20px 0;
}

.ft-copy {
  font-family: var(--fe);
  font-size: 12px;
  font-style: italic;
  color: rgba(245, 244, 240, 0.18);
}

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1100px) {
  .work-list,
  .reco-grid { grid-template-columns: 1fr 1fr; }
  .cv-gate { grid-template-columns: 1fr; }
  .ft-top { grid-template-columns: 1fr; }
  .ft-right { align-items: flex-start; text-align: left; }
  .ft-follow { align-items: flex-start; }
}

@media (max-width: 900px) {
  nav { padding: 0 24px; }
  .nav-btn { display: none; }
  section { padding-left: 32px !important; padding-right: 32px !important; }
  .hero-content { padding: 0 32px 56px; }
  footer { padding: 64px 32px 0; }
}

@media (max-width: 640px) {
  .work-list,
  .news-grid,
  .reco-grid { grid-template-columns: 1fr; }
}
