:root {
  --black: #050607;
  --charcoal: #0b1012;
  --ink: #11171a;
  --panel: rgba(12, 18, 20, 0.7);
  --cream: #f3efe6;
  --soft: #d8d0bf;
  --muted: #9a9387;
  --gold: #c7a15a;
  --gold-soft: rgba(199, 161, 90, 0.2);
  --line: rgba(243, 239, 230, 0.14);
  --dark-line: rgba(17, 23, 26, 0.12);
  --shadow: 0 30px 100px rgba(0, 0, 0, 0.38);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--black);
  color: var(--cream);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body.loaded .loader {
  opacity: 0;
  visibility: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

button,
input,
select {
  font: inherit;
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  gap: 18px;
  background: #020303;
  transition: opacity 900ms var(--ease), visibility 900ms var(--ease);
}

.loader img {
  width: min(220px, 54vw);
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(0, 145, 220, 0.18);
  animation: logoPulse 1.4s var(--ease) infinite alternate;
}

.loader p {
  margin: 0;
  color: var(--soft);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cursor-glow {
  position: fixed;
  z-index: 1;
  width: 340px;
  height: 340px;
  pointer-events: none;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(199, 161, 90, 0.12), rgba(199, 161, 90, 0) 65%);
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 400ms ease;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 22px;
  padding: 18px clamp(18px, 4vw, 54px);
  color: var(--cream);
  transition: background 500ms var(--ease), border-color 500ms var(--ease), padding 500ms var(--ease), backdrop-filter 500ms var(--ease);
}

.site-header.is-scrolled {
  padding-top: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  background: rgba(5, 6, 7, 0.58);
  backdrop-filter: blur(22px) saturate(1.2);
}

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

.brand {
  position: relative;
  z-index: 2;
  gap: 12px;
  font-weight: 900;
}

.brand-logo {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border: 1px solid rgba(243, 239, 230, 0.18);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 145, 220, 0.16);
}

.nav-links {
  gap: clamp(16px, 2.5vw, 34px);
  padding: 13px 20px;
  border: 1px solid rgba(243, 239, 230, 0.14);
  border-radius: 999px;
  background: rgba(5, 6, 7, 0.24);
  color: rgba(243, 239, 230, 0.8);
  backdrop-filter: blur(18px);
  font-size: 0.86rem;
  font-weight: 800;
}

.nav-links a,
.header-cta {
  transition: color 300ms ease, transform 300ms ease, background 300ms ease;
}

.nav-links a:hover {
  color: var(--gold);
}

.header-cta {
  justify-self: end;
  padding: 13px 18px;
  border: 1px solid rgba(243, 239, 230, 0.22);
  border-radius: 999px;
  background: rgba(243, 239, 230, 0.08);
  color: var(--cream);
  font-size: 0.88rem;
  font-weight: 900;
  backdrop-filter: blur(16px);
}

.header-cta:hover {
  transform: translateY(-2px);
  background: var(--cream);
  color: var(--black);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  padding: 130px clamp(20px, 6vw, 86px) 74px;
}

.hero-image,
.hero-vignette {
  position: absolute;
  inset: 0;
}

.hero-image {
  z-index: -3;
  width: 100%;
  height: 116%;
  object-fit: cover;
  transform: translateY(0) scale(1.04);
}

.hero-vignette {
  z-index: -2;
  background:
    radial-gradient(circle at 78% 16%, rgba(199, 161, 90, 0.16), transparent 30%),
    linear-gradient(90deg, rgba(3, 4, 5, 0.92) 0%, rgba(3, 4, 5, 0.6) 42%, rgba(3, 4, 5, 0.12) 78%),
    linear-gradient(0deg, rgba(5, 6, 7, 0.98) 0%, rgba(5, 6, 7, 0) 46%);
}

.hero-content {
  width: min(900px, 100%);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  letter-spacing: 0;
}

h1 {
  max-width: 10ch;
  margin-bottom: 22px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(4.3rem, 10vw, 10.6rem);
  line-height: 0.85;
}

.hero-content p:not(.eyebrow) {
  max-width: 650px;
  margin-bottom: 32px;
  color: rgba(243, 239, 230, 0.82);
  font-size: clamp(1.08rem, 2vw, 1.38rem);
}

.hero-actions {
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  overflow: hidden;
  border: 0;
  border-radius: 999px;
  padding: 15px 22px;
  cursor: pointer;
  font-weight: 900;
  isolation: isolate;
  transition: transform 360ms var(--ease), box-shadow 360ms var(--ease), border-color 360ms var(--ease);
}

.button::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.36), transparent);
  transform: translateX(-120%);
  transition: transform 800ms var(--ease);
}

.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.3);
}

.button:hover::before {
  transform: translateX(120%);
}

.button.primary {
  background: var(--gold);
  color: #070808;
}

.button.ghost {
  border: 1px solid rgba(243, 239, 230, 0.24);
  background: rgba(243, 239, 230, 0.07);
  color: var(--cream);
  backdrop-filter: blur(18px);
}

.hero-panel {
  position: absolute;
  right: clamp(20px, 5vw, 76px);
  bottom: 72px;
  width: min(310px, calc(100% - 40px));
  padding: 22px;
  border: 1px solid rgba(243, 239, 230, 0.18);
  border-radius: 8px;
  background: rgba(6, 9, 10, 0.52);
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px);
}

.hero-panel span {
  display: block;
  margin-bottom: 10px;
  color: rgba(243, 239, 230, 0.62);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-panel strong {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2rem;
  line-height: 1;
}

.hero-panel p {
  margin: 12px 0 0;
  color: rgba(243, 239, 230, 0.68);
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 28px;
  width: 1px;
  height: 54px;
  background: rgba(243, 239, 230, 0.16);
}

.scroll-cue span {
  display: block;
  width: 1px;
  height: 18px;
  background: var(--gold);
  animation: scrollCue 1.8s var(--ease) infinite;
}

.proof-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #070909;
}

.proof-bar div {
  min-height: 126px;
  padding: 26px clamp(18px, 3vw, 42px);
  border-right: 1px solid var(--line);
}

.proof-bar strong {
  display: block;
  margin-bottom: 7px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1;
}

.proof-bar span {
  color: rgba(243, 239, 230, 0.56);
  font-weight: 800;
}

.editorial,
.services,
.packages,
.contact {
  padding: clamp(76px, 10vw, 136px) clamp(20px, 6vw, 86px);
}

.editorial {
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) minmax(280px, 0.8fr);
  gap: clamp(34px, 8vw, 126px);
  background:
    radial-gradient(circle at 18% 0%, rgba(199, 161, 90, 0.12), transparent 34%),
    var(--cream);
  color: var(--ink);
}

.editorial h2,
.section-kicker h2,
.portfolio-heading h2,
.journal-panel h2,
.contact h2 {
  margin-bottom: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.5rem, 5.5vw, 5.8rem);
  line-height: 0.95;
}

.editorial-text {
  align-self: end;
  color: rgba(17, 23, 26, 0.68);
  font-size: clamp(1.03rem, 1.8vw, 1.32rem);
}

.editorial-text p:last-child {
  margin-bottom: 0;
}

.cinema-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--black);
}

.film-frame {
  position: relative;
  min-height: clamp(420px, 58vw, 720px);
  overflow: hidden;
  isolation: isolate;
}

.film-frame img,
.portfolio-card img,
.journal-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.film-frame img,
.portfolio-card img {
  transition: transform 1.4s var(--ease), filter 1.4s var(--ease);
}

.film-frame::after,
.portfolio-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 5, 6, 0.02) 35%, rgba(4, 5, 6, 0.82));
}

.film-frame:hover img,
.portfolio-card:hover img {
  filter: saturate(1.06) contrast(1.04);
  transform: scale(1.06);
}

.film-frame div,
.portfolio-card div {
  position: absolute;
  left: clamp(22px, 4vw, 44px);
  right: clamp(22px, 4vw, 44px);
  bottom: clamp(24px, 4vw, 44px);
  z-index: 2;
}

.film-frame span,
.portfolio-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.film-frame strong,
.portfolio-card strong {
  display: block;
  max-width: 620px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 3.8rem);
  line-height: 1;
}

.services {
  background:
    linear-gradient(180deg, #080a0b 0%, #101417 100%);
}

.section-kicker {
  max-width: 920px;
  margin-bottom: clamp(36px, 6vw, 70px);
}

.service-list {
  border-top: 1px solid var(--line);
}

.service-row {
  display: grid;
  grid-template-columns: 90px minmax(260px, 0.95fr) minmax(280px, 0.8fr);
  gap: clamp(18px, 4vw, 52px);
  align-items: start;
  padding: clamp(26px, 4vw, 46px) 0;
  border-bottom: 1px solid var(--line);
  transition: transform 500ms var(--ease), color 500ms var(--ease);
}

.service-row:hover {
  transform: translateX(10px);
}

.service-row span {
  color: var(--gold);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.5rem;
}

.service-row h3 {
  margin-bottom: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.55rem, 3vw, 3rem);
  line-height: 1.02;
}

.service-row p {
  margin-bottom: 0;
  color: rgba(243, 239, 230, 0.62);
}

.portfolio {
  padding: clamp(76px, 10vw, 136px) clamp(20px, 6vw, 86px);
  background: var(--cream);
  color: var(--ink);
}

.portfolio-heading {
  width: min(900px, 100%);
  margin-bottom: clamp(36px, 6vw, 70px);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.9fr;
  grid-template-rows: repeat(2, minmax(300px, 1fr));
  gap: 18px;
}

.portfolio-card {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  border-radius: 8px;
  background: #111;
  box-shadow: 0 24px 60px rgba(17, 23, 26, 0.16);
  isolation: isolate;
  transition: transform 700ms var(--ease), box-shadow 700ms var(--ease);
}

.portfolio-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 34px 90px rgba(17, 23, 26, 0.28);
}

.portfolio-card.large {
  grid-row: span 2;
}

.portfolio-card strong {
  color: var(--cream);
  font-size: clamp(1.7rem, 3.2vw, 3.5rem);
}

.packages {
  background:
    radial-gradient(circle at 80% 0%, rgba(199, 161, 90, 0.12), transparent 30%),
    #080a0b;
}

.package-shell {
  display: grid;
  grid-template-columns: minmax(230px, 390px) minmax(280px, 1fr);
  gap: 16px;
}

.package-list,
.package-detail {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(243, 239, 230, 0.045);
  backdrop-filter: blur(22px);
}

.package-list {
  display: grid;
  gap: 8px;
  padding: 10px;
}

.package-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  border: 0;
  border-radius: 6px;
  padding: 18px;
  background: transparent;
  color: var(--cream);
  cursor: pointer;
  transition: background 400ms var(--ease), transform 400ms var(--ease);
}

.package-option:hover {
  background: rgba(243, 239, 230, 0.06);
}

.package-option.is-active {
  background: var(--cream);
  color: var(--black);
  transform: translateX(4px);
}

.package-option span {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
}

.package-option strong {
  color: var(--gold);
}

.package-detail {
  min-height: 360px;
  padding: clamp(28px, 5vw, 60px);
}

.package-detail h3 {
  margin-bottom: 16px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.8rem, 6vw, 6.4rem);
  line-height: 0.9;
}

.package-detail p:not(.eyebrow) {
  max-width: 700px;
  color: rgba(243, 239, 230, 0.68);
  font-size: 1.08rem;
}

.package-detail ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.package-detail li {
  min-height: 86px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--soft);
  font-weight: 800;
}

.journal {
  position: relative;
  min-height: 780px;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: clamp(76px, 10vw, 136px) clamp(20px, 6vw, 86px);
  isolation: isolate;
}

.journal-image {
  position: absolute;
  inset: -8% 0 0;
  z-index: -2;
  height: 120%;
  transform: scale(1.03);
}

.journal::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5, 6, 7, 0.88), rgba(5, 6, 7, 0.52) 48%, rgba(5, 6, 7, 0.18)),
    linear-gradient(0deg, rgba(5, 6, 7, 0.92), transparent 44%);
}

.journal-panel {
  width: min(720px, 100%);
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(5, 6, 7, 0.52);
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px);
}

.journal-panel p:not(.eyebrow) {
  max-width: 600px;
  color: rgba(243, 239, 230, 0.68);
}

.journal-panel dl {
  display: grid;
  gap: 12px;
  margin: 32px 0 0;
}

.journal-panel dl div {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.journal-panel dt {
  color: var(--gold);
  font-weight: 900;
}

.journal-panel dd {
  margin: 0;
  color: var(--soft);
  font-weight: 800;
}

.contact {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(280px, 1fr);
  gap: clamp(30px, 7vw, 100px);
  background: var(--cream);
  color: var(--ink);
}

.contact-copy p:not(.eyebrow) {
  max-width: 580px;
  color: rgba(17, 23, 26, 0.65);
  font-size: 1.08rem;
}

.contact-details {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.contact-details a {
  width: fit-content;
  color: var(--ink);
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  font-weight: 900;
  transition: color 260ms ease, transform 260ms ease;
}

.contact-details a:hover {
  color: var(--gold);
  transform: translateX(6px);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-self: start;
}

label {
  display: grid;
  gap: 8px;
  color: rgba(17, 23, 26, 0.66);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

input,
select {
  width: 100%;
  min-height: 56px;
  border: 1px solid var(--dark-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.48);
  color: var(--ink);
  padding: 0 16px;
  outline: 0;
  transition: border-color 260ms ease, box-shadow 260ms ease, background 260ms ease;
}

input:focus,
select:focus {
  border-color: rgba(199, 161, 90, 0.7);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(199, 161, 90, 0.12);
}

.wide {
  grid-column: 1 / -1;
}

.contact-form .button {
  border-radius: 8px;
}

.site-footer {
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 6vw, 86px);
  border-top: 1px solid var(--line);
  background: #050607;
  color: rgba(243, 239, 230, 0.56);
  font-size: 0.9rem;
}

.site-footer span:first-child {
  color: var(--cream);
  font-weight: 900;
}

.site-footer a {
  transition: color 260ms ease;
}

.site-footer a:hover {
  color: var(--gold);
}

.reveal {
  opacity: 0;
  filter: blur(12px);
  transform: translateY(34px);
  transition: opacity 900ms var(--ease), filter 900ms var(--ease), transform 900ms var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

@keyframes logoPulse {
  from {
    transform: scale(0.98);
    opacity: 0.82;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes scrollCue {
  0% {
    transform: translateY(0);
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  100% {
    transform: translateY(36px);
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    filter: none;
    transform: none;
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .hero-panel {
    position: static;
    margin-top: 34px;
  }

  .proof-bar,
  .editorial,
  .cinema-strip,
  .service-row,
  .portfolio-grid,
  .package-shell,
  .contact {
    grid-template-columns: 1fr;
  }

  .portfolio-grid {
    grid-template-rows: none;
  }

  .portfolio-card.large {
    grid-row: auto;
  }

  .package-detail ul,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .journal {
    min-height: 680px;
  }
}

@media (max-width: 580px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand span:last-child {
    max-width: 118px;
    line-height: 1.05;
  }

  .brand-logo {
    width: 42px;
    height: 42px;
  }

  .header-cta {
    padding: 11px 13px;
    font-size: 0.78rem;
  }

  .hero {
    min-height: 96svh;
    padding: 116px 18px 46px;
  }

  h1 {
    font-size: clamp(3.9rem, 18vw, 5.5rem);
  }

  .button {
    width: 100%;
    min-height: 50px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .proof-bar div {
    min-height: 104px;
  }

  .editorial,
  .services,
  .portfolio,
  .packages,
  .journal,
  .contact {
    padding-left: 18px;
    padding-right: 18px;
  }

  .film-frame,
  .portfolio-card {
    min-height: 360px;
  }

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

  .service-row p {
    grid-column: 2;
  }

  .site-footer {
    display: grid;
  }
}
