:root {
  --ink: #17201d;
  --muted: #5d6761;
  --paper: #fbfaf6;
  --surface: #ffffff;
  --line: #d9ded7;
  --carbon: #101418;
  --cream: #f7efe3;
  --lime: #c6ff3d;
  --teal: #0f766e;
  --teal-dark: #115e59;
  --coral: #ff5a3d;
  --amber: #d49532;
  --sage: #dfe8df;
  --shadow: 0 18px 44px rgba(23, 32, 29, 0.14);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
}

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 54px);
  color: #fff;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.46), rgba(0, 0, 0, 0));
}

.brand,
.nav-links,
.hero-actions,
.field-row,
.switch-row,
.site-footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(198, 255, 61, 0.72);
  border-radius: 8px;
  background: var(--carbon);
  color: var(--cream);
  box-shadow: inset -9px -9px 0 rgba(255, 90, 61, 0.24);
  font-size: 11px;
  letter-spacing: 0;
}

.nav-links {
  gap: 22px;
  font-size: 14px;
}

.nav-links a {
  text-decoration: none;
  opacity: 0.86;
}

.nav-links a:hover {
  opacity: 1;
}

.hero {
  position: relative;
  min-height: 82vh;
  display: grid;
  align-items: end;
  padding: 120px clamp(22px, 6vw, 84px) 82px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(8, 13, 12, 0.88), rgba(8, 13, 12, 0.44), rgba(8, 13, 12, 0.16)),
    url("/assets/hero-cinematography.jpg") center/cover;
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--coral);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffb199;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  max-width: 720px;
  font-size: clamp(54px, 9vw, 118px);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(30px, 4.2vw, 56px);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.hero-lede {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 19px;
  line-height: 1.55;
}

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

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

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: var(--coral);
  color: #fff;
}

.button.primary:hover {
  background: #c94d37;
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.52);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.button.secondary.dark {
  border-color: var(--line);
  color: var(--ink);
  background: #fff;
}

.button.wide {
  width: 100%;
}

.intake-band,
.proof-band,
.pricing-band,
.terms-band {
  padding: 74px clamp(18px, 5vw, 72px);
}

.intake-band {
  background: var(--paper);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.section-heading p:not(.eyebrow) {
  max-width: 680px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.section-heading.compact {
  margin-bottom: 26px;
}

.intake-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: 28px;
  align-items: start;
}

.intake-form,
.quote-panel,
.price-card,
.reel-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.intake-form {
  display: grid;
  gap: 20px;
  padding: clamp(18px, 3vw, 30px);
}

label,
fieldset {
  min-width: 0;
}

label span,
legend {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

textarea {
  resize: vertical;
  min-height: 140px;
}

.bot-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

input:focus,
textarea:focus,
select:focus {
  outline: 3px solid rgba(15, 118, 110, 0.18);
  border-color: var(--teal);
}

.field-row {
  gap: 14px;
  align-items: flex-start;
}

.field-row > label {
  flex: 1;
}

.field-row.three {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.choice {
  position: relative;
  display: block;
  min-height: 112px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
}

.choice.selected {
  border-color: var(--teal);
  background: #eff8f6;
}

.choice input {
  position: absolute;
  top: 14px;
  right: 14px;
  width: auto;
}

.choice strong {
  display: block;
  padding-right: 24px;
}

.choice small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.4;
}

.switch-row {
  gap: 12px;
  flex-wrap: wrap;
}

.switch-option,
.check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.switch-option input,
.check input {
  width: auto;
  margin-top: 3px;
}

.switch-option span,
.check span {
  margin: 0;
  color: inherit;
  font-weight: 600;
}

.form-note {
  margin: -6px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.quote-panel {
  position: sticky;
  top: 88px;
  padding: 26px;
  box-shadow: var(--shadow);
}

.quote-price {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.quote-price span {
  display: block;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 900;
  letter-spacing: 0;
}

.quote-price small {
  color: var(--muted);
}

.quote-list {
  display: grid;
  gap: 14px;
  margin: 22px 0 0;
}

.quote-list div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #edf0eb;
}

.quote-list dt {
  color: var(--muted);
}

.quote-list dd {
  margin: 0;
  font-weight: 800;
  text-align: right;
}

.status {
  margin-top: 20px;
  border-radius: 8px;
  padding: 0;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.5;
}

.status:not(:empty) {
  padding: 14px;
  background: var(--sage);
}

.status.error:not(:empty) {
  background: #ffe8e0;
}

.proof-band {
  background: #eef4ef;
}

.reel-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.reel-card {
  overflow: hidden;
}

.reel-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.reel-card h3,
.reel-card p,
.price-card h3,
.price-card p {
  margin-left: 18px;
  margin-right: 18px;
}

.reel-card h3,
.price-card h3 {
  margin-top: 18px;
}

.reel-card p,
.price-card p:not(.price) {
  color: var(--muted);
  line-height: 1.55;
}

.pricing-band {
  background: var(--surface);
}

.price-card {
  min-height: 210px;
  padding-bottom: 18px;
}

.price-card.featured {
  border-color: var(--teal);
  box-shadow: var(--shadow);
}

.price {
  color: var(--teal-dark);
  font-size: 32px;
  font-weight: 900;
}

.terms-band {
  background: var(--ink);
  color: #fff;
}

.terms-band .section-heading p,
.terms-list p {
  color: rgba(255, 255, 255, 0.78);
}

.terms-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.terms-list p {
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 16px;
  line-height: 1.6;
}

.site-footer {
  justify-content: space-between;
  gap: 20px;
  padding: 24px clamp(18px, 5vw, 72px);
  color: var(--muted);
  background: #fff;
}

.site-footer a {
  text-decoration: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 22px 0;
}

.stats-grid article,
.source-list {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 14px;
}

.stats-grid strong {
  display: block;
  font-size: 30px;
}

.stats-grid span,
.source-list span {
  color: var(--muted);
}

.source-list {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

@media (max-width: 920px) {
  .site-header {
    position: absolute;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 80vh;
    padding-top: 96px;
  }

  .intake-grid,
  .reel-grid,
  .pricing-grid,
  .terms-list {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .quote-panel {
    position: static;
  }

  .choice-grid,
  .field-row.three,
  .field-row.two {
    grid-template-columns: 1fr;
    display: grid;
  }
}

@media (max-width: 560px) {
  .hero {
    min-height: 82vh;
    padding-bottom: 52px;
  }

  .hero-lede {
    font-size: 16px;
  }

  .button {
    width: 100%;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
