:root {
  color-scheme: dark;
  --ink: #f8f5ed;
  --muted: #c9c2b6;
  --soft: rgba(248, 245, 237, 0.72);
  --line: rgba(248, 245, 237, 0.16);
  --panel: rgba(9, 10, 14, 0.7);
  --panel-solid: #101116;
  --gold: #e7bc64;
  --rose: #f07d8e;
  --teal: #6ee7d8;
  --smoke: #05060a;
  --radius: 8px;
  --shadow: 0 26px 90px rgba(0, 0, 0, 0.5);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background: var(--smoke);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(110deg, rgba(4, 8, 16, 0.9), rgba(16, 8, 15, 0.62) 52%, rgba(3, 16, 17, 0.72)),
    radial-gradient(circle at 28% 18%, rgba(240, 125, 142, 0.16), transparent 34%),
    radial-gradient(circle at 82% 68%, rgba(110, 231, 216, 0.15), transparent 35%),
    #05060a;
}

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

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

#cinema-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
}

.texture {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.25;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 68px 68px, 68px 68px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0;
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(231, 188, 100, 0.58);
  border-radius: 50%;
  background: rgba(231, 188, 100, 0.1);
  color: var(--gold);
  font-weight: 900;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 0.98rem;
}

.brand small {
  color: var(--muted);
  font-size: 0.76rem;
}

.brand-name small {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
}

.nav {
  display: flex;
  gap: 8px;
  align-items: center;
  scrollbar-width: none;
}

.nav::-webkit-scrollbar {
  display: none;
}

.nav a {
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--soft);
  font-size: 0.88rem;
  padding: 8px 12px;
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.nav a:hover {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink);
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  display: grid;
  min-height: calc(100svh - 84px);
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
  gap: 42px;
  align-items: center;
  padding: 42px 0 76px;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 900px;
  margin-bottom: 18px;
  font-size: clamp(3rem, 9vw, 7.9rem);
  line-height: 0.88;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 span,
h1 small {
  display: block;
}

h1 small {
  margin-top: 16px;
  color: var(--gold);
  font-size: clamp(1.4rem, 3.8vw, 3.2rem);
  line-height: 1;
  text-transform: none;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4.6vw, 4.2rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
  line-height: 1.15;
}

.lead {
  max-width: 710px;
  color: #fff8e8;
  font-size: clamp(1.16rem, 2.1vw, 1.55rem);
}

.hero-copy p:not(.eyebrow):not(.lead),
.intro-band p,
.deliverable-copy p,
.contact p {
  color: var(--soft);
  font-size: 1rem;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  font-weight: 800;
  padding: 13px 18px;
  text-align: center;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

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

.button.primary {
  background: linear-gradient(135deg, var(--gold), #fff0b1);
  color: #15100a;
  box-shadow: 0 18px 60px rgba(231, 188, 100, 0.24);
}

.button.ghost {
  border: 1px solid rgba(248, 245, 237, 0.32);
  background: rgba(248, 245, 237, 0.08);
  color: var(--ink);
}

.video-panel,
.portrait-panel {
  align-self: center;
}

.portrait-panel {
  overflow: hidden;
  border: 1px solid rgba(248, 245, 237, 0.22);
  border-radius: var(--radius);
  background: rgba(4, 5, 8, 0.78);
  box-shadow: var(--shadow);
}

.portrait-panel img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 58% center;
  filter: contrast(1.06) saturate(1.02);
}

.portrait-caption {
  display: grid;
  gap: 4px;
  border-top: 1px solid var(--line);
  padding: 16px;
}

.portrait-caption strong {
  color: var(--gold);
}

.portrait-caption span {
  color: var(--muted);
  font-size: 0.94rem;
}

.reel-window {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(248, 245, 237, 0.22);
  border-radius: var(--radius);
  background: #151515;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 5;
}

.reel-window::before,
.reel-window::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0 auto 0 0;
  width: 24px;
  background:
    repeating-linear-gradient(to bottom, rgba(0, 0, 0, 0.85) 0 14px, rgba(248, 245, 237, 0.58) 14px 22px, rgba(0, 0, 0, 0.85) 22px 36px);
  mix-blend-mode: screen;
  opacity: 0.58;
}

.reel-window::after {
  right: 0;
  left: auto;
}

.reel-window img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.06) saturate(1.04);
  transform: scale(1.02);
}

.play-button {
  position: absolute;
  z-index: 3;
  right: 24px;
  bottom: 24px;
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.46);
  backdrop-filter: blur(10px);
}

.play-button span {
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 18px solid white;
}

.video-note {
  display: grid;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-top: 12px;
  padding: 16px;
  background: rgba(4, 5, 8, 0.7);
}

.video-note span {
  color: var(--muted);
  font-size: 0.94rem;
}

.intro-band,
.deliverables,
.contact {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: start;
  border-top: 1px solid var(--line);
  padding: 82px 0;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 30px;
}

.process,
.services,
.testimonials,
.videos {
  padding: 78px 0;
}

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

.video-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.main-video {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
}

.embed-frame {
  position: relative;
  background: #090a0e;
  aspect-ratio: 16 / 9;
}

.portrait-video {
  aspect-ratio: 9 / 16;
  max-height: 560px;
}

.embed-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-card > div:not(.embed-frame) {
  padding: 22px;
}

.video-card p:not(.section-kicker) {
  color: var(--muted);
}

.video-card a {
  color: #fff1c3;
  font-weight: 800;
}

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

.step {
  min-height: 280px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(248, 245, 237, 0.09), rgba(248, 245, 237, 0.04));
  padding: 24px;
}

.step span {
  display: inline-block;
  margin-bottom: 44px;
  color: var(--teal);
  font-weight: 900;
}

.step p,
.service-card p,
blockquote p,
.deliverable-list {
  color: var(--muted);
}

.deliverable-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.deliverable-list li {
  border-left: 3px solid var(--gold);
  padding: 7px 0 7px 14px;
}

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

.service-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  min-height: 100%;
}

.service-card img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.service-card div {
  padding: 18px;
}

.service-card p {
  min-height: 52px;
  margin-bottom: 18px;
  font-size: 0.95rem;
}

.service-card a {
  display: inline-flex;
  align-items: center;
  color: #fff1c3;
  font-weight: 800;
}

.service-card a::after {
  content: ">";
  margin-left: 8px;
  color: var(--teal);
}

.featured-service {
  border-color: rgba(231, 188, 100, 0.5);
  box-shadow: 0 24px 70px rgba(231, 188, 100, 0.12);
}

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

blockquote {
  min-height: 220px;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(248, 245, 237, 0.07);
  padding: 24px;
}

.manifesto {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 78px 0;
}

.manifesto p {
  max-width: 960px;
  color: #fff7e6;
  font-size: clamp(1.22rem, 2.5vw, 2rem);
  line-height: 1.4;
}

.manifesto p:not(:last-child) {
  margin-bottom: 24px;
}

blockquote p {
  font-size: 1.02rem;
}

cite {
  color: var(--gold);
  font-style: normal;
  font-weight: 800;
}

.contact {
  border-bottom: 1px solid var(--line);
}

.contact .button {
  width: 100%;
}

.contact-actions {
  align-content: start;
  justify-content: flex-start;
  margin-top: 0;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.social-links a {
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--soft);
  padding: 8px 12px;
}

.social-links a:hover {
  color: var(--ink);
  border-color: rgba(248, 245, 237, 0.34);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 30px 0 42px;
  color: rgba(248, 245, 237, 0.58);
  font-size: 0.9rem;
}

@media (max-width: 920px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero,
  .intro-band,
  .deliverables,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 30px;
  }

  .video-panel {
    max-width: 520px;
  }

  .steps,
  .service-grid,
  .quote-grid,
  .video-grid {
    grid-template-columns: 1fr 1fr;
  }

  .main-video {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .section,
  .site-header,
  .site-footer {
    width: min(100% - 24px, 1180px);
  }

  .brand small {
    display: none;
  }

  .hero {
    gap: 28px;
    padding-bottom: 52px;
  }

  h1 {
    font-size: clamp(2.8rem, 14vw, 4.6rem);
  }

  h1 small {
    font-size: clamp(1.2rem, 7vw, 2rem);
  }

  .hero-actions,
  .contact-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .intro-band,
  .deliverables,
  .process,
  .services,
  .testimonials,
  .videos,
  .manifesto,
  .contact {
    padding: 54px 0;
  }

  .steps,
  .service-grid,
  .quote-grid,
  .video-grid {
    grid-template-columns: 1fr;
  }

  .portrait-panel img {
    aspect-ratio: 16 / 11;
    object-position: 58% center;
  }

  .portrait-video {
    max-height: none;
  }

  .step {
    min-height: 0;
  }

  .step span {
    margin-bottom: 28px;
  }

  .service-card p {
    min-height: 0;
  }
}

@media print {
  body {
    background: white;
    color: #111;
  }

  body::before,
  #cinema-bg,
  .texture,
  .site-header,
  .embed-frame iframe {
    display: none !important;
  }

  .section,
  .site-footer {
    width: 100%;
    max-width: none;
  }

  .hero,
  .intro-band,
  .deliverables,
  .contact,
  .main-video,
  .video-grid,
  .steps,
  .quote-grid,
  .service-grid {
    display: block;
  }

  .hero,
  .videos,
  .intro-band,
  .process,
  .deliverables,
  .testimonials,
  .manifesto,
  .contact,
  .services {
    break-inside: avoid;
    padding: 22px 0;
  }

  h1,
  h2,
  h3,
  .lead,
  .hero-copy p:not(.eyebrow):not(.lead),
  .intro-band p,
  .deliverable-copy p,
  .contact p,
  .step p,
  .service-card p,
  blockquote p,
  .manifesto p,
  .deliverable-list {
    color: #111;
  }

  h1 {
    font-size: 52px;
  }

  h2 {
    font-size: 32px;
  }

  .button,
  .social-links a,
  .service-card a,
  .video-card a {
    color: #111;
    text-decoration: underline;
  }

  .portrait-panel,
  .video-card,
  .step,
  .service-card,
  blockquote {
    box-shadow: none;
    border-color: #bbb;
    margin-bottom: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .button,
  .nav a {
    transition: none;
  }
}

/* Final responsive and public-share polish */
body::before {
  animation: none;
  transform: scale(calc(1 + var(--scroll-depth, 0) * 0.035))
    translate3d(calc(var(--scroll-depth, 0) * -2.2vw), calc(var(--scroll-depth, 0) * 1.4vh), 0);
  transition: transform 90ms linear, filter 90ms linear;
}

#cinema-bg {
  display: block;
  pointer-events: none;
}

.texture {
  animation: none;
  background-position:
    calc(var(--scroll-depth, 0) * 160px) calc(var(--scroll-depth, 0) * 260px),
    calc(var(--scroll-depth, 0) * -260px) calc(var(--scroll-depth, 0) * 140px);
}

.hero {
  grid-template-columns: minmax(0, 0.98fr) minmax(300px, 420px);
  gap: clamp(44px, 7vw, 96px);
  overflow: hidden;
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 650px;
  min-width: 0;
}

h1 {
  max-width: 650px;
  font-size: clamp(3rem, 5.9vw, 5.8rem);
  overflow-wrap: normal;
}

.portrait-panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 420px;
  justify-self: end;
}

.portrait-panel img {
  aspect-ratio: 4 / 4.6;
}

.instagram-frame {
  aspect-ratio: 9 / 16;
  min-height: 540px;
}

.instagram-frame iframe {
  background: #fff;
}

.manifesto p {
  font-family: Georgia, "Palatino Linotype", "Book Antiqua", serif;
  font-size: clamp(1.35rem, 2.7vw, 2.15rem);
  font-style: italic;
  line-height: 1.48;
}

.site-footer > div {
  display: grid;
  gap: 6px;
}

.site-footer strong {
  color: var(--ink);
}

.site-footer span {
  color: rgba(248, 245, 237, 0.58);
}

.footer-social {
  display: flex !important;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.footer-social a {
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--soft);
  padding: 8px 12px;
}

.footer-social a:hover {
  border-color: rgba(248, 245, 237, 0.34);
  color: var(--ink);
}

.hero-copy::before {
  background: linear-gradient(90deg, rgba(5, 6, 10, 0.84), rgba(5, 6, 10, 0.48) 72%, rgba(5, 6, 10, 0));
  border-radius: var(--radius);
  content: "";
  inset: -28px -30px -24px -24px;
  pointer-events: none;
  position: absolute;
  z-index: -1;
}

#cinema-bg {
  filter: saturate(0.78) contrast(0.92);
  opacity: 0.28;
}

.texture {
  opacity: 0.12;
}

.section-heading h2,
.intro-band h2,
.deliverable-copy h2,
.contact h2 {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.section-heading h2.title-visible,
.intro-band h2.title-visible,
.deliverable-copy h2.title-visible,
.contact h2.title-visible {
  opacity: 1;
  transform: translateY(0);
}

.section-heading h2::after,
.intro-band h2::after,
.deliverable-copy h2::after,
.contact h2::after {
  background: linear-gradient(90deg, var(--gold), rgba(240, 125, 142, 0.85));
  border-radius: 999px;
  content: "";
  display: block;
  height: 2px;
  margin-top: 14px;
  max-width: 120px;
  opacity: 0.7;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 650ms ease 140ms;
}

.section-heading h2.title-visible::after,
.intro-band h2.title-visible::after,
.deliverable-copy h2.title-visible::after,
.contact h2.title-visible::after {
  transform: scaleX(1);
}

.limited-spots {
  align-items: center;
  background: #b40016;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(180, 0, 22, 0.24);
  color: #fff;
  display: inline-flex;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  margin: 2px 0 14px;
  padding: 8px 13px;
}

@keyframes backgroundDrift {
  from {
    transform: scale(1) translate3d(0, 0, 0);
    filter: saturate(1);
  }

  to {
    transform: scale(1.04) translate3d(-1.5%, 1%, 0);
    filter: saturate(1.12);
  }
}

@keyframes textureDrift {
  from {
    background-position: 0 0, 0 0;
  }

  to {
    background-position: 68px 136px, -136px 68px;
  }
}

@media (max-width: 1100px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 350px);
    gap: 36px;
  }

  h1 {
    font-size: clamp(3rem, 5.5vw, 4.85rem);
  }
}

@media (max-width: 920px) {
  .hero {
    grid-template-columns: 1fr;
    overflow: visible;
  }

  .portrait-panel {
    justify-self: start;
    max-width: 520px;
  }
}

@media (max-width: 640px) {
  .hero-copy::before {
    background: linear-gradient(180deg, rgba(5, 6, 10, 0.88), rgba(5, 6, 10, 0.58) 82%, rgba(5, 6, 10, 0));
    inset: -18px -12px -16px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.75rem, 13.2vw, 4.45rem);
  }

  .portrait-panel img {
    aspect-ratio: 16 / 11;
  }

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

@media print {
  * {
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  html,
  body {
    width: 390px;
    min-width: 390px;
    background: var(--smoke) !important;
    color: var(--ink) !important;
  }

  body::before,
  .texture {
    display: block !important;
  }

  #cinema-bg,
  .site-header,
  .embed-frame iframe {
    display: none !important;
  }

  .section,
  .site-footer {
    width: calc(100% - 24px) !important;
    max-width: none !important;
  }

  .hero,
  .intro-band,
  .deliverables,
  .contact,
  .main-video,
  .video-grid,
  .steps,
  .quote-grid,
  .service-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
  }

  .hero {
    min-height: auto !important;
    gap: 28px !important;
  }

  h1 {
    max-width: 100% !important;
    color: var(--ink) !important;
    font-size: 48px !important;
  }

  h1 small {
    color: var(--gold) !important;
    font-size: 24px !important;
  }

  h2,
  h3,
  .lead,
  .hero-copy p:not(.eyebrow):not(.lead),
  .intro-band p,
  .deliverable-copy p,
  .contact p,
  .step p,
  .service-card p,
  blockquote p,
  .manifesto p,
  .deliverable-list {
    color: var(--ink) !important;
  }

  .portrait-panel img {
    aspect-ratio: 16 / 11 !important;
  }

  .portrait-panel,
  .video-card,
  .step,
  .service-card,
  blockquote {
    break-inside: avoid;
  }

  .site-footer,
  .footer-social {
    justify-content: flex-start !important;
  }
}
