:root {
  --ink: #111111;
  --gold: #b8976a;
  --gold-dark: #9a7954;
  --muted: #5b6570;
  --cream: #f7f5f1;
  --line: #e6e1d8;
  --dark: #141414;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: #fff;
}
a, button { font: inherit; }
img { max-width: 100%; display: block; }

.header {
  height: 78px;
  padding: 0 5vw;
  display: flex;
  align-items: center;
  gap: 24px;
  position: sticky;
  top: 0;
  background: #fff;
  border-bottom: 1px solid var(--line);
  z-index: 40;
}
.brand {
  text-decoration: none;
  color: var(--ink);
  line-height: 1.05;
}
.brand strong {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 22px;
  letter-spacing: 0.02em;
  font-weight: 500;
}
.brand small {
  display: block;
  font-size: 8px;
  letter-spacing: 0.22em;
  color: #777;
  margin-top: 5px;
}
.header nav {
  margin-left: auto;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.header nav a {
  text-decoration: none;
  color: var(--ink);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.header nav a.active {
  border-bottom: 2px solid var(--gold);
  padding-bottom: 3px;
}

.btn {
  min-height: 44px;
  padding: 0 20px;
  border: 0;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  white-space: nowrap;
}
.btn-dark { background: var(--ink); color: #fff; }
.btn-gold { background: var(--gold); color: #fff; }
.btn-outline-dark {
  background: transparent;
  border: 1px solid var(--ink);
  color: var(--ink);
}
.btn-outline-light {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
}

.hamburger {
  display: none;
  margin-left: auto;
  border: 0;
  background: none;
  font-size: 24px;
}
.mobile-nav {
  display: none;
  background: #fff;
  padding: 16px 5vw;
  gap: 12px;
  position: sticky;
  top: 78px;
  z-index: 35;
  border-bottom: 1px solid var(--line);
}
.mobile-nav.open { display: grid; }
.mobile-nav a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
  font-size: 12px;
}

.hero {
  min-height: 680px;
  background: #111 center/cover no-repeat url("assets/hero.jpg");
  position: relative;
  color: #fff;
  display: grid;
  align-items: center;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 10, 10, 0.82) 0%, rgba(10, 10, 10, 0.45) 48%, rgba(10, 10, 10, 0.15) 100%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  padding: 90px 6vw;
  max-width: 680px;
}
.hero-aside {
  position: absolute;
  right: 6vw;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  text-align: left;
  display: none;
}
.hero-aside p {
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 2;
}
.hero-aside p::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 42px;
  background: rgba(255, 255, 255, 0.45);
  margin-right: 14px;
  vertical-align: middle;
}
.hero-aside .gold-line {
  width: 36px;
  height: 2px;
  background: var(--gold);
  margin: 8px 0 0 16px;
}

.eyebrow {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.85);
}
.eyebrow-gold { color: var(--gold); }

.hero h1,
.about h2,
.services h2,
.insights-head h2,
.cta h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.02em;
}
.hero h1 {
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1.02;
  margin: 18px 0;
}
.hero h1 span { color: var(--gold); font-style: italic; }
.hero p {
  font-size: 16px;
  line-height: 1.75;
  max-width: 480px;
  color: rgba(255, 255, 255, 0.88);
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 32px;
  margin-top: 36px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 30px 5vw;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.values article { display: grid; gap: 8px; }
.values b {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.values p {
  margin: 0;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}

.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding: 88px 6vw;
  align-items: center;
  background: var(--cream);
}
.about-photo-wrap { position: relative; }
.about-photo {
  min-height: 480px;
  background: center/cover no-repeat url("assets/about.jpg");
  position: relative;
}
.about-photo::after {
  content: "BETTER QUESTIONS LEAD TO BETTER OPPORTUNITIES.";
  position: absolute;
  left: 24px;
  bottom: 24px;
  max-width: 220px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.6;
  color: #fff;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.45);
}
.about h2 {
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.08;
  margin: 12px 0 18px;
}
.about p {
  color: var(--muted);
  line-height: 1.85;
  font-size: 15px;
}

.services {
  padding: 88px 6vw;
  background: #fff;
}
.services-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 36px;
}
.services-head h2 {
  font-size: clamp(30px, 4vw, 42px);
  margin: 8px 0 0;
}
.services-head p {
  color: var(--muted);
  margin: 0;
  font-size: 14px;
}
.link-btn {
  background: none;
  border: 0;
  border-bottom: 1px solid var(--ink);
  padding: 6px 0;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  cursor: pointer;
  color: var(--ink);
}
.grid4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.card {
  border: 1px solid var(--line);
  padding: 28px 24px;
  background: #fff;
  min-height: 180px;
  display: flex;
  flex-direction: column;
}
.card-icon {
  font-size: 18px;
  margin-bottom: 18px;
  opacity: 0.7;
}
.card h3 {
  margin: 0 0 10px;
  font-size: 18px;
  letter-spacing: 0.04em;
}
.card p {
  margin: 0 0 auto;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}
.card a {
  margin-top: 18px;
  font-size: 11px;
  font-weight: 800;
  color: var(--ink);
  text-decoration: none;
}

.proof {
  padding: 88px 6vw;
  background: #111 center/cover no-repeat url("assets/proof-bg.jpg");
  color: #fff;
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.proof::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(8, 12, 10, 0.82);
}
.proof > * { position: relative; z-index: 1; }
.proof .nums {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.proof b {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 38px;
  font-weight: 400;
  color: #fff;
}
.proof span {
  font-size: 11px;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.65);
}
.quote {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 22px;
  line-height: 1.55;
  font-style: italic;
  margin: 0;
}
.quote cite {
  display: block;
  margin-top: 18px;
  font-size: 12px;
  font-style: normal;
  color: rgba(255, 255, 255, 0.55);
  font-family: Inter, sans-serif;
}

.insights {
  padding: 88px 6vw;
  background: #fff;
}
.insights-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 32px;
}
.insights-head h2 {
  font-size: clamp(28px, 3.5vw, 38px);
  margin: 8px 0 0;
}
.articles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.articles article {
  border: 1px solid var(--line);
}
.articles img {
  height: 180px;
  width: 100%;
  object-fit: cover;
}
.articles div { padding: 18px; }
.articles time {
  display: block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 10px;
}
.articles h3 {
  font-size: 16px;
  line-height: 1.45;
  margin: 0 0 12px;
  font-weight: 600;
}
.articles a {
  font-size: 11px;
  font-weight: 800;
  color: var(--ink);
  text-decoration: none;
}

.cta {
  padding: 92px 6vw;
  background:
    linear-gradient(rgba(15, 18, 16, 0.88), rgba(15, 18, 16, 0.88)),
    center/cover no-repeat url("assets/cta-bg.jpg");
  color: #fff;
  text-align: center;
}
.cta h2 {
  font-size: clamp(34px, 4vw, 48px);
  margin: 16px auto;
  max-width: 640px;
}
.cta p {
  color: rgba(255, 255, 255, 0.72);
  max-width: 520px;
  margin: 0 auto 28px;
  line-height: 1.75;
}
.cta .actions { justify-content: center; }

footer {
  padding: 36px 6vw;
  background: var(--cream);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  font-size: 11px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}
footer .brand strong { font-size: 18px; }
footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}
footer nav a {
  text-decoration: none;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
}
footer .social {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}
footer .social a {
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  text-decoration: none;
  color: var(--ink);
  font-size: 10px;
  font-weight: 800;
}
footer .tagline {
  text-align: right;
  font-size: 10px;
  letter-spacing: 0.08em;
}

.modal-bg {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  z-index: 80;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-bg.open { display: flex; }
.modal {
  width: min(460px, 100%);
  background: #fff;
  padding: 32px;
  display: grid;
  gap: 12px;
  position: relative;
}
.modal h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 400;
  margin: 0 0 8px;
}
.modal label {
  display: grid;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
}
.modal input,
.modal textarea {
  padding: 12px;
  border: 1px solid #ccc;
  font: inherit;
}
.close {
  position: absolute;
  right: 10px;
  top: 8px;
  border: 0;
  background: none;
  font-size: 26px;
  cursor: pointer;
}

@media (min-width: 900px) {
  .hero-aside { display: block; }
}

@media (max-width: 820px) {
  .header nav,
  .header .btn { display: none; }
  .hamburger { display: block; }
  .values,
  .grid4,
  .articles,
  .about,
  .proof,
  footer { grid-template-columns: 1fr; }
  .values { grid-template-columns: 1fr 1fr; }
  .proof .nums { grid-template-columns: 1fr 1fr; }
  .hero-inner,
  .about,
  .services,
  .proof,
  .insights,
  .cta { padding: 56px 20px; }
  .stats-row { grid-template-columns: 1fr; gap: 12px; }
  footer .social,
  footer .tagline { justify-content: flex-start; text-align: left; }
  .services-head,
  .insights-head { flex-direction: column; align-items: flex-start; }
}
