/* ============================================
   VELL TALENT AGENCY — design tokens
   Palette: ink black + champagne gold, editorial
   dossier feel rather than dashboard dark-mode.
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;0,9..144,600;1,9..144,400;1,9..144,500&family=Manrope:wght@400;500;600;700&family=IBM+Plex+Mono:wght@400;500&display=swap');

:root {
  --ink: #f4e8da;                 /* page background: warm champagne with blush undertone */
  --espresso: #2b2118;            /* deep warm text */
  --surface: #fcf4e9;             /* card background: soft cream */
  --surface-alt: #eeddc6;
  --line: rgba(166, 124, 32, 0.22);
  --line-strong: rgba(166, 124, 32, 0.38);
  --gold: #a8801c;                /* deeper gold for contrast on ivory */
  --gold-light: #c9a227;
  --gold-dim: #8a6a1a;
  --bone: #2b2118;                /* primary text (dark espresso) */
  --bone-dim: #5c5145;            /* secondary text */
  --muted: #8a7d6d;
  --rose: #d9aa9e;
  --rose-dim: rgba(217, 170, 158, 0.22);

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Manrope', -apple-system, sans-serif;
  --font-mono: 'IBM Plex Mono', ui-monospace, monospace;

  --max-width: 1180px;
  --edge: clamp(24px, 5vw, 72px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--bone);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

::selection { background: var(--gold-light); color: #fff; }

:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 3px;
}

/* ---------- layout shell ---------- */

.shell {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-left: var(--edge);
  padding-right: var(--edge);
}

.bg-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 1;
  background-image:
    radial-gradient(ellipse 62% 44% at 10% 0%, rgba(201,162,39,0.14), transparent 60%),
    radial-gradient(ellipse 54% 38% at 100% 20%, rgba(222,164,150,0.20), transparent 62%),
    radial-gradient(ellipse 70% 30% at 50% 60%, rgba(255,250,240,0.55), transparent 70%),
    radial-gradient(ellipse 50% 34% at 42% 100%, rgba(222,164,150,0.16), transparent 62%),
    radial-gradient(ellipse 40% 26% at 85% 90%, rgba(201,162,39,0.10), transparent 62%);
}

/* ---------- eyebrow / mono labels ---------- */

.eyebrow {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.eyebrow::before {
  content: '';
  width: 16px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}

/* ---------- nav ---------- */

.site-nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(244, 232, 218, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.site-nav .shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.wordmark {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
}

.wordmark .dot { color: var(--gold); font-size: 15px; }

.nav-mark {
  width: 34px;
  height: 34px;
  object-fit: cover;
  border-radius: 8px;
  display: inline-block;
}

.wordmark { align-items: center; }

/* hero logo panel */
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
}
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-logo { max-width: 340px; margin: 0 auto; }
}

.hero-logo {
  position: relative;
}

.hero-logo img {
  width: 100%;
  border-radius: 20px;
  border: 1px solid var(--line-strong);
  box-shadow: 0 18px 50px rgba(120, 90, 30, 0.18);
}

/* banner frame (about page) */
.banner-frame {
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  box-shadow: 0 14px 40px rgba(120, 90, 30, 0.12);
  overflow: hidden;
  margin-top: clamp(36px, 5vw, 56px);
}
.banner-frame img { width: 100%; }

.nav-links {
  display: flex;
  gap: clamp(18px, 3vw, 38px);
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-links a {
  color: var(--bone-dim);
  padding: 6px 0;
  position: relative;
  transition: color 0.2s ease;
}

.nav-links a:hover { color: var(--bone); }

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.25s ease;
}

.nav-links a:hover::after,
.nav-links a[aria-current='page']::after { width: 100%; }

.nav-links a[aria-current='page'] { color: var(--gold-light); }

.nav-cta {
  border: 1px solid var(--line-strong);
  padding: 9px 20px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: border-color 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}

.nav-cta:hover { border-color: var(--gold); background: rgba(201,162,39,0.08); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--bone);
  font-size: 22px;
  cursor: pointer;
  padding: 4px;
}

@media (max-width: 760px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: block; }

  .site-nav.open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--ink);
    border-bottom: 1px solid var(--line);
    padding: 20px var(--edge) 26px;
    gap: 18px;
  }

  .site-nav.open .nav-cta {
    display: inline-flex;
    position: absolute;
    top: 76px;
    left: var(--edge);
    margin-top: 200px;
  }
}

/* ---------- ticker ---------- */

.ticker-band {
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  background: var(--surface);
  padding: 13px 0;
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 32s linear infinite;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.ticker-track span { padding: 0 22px; white-space: nowrap; }
.ticker-track span.sep { color: var(--gold-dim); }

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

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 15px 30px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn-gold {
  background: linear-gradient(120deg, var(--gold-light), #d9b658);
  color: #2b2118;
  font-weight: 700;
  box-shadow: 0 6px 18px rgba(168, 128, 28, 0.25);
}
.btn-gold:hover { filter: brightness(1.05); transform: translateY(-1px); }

.btn-ghost {
  border-color: var(--line-strong);
  color: var(--bone);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-light); }

/* ---------- hero ---------- */

.hero {
  position: relative;
  z-index: 1;
  padding: clamp(64px, 11vw, 128px) 0 clamp(56px, 8vw, 96px);
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(40px, 6.4vw, 84px);
  line-height: 1.03;
  letter-spacing: -0.01em;
  margin: 22px 0 26px;
  max-width: 15ch;
}

.hero h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold-light);
}

.hero .lede {
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--bone-dim);
  max-width: 52ch;
  margin: 0 0 40px;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }

/* ---------- page header (non-home pages) ---------- */

.page-header {
  padding: clamp(56px, 9vw, 92px) 0 clamp(40px, 6vw, 64px);
  border-bottom: 1px solid var(--line);
}

.page-header h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(36px, 5vw, 58px);
  margin: 20px 0 18px;
  max-width: 18ch;
}

.page-header .lede {
  max-width: 58ch;
  color: var(--bone-dim);
  font-size: 17px;
}

/* ---------- sections ---------- */

section { position: relative; z-index: 1; }

.section {
  padding: clamp(56px, 9vw, 104px) 0;
  border-bottom: 1px solid var(--line);
}

.section:last-of-type { border-bottom: none; }

.section-head { max-width: 62ch; margin-bottom: clamp(36px, 5vw, 56px); }

.section-head h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(28px, 3.4vw, 42px);
  margin: 16px 0 0;
  letter-spacing: 0.005em;
}

.section-head p {
  color: var(--bone-dim);
  font-size: 16.5px;
  margin-top: 14px;
}

/* ---------- grids & cards ---------- */

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
}

@media (max-width: 820px) {
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
}

.card {
  background: var(--surface);
  padding: clamp(28px, 3.4vw, 40px);
}
.grid-3, .grid-2 { box-shadow: 0 10px 34px rgba(120, 90, 30, 0.07); }

.card .num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.1em;
}

.card h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  margin: 16px 0 12px;
}

.card p { color: var(--bone-dim); font-size: 15px; margin: 0; }

/* ---------- process list (services / portfolio) ---------- */

.process {
  display: flex;
  flex-direction: column;
}

.process-row {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 28px;
  padding: 30px 0;
  border-top: 1px solid var(--line);
}

.process-row:last-child { border-bottom: 1px solid var(--line); }

.process-row .step-label {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--gold-dim);
  letter-spacing: 0.08em;
  padding-top: 4px;
}

.process-row h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 23px;
  margin: 0 0 10px;
}

.process-row p { color: var(--bone-dim); margin: 0; max-width: 62ch; }

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

/* ---------- thread divider (signature motif) ---------- */

.thread {
  height: 1px;
  background-image: linear-gradient(90deg, transparent, var(--rose) 12%, var(--gold) 50%, var(--rose) 88%, transparent);
  position: relative;
  margin: 0;
}

.thread::before, .thread::after {
  content: '◆';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 8px;
}
.thread::before { left: calc(50% - 120px); }
.thread::after { left: calc(50% + 112px); }

@media (max-width: 620px) {
  .thread::before, .thread::after { display: none; }
}

/* ---------- CTA band ---------- */

.cta-band {
  background: linear-gradient(120deg, #ecd5ad 0%, #f5e2c6 45%, #f8e6d6 100%);
  color: #2b2118;
  padding: clamp(48px, 8vw, 80px) 0;
}

.cta-band .shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.cta-band h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(26px, 3.4vw, 40px);
  margin: 0;
  max-width: 16ch;
}

.cta-band .btn-ghost {
  border-color: rgba(43,33,24,0.45);
  color: #2b2118;
}
.cta-band .btn-ghost:hover { border-color: #2b2118; background: rgba(43,33,24,0.06); }

/* ---------- footer ---------- */

footer {
  border-top: 1px solid var(--line);
  padding: 48px 0 36px;
  position: relative;
  z-index: 1;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 32px;
}

.footer-links {
  display: flex;
  gap: 28px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--bone-dim);
}

.footer-links a:hover { color: var(--gold-light); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* ---------- reveal-on-scroll ---------- */

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ---------- form (contact page) ---------- */

.form-wrap { max-width: 640px; }

.field { margin-bottom: 22px; }

.field label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 9px;
}

.field input, .field textarea, .field select {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  color: var(--bone);
  font-family: var(--font-body);
  font-size: 15px;
  padding: 13px 16px;
  border-radius: 12px;
  transition: border-color 0.2s ease;
}

.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--gold);
  outline: none;
}

.field textarea { resize: vertical; min-height: 130px; }

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }

.form-note {
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
}

.form-status {
  font-family: var(--font-mono);
  font-size: 13px;
  margin-top: 18px;
  display: none;
}
.form-status.show { display: block; }
.form-status.ok { color: var(--gold-light); }
.form-status.err { color: #b05540; }

/* ---------- direct contact panel ---------- */

.direct-panel {
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 32px;
  border-radius: 18px;
  box-shadow: 0 10px 34px rgba(120, 90, 30, 0.07);
}

.direct-panel h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  margin: 0 0 20px;
}

.direct-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}
.direct-row:first-of-type { border-top: none; }

.direct-row .label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.direct-row a { color: var(--bone); transition: color 0.2s ease; }
.direct-row a:hover { color: var(--gold-light); }

/* ---------- misc utility ---------- */

.mt-0 { margin-top: 0; }
.two-col {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(32px, 6vw, 72px);
  align-items: start;
}
@media (max-width: 820px) { .two-col { grid-template-columns: 1fr; } }

.stat {
  font-family: var(--font-display);
  font-size: clamp(30px, 3vw, 40px);
  color: var(--gold-light);
  font-weight: 400;
}
.stat-label {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
}
