/* Natalie Jay — Cinematic Luxury Redesign */
:root {
  --cream: #f5e1c8;
  --peach: #fde9d1;
  --navy: #0d1218;
  --ink: #141414;
  --black: #050608;
  --gold: #c4a574;
  --champagne: #e8d9c0;
  --bronze: #9a7b4f;
  --text: #ece8e2;
  --text-muted: #9a9590;
  --text-dark: #1c1c1c;
  --text-dark-muted: #5c5650;
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Raleway", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --container: 1320px;
  --section-pad: clamp(5rem, 11vw, 9rem);
  --nav-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
body {
  font-family: var(--font-sans);
  background: var(--black);
  color: var(--text);
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body.no-scroll { overflow: hidden; }
body.custom-cursor { cursor: none; }
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; transition: color 0.35s var(--ease), opacity 0.35s; }
ul { list-style: none; }

.container { width: min(100% - 2.5rem, var(--container)); margin-inline: auto; }
.container--wide { width: min(100% - 1.5rem, 1440px); margin-inline: auto; }

.label {
  font-size: 0.65rem; letter-spacing: 0.38em; text-transform: uppercase;
  color: var(--gold); font-weight: 400;
}
.serif { font-family: var(--font-serif); }
h1, h2, h3 { font-family: var(--font-serif); font-weight: 400; line-height: 1.05; }

/* Utilities */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 2px; width: 0; z-index: 9999;
  background: linear-gradient(90deg, var(--bronze), var(--gold));
  pointer-events: none;
}

/* Age gate & preloader */
.age-gate {
  position: fixed; inset: 0; z-index: 20000; background: var(--black);
  display: flex; align-items: center; justify-content: center; padding: 2rem;
}
.age-gate.hidden { display: none; }
.age-gate__inner {
  max-width: 480px; text-align: center; padding: 3rem 2.5rem;
  border: 1px solid rgba(196, 165, 116, 0.2); background: var(--navy);
}
.age-gate__logo { font-family: var(--font-serif); font-size: 2.25rem; color: var(--cream); margin-bottom: 1.25rem; }
.age-gate__text { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 2rem; line-height: 1.8; }
.age-gate__actions { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; }
.age-gate__exit { font-size: 0.75rem; color: var(--text-muted); margin-top: 1.25rem; display: inline-block; }

.preloader {
  position: fixed; inset: 0; z-index: 15000; background: var(--black);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  transition: opacity 0.9s var(--ease), visibility 0.9s;
}
.preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader__name {
  font-family: var(--font-serif); font-size: clamp(2rem, 5vw, 3rem);
  color: var(--cream); letter-spacing: 0.2em; margin-bottom: 2rem;
  animation: preloaderFade 1.2s ease forwards;
}
.preloader__line {
  width: 100px; height: 1px; background: rgba(196,165,116,0.15); overflow: hidden; position: relative;
}
.preloader__line::after {
  content: ''; position: absolute; inset: 0; width: 0; background: var(--gold);
  animation: loadLine 1.6s var(--ease) forwards;
}
@keyframes preloaderFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes loadLine { to { width: 100%; } }

/* Cursor */
.cursor-dot, .cursor-ring {
  position: fixed; pointer-events: none; z-index: 9998; border-radius: 50%;
  transform: translate(-50%, -50%); transition: width 0.35s, height 0.35s, border-color 0.35s;
}
.cursor-dot { width: 5px; height: 5px; background: var(--gold); }
.cursor-ring { width: 32px; height: 32px; border: 1px solid rgba(196,165,116,0.45); }
.cursor-ring.hover { width: 52px; height: 52px; border-color: var(--gold); }
.cursor-text {
  position: fixed; pointer-events: none; z-index: 9997;
  font-size: 0.6rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold);
  transform: translate(-50%, -50%); opacity: 0; transition: opacity 0.3s;
}
.cursor-text.visible { opacity: 1; }

/* Floating navigation */
.nav-float {
  position: fixed; top: 1.25rem; left: 0; right: 0; z-index: 1100;
  pointer-events: none; padding: 0 1.25rem;
}
.nav-float__inner {
  pointer-events: auto;
  display: flex; align-items: center; justify-content: space-between;
  max-width: var(--container); margin-inline: auto;
  padding: 0.65rem 0.65rem 0.65rem 1.35rem;
  background: rgba(13, 18, 24, 0.55);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(196, 165, 116, 0.12);
  border-radius: 100px;
  transition: background 0.4s, border-color 0.4s, transform 0.4s;
}
.nav-float.is-scrolled .nav-float__inner {
  background: rgba(5, 6, 8, 0.88);
  border-color: rgba(196, 165, 116, 0.2);
}
.nav-float__brand {
  font-family: var(--font-serif); font-size: 1.15rem; color: var(--cream);
  letter-spacing: 0.06em; line-height: 1;
}
.nav-float__brand span { font-weight: 300; opacity: 0.75; font-size: 0.95em; }
.nav-float__actions { display: flex; align-items: center; gap: 0.5rem; }
.nav-float__phone {
  font-size: 0.68rem; letter-spacing: 0.08em; color: var(--champagne);
  padding: 0.5rem 1rem; border-radius: 100px;
  border: 1px solid rgba(196,165,116,0.15);
}
.nav-float__phone:hover { color: var(--gold); border-color: var(--gold); }
.nav-float__menu {
  display: flex; align-items: center; gap: 0.65rem;
  background: var(--gold); color: var(--black); border: none; cursor: pointer;
  font-family: var(--font-sans); font-size: 0.65rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  padding: 0.75rem 1.35rem; border-radius: 100px;
  transition: transform 0.35s var(--ease), background 0.35s;
}
.nav-float__menu:hover { background: var(--champagne); transform: scale(1.02); }
.nav-float__menu-icon {
  width: 14px; height: 10px; position: relative; display: block;
}
.nav-float__menu-icon::before,
.nav-float__menu-icon::after {
  content: ''; position: absolute; left: 0; right: 0; height: 1px; background: currentColor;
}
.nav-float__menu-icon::before { top: 0; }
.nav-float__menu-icon::after { bottom: 0; }

/* Fullscreen menu panel */
.menu-panel {
  position: fixed; inset: 0; z-index: 1200;
  background: rgba(5, 6, 8, 0.97);
  backdrop-filter: blur(24px);
  display: flex; flex-direction: column;
  padding: clamp(1.5rem, 4vw, 3rem);
  opacity: 0; visibility: hidden;
  transition: opacity 0.5s var(--ease), visibility 0.5s;
}
.menu-panel.open { opacity: 1; visibility: visible; }
.menu-panel__top {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}
.menu-panel__label { font-size: 0.65rem; letter-spacing: 0.35em; text-transform: uppercase; color: var(--text-muted); }
.menu-panel__close {
  background: none; border: 1px solid rgba(196,165,116,0.25); color: var(--cream);
  font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
  padding: 0.65rem 1.25rem; border-radius: 100px; cursor: pointer;
}
.menu-panel__close:hover { border-color: var(--gold); color: var(--gold); }
.menu-panel__grid {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 3rem; flex: 1; overflow: auto;
}
.menu-panel__links a {
  display: block; font-family: var(--font-serif);
  font-size: clamp(1.05rem, 2vw, 1.35rem); color: var(--cream);
  padding: 0.28rem 0; line-height: 1.45; letter-spacing: 0.02em;
  font-weight: 400;
  transform: translateY(20px); opacity: 0;
  transition: color 0.3s, transform 0.5s var(--ease), opacity 0.5s;
}
.menu-panel.open .menu-panel__links a { transform: translateY(0); opacity: 1; }
.menu-panel__links a:hover { color: var(--gold); }
.menu-panel__links a:nth-child(1) { transition-delay: 0.05s; }
.menu-panel__links a:nth-child(2) { transition-delay: 0.1s; }
.menu-panel__links a:nth-child(3) { transition-delay: 0.15s; }
.menu-panel__links a:nth-child(4) { transition-delay: 0.2s; }
.menu-panel__links a:nth-child(5) { transition-delay: 0.25s; }
.menu-panel__links a:nth-child(6) { transition-delay: 0.3s; }
.menu-panel__galleries { border-left: 1px solid rgba(196,165,116,0.12); padding-left: 2rem; }
.menu-panel__galleries h3 {
  font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.25rem; font-family: var(--font-sans);
}
.menu-panel__galleries a {
  display: block; font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-muted); padding: 0.4rem 0; font-weight: 300;
}
.menu-panel__galleries a:hover { color: var(--cream); }
.menu-panel__meta {
  margin-top: auto; padding-top: 2rem; border-top: 1px solid rgba(196,165,116,0.1);
  display: flex; flex-wrap: wrap; gap: 1.5rem 2.5rem;
  font-size: 0.75rem; color: var(--text-muted);
}
.menu-panel__meta a:hover { color: var(--gold); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.9rem 1.85rem; font-family: var(--font-sans);
  font-size: 0.68rem; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase;
  border: 1px solid transparent; cursor: pointer; border-radius: 100px;
  transition: all 0.4s var(--ease);
}
.btn--primary { background: var(--gold); color: var(--black); }
.btn--primary:hover { background: var(--champagne); transform: translateY(-2px); }
.btn--outline { background: transparent; color: var(--cream); border-color: rgba(245,225,200,0.35); }
.btn--outline:hover { border-color: var(--gold); color: var(--gold); }
.btn--ghost { background: rgba(255,255,255,0.06); color: var(--cream); }
.btn--ghost:hover { background: rgba(196,165,116,0.15); }
.text-cta {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.65rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold);
}
.text-cta::after { content: '→'; transition: transform 0.3s; }
.text-cta:hover::after { transform: translateX(4px); }
.section--cream .text-cta, .section--peach .text-cta { color: var(--ink); }
.section--cream .text-cta:hover, .section--peach .text-cta:hover { color: var(--bronze); }
.menu-panel__link.is-active { color: var(--gold); }

/* Cinematic hero */
.hero-cine {
  position: relative; min-height: 100vh; min-height: 100dvh;
  display: grid; grid-template-columns: 1fr 1fr; overflow: hidden;
}
.hero-cine__media {
  position: relative; overflow: hidden;
}
.hero-cine__media img {
  width: 100%; height: 100%; object-fit: cover; min-height: 100vh;
}
.hero-cine__media::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--black) 0%, transparent 40%);
}
.hero-cine__body {
  position: relative; z-index: 2; display: flex; flex-direction: column; justify-content: center;
  padding: calc(var(--nav-h) + 3rem) clamp(1.5rem, 5vw, 4rem) 4rem;
  background: var(--black);
}
.hero-cine__eyebrow {
  font-size: 0.65rem; letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.5rem;
}
.hero-cine__title {
  font-size: clamp(2.8rem, 6.5vw, 5rem); color: var(--cream);
  margin-bottom: 1.5rem; overflow: hidden;
}
.hero-cine__title .line { display: block; }
.hero-cine__title em { font-style: italic; color: var(--gold); }
.hero-cine__desc {
  color: var(--text-muted); font-size: 0.95rem; max-width: 420px;
  line-height: 1.9; margin-bottom: 2.5rem; font-weight: 300;
}
.hero-cine__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.hero-cine__scroll {
  position: absolute; bottom: 2.5rem; left: clamp(1.5rem, 5vw, 4rem);
  display: flex; align-items: center; gap: 1rem;
  font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--text-muted);
}
.hero-cine__scroll-line {
  width: 48px; height: 1px; background: var(--gold);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%, 100% { transform: scaleX(0.4); opacity: 0.4; } 50% { transform: scaleX(1); opacity: 1; } }

/* Marquee */
.marquee {
  padding: 1.25rem 0; border-block: 1px solid rgba(196,165,116,0.1);
  background: var(--navy); overflow: hidden;
}
.marquee__inner {
  display: flex; width: max-content; gap: 4rem;
  font-family: var(--font-serif); font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  color: rgba(196,165,116,0.45); white-space: nowrap; font-style: italic;
}
.marquee__inner span { padding-right: 4rem; }

/* Editorial welcome */
.section { padding: var(--section-pad) 0; position: relative; }
.section--dark { background: var(--navy); }
.section--cream { background: var(--cream); color: var(--ink); }
.section--peach { background: var(--peach); color: var(--ink); }
.section--black { background: var(--black); }

.editorial-split {
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem, 6vw, 6rem);
  align-items: end;
}
.editorial-split__index {
  font-size: clamp(4rem, 10vw, 8rem); font-family: var(--font-serif);
  color: rgba(196,165,116,0.12); line-height: 0.85; margin-bottom: -1rem;
}
.editorial-split h2 {
  font-size: clamp(2.2rem, 5vw, 3.5rem); color: var(--gold); margin-bottom: 2rem;
}
.editorial-split .prose p {
  color: rgba(255,255,255,0.72); font-size: 0.95rem; line-height: 2; font-weight: 300;
  margin-bottom: 1.25rem;
}
.accent-line {
  width: 48px; height: 1px; background: var(--gold); margin-bottom: 1.5rem;
  transform-origin: left;
}

/* Horizontal scroll gallery */
.hscroll { min-height: 100vh; background: var(--black); overflow: hidden; }
.hscroll__header {
  padding: 3rem clamp(1.25rem, 4vw, 3rem) 2rem;
  display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 1rem;
}
.hscroll__header h2 { font-size: clamp(2rem, 4vw, 3rem); color: var(--cream); }
.hscroll__track {
  display: flex; gap: 1.25rem; padding: 0 3rem 3rem; width: max-content;
}
.hscroll__item {
  flex: 0 0 auto; width: clamp(260px, 28vw, 380px);
  border-radius: 4px; overflow: hidden; position: relative; cursor: pointer;
}
.hscroll__item img {
  width: 100%; aspect-ratio: 3/4; object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.hscroll__item:hover img { transform: scale(1.05); }
.hscroll__item::after {
  content: 'View'; position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--cream); background: rgba(5,6,8,0); transition: background 0.4s;
}
.hscroll__item:hover::after { background: rgba(5,6,8,0.35); }

/* About float block */
.about-float {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0; align-items: center;
  min-height: 80vh;
}
.about-float__copy {
  padding: clamp(3rem, 8vw, 6rem);
}
.about-float__copy h2 {
  font-size: clamp(2rem, 4vw, 3rem); color: var(--ink); margin-bottom: 1.5rem;
}
.about-float__copy p { color: var(--text-dark-muted); line-height: 2; font-weight: 300; margin-bottom: 1rem; }
.about-float__visual {
  position: relative; height: 100%; min-height: 480px; overflow: hidden;
}
.about-float__visual img {
  width: 100%; height: 100%; object-fit: cover;
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
}
.about-float__card {
  position: absolute; bottom: 10%; left: -8%;
  background: var(--navy); color: var(--cream);
  padding: 1.5rem 2rem; border: 1px solid rgba(196,165,116,0.2);
  font-family: var(--font-serif); font-size: 1.25rem; font-style: italic;
}

/* Travel block */
.travel-block {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 4rem; align-items: center;
}
.travel-block__visual { position: relative; }
.travel-block__visual img {
  border-radius: 2px; box-shadow: 0 24px 80px rgba(0,0,0,0.15);
  width: 100%; max-height: 75vh; object-fit: cover;
}
.travel-block__copy h2 {
  font-size: clamp(2.5rem, 5vw, 4rem); color: var(--ink); margin-bottom: 1.5rem;
}
.travel-block__copy p { color: var(--text-dark-muted); line-height: 2; font-weight: 300; }

/* Bento features */
.bento {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem;
}
.bento__card {
  position: relative; min-height: 380px; overflow: hidden;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 2.5rem; border: 1px solid rgba(196,165,116,0.1);
}
.bento__bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  transition: transform 0.8s var(--ease);
}
.bento__card:hover .bento__bg { transform: scale(1.06); }
.bento__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(5,6,8,0.92) 0%, rgba(5,6,8,0.2) 60%);
}
.bento__content { position: relative; z-index: 1; }
.bento__num { font-size: 0.65rem; letter-spacing: 0.3em; color: var(--gold); margin-bottom: 0.5rem; }
.bento__content h3 { font-size: clamp(1.5rem, 3vw, 2rem); color: var(--cream); margin-bottom: 1rem; }

/* Quote */
.quote-block {
  text-align: center; padding: clamp(6rem, 14vw, 10rem) 1.5rem;
  background: var(--navy); position: relative;
}
.quote-block::before {
  content: ''; position: absolute; inset: 10% 15%;
  border: 1px solid rgba(196,165,116,0.08); pointer-events: none;
}
.quote-block blockquote {
  font-family: var(--font-serif); font-size: clamp(1.4rem, 3.2vw, 2.2rem);
  color: var(--cream); max-width: 820px; margin: 0 auto; line-height: 1.55; font-style: italic;
}
.quote-block__sig {
  margin-top: 2rem; font-size: 0.65rem; letter-spacing: 0.35em;
  text-transform: uppercase; color: var(--gold);
}

/* CTA band */
.cta-band {
  text-align: center; padding: var(--section-pad) 1.5rem;
  background: linear-gradient(180deg, var(--black), var(--navy));
}
.cta-band h2 { font-size: clamp(2rem, 5vw, 3.5rem); color: var(--cream); margin-bottom: 1rem; }
.cta-band p { color: var(--text-muted); margin-bottom: 2rem; font-weight: 300; }

/* Inner page hero */
.page-hero {
  padding: calc(var(--nav-h) + 4rem) 0 3rem;
  background: var(--black); text-align: left;
  border-bottom: 1px solid rgba(196,165,116,0.08);
}
.page-hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem); color: var(--cream);
}
.page-hero .label { margin-bottom: 1rem; display: block; }

/* Gallery, FAQ, forms — retained */
.gallery-grid { columns: 3; column-gap: 1rem; }
.gallery-grid__item {
  break-inside: avoid; margin-bottom: 1rem; overflow: hidden;
  cursor: pointer; border-radius: 2px;
}
.gallery-grid__item img { width: 100%; transition: transform 0.6s var(--ease); }
.gallery-grid__item:hover img { transform: scale(1.04); }

.prose p { margin-bottom: 1.15rem; }
.prose--wide { max-width: 900px; }

.rates-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.rate-card {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(196,165,116,0.1);
  padding: 2rem; border-radius: 2px;
}
.rate-card h3 { font-size: 0.85rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.rate-card p, .rate-card li { font-size: 0.92rem; color: var(--text-muted); margin-bottom: 0.4rem; }
.rate-notice {
  border-left: 2px solid var(--gold); padding: 1.25rem 1.5rem; margin: 2rem 0;
  background: rgba(196,165,116,0.06); font-size: 0.9rem; color: var(--text-muted);
}

.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(196,165,116,0.1); }
.faq-item__question {
  width: 100%; background: none; border: none; cursor: pointer; text-align: left;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.5rem 0; font-family: var(--font-serif); font-size: 1.15rem; color: var(--cream);
}
.faq-item__icon { width: 16px; height: 16px; position: relative; flex-shrink: 0; margin-left: 1rem; }
.faq-item__icon::before, .faq-item__icon::after {
  content: ''; position: absolute; background: var(--gold); transition: transform 0.3s;
}
.faq-item__icon::before { width: 100%; height: 1px; top: 50%; }
.faq-item__icon::after { width: 1px; height: 100%; left: 50%; transform: translateX(-50%); }
.faq-item.open .faq-item__icon::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }
.faq-item__answer { max-height: 0; overflow: hidden; transition: max-height 0.45s var(--ease); }
.faq-item.open .faq-item__answer { max-height: 600px; padding-bottom: 1.5rem; }
.faq-item__answer p { color: var(--text-muted); font-size: 0.92rem; line-height: 1.85; }

.testimonials-grid { display: grid; gap: 1.25rem; }
.testimonial-card {
  background: rgba(255,255,255,0.02); border: 1px solid rgba(196,165,116,0.08);
  padding: 2.5rem; position: relative;
}
.testimonial-card h4 { font-size: 0.9rem; color: var(--gold); margin-bottom: 1rem; letter-spacing: 0.05em; }
.testimonial-card p { color: var(--text-muted); font-size: 0.92rem; margin-bottom: 0.6rem; }
.testimonial-card .author { font-style: italic; color: var(--champagne); font-size: 0.8rem; }

.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 3rem; }
.contact-card {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(196,165,116,0.1);
  padding: 1.75rem; margin-bottom: 1rem;
}
.contact-form input, .contact-form textarea, .newsletter__form input {
  width: 100%; padding: 0.85rem 1rem; background: rgba(255,255,255,0.04);
  border: 1px solid rgba(196,165,116,0.15); color: var(--cream);
  font-family: var(--font-sans); font-size: 0.9rem; border-radius: 2px;
}
.contact-form .form-group { margin-bottom: 1.15rem; }
.contact-form label {
  display: block; font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 0.45rem;
}
.contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.goodwill-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.goodwill-item {
  padding: 1.5rem; border: 1px solid rgba(196,165,116,0.08);
  background: rgba(255,255,255,0.02);
}
.goodwill-item h3 { font-size: 0.85rem; letter-spacing: 0.1em; color: var(--gold); margin-bottom: 0.5rem; }
.goodwill-item p { font-size: 0.88rem; color: var(--text-muted); }

.policy-list li {
  padding: 0.75rem 0 0.75rem 1.25rem; position: relative;
  color: var(--text-muted); border-bottom: 1px solid rgba(196,165,116,0.06);
}
.policy-list li::before {
  content: ''; position: absolute; left: 0; top: 1.2rem;
  width: 6px; height: 1px; background: var(--gold);
}

/* Footer */
.site-footer {
  background: var(--black); border-top: 1px solid rgba(196,165,116,0.08);
  padding: 4rem 0 2rem;
}
.newsletter { text-align: center; padding-bottom: 3rem; margin-bottom: 3rem; border-bottom: 1px solid rgba(196,165,116,0.08); }
.newsletter__title { font-family: var(--font-serif); font-size: 1.75rem; color: var(--cream); margin-bottom: 1.5rem; }
.newsletter__form { display: flex; gap: 0.65rem; flex-wrap: wrap; justify-content: center; max-width: 720px; margin: 0 auto; }
.site-footer__grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr 1fr; gap: 2rem; margin-bottom: 2.5rem; }
.site-footer__brand-row {
  text-align: center; margin-bottom: 3rem; padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(196,165,116,0.08);
}
.site-footer__logo {
  display: inline-block;
  margin-bottom: 1rem;
}
.site-footer__nav-4col {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem 2rem; margin-bottom: 2.5rem;
}
.site-footer__tagline { font-size: 0.85rem; color: var(--text-muted); font-style: italic; margin-top: 0.5rem; }
.site-footer__heading { font-size: 0.6rem; letter-spacing: 0.35em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.85rem; font-family: var(--font-sans); font-weight: 400; min-height: 1em; }

/* Footer nav — matches header menu colours, smaller size */
.site-footer__nav--pages a {
  display: block;
  font-family: var(--font-serif);
  font-size: 0.88rem;
  color: var(--cream);
  padding: 0.2rem 0;
  line-height: 1.5;
  letter-spacing: 0.02em;
}
.site-footer__nav--pages a:hover { color: var(--gold); }

.site-footer__nav--galleries a {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0.22rem 0;
  font-weight: 300;
}
.site-footer__nav--galleries a:hover { color: var(--cream); }

.site-footer__connect {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem 1.5rem;
  margin-top: 1.25rem;
}
.site-footer__connect a {
  font-family: var(--font-serif);
  font-size: 0.88rem;
  color: var(--cream);
}
.site-footer__connect a:hover { color: var(--gold); }
.site-footer__contact { margin-top: 0.75rem; font-size: 0.82rem; color: var(--text-muted); }
.site-footer__contact a { color: var(--champagne); }
.site-footer__contact a:hover { color: var(--gold); }

/* legacy footer nav classes — keep for safety */
.menu-panel__links--footer a {
  transform: none; opacity: 1;
  font-family: var(--font-serif);
  font-size: 0.88rem;
  color: var(--cream);
  padding: 0.2rem 0;
  line-height: 1.5;
}
.menu-panel__links--footer a:hover { color: var(--gold); }
.site-footer__bottom {
  display: flex; justify-content: center; text-align: center;
  padding-top: 2rem; border-top: 1px solid rgba(196,165,116,0.06);
  font-size: 0.78rem; color: var(--text-muted);
}
.site-footer__bottom a { color: var(--champagne); }
.site-footer__bottom a:hover { color: var(--gold); }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 9000; background: rgba(5,6,8,0.96);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: opacity 0.4s, visibility 0.4s;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox__img { max-width: 92vw; max-height: 88vh; object-fit: contain; }
.lightbox__close, .lightbox__prev, .lightbox__next {
  position: absolute; background: none; border: none; color: var(--cream);
  font-size: 2rem; cursor: pointer; padding: 1rem;
}
.lightbox__close { top: 1rem; right: 1.5rem; }
.lightbox__prev { left: 1rem; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 1rem; top: 50%; transform: translateY(-50%); }
.lightbox__counter {
  position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
  font-size: 0.68rem; letter-spacing: 0.2em; color: var(--text-muted);
}

.back-to-top {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 500;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--navy); border: 1px solid rgba(196,165,116,0.2);
  color: var(--gold); cursor: pointer; opacity: 0; visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s, background 0.3s;
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--gold); color: var(--black); }

.page-transition {
  position: fixed; inset: 0; z-index: 8000; background: var(--black);
  pointer-events: none; opacity: 0; transition: opacity 0.4s;
}
.page-transition.active { opacity: 1; pointer-events: all; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.split__image img { width: 100%; height: auto; display: block; border-radius: 2px; object-fit: cover; }

/* About page — desktop: text left, photos right; mobile: photo, text, 2 photos */
.split--about {
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  align-items: start;
  gap: 2rem 3rem;
}
.split--about .split__content { grid-column: 1; grid-row: 1 / -1; }
.split--about .split__image--lead { grid-column: 2; grid-row: 1; }
.split--about .split__image-row {
  grid-column: 2; grid-row: 2;
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .preloader { display: none !important; }
  .cursor-dot, .cursor-ring, .cursor-text { display: none !important; }
  body.custom-cursor { cursor: auto; }
}

@media (max-width: 900px) {
  .hero-cine { grid-template-columns: 1fr; min-height: auto; }
  .hero-cine__media { min-height: 55vh; }
  .hero-cine__media img { min-height: 55vh; }
  .hero-cine__media::after { background: linear-gradient(0deg, var(--black) 0%, transparent 50%); }
  .hero-cine__scroll { display: none; }
}
