/* ============================================================
   ETERNAL MOMENT FILMS — dark editorial luxury
   Ink/charcoal + deep olive, cream + champagne type.
   Display: Cormorant Garamond · Body: Jost
   ============================================================ */

:root {
  --ink: #111009;
  --ink-soft: #191712;
  --olive: #4b4830;
  --olive-deep: #34321f;
  --cream: #ece5d6;
  --cream-dim: #b9b2a0;
  --tan: #b3956b;
  --tan-soft: #c9b08a;
  --line: rgba(236, 229, 214, 0.16);

  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-body: "Jost", "Helvetica Neue", sans-serif;

  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-6: 24px;
  --space-8: 32px;
  --space-12: 48px;
  --space-16: 64px;
  --space-24: 96px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur-fast: 150ms;
  --dur-med: 300ms;
  --dur-slow: 700ms;

  --w-wide: 1280px;
  --w-text: 720px;
}

/* ---------- reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

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

body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.7;
  color: var(--cream);
  background: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

::selection {
  background: var(--tan);
  color: var(--ink);
}

:focus-visible {
  outline: 2px solid var(--tan-soft);
  outline-offset: 3px;
}

/* ---------- type ---------- */
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--tan-soft);
}

.h-display {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.6rem, 7vw, 5.4rem);
  line-height: 1.04;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cream);
}

.h-section {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2rem, 4.6vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--cream);
}

.h-display .it,
.h-section .it {
  font-style: italic;
  font-weight: 400;
  text-transform: lowercase;
  letter-spacing: 0.02em;
  color: var(--tan-soft);
}

.lede {
  font-size: 1.05rem;
  color: var(--cream-dim);
  max-width: 56ch;
}

.measure {
  max-width: var(--w-text);
}

/* ---------- layout ---------- */
.wrap {
  width: min(var(--w-wide), 92vw);
  margin-inline: auto;
}

.section {
  padding-block: clamp(72px, 11vw, 140px);
  position: relative;
}

.section--olive {
  background: var(--olive);
}

.section--olive .eyebrow {
  color: var(--cream);
  opacity: 0.75;
}

.section--olive .lede,
.section--olive p {
  color: rgba(236, 229, 214, 0.82);
}

.section--soft {
  background: var(--ink-soft);
}

.center {
  text-align: center;
}

.center .lede {
  margin-inline: auto;
}

/* big ellipse curve divider, as in the inspiration */
.curve {
  position: relative;
  height: clamp(40px, 8vw, 110px);
  overflow: hidden;
  pointer-events: none;
}

.curve::after {
  content: "";
  position: absolute;
  left: -10%;
  width: 120%;
  height: 200%;
  border-radius: 50%;
}

.curve--down::after {
  top: 0;
  background: var(--curve-color, var(--ink));
  transform: translateY(-50%);
}

.curve--up::after {
  bottom: 0;
  background: var(--curve-color, var(--ink));
  transform: translateY(50%);
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.9em 2.4em;
  background: var(--tan);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--tan);
  cursor: pointer;
  transition: background var(--dur-med) var(--ease-out),
    color var(--dur-med) var(--ease-out),
    border-color var(--dur-med) var(--ease-out);
}

.btn:hover {
  background: transparent;
  color: var(--tan-soft);
  border-color: var(--tan-soft);
}

.btn--ghost {
  background: transparent;
  color: var(--cream);
  border-color: var(--line);
}

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

.btn--sm {
  min-height: 40px;
  padding: 0.6em 1.7em;
  font-size: 0.66rem;
}

.text-link {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--cream);
  text-decoration: none;
  border-bottom: 1px solid var(--tan);
  padding-bottom: 4px;
  transition: color var(--dur-med) var(--ease-out);
  cursor: pointer;
}

.text-link:hover {
  color: var(--tan-soft);
}

/* ---------- header / nav ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  transition: background var(--dur-med) ease, box-shadow var(--dur-med) ease;
}

.site-header.scrolled {
  background: rgba(17, 16, 9, 0.92);
  box-shadow: 0 1px 0 var(--line);
}

/* blur lives on a pseudo-element: backdrop-filter on the header itself
   creates a containing block that traps the fixed mobile menu (the
   "menu doesn't open when scrolled" bug Dan found) */
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  opacity: 0;
  transition: opacity var(--dur-med) ease;
  pointer-events: none;
}

.site-header.scrolled::before {
  opacity: 1;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  padding-block: 18px;
}

.brand {
  text-decoration: none;
  text-align: center;
  line-height: 1.2;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cream);
  white-space: nowrap;
}

.brand-sub {
  display: block;
  font-family: var(--font-body);
  font-size: 0.55rem;
  font-weight: 400;
  letter-spacing: 0.52em;
  text-transform: uppercase;
  color: var(--tan-soft);
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.4vw, 34px);
  list-style: none;
}

.nav-links a:not(.btn) {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--cream-dim);
  padding: 10px 2px;
  transition: color var(--dur-med) ease;
}

.nav-links a:not(.btn):hover,
.nav-links a:not(.btn)[aria-current="page"] {
  color: var(--cream);
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 12px;
  z-index: 60;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 1px;
  background: var(--cream);
  margin: 7px 0;
  transition: transform var(--dur-med) var(--ease-out), opacity var(--dur-med);
}

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

  .nav-links {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    background: rgba(17, 16, 9, 0.98);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--dur-med) ease, visibility var(--dur-med);
  }

  .nav-links.open {
    opacity: 1;
    visibility: visible;
  }

  .nav-links a:not(.btn) {
    font-size: 0.9rem;
  }

  body.nav-open {
    overflow: hidden;
  }

  body.nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  body.nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  body.nav-open .nav-toggle span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
  isolation: isolate;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: -8% 0;
  z-index: -2;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.02) brightness(0.9);
}

/* background film loops (lazy-loaded on desktop, image fallback elsewhere) */
.hero-bg video,
.quote-bg video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85) brightness(0.9);
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero-bg video.ready,
.quote-bg video.ready {
  opacity: 1;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    to bottom,
    rgba(17, 16, 9, 0.55) 0%,
    rgba(17, 16, 9, 0.18) 40%,
    rgba(17, 16, 9, 0.62) 78%,
    var(--ink) 100%
  );
}

.hero-content {
  padding-bottom: clamp(90px, 16vh, 170px);
}

.hero-content .eyebrow {
  display: block;
  margin-bottom: var(--space-6);
}

.hero-sub {
  margin-top: var(--space-6);
  font-size: 0.78rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--cream-dim);
}

.hero-cta {
  margin-top: var(--space-8);
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
}

/* page hero (inner pages) */
.page-hero {
  position: relative;
  min-height: 62svh;
  display: flex;
  align-items: flex-end;
  isolation: isolate;
  overflow: hidden;
  text-align: center;
}

.page-hero .hero-content {
  width: 100%;
  padding-bottom: clamp(56px, 9vh, 110px);
}

/* ---------- marquee ---------- */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding-block: 14px;
  overflow: hidden;
  background: var(--ink);
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 3.2em;
  animation: marquee 36s linear infinite;
}

.marquee span {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--cream-dim);
  white-space: nowrap;
}

.marquee b {
  color: var(--tan-soft);
  font-weight: 400;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation: none;
  }
}

/* ---------- films grid ---------- */
.films-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.6vw, 34px);
  margin-top: clamp(40px, 6vw, 72px);
}

.film-card {
  text-decoration: none;
  text-align: center;
  display: block;
  cursor: pointer;
}

.film-media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.films-grid--wide .film-media {
  aspect-ratio: 16 / 10;
}

.film-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85) brightness(0.94);
  transition: transform 1.1s var(--ease-out), filter 0.6s ease;
}

.film-card:hover .film-media img {
  transform: scale(1.05);
  filter: saturate(0.95) brightness(1);
}

.film-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17, 16, 9, 0.42), transparent 45%);
}

.film-tag {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  font-size: 0.58rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(236, 229, 214, 0.85);
}

.film-title {
  margin-top: var(--space-4);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
  line-height: 1.25;
}

.film-card .btn {
  margin-top: var(--space-3);
}

@media (max-width: 900px) {
  .films-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 580px) {
  .films-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-inline: auto;
  }
}

/* ---------- film embed facade (films page) ---------- */
.embed {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--ink-soft);
  cursor: pointer;
  border: 0;
  padding: 0;
  display: block;
  width: 100%;
}

.embed img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85) brightness(0.85);
  transition: transform 1.1s var(--ease-out), filter 0.6s ease;
}

.embed:hover img {
  transform: scale(1.04);
  filter: saturate(0.95) brightness(0.95);
}

.embed .play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 76px;
  height: 76px;
  border-radius: 50%;
  border: 1px solid rgba(236, 229, 214, 0.7);
  background: rgba(17, 16, 9, 0.35);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  display: grid;
  place-items: center;
  transition: background var(--dur-med) ease, transform var(--dur-med) var(--ease-out);
}

.embed:hover .play {
  background: rgba(179, 149, 107, 0.85);
  transform: translate(-50%, -50%) scale(1.06);
}

.embed .play svg {
  width: 22px;
  height: 22px;
  fill: var(--cream);
  margin-left: 3px;
}

.embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.film-entry {
  margin-top: clamp(48px, 7vw, 88px);
}

.film-entry .film-title {
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
}

.film-entry .film-loc {
  margin-top: 6px;
  font-size: 0.66rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--cream-dim);
  text-align: center;
}

/* ---------- quote / testimonial section ---------- */
.quote-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  text-align: center;
  padding-block: clamp(110px, 16vw, 200px);
}

.quote-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.quote-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.7) brightness(0.85);
}

.quote-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(17, 16, 9, 0.68);
}

.quote-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.1;
}

.quote-title::before {
  content: "\201C";
}

.quote-title::after {
  content: "\201D";
}

.quote-body {
  max-width: 58ch;
  margin: var(--space-8) auto 0;
  color: rgba(236, 229, 214, 0.88);
  font-size: 1rem;
}

.quote-credit {
  margin-top: var(--space-6);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--tan-soft);
}

/* ---------- split sections (image + text) ---------- */
.split {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}

.split--flip {
  grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
}

.split--flip .split-media {
  order: 2;
}

.split-media {
  position: relative;
}

.split-media img {
  width: 100%;
  height: auto;
  filter: saturate(0.85);
}

.split-media--arch img {
  border-radius: 999px 999px 0 0;
}

.split-body .eyebrow {
  display: block;
  margin-bottom: var(--space-4);
}

.split-body .h-section {
  margin-bottom: var(--space-6);
}

.split-body p + p {
  margin-top: var(--space-4);
}

.split-body .btn,
.split-body .text-link {
  margin-top: var(--space-8);
}

@media (max-width: 860px) {
  .split,
  .split--flip {
    grid-template-columns: 1fr;
  }

  .split--flip .split-media {
    order: 0;
  }

  .split-media {
    max-width: 460px;
    margin-inline: auto;
  }
}

/* ---------- package / feature list ---------- */
.package-list {
  margin-top: clamp(40px, 5vw, 64px);
  border-top: 1px solid var(--line);
}

.package-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(20px, 4vw, 56px);
  align-items: baseline;
  padding-block: clamp(24px, 3.4vw, 40px);
  border-bottom: 1px solid var(--line);
}

.package-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--tan-soft);
  min-width: 2.4em;
}

.package-name {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.package-desc {
  margin-top: var(--space-2);
  color: var(--cream-dim);
  max-width: 60ch;
}

/* ---------- stats / detail rows ---------- */
.detail-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--space-6);
  padding-block: var(--space-6);
  border-bottom: 1px solid var(--line);
}

.detail-row dt {
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--cream-dim);
}

.detail-row dd {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.06em;
  text-align: right;
}

/* ---------- forms ---------- */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6) var(--space-6);
  margin-top: clamp(36px, 5vw, 56px);
}

.field {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.field--full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 0.66rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--cream-dim);
}

.field input,
.field select,
.field textarea {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1.05rem;
  padding: 12px 2px;
  border-radius: 0;
  transition: border-color var(--dur-med) ease;
}

.field select {
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
}

.field select option {
  background: var(--ink-soft);
  color: var(--cream);
}

.field textarea {
  min-height: 130px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--tan);
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(185, 178, 160, 0.5);
}

.form-actions {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: var(--space-6);
  flex-wrap: wrap;
  margin-top: var(--space-4);
}

.form-note {
  font-size: 0.85rem;
  color: var(--cream-dim);
}

.form-status {
  grid-column: 1 / -1;
  font-size: 0.9rem;
  color: var(--tan-soft);
  min-height: 1.4em;
}

.hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

@media (max-width: 640px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- footer ---------- */
.site-footer {
  background: var(--ink);
  border-top: 1px solid var(--line);
  padding: clamp(56px, 8vw, 90px) 0 36px;
  text-align: center;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.4vw, 2.6rem);
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.footer-tag {
  margin-top: var(--space-3);
  font-size: 0.66rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--tan-soft);
}

.footer-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(16px, 3vw, 36px);
  list-style: none;
  margin-top: var(--space-8);
}

.footer-nav a {
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--cream-dim);
  padding: 8px 2px;
  transition: color var(--dur-med) ease;
}

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

.footer-meta {
  margin-top: var(--space-8);
  font-size: 0.8rem;
  color: var(--cream-dim);
}

.footer-meta a {
  color: var(--cream);
  text-decoration: none;
  border-bottom: 1px solid var(--tan);
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: var(--space-6);
  margin-top: var(--space-6);
}

.footer-social a {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: border-color var(--dur-med) ease;
}

.footer-social a:hover {
  border-color: var(--tan-soft);
}

.footer-social svg {
  width: 16px;
  height: 16px;
  fill: var(--cream-dim);
}

.footer-fine {
  margin-top: var(--space-8);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: rgba(185, 178, 160, 0.55);
}

/* ---------- reveal animations (gated by html.js) ---------- */
html.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--dur-slow) var(--ease-out),
    transform var(--dur-slow) var(--ease-out);
  transition-delay: calc(var(--ri, 0) * 90ms);
}

html.js .reveal.in {
  opacity: 1;
  transform: none;
}

html.js [data-split] .w {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}

html.js [data-split] .w > span {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 0.9s var(--ease-out);
  transition-delay: calc(var(--wi) * 60ms);
}

html.js [data-split].in .w > span {
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html.js .reveal,
  html.js [data-split] .w > span {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ---------- misc ---------- */
.sep {
  display: block;
  width: 1px;
  height: 56px;
  margin: var(--space-8) auto 0;
  background: linear-gradient(to bottom, var(--tan), transparent);
}

.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 100;
  background: var(--tan);
  color: var(--ink);
  padding: 12px 20px;
  text-decoration: none;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
}

/* ============================================================
   V2 — Dan's feedback round (July 2026)
   ============================================================ */

/* ---------- real logo replaces text wordmark ---------- */
.brand-logo {
  height: 54px;
  width: auto;
  display: block;
}

.footer-logo {
  height: 52px;
  width: auto;
  margin-inline: auto;
  display: block;
}

/* ---------- flat page heroes (no background image) ---------- */
.page-hero--flat {
  min-height: 0;
  padding: calc(96px + 10vh) 0 48px;
  background: var(--ink);
}

.page-hero--flat .hero-content {
  padding-bottom: 0;
}

/* ---------- reviews carousel ---------- */
.reviews {
  background: var(--ink);
  padding: var(--space-9, 96px) 0;
  text-align: center;
  position: relative;
}

.reviews-viewport {
  overflow: hidden;
  max-width: 880px;
  margin-inline: auto;
}

.reviews-track {
  display: flex;
  transition: transform 500ms cubic-bezier(0.16, 1, 0.3, 1);
}

.review-slide {
  flex: 0 0 100%;
  padding: 0 24px;
}

.reviews .quote-title {
  margin-bottom: 24px;
}

.reviews-nav {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 40px;
}

.reviews-arrow {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: none;
  color: var(--cream, #f4efe8);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: border-color 200ms ease, background 200ms ease;
}

.reviews-arrow:hover {
  border-color: var(--tan);
  background: rgba(255, 255, 255, 0.05);
}

.reviews-arrow svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.reviews-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 20px;
}

.reviews-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  transition: background 200ms ease;
}

.reviews-dots span.on {
  background: var(--tan);
}

/* ---------- films page: three videos per couple ---------- */
.film-set {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 28px;
}

@media (max-width: 760px) {
  .film-set {
    grid-template-columns: 1fr;
  }
}

.film-set-item .embed {
  margin-top: 0;
}

.film-set-label {
  display: block;
  text-align: center;
  font-family: "Jost", sans-serif;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--tan);
  margin-bottom: 12px;
}

.film-set-item .soon {
  aspect-ratio: 16 / 9;
  border: 1px dashed rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.45);
  font-family: "Jost", sans-serif;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* ---------- pricing: clickable package titles + video lightbox ---------- */
.package-name[data-example] {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid transparent;
  transition: border-color 200ms ease, color 200ms ease;
}

.package-name[data-example]:hover {
  color: var(--tan);
  border-bottom-color: var(--tan);
}

.package-name[data-example]::after {
  content: "";
  width: 22px;
  height: 22px;
  flex: none;
  background: currentColor;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20zm-2 14.5v-9l7 4.5-7 4.5z"/></svg>') center / contain no-repeat;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20zm-2 14.5v-9l7 4.5-7 4.5z"/></svg>') center / contain no-repeat;
  opacity: 0.7;
}

.video-lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(10, 10, 8, 0.94);
}

.video-lightbox.open {
  display: flex;
}

.video-lightbox .vl-frame {
  width: min(1000px, 100%);
  aspect-ratio: 16 / 9;
  background: #000;
}

.video-lightbox iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-lightbox .vl-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  font-size: 22px;
  cursor: pointer;
}

/* ---------- WhatsApp CTA on the enquiry form ---------- */
.whatsapp-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  padding: 14px 22px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 2px;
  color: var(--cream, #f4efe8);
  text-decoration: none;
  font-family: "Jost", sans-serif;
  font-size: 14px;
  letter-spacing: 0.04em;
  transition: border-color 200ms ease, background 200ms ease;
}

.whatsapp-cta:hover {
  border-color: #25d366;
  background: rgba(37, 211, 102, 0.08);
}

.whatsapp-cta svg {
  width: 22px;
  height: 22px;
  fill: #25d366;
  flex: none;
}


/* ---------- v2.1 mobile refinements (Dan's mobile feedback) ---------- */
@media (max-width: 640px) {
  .page-hero--flat {
    padding: calc(64px + 4vh) 0 16px;
  }

  .page-hero--flat + .section {
    padding-top: 8px;
  }
}
