:root {
  --cream: #f3eee4;
  --ivory: #fbf8f2;
  --paper: #efe8d8;
  --gold: #b0893d;
  --gold-2: #c9a45c;
  --gold-dim: rgba(176, 137, 61, 0.28);
  --forest: #24352c;
  --ink: #1a1714;
  --stone: #7a746b;
  --white: #fffcf7;
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Outfit", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.65;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font-family: inherit;
}

.gold-frame {
  pointer-events: none;
  position: fixed;
  inset: 12px;
  border: 1px solid var(--gold-dim);
  z-index: 80;
}

.enter-gate {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  background: var(--forest);
  color: var(--white);
  text-align: center;
  transition: opacity 0.75s ease, visibility 0.75s ease;
}

.enter-gate.is-gone {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.enter-inner {
  width: min(78vw, 360px);
  padding: 2rem;
}

.enter-logo {
  width: clamp(230px, 34vw, 320px);
  margin: 0 auto 1.6rem;
  filter: brightness(1.14) saturate(1.12);
  animation: loading-logo 3s ease-in-out both;
}

.loading-label {
  margin-bottom: 0.8rem;
  color: rgba(243, 238, 228, 0.64);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.loading-line {
  width: 100%;
  height: 1px;
  overflow: hidden;
  background: rgba(201, 164, 92, 0.24);
}

.loading-line span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--gold-2);
  transform: translateX(-100%);
  animation: loading-progress 3s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes loading-logo {
  0% { opacity: 0; transform: translateY(10px) scale(0.97); }
  28%, 82% { opacity: 1; transform: translateY(0) scale(1); }
  100% { opacity: 0.85; transform: translateY(0) scale(1); }
}

@keyframes loading-progress {
  to { transform: translateX(0); }
}

.enter-gate:not(.is-gone) ~ .music-toggle,
.enter-gate:not(.is-gone) ~ .whatsapp-float {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.enter-languages,
.lang-switch {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}

.enter-languages {
  margin-top: 1.4rem;
}

.enter-languages span,
.lang-switch span {
  width: 1px;
  height: 14px;
  background: var(--gold-dim);
}

.enter-languages button,
.lang-switch button {
  border: 0;
  background: transparent;
  color: inherit;
  padding: 0.25rem;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  cursor: pointer;
  opacity: 0.48;
}

.enter-languages button {
  color: var(--cream);
}

.enter-languages button.is-active,
.lang-switch button.is-active {
  color: var(--gold-2);
  opacity: 1;
}

.music-toggle {
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  z-index: 70;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: rgba(251, 248, 242, 0.94);
  color: var(--gold);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.music-slash {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 22px;
  height: 1px;
  background: var(--gold);
  transform: translate(-50%, -50%) rotate(-38deg);
}

.music-toggle svg {
  width: 20px;
  height: 20px;
}

.music-slash {
  display: none;
  position: absolute;
  width: 22px;
  height: 1px;
  background: var(--gold);
  transform: rotate(-38deg);
}

.music-toggle.is-off .music-slash {
  display: block;
}

.music-toggle[hidden] {
  display: none;
}

.whatsapp-float {
  position: fixed;
  right: 1.4rem;
  bottom: calc(1.4rem + 52px + 0.75rem);
  z-index: 70;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: #1f6b4a;
  color: #f7f3ea;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 28px rgba(26, 23, 20, 0.22);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.25s ease;
}

.whatsapp-float svg {
  width: 26px;
  height: 26px;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  background: #24885c;
}

.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
}

.lede {
  max-width: 36rem;
  margin: 1.1rem auto 0;
  color: var(--stone);
  font-size: 1.02rem;
}

.section-head {
  text-align: center;
  margin-bottom: 3.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.8rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 0;
  cursor: pointer;
  transition: 0.25s ease;
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
}

.btn-gold:hover {
  background: #9a752f;
}

.btn-line {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--gold);
}

.btn-line:hover {
  background: var(--gold);
  color: var(--white);
}

.btn-full {
  width: 100%;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.55rem 2.2rem;
  background: rgba(251, 248, 242, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--gold-dim);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.brand-mark {
  width: 58px;
  height: 58px;
  flex-shrink: 0;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
}

.brand-text strong {
  font-family: var(--serif);
  font-size: 1.22rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--forest);
  line-height: 1;
}

.brand-text em {
  font-style: normal;
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.55rem;
  margin-left: auto;
}

.nav-mobile-head,
.nav-backdrop {
  display: none;
}

.nav a {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--forest);
}

.nav a:hover {
  color: var(--gold);
}

.nav-cta {
  padding: 0.7rem 1.1rem;
  background: var(--forest);
  color: var(--cream) !important;
}

.nav-cta:hover {
  background: var(--gold);
  color: var(--white) !important;
}

.lang-switch {
  margin-left: 1.1rem;
  color: var(--forest);
  z-index: 61;
  position: relative;
}

.header-langs button {
  min-width: 40px;
  min-height: 40px;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  background: none;
  border: 0;
  cursor: pointer;
  position: relative;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--ink);
  margin: 7px auto;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: end center;
  color: var(--white);
}

.hero-media,
.hero-media img,
.hero-media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-media video {
  z-index: 0;
}

.hero-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(26, 23, 20, 0.78) 0%,
    rgba(26, 23, 20, 0.42) 12%,
    rgba(26, 23, 20, 0.12) 24%,
    transparent 38%
  );
}

.hero-copy {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 1.5rem 7.5rem;
}

.hero-emblem {
  width: clamp(118px, 12vw, 176px);
  height: auto;
  margin: 0 auto 0.7rem;
  filter: brightness(1.14) saturate(1.12) drop-shadow(0 2px 10px rgba(26, 23, 20, 0.5));
  animation: hero-reveal 1.2s ease both;
}

.hero-copy .eyebrow {
  color: var(--gold-2);
  animation: hero-reveal 1.2s 0.12s ease both;
}

.hero-copy h1 {
  font-size: clamp(3.4rem, 9vw, 8.4rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.2);
  animation: hero-reveal 1.2s 0.22s ease both;
}

.hero-divider {
  display: flex;
  align-items: center;
  width: 96px;
  height: 9px;
  margin: 0.8rem auto 0;
  border-top: 1px solid var(--gold-2);
  animation: hero-reveal 1.2s 0.3s ease both;
}

.hero-divider::after {
  content: "";
  width: 7px;
  height: 7px;
  margin: -4px auto 0;
  background: var(--gold-2);
  transform: rotate(45deg);
}

.hero-tag {
  margin: 0.2rem 0 2rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
  opacity: 0.92;
  animation: hero-reveal 1.2s 0.38s ease both;
}

.hero-copy .btn {
  animation: hero-reveal 1.2s 0.48s ease both;
}

@keyframes hero-reveal {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.scroll-hint {
  position: absolute;
  bottom: 1.6rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cream);
}

.scroll-hint::after {
  content: "";
  display: block;
  width: 1px;
  height: 38px;
  margin: 8px auto 0;
  background: var(--gold-2);
}

@media (prefers-reduced-motion: reduce) {
  .hero-emblem,
  .hero-copy .eyebrow,
  .hero-copy h1,
  .hero-divider,
  .hero-tag,
  .hero-copy .btn {
    animation: none;
  }

  .enter-logo {
    animation: none;
  }

  .loading-line span {
    animation: none;
    transform: none;
  }
}

/* Estate */
.estate {
  padding: 7rem 6vw;
  background: var(--ivory);
}

.estate-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 4.5rem;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}

.estate-copy h2 {
  margin-bottom: 1.4rem;
}

.estate-copy p {
  color: var(--stone);
  margin-bottom: 1rem;
  max-width: 34rem;
}

.estate-facts {
  list-style: none;
  margin-top: 2.2rem;
  display: grid;
  gap: 1.1rem;
  border-top: 1px solid var(--gold-dim);
  padding-top: 1.6rem;
}

.estate-facts li {
  display: grid;
  gap: 0.15rem;
}

.estate-facts strong {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
}

.estate-facts span {
  color: var(--stone);
  font-size: 0.92rem;
}

.show-frame {
  position: relative;
  height: 640px;
  overflow: hidden;
  touch-action: pan-y;
}

.show-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1.6s ease, transform 7s ease;
}

.show-frame img.is-active {
  opacity: 1;
  transform: scale(1);
}

.show-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 252, 247, 0.7);
  border-radius: 50%;
  background: rgba(26, 23, 20, 0.38);
  color: var(--white);
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 0.25s ease, border-color 0.25s ease;
}

.show-arrow:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.show-prev {
  left: 1rem;
}

.show-next {
  right: 1rem;
}

.show-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
}

.show-dots {
  display: flex;
  gap: 0.5rem;
}

.show-dots button {
  width: 34px;
  height: 2px;
  border: 0;
  padding: 0;
  background: var(--gold-dim);
  cursor: pointer;
  transition: background 0.3s ease;
}

.show-dots button[aria-selected="true"] {
  background: var(--gold);
}

.show-count {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--gold);
}

.estate-photo figcaption {
  margin-top: 0.7rem;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--stone);
}

/* Book */
.book {
  padding: 7rem 6vw;
  background: var(--forest);
  color: var(--cream);
}

.book .eyebrow {
  color: var(--gold-2);
}

.book .lede {
  color: rgba(243, 238, 228, 0.72);
}

.book-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  max-width: 1180px;
  margin: 0 auto;
}

.calendar-card,
.book-form {
  background: rgba(255, 252, 247, 0.05);
  border: 1px solid rgba(201, 164, 92, 0.28);
  padding: 1.8rem;
}

.cal-status {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 1.2rem;
}

.pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #7dba7a;
  box-shadow: 0 0 0 0 rgba(125, 186, 122, 0.7);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  70% { box-shadow: 0 0 0 8px rgba(125, 186, 122, 0); }
}

.cal-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.1rem;
}

.cal-nav h3 {
  font-size: 1.7rem;
  font-weight: 500;
}

.cal-nav button {
  width: 40px;
  height: 40px;
  border: 1px solid var(--gold-dim);
  background: transparent;
  color: var(--cream);
  font-size: 1.4rem;
  cursor: pointer;
}

.cal-nav button:hover {
  border-color: var(--gold);
  color: var(--gold-2);
}

.cal-weekdays,
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.cal-weekdays {
  margin-bottom: 0.4rem;
}

.cal-weekdays span {
  text-align: center;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-2);
  padding: 0.35rem 0;
}

.cal-grid button {
  aspect-ratio: 1;
  border: 0;
  background: transparent;
  color: var(--cream);
  font-size: 0.88rem;
  cursor: pointer;
  position: relative;
}

.cal-grid button:hover:not(:disabled):not(.booked) {
  background: rgba(201, 164, 92, 0.18);
}

.cal-grid button.muted {
  opacity: 0.28;
}

.cal-grid button.booked {
  color: rgba(243, 238, 228, 0.35);
  text-decoration: line-through;
  cursor: not-allowed;
}

.cal-grid button.booked::after {
  content: "";
  position: absolute;
  inset: 18%;
  border: 1px solid rgba(201, 164, 92, 0.2);
}

.cal-grid button.open:not(.booked) {
  color: var(--cream);
}

.cal-grid button.selected {
  background: var(--gold);
  color: var(--white);
}

.cal-grid button:disabled {
  opacity: 0.25;
  cursor: not-allowed;
}

.cal-legend {
  display: flex;
  gap: 1.2rem;
  margin-top: 1.1rem;
  font-size: 0.75rem;
  color: rgba(243, 238, 228, 0.7);
}

.cal-legend .dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 0.35rem;
  border-radius: 50%;
}

.dot.booked { background: #8a5a4a; }
.dot.open { background: #7dba7a; }
.dot.chosen { background: var(--gold); }

.cal-note {
  margin-top: 0.9rem;
  font-size: 0.85rem;
  color: var(--gold-2);
}

.form-kicker {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-2);
}

.selected-date {
  font-family: var(--serif);
  font-size: 1.7rem;
  margin: 0.35rem 0 1.3rem;
}

.book-form label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(243, 238, 228, 0.7);
  margin-bottom: 0.95rem;
}

.book-form input,
.book-form select,
.book-form textarea {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(201, 164, 92, 0.4);
  color: var(--cream);
  padding: 0.55rem 0;
  font-size: 0.98rem;
  letter-spacing: 0;
  text-transform: none;
  outline: none;
}

.book-form textarea {
  resize: vertical;
}

.book-form input::placeholder,
.book-form textarea::placeholder {
  color: rgba(243, 238, 228, 0.35);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-msg {
  margin-top: 0.9rem;
  font-size: 0.9rem;
}

.form-msg.ok { color: #b7d7a8; }
.form-msg.err { color: #e2b4a4; }

/* Halls */
.halls {
  padding: 7rem 6vw;
  background: var(--ivory);
}

.halls-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
  max-width: 1280px;
  margin: 0 auto;
}

.hall-card {
  background: var(--forest);
  color: var(--cream);
}

.hall-photo {
  display: block;
  width: 100%;
  height: 420px;
  padding: 0;
  border: 0;
  overflow: hidden;
  cursor: zoom-in;
  background: #1a2620;
}

.hall-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.hall-photo:hover img {
  transform: scale(1.04);
}

.hall-copy {
  padding: 1.8rem 1.9rem 2.1rem;
}

.hall-copy h3 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  margin-bottom: 0.35rem;
}

.hall-capacity {
  display: flex;
  align-items: baseline;
  gap: 0.55rem;
  margin: 0.4rem 0 0.9rem;
  color: var(--gold-2);
}

.hall-capacity strong {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 5vw, 3.8rem);
  font-weight: 400;
  line-height: 1;
}

.hall-capacity span {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hall-copy p:last-child {
  color: rgba(243, 238, 228, 0.72);
  max-width: 28rem;
}

/* Gallery */
.gallery {
  padding: 7rem 6vw;
  background: var(--cream);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  grid-auto-rows: 220px;
  gap: 0.7rem;
  max-width: 1280px;
  margin: 0 auto;
}

.g-item {
  position: relative;
  border: 0;
  padding: 0;
  overflow: hidden;
  cursor: zoom-in;
  background: #d9d0c0;
}

.g-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.g-item:hover img {
  transform: scale(1.05);
}

.g-item span {
  position: absolute;
  left: 1rem;
  bottom: 0.9rem;
  color: var(--white);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
}

.g-item.tall {
  grid-row: span 2;
}

.g-item.wide {
  grid-column: span 2;
}

.film-heading {
  max-width: 650px;
  margin: 6rem auto 2.5rem;
  text-align: center;
}

.film-heading h3 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.film-heading > p:last-child {
  margin-top: 0.8rem;
  color: var(--stone);
}

.film-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  max-width: 1280px;
  margin: 0 auto;
}

.film-item {
  position: relative;
  aspect-ratio: 9 / 13;
  border: 0;
  padding: 0;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
  cursor: pointer;
  text-align: left;
}

.film-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(18, 16, 14, 0.82), transparent 58%);
}

.film-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.88;
  transition: transform 0.8s ease, opacity 0.3s ease;
}

.film-item:hover video {
  transform: scale(1.04);
  opacity: 1;
}

.film-play {
  position: absolute;
  z-index: 2;
  top: 1rem;
  right: 1rem;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 252, 247, 0.72);
  border-radius: 50%;
}

.film-play::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 52%;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid var(--white);
  transform: translate(-50%, -50%);
}

.film-copy {
  position: absolute;
  z-index: 2;
  left: 1.2rem;
  right: 1.2rem;
  bottom: 1.2rem;
}

.film-copy small {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--gold-2);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.film-copy strong {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
}

/* Offers */
.offers {
  padding: 7rem 6vw;
  background: var(--ivory);
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  max-width: 1280px;
  margin: 0 auto 4rem;
}

.offer {
  padding: 2rem 1.7rem 2.2rem;
  border: 1px solid var(--gold-dim);
  background: var(--white);
}

.offer.featured {
  background: var(--forest);
  color: var(--cream);
  border-color: var(--forest);
}

.offer-no {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  color: var(--gold);
  margin-bottom: 1rem;
}

.offer h3 {
  font-size: 2rem;
  margin-bottom: 0.8rem;
}

.offer p {
  color: var(--stone);
  margin-bottom: 1.2rem;
}

.offer.featured p {
  color: rgba(243, 238, 228, 0.72);
}

.offer ul {
  list-style: none;
  font-size: 0.92rem;
}

.offer li + li {
  margin-top: 0.4rem;
}

.offer li::before {
  content: "— ";
  color: var(--gold);
}

.menu-showcase {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 3rem;
  border-top: 1px solid var(--gold-dim);
}

.menu-showcase-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 1.8rem;
}

.menu-showcase-head h3 {
  font-size: clamp(2.4rem, 5vw, 4rem);
}

.menu-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.menu-controls button {
  width: 46px;
  height: 46px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  background: transparent;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
}

.menu-controls button:hover {
  background: var(--gold);
  color: var(--white);
}

.menu-controls span {
  min-width: 62px;
  text-align: center;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.16em;
}

.menu-window {
  overflow: hidden;
  touch-action: pan-y;
}

.menu-track {
  display: flex;
  transition: transform 0.65s cubic-bezier(0.76, 0, 0.24, 1);
}

.menu-slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  min-height: 590px;
  background: var(--forest);
  color: var(--cream);
}

.menu-image {
  position: relative;
  min-height: 590px;
  overflow: hidden;
}

.menu-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(18, 16, 14, 0.55), transparent 45%);
}

.menu-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-image > span {
  position: absolute;
  z-index: 2;
  left: 1.8rem;
  bottom: 1.5rem;
  font-family: var(--serif);
  font-size: 2.4rem;
  color: var(--white);
}

.menu-details {
  padding: 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.menu-kind {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1.1rem;
}

.menu-kind span {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(243, 238, 228, 0.62);
}

.menu-kind strong {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 400;
  line-height: 0.92;
  color: var(--gold-2);
}

.menu-details > p {
  max-width: 30rem;
  margin-bottom: 1.4rem;
  color: rgba(243, 238, 228, 0.72);
}

.menu-details ul {
  list-style: none;
  margin-bottom: 2rem;
}

.menu-details li {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(201, 164, 92, 0.25);
}

.menu-details li span {
  padding-top: 0.22rem;
  color: var(--gold-2);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.menu-details li em {
  font-family: var(--serif);
  font-size: 1.08rem;
}

.menu-details .btn-line {
  align-self: flex-start;
  color: var(--cream);
}

.menu-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.2rem;
}

.menu-actions .btn-gold {
  border-color: var(--gold-2);
  background: var(--gold);
  color: var(--white);
}

.menu-actions .btn-line {
  align-self: center;
}

.menu-dots {
  display: flex;
  justify-content: center;
  gap: 0.55rem;
  margin-top: 1.2rem;
}

.menu-dots button {
  width: 40px;
  height: 3px;
  border: 0;
  padding: 0;
  background: var(--gold-dim);
  cursor: pointer;
}

.menu-dots button.is-active {
  background: var(--gold);
}

.menu-disclaimer {
  margin-top: 1rem;
  text-align: center;
  color: var(--stone);
  font-size: 0.78rem;
}

/* Adviser */
.adviser {
  padding: 5rem 6vw 7rem;
  background: var(--ivory);
}

.adviser-card {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  background: var(--forest);
  color: var(--cream);
}

.portrait-slot {
  position: relative;
  min-height: 640px;
  background:
    linear-gradient(160deg, #2d4338 0%, #1a2620 100%);
  overflow: hidden;
}

.portrait-slot img,
.portrait-slot video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  position: absolute;
  inset: 0;
}

.portrait-slot video {
  object-position: center center;
}

.portrait-slot.has-video {
  cursor: pointer;
}

.vedat-play {
  position: absolute;
  z-index: 3;
  inset: 0;
  margin: auto;
  width: 76px;
  height: 76px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  background: rgba(26, 23, 20, 0.42);
  color: var(--cream);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.25s ease;
}

.vedat-play span {
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 16px solid var(--gold-2);
}

.vedat-play:hover {
  background: rgba(26, 23, 20, 0.62);
  transform: scale(1.05);
}

.portrait-slot.is-playing .vedat-play {
  opacity: 0;
  pointer-events: none;
}

.portrait-slot video::-webkit-media-controls-panel {
  background: linear-gradient(transparent, rgba(18, 16, 14, 0.72));
}

.portrait-fallback {
  display: none;
  height: 520px;
  place-items: center;
  text-align: center;
  color: var(--gold-2);
}

.portrait-slot.empty .portrait-fallback {
  display: grid;
}

.portrait-slot.has-photo .portrait-fallback {
  display: none;
}

.portrait-fallback span {
  font-family: var(--serif);
  font-size: 6rem;
  line-height: 1;
}

.portrait-fallback small {
  display: block;
  margin-top: 0.4rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.68rem;
}

.adviser-copy {
  padding: 4rem 3.2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.adviser-copy h2 {
  font-size: clamp(3rem, 6vw, 5rem);
}

.role {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--gold-2);
  margin: 0.3rem 0 1.3rem;
}

.adviser-copy p {
  max-width: 32rem;
  color: rgba(243, 238, 228, 0.78);
  margin-bottom: 1.8rem;
}

.adviser-actions,
.visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.adviser-actions .btn-line {
  color: var(--cream);
  border-color: var(--gold);
}

.adviser-actions .btn-line:hover {
  background: var(--gold);
  color: var(--white);
}

/* Visit */
.visit {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  min-height: 560px;
  background: var(--cream);
}

.visit-copy {
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.visit-copy p {
  color: var(--stone);
  margin: 1rem 0 1.4rem;
  max-width: 26rem;
}

.visit-copy address {
  font-style: normal;
  margin-bottom: 1.8rem;
  line-height: 1.7;
}

.visit-copy address a {
  color: var(--gold);
  letter-spacing: 0.04em;
}

.visit-copy address a:hover {
  color: var(--forest);
}

.visit-actions .btn-line {
  color: var(--forest);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 560px;
  filter: grayscale(0.35) contrast(1.05);
}

/* Footer */
.site-footer {
  background: var(--ink);
  color: var(--cream);
  text-align: center;
  padding: 3rem 1.5rem 4rem;
}

.footer-logo {
  width: 210px;
  margin: 0 auto 0.6rem;
}

.footer-brand p,
.footer-note,
.copyright {
  color: rgba(243, 238, 228, 0.55);
  font-size: 0.85rem;
}

.footer-phone {
  display: inline-block;
  margin-top: 0.7rem;
  font-family: var(--serif);
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  color: var(--gold-2);
}

.footer-phone:hover {
  color: var(--cream);
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.1rem 1.6rem;
  margin-top: 0.9rem;
}

.footer-ig {
  display: flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  margin: 0;
  color: var(--gold-2);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
}

.footer-ig svg {
  width: 16px;
  height: 16px;
}

.footer-ig:hover {
  color: var(--cream);
}

.footer-note {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--gold-2);
  margin: 0.8rem 0 1.2rem;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(18, 16, 14, 0.92);
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 3rem;
}

.lightbox[hidden] {
  display: none;
}

.lightbox img,
.lightbox video {
  max-height: 88vh;
  max-width: 92vw;
  object-fit: contain;
}

.lightbox video {
  width: min(1100px, 92vw);
}

.lightbox video[hidden],
.lightbox img[hidden] {
  display: none;
}

.lb-close {
  position: absolute;
  top: 1.2rem;
  right: 1.4rem;
  background: none;
  border: 0;
  color: var(--cream);
  font-size: 2.4rem;
  cursor: pointer;
}

@media (max-width: 980px) {
  .gold-frame {
    display: none;
  }

  body.nav-open {
    overflow: hidden;
  }

  /* blur would make the header a containing block for the fixed nav panel */
  .site-header {
    backdrop-filter: none;
    background: var(--ivory);
  }

  body.nav-open .site-header {
    z-index: 90;
  }

  body.nav-open .music-toggle,
  body.nav-open .whatsapp-float {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  .nav-toggle {
    display: block;
    z-index: 60;
    margin-left: 0.2rem;
  }

  .nav-toggle span {
    transition: transform 0.3s ease;
  }

  .nav-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(86vw, 390px);
    padding: 7.5rem 2.2rem 3rem;
    background: var(--ivory);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.76, 0, 0.24, 1);
    overflow-y: auto;
    z-index: 55;
  }

  .nav.open {
    transform: none;
  }

  .nav-mobile-head {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    position: absolute;
    top: 1.3rem;
    left: 1.7rem;
    color: var(--forest);
    font-family: var(--serif);
    font-size: 1.05rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .nav-mobile-head img {
    width: 42px;
    height: 42px;
    object-fit: contain;
  }

  .nav a {
    width: 100%;
    padding: 0.95rem 0;
    border-bottom: 1px solid var(--gold-dim);
    font-family: var(--serif);
    font-size: 1.55rem;
    letter-spacing: 0.02em;
    text-transform: none;
  }

  .nav .nav-cta {
    width: auto;
    margin-top: 1.7rem;
    padding: 0.85rem 1.3rem;
    border: 0;
    font-family: var(--sans);
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }

  .header-langs {
    margin-left: auto;
    margin-right: 0.15rem;
  }

  .nav .lang-switch {
    display: none;
  }

  .nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 54;
    border: 0;
    background: rgba(18, 16, 14, 0.54);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
  }

  .nav-backdrop.open {
    opacity: 1;
    visibility: visible;
  }

  .estate-grid,
  .book-layout,
  .offer-grid,
  .adviser-card,
  .visit {
    grid-template-columns: 1fr;
  }

  .menu-slide {
    grid-template-columns: 1fr;
  }

  .menu-image {
    min-height: 390px;
  }

  .menu-details {
    padding: 2.5rem 1.7rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 200px;
  }

  .halls-grid {
    grid-template-columns: 1fr;
  }

  .hall-photo {
    height: 320px;
  }

  .film-grid {
    grid-template-columns: 1fr 1fr;
  }

  .g-item.wide,
  .g-item.tall {
    grid-column: span 1;
    grid-row: span 1;
  }

  .show-frame,
  .portrait-slot,
  .portrait-fallback {
    height: 520px;
    min-height: 520px;
  }

  .site-header {
    padding: 0.4rem 1rem;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .brand-text strong {
    font-size: 1.02rem;
    letter-spacing: 0.12em;
  }

  .estate,
  .book,
  .halls,
  .gallery,
  .offers {
    padding: 4.5rem 1.3rem;
  }

  .adviser-copy,
  .visit-copy {
    padding: 2.4rem 1.4rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .menu-showcase-head {
    align-items: center;
  }

  .menu-showcase-head h3 {
    font-size: 2.35rem;
  }

  .menu-controls {
    gap: 0.45rem;
  }

  .menu-controls button {
    width: 40px;
    height: 40px;
  }

  .menu-controls span {
    display: none;
  }

  .menu-slide,
  .menu-image {
    min-height: 340px;
  }

  .menu-details li {
    grid-template-columns: 72px 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .film-grid {
    grid-template-columns: 1fr;
  }

  .film-item {
    aspect-ratio: 4 / 5;
  }

  .cal-legend {
    flex-wrap: wrap;
  }
}

.thanks-page .site-header {
  position: relative;
}

.thanks-page .lang-switch {
  color: var(--forest);
}

.thanks {
  min-height: calc(100vh - 88px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1.4rem 5rem;
}

.thanks-logo {
  width: clamp(160px, 28vw, 230px);
  margin-bottom: 1.4rem;
}

.thanks h1 {
  font-size: clamp(3rem, 8vw, 5.4rem);
  margin: 0.3rem 0 0.6rem;
}

.thanks p {
  max-width: 28rem;
  color: var(--stone);
}

.thanks p + p {
  margin-top: 0.35rem;
}

.thanks-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 2rem;
}
