:root {
  --ink: #071715;
  --ink-soft: #0d2421;
  --cream: #f3eee5;
  --paper: #fffdf8;
  --coral: #e47c68;
  --teal: #4faaa0;
  --mist: #b9d8d4;
  --muted: #697b77;
  --line: rgba(7, 23, 21, 0.14);
  --white-line: rgba(255, 255, 255, 0.18);
  --shadow: 0 28px 80px rgba(2, 14, 12, 0.22);
  --radius: 26px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "DM Sans", system-ui, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.modal-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.skip-link {
  position: fixed;
  left: 18px;
  top: -80px;
  z-index: 1000;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
  transition: top .2s ease;
}
.skip-link:focus { top: 18px; }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  padding: 0 5vw;
  color: white;
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, min-height .25s ease;
}
.site-header.scrolled {
  min-height: 68px;
  background: rgba(7, 23, 21, .88);
  border-color: rgba(255,255,255,.1);
  backdrop-filter: blur(18px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -.02em;
}
.brand-logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
  flex: 0 0 auto;
}
.nav { display: flex; align-items: center; gap: 30px; font-weight: 600; }
.nav a { opacity: .82; transition: opacity .2s ease, color .2s ease; }
.nav a:hover, .nav a:focus-visible { opacity: 1; color: var(--coral); }
.nav-cta {
  padding: 11px 18px;
  border: 1px solid var(--white-line);
  border-radius: 999px;
}
.menu-toggle { display: none; }

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: white;
  background: var(--ink);
}
.hero-backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7,23,21,.95) 0%, rgba(7,23,21,.78) 45%, rgba(7,23,21,.22) 100%),
    linear-gradient(0deg, rgba(7,23,21,.8), transparent 58%),
    url("assets/pier-hero.jpeg") center 56%/cover no-repeat;
  transform: scale(1.03);
}
.hero-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 22%, rgba(228,124,104,.26), transparent 28%),
    radial-gradient(circle at 70% 80%, rgba(79,170,160,.2), transparent 34%);
}
.hero-grain {
  position: absolute;
  inset: 0;
  opacity: .13;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.6'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1180px, 90vw);
  margin: 0 auto;
  padding: 150px 0 112px;
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--coral);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
h1, h2, h3 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  line-height: 1.02;
  letter-spacing: -.055em;
}
h1 { max-width: 920px; font-size: clamp(4rem, 9.4vw, 9rem); font-weight: 700; }
h2 { font-size: clamp(2.6rem, 5.3vw, 5.4rem); font-weight: 700; }
h3 { font-size: clamp(1.7rem, 2.4vw, 2.55rem); font-weight: 700; }
.hero-copy { max-width: 650px; margin: 30px 0 0; color: rgba(255,255,255,.76); font-size: clamp(1.05rem, 1.6vw, 1.3rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 23px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover, .button:focus-visible { transform: translateY(-2px); }
.button-primary { background: var(--coral); color: var(--ink); }
.button-ghost { color: white; border-color: var(--white-line); background: rgba(255,255,255,.06); backdrop-filter: blur(12px); }
.button-light { color: var(--ink); background: var(--paper); }
.button-outline-light { color: white; border-color: var(--white-line); }
.scroll-cue {
  position: absolute;
  right: 5vw;
  bottom: 42px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255,255,255,.65);
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  transform: rotate(90deg) translateX(100%);
  transform-origin: right bottom;
}
.scroll-line { width: 70px; height: 1px; background: currentColor; }

.section { width: min(1180px, 90vw); margin: 0 auto; padding: 128px 0; }
.section-intro {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 56px;
}
.section-intro > p { margin: 0; color: var(--muted); font-size: 1.08rem; }
.production-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; }
.production-card-featured { grid-column: 1 / -1; }
.production-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 14px 50px rgba(7,23,21,.08);
}
.production-card-featured { display: grid; grid-template-columns: 1.25fr .75fr; }
.production-media {
  position: relative;
  min-height: 390px;
  width: 100%;
  padding: 0;
  overflow: hidden;
  border: 0;
  cursor: pointer;
  background: var(--ink-soft);
}
.production-card:not(.production-card-featured) .production-media { min-height: 330px; }
.production-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.7,.2,1); }
.production-card:hover .production-media img { transform: scale(1.035); }
.media-overlay { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(7,23,21,.72), transparent 65%); }
.play-button {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 50%;
  color: white;
  background: rgba(7,23,21,.42);
  backdrop-filter: blur(12px);
  transform: translate(-50%, -50%);
  transition: transform .2s ease, background .2s ease;
}
.production-media:hover .play-button { transform: translate(-50%, -50%) scale(1.08); background: var(--coral); color: var(--ink); }
.media-label, .coming-label {
  position: absolute;
  left: 24px;
  bottom: 22px;
  color: white;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.production-body { padding: 34px; }
.production-card-featured .production-body { display: flex; flex-direction: column; justify-content: center; }
.production-meta { display: flex; justify-content: space-between; gap: 20px; margin-bottom: 28px; color: var(--muted); font-size: .75rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.production-body p { margin: 22px 0 0; color: var(--muted); }
.text-link {
  width: fit-content;
  margin-top: 26px;
  padding: 0 0 5px;
  border: 0;
  border-bottom: 1px solid currentColor;
  color: var(--ink);
  background: transparent;
  font-weight: 800;
  cursor: pointer;
}
.muted-link { color: var(--muted); cursor: default; }
.coastal-media {
  background:
    linear-gradient(0deg, rgba(7,23,21,.66), rgba(7,23,21,.12)),
    radial-gradient(circle at 74% 24%, rgba(255,235,182,.96) 0 7%, transparent 8%),
    linear-gradient(165deg, #6eaab1 0 46%, #d8c58e 47% 58%, #477b75 59% 100%);
}
.coastal-media::after {
  content: "";
  position: absolute;
  inset: 42% -8% -20% 15%;
  border-radius: 50% 50% 0 0;
  background: repeating-radial-gradient(ellipse at center, rgba(255,255,255,.3) 0 2px, transparent 3px 13px);
  transform: rotate(-7deg);
}
.estate-media {
  background:
    linear-gradient(0deg, rgba(7,23,21,.78), rgba(7,23,21,.14)),
    linear-gradient(138deg, #b7c8c4 0 45%, #d4c6aa 46% 100%);
}
.estate-media::before {
  content: "";
  position: absolute;
  inset: 32% 14% 0;
  border-radius: 8px 8px 0 0;
  background:
    linear-gradient(90deg, transparent 0 12%, rgba(255,255,255,.78) 12% 30%, transparent 30% 45%, rgba(255,255,255,.72) 45% 68%, transparent 68%),
    #263a36;
  box-shadow: -70px 48px 0 -20px #1c2f2b;
}
.estate-media::after {
  content: "";
  position: absolute;
  left: 7%; right: 7%; bottom: 0; height: 20%;
  background: #24413b;
  clip-path: polygon(0 58%, 20% 20%, 35% 45%, 55% 0, 72% 50%, 100% 25%, 100% 100%, 0 100%);
}

.purpose { padding: 150px 5vw; color: white; background: var(--ink); }
.purpose-content { width: min(1040px, 100%); margin: 0 auto; }
.purpose h2 em { color: var(--coral); font-style: normal; }
.purpose-content > p:last-child { max-width: 760px; margin: 36px 0 0 auto; color: rgba(255,255,255,.68); font-size: 1.12rem; }

.about { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; align-items: center; }
.about-visual { position: relative; }
.about-frame {
  min-height: 560px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 220px 220px 24px 24px;
  color: rgba(255,255,255,.65);
  text-align: center;
  background:
    radial-gradient(circle at 70% 24%, rgba(228,124,104,.7), transparent 24%),
    linear-gradient(150deg, #164039, #071715);
  box-shadow: var(--shadow);
}
.about-frame::before {
  content: "";
  width: 52%;
  aspect-ratio: 1;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  position: absolute;
}
.about-visual > p { position: absolute; right: -32px; bottom: 38px; margin: 0; color: var(--coral); font-family: "Manrope", sans-serif; font-size: 1.15rem; font-weight: 800; line-height: 1.2; }
.about-copy p:not(.eyebrow) { margin: 22px 0 0; color: var(--muted); font-size: 1.05rem; }

.services { background: var(--paper); }
.services-inner { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; }
.services-heading { position: sticky; top: 110px; align-self: start; }
.service-list { border-top: 1px solid var(--line); }
.service-item { display: grid; grid-template-columns: 56px 1fr; gap: 18px 24px; padding: 30px 0; border-bottom: 1px solid var(--line); }
.service-item > span { color: var(--coral); font-weight: 800; }
.service-item p { grid-column: 2; margin: 0; color: var(--muted); }
.service-item h3 { font-size: 1.5rem; }

.contact { padding: 140px 5vw; text-align: center; color: white; background: linear-gradient(135deg, #133b36, #071715); }
.contact-inner { width: min(900px, 100%); margin: 0 auto; }
.contact h2 { font-size: clamp(3.6rem, 9vw, 8rem); }
.contact p:not(.eyebrow) { max-width: 650px; margin: 26px auto 0; color: rgba(255,255,255,.7); font-size: 1.1rem; }
.contact-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; margin-top: 34px; }

.footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 30px;
  align-items: center;
  padding: 34px 5vw;
  color: rgba(255,255,255,.58);
  background: #04100f;
  font-size: .86rem;
}
.footer p { margin: 0; }
.footer-brand { color: white; }

.video-modal[hidden] { display: none; }
.video-modal { position: fixed; inset: 0; z-index: 500; display: grid; place-items: center; padding: 24px; }
.video-modal-backdrop { position: absolute; inset: 0; background: rgba(1,9,8,.86); backdrop-filter: blur(16px); }
.video-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(1050px, 100%);
  max-height: calc(100svh - 48px);
  overflow: auto;
  padding: 28px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 24px;
  color: white;
  background: #0b1d1a;
  box-shadow: 0 40px 120px rgba(0,0,0,.55);
}
.video-modal-header { display: flex; align-items: start; justify-content: space-between; gap: 20px; margin-bottom: 20px; }
.video-modal-header h2 { font-size: clamp(1.8rem, 4vw, 3.2rem); }
.modal-close { width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; color: white; background: rgba(255,255,255,.06); font-size: 1.8rem; cursor: pointer; }
.video-frame { aspect-ratio: 16 / 9; overflow: hidden; border-radius: 16px; background: black; }
.video-frame iframe { width: 100%; height: 100%; border: 0; }
.modal-external { color: white; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s ease, transform .75s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 900px) {
  .site-header { min-height: 70px; }
  .menu-toggle {
    display: grid;
    gap: 6px;
    width: 44px;
    height: 44px;
    place-content: center;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 50%;
    background: rgba(7,23,21,.35);
  }
  .menu-toggle span { width: 18px; height: 1px; background: white; transition: transform .2s ease; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
  .nav {
    position: absolute;
    top: 70px;
    right: 5vw;
    display: none;
    min-width: 220px;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 18px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 18px;
    background: rgba(7,23,21,.96);
    box-shadow: var(--shadow);
  }
  .nav.open { display: flex; }
  .nav a { padding: 10px 12px; }
  .nav-cta { border-radius: 12px; }
  .hero-backdrop { background-position: 62% center; }
  .hero-inner { padding: 130px 0 90px; }
  .scroll-cue { display: none; }
  .section { padding: 90px 0; }
  .section-intro, .about, .services-inner { grid-template-columns: 1fr; gap: 42px; }
  .production-card-featured { grid-template-columns: 1fr; }
  .production-card-featured .production-media { min-height: 340px; }
  .about-visual { max-width: 520px; }
  .about-visual > p { right: 18px; }
  .services-heading { position: static; }
  .footer { grid-template-columns: 1fr; text-align: center; justify-items: center; }
}

@media (max-width: 640px) {
  .site-header { padding-inline: 20px; }
  .brand > span:last-child { font-size: .92rem; }
  .hero-inner, .section { width: min(100% - 40px, 1180px); }
  h1 { font-size: clamp(3.4rem, 17vw, 5.4rem); }
  .hero-copy { max-width: 92%; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .production-grid { grid-template-columns: 1fr; }
  .production-card-featured { grid-column: auto; }
  .production-media, .production-card:not(.production-card-featured) .production-media { min-height: 270px; }
  .production-body { padding: 26px; }
  .production-meta { flex-direction: column; gap: 6px; }
  .purpose { padding: 100px 20px; }
  .purpose-content > p:last-child { margin-left: 0; }
  .about-frame { min-height: 430px; }
  .about-visual > p { position: static; margin-top: 18px; }
  .contact { padding: 100px 20px; }
  .contact-actions { flex-direction: column; }
  .video-modal { padding: 10px; }
  .video-modal-dialog { padding: 18px; border-radius: 18px; }
}

.personal-media {
  background:
    linear-gradient(0deg, rgba(7,23,21,.76), rgba(7,23,21,.08)),
    radial-gradient(circle at 28% 26%, rgba(255,209,165,.85), transparent 24%),
    radial-gradient(circle at 72% 38%, rgba(228,124,104,.48), transparent 30%),
    linear-gradient(145deg, #6f9189 0%, #caa489 48%, #263f3a 100%);
}
.personal-media::before,
.personal-media::after {
  content: "";
  position: absolute;
  bottom: 16%;
  width: 29%;
  height: 46%;
  border-radius: 48% 48% 18% 18%;
  background: rgba(7,23,21,.72);
}
.personal-media::before { left: 18%; transform: rotate(-5deg); }
.personal-media::after { right: 18%; transform: rotate(5deg); }

@media (max-width: 700px) {
  .brand-logo { width: 36px; height: 36px; }
}

@media (max-width: 1100px) {
  .productions-grid,
  .production-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 700px) {
  .productions-grid,
  .production-grid {
    grid-template-columns: 1fr;
  }
}

.image-placeholder-media {
  position: relative;
  overflow: hidden;
  background: #10211e;
}

.image-placeholder-media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(.82) contrast(1.05);
}

.media-overlay-dark {
  background: linear-gradient(0deg, rgba(4,14,13,.76), rgba(4,14,13,.12));
}

.about-frame-photo {
  overflow: hidden;
  padding: 0;
}

.about-frame-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(.78) contrast(1.06);
}
