:root {
  --bg: #0b0a08;
  --bg-soft: #12100c;
  --ink: #f0ebdd;
  --ink-muted: #c8c0aa;
  --gold: #d3aa3c;
  --gold-bright: #ecd98b;
  --gold-dim: #8a6f27;
  --hairline: rgba(211, 170, 60, 0.28);
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Jost", "Avenir Next", "Helvetica Neue", sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

.wrap { max-width: 1060px; margin: 0 auto; padding: 0 24px; }

h1, h2, h3, .serif { font-family: var(--serif); font-weight: 600; }

a { color: var(--gold-bright); text-decoration: none; }
a:hover { color: var(--gold); }

/* ---------- header ---------- */
header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(11, 10, 8, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(211, 170, 60, 0.15);
}
nav {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 14px 0;
}
nav .brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-right: auto;
  color: var(--ink);
  letter-spacing: 0.04em;
}
nav .brand svg { width: 38px; height: 38px; }
nav .brand span { font-family: var(--serif); font-size: 1.15rem; }
nav a.nav-link {
  color: var(--ink-muted);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
nav a.nav-link:hover { color: var(--gold-bright); }
nav a.lang {
  border: 1px solid var(--hairline);
  padding: 4px 12px;
  border-radius: 2px;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  color: var(--gold);
}

/* ---------- hero ---------- */
.hero {
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: 80px 24px 64px;
  background:
    radial-gradient(ellipse 55% 50% at 68% 40%, rgba(211, 170, 60, 0.12), transparent 70%),
    var(--bg);
}
.hero-grid {
  max-width: 1060px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-text { text-align: left; }
.hero .logo { width: 120px; height: 120px; margin-bottom: 36px; }
.hero-photo { justify-self: end; position: relative; }
.hero-photo img {
  display: block;
  width: min(400px, 100%);
  border-radius: 4px;
  border: 1px solid rgba(211, 170, 60, 0.45);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.55), 0 0 90px rgba(211, 170, 60, 0.08);
}
.hero-photo::after {
  content: "";
  position: absolute;
  inset: 14px -14px -14px 14px;
  border: 1px solid rgba(211, 170, 60, 0.3);
  border-radius: 4px;
  z-index: -1;
}
.hero .eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}
.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  line-height: 1.1;
  letter-spacing: 0.01em;
}
.hero .subtitle {
  margin-top: 18px;
  font-size: 1.05rem;
  letter-spacing: 0.12em;
  color: var(--ink-muted);
}
.hero .subtitle .sep { color: var(--gold-dim); padding: 0 10px; }
.hero blockquote {
  margin-top: 40px;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.3rem, 2.6vw, 1.75rem);
  color: var(--gold-bright);
}

/* ---------- sections ---------- */
section { padding: 104px 0; }
section.alt { background: var(--bg-soft); }

.kicker {
  font-size: 0.75rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(1.9rem, 3.6vw, 2.7rem);
  line-height: 1.18;
  margin-bottom: 40px;
  max-width: 640px;
}

.hairline { border: none; border-top: 1px solid var(--hairline); width: 72px; margin: 0 0 36px; }

/* story */
.story-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 64px;
  align-items: start;
}
.story-grid p { margin-bottom: 1.2em; color: var(--ink); }
.story-grid p.muted { color: var(--ink-muted); }
.pullquote {
  border-left: 1px solid var(--gold);
  padding: 8px 0 8px 28px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.45rem;
  line-height: 1.5;
  color: var(--gold-bright);
  position: sticky;
  top: 110px;
}
.facts { list-style: none; margin-top: 36px; }
.facts li {
  padding: 14px 0;
  border-bottom: 1px solid rgba(211, 170, 60, 0.12);
  color: var(--ink-muted);
  display: flex;
  gap: 14px;
}
.facts li::before { content: "◆"; color: var(--gold); font-size: 0.6rem; line-height: 2.4; }

/* cards */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.card {
  border: 1px solid rgba(211, 170, 60, 0.18);
  background: linear-gradient(180deg, rgba(211, 170, 60, 0.05), transparent 55%);
  padding: 40px 32px;
  border-radius: 3px;
}
.card .num {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--gold);
  letter-spacing: 0.2em;
  margin-bottom: 18px;
}
.card h3 { font-size: 1.45rem; margin-bottom: 12px; }
.card p { color: var(--ink-muted); font-size: 1rem; }

.closing-line {
  margin-top: 48px;
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--gold-bright);
}

/* two-col lists */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; }
.two-col h3 {
  font-size: 0.8rem;
  font-family: var(--sans);
  font-weight: 400;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}
.list { list-style: none; }
.list li {
  padding: 13px 0;
  border-bottom: 1px solid rgba(211, 170, 60, 0.12);
  display: flex;
  gap: 14px;
  color: var(--ink);
}
.list li::before { content: "—"; color: var(--gold-dim); }

/* services */
.services { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.service {
  border-top: 1px solid var(--gold-dim);
  padding: 28px 4px 8px;
}
.service h3 { font-size: 1.5rem; margin-bottom: 10px; }
.service p { color: var(--ink-muted); font-size: 1rem; }

/* contact */
.contact { text-align: center; }
.contact .logo-small { width: 92px; height: 92px; margin-bottom: 28px; }
.contact h2 { font-size: clamp(2rem, 4vw, 2.9rem); margin-bottom: 14px; }
.contact p.lead { color: var(--ink-muted); max-width: 540px; margin: 0 auto 40px; }
.contact-lines { font-size: 1.12rem; line-height: 2.3; }
.contact-lines .label {
  display: inline-block;
  width: 90px;
  text-align: right;
  margin-right: 18px;
  color: var(--ink-muted);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

footer {
  border-top: 1px solid rgba(211, 170, 60, 0.15);
  padding: 34px 0 44px;
  text-align: center;
  color: var(--ink-muted);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
}
footer .domain { color: var(--gold); }

@media (max-width: 820px) {
  nav a.nav-link { display: none; }
  .story-grid, .two-col, .services { grid-template-columns: 1fr; gap: 40px; }
  .cards { grid-template-columns: 1fr; }
  .pullquote { position: static; }
  section { padding: 72px 0; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-text { text-align: center; }
  .hero .logo { margin-left: auto; margin-right: auto; }
  .hero-photo { justify-self: center; }
  .hero-photo img { width: min(320px, 86vw); }
}
