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

:root {
  --black: #111111;
  --white: #ffffff;
  --gray-light: #f5f5f5;
  --gray-mid: #888888;
  --gray-dark: #333333;
  --accent: #111111;
  --font: 'Roboto', sans-serif;
  --max-w: 1100px;
}

body {
  font-family: var(--font);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  color: var(--black);
  background: var(--white);
  text-align: justify;
  hyphens: auto;
}

a { color: inherit; text-decoration: none; }
a:hover { opacity: 0.7; }

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  height: 60px;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.3s, border-color 0.3s;
}

nav.scrolled {
  background: var(--white);
  border-bottom-color: #e0e0e0;
}

.nav-logo {
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.02em;
  color: var(--white);
  white-space: nowrap;
  transition: color 0.3s;
}

nav.scrolled .nav-logo { color: var(--black); }

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s;
}

nav.scrolled .nav-links a { color: var(--gray-mid); }

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  opacity: 1;
}

nav.scrolled .nav-links a:hover,
nav.scrolled .nav-links a.active {
  color: var(--black);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: var(--white);
  padding: 8px;
  transition: color 0.3s;
}

nav.scrolled .nav-toggle { color: var(--black); }

.nav-logo--hidden {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, color 0.3s;
}

nav.scrolled .nav-logo--hidden {
  opacity: 1;
  pointer-events: auto;
}


.hero {
  margin-top: 0;
  height: 100vh;
  height: 100dvh;
  min-height: 480px;
  background-size: cover;
  background-position: center top;
  display: flex;
  align-items: flex-end;
  position: relative;
}

.page-hero {
  margin-top: 60px;
  height: 40vh;
  min-height: 260px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  position: relative;
}

.page-hero--dark {
  background: var(--black);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.1) 60%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 48px 40px;
  color: var(--white);
}

.hero-content h1 {
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 300;
  letter-spacing: -0.01em;
  line-height: 1.15;
}

.hero-sub {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}

/* CONTAINER */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 64px 32px;
}

/* INTRO SPLIT */
.intro-split {
  display: grid;
  grid-template-columns: 340px 1fr;
  max-width: var(--max-w);
  margin: 0 auto;
  border-bottom: 1px solid #e0e0e0;
}

.intro-portrait {
  overflow: hidden;
  max-height: 420px;
}

.intro-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.intro-text {
  padding: 48px 48px;
  display: flex;
  align-items: center;
}

.intro-text p {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--gray-dark);
}

/* INTRO (used on subpages) */
.intro p {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.75;
  max-width: 760px;
  color: var(--gray-dark);
}

.intro p + p { margin-top: 20px; }

.intro .btn { margin-top: 32px; display: inline-block; }

/* PRACTICE GRID */
.practice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1px;
  background: #e0e0e0;
  border: 1px solid #e0e0e0;
  margin-top: 0;
}

.practice-item {
  background: var(--white);
  padding: 36px 32px;
}

.practice-item h3 {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 14px;
  color: var(--black);
}

.practice-item p {
  font-size: 14px;
  line-height: 1.7;
  color: #555;
}

/* C-LEVEL */
.clevel {
  background: var(--black);
  color: var(--white);
}

.clevel h2 {
  font-size: 22px;
  font-weight: 300;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.clevel p {
  font-size: 15px;
  line-height: 1.75;
  max-width: 700px;
  color: rgba(255,255,255,0.75);
}

.clevel-roles {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.5);
}

/* OFFICE SPLIT */
.office-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.office-img {
  height: 480px;
  background-size: cover;
  background-position: center;
}

.office-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px 48px;
  background: var(--gray-light);
}

.office-text h2 {
  font-size: 26px;
  font-weight: 300;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.office-text p {
  font-size: 15px;
  line-height: 1.75;
  color: #555;
  max-width: 420px;
}

/* BUTTON */
.btn {
  display: inline-block;
  margin-top: 28px;
  padding: 12px 28px;
  background: var(--black);
  color: var(--white);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.2s;
}

.btn:hover {
  background: #333;
  opacity: 1;
}

/* CONTACT */
.contact {
  border-top: 1px solid #e0e0e0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.contact-grid p {
  font-size: 14px;
  line-height: 2;
  color: #555;
}

/* REFERENCES */
.references h2 {
  font-size: 22px;
  font-weight: 300;
  margin-bottom: 32px;
  letter-spacing: -0.01em;
}

.ref-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: #e0e0e0;
  border: 1px solid #e0e0e0;
}

.ref-item {
  background: var(--white);
  padding: 20px 24px;
  font-size: 14px;
  line-height: 1.6;
  color: #444;
}

.ref-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--black);
  margin-right: 12px;
  min-width: 160px;
}

/* PILLARS */
.pillars {
  padding-top: 0;
}

/* QUOTE */
.quote-section {
  padding: 48px 32px;
  border-top: 1px solid #e0e0e0;
}

.quote-section blockquote {
  font-size: 22px;
  font-weight: 300;
  font-style: italic;
  color: var(--gray-dark);
  max-width: 620px;
}

/* VOGUE BANNER */
.vogue-banner {
  display: block;
  background: #0a0a0a;
  color: #fff;
  text-decoration: none;
  padding: 56px 32px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}

.vogue-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
}

.vogue-banner::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
}

.vogue-banner:hover {
  background: #141414;
  opacity: 1;
}

.vogue-banner-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
}

.vogue-deco {
  margin-bottom: 16px;
}

.vogue-quote-text {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(18px, 2.8vw, 32px);
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 16px;
}

.vogue-quote-text::before { content: '„'; }
.vogue-quote-text::after  { content: '"'; }

.vogue-byline {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 28px;
}

.vogue-source {
  display: flex;
  align-items: center;
  gap: 24px;
}

.vogue-source-masthead {
  display: flex;
  align-items: center;
  gap: 16px;
}

.vogue-svg-logo {
  height: 28px;
  width: auto;
  display: block;
}

.vogue-v,
.vogue-ogue {
  display: none;
}

.vogue-leaders-word {
  font-family: 'Roboto', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  border-left: 1px solid rgba(255,255,255,0.15);
  padding-left: 16px;
}

.vogue-source-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}

.vogue-source-arrow {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
  border-left: 1px solid rgba(255,255,255,0.15);
  padding-left: 24px;
}

.vogue-banner:hover .vogue-source-arrow {
  color: rgba(255,255,255,0.85);
}

@media(max-width:480px) {
  .vogue-svg-logo { height: 20px; }
  .vogue-source { flex-direction: column; align-items: flex-start; gap: 12px; }
  .vogue-source-arrow { border-left: none; padding-left: 0; }
}

/* TERMS */
.terms-body h2 {
  font-size: 18px;
  font-weight: 500;
  margin: 40px 0 16px;
}

.terms-body h2:first-child { margin-top: 0; }

.terms-body p {
  font-size: 14px;
  line-height: 1.75;
  color: #444;
  margin-bottom: 14px;
  max-width: 760px;
}

.terms-body h3 {
  font-size: 13px;
  font-weight: 500;
  color: #111;
  margin: 28px 0 10px;
}

.terms-body hr {
  margin: 40px 0;
  border: none;
  border-top: 1px solid #e0e0e0;
}

/* MOBILE */
@media (max-width: 768px) {
  nav { padding: 0 20px; }

  .nav-links {
    display: none;
    position: fixed;
    top: 60px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 24px 20px;
    gap: 20px;
    border-bottom: 1px solid #e0e0e0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  }

  .nav-links.open { display: flex; }

  .nav-links a {
    font-size: 15px;
    color: var(--black);
  }

  .nav-toggle { display: block; }

  .intro-split {
    grid-template-columns: 1fr;
  }

  .intro-portrait {
    display: block;
    max-height: 420px;
    order: 2;
  }

  .intro-text {
    padding: 32px 20px;
    order: 1;
  }

  .intro-text p {
    font-size: 16px;
  }

  .hero {
    height: 100vh;
    height: 100dvh;
  }

  .intro-text p {
    font-size: 16px;
  }

  .hero { height: 70vh; }

  .hero-content { padding: 32px 20px; }

  .container { padding: 48px 20px; }

  .intro p { font-size: 16px; }

  .practice-grid {
    grid-template-columns: 1fr;
  }

  .office-section {
    grid-template-columns: 1fr;
  }

  .office-img { height: 260px; }

  .office-text { padding: 40px 20px; }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .ref-tag {
    display: block;
    margin-bottom: 4px;
    margin-right: 0;
  }
}

@media (max-width: 480px) {
  .hero-content h1 { font-size: 26px; }
  .practice-item { padding: 24px 20px; }
}
