:root {
  color-scheme: dark;
  --bg: #050607;
  --surface: #0d1012;
  --text: #f7f3ec;
  --muted: #aab3ad;
  --line: rgba(247, 243, 236, 0.14);
  --amber: #f0c96b;
  --blue: #8ebfff;
  --ink: #080909;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg, rgba(240, 201, 107, 0.08), transparent 34%),
    linear-gradient(245deg, rgba(142, 191, 255, 0.07), transparent 30%);
  z-index: -1;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem clamp(1rem, 4vw, 3rem);
  background: rgba(5, 6, 7, 0.78);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}
.brand, .nav-links, .hero-actions, .social-row { display: flex; align-items: center; }
.brand { gap: 0.7rem; font-weight: 900; }
.brand-mark {
  width: 2.45rem;
  height: 2.45rem;
  border: 1px solid rgba(240, 201, 107, 0.55);
  border-radius: 50%;
  object-fit: cover;
  background: #101214;
}
.nav-links { gap: clamp(0.75rem, 2vw, 1.5rem); color: var(--muted); font-size: 0.92rem; font-weight: 700; }
.nav-links a:hover { color: var(--text); }

main, footer { width: min(1160px, calc(100% - 2rem)); margin: 0 auto; }
.hero {
  min-height: calc(100svh - 4.2rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: end;
  padding: clamp(8rem, 18vw, 14rem) 0 clamp(2rem, 5vw, 4rem);
  position: relative;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 1.25rem 0 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #0b0d0f;
  box-shadow: var(--shadow);
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 6, 7, 0.9), rgba(5, 6, 7, 0.3) 48%, rgba(5, 6, 7, 0.78));
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 780px;
  padding: clamp(1rem, 3vw, 2rem);
}
.eyebrow {
  margin: 0 0 1rem;
  color: var(--amber);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
h1, h2, p { overflow-wrap: anywhere; }
h1 {
  margin: 0;
  max-width: 12ch;
  font-size: clamp(3.65rem, 10vw, 8.6rem);
  line-height: 0.88;
  letter-spacing: 0;
}
h2 { margin: 0; font-size: clamp(2rem, 4.8vw, 4.4rem); line-height: 0.98; letter-spacing: 0; }
.lede {
  max-width: 62ch;
  margin: 1.45rem 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.24rem);
  line-height: 1.68;
}
.hero-actions { flex-wrap: wrap; gap: 0.85rem; margin-top: 2rem; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0 1.1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}
.button.primary { background: var(--text); color: var(--ink); border-color: var(--text); }
.button.secondary { background: rgba(255, 255, 255, 0.06); color: var(--text); }
.button:hover { transform: translateY(-1px); }

.section { padding: clamp(4rem, 8vw, 7rem) 0; border-top: 1px solid var(--line); }
.section-heading { max-width: 780px; margin-bottom: 2rem; }
.intro-grid, .social-section, .contact {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.intro-grid > p, .contact-copy p { margin: 0; color: var(--muted); line-height: 1.7; font-size: 1.08rem; }
.link-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0.8rem; }
.link-card {
  min-height: 9.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.15rem;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}
.link-card:hover { background: rgba(255, 255, 255, 0.065); border-color: rgba(240, 201, 107, 0.55); transform: translateY(-2px); }
.link-card span { font-size: 1.12rem; font-weight: 900; }
small, .form-note, footer { color: var(--muted); }

.portrait-band {
  min-height: 30rem;
  margin: clamp(2rem, 5vw, 4rem) 0;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #0b0d0f;
  box-shadow: var(--shadow);
}
.portrait-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 6, 7, 0.18), rgba(5, 6, 7, 0.84) 58%, rgba(5, 6, 7, 0.95));
}
.portrait-band img { width: 100%; height: 100%; min-height: 30rem; object-fit: cover; object-position: center; }
.portrait-band div {
  position: absolute;
  z-index: 1;
  inset: auto clamp(1.2rem, 5vw, 4rem) clamp(1.5rem, 5vw, 4rem) auto;
  width: min(34rem, calc(100% - 2rem));
}
.social-row { flex-wrap: wrap; justify-content: flex-end; gap: 0.7rem; }
.social-row a {
  padding: 0.72rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-weight: 800;
}
.social-row a:hover { color: var(--text); border-color: rgba(240, 201, 107, 0.62); }
.contact-copy p { margin: 1rem 0 1.25rem; }
.mail-link { color: var(--amber); font-weight: 800; }
.contact-form {
  display: grid;
  gap: 0.9rem;
  padding: 1rem;
  background: rgba(13, 16, 18, 0.82);
  border: 1px solid var(--line);
  border-radius: 8px;
}
label { display: grid; gap: 0.45rem; color: var(--muted); font-size: 0.88rem; font-weight: 800; }
input, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #050607;
  color: var(--text);
  font: inherit;
  padding: 0.9rem;
  outline: none;
}
input:focus, textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(142, 191, 255, 0.16); }
textarea { resize: vertical; }
.form-note { margin: 0; font-size: 0.82rem; }
footer { padding: 2rem 0; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }

@media (max-width: 900px) {
  .site-header, .intro-grid, .social-section, .contact { grid-template-columns: 1fr; }
  .site-header { display: grid; }
  .hero { min-height: 42rem; padding-top: 10rem; }
  .link-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .social-row { justify-content: flex-start; }
  .portrait-band::after { background: linear-gradient(180deg, rgba(5, 6, 7, 0.1), rgba(5, 6, 7, 0.9)); }
  .portrait-band div { left: 1rem; right: 1rem; }
}
@media (max-width: 560px) {
  main, footer { width: min(100% - 1rem, 1160px); }
  .nav-links { justify-content: space-between; }
  h1 { font-size: 3.55rem; }
  .hero-media { inset: 0.75rem 0 0; }
  .link-grid { grid-template-columns: 1fr; }
  .button { width: 100%; }
  .portrait-band, .portrait-band img { min-height: 28rem; }
}

.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
}
.button:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

