:root {
  --ink: #f7f1e6;
  --ink-soft: #cfc6b7;
  --paper: #070807;
  --paper-deep: #11120f;
  --panel: #151510;
  --panel-soft: #1d1b15;
  --field: #fbf6ed;
  --field-ink: #15130f;
  --white: #ffffff;
  --teal: #0d756c;
  --teal-dark: #09524c;
  --amber: #d9aa55;
  --coral: #d77d5d;
  --line: rgba(217, 170, 85, 0.22);
  --shadow: 0 24px 90px rgba(0, 0, 0, 0.48);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(217, 170, 85, 0.08), transparent 28%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.028) 0 1px, transparent 1px 96px),
    var(--paper);
  font-family: Candara, "Segoe UI", ui-sans-serif, system-ui, sans-serif;
  line-height: 1.5;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(calc(100% - 32px), var(--max));
  margin: 16px auto 0;
  padding: 12px 14px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(7, 8, 7, 0.62);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  border-color: rgba(217, 170, 85, 0.28);
  background: rgba(7, 8, 7, 0.9);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.34);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  font-weight: 800;
}

.brand-mark {
  width: 30px;
  height: 30px;
  border: 2px solid currentColor;
  border-radius: 50%;
  position: relative;
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  inset: 8px 2px auto;
  height: 2px;
  background: currentColor;
}

.brand-mark::after {
  inset: auto 2px 8px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.94rem;
  font-weight: 700;
}

.site-nav a {
  padding: 10px 12px;
  border-radius: 8px;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  outline: none;
  background: rgba(255, 255, 255, 0.16);
}

.site-header.is-scrolled .site-nav a:hover,
.site-header.is-scrolled .site-nav a:focus-visible {
  background: rgba(217, 170, 85, 0.12);
}

.site-nav .nav-cta {
  color: #15130f;
  background: var(--amber);
}

.site-header.is-scrolled .site-nav .nav-cta {
  color: #15130f;
  background: var(--amber);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  color: inherit;
  border: 0;
  border-radius: 8px;
  background: transparent;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 88vh;
  padding: 124px 20px 72px;
  color: var(--white);
  background-image: url("assets/faceless-studio-hero.png");
  background-position: center right;
  background-size: cover;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 5, 4, 0.94) 0%, rgba(4, 5, 4, 0.78) 43%, rgba(4, 5, 4, 0.12) 84%),
    linear-gradient(0deg, rgba(4, 5, 4, 0.34), rgba(4, 5, 4, 0.06));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.application h2 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(2.6rem, 6vw, 6.6rem);
  line-height: 0.92;
  font-weight: 900;
  letter-spacing: 0;
  font-family: Georgia, "Times New Roman", serif;
}

.hero-copy {
  max-width: 590px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  outline: none;
  transform: translateY(-1px);
}

.button-primary {
  color: #14110b;
  background: var(--amber);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #f1c675;
}

.button-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.1);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.18);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.hero-proof span {
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  font-weight: 800;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  color: var(--white);
  background: #050605;
}

.trust-strip div {
  padding: 24px clamp(16px, 3vw, 38px);
  border-top: 1px solid rgba(217, 170, 85, 0.14);
  background: #0d0f0d;
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  font-size: 1rem;
}

.trust-strip span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.section {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  padding: 86px 0;
  scroll-margin-top: 112px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1.28fr);
  gap: 36px;
  align-items: start;
  margin-bottom: 36px;
}

.section h2,
.application h2 {
  color: var(--ink);
  font-size: clamp(2rem, 4.2vw, 4.5rem);
}

.benefit-grid,
.shoot-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.benefit-card,
.shoot-grid article {
  min-height: 238px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018)),
    var(--panel);
}

.card-kicker {
  display: inline-block;
  margin-bottom: 42px;
  color: var(--coral);
  font-weight: 900;
}

.benefit-card h3,
.shoot-grid h3,
.process-list h3 {
  margin: 0;
  font-size: 1.25rem;
}

.benefit-card p,
.shoot-grid p,
.process-list p,
.pay-panel p,
.application-copy p,
.faq-list p,
.site-footer p {
  margin: 12px 0 0;
  color: var(--ink-soft);
}

.process-section {
  border-top: 1px solid var(--line);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: process;
}

.process-list li {
  display: grid;
  gap: 24px;
  align-content: start;
  min-height: 260px;
  padding: 28px;
  border-radius: 8px;
  color: var(--white);
  border: 1px solid rgba(217, 170, 85, 0.18);
  background: #0e100e;
}

.process-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: var(--amber);
  font-weight: 900;
}

.process-list p {
  color: rgba(255, 255, 255, 0.72);
}

.shoots-section {
  width: 100%;
  max-width: none;
  padding: 92px max(20px, calc((100vw - var(--max)) / 2));
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(13, 117, 108, 0.24), rgba(0, 0, 0, 0) 50%),
    #090a09;
}

.shoots-section .section-heading {
  width: min(100%, var(--max));
  margin-inline: auto;
}

.shoots-section h2 {
  color: var(--white);
}

.shoot-grid {
  width: min(100%, var(--max));
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0 auto;
}

.shoot-grid article {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
}

.shoot-grid p {
  color: rgba(255, 255, 255, 0.72);
}

.pay-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 42px;
  align-items: start;
}

.pay-panel {
  display: grid;
  gap: 12px;
}

.pay-panel div {
  padding: 24px;
  border-left: 4px solid var(--amber);
  background: var(--panel-soft);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.26);
}

.application {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(340px, 1.12fr);
  gap: 42px;
  align-items: start;
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto 80px;
  padding: 44px;
  border-radius: 8px;
  color: var(--white);
  border: 1px solid rgba(217, 170, 85, 0.2);
  background:
    linear-gradient(140deg, rgba(13, 117, 108, 0.18), transparent 42%),
    #090a09;
  box-shadow: var(--shadow);
  scroll-margin-top: 112px;
}

.application h2 {
  color: var(--white);
}

.application-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.check-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 24px;
  color: rgba(255, 255, 255, 0.84);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--amber);
}

.apply-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  border-radius: 8px;
  color: var(--field-ink);
  background: var(--field);
}

.form-row {
  display: grid;
  gap: 7px;
}

.apply-form label,
.apply-form legend {
  font-weight: 900;
}

.apply-form input,
.apply-form select {
  width: 100%;
  min-height: 48px;
  padding: 11px 12px;
  border: 1px solid rgba(17, 19, 21, 0.2);
  border-radius: 8px;
  color: var(--field-ink);
  background: var(--white);
}

.apply-form input:focus,
.apply-form select:focus {
  outline: 3px solid rgba(217, 155, 67, 0.34);
  border-color: var(--amber);
}

.apply-form fieldset {
  display: grid;
  gap: 9px;
  padding: 16px;
  border: 1px solid rgba(17, 19, 21, 0.16);
  border-radius: 8px;
}

.apply-form fieldset label,
.consent-row {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  font-weight: 700;
}

.apply-form input[type="checkbox"] {
  min-height: 18px;
  width: 18px;
  margin: 3px 0 0;
  accent-color: var(--teal);
}

.form-button {
  width: 100%;
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: var(--teal-dark);
  font-weight: 800;
}

.faq-section {
  border-top: 1px solid var(--line);
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.faq-list summary {
  cursor: pointer;
  padding: 20px 22px;
  font-weight: 900;
}

.faq-list p {
  padding: 0 22px 22px;
}

.site-footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 34px max(20px, calc((100vw - var(--max)) / 2));
  color: rgba(255, 255, 255, 0.78);
  border-top: 1px solid rgba(217, 170, 85, 0.14);
  background: #050605;
}

.site-footer strong {
  display: block;
  color: var(--white);
}

.site-footer p {
  color: rgba(255, 255, 255, 0.64);
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.footer-meta span {
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
}

.footer-chat-button {
  padding: 8px 10px;
  color: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(217, 170, 85, 0.28);
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
}

.footer-chat-button:hover,
.footer-chat-button:focus-visible {
  outline: none;
  color: var(--white);
  border-color: var(--amber);
}

.chat-launcher {
  position: fixed;
  z-index: 40;
  right: 22px;
  bottom: 22px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 14px 18px;
  color: #14110b;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: var(--amber);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.42);
  font-weight: 900;
  cursor: pointer;
}

.chat-launcher-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--teal-dark);
  box-shadow: 0 0 0 6px rgba(9, 82, 76, 0.16);
}

.chat-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  color: var(--white);
  border-radius: 999px;
  background: #12110d;
  font-size: 0.78rem;
}

.chat-panel,
.inbox-panel {
  position: fixed;
  z-index: 50;
  inset: auto 22px 88px auto;
  width: min(430px, calc(100vw - 28px));
  pointer-events: none;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.inbox-panel {
  inset: auto 22px 88px 22px;
  width: min(980px, calc(100vw - 44px));
  margin-left: auto;
}

.chat-panel.is-open,
.inbox-panel.is-open {
  pointer-events: auto;
  opacity: 1;
  transform: translateY(0);
}

.chat-shell,
.inbox-shell {
  overflow: hidden;
  border: 1px solid rgba(217, 170, 85, 0.28);
  border-radius: 8px;
  background: #090a09;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.58);
}

.chat-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
  color: var(--white);
  border-bottom: 1px solid rgba(217, 170, 85, 0.16);
  background:
    linear-gradient(110deg, rgba(13, 117, 108, 0.28), transparent 60%),
    #10110e;
}

.chat-header strong {
  display: block;
  font-size: 1.05rem;
}

.chat-header p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.88rem;
}

.chat-status {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 7px;
  border-radius: 50%;
  background: #45d6a1;
  box-shadow: 0 0 0 5px rgba(69, 214, 161, 0.12);
}

.chat-icon-button {
  width: 34px;
  height: 34px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
}

.chat-log {
  display: grid;
  align-content: start;
  gap: 10px;
  height: 280px;
  padding: 16px;
  overflow-y: auto;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 76px),
    #070807;
}

.message {
  max-width: 84%;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--ink);
  background: var(--panel-soft);
}

.message.is-visitor {
  justify-self: end;
  color: #15130f;
  border-color: rgba(217, 170, 85, 0.48);
  background: var(--amber);
}

.message.is-owner {
  justify-self: start;
}

.message strong {
  display: block;
  margin-bottom: 3px;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.message p {
  margin: 0;
}

.message time {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.72rem;
}

.message.is-visitor time {
  color: rgba(21, 19, 15, 0.58);
}

.chat-form {
  display: grid;
  gap: 12px;
  padding: 16px;
  color: var(--field-ink);
  background: var(--field);
}

.chat-lead-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.chat-form label {
  display: grid;
  gap: 6px;
  font-weight: 900;
}

.chat-form input,
.chat-form textarea {
  width: 100%;
  padding: 11px 12px;
  border: 1px solid rgba(17, 19, 21, 0.18);
  border-radius: 8px;
  color: var(--field-ink);
  background: var(--white);
  resize: vertical;
}

.chat-note {
  min-height: 20px;
  margin: 0;
  color: var(--teal-dark);
  font-weight: 800;
}

.inbox-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.35fr) minmax(0, 0.65fr);
  min-height: 520px;
}

.thread-list {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 14px;
  border-right: 1px solid rgba(217, 170, 85, 0.16);
  background: #070807;
  overflow-y: auto;
}

.thread-button {
  width: 100%;
  padding: 12px;
  color: var(--ink);
  border: 1px solid rgba(217, 170, 85, 0.16);
  border-radius: 8px;
  background: var(--panel);
  text-align: left;
  cursor: pointer;
}

.thread-button.is-active,
.thread-button:hover,
.thread-button:focus-visible {
  outline: none;
  border-color: var(--amber);
  background: var(--panel-soft);
}

.thread-button strong,
.thread-button span {
  display: block;
}

.thread-button span {
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: 0.84rem;
}

.thread-detail {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-width: 0;
}

.thread-meta {
  padding: 14px 16px;
  color: var(--ink-soft);
  border-bottom: 1px solid rgba(217, 170, 85, 0.16);
  background: #0d0f0d;
}

.owner-log {
  height: auto;
  min-height: 260px;
}

@media (max-width: 980px) {
  .trust-strip,
  .benefit-grid,
  .process-list,
  .shoot-grid,
  .pay-section,
  .application {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hero {
    min-height: 86vh;
    background-position: 62% center;
  }

  .hero h1 {
    max-width: 640px;
  }
}

@media (max-width: 760px) {
  .site-header {
    width: calc(100% - 24px);
    margin-top: 12px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 76px;
    left: 12px;
    right: 12px;
    display: none;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 8px;
    color: var(--white);
    background: rgba(17, 19, 21, 0.94);
    box-shadow: var(--shadow);
  }

  body.nav-open .site-nav {
    display: grid;
  }

  .site-nav a {
    padding: 14px;
  }

  .site-nav .nav-cta {
    color: var(--white);
    background: var(--teal);
  }

  .hero {
    align-items: end;
    min-height: 84vh;
    padding: 106px 16px 42px;
    background-position: 58% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(17, 19, 21, 0.86), rgba(17, 19, 21, 0.46)),
      linear-gradient(0deg, rgba(17, 19, 21, 0.64), rgba(17, 19, 21, 0.04));
  }

  .hero h1 {
    font-size: clamp(2.35rem, 14vw, 4.1rem);
  }

  .button {
    width: 100%;
  }

  .trust-strip,
  .benefit-grid,
  .process-list,
  .shoot-grid,
  .pay-section,
  .application {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 64px 0;
  }

  .benefit-card,
  .shoot-grid article,
  .process-list li {
    min-height: auto;
  }

  .card-kicker {
    margin-bottom: 28px;
  }

  .application {
    width: calc(100% - 24px);
    margin-bottom: 52px;
    padding: 24px;
  }

  .apply-form {
    padding: 18px;
  }

  .site-footer {
    display: grid;
  }

  .footer-meta {
    justify-content: flex-start;
  }

  .inbox-panel {
    inset: 84px 12px 20px;
    width: auto;
  }

  .inbox-layout {
    grid-template-columns: 1fr;
    min-height: auto;
    max-height: calc(100vh - 124px);
    overflow-y: auto;
  }

  .thread-list {
    max-height: 180px;
    border-right: 0;
    border-bottom: 1px solid rgba(217, 170, 85, 0.16);
  }
}

@media (max-width: 430px) {
  .brand span:last-child {
    max-width: 190px;
    overflow-wrap: anywhere;
    line-height: 1.08;
  }

  .hero-proof span {
    width: 100%;
  }

  .chat-launcher {
    right: 12px;
    bottom: 12px;
  }

  .chat-panel {
    inset: auto 12px 78px 12px;
    width: auto;
  }

  .chat-lead-fields {
    grid-template-columns: 1fr;
  }

  .chat-log {
    height: 240px;
  }
}
