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

:root {
  --bg: #08110d;
  --bg-2: #0c1813;
  --card: transparent;
  --text: #e8f3ec;
  --muted: #9bb5a6;
  --gold: #3db88a;
  --gold-2: #9eddc4;
  --gold-ink: #062016;
  --line: rgba(158, 221, 196, 0.16);
  --font: "Literata", Georgia, serif;
  --display: "Bricolage Grotesque", system-ui, sans-serif;
  --max: 1240px;
  --header: 64px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
address { font-style: normal; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--gold);
  color: var(--gold-ink);
  padding: 0.6rem 1rem;
  z-index: 200;
}
.skip-link:focus { left: 1rem; top: 1rem; }

.wrap {
  width: min(100% - 2.2rem, var(--max));
  margin-inline: auto;
}

.kicker, .eyebrow {
  font-family: var(--display);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

h1 { font-size: clamp(2.8rem, 7.2vw, 5.4rem); }
.hero h1 { max-width: 16ch; }
h2 { font-size: clamp(2rem, 4.4vw, 3.4rem); margin-bottom: 1rem; }
h3 { font-size: 1.35rem; font-weight: 600; }

.lede, .section-head p, .role-grid > div > p, .apply-copy > p, .band-copy > p:not(.mega):not(.kicker) {
  color: var(--muted);
  max-width: 48ch;
}

.section { padding: 6rem 0; }
.section-head { margin-bottom: 2.8rem; max-width: 720px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.4rem;
  border-radius: 0;
  font-family: var(--display);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}
.btn-gold { background: var(--gold); color: var(--gold-ink); }
.btn-gold:hover { background: var(--gold-2); }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-2); }
.btn-full { width: 100%; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--header);
  background: rgba(8, 17, 13, 0.88);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.logo span span { color: var(--gold); }
.logo img { width: 36px; height: 36px; border-radius: 8px; }

.nav { display: flex; align-items: center; gap: 1.6rem; }
.nav a {
  font-family: var(--display);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav a:hover, .nav a.is-active { color: var(--text); }
.nav-cta {
  color: var(--gold) !important;
  border-bottom: 1px solid var(--gold);
  padding: 0 0 0.15rem;
  border-radius: 0;
  background: none;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  position: relative;
}
.menu-toggle span {
  position: absolute;
  left: 11px;
  right: 11px;
  height: 1.5px;
  background: var(--text);
}
.menu-toggle span:first-child { top: 16px; }
.menu-toggle span:last-child { bottom: 16px; }
.menu-toggle.is-open span:first-child { top: 20px; transform: rotate(45deg); }
.menu-toggle.is-open span:last-child { bottom: 20px; transform: rotate(-45deg); }

.hero {
  position: relative;
  min-height: 86vh;
  display: grid;
  align-items: end;
  overflow: hidden;
}
.hero-bg, .hero-veil { position: absolute; inset: 0; }
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% center;
  filter: saturate(0.7) contrast(1.08);
}
.hero-veil {
  background:
    linear-gradient(180deg, rgba(8,17,13,0.25) 0%, rgba(8,17,13,0.55) 45%, rgba(8,17,13,0.96) 100%),
    linear-gradient(90deg, rgba(8,17,13,0.7), transparent 55%);
}
.hero-inner {
  position: relative;
  padding: 8rem 0 3.5rem;
}
.hero-inner .lede { color: #c9ddd3; font-size: 1.12rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 2rem; }

.stat-bar {
  border-block: 1px solid var(--line);
  background: var(--bg-2);
}
.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-row > div {
  padding: 1.4rem 1.2rem 1.5rem 0;
  border-right: 1px solid var(--line);
}
.stat-row > div:last-child { border-right: 0; padding-right: 0; }
.stat-row span {
  display: block;
  font-family: var(--display);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.35rem;
}
.stat-row strong {
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--gold-2);
}
.stat-rate strong { color: var(--text); }

.lang-index {
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}
.lang-index p {
  font-family: var(--display);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.band {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  min-height: 640px;
}
.band-media { margin: 0; }
.band-media img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  filter: saturate(0.8);
}
.band-copy {
  padding: 4.5rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--bg-2);
  border-left: 1px solid var(--line);
}
.mega {
  font-family: var(--display);
  font-size: clamp(3.5rem, 8vw, 6rem);
  line-height: 0.9;
  color: var(--gold);
  margin: 1.4rem 0 1.6rem;
  max-width: none !important;
}
.mega span {
  display: block;
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.5rem;
}

.why { background: var(--bg); }
.why-rows { border-top: 1px solid var(--line); }
.why-rows li {
  display: grid;
  grid-template-columns: 4.5rem 1fr;
  gap: 1.2rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.why-rows span {
  font-family: var(--display);
  font-size: 1.4rem;
  color: var(--gold);
  letter-spacing: -0.04em;
}
.why-rows p { color: var(--muted); max-width: 62ch; }

.role-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: start;
}
.pay-card {
  margin: 1.8rem 0 1.5rem;
  padding: 1.1rem 0;
  border-block: 1px solid var(--gold);
}
.pay-card span, .pay-card em {
  display: block;
  color: var(--muted);
  font-style: normal;
  font-size: 0.88rem;
}
.pay-card strong {
  display: block;
  font-family: var(--display);
  font-size: 2rem;
  color: var(--gold-2);
  margin: 0.15rem 0;
}
.role-panel { border-left: 1px solid var(--line); padding-left: 2rem; }
.role-photo img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center 30%;
  filter: saturate(0.75);
  margin-bottom: 1.4rem;
}
.role-block { margin-bottom: 1.4rem; }
.role-block li {
  color: var(--muted);
  padding: 0.4rem 0 0.4rem 1rem;
  border-left: 1px solid var(--gold);
  margin-bottom: 0.35rem;
}
.role-tags { display: grid; gap: 0.7rem; }
.role-tags span { color: var(--muted); font-size: 0.95rem; }
.role-tags strong { color: var(--text); margin-right: 0.4rem; font-family: var(--display); }

.growth { background: var(--bg-2); border-block: 1px solid var(--line); }
.growth .section-head { max-width: none; }
.spine {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  width: 100%;
  border-top: 1px solid var(--line);
}
.spine li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.1rem;
  padding: 1.8rem 1.6rem 1.9rem 0;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
}
.spine li:nth-child(even) { padding-left: 1.6rem; padding-right: 0; border-right: 0; }
.spine li span {
  font-family: var(--display);
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 0.12em;
  padding-top: 0.25rem;
}
.spine p { color: var(--muted); }

.work-gallery {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 0;
  border: 1px solid var(--line);
}
.work-gallery figure {
  margin: 0;
  border-right: 1px solid var(--line);
  position: relative;
}
.work-gallery figure:last-child { border-right: 0; }
.work-gallery img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  filter: saturate(0.72) contrast(1.05);
  transition: filter 0.35s ease;
}
.work-gallery figure:hover img { filter: saturate(0.95) contrast(1.08); }
.work-gallery figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.85rem 1rem;
  font-family: var(--display);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: linear-gradient(transparent, rgba(8,17,13,0.88));
}

.steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
.steps-row li {
  padding: 2rem 1.6rem 2rem 0;
  border-right: 1px solid var(--line);
}
.steps-row li:last-child { border-right: 0; padding-right: 0; }
.steps-row span {
  display: block;
  font-family: var(--display);
  font-size: 2.4rem;
  color: var(--gold);
  letter-spacing: -0.06em;
  margin-bottom: 0.8rem;
  line-height: 1;
}
.steps-row p { color: var(--muted); margin-top: 0.45rem; }
.center-cta { display: flex; margin-top: 2.2rem; }

.faq { background: var(--bg-2); border-block: 1px solid var(--line); }
.faq-grid { display: grid; grid-template-columns: 0.7fr 1.3fr; gap: 4rem; }
.faq-list details { border-bottom: 1px solid var(--line); padding: 1.15rem 0; }
.faq-list summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--display);
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; color: var(--gold); font-family: var(--display); }
.faq-list details[open] summary::after { content: "–"; }
.faq-list details p { color: var(--muted); padding-top: 0.7rem; max-width: 62ch; }

.apply-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: start;
}
.apply-time {
  color: var(--gold-2) !important;
  font-family: var(--display);
  font-weight: 600;
  margin: 1.1rem 0 1.5rem;
  max-width: none !important;
}
.apply-photo img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  filter: saturate(0.8);
}
.apply-form {
  border: 1px solid var(--line);
  padding: 1.8rem 1.6rem;
}
.field { margin-bottom: 1.15rem; }
.field label {
  display: block;
  font-family: var(--display);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}
.field input, .field select, .field textarea {
  width: 100%;
  background: transparent;
  color: var(--text);
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  padding: 0.7rem 0;
  font: inherit;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.field .is-error { border-color: #d16b6b; }
.form-status { min-height: 1.4rem; margin-top: 0.8rem; font-size: 0.9rem; }
.form-status.is-error { color: #e08a8a; }
.form-status.is-ok { color: #9dcca8; }

.modal[hidden] { display: none; }
.modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 1.2rem;
}
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 12, 9, 0.78);
}
.modal-panel {
  position: relative;
  width: min(100%, 440px);
  background: #0c1813;
  border: 1px solid var(--line);
  padding: 2rem 1.7rem 1.7rem;
}
.modal-panel h2 { margin-bottom: 0.7rem; font-size: 1.7rem; }
.modal-panel p:not(.kicker) { color: var(--muted); margin-bottom: 1.5rem; }
.modal-panel.is-error h2 { color: #e08a8a; }
body.modal-open { overflow: hidden; }

.site-footer {
  background: #050c09;
  border-top: 1px solid var(--line);
  padding: 3.2rem 0 1.4rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.2rem;
}
.footer-grid p, .footer-grid address { color: var(--muted); margin-top: 0.9rem; }
.footer-grid h4 {
  font-family: var(--display);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-2);
}
.footer-grid ul { margin-top: 0.9rem; }
.footer-grid li { margin-bottom: 0.4rem; }
.footer-grid a:hover { color: var(--gold-2); }
.legal-id { font-size: 0.85rem; }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 1.1rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.page-hero { padding: 4.5rem 0 2.5rem; }
.page-hero h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); max-width: 18ch; }
.page-hero-lead, .page-meta { color: var(--muted); max-width: 58ch; margin-top: 1rem; }
.page-section { padding: 2rem 0 5.5rem; }
.prose { max-width: 72ch; color: var(--muted); }
.prose h2 { color: var(--text); margin: 2rem 0 0.7rem; font-size: 1.45rem; }
.prose p, .prose li { margin-bottom: 0.8rem; }
.prose ul { padding-left: 1.1rem; list-style: disc; }
.prose a { color: var(--gold-2); text-decoration: underline; }
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 2.5rem;
  border-top: 1px solid var(--line);
}
.about-stat {
  padding: 1.3rem 1.2rem 1.3rem 0;
  border-right: 1px solid var(--line);
}
.about-stat:last-child { border-right: 0; }
.about-stat strong { display: block; color: var(--gold-2); font-size: 1.5rem; margin-bottom: 0.35rem; font-family: var(--display); }
.about-stat span { color: var(--muted); font-size: 0.92rem; }
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2.5rem;
  align-items: start;
}
.contact-info p { color: var(--muted); margin-bottom: 0.85rem; }
.contact-info a { color: var(--gold-2); }
.page-cta { max-width: 640px; }
.page-cta p { color: var(--muted); margin-bottom: 1.4rem; }
.content-list li { color: var(--muted); margin-bottom: 0.7rem; }

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 2rem;
}
.split-grid p { color: var(--muted); }
.split-visual img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  filter: saturate(0.8);
}

@media (max-width: 980px) {
  .stat-row, .band, .role-grid, .faq-grid, .apply-grid, .footer-grid, .work-gallery, .steps-row, .spine, .about-stats, .contact-grid, .split-grid {
    grid-template-columns: 1fr;
  }
  .stat-row > div, .steps-row li, .work-gallery figure, .spine li, .about-stat {
    border-right: 0;
    padding-left: 0;
    padding-right: 0;
  }
  .spine li:nth-child(even) { padding-left: 0; }
  .band-copy { padding: 2.4rem 0; border-left: 0; }
  .role-panel { border-left: 0; padding-left: 0; }
  .work-gallery img { height: 280px; }
  .hero { min-height: 78vh; }
  .menu-toggle { display: block; }
  .nav {
    position: absolute;
    top: var(--header);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: #0a1611;
    border-bottom: 1px solid var(--line);
    padding: 0.6rem 1.2rem 1.1rem;
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 0.7rem 0; width: 100%; }
}

@media (max-width: 640px) {
  .section { padding: 4rem 0; }
  .hero-inner { padding: 6.5rem 0 2.4rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .why-rows li { grid-template-columns: 2.2rem 1fr; }
}
