:root {
  --black: #090807;
  --charcoal: #151413;
  --charcoal-soft: #24211e;
  --ivory: #f4efe6;
  --ivory-deep: #e5dccd;
  --beige: #b4a28d;
  --gray: #b8b4ad;
  --white: #fffaf1;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
  --site-pad: clamp(22px, 3.4vw, 58px);
  --image-filter: saturate(0.65) contrast(0.95) brightness(0.82);
  --hero-image-filter: saturate(0.58) contrast(0.94) brightness(0.76);
  --inline-image-filter: saturate(0.62) contrast(0.94) brightness(0.84);
  --portfolio-image-filter: saturate(0.64) contrast(0.96) brightness(0.82);
  --portfolio-hover-filter: saturate(0.72) contrast(0.98) brightness(0.9);
}

body.image-style-black-and-white {
  --image-filter: grayscale(1) contrast(1.03) brightness(0.82);
  --hero-image-filter: grayscale(1) contrast(1.08) brightness(0.74);
  --inline-image-filter: grayscale(1) contrast(1.02) brightness(0.84);
  --portfolio-image-filter: grayscale(1) contrast(1.03) brightness(0.84);
  --portfolio-hover-filter: grayscale(1) contrast(1.06) brightness(0.92);
}

body.image-style-natural-color {
  --image-filter: saturate(0.95) contrast(0.98) brightness(0.92);
  --hero-image-filter: saturate(0.9) contrast(0.98) brightness(0.82);
  --inline-image-filter: saturate(0.9) contrast(0.98) brightness(0.92);
  --portfolio-image-filter: saturate(0.9) contrast(0.98) brightness(0.9);
  --portfolio-hover-filter: saturate(0.96) contrast(1) brightness(0.98);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--charcoal);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.75;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  min-height: 72px;
  display: flex;
  align-items: center;
  padding: 14px var(--site-pad);
  color: var(--white);
  transition: background 260ms ease, border-color 260ms ease, box-shadow 260ms ease, backdrop-filter 260ms ease;
}

.site-header::after {
  display: none;
}

.site-header.is-scrolled,
.site-header.menu-open {
  background: rgba(9, 8, 7, 0.76);
  border-bottom: 1px solid rgba(255, 250, 241, 0.12);
  box-shadow: 0 18px 48px rgba(9, 8, 7, 0.18);
  backdrop-filter: blur(12px);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
}

.brand {
  position: absolute;
  left: var(--site-pad);
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

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

.brand picture {
  display: inline-flex;
  align-items: center;
}

.mobile-header-logo-only {
  display: none;
}

.header-logo-text {
  display: inline-block;
  max-width: 210px;
  color: currentColor;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  white-space: normal;
}

.footer-brand img {
  width: 158px;
  height: auto;
}

.primary-nav {
  display: flex;
  justify-content: center;
  gap: clamp(26px, 3.5vw, 52px);
  width: min(760px, calc(100vw - 430px));
  margin: 0 auto;
}

.primary-nav a,
.header-inquire,
.eyebrow,
.text-link,
.button,
.footer-links a,
.inquiry-form span {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.primary-nav a {
  color: rgba(255, 250, 241, 0.78);
}

.primary-nav a.active,
.primary-nav a:hover {
  color: var(--white);
}

.primary-nav a.active {
  border-bottom: 1px solid rgba(255, 250, 241, 0.86);
  padding-bottom: 8px;
}

.header-inquire {
  position: absolute;
  right: var(--site-pad);
  top: 50%;
  transform: translateY(-50%);
  min-width: 102px;
  padding: 10px 18px;
  border: 1px solid rgba(255, 250, 241, 0.42);
  text-align: center;
}

.header-inquire:hover {
  background: var(--white);
  color: var(--black);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 250, 241, 0.35);
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 6px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: clamp(560px, 58vw, 760px);
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  transform: scale(1.01);
}

.hero-media img,
.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 64% center;
  filter: var(--hero-image-filter);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(9, 8, 7, 0.9) 0%, rgba(9, 8, 7, 0.66) 27%, rgba(9, 8, 7, 0.16) 62%, rgba(9, 8, 7, 0.5) 100%),
    linear-gradient(180deg, rgba(59, 45, 34, 0.22), rgba(9, 8, 7, 0.56));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(360px, calc(100% - 40px));
  margin-left: clamp(70px, 13.5vw, 180px);
  padding: 92px 0 46px;
  text-align: center;
}

.ovela-mark {
  display: block;
}

.hero-mark {
  width: clamp(118px, 13vw, 168px);
  margin: 0 auto 30px;
  color: rgba(255, 250, 241, 0.94);
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--beige);
}

h1,
h2,
h3,
.quote {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(36px, 3.6vw, 52px);
  line-height: 0.98;
}

h1 em,
h2 em {
  font-style: italic;
}

.hero-subtitle {
  max-width: 300px;
  margin: 28px auto 28px;
  color: rgba(255, 250, 241, 0.8);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.34em;
  line-height: 2;
  text-transform: uppercase;
}

.text-link {
  display: inline-block;
  padding-bottom: 7px;
  border-bottom: 1px solid currentColor;
  color: var(--charcoal);
}

.text-link-light {
  color: var(--white);
}

.section {
  padding: clamp(82px, 12vw, 150px) var(--site-pad);
}

.about-preview {
  padding-top: clamp(42px, 5.2vw, 72px);
  padding-bottom: clamp(42px, 5.2vw, 72px);
  background:
    radial-gradient(circle at 82% 50%, rgba(180, 162, 141, 0.12), transparent 28%),
    var(--ivory);
}

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

.section-dark {
  background: var(--black);
  color: var(--white);
}

.split-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.92fr) minmax(300px, 0.95fr) minmax(180px, 0.56fr);
  align-items: center;
  gap: clamp(44px, 5vw, 80px);
  max-width: 1120px;
  margin: 0 auto;
}

.image-frame {
  border: 0;
  padding: 0;
  background: transparent;
}

.image-frame img {
  width: 100%;
  aspect-ratio: 2 / 1;
  min-height: 0;
  object-fit: cover;
  filter: var(--inline-image-filter);
}

.about-preview .image-frame img {
  filter: none;
}

.copy-panel {
  position: relative;
}

.about-preview .copy-panel {
  padding-top: 4px;
}

.copy-panel h2,
.section-heading h2,
.cta-inner h2,
.narrow-copy h2,
.detail-card h2,
.contact-panel h2,
.journal-entry h2 {
  font-size: clamp(26px, 2.5vw, 38px);
  line-height: 1.02;
}

.copy-panel p:not(.eyebrow),
.narrow-copy p,
.contact-panel p {
  max-width: 420px;
  color: #4c4740;
}

.about-preview .copy-panel p:not(.eyebrow) {
  font-size: 12px;
  line-height: 1.85;
}

.watermark-mark {
  position: absolute;
  left: calc(100% + clamp(52px, 7vw, 100px));
  top: 50%;
  width: min(220px, 26vw);
  opacity: 0.08;
  transform: translateY(-50%);
  pointer-events: none;
}

.section-heading {
  max-width: 920px;
  margin: 0 auto clamp(42px, 7vw, 82px);
  text-align: center;
}

.services-preview .section-heading h2,
.experience-preview .section-heading h2 {
  color: var(--white);
}

.services-preview,
.experience-preview {
  padding-top: 28px;
  padding-bottom: 28px;
}

.services-preview .section-heading,
.experience-preview .section-heading {
  margin-bottom: 32px;
}

.services-preview .section-heading h2,
.experience-preview .section-heading h2 {
  font-size: clamp(24px, 2.2vw, 34px);
}

.experience-preview .section-heading p:not(.eyebrow) {
  max-width: 660px;
  margin: 18px auto 0;
  color: rgba(255, 250, 241, 0.68);
  font-size: 14px;
  line-height: 1.9;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 7vw, 110px);
  max-width: 720px;
  margin: 0 auto;
  border-top: 0;
}

.service-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 0;
  border-bottom: 0;
}

.service-item h3 {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.28em;
  line-height: 1.4;
  text-transform: uppercase;
}

.service-item p {
  display: none;
}

.line-icon {
  flex: 0 0 auto;
  width: 23px;
  height: 23px;
  object-fit: contain;
}

.experience-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 3vw, 42px);
  max-width: 920px;
  margin: 0 auto;
}

.experience-pillar {
  border-top: 1px solid rgba(255, 250, 241, 0.22);
  padding-top: 22px;
}

.experience-pillar span,
.experience-timeline span {
  display: block;
  margin-bottom: 16px;
  color: var(--beige);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.28em;
}

.experience-pillar h3,
.experience-timeline h3,
.experience-element h3 {
  font-family: var(--serif);
  font-size: clamp(25px, 2.4vw, 36px);
  font-weight: 400;
  line-height: 1;
}

.experience-pillar p,
.experience-timeline p,
.experience-element p {
  margin-top: 14px;
  color: rgba(255, 250, 241, 0.65);
  font-size: 13px;
  line-height: 1.85;
}

.experience-preview .centered-action {
  margin-top: 38px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 26px);
  max-width: 1180px;
  margin: 0 auto;
}

.portfolio-grid-count-1 {
  grid-template-columns: minmax(320px, min(100%, 620px));
  justify-content: center;
  max-width: 760px;
}

.portfolio-grid-count-2 {
  grid-template-columns: repeat(2, minmax(280px, 520px));
  justify-content: center;
  max-width: 1080px;
}

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

.portfolio-videos-section {
  padding-bottom: clamp(28px, 5vw, 64px);
}

.portfolio-video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(16px, 2vw, 26px);
  max-width: 1180px;
  margin: 0 auto;
}

.portfolio-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: -26px auto 34px;
}

.portfolio-filter button {
  min-height: 38px;
  border: 1px solid rgba(21, 20, 19, 0.16);
  background: rgba(255, 250, 241, 0.72);
  color: var(--charcoal);
  cursor: pointer;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 10px 13px;
  text-transform: uppercase;
}

.portfolio-filter button.active,
.portfolio-filter button:hover {
  background: var(--charcoal);
  color: var(--white);
}

.portfolio-card,
.portfolio-video-card {
  position: relative;
  min-height: 410px;
  width: 100%;
  border: 0;
  overflow: hidden;
  background: var(--charcoal);
  color: inherit;
  cursor: pointer;
  font: inherit;
  padding: 0;
  text-align: left;
}

.portfolio-card img,
.portfolio-video-card img {
  width: 100%;
  height: 100%;
  min-height: 410px;
  object-fit: cover;
  filter: none;
  transition: transform 700ms ease;
}

.portfolio-grid-count-1 .portfolio-card,
.portfolio-grid-count-1 .portfolio-card img {
  min-height: clamp(500px, 56vw, 700px);
}

.portfolio-grid-count-2 .portfolio-card,
.portfolio-grid-count-2 .portfolio-card img {
  min-height: clamp(460px, 42vw, 610px);
}

.portfolio-card::after,
.portfolio-video-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(9, 8, 7, 0) 48%, rgba(9, 8, 7, 0.58) 100%),
    rgba(9, 8, 7, 0.08);
  pointer-events: none;
  transition: opacity 300ms ease;
}

.portfolio-card span,
.portfolio-video-meta {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  z-index: 2;
  display: block;
  color: var(--white);
  font-family: var(--serif);
  font-size: 30px;
  line-height: 1;
  pointer-events: none;
  transform: translateY(0);
  transition: opacity 300ms ease, transform 300ms ease;
}

.portfolio-video-meta {
  font-size: 22px;
  opacity: 1;
  transform: translateY(0);
}

.portfolio-card small,
.portfolio-video-meta small {
  display: block;
  margin-top: 10px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.portfolio-video-play {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 2;
  display: inline-grid;
  place-items: center;
  min-width: 84px;
  min-height: 84px;
  border: 1px solid rgba(255, 250, 241, 0.75);
  border-radius: 50%;
  color: var(--white);
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.unified-film-card {
  background: #090807;
}

.unified-film-card .portfolio-category-badge {
  display: none;
}

.portfolio-card:hover img,
.portfolio-video-card:hover img {
  transform: scale(1.05);
}

.centered-action {
  margin-top: 52px;
  text-align: center;
}

.film-modal[hidden] {
  display: none;
}

.film-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px;
}

.film-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(9, 8, 7, 0.76);
}

.film-modal-panel {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  max-height: calc(100vh - 48px);
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.65fr);
  background: #090807;
  color: var(--white);
  overflow: auto;
}

.film-modal-media {
  min-height: min(70vh, 680px);
  background: var(--black);
}

.film-modal-media img,
.film-modal-media iframe,
.film-modal-media video {
  width: 100%;
  height: 100%;
  min-height: min(70vh, 680px);
  display: block;
  border: 0;
  object-fit: cover;
}

.film-modal-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 4vw, 52px);
}

.film-modal-copy h2 {
  font-size: clamp(34px, 4vw, 54px);
  line-height: 0.98;
}

.film-modal-copy p:not(.eyebrow) {
  color: rgba(255, 250, 241, 0.72);
}

.film-modal-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
}

.film-modal-actions .button {
  margin-top: 0;
}

.film-modal-actions .text-link {
  color: var(--white);
}

.film-modal-fallback {
  min-height: min(70vh, 680px);
  display: grid;
  place-items: center;
  color: var(--white);
  padding: 28px;
  text-align: center;
}

.film-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 3;
  border: 1px solid rgba(255, 250, 241, 0.7);
  background: rgba(9, 8, 7, 0.72);
  color: var(--white);
  cursor: pointer;
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
  padding: 10px 12px;
  text-transform: uppercase;
}

.film-modal-open {
  overflow: hidden;
}

.testimonial {
  min-height: 520px;
  display: grid;
  place-items: center;
  text-align: center;
}

.quote-wrap {
  max-width: 980px;
}

.quote {
  font-size: clamp(44px, 7vw, 92px);
  line-height: 1;
}

.ovela-promise {
  min-height: 420px;
}

.ovela-promise .quote-wrap {
  max-width: 920px;
}

.ovela-promise .quote {
  font-size: clamp(34px, 4.8vw, 68px);
  line-height: 1.06;
}

.quote-name {
  margin-top: 28px;
  color: var(--beige);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.inquiry-cta {
  text-align: center;
}

.cta-inner {
  max-width: 860px;
  margin: 0 auto;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 34px;
  padding: 14px 24px;
  border: 1px solid currentColor;
  cursor: pointer;
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.72;
}

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

.button-dark:hover {
  background: var(--black);
}

.page-hero {
  position: relative;
  min-height: 70vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  text-align: center;
}

.page-hero img,
.page-hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.page-hero img {
  object-fit: cover;
  filter: var(--hero-image-filter);
}

.page-hero-overlay {
  background:
    linear-gradient(180deg, rgba(59, 45, 34, 0.22), rgba(9, 8, 7, 0.58)),
    rgba(9, 8, 7, 0.42);
}

.page-hero-content {
  position: relative;
  z-index: 1;
  width: min(860px, calc(100% - 40px));
  padding-top: 80px;
}

.page-hero-content p:not(.eyebrow) {
  max-width: 660px;
  margin: 28px auto 0;
  color: rgba(255, 250, 241, 0.78);
}

.narrow-copy,
.contact-panel {
  max-width: 860px;
  margin: 0 auto;
}

.about-founder-section {
  padding-top: clamp(70px, 9vw, 118px);
  padding-bottom: clamp(70px, 9vw, 118px);
}

.about-founder-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(320px, 0.9fr);
  align-items: center;
  gap: clamp(42px, 7vw, 108px);
  max-width: 1120px;
  margin: 0 auto;
}

.about-founder-image {
  margin: 0;
}

.about-founder-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: var(--inline-image-filter);
}

.about-founder-copy {
  margin: 0;
}

.founder-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin: 22px 0 34px;
  color: var(--beige);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.about-approach-label {
  margin-top: 8px;
}

.home-investment-cue {
  padding-top: clamp(46px, 6vw, 78px);
  padding-bottom: clamp(46px, 6vw, 78px);
  border-top: 1px solid rgba(21, 20, 19, 0.1);
  border-bottom: 1px solid rgba(21, 20, 19, 0.1);
}

.home-investment-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.home-investment-inner h2 {
  font-size: clamp(30px, 3.2vw, 48px);
  line-height: 1.02;
}

.home-investment-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 10px 18px;
  margin-top: 14px;
}

.home-investment-price span {
  color: #82786a;
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 400;
  line-height: 1;
  text-decoration: line-through;
  text-decoration-thickness: 1px;
}

.home-investment-price strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(58px, 8vw, 104px);
  font-weight: 400;
  line-height: 0.92;
}

.home-investment-inner p:not(.eyebrow) {
  max-width: 520px;
  margin: 18px auto 0;
  color: #565047;
}

.home-investment-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 16px 26px;
  margin-top: 26px;
}

.home-investment-actions .button {
  margin-top: 0;
}

.detail-list,
.journal-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  max-width: 1160px;
  margin: 0 auto;
  background: rgba(21, 20, 19, 0.16);
  border: 1px solid rgba(21, 20, 19, 0.16);
}

.detail-card,
.journal-entry {
  padding: clamp(28px, 4vw, 48px);
  background: var(--ivory);
}

.detail-card h2,
.journal-entry h2 {
  font-size: clamp(34px, 4vw, 52px);
}

.journal-entry p:not(.eyebrow),
.detail-card p:not(.eyebrow) {
  color: #565047;
}

.service-price {
  margin-top: 22px;
  color: var(--beige);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.legal-section {
  padding-top: clamp(64px, 8vw, 112px);
  padding-bottom: clamp(72px, 9vw, 124px);
}

.legal-content {
  max-width: 820px;
  margin: 0 auto;
}

.legal-content h2 {
  margin-top: clamp(34px, 4vw, 50px);
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.05;
}

.legal-content h2:first-of-type {
  margin-top: 24px;
}

.legal-content p {
  max-width: 720px;
  margin: 14px 0 0;
  color: #4c4740;
}

.legal-content a {
  border-bottom: 1px solid rgba(21, 20, 19, 0.28);
}

.legal-content a:hover {
  border-bottom-color: currentColor;
}

.experience-page .section {
  padding: clamp(42px, 5.4vw, 78px) var(--site-pad);
}

.experience-page .section-heading {
  max-width: 760px;
  margin-bottom: clamp(26px, 3.2vw, 42px);
}

.experience-page .section-heading h2 {
  font-size: clamp(30px, 3vw, 46px);
}

.experience-page .button {
  margin-top: 26px;
}

.experience-page .button-light {
  background: var(--white);
  color: var(--black);
}

.experience-page .button-light:hover {
  background: var(--beige);
}

.experience-hero {
  position: relative;
  min-height: min(560px, 58vh);
  display: grid;
  place-items: end start;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
  padding: clamp(112px, 11vw, 150px) var(--site-pad) clamp(42px, 5vw, 68px);
}

.experience-hero-media,
.experience-hero-overlay {
  position: absolute;
  inset: 0;
}

.experience-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: var(--hero-image-filter);
  opacity: 0.86;
  transform: scale(1.02);
}

.experience-hero-overlay {
  background:
    linear-gradient(90deg, rgba(9, 8, 7, 0.74), rgba(9, 8, 7, 0.3) 52%, rgba(9, 8, 7, 0.6)),
    linear-gradient(180deg, rgba(59, 45, 34, 0.18), rgba(9, 8, 7, 0.74));
}

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

.experience-hero-content h1 {
  font-size: clamp(52px, 7vw, 104px);
  font-weight: 400;
  line-height: 0.94;
}

.experience-hero-content p:not(.eyebrow) {
  max-width: 520px;
  margin-top: 18px;
  color: rgba(255, 250, 241, 0.8);
  font-size: clamp(17px, 1.5vw, 22px);
  line-height: 1.45;
}

.experience-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  max-width: 1180px;
  margin: 0 auto;
  list-style: none;
  counter-reset: none;
}

.experience-timeline li {
  min-height: 205px;
  border: 1px solid rgba(255, 250, 241, 0.16);
  background: rgba(255, 250, 241, 0.035);
  padding: clamp(22px, 2.4vw, 30px);
}

.experience-included .section-heading {
  max-width: 760px;
}

.experience-elements {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  max-width: 1180px;
  margin: 0 auto;
  border: 1px solid rgba(21, 20, 19, 0.1);
  background: rgba(21, 20, 19, 0.1);
}

.experience-element {
  min-height: 190px;
  background: var(--ivory);
  padding: clamp(22px, 2.6vw, 32px);
}

.experience-element p {
  color: #5c554c;
}

.experience-investment {
  text-align: center;
}

.investment-card {
  max-width: 860px;
  margin: 0 auto;
  border: 1px solid rgba(255, 250, 241, 0.18);
  padding: clamp(34px, 5vw, 62px);
  background: rgba(255, 250, 241, 0.035);
}

.investment-card h2 {
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.02;
}

.investment-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 10px 18px;
  margin-top: 18px;
}

.investment-price span {
  color: rgba(255, 250, 241, 0.5);
  font-family: var(--serif);
  font-size: clamp(34px, 5vw, 64px);
  font-weight: 400;
  line-height: 1;
  text-decoration: line-through;
  text-decoration-thickness: 1px;
}

.investment-price strong {
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(70px, 10vw, 126px);
  font-weight: 400;
  line-height: 0.9;
}

.investment-card p {
  max-width: 560px;
  margin: 16px auto 0;
  color: rgba(255, 250, 241, 0.7);
  font-size: 15px;
  line-height: 1.65;
}

.investment-card .investment-offer {
  color: var(--beige);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.investment-card .investment-summary {
  max-width: 650px;
}

.base-film-inclusions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  max-width: 720px;
  margin: 30px auto 0;
  padding: 0;
  list-style: none;
  text-align: left;
}

.base-film-inclusions li {
  position: relative;
  padding-left: 18px;
  color: rgba(255, 250, 241, 0.82);
  font-size: 0.98rem;
}

.base-film-inclusions li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--beige);
}

.investment-addons {
  max-width: 780px;
  margin: 34px auto 0;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 250, 241, 0.16);
}

.addon-list {
  display: grid;
  gap: 1px;
  margin-top: 16px;
  background: rgba(255, 250, 241, 0.13);
  border: 1px solid rgba(255, 250, 241, 0.13);
  text-align: left;
}

.addon-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: start;
  background: rgba(17, 16, 15, 0.72);
  padding: 18px 20px;
}

.addon-item h3,
.addon-item p {
  margin: 0;
}

.addon-item h3 {
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.addon-item p {
  margin-top: 6px;
  color: rgba(255, 250, 241, 0.62);
  font-size: 0.9rem;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.addon-inclusions {
  display: grid;
  gap: 6px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.addon-inclusions li {
  position: relative;
  padding-left: 16px;
  color: rgba(255, 250, 241, 0.72);
  font-size: 0.86rem;
  line-height: 1.45;
}

.addon-inclusions li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.64em;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: rgba(203, 176, 128, 0.8);
}

.addon-price {
  display: grid;
  justify-items: end;
  gap: 4px;
}

.addon-price span {
  color: rgba(255, 250, 241, 0.44);
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-decoration: line-through;
  text-decoration-thickness: 1px;
  white-space: nowrap;
}

.addon-price strong {
  color: var(--beige);
  font-family: var(--sans);
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-align: right;
  white-space: nowrap;
}

.investment-card .investment-note {
  max-width: 680px;
  margin-top: 22px;
  color: rgba(255, 250, 241, 0.66);
  font-size: 0.92rem;
}

.investment-card small {
  display: block;
  margin-top: 18px;
  color: var(--beige);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.7;
  text-transform: uppercase;
}

.investment-notes {
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 250, 241, 0.16);
}

.experience-faq-preview .faq-list {
  margin-bottom: 0;
}

.experience-faq-preview .faq-item {
  padding: 0;
}

.experience-faq-preview summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: clamp(20px, 2.8vw, 30px);
  color: var(--charcoal);
  font-family: var(--serif);
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.1;
  cursor: pointer;
  list-style: none;
}

.experience-faq-preview summary::-webkit-details-marker {
  display: none;
}

.experience-faq-preview summary::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--beige);
  font-family: var(--sans);
  font-size: 24px;
  line-height: 1;
}

.experience-faq-preview details[open] summary::after {
  content: "-";
}

.experience-faq-preview .faq-item p {
  max-width: 760px;
  margin: 0;
  padding: 0 clamp(20px, 2.8vw, 30px) clamp(20px, 2.8vw, 30px);
  color: #5f584e;
}

.experience-final-cta {
  border-top: 1px solid rgba(21, 20, 19, 0.12);
  text-align: center;
}

.contact-panel {
  text-align: center;
}

.contact-panel a:not(.button) {
  border-bottom: 1px solid currentColor;
}

.inquiry-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 920px;
  margin: 0 auto;
}

.inquiry-form label {
  display: grid;
  gap: 10px;
}

.inquiry-form .full {
  grid-column: 1 / -1;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(21, 20, 19, 0.18);
  border-radius: 0;
  background: rgba(255, 250, 241, 0.52);
  color: var(--charcoal);
  font: inherit;
  padding: 15px 16px;
}

textarea {
  resize: vertical;
}

.booking-section {
  padding-top: clamp(56px, 7vw, 92px);
}

.availability-check {
  max-width: 860px;
  margin: 0 auto 42px;
  border: 1px solid rgba(21, 20, 19, 0.14);
  background: rgba(255, 250, 241, 0.56);
  padding: clamp(22px, 3vw, 34px);
  text-align: center;
}

.availability-check h2 {
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1;
}

.availability-check-form {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 22px;
}

.availability-check-form input {
  max-width: 280px;
}

.availability-check-form .button {
  margin-top: 0;
}

.availability-result {
  margin-top: 18px;
  border: 1px solid rgba(21, 20, 19, 0.14);
  padding: 16px;
}

.availability-result.available {
  border-color: rgba(34, 80, 42, 0.3);
  background: rgba(231, 243, 230, 0.72);
}

.availability-result.unavailable {
  border-color: rgba(116, 34, 29, 0.22);
  background: rgba(247, 225, 221, 0.7);
}

.availability-result p {
  margin: 0;
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: clamp(28px, 4vw, 56px);
  max-width: 1160px;
  margin: 0 auto;
}

.booking-calendar-panel,
.booking-form-panel {
  border: 1px solid rgba(21, 20, 19, 0.14);
  background: rgba(255, 250, 241, 0.48);
  padding: clamp(22px, 3vw, 36px);
}

.booking-calendar-head {
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.booking-calendar-head h2,
.booking-form-panel h2 {
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1;
  text-align: center;
}

.booking-form-panel h2 {
  text-align: left;
}

.current-offer {
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(21, 20, 19, 0.14);
  padding-bottom: 28px;
}

.current-offer h2 {
  margin-bottom: 12px;
}

.current-offer-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 14px;
  margin-bottom: 10px;
}

.current-offer-price span {
  color: #8a7f71;
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 400;
  line-height: 1;
  text-decoration: line-through;
  text-decoration-thickness: 1px;
}

.current-offer-price strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 400;
  line-height: 1;
}

.current-offer p {
  margin: 0 0 10px;
  color: var(--charcoal);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.current-offer small {
  display: block;
  margin-top: 8px;
  color: #665f55;
}

.booking-confidence {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 24px 0 26px;
  border: 1px solid rgba(21, 20, 19, 0.12);
  background: rgba(21, 20, 19, 0.12);
}

.booking-confidence article {
  background: rgba(255, 250, 241, 0.62);
  padding: 18px;
}

.booking-confidence h3 {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.booking-confidence p {
  margin: 10px 0 0;
  color: #5f584e;
  font-size: 13px;
  line-height: 1.55;
}

.offer-spots {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 14px 0 16px;
}

.offer-spots span {
  width: 30px;
  height: 6px;
  border: 1px solid rgba(21, 20, 19, 0.28);
  background: transparent;
}

.offer-spots span.claimed {
  border-color: var(--charcoal);
  background: var(--charcoal);
}

.calendar-nav-button {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(21, 20, 19, 0.18);
  background: var(--charcoal);
  color: var(--white);
  cursor: pointer;
  font: inherit;
}

.calendar-weekdays,
.booking-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: clamp(4px, 1vw, 8px);
  width: 100%;
}

.calendar-weekdays {
  margin-bottom: 8px;
}

.calendar-weekdays span {
  color: #6c6459;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.calendar-day {
  aspect-ratio: 1;
  width: 100%;
  min-width: 0;
  min-height: 0;
  display: grid;
  grid-template-rows: auto auto;
  align-content: center;
  justify-items: center;
  gap: 4px;
  border: 1px solid rgba(21, 20, 19, 0.14);
  background: rgba(255, 250, 241, 0.82);
  color: var(--charcoal);
  cursor: pointer;
  font: inherit;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.calendar-day-number,
.calendar-day-label {
  display: block;
  line-height: 1;
}

.calendar-day-label {
  max-width: calc(100% - 4px);
  color: #7b7368;
  font-size: clamp(6px, 1.05vw, 9px);
  font-weight: 700;
  letter-spacing: 0;
  overflow: hidden;
  text-overflow: clip;
  text-transform: uppercase;
  white-space: normal;
  word-break: normal;
}

.calendar-day:not(:disabled):hover {
  border-color: var(--charcoal);
  background: var(--charcoal);
  color: var(--white);
}

.calendar-day.selected,
.calendar-day.selected:not(:disabled) {
  border-color: var(--charcoal);
  background: var(--charcoal);
  color: var(--white);
}

.calendar-day.unavailable {
  background: rgba(21, 20, 19, 0.08);
  color: rgba(21, 20, 19, 0.34);
  cursor: not-allowed;
}

.calendar-day .available-label {
  color: #315b37;
}

.calendar-day.selected .available-label {
  color: rgba(255, 250, 241, 0.76);
}

.calendar-day .past-label {
  color: rgba(21, 20, 19, 0.32);
}

.calendar-day .closed-label {
  color: #6d5e4d;
  font-size: 8px;
}

.calendar-day:not(:disabled) {
  border-color: rgba(49, 91, 55, 0.2);
  background: rgba(255, 250, 241, 0.94);
}

.calendar-day.unavailable .calendar-day-number {
  text-decoration: line-through;
}

.calendar-day.spacer {
  border: 0;
  background: transparent;
  pointer-events: none;
}

.calendar-status,
.booking-help,
.booking-confirmation {
  color: #5f584e;
}

.booking-process {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  background: rgba(255, 250, 241, 0.18);
}

.booking-process li {
  display: grid;
  gap: 14px;
  min-height: 150px;
  align-content: center;
  background: var(--black);
  padding: 24px;
  text-align: center;
}

.booking-process span {
  color: var(--beige);
  font-family: var(--serif);
  font-size: 38px;
  line-height: 1;
}

.booking-process strong {
  color: var(--white);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.faq-list {
  display: grid;
  gap: 1px;
  max-width: 980px;
  margin: 0 auto;
  border: 1px solid rgba(21, 20, 19, 0.14);
  background: rgba(21, 20, 19, 0.14);
}

.faq-item {
  background: var(--ivory);
  padding: clamp(24px, 4vw, 42px);
}

.faq-item h2 {
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1;
}

.faq-item p {
  max-width: 720px;
  color: #5f584e;
}

.calendar-status {
  min-height: 28px;
  margin: 18px 0 0;
}

.booking-form {
  grid-template-columns: 1fr;
  margin-top: 22px;
}

.booking-form .button {
  width: 100%;
}

.venue-selector {
  display: grid;
  gap: 14px;
  min-width: 0;
  margin: 0;
  border: 0;
  padding: 0;
}

.venue-selector legend {
  margin: 0 0 2px;
  color: var(--black);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.venue-selected {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 4px;
  align-items: center;
  border: 1px solid rgba(34, 80, 42, 0.18);
  background: rgba(231, 243, 230, 0.72);
  padding: 12px 14px;
}

.venue-selected[hidden] {
  display: none;
}

.venue-selected strong {
  grid-column: 1;
  font-size: 0.98rem;
}

.venue-selected span {
  grid-column: 1;
  color: #5f584e;
  font-size: 0.88rem;
}

.venue-change-button {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  border: 1px solid rgba(31, 29, 26, 0.16);
  background: transparent;
  color: var(--black);
  cursor: pointer;
  font: inherit;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  padding: 8px 10px;
  text-transform: uppercase;
}

.venue-map {
  width: 100%;
  min-height: 220px;
  border: 1px solid rgba(31, 29, 26, 0.14);
  background: #eee7dc;
}

.venue-map[hidden] {
  display: none;
}

.venue-map-status {
  margin: 0;
  color: #7a6f62;
  font-size: 0.9rem;
}

.booking-confirmation {
  margin-top: 24px;
  border: 1px solid rgba(34, 80, 42, 0.24);
  background: rgba(231, 243, 230, 0.8);
  padding: 16px;
}

.booking-submit-modal[hidden] {
  display: none;
}

.booking-submit-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 24px;
  min-height: 100dvh;
}

.booking-submit-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(21, 20, 19, 0.46);
}

.booking-submit-panel {
  position: relative;
  z-index: 1;
  width: min(420px, 100%);
  margin: auto;
  display: grid;
  justify-items: center;
  gap: 14px;
  border: 1px solid rgba(21, 20, 19, 0.14);
  background: var(--ivory);
  padding: 38px 30px;
  text-align: center;
}

.booking-submit-panel h2,
.booking-submit-panel p {
  margin: 0;
}

.booking-submit-panel h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 5vw, 42px);
  font-weight: 400;
}

.booking-submit-panel p {
  color: #5f584e;
}

.booking-submit-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 4px;
}

.booking-submit-actions[hidden] {
  display: none;
}

.booking-submit-actions .button {
  min-width: 120px;
}

.booking-submit-actions .text-link {
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: var(--charcoal);
  cursor: pointer;
  font: inherit;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.booking-submit-icon {
  position: relative;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: 999px;
  color: var(--charcoal);
}

.booking-submit-icon.sending {
  border-color: rgba(21, 20, 19, 0.18);
  border-top-color: var(--charcoal);
  animation: booking-spin 900ms linear infinite;
}

.booking-submit-icon.success {
  border-color: #315b37;
  color: #315b37;
  animation: booking-pop 260ms ease-out both;
}

.booking-submit-icon.success::before {
  content: "";
  width: 22px;
  height: 12px;
  border-left: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  transform: rotate(-45deg) translate(1px, -2px);
}

.booking-submit-icon.failed {
  border-color: #8d342d;
  color: #8d342d;
  animation: booking-shake 240ms ease-in-out both;
}

.booking-submit-icon.failed::before,
.booking-submit-icon.failed::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 3px;
  background: currentColor;
}

.booking-submit-icon.failed::before {
  transform: rotate(45deg);
}

.booking-submit-icon.failed::after {
  transform: rotate(-45deg);
}

.booking-submit-modal-open {
  overflow: hidden;
}

.inquiry-received-page {
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding-top: clamp(130px, 14vw, 180px);
}

.inquiry-received-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.inquiry-received-inner h1 {
  font-size: clamp(42px, 6vw, 86px);
  line-height: 0.98;
}

.next-steps {
  max-width: 620px;
  margin: 34px auto 0;
  border: 1px solid rgba(21, 20, 19, 0.12);
  background: rgba(255, 250, 241, 0.54);
  padding: clamp(24px, 4vw, 38px);
  text-align: left;
}

.next-steps h2 {
  font-size: clamp(28px, 3vw, 40px);
}

.next-steps ol {
  margin: 20px 0 0;
  padding-left: 22px;
  color: #4c4740;
}

.next-steps li + li {
  margin-top: 8px;
}

.inquiry-received-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 16px 26px;
  margin-top: 30px;
}

.inquiry-received-actions .button {
  margin-top: 0;
}

@keyframes booking-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes booking-pop {
  0% {
    transform: scale(0.72);
  }

  70% {
    transform: scale(1.08);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes booking-shake {
  0%,
  100% {
    transform: translateX(0);
  }

  33% {
    transform: translateX(-4px);
  }

  66% {
    transform: translateX(4px);
  }
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding: 52px var(--site-pad);
  border-top: 1px solid rgba(21, 20, 19, 0.13);
  background: var(--ivory);
}

.site-footer p {
  max-width: 360px;
  margin: 10px 0 0;
  color: #665f55;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 26px;
}

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .fade-in {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (min-width: 901px) {
  :root {
    --site-pad: clamp(30px, 2.9vw, 48px);
  }

  .site-header {
    min-height: 86px;
    padding: 18px var(--site-pad);
  }

  .brand img {
    width: 145px;
  }

  .header-logo-text {
    max-width: 240px;
    font-size: 28px;
  }

  .primary-nav {
    gap: clamp(30px, 3vw, 54px);
    transform: none;
  }

  .primary-nav a,
  .header-inquire,
  .eyebrow,
  .text-link,
  .button,
  .footer-links a,
  .inquiry-form span {
    font-size: 8px;
    letter-spacing: 0.42em;
  }

  .primary-nav a.active {
    padding-bottom: 7px;
  }

  .header-inquire {
    min-width: 126px;
    min-height: 38px;
    padding: 11px 20px;
  }

  .hero {
    min-height: clamp(630px, 44.9vw, 730px);
    align-items: center;
  }

  .hero-media {
    transform: none;
  }

  .hero-media img {
    object-position: 64% center;
    filter: var(--hero-image-filter);
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(9, 8, 7, 0.94) 0%, rgba(9, 8, 7, 0.82) 26%, rgba(9, 8, 7, 0.14) 61%, rgba(9, 8, 7, 0.46) 100%),
      linear-gradient(180deg, rgba(59, 45, 34, 0.14), rgba(9, 8, 7, 0.54));
  }

  .hero-content {
    width: 355px;
    margin-left: clamp(120px, 9vw, 155px);
    padding: 88px 0 18px;
  }

  .hero-mark {
    width: clamp(150px, 11vw, 188px);
    margin-bottom: 32px;
  }

  h1 {
    font-size: clamp(40px, 3vw, 50px);
    line-height: 0.95;
  }

  .hero-subtitle {
    max-width: 270px;
    margin: 28px auto 30px;
    font-size: 8px;
    letter-spacing: 0.44em;
    line-height: 2.05;
  }

  .text-link {
    padding-bottom: 6px;
  }

  .about-preview {
    padding-top: 64px;
    padding-bottom: 60px;
    background:
      radial-gradient(circle at 79% 48%, rgba(180, 162, 141, 0.11), transparent 24%),
      var(--ivory);
  }

  .about-preview .split-layout {
    grid-template-columns: 464px 430px 310px;
    gap: 82px;
    max-width: 1410px;
  }

  .image-frame img {
    width: 464px;
    aspect-ratio: 2 / 1;
  }

  .about-preview .copy-panel {
    padding-top: 2px;
  }

  .eyebrow {
    margin-bottom: 18px;
  }

  .copy-panel h2,
  .section-heading h2,
  .cta-inner h2,
  .narrow-copy h2,
  .detail-card h2,
  .contact-panel h2,
  .journal-entry h2 {
    font-size: clamp(28px, 1.9vw, 35px);
    line-height: 1.02;
  }

  .about-preview .copy-panel p:not(.eyebrow) {
    max-width: 352px;
    margin-top: 19px;
    margin-bottom: 18px;
    font-size: 10px;
    line-height: 1.9;
  }

  .watermark-mark {
    left: calc(100% + 125px);
    width: 228px;
    opacity: 0.085;
  }

  .services-preview,
  .experience-preview {
    padding-top: 42px;
    padding-bottom: 30px;
  }

  .services-preview .section-heading,
  .experience-preview .section-heading {
    margin-bottom: 38px;
  }

  .services-preview .eyebrow,
  .experience-preview .eyebrow {
    margin-bottom: 9px;
  }

  .services-preview .section-heading h2,
  .experience-preview .section-heading h2 {
    font-size: clamp(25px, 1.9vw, 34px);
    line-height: 1.1;
  }

  .service-list {
    max-width: 820px;
    gap: clamp(70px, 7.6vw, 126px);
  }

  .service-item {
    gap: 15px;
  }

  .service-item h3 {
    font-size: 8px;
    letter-spacing: 0.38em;
  }

  .line-icon {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 900px) {
  .site-header {
    display: grid;
    grid-template-columns: 1fr auto;
    padding-top: 20px;
  }

  .brand {
    position: static;
    transform: none;
  }

  .site-header::after {
    left: 20px;
    right: 20px;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .primary-nav {
    position: fixed;
    top: 82px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 18px;
    background: rgba(9, 8, 7, 0.94);
    border: 1px solid rgba(255, 250, 241, 0.16);
  }

  .primary-nav.is-open {
    display: flex;
  }

  .primary-nav a {
    width: 100%;
    padding: 15px;
    text-align: center;
  }

  .header-inquire {
    display: none;
  }

  .hero {
    min-height: 720px;
  }

  .hero-media {
    transform: scale(1.01);
  }

  .hero-media img {
    object-position: 68% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(9, 8, 7, 0.9), rgba(9, 8, 7, 0.34)),
      linear-gradient(180deg, rgba(9, 8, 7, 0.18), rgba(9, 8, 7, 0.72));
  }

  .hero-content {
    margin-left: 20px;
    padding-top: 130px;
  }

  .split-layout,
  .about-founder-layout,
  .portfolio-grid,
  .portfolio-video-grid,
  .film-modal-panel,
  .portfolio-grid-large,
  .detail-list,
  .journal-list,
  .inquiry-form,
  .booking-layout {
    grid-template-columns: 1fr;
  }

  .portfolio-grid-count-1,
  .portfolio-grid-count-2 {
    max-width: 680px;
  }

  .image-frame img {
    min-height: 380px;
    aspect-ratio: auto;
  }

  .about-preview .image-frame img {
    width: 100%;
    min-height: 0;
    aspect-ratio: 2 / 1;
  }

  .watermark-mark {
    left: auto;
    right: 0;
    top: auto;
    bottom: -32px;
    transform: none;
  }

  .service-list {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .service-item {
    grid-template-columns: 52px 1fr;
    gap: 20px;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .hero-content {
    width: min(330px, calc(100% - 40px));
    margin: 0 auto;
    padding-top: 118px;
  }

  h1 {
    font-size: clamp(42px, 13vw, 58px);
  }

  .section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .portfolio-card,
  .portfolio-card img,
  .portfolio-grid-count-1 .portfolio-card,
  .portfolio-grid-count-1 .portfolio-card img,
  .portfolio-grid-count-2 .portfolio-card,
  .portfolio-grid-count-2 .portfolio-card img,
  .film-modal-media,
  .film-modal-media img,
  .film-modal-media iframe,
  .film-modal-media video {
    min-height: 330px;
  }

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

  .footer-links {
    flex-wrap: wrap;
  }

  .calendar-weekdays,
  .booking-calendar-grid {
    gap: 4px;
  }

  .booking-calendar-panel,
  .booking-form-panel {
    padding: 18px;
  }

  .calendar-day-label {
    max-width: calc(100% - 2px);
    font-size: 6px;
    letter-spacing: 0;
    line-height: 1.05;
  }

  .calendar-day {
    gap: 2px;
  }

  .availability-check-form,
  .booking-process,
  .booking-confidence {
    grid-template-columns: 1fr;
  }

  .availability-check-form {
    display: grid;
  }
}

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

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

  .base-film-inclusions {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .experience-page .section {
    padding: 44px 18px;
  }

  .experience-hero {
    min-height: 520px;
    padding: 118px 24px 46px;
  }

  .experience-hero-content p:not(.eyebrow) {
    max-width: 330px;
  }

  .experience-pillars,
  .experience-timeline,
  .experience-elements {
    grid-template-columns: 1fr;
  }

  .experience-timeline {
    width: 100%;
    max-width: 520px;
    justify-content: center;
  }

  .experience-pillar {
    padding-bottom: 22px;
  }

  .experience-timeline li,
  .experience-element {
    min-height: 0;
    width: 100%;
  }

  .investment-card {
    width: min(100%, 520px);
    padding: 32px 18px;
  }

  .investment-price strong {
    font-size: clamp(58px, 18vw, 82px);
  }

  .investment-addons {
    width: 100%;
  }

  .addon-list {
    width: 100%;
  }

  .addon-item {
    grid-template-columns: 1fr;
    gap: 10px;
    justify-items: center;
    padding: 20px 16px;
    text-align: center;
  }

  .addon-price {
    justify-items: center;
  }

  .addon-price strong {
    font-size: 0.98rem;
    letter-spacing: 0.06em;
    text-align: center;
    white-space: normal;
  }

  .experience-faq-preview summary {
    align-items: flex-start;
    font-size: 22px;
  }
}

/* Premium navigation */
.site-header {
  position: fixed;
  display: grid;
  grid-template-columns: minmax(150px, 1fr) minmax(420px, 720px) minmax(92px, 1fr);
  align-items: center;
  justify-content: stretch;
  min-height: 84px;
  padding: 18px var(--site-pad);
  background: rgba(9, 8, 7, 0.08);
  border-bottom: 1px solid rgba(255, 250, 241, 0.08);
  opacity: 0;
  transform: translateY(-14px);
  backdrop-filter: blur(3px);
}

.site-header.is-loaded {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 700ms ease, transform 700ms ease, background 260ms ease, border-color 260ms ease, backdrop-filter 260ms ease;
}

.site-header.is-scrolled,
.site-header.menu-open {
  background: rgba(9, 8, 7, 0.76);
  border-bottom-color: rgba(255, 250, 241, 0.14);
  box-shadow: none;
  backdrop-filter: blur(16px);
}

.brand {
  position: static;
  transform: none;
  z-index: 91;
  width: clamp(136px, 14vw, 188px);
  height: 48px;
  justify-self: start;
  overflow: hidden;
}

.brand picture {
  display: inline-flex;
  align-items: center;
  height: 100%;
}

.brand img {
  width: 100%;
  height: 100%;
  max-height: 48px;
  object-fit: contain;
  object-position: left center;
}

.brand:has(.header-logo-text) {
  width: auto;
  height: auto;
  min-width: max-content;
  overflow: visible;
}

.header-logo-text {
  max-width: 280px;
  font-family: var(--serif) !important;
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 500;
  letter-spacing: 0.12em;
  white-space: nowrap;
}

.primary-nav {
  width: auto;
  max-width: 720px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 3vw, 46px);
  margin: 0;
}

.mobile-nav-brand,
.mobile-nav-footer,
.mobile-nav-label {
  display: none;
}

.primary-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  color: rgba(255, 250, 241, 0.72);
  opacity: 0;
  transform: translateY(-6px);
  transition: color 220ms ease, opacity 520ms ease, transform 520ms ease;
  transition-delay: calc(var(--nav-index, 0) * 70ms);
}

.site-header.is-loaded .primary-nav a {
  opacity: 1;
  transform: translateY(0);
}

.primary-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: calc(100% + 12px);
  height: 1px;
  background: currentColor;
  opacity: 0.9;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  transition: transform 240ms ease;
}

.primary-nav a:hover,
.primary-nav a.active {
  color: var(--white);
}

.primary-nav a:hover::after,
.primary-nav a.active::after {
  transform: translateX(-50%) scaleX(1);
}

.primary-nav a.active {
  border-bottom: 0;
  padding-bottom: 0;
  color: var(--white);
}

.header-inquire {
  position: static;
  z-index: 91;
  transform: none;
  justify-self: end;
  min-width: 92px;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-color: rgba(255, 250, 241, 0.48);
  background: rgba(255, 250, 241, 0.03);
  color: var(--white);
  transition: background 220ms ease, color 220ms ease, border-color 220ms ease;
}

.header-inquire:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--black);
}

.nav-toggle {
  z-index: 92;
  border-color: rgba(255, 250, 241, 0.32);
  transition: border-color 220ms ease, background 220ms ease, transform 220ms ease;
}

.nav-toggle:hover {
  border-color: rgba(255, 250, 241, 0.72);
  background: rgba(255, 250, 241, 0.08);
}

.nav-toggle span {
  transition: transform 220ms ease, opacity 220ms ease;
}

.site-header.menu-open .nav-toggle span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.site-header.menu-open .nav-toggle span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

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

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
    align-items: center;
    justify-content: stretch;
    min-height: 78px;
    gap: 16px;
    padding: 18px 22px;
  }

  .brand {
    width: 46px;
    height: 46px;
    min-width: 0;
    justify-self: start;
    overflow: hidden;
  }

  .brand:has(.header-logo-text) {
    width: 46px;
    height: 46px;
    min-width: 0;
    overflow: hidden;
  }

  .site-header.menu-open {
    background: transparent;
    border-bottom-color: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  .site-header.menu-open .brand {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  .brand img {
    width: 46px;
    height: 46px;
    max-height: 46px;
    object-fit: contain;
    object-position: left center;
  }

  .desktop-header-logo-text {
    display: none;
  }

  .mobile-header-logo-only {
    display: inline-block;
  }

  .header-logo-text {
    max-width: 220px;
    font-size: clamp(22px, 7vw, 28px);
  }

  .nav-toggle {
    display: block;
    justify-self: end;
    width: 46px;
    height: 46px;
    border-color: rgba(255, 250, 241, 0.38);
    background: rgba(9, 8, 7, 0.18);
    backdrop-filter: blur(10px);
  }

  .nav-toggle:hover,
  .site-header.menu-open .nav-toggle {
    border-color: rgba(255, 250, 241, 0.72);
    background: rgba(255, 250, 241, 0.08);
  }

  .nav-toggle:active {
    transform: scale(0.96);
  }

  .header-inquire {
    display: none;
  }

  .primary-nav {
    position: fixed;
    inset: 0;
    z-index: 90;
    width: 100vw;
    max-width: none;
    height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(24px, 4vh, 42px);
    padding: 118px 28px 38px;
    background:
      linear-gradient(135deg, rgba(9, 8, 7, 0.995), rgba(16, 15, 14, 0.985)),
      radial-gradient(circle at 50% 12%, rgba(180, 162, 141, 0.1), transparent 32%);
    border: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(10px);
    backdrop-filter: blur(18px);
    transition: opacity 320ms ease, visibility 320ms ease, transform 320ms ease;
  }

  .primary-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-nav-brand,
  .mobile-nav-footer {
    display: grid;
    justify-items: center;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 340ms ease, transform 340ms ease;
  }

  .mobile-nav-brand {
    gap: 10px;
    padding-top: 6px;
    text-align: center;
  }

  .mobile-nav-brand strong {
    color: var(--white);
    font-family: var(--serif);
    font-size: clamp(30px, 9vw, 42px);
    font-weight: 500;
    letter-spacing: 0.13em;
    line-height: 1;
    text-transform: uppercase;
  }

  .mobile-nav-brand span {
    color: rgba(255, 250, 241, 0.58);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.2em;
    line-height: 1.7;
    text-transform: none;
  }

  .primary-nav a {
    width: auto;
    min-width: min(280px, 82vw);
    min-height: 58px;
    justify-content: center;
    padding: 0 18px;
    color: rgba(255, 250, 241, 0.72);
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.32em;
    line-height: 1;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(8px);
    transition: color 220ms ease, opacity 360ms ease, transform 360ms ease, border-color 220ms ease, background 220ms ease;
    transition-delay: calc(80ms + var(--nav-index, 0) * 70ms);
  }

  .primary-nav a::after {
    bottom: 8px;
    width: 46px;
    background: var(--beige);
  }

  .primary-nav a.active,
  .primary-nav a:hover {
    color: var(--white);
  }

  .primary-nav.is-open .mobile-nav-brand,
  .primary-nav.is-open .mobile-nav-footer,
  .primary-nav.is-open a {
    opacity: 1;
    transform: translateY(0);
  }

  .primary-nav .mobile-nav-cta {
    min-width: min(292px, 84vw);
    margin-top: 8px;
    border: 1px solid rgba(255, 250, 241, 0.54);
    background: rgba(255, 250, 241, 0.035);
    color: var(--white);
  }

  .primary-nav .mobile-nav-cta::after {
    display: none;
  }

  .primary-nav .mobile-nav-cta:hover,
  .primary-nav .mobile-nav-cta.active {
    border-color: var(--white);
    background: rgba(255, 250, 241, 0.12);
  }

  .primary-nav .mobile-nav-cta .desktop-nav-label {
    display: none;
  }

  .primary-nav .mobile-nav-cta .mobile-nav-label {
    display: inline;
  }

  .mobile-nav-footer {
    grid-auto-flow: column;
    gap: 28px;
    margin-top: auto;
    padding-bottom: max(4px, env(safe-area-inset-bottom));
    transition-delay: 380ms;
  }

  .mobile-nav-footer a {
    min-width: 0;
    min-height: 34px;
    padding: 0;
    color: rgba(255, 250, 241, 0.54);
    font-size: 9px;
    letter-spacing: 0.28em;
    transition-delay: 0ms;
  }

  .mobile-nav-footer a::after {
    bottom: 2px;
    width: 28px;
  }
}
