*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --ink: #070809;
  --deep: #0e1011;
  --forest: #151719;
  --moss: #303437;
  --cream: #f0efec;
  --paper: #c8cac7;
  --muted: #969997;
  --gold: #b8bab6;
  --copper: #858885;
  --line: rgba(240, 239, 236, 0.12);
  --line-strong: rgba(240, 239, 236, 0.26);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--cream);
  background: var(--ink);
  font-family: var(--font-body);
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.locked {
  overflow: hidden;
}

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

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

button {
  font: inherit;
  color: inherit;
}

.grain {
  position: fixed;
  inset: 0;
  z-index: 40;
  pointer-events: none;
  opacity: .045;
  mix-blend-mode: screen;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,.16) 0 1px, transparent 1px),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,.12) 0 1px, transparent 1px);
  background-size: 38px 38px, 53px 53px;
}

.progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  z-index: 90;
  background: linear-gradient(90deg, #6f7475, #d2d4d0);
}

.container {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 80;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 18px clamp(20px, 4vw, 54px);
  transition: background .35s var(--ease), border-color .35s var(--ease), padding .35s var(--ease);
}

.nav.scrolled {
  padding-top: 13px;
  padding-bottom: 13px;
  background: rgba(10, 10, 8, .78);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand img {
  height: 42px;
  width: auto;
}

.nav-links {
  justify-self: center;
  display: flex;
  gap: clamp(16px, 3vw, 36px);
  color: rgba(240, 239, 236, .66);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.nav-links a {
  transition: color .25s var(--ease);
}

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

.nav-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 17px;
  border: 1px solid var(--line-strong);
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .10em;
  text-transform: uppercase;
  transition: background .25s var(--ease), color .25s var(--ease);
}

.nav-call:hover {
  background: var(--gold);
  color: var(--ink);
}

.hero {
  position: relative;
  min-height: 660px;
  height: 84svh;
  max-height: 790px;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}

.hero picture,
.hero-img,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 47%;
  transform: scale(1.025);
  animation: heroDrift 22s ease-in-out infinite alternate;
  z-index: -3;
}

@keyframes heroDrift {
  from { transform: scale(1.025) translate3d(0, 0, 0); }
  to { transform: scale(1.062) translate3d(-.8%, -.8%, 0); }
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(7,8,9,.88) 0%, rgba(7,8,9,.58) 43%, rgba(7,8,9,.18) 100%),
    linear-gradient(180deg, rgba(7,8,9,.22) 0%, rgba(7,8,9,.58) 70%, rgba(7,8,9,1) 100%);
}

.hero-copy {
  width: min(640px, calc(100% - 40px));
  margin: 0 auto;
  padding: 132px 0 82px;
  justify-self: start;
  margin-left: clamp(22px, 8.5vw, 118px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 680px;
  margin-top: 18px;
  font-family: var(--font-display);
  font-size: clamp(38px, 3.85vw, 56px);
  font-weight: 300;
  line-height: 1.04;
  color: #f5f4f1;
  overflow-wrap: normal;
}

.hero-lead {
  max-width: 560px;
  margin: 22px 0 0;
  color: rgba(240, 239, 236, .72);
  font-size: 14px;
  line-height: 1.78;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  max-width: 590px;
  margin-top: 30px;
  padding: 0;
  border-top: 1px solid rgba(240, 239, 236, .18);
  border-bottom: 1px solid rgba(240, 239, 236, .14);
}

.hero-meta span {
  min-height: 64px;
  padding: 14px 16px;
  color: rgba(240, 239, 236, .60);
  font-size: 12px;
  border-right: 1px solid rgba(240, 239, 236, .12);
}

.hero-meta span:first-child {
  padding-left: 0;
}

.hero-meta span:last-child {
  border-right: 0;
}

.hero-meta strong {
  display: block;
  margin-bottom: 4px;
  color: #f0efec;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  transition: transform .25s var(--ease), border-color .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
}

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

.btn.primary {
  background: rgba(236, 235, 234, .88);
  color: #101112;
  border-color: rgba(236, 235, 234, .88);
}

.btn.ghost {
  border-color: rgba(244, 239, 230, .32);
  color: var(--cream);
  background: rgba(244, 239, 230, .04);
}

.btn.ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.feature-band {
  background: #090a0b;
  border-top: 1px solid rgba(236, 235, 234, .10);
  border-bottom: 1px solid rgba(236, 235, 234, .10);
}

.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px clamp(20px, 4vw, 42px);
  padding: 19px 0;
}

.feature-list span {
  min-height: auto;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  border-left: 0;
  color: rgba(236, 235, 234, .66);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.feature-list span::before {
  content: "";
  width: 5px;
  height: 5px;
  border: 1px solid rgba(236, 235, 234, .58);
  transform: rotate(45deg);
}

.section {
  padding: clamp(72px, 7vw, 104px) 0;
}

.section-head {
  max-width: 680px;
  margin-bottom: 40px;
}

.section-head h2,
.story-copy h2,
.cinema-copy h2,
.film-copy h2,
.contact-copy h2 {
  margin-top: 18px;
  color: #f1f0ed;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.2;
}

.story {
  background: linear-gradient(180deg, #070809 0%, #101214 100%);
}

.story-grid,
.cinema-grid,
.film-grid {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: center;
}

.story-copy p,
.cinema-copy p,
.film-copy p,
.contact-copy p {
  max-width: 620px;
  color: rgba(240, 239, 236, .68);
  font-size: 15px;
  line-height: 1.78;
}

.story-copy p + p {
  margin-top: 18px;
}

.story-frame {
  position: relative;
  min-height: 560px;
  overflow: hidden;
}

.story-frame img,
.cinema-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-frame img {
  position: absolute;
  inset: 0;
}

.story-badge {
  position: absolute;
  right: 22px;
  bottom: 22px;
  padding: 18px 20px;
  color: var(--ink);
  background: rgba(244, 239, 230, .92);
}

.story-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 34px;
  line-height: .9;
}

.story-badge span {
  color: #5e5749;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.scale {
  background: #0a0b0c;
}

.scale-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  background: transparent;
  border-top: 1px solid rgba(240, 239, 236, .18);
}

.metric {
  min-height: auto;
  display: grid;
  grid-template-columns: 72px minmax(170px, .34fr) 1fr;
  gap: 28px;
  align-items: start;
  padding: 28px 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(240, 239, 236, .12);
  backdrop-filter: none;
}

.metric span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
}

.metric strong {
  display: block;
  margin-top: 0;
  color: #f1f0ed;
  font-family: var(--font-body);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 500;
  line-height: 1.02;
}

.metric p {
  max-width: 520px;
  margin: 3px 0 0;
  color: rgba(240, 239, 236, .66);
}

.cinema {
  background: #101214;
  color: var(--cream);
}

.cinema .eyebrow {
  color: var(--copper);
}

.cinema-copy h2 {
  color: #f1f0ed;
}

.cinema-copy p {
  color: rgba(236, 235, 234, .66);
}

.cinema-photo {
  height: min(72vw, 720px);
  min-height: 500px;
  overflow: hidden;
}

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

.checks li {
  position: relative;
  padding-left: 26px;
  color: rgba(236, 235, 234, .72);
  font-size: 14px;
  font-weight: 600;
}

.checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 8px;
  height: 8px;
  border: 1px solid var(--copper);
  transform: rotate(45deg);
}

.gallery {
  background: #0b0d0e;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 250px;
  gap: 6px;
}

.gallery-item {
  position: relative;
  padding: 0;
  border: 0;
  overflow: hidden;
  background: #111;
  cursor: pointer;
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease), filter .7s var(--ease);
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(244, 239, 230, 0);
  transition: border-color .35s var(--ease), background .35s var(--ease);
}

.gallery-item:hover img {
  transform: scale(1.06);
  filter: saturate(1.08) contrast(1.02);
}

.gallery-item:hover::after {
  border-color: rgba(220, 222, 218, .58);
  background: rgba(10, 10, 8, .12);
}

.film {
  background:
    linear-gradient(180deg, #070708 0%, #111214 100%);
}

.film-grid {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 430px);
}

.quote {
  margin-top: 34px;
  min-height: 104px;
  padding: 22px 0 0;
  border-top: 1px solid rgba(240, 239, 236, .20);
  border-left: 0;
  background: transparent;
  color: #f1f0ed;
  font-family: var(--font-body);
  font-size: clamp(20px, 2.4vw, 30px);
  font-weight: 500;
  line-height: 1.28;
}

.phone {
  position: relative;
  width: min(100%, 390px);
  aspect-ratio: 9 / 16;
  justify-self: center;
  overflow: hidden;
  border: 1px solid rgba(244, 239, 230, .24);
  border-radius: 22px;
  background: #050505;
  box-shadow: 0 32px 72px rgba(0,0,0,.46);
}

.phone video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: 0;
  background: radial-gradient(circle, rgba(10,10,8,.22), rgba(10,10,8,.62));
  cursor: pointer;
}

.play span {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: var(--gold);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  transform: scale(.58) translateX(8px);
  box-shadow: 0 0 0 28px rgba(220,222,218,.13);
}

.play.hidden {
  opacity: 0;
  pointer-events: none;
}

.details {
  background: #0d0e10;
  color: var(--cream);
  padding-top: 48px;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 4vw, 52px);
  background: transparent;
  border-top: 1px solid rgba(236, 235, 234, .14);
  border-bottom: 1px solid rgba(236, 235, 234, .10);
}

.detail {
  min-height: auto;
  padding: 34px 0 38px;
  background: transparent;
}

.detail h3 {
  color: #f1f0ed;
  font-size: 22px;
}

.detail p {
  color: rgba(236, 235, 234, .66);
}

.contact {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.contact-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url("assets/photo-16.jpeg") center / cover;
}

.contact::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(10,10,8,.92), rgba(10,10,8,.64), rgba(10,10,8,.78)),
    linear-gradient(180deg, rgba(10,10,8,.16), rgba(10,10,8,.78));
}

.contact-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 430px);
  gap: 48px;
  align-items: end;
}

.agent {
  display: grid;
  grid-template-columns: 94px 1fr;
  gap: 18px;
  align-items: center;
  padding: 22px;
  background: rgba(10,10,8,.50);
  border: 1px solid var(--line-strong);
  backdrop-filter: blur(14px);
}

.agent img {
  width: 94px;
  height: 94px;
  border-radius: 50%;
  object-fit: cover;
  background: rgba(255,255,255,.1);
}

.agent strong,
.agent span,
.agent small {
  display: block;
}

.agent strong {
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.05;
}

.agent span {
  margin-top: 8px;
  color: var(--gold);
  font-weight: 700;
}

.agent small {
  margin-top: 4px;
  color: rgba(244, 239, 230, .66);
}

.price-bottom {
  padding: 48px 0;
  background: #08090a;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.price-inner {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
}

.price-inner span {
  color: rgba(236, 235, 234, .48);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.price-inner strong {
  color: #f1f0ed;
  font-family: var(--font-body);
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 500;
  line-height: .95;
}

.footer {
  padding: 34px 0 96px;
  background: #080806;
  color: rgba(244, 239, 230, .58);
}

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

.footer img {
  max-height: 34px;
  width: auto;
}

.footer-logos {
  display: flex;
  gap: 22px;
  align-items: center;
}

.footer p {
  margin: 0;
  font-size: 12px;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, .94);
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: min(92vw, 1500px);
  max-height: 86vh;
  object-fit: contain;
}

.close,
.arrow {
  position: absolute;
  border: 1px solid rgba(244, 239, 230, .28);
  background: rgba(244, 239, 230, .08);
  cursor: pointer;
}

.close {
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
}

.close::before,
.close::after {
  content: "";
  position: absolute;
  left: 13px;
  top: 23px;
  width: 20px;
  height: 2px;
  background: var(--cream);
}

.close::before {
  transform: rotate(45deg);
}

.close::after {
  transform: rotate(-45deg);
}

.arrow {
  top: 50%;
  width: 52px;
  height: 52px;
  transform: translateY(-50%);
}

.arrow::before {
  content: "";
  position: absolute;
  top: 17px;
  width: 16px;
  height: 16px;
  border-top: 2px solid var(--cream);
  border-left: 2px solid var(--cream);
}

.prev {
  left: 24px;
}

.prev::before {
  left: 20px;
  transform: rotate(-45deg);
}

.next {
  right: 24px;
}

.next::before {
  right: 20px;
  transform: rotate(135deg);
}

.counter {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  color: rgba(244, 239, 230, .72);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
}

.mobile-bar {
  position: fixed;
  left: 10px;
  right: 10px;
  bottom: 10px;
  z-index: 82;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 8px;
  background: rgba(10,10,8,.80);
  border: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.mobile-bar a {
  min-height: 46px;
  display: grid;
  place-items: center;
  background: var(--gold);
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.mobile-bar a:first-child {
  background: rgba(244,239,230,.08);
  color: var(--cream);
  border: 1px solid rgba(244,239,230,.22);
}

.reveal {
  opacity: 1;
  transform: translateY(22px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .nav {
    grid-template-columns: auto auto;
  }

  .nav-links {
    display: none;
  }

  .detail-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .story-grid,
  .cinema-grid,
  .film-grid,
  .contact-inner {
    grid-template-columns: 1fr;
  }

  .cinema-photo {
    min-height: 420px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 220px;
  }

  .metric {
    grid-template-columns: 56px minmax(140px, .42fr) 1fr;
    gap: 18px;
  }
}

@media (max-width: 700px) {
  .container {
    width: min(100% - 28px, 1200px);
  }

  .nav {
    padding: 14px;
  }

  .brand img {
    height: 34px;
  }

  .nav-call {
    min-height: 36px;
    padding: 0 14px;
  }

  .hero {
    min-height: 650px;
    height: auto;
  }

  .hero-img {
    object-position: center center;
  }

  .hero-copy {
    width: calc(100% - 28px);
    margin-left: 14px;
    padding: 104px 0 56px;
  }

  h1 {
    max-width: min(100%, 358px);
    font-size: clamp(34px, 9.2vw, 39px);
    line-height: 1.04;
    overflow-wrap: break-word;
  }

  .hero-lead {
    max-width: min(100%, 344px);
    font-size: 14px;
    line-height: 1.68;
  }

  .hero-meta {
    grid-template-columns: 1fr;
    max-width: 344px;
    margin-top: 22px;
  }

  .hero-meta span {
    min-height: auto;
    padding: 11px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(240, 239, 236, .10);
  }

  .hero-meta span:last-child {
    border-bottom: 0;
  }

  .hero-actions,
  .contact-actions {
    gap: 9px;
    margin-top: 24px;
  }

  .btn {
    min-height: 42px;
    padding: 0 14px;
  }

  .feature-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .section {
    padding: 68px 0;
  }

  .section-head h2,
  .story-copy h2,
  .cinema-copy h2,
  .film-copy h2,
  .contact-copy h2 {
    font-size: clamp(25px, 7.6vw, 34px);
    line-height: 1.2;
  }

  .story-frame {
    min-height: 420px;
  }

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

  .metric {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 24px 0;
  }

  .metric strong {
    margin-top: 4px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }

  .gallery-item.wide,
  .gallery-item.tall {
    grid-column: auto;
    grid-row: auto;
  }

  .phone {
    max-width: 330px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .price-inner {
    display: grid;
    gap: 10px;
  }

  .mobile-bar {
    display: grid;
  }
}

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