:root {
  --black: #050505;
  --ink: #121212;
  --panel: #191815;
  --paper: #fbf7ef;
  --white: #ffffff;
  --cream: #efe2c2;
  --gold: #d9b35f;
  --gold-deep: #9a7538;
  --smoke: #a9a39a;
  --line: rgba(217, 179, 95, 0.28);
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: "Manrope", Arial, sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.nav {
  align-items: center;
  background: rgba(5, 5, 5, 0.48);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(14px);
  display: flex;
  gap: 18px;
  justify-content: space-between;
  left: 0;
  min-height: 66px;
  padding: 8px clamp(16px, 5vw, 64px);
  position: fixed;
  right: 0;
  top: 0;
  z-index: 30;
}

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

.brand-word {
  display: grid;
  line-height: 1;
  position: relative;
}

.brand-word strong {
  color: var(--white);
  font-family: "Playfair Display", serif;
  font-size: 31px;
  letter-spacing: 0;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
}

.brand-word small {
  color: var(--gold);
  font-family: "Cinzel", serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.28em;
  margin-top: 3px;
  text-transform: uppercase;
}

.nav-links {
  align-items: center;
  display: flex;
  gap: 22px;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  transition: color 0.25s ease;
}

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

.nav-cta,
.btn {
  align-items: center;
  border: 1px solid var(--gold);
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  font-size: 12px;
  font-weight: 900;
  justify-content: center;
  min-height: 42px;
  padding: 10px 20px;
  text-transform: uppercase;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.nav-cta,
.btn.primary {
  background: linear-gradient(135deg, #f4d985, var(--gold-deep));
  color: #080808;
  box-shadow: 0 12px 30px rgba(217, 179, 95, 0.18);
}

.btn.ghost {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.nav-cta:hover,
.btn:hover {
  box-shadow: 0 18px 42px rgba(217, 179, 95, 0.26);
  transform: translateY(-2px);
}

.menu-toggle {
  background: transparent;
  border: 0;
  cursor: pointer;
  display: none;
  height: 42px;
  padding: 8px;
  width: 42px;
}

.menu-toggle span {
  background: var(--white);
  display: block;
  height: 2px;
  margin: 7px 0;
  width: 26px;
}

.hero {
  align-items: end;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.88) 0%, rgba(5, 5, 5, 0.52) 44%, rgba(5, 5, 5, 0.78) 100%),
    url("https://images.unsplash.com/photo-1511285560929-80b456fea0bc?auto=format&fit=crop&w=2200&q=88") center / cover;
  display: grid;
  min-height: 100vh;
  overflow: hidden;
  padding: 108px clamp(18px, 7vw, 96px) 58px;
  position: relative;
}

.hero::after {
  background: linear-gradient(180deg, transparent, var(--black));
  bottom: 0;
  content: "";
  height: 150px;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
}

.hero-content {
  max-width: 780px;
  position: relative;
  z-index: 1;
}

.eyebrow,
.section-kicker {
  color: var(--gold);
  font-family: "Cinzel", serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  margin-bottom: 14px;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  color: inherit;
  font-family: "Playfair Display", serif;
  letter-spacing: 0;
  line-height: 1.02;
}

h1 {
  font-size: clamp(48px, 8.2vw, 112px);
  font-weight: 700;
  max-width: 980px;
}

h2 {
  font-size: clamp(34px, 4.4vw, 64px);
  font-weight: 700;
}

h3 {
  font-size: clamp(25px, 2.2vw, 34px);
}

.hero-copy {
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(16px, 1.45vw, 20px);
  margin: 22px 0 30px;
  max-width: 620px;
}

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

.hero-card {
  background: rgba(251, 247, 239, 0.94);
  border: 1px solid rgba(217, 179, 95, 0.45);
  bottom: 54px;
  box-shadow: var(--shadow);
  color: var(--ink);
  display: grid;
  gap: 4px;
  max-width: 310px;
  padding: 22px;
  position: absolute;
  right: clamp(18px, 6vw, 78px);
  z-index: 1;
}

.hero-card strong {
  color: var(--gold-deep);
  font-family: "Playfair Display", serif;
  font-size: 46px;
  line-height: 1;
}

.hero-card span {
  color: #565047;
  font-size: 14px;
}

.section {
  padding: clamp(70px, 9vw, 120px) clamp(18px, 7vw, 96px);
  position: relative;
}

.section.dark {
  background: #0c0c0b;
}

.split,
.section-heading,
.contact-panel {
  display: grid;
  gap: clamp(28px, 5vw, 68px);
  grid-template-columns: minmax(0, 1.04fr) minmax(290px, 0.96fr);
}

.section-heading {
  align-items: end;
  margin-bottom: 34px;
}

.section-heading p,
.about p,
.film-card p,
.choose-grid p,
.contact p {
  color: rgba(255, 255, 255, 0.68);
}

.about {
  background:
    linear-gradient(135deg, rgba(251, 247, 239, 0.98), rgba(238, 225, 196, 0.95)),
    url("https://images.unsplash.com/photo-1606216794074-735e91aa2c92?auto=format&fit=crop&w=1400&q=80") center / cover;
  color: var(--ink);
}

.about .section-kicker {
  color: var(--gold-deep);
}

.about p {
  color: #5d564a;
  font-size: 16px;
  margin-top: 18px;
  max-width: 720px;
}

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

.stats-grid div,
.choose-grid div,
.package-card,
.film-card,
.contact-form {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
}

.stats-grid div {
  background: rgba(255, 255, 255, 0.74);
  border-color: rgba(154, 117, 56, 0.2);
  min-height: 132px;
  padding: 22px;
}

.stats-grid strong {
  color: var(--gold-deep);
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 42px;
  line-height: 1;
}

.stats-grid span {
  color: #5f584e;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.filter {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  cursor: pointer;
  font-weight: 700;
  padding: 10px 16px;
  transition: 0.25s ease;
  white-space: nowrap;
}

.filter.active,
.filter:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #0a0a0a;
}

.gallery {
  display: grid;
  gap: 16px;
  grid-auto-flow: dense;
  grid-template-columns: repeat(4, 1fr);
}

.gallery-item {
  aspect-ratio: 1 / 1.18;
  background: #141414;
  border: 0;
  cursor: pointer;
  overflow: hidden;
  position: relative;
}

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

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

.gallery-item img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.5s ease;
}

.gallery-item::after {
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.72));
  content: "";
  inset: 0;
  position: absolute;
}

.gallery-item span {
  bottom: 16px;
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
  left: 16px;
  position: absolute;
  text-transform: uppercase;
  z-index: 1;
}

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

.gallery-item.hidden {
  display: none;
}

.films {
  background: var(--paper);
  color: var(--ink);
}

.films .section-kicker {
  color: var(--gold-deep);
}

.films .section-heading p,
.films .film-card p {
  color: #5f584e;
}

.film-grid,
.package-grid,
.testimonial-grid,
.choose-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.film-card {
  background: #fff;
  border-color: rgba(18, 18, 18, 0.08);
  color: var(--ink);
  padding: 20px;
}

.video-placeholder {
  align-items: center;
  aspect-ratio: 16 / 10;
  background:
    linear-gradient(rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.42)),
    url("https://images.unsplash.com/photo-1523438885200-e635ba2c371e?auto=format&fit=crop&w=1200&q=84") center / cover;
  display: flex;
  justify-content: center;
  margin-bottom: 22px;
}

.video-placeholder.second {
  background:
    linear-gradient(rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.42)),
    url("https://images.unsplash.com/photo-1606800052052-a08af7148866?auto=format&fit=crop&w=1200&q=84") center / cover;
}

.video-placeholder span {
  align-items: center;
  background: rgba(217, 179, 95, 0.95);
  border-radius: 50%;
  color: #0a0a0a;
  display: flex;
  font-weight: 900;
  height: 70px;
  justify-content: center;
  width: 70px;
}

.center-heading {
  margin: 0 auto 40px;
  max-width: 820px;
  text-align: center;
}

.package-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 390px;
  padding: 24px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.package-card.featured {
  background:
    linear-gradient(145deg, rgba(217, 179, 95, 0.14), rgba(255, 255, 255, 0.05));
  border-color: var(--gold);
  transform: translateY(-10px);
}

.package-card:hover {
  border-color: var(--gold);
  transform: translateY(-7px);
}

.package-card p {
  color: var(--gold);
  font-family: "Cinzel", serif;
  font-weight: 700;
  text-transform: uppercase;
}

.package-card strong {
  font-size: 22px;
}

.package-card ul {
  color: rgba(255, 255, 255, 0.72);
  list-style-position: inside;
}

.package-card a {
  border-top: 1px solid var(--line);
  color: var(--gold);
  font-weight: 900;
  margin-top: auto;
  padding-top: 18px;
  text-transform: uppercase;
}

.testimonials {
  background: var(--paper);
  color: var(--ink);
}

.testimonials .section-kicker {
  color: var(--gold-deep);
}

.testimonial-grid blockquote {
  background: #fff;
  border: 1px solid rgba(154, 117, 56, 0.16);
  border-top: 4px solid var(--gold);
  box-shadow: 0 20px 50px rgba(45, 35, 18, 0.08);
  color: #2b2925;
  font-family: "Playfair Display", serif;
  font-size: 24px;
  line-height: 1.34;
  padding: 26px;
}

.choose-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.choose-grid div {
  padding: 24px;
}

.choose-grid span {
  color: var(--gold);
  font-family: "Cinzel", serif;
  font-weight: 700;
}

.choose-grid h3 {
  margin: 16px 0 9px;
}

.faq {
  background: #fff;
  color: var(--ink);
}

.faq .section-kicker {
  color: var(--gold-deep);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  background: #f8f3e8;
  border: 1px solid #eadbbd;
  color: var(--ink);
  cursor: pointer;
  padding: 20px;
  text-align: left;
}

.faq-item span {
  display: block;
  font-weight: 900;
}

.faq-item p {
  color: #625b51;
  display: none;
  margin-top: 10px;
}

.faq-item.open p {
  display: block;
}

.contact {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.94), rgba(5, 5, 5, 0.78)),
    url("https://images.unsplash.com/photo-1519225421980-715cb0215aed?auto=format&fit=crop&w=1800&q=84") center / cover;
}

.contact-panel {
  align-items: start;
}

.contact-list {
  color: rgba(255, 255, 255, 0.72);
  list-style: none;
  margin: 24px 0;
}

iframe {
  border: 1px solid var(--line);
  filter: grayscale(1) contrast(1.08);
  height: 240px;
  width: 100%;
}

.contact-form {
  display: grid;
  gap: 15px;
  padding: 26px;
}

.contact-form label {
  color: var(--gold);
  display: grid;
  font-size: 12px;
  font-weight: 900;
  gap: 7px;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--white);
  outline: none;
  padding: 13px 15px;
  width: 100%;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
}

.footer {
  align-items: center;
  background: #030303;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.64);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  padding: 26px clamp(18px, 7vw, 96px);
}

.footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

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

.lightbox {
  align-items: center;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  flex-direction: column;
  inset: 0;
  justify-content: center;
  padding: 20px;
  position: fixed;
  z-index: 60;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  box-shadow: var(--shadow);
  max-height: 80vh;
  max-width: min(1000px, 92vw);
  object-fit: contain;
}

.lightbox p {
  color: var(--gold);
  font-weight: 900;
  margin-top: 12px;
}

.lightbox-close {
  background: var(--gold);
  border: 0;
  border-radius: 50%;
  color: #080808;
  cursor: pointer;
  font-size: 34px;
  height: 50px;
  line-height: 1;
  position: absolute;
  right: 18px;
  top: 18px;
  width: 50px;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

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

@media (max-width: 980px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    background: rgba(5, 5, 5, 0.98);
    border-left: 1px solid var(--line);
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    gap: 18px;
    min-height: calc(100vh - 66px);
    padding: 28px;
    position: absolute;
    right: 0;
    top: 66px;
    width: min(320px, 88vw);
  }

  .nav.open .nav-links {
    display: flex;
  }

  .nav-cta {
    display: none;
  }

  .split,
  .section-heading,
  .contact-panel,
  .film-grid,
  .package-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

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

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

  .package-card.featured {
    transform: none;
  }
}

@media (max-width: 640px) {
  .nav {
    background: rgba(5, 5, 5, 0.58);
    min-height: 60px;
    padding: 7px 15px;
  }

  .brand {
    gap: 0;
  }

  .brand-word strong {
    font-size: 25px;
  }

  .brand-word small {
    font-size: 8px;
    letter-spacing: 0.22em;
  }

  .menu-toggle {
    width: 38px;
  }

  .nav-links {
    min-height: calc(100vh - 60px);
    top: 60px;
  }

  .hero {
    align-items: center;
    background-position: 57% center;
    min-height: 100svh;
    padding: 84px 18px 34px;
  }

  .eyebrow,
  .section-kicker {
    font-size: 10px;
    letter-spacing: 0.16em;
  }

  h1 {
    font-size: clamp(40px, 13vw, 54px);
    max-width: 330px;
  }

  h2 {
    font-size: clamp(31px, 10vw, 42px);
  }

  h3 {
    font-size: 26px;
  }

  .hero-copy {
    font-size: 15px;
    line-height: 1.7;
    margin: 18px 0 22px;
    max-width: 310px;
  }

  .hero-actions,
  .contact-actions {
    display: grid;
    gap: 10px;
  }

  .btn,
  .hero-actions .btn,
  .contact-actions .btn {
    min-height: 46px;
    width: 100%;
  }

  .hero-card {
    margin-top: 22px;
    max-width: 100%;
    padding: 18px;
    position: relative;
    right: auto;
    bottom: auto;
  }

  .hero-card strong {
    font-size: 38px;
  }

  .section {
    padding: 62px 18px;
  }

  .section-heading {
    gap: 14px;
    margin-bottom: 24px;
  }

  .section-heading p {
    font-size: 15px;
  }

  .stats-grid,
  .choose-grid {
    grid-template-columns: 1fr;
  }

  .filter-bar {
    flex-wrap: nowrap;
    margin-left: -18px;
    margin-right: -18px;
    overflow-x: auto;
    padding: 0 18px 8px;
    scrollbar-width: none;
  }

  .filter-bar::-webkit-scrollbar {
    display: none;
  }

  .filter {
    padding: 9px 14px;
  }

  .gallery {
    gap: 12px;
    grid-template-columns: 1fr;
  }

  .gallery-item,
  .gallery-item.wide,
  .gallery-item.tall {
    aspect-ratio: 4 / 5;
    grid-column: auto;
    grid-row: auto;
  }

  .film-card,
  .package-card,
  .testimonial-grid blockquote,
  .contact-form {
    padding: 18px;
  }

  .testimonial-grid blockquote {
    font-size: 21px;
  }

  iframe {
    height: 210px;
  }
}
