/* Bird's Eye Blues Productions — services site
   Light theme: white + brand blue #1FA9E2 sampled from the logo
   Type: Jost (title card display), Source Serif 4 (body) */

:root {
  --blue: #1fa9e2;
  --blue-deep: #0f7fb0;   /* accessible on white */
  --blue-dark: #0d6a94;
  --blue-ink: #0a4a68;
  --tint: #eef8fd;
  --tint-2: #ddf0fa;
  --line: #cfe6f2;
  --text: #1e2c33;
  --text-soft: #56707d;
  --radius: 8px;
  --measure: 62ch;
}

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

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

body {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 1.075rem;
  line-height: 1.65;
  color: var(--text);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--blue-deep); }
a:focus-visible, button:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
}

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

/* ---------- header ---------- */

.site-header {
  background: #fff;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 10;
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.logo-link { display: inline-flex; align-items: center; text-decoration: none; }
.logo-link img { height: 40px; width: auto; }
.site-nav { display: flex; gap: 26px; flex-wrap: wrap; }
.site-nav a {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-soft);
  text-decoration: none;
  padding: 4px 0;
}
.site-nav a:hover { color: var(--blue-deep); }
.site-nav a[aria-current="page"] {
  color: var(--blue-deep);
  border-bottom: 2px solid var(--blue);
}
@media (max-width: 560px) {
  .logo-link img { height: 30px; }
  .site-nav { gap: 16px; }
}

/* ---------- title card hero ---------- */

.titlecard {
  background: linear-gradient(180deg, var(--tint) 0%, #fff 100%);
  color: var(--text);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.titlecard::before, .titlecard::after {
  content: "";
  display: block;
  height: 6px;
  background: var(--blue); /* brand bars, the letterbox nod */
}
.titlecard::after { background: transparent; }
.titlecard .inner {
  max-width: 880px;
  margin: 0 auto;
  padding: 92px 24px 96px;
  animation: fadeUp 0.9s ease both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}
.eyebrow {
  font-family: "Jost", sans-serif;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--blue-deep);
  margin-bottom: 26px;
}
.titlecard h1 {
  font-family: "Jost", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: clamp(2.1rem, 5.4vw, 3.8rem);
  line-height: 1.08;
  color: var(--text);
}
.titlecard .sub {
  max-width: 56ch;
  margin: 26px auto 0;
  font-size: 1.15rem;
  color: var(--text-soft);
}
.hero-ctas { margin-top: 38px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.btn {
  display: inline-block;
  font-family: "Jost", sans-serif;
  font-weight: 600;
  font-size: 0.86rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 26px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
}
.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: var(--blue-deep); }
.btn-ghost { border-color: var(--blue); color: var(--blue-deep); background: #fff; }
.btn-ghost:hover { background: var(--tint); }
.btn-dark { background: var(--blue-ink); color: #fff; }
.btn-dark:hover { background: var(--blue-dark); }

/* ---------- credits strip ---------- */

.credits-strip {
  background: var(--blue);
  color: #eaf7fd;
}
.credits-strip .wrap {
  display: flex;
  justify-content: center;
  gap: 12px 44px;
  flex-wrap: wrap;
  padding-top: 20px;
  padding-bottom: 20px;
  font-family: "Jost", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: center;
}
.credits-strip strong { color: #fff; font-weight: 700; }

/* ---------- sections ---------- */

.section { padding: 84px 0; }
.section.alt { background: var(--tint); }
.section-label {
  font-family: "Jost", sans-serif;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--blue-deep);
  margin-bottom: 14px;
}
.section h2 {
  font-family: "Jost", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  color: var(--text);
  margin-bottom: 22px;
}
.section p.lede { max-width: var(--measure); font-size: 1.12rem; }
.section p + p { margin-top: 1em; }
.prose { max-width: var(--measure); }
.prose p + p { margin-top: 1em; }

/* ---------- package cards ---------- */

.packages {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
  margin-top: 44px;
}
.package {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px 34px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 10px rgba(31, 169, 226, 0.06);
}
.package.featured { border: 2px solid var(--blue); position: relative; }
.package.featured .flag {
  position: absolute;
  top: -12px;
  left: 24px;
  background: var(--blue);
  color: #fff;
  font-family: "Jost", sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
}
.package .tier {
  font-family: "Jost", sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-soft);
}
.package h3 {
  font-family: "Jost", sans-serif;
  font-weight: 700;
  font-size: 1.35rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--text);
  margin: 8px 0 2px;
}
.package .price {
  font-family: "Jost", sans-serif;
  font-weight: 700;
  font-size: 1.9rem;
  color: var(--blue-deep);
  margin-bottom: 14px;
}
.package .price small {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-soft);
  letter-spacing: 0.06em;
}
.package .who {
  font-style: italic;
  color: var(--text-soft);
  margin-bottom: 18px;
  font-size: 0.98rem;
}

/* crew credit style deliverables list: label, dot leader, value */
.credit-list { list-style: none; margin-top: 4px; }
.credit-list li {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 7px 0;
  font-size: 0.95rem;
}
.credit-list li + li { border-top: 1px dotted var(--line); }
.credit-list .role {
  font-family: "Jost", sans-serif;
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-deep);
  white-space: nowrap;
}
.credit-list .leader {
  flex: 1;
  border-bottom: 1px dotted var(--line);
  transform: translateY(-4px);
}
.credit-list .item { text-align: right; }

.package .btn { margin-top: 24px; align-self: flex-start; }
.package .turnaround {
  margin-top: 16px;
  font-family: "Jost", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-soft);
}

/* ---------- how it works ---------- */

.steps { margin-top: 36px; display: grid; gap: 0; max-width: 720px; }
.step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 20px;
  padding: 26px 0;
}
.step + .step { border-top: 1px solid var(--line); }
.step .num {
  font-family: "Jost", sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--blue);
}
.step h3 {
  font-family: "Jost", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 6px;
}
.step p { color: var(--text); font-size: 1rem; max-width: 54ch; }

/* ---------- portfolio ---------- */

.case {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: start;
  margin-top: 44px;
}
.case + .case { margin-top: 72px; padding-top: 72px; border-top: 1px solid var(--line); }
.case .media {
  background: var(--tint-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  aspect-ratio: 16 / 10;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-deep);
  font-family: "Jost", sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: center;
  padding: 20px;
  overflow: hidden;
}
.case .media img { width: 100%; height: 100%; object-fit: cover; }
.case h3 {
  font-family: "Jost", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 1.5rem;
  color: var(--text);
}
.case .kicker {
  font-family: "Jost", sans-serif;
  font-weight: 600;
  font-size: 0.74rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--blue-deep);
  margin-bottom: 10px;
}
.case p { margin-top: 14px; font-size: 1rem; }
.case .facts { list-style: none; margin-top: 18px; }
.case .facts li {
  padding: 8px 0;
  border-top: 1px dotted var(--line);
  font-size: 0.95rem;
}
.case .facts li strong {
  font-family: "Jost", sans-serif;
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-deep);
  display: inline-block;
  min-width: 150px;
}
@media (max-width: 760px) {
  .case { grid-template-columns: 1fr; gap: 24px; }
}

/* select credits roll */
.roll { margin-top: 36px; max-width: 640px; }
.roll li {
  list-style: none;
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 10px 0;
}
.roll li + li { border-top: 1px dotted var(--line); }
.roll .role {
  font-family: "Jost", sans-serif;
  font-weight: 600;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue-deep);
  white-space: nowrap;
}
.roll .leader { flex: 1; border-bottom: 1px dotted var(--line); transform: translateY(-4px); }

/* ---------- FAQ ---------- */

.faq { max-width: 720px; margin-top: 30px; }
.faq details { border-top: 1px solid var(--line); padding: 18px 0; }
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer;
  font-family: "Jost", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.02em;
  color: var(--text);
}
.faq summary:hover { color: var(--blue-deep); }
.faq details p { margin-top: 12px; max-width: 60ch; }

/* ---------- contact ---------- */

.contact {
  background: linear-gradient(160deg, var(--blue-deep) 0%, var(--blue-ink) 100%);
  color: #eaf7fd;
}
.contact .section-label { color: #9adcf7; }
.contact h2 { color: #fff; }
.contact p.lede { color: #c9ecfa; }
.contact form { max-width: 640px; margin-top: 36px; display: grid; gap: 18px; }
.field label {
  display: block;
  font-family: "Jost", sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #b6e5f9;
  margin-bottom: 7px;
}
.field input, .field select, .field textarea {
  width: 100%;
  background: #fff;
  border: 1px solid #fff;
  border-radius: var(--radius);
  color: var(--text);
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 1rem;
  padding: 12px 14px;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 3px solid var(--blue);
  outline-offset: 1px;
}
.contact .btn-primary { background: #fff; color: var(--blue-ink); }
.contact .btn-primary:hover { background: var(--tint-2); }
.contact .btn { justify-self: start; }
.contact .btn-ghost { border-color: #9adcf7; color: #fff; background: transparent; }
.contact .btn-ghost:hover { background: rgba(255,255,255,0.12); }
.contact .direct { margin-top: 26px; color: #c9ecfa; font-size: 0.98rem; }
.contact .direct a { color: #fff; }

/* ---------- footer ---------- */

.site-footer {
  background: #fff;
  border-top: 1px solid var(--line);
  color: var(--text-soft);
  font-family: "Jost", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.site-footer .wrap {
  padding-top: 26px;
  padding-bottom: 26px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.site-footer a { color: var(--text-soft); text-decoration: none; }
.site-footer a:hover { color: var(--blue-deep); }

/* portrait poster variant for case study media */
.case .media.poster {
  aspect-ratio: auto;
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
  background: var(--tint-2);
}
.case .media.poster img { width: 100%; height: auto; object-fit: contain; }
