/* ============================================================
   VKG GLOBAL ADVISORY — design system, v2
   Register: restrained, editorial, private-office rather than
   consumer-web. One serif family throughout. No filled buttons,
   no bordered "cards", no bright stat blocks. Colour used as
   punctuation, not decoration.
   ============================================================ */

:root {
  --ink:        #14161B;
  --ink-soft:   #1C1F26;
  --paper:      #EAE3D2;
  --paper-alt:  #F4F0E5;
  --gold:       #8C6F39;
  --gold-soft:  #C6AE7C;
  --text:       #23211B;
  --text-soft:  #5B5647;
  --text-on-dark:      #E7E1D0;
  --text-on-dark-soft: #948C77;
  --hairline:       #D6CBA9;
  --hairline-dark:  rgba(198,174,124,0.22);

  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body:    'Source Serif 4', Georgia, 'Times New Roman', serif;

  --container: 1080px;
  --prose: 660px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--paper);
  font-size: 17px;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
  font-weight: 400;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--text);
  margin: 0 0 0.55em;
  font-weight: 500;
  letter-spacing: -0.005em;
}
h1 { font-size: clamp(2.1rem, 4.4vw, 3.1rem); line-height: 1.18; font-weight: 450; }
h2 { font-size: clamp(1.5rem, 2.6vw, 1.95rem); line-height: 1.28; font-style: italic; font-weight: 400; }
h3 { font-size: 1.18rem; line-height: 1.4; font-weight: 600; font-style: normal; }
p { margin: 0 0 1.1em; color: var(--text-soft); max-width: 68ch; }
p:last-child { margin-bottom: 0; }

.on-dark, .on-dark h1, .on-dark h2, .on-dark h3, .on-dark p { color: var(--text-on-dark); }
.on-dark p { color: var(--text-on-dark-soft); }

.small-caps {
  font-family: var(--font-body);
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
}
.on-dark .small-caps { color: var(--gold-soft); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 32px; }
.prose { max-width: var(--prose); }
section { padding: 96px 0; }
@media (max-width: 640px) { section { padding: 60px 0; } .container { padding: 0 22px; } }

.hairline { height: 1px; background: var(--hairline); border: 0; }
.on-dark .hairline, .hairline-dark { background: var(--hairline-dark); }

/* ---------- Quiet text links (no buttons) ---------- */
.link {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  color: var(--text);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.link:hover { color: var(--gold); border-color: var(--gold-soft); }
.link .arrow { font-family: var(--font-display); font-style: italic; }
.on-dark .link { color: var(--text-on-dark); border-color: var(--gold-soft); }
.on-dark .link:hover { color: var(--gold-soft); }

a:focus-visible, button:focus-visible {
  outline: 1px solid var(--gold);
  outline-offset: 4px;
}

/* ---------- Header ---------- */
.site-header {
  background: var(--ink);
  border-bottom: 1px solid var(--hairline-dark);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 26px 32px;
  max-width: var(--container); margin: 0 auto;
}
.brand {
  font-family: var(--font-display);
  font-size: 1.02rem;
  color: var(--text-on-dark);
  letter-spacing: 0.03em;
  font-style: italic;
}
.brand .mark { font-style: normal; color: var(--gold-soft); letter-spacing: 0.18em; font-size: 0.95rem; margin-right: 10px; }
.nav-links { display: flex; gap: 40px; align-items: baseline; }
.nav-links a {
  font-family: var(--font-body);
  font-size: 0.82rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--text-on-dark-soft);
  padding-bottom: 3px;
  border-bottom: 1px solid transparent;
  transition: all 0.2s ease;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--gold-soft); border-bottom-color: var(--gold-soft); }
.nav-toggle { display: none; background: none; border: none; color: var(--text-on-dark); font-family: var(--font-body); font-size: 0.85rem; letter-spacing: 0.06em; }

@media (max-width: 780px) {
  .nav-links { position: fixed; inset: 68px 0 0 0; background: var(--ink); flex-direction: column; justify-content: flex-start; padding: 46px 32px; gap: 30px; transform: translateX(100%); transition: transform 0.3s ease; }
  .nav-links.open { transform: translateX(0); }
  .nav-toggle { display: block; }
}

/* ---------- Hero (quiet, typographic, no imagery) ---------- */
.hero { padding: 128px 0 104px; }
.hero .small-caps { margin-bottom: 22px; display: block; }
.hero h1 { max-width: 17ch; }
.hero .lede { max-width: 52ch; font-size: 1.12rem; margin-top: 22px; }
.hero-foot { margin-top: 44px; }

.page-hero { padding: 78px 0 68px; background: var(--ink); }
.page-hero .small-caps { margin-bottom: 18px; display: block; }
.page-hero h1 { max-width: 20ch; }
.page-hero p { max-width: 58ch; margin-top: 16px; }

/* ---------- Sections ---------- */
.section-alt { background: var(--paper-alt); }
.section-dark { background: var(--ink); }
.section-head { max-width: var(--prose); margin-bottom: 50px; }

/* ---------- Editorial rows (replaces card grids) ---------- */
.entry-list { }
.entry {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
  padding: 34px 0;
  border-top: 1px solid var(--hairline);
}
.entry:last-child { border-bottom: 1px solid var(--hairline); }
.on-dark .entry { border-color: var(--hairline-dark); }
.entry .entry-label { font-family: var(--font-body); }
.entry .entry-label .small-caps { display: block; margin-bottom: 6px; }
@media (max-width: 720px) { .entry { grid-template-columns: 1fr; gap: 10px; } }

/* Regions specifically: name + note, single column, quieter than services */
.region-entry { padding: 22px 0; border-top: 1px solid var(--hairline); display: grid; grid-template-columns: 200px 1fr; gap: 30px; }
.region-entry:last-child { border-bottom: 1px solid var(--hairline); }
.region-entry h3 { margin-bottom: 0; }
@media (max-width: 720px) { .region-entry { grid-template-columns: 1fr; gap: 6px; } }

/* ---------- Pull quote ---------- */
.pull {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.3rem, 2.6vw, 1.7rem);
  line-height: 1.5;
  color: var(--text);
  max-width: 34ch;
  border-left: 1px solid var(--gold);
  padding-left: 30px;
}
.on-dark .pull { color: var(--text-on-dark); }

/* ---------- Timeline (about page) — quiet, no dot markers ---------- */
.timeline-item { padding: 26px 0; border-top: 1px solid var(--hairline); display: grid; grid-template-columns: 150px 1fr; gap: 30px; }
.timeline-item:last-child { border-bottom: 1px solid var(--hairline); }
.timeline-item .years { font-family: var(--font-body); font-style: italic; color: var(--gold); font-size: 0.95rem; }
@media (max-width: 720px) { .timeline-item { grid-template-columns: 1fr; gap: 4px; } }

/* ---------- Network mark (small, quiet, single use) ---------- */
.network-mark { width: 100%; max-width: 320px; margin: 0 auto; opacity: 0.9; }
.net-line { stroke: var(--gold); stroke-width: 0.6; opacity: 0.5; }
.net-node { fill: none; stroke: var(--gold); stroke-width: 1.1; }
.net-center { fill: var(--gold); }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: var(--text-on-dark-soft); padding: 64px 0 32px; }
.footer-top { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 40px; margin-bottom: 36px; align-items: baseline; }
.footer-brand { font-family: var(--font-display); font-style: italic; color: var(--text-on-dark); font-size: 1.05rem; }
.footer-nav { display: flex; gap: 30px; flex-wrap: wrap; }
.footer-nav a { font-size: 0.82rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-on-dark-soft); }
.footer-nav a:hover { color: var(--gold-soft); }
.footer-bottom { font-size: 0.78rem; color: var(--text-on-dark-soft); opacity: 0.65; border-top: 1px solid var(--hairline-dark); padding-top: 22px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }

/* ---------- Contact form — minimal, no dropdowns, no fills ---------- */
.form-field { margin-bottom: 28px; max-width: 480px; }
.form-field label { display: block; font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-soft); margin-bottom: 8px; }
.form-field input, .form-field textarea {
  width: 100%; padding: 10px 2px; border: none; border-bottom: 1px solid var(--hairline);
  font-family: var(--font-body); font-size: 1rem; background: transparent; color: var(--text);
  border-radius: 0;
}
.form-field textarea { resize: vertical; min-height: 120px; }
.form-field input:focus, .form-field textarea:focus { outline: none; border-color: var(--gold); }
.form-submit { background: none; border: none; padding: 0; cursor: pointer; font: inherit; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(10px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

.two-col { display: grid; grid-template-columns: 1.4fr 1fr; gap: 64px; }
@media (max-width: 860px) { .two-col { grid-template-columns: 1fr; } }
