:root {
  --navy: #0a2130;
  --navy-deep: #071a27;
  --gold: #b89152;
  --gold-bright: #c69b58;
  --gold-text: #80602f;
  --ivory: #faf9f5;
  --paper: #ffffff;
  --ink: #142737;
  --body: #263440;
  --muted: #66717a;
  --line: #dedbd4;
  --white: #ffffff;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Montserrat", Arial, sans-serif;
  --shadow: 0 24px 70px rgba(5, 24, 36, 0.18);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--ivory);
  color: var(--body);
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open,
body.dialog-open {
  overflow: hidden;
}

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

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

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

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 3000;
  padding: 10px 16px;
  transform: translateY(-160%);
  background: var(--white);
  color: var(--navy);
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

.button {
  display: inline-flex;
  min-height: 43px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 0;
  padding: 0 28px;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.075em;
  line-height: 1;
  text-transform: uppercase;
  transition: transform 220ms ease, background-color 220ms ease, border-color 220ms ease, color 220ms ease, box-shadow 220ms ease;
}

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

.button:focus-visible,
.nav-link:focus-visible,
.menu-toggle:focus-visible,
.dialog-close:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 4px;
}

.button-gold {
  background: var(--gold-bright);
  color: var(--navy);
}

.button-gold:hover {
  background: var(--gold);
  box-shadow: 0 10px 28px rgba(184, 145, 82, 0.24);
}

.button-outline-light {
  border-color: rgba(255, 255, 255, 0.8);
  background: rgba(7, 26, 39, 0.22);
  color: var(--white);
}

.button-outline-light:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.button-navy {
  background: var(--navy);
  color: var(--white);
}

.button-navy:hover {
  background: #102f42;
}

.eyebrow {
  margin-bottom: 8px;
  color: var(--gold-text);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1.3;
  text-transform: uppercase;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: 96px;
  border-bottom: 1px solid transparent;
  color: var(--white);
  transition: height 240ms ease, background-color 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.site-header.is-scrolled,
.site-header.menu-active {
  height: 78px;
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(7, 26, 39, 0.96);
  box-shadow: 0 12px 34px rgba(3, 16, 25, 0.17);
  backdrop-filter: blur(14px);
}

.nav-shell {
  width: min(1190px, calc(100% - 64px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  min-width: 292px;
  flex-direction: column;
  color: var(--white);
}

.brand-name {
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 0.95;
}

.brand-role {
  margin-top: 9px;
  padding-left: 8px;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 1.6;
  text-align: center;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  position: relative;
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.94);
  cursor: pointer;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.07em;
  line-height: 1;
  text-transform: uppercase;
}

.nav-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: center;
  background: var(--gold);
  transition: transform 220ms ease;
}

.nav-link:hover::after,
.nav-link.is-current::after {
  transform: scaleX(1);
}

.nav-link.is-current {
  color: var(--gold-bright);
}

.nav-button {
  padding: 0;
}

.nav-cta {
  min-width: 188px;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(7, 26, 39, 0.18);
  color: var(--white);
  cursor: pointer;
  font-size: 24px;
}

.hero {
  position: relative;
  min-height: clamp(680px, 56vw, 760px);
  overflow: hidden;
  isolation: isolate;
  display: flex;
  align-items: center;
  background-color: var(--navy);
  background-image: url("assets/hero-on-set-v2.jpg");
  background-position: center;
  background-size: cover;
  color: var(--white);
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(5, 20, 29, 0.28);
}

.hero-shade::after {
  content: "";
  position: absolute;
  inset: 0 44% 0 0;
  background: rgba(3, 17, 26, 0.38);
}

.hero-inner {
  width: min(1190px, calc(100% - 64px));
  margin: 0 auto;
  padding-top: 98px;
}

.hero-copy {
  width: min(520px, 47%);
}

.hero h1 {
  margin-bottom: 28px;
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(60px, 5.5vw, 76px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 0.96;
}

.hero h1 em {
  color: var(--gold-bright);
  font-weight: 500;
}

.hero-lead {
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.98);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
}

.hero-description {
  max-width: 430px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  gap: 19px;
}

.hero-actions .button {
  min-width: 164px;
}

.scroll-cue {
  display: none;
}

.services {
  min-height: 515px;
  padding: 45px 0 42px;
  background: var(--paper);
}

.section-shell {
  width: min(1130px, calc(100% - 64px));
  margin: 0 auto;
}

.section-intro {
  margin: 0 auto 35px;
  text-align: center;
}

.section-intro h2 {
  margin-bottom: 7px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(30px, 2.8vw, 38px);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.12;
}

.section-intro > p:last-child {
  margin-bottom: 0;
  color: #4a535b;
  font-size: 12.5px;
  line-height: 1.65;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.service-item {
  min-height: 295px;
  padding: 7px 30px 0;
  text-align: center;
}

.service-item + .service-item {
  border-left: 1px solid var(--line);
}

.service-icon {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 68px;
  font-weight: 300;
  line-height: 1;
}

.service-item h3 {
  min-height: 39px;
  margin-bottom: 15px;
  color: #1b2934;
  font-family: var(--sans);
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: 0.045em;
  line-height: 1.25;
  text-transform: uppercase;
}

.service-item p {
  margin-bottom: 0;
  color: #2f3942;
  font-size: 13px;
  line-height: 1.55;
}

.about-location {
  min-height: 330px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 46.8% 53.2%;
  background: var(--ivory);
}

.location-photo {
  min-height: 330px;
  background-color: #d7c3ae;
  background-image: url("assets/redondo-beach-v2.jpg");
  background-position: center;
  background-size: cover;
}

.location-copy {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 34px 48px;
}

.location-lineart {
  position: absolute;
  inset: 0 0 0 auto;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  opacity: 0.75;
  pointer-events: none;
}

.location-content {
  position: relative;
  z-index: 1;
  max-width: 520px;
}

.location-content h2 {
  margin-bottom: 14px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(31px, 2.6vw, 38px);
  font-weight: 600;
  letter-spacing: -0.018em;
  line-height: 0.98;
}

.location-content h2 em {
  color: var(--gold-text);
  font-weight: 500;
}

.location-content > p:not(.eyebrow) {
  max-width: 500px;
  margin-bottom: 18px;
  color: #42505a;
  font-size: 12px;
  line-height: 1.65;
}

.location-content .button {
  min-height: 39px;
  padding: 0 23px;
  font-size: 9px;
}

.production-band {
  position: relative;
  min-height: 255px;
  display: flex;
  align-items: center;
  background: var(--navy);
  color: var(--white);
}

.anchor-target {
  position: absolute;
  top: 0;
}

.production-shell {
  width: min(1130px, calc(100% - 64px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 42% 58%;
  align-items: center;
}

.production-cta {
  padding-right: 48px;
}

.production-cta h2 {
  margin-bottom: 16px;
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(29px, 2.6vw, 37px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 0.98;
}

.production-cta h2::after {
  content: "";
  display: block;
  width: 142px;
  height: 1px;
  margin-top: 13px;
  background: var(--gold);
}

.production-cta p {
  max-width: 450px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 12px;
  line-height: 1.65;
}

.production-cta .button {
  min-height: 38px;
  padding: 0 26px;
  font-size: 9px;
}

.production-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.production-benefits article {
  text-align: center;
}

.production-benefits i {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--gold-bright);
  font-size: 45px;
  line-height: 1;
}

.production-benefits h3 {
  min-height: 32px;
  margin-bottom: 8px;
  color: var(--white);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.065em;
  line-height: 1.45;
  text-transform: uppercase;
}

.production-benefits p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 10.5px;
  line-height: 1.75;
}

.site-footer {
  min-height: 108px;
  display: flex;
  align-items: center;
  background: var(--paper);
  color: var(--ink);
}

.footer-shell {
  width: min(1130px, calc(100% - 64px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 285px 1fr auto 70px;
  align-items: center;
  gap: 30px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
}

.footer-brand > span {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 500;
  line-height: 1;
}

.footer-brand small {
  margin-top: 5px;
  padding-left: 5px;
  font-size: 7.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  line-height: 1.55;
  text-align: center;
  text-transform: uppercase;
}

.footer-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.footer-nav a,
.footer-nav button {
  border: 0;
  padding: 8px 0;
  background: none;
  color: #44515b;
  cursor: pointer;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-nav a:hover,
.footer-nav button:hover {
  color: var(--gold-text);
}

.copyright {
  margin: 0;
  color: #68727a;
  font-size: 8px;
  white-space: nowrap;
}

.social-links {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

.social-links i {
  width: 24px;
  height: 24px;
  color: var(--navy);
  font-size: 18px;
  line-height: 24px;
  text-align: center;
}

.site-dialog {
  width: min(790px, calc(100% - 30px));
  max-height: calc(100dvh - 30px);
  overflow: auto;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--body);
  box-shadow: var(--shadow);
}

.site-dialog::backdrop {
  background: rgba(5, 20, 29, 0.76);
  backdrop-filter: blur(5px);
}

.site-dialog[open] {
  animation: dialog-in 240ms ease both;
}

.dialog-panel {
  position: relative;
  padding: 50px;
  background: var(--ivory);
}

.dialog-panel h2 {
  margin-bottom: 12px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(38px, 5vw, 58px);
  font-weight: 500;
  line-height: 0.98;
}

.dialog-intro {
  max-width: 600px;
  margin-bottom: 26px;
}

.dialog-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  border: 1px solid #cbc5bc;
  background: transparent;
  color: var(--navy);
  cursor: pointer;
  font-size: 22px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form label {
  display: block;
  margin-bottom: 16px;
  color: var(--ink);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  display: block;
  width: 100%;
  margin-top: 7px;
  border: 1px solid #cfc9bf;
  border-radius: 0;
  padding: 12px 13px;
  background: var(--white);
  color: var(--body);
  font-size: 13px;
  letter-spacing: 0;
  text-transform: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  outline: 2px solid rgba(184, 145, 82, 0.2);
}

.form-status {
  margin: 12px 0 0;
  color: var(--navy);
  font-size: 12px;
}

.dialog-copy {
  padding-right: min(90px, 10vw);
}

.dialog-copy > p:not(.eyebrow) {
  max-width: 650px;
}

.testimonial-panel {
  width: 100%;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.testimonial-grid blockquote {
  margin: 0;
  border-top: 2px solid var(--gold);
  padding: 22px 18px;
  background: var(--white);
}

.testimonial-grid blockquote p {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.25;
}

.testimonial-grid cite {
  color: var(--gold-text);
  font-size: 9px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

html.reveal-ready [data-reveal] {
  transform: translateY(24px);
  opacity: 0;
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.68, 0.28, 1);
}

html.reveal-ready [data-reveal="image"] {
  transform: scale(1.035);
}

html.reveal-ready [data-reveal].is-visible {
  transform: none;
  opacity: 1;
}

.service-grid [data-reveal]:nth-child(2),
.production-benefits [data-reveal]:nth-child(2) {
  transition-delay: 90ms;
}

.service-grid [data-reveal]:nth-child(3),
.production-benefits [data-reveal]:nth-child(3) {
  transition-delay: 180ms;
}

.service-grid [data-reveal]:nth-child(4) {
  transition-delay: 270ms;
}

@keyframes dialog-in {
  from {
    transform: translateY(18px) scale(0.985);
    opacity: 0;
  }
  to {
    transform: none;
    opacity: 1;
  }
}

@media (max-width: 1120px) {
  .nav-shell {
    width: min(100% - 44px, 1040px);
  }

  .brand {
    min-width: 240px;
  }

  .brand-name {
    font-size: 30px;
  }

  .main-nav {
    gap: 18px;
  }

  .nav-cta {
    min-width: 155px;
    padding-inline: 18px;
  }

  .service-item {
    padding-inline: 22px;
  }

  .footer-shell {
    grid-template-columns: 240px 1fr auto;
  }

  .social-links {
    display: none;
  }
}

@media (max-width: 940px) {
  .site-header,
  .site-header.is-scrolled,
  .site-header.menu-active {
    height: 78px;
  }

  .nav-shell {
    width: min(100% - 34px, 860px);
  }

  .brand {
    min-width: 0;
  }

  .brand-name {
    font-size: 28px;
  }

  .brand-role {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .main-nav {
    position: fixed;
    inset: 78px 0 auto;
    max-height: calc(100dvh - 78px);
    overflow-y: auto;
    display: grid;
    gap: 0;
    align-items: stretch;
    padding: 14px 25px 25px;
    transform: translateY(-20px);
    visibility: hidden;
    opacity: 0;
    background: var(--navy-deep);
    box-shadow: 0 20px 42px rgba(3, 16, 25, 0.26);
    transition: transform 220ms ease, opacity 220ms ease, visibility 220ms;
  }

  .main-nav.is-open {
    transform: none;
    visibility: visible;
    opacity: 1;
  }

  .nav-link {
    min-height: 50px;
    justify-content: flex-start;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 11px;
  }

  .nav-link::after {
    display: none;
  }

  .nav-cta {
    width: 100%;
    margin-top: 14px;
  }

  .hero {
    min-height: 760px;
    background-position: 62% center;
  }

  .hero-shade {
    background: rgba(5, 20, 29, 0.54);
  }

  .hero-shade::after {
    inset: 0 30% 0 0;
    background: rgba(3, 17, 26, 0.2);
  }

  .hero-inner {
    width: min(100% - 42px, 860px);
    padding-top: 78px;
  }

  .hero-copy {
    width: min(550px, 72%);
  }

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

  .service-item {
    padding: 28px 42px;
    border-bottom: 1px solid var(--line);
  }

  .service-item:nth-child(3) {
    border-left: 0;
  }

  .about-location {
    grid-template-columns: 1fr 1fr;
  }

  .location-copy {
    padding-inline: 34px;
  }

  .production-shell {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-block: 50px;
  }

  .production-band {
    min-height: 0;
  }

  .production-cta {
    padding-right: 0;
    text-align: center;
  }

  .production-cta h2::after {
    margin-inline: auto;
  }

  .production-cta p {
    margin-inline: auto;
  }

  .footer-shell {
    grid-template-columns: 1fr auto;
    padding-block: 22px;
  }

  .footer-nav {
    display: none;
  }
}

@media (max-width: 680px) {
  html {
    scroll-padding-top: 76px;
  }

  .site-header,
  .site-header.is-scrolled,
  .site-header.menu-active {
    height: 76px;
  }

  .main-nav {
    inset-block-start: 76px;
  }

  .hero {
    min-height: 820px;
    align-items: flex-end;
    background-position: 50% center;
  }

  .hero-shade {
    background: rgba(5, 20, 29, 0.56);
  }

  .hero-shade::after {
    inset: auto 0 0;
    height: 62%;
    background: rgba(3, 17, 26, 0.38);
  }

  .hero-inner {
    width: min(100% - 34px, 540px);
    padding: 120px 0 55px;
  }

  .hero-copy {
    width: 100%;
  }

  .hero h1 {
    font-size: clamp(51px, 15vw, 67px);
    line-height: 0.94;
  }

  .hero-lead {
    font-size: 15px;
  }

  .hero-description {
    font-size: 11px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-actions .button {
    width: min(100%, 230px);
  }

  .services {
    padding: 58px 0 30px;
  }

  .section-shell {
    width: min(100% - 30px, 580px);
  }

  .section-intro {
    margin-bottom: 24px;
  }

  .section-intro h2 {
    font-size: 34px;
  }

  .desktop-break {
    display: none;
  }

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

  .service-item,
  .service-item + .service-item,
  .service-item:nth-child(3) {
    min-height: 0;
    border-left: 0;
    padding: 34px 20px;
  }

  .service-item:last-child {
    border-bottom: 0;
  }

  .service-item h3 {
    min-height: 0;
  }

  .service-item p {
    max-width: 380px;
    margin-inline: auto;
  }

  .about-location {
    grid-template-columns: 1fr;
  }

  .location-photo {
    min-height: 290px;
  }

  .location-copy {
    min-height: 410px;
    padding: 48px 24px;
  }

  .location-content h2 {
    font-size: 39px;
  }

  .location-content > p:not(.eyebrow) {
    font-size: 11px;
  }

  .production-shell {
    width: min(100% - 34px, 560px);
  }

  .production-cta h2 {
    font-size: 37px;
  }

  .production-benefits {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .production-benefits h3 {
    min-height: 0;
  }

  .site-footer {
    min-height: 132px;
  }

  .footer-shell {
    width: min(100% - 34px, 560px);
    grid-template-columns: 1fr;
    gap: 14px;
    text-align: center;
  }

  .footer-brand {
    align-items: center;
  }

  .copyright {
    white-space: normal;
  }

  .dialog-panel {
    padding: 54px 22px 28px;
  }

  .form-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html.reveal-ready [data-reveal] {
    transform: none;
    opacity: 1;
  }
}
