:root {
  --ink: #0d0d0d;
  --ink-mid: #1c1c1c;
  --ink-soft: #2e2e2e;
  --gold: #d49d37;
  --gold-light: #e8d5b0;
  --gold-pale: #f5eed9;
  --fog: #f7f5f1;
  --linen: #ede9e2;
  --white: #fefefe;
  --muted: #888580;
  --border: rgba(201, 169, 110, 0.2);
  --ease: cubic-bezier(0.76, 0, 0.24, 1);
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--fog);
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
  font-size: 1.2rem;
  /* line-height: 1.6; */
  -webkit-font-smoothing: antialiased;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.4;
}

/* ─── Typography ─── */
.serif,
h1,
h2,
h3 {
  font-family: "Cormorant Garamond", serif;
}
h1,
h2,
h3 {
  font-weight: 300;
}
h1 {
  font-size: clamp(3.5rem, 8vw, 6rem);
  line-height: 0.95;
}
h2 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.05;
}

.legal-content h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  line-height: 1.2;
  margin-bottom: 2rem;
}

.legal-content h2 {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  line-height: 1.3;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.legal-content ul {
  padding-left: 1.2em;
  margin-block: 1rem;
}

.legal-content ul li {
  padding-left: 0.3em;
  margin-bottom: 0.5rem;
  font-size: inherit;
  font-weight: 300;
}

.legal-content ul ul {
  margin-top: 0.4rem;
  margin-bottom: 0;
}
h3 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
}

p {
  color: var(--dark);
  font-size: 1rem;
  font-weight: 300;
}

.bold {
  font-weight: 700;
}
.mb-0 {
  margin-bottom: 0 !important;
}
.mb-1 {
  margin-bottom: 0.75rem !important;
}
.mb-2 {
  margin-bottom: 1.5rem !important;
}

.container {
  width: 90%;
  max-width: 1400px;
  margin: auto;
}

/* ─── Subpage overrides ─── */
body.subpage {
  background: var(--ink-mid);
}

body.subpage .navbar,
body.subpage .navbar.scrolled {
  background: var(--ink);
  color: var(--fog);
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

body.subpage .navbar.scrolled .logo a {
  color: var(--white);
}

body.subpage .navbar.scrolled nav a:not(.nav-cta) {
  color: rgba(255, 255, 255, 0.85);
}

body.subpage .navbar.scrolled .menu-toggle span {
  background: var(--white);
}

body.subpage h1 {
  margin-top: 3rem;
}

body.subpage p {
  font-size: inherit;
}

/* ─── Navbar ─── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 32px 0;
  transition:
    padding 0.5s var(--ease),
    background 0.5s;
}

.navbar.scrolled {
  padding: 20px 0;
  background: var(--ink);
  backdrop-filter: blur(24px) saturate(160%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo a {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.95rem;
  font-weight: bold;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
  color: white;
  transition: color 0.5s;
  text-decoration: none;
}

.logo a img {
  height: 4.5rem;
  width: auto;
  display: block;
}

.logo span {
  color: var(--gold);
}
.navbar.scrolled .logo a {
  color: var(--white);
}

nav {
  display: flex;
  align-items: center;
  gap: 48px;
}

nav a {
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.3s;
  position: relative;
}

.navbar.scrolled nav a:not(.nav-cta) {
  color: rgba(255, 255, 255, 0.85);
}

nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.4s var(--ease);
}

nav a:not(.nav-cta):hover {
  color: var(--gold);
}
nav a:not(.nav-cta):hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--ink);
  color: white !important;
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 12px 28px;
  transition:
    background 0.4s var(--ease),
    color 0.4s,
    border-color 0.4s;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--ink) !important;
  border-color: var(--gold) !important;
}

.navbar.scrolled .nav-cta {
  color: var(--gold-light) !important;
  border-color: var(--gold-light);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
}

.menu-toggle span {
  width: 28px;
  height: 1px;
  background: white;
  transition: all 0.3s;
  display: block;
}

.navbar.scrolled .menu-toggle span {
  background: white;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ─── Hero ─── */
.hero {
  min-height: 100vh;
  background: var(--ink);
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  position: relative;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 180px 80px 80px;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  animation: fadeUp 1s var(--ease) 0.2s both;
}

.hero-eyebrow::before {
  content: "";
  width: 40px;
  height: 1px;
  background: var(--gold);
  display: block;
}

.hero h1 {
  color: var(--white);
  font-style: italic;
  margin-bottom: 40px;
  animation: fadeUp 1s var(--ease) 0.4s both;
}

.hero h1 em {
  font-style: normal;
  color: var(--gold);
}

.hero-sub {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
  margin-bottom: 56px;
  animation: fadeUp 1s var(--ease) 0.6s both;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  animation: fadeUp 1s var(--ease) 0.8s both;
}

.hero-right {
  position: relative;
  overflow: hidden;
}

.hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6) saturate(0.8);
  transform: scale(1.05);
  animation: heroZoom 8s ease-out both;
}

.hero-right::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--ink) 0%, transparent 40%);
}

/* ─── Marquee ─── */
.marquee {
  display: flex;
  overflow: hidden;
  gap: 2rem;
  position: relative;
  user-select: none;
  background-color: var(--gold);
}

.marquee-content {
  flex-shrink: 0;
  display: flex;
  justify-content: space-around;
  min-width: 100%;
  gap: 3rem;
  animation: scroll 30s linear infinite;
}

.marquee-content p {
  font-family: "DM Sans", serif;
  font-weight: 300;
  font-size: 1.25rem;
  padding-block: 0.5rem;
  color: var(--ink);
  text-transform: uppercase;
  line-height: 1;
  margin: 0;
}

/* ─── Gallery ─── */
.gallery-section {
  padding: 120px 0;
  background: var(--fog);
}

.gallery-section img {
  width: 100%;
  height: auto;
  display: block;
}

.section-label {
  font-size: 0.9rem;
  letter-spacing: 0.25em;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.section-label::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.section-meta {
  font-size: 0.9rem;
  color: var(--muted);
  max-width: 300px;
  text-align: right;
  line-height: 1.6;
}

.gallery-masonry {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: auto auto auto;
  gap: 12px;
}

.gallery-item {
  overflow: hidden;
  position: relative;
}
.gallery-item:first-child {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.85) brightness(0.95);
  transition:
    transform 0.8s var(--ease),
    filter 0.6s;
  min-height: 280px;
}

.gallery-item:first-child img {
  min-height: 580px;
}

.gallery-item:hover img {
  transform: scale(1.06);
  filter: saturate(1) brightness(1);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(13, 13, 13, 0.5) 0%,
    transparent 50%
  );
  opacity: 0;
  transition: opacity 0.4s;
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

/* Video item spans full width of the last row */
.gallery-item--video {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 6;
  min-height: 0;
  background: var(--ink);
}

.gallery-item--video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ─── Features ─── */
.features-section {
  padding: 120px 0;
  background: var(--ink);
  color: white;
}

.features-section .section-label {
  color: var(--gold);
}

.features-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 120px;
  align-items: center;
  margin-top: 40px;
}

.features-img-wrap {
  position: relative;
  overflow: hidden;
}

.features-img-wrap img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
}

.features-img-badge {
  position: absolute;
  bottom: -32px;
  right: -32px;
  width: 140px;
  height: 140px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.features-img-badge strong {
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--ink);
  line-height: 1;
}

.features-img-badge span {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.features-content h2 {
  color: white;
  margin-bottom: 32px;
}

.features-intro {
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 35px;
  font-size: 1.05rem;
}

.feature-list {
  list-style: none;
}

.feature-item {
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: flex-start;
  gap: 24px;
  transition: all 0.3s;
}

.feature-item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.feature-item:hover {
  padding-left: 8px;
}

.feature-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 1rem;
  color: var(--gold);
  opacity: 0.6;
  min-width: 32px;
  padding-top: 2px;
}

.feature-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  font-weight: 300;
}

/* ─── Availability ─── */
.availability-section {
  padding: 120px 0;
  background: var(--linen);
}

.calendar-wrap {
  max-width: 900px;
  margin: 30px auto 0;
  background: var(--white);
  border: 1px solid var(--border);
  overflow: hidden;
}

.calendar-top {
  background: var(--ink);
  padding: 40px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.calendar-top h3 {
  color: var(--white);
  font-size: 1.8rem;
  font-weight: 300;
}

.calendar-top button {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  width: 44px;
  height: 44px;
  font-size: 1rem;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.calendar-top button:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}

.calendar-body {
  padding: 48px 60px;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}

.calendar-day-name {
  text-align: center;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 12px 0 20px;
  font-weight: 500;
}

.calendar-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 400;
  transition: all 0.2s;
  position: relative;
}

.available,
.legend-box.available {
  background: rgba(34, 139, 87, 0.12);
  border: 1px solid rgba(34, 139, 87, 0.3);
}

.available {
  color: #1a6b44;
  font-weight: 500;
}

.available:hover {
  background: rgba(34, 139, 87, 0.85);
  color: white;
  border-color: rgba(34, 139, 87, 0.85);
  transform: scale(1.1);
  z-index: 1;
}

.booked,
.legend-box.booked {
  background: rgba(185, 28, 28, 0.1);
  border: 1px solid rgba(185, 28, 28, 0.2);
}

.booked {
  color: rgba(185, 28, 28, 0.6);
  text-decoration: line-through;
  cursor: not-allowed;
}

.past {
  color: rgba(13, 13, 13, 0.18);
  cursor: not-allowed;
  background: transparent;
}

.legend-box.past {
  background: var(--fog);
  border: 1px solid rgba(13, 13, 13, 0.1);
}

.calendar-legend {
  display: flex;
  gap: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  margin-top: 24px;
}

@media screen and (max-width: 768px) {
  .calendar-legend {
    flex-direction: column;
    gap: 8px;
  }
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.legend-box {
  width: 18px;
  height: 18px;
}

/* ─── Why Section ─── */
.why-section {
  padding: 120px 0;
  background: var(--ink);
  color: white;
}

.why-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-list {
  list-style: none;
  margin-top: 24px;
}

.why-list li {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(255, 255, 255, 0.85);
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: baseline;
  gap: 20px;
  line-height: 1.2;
  transition: color 0.3s;
}

.why-list li:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.why-list li:hover {
  color: white;
}

.why-conclusion {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.why-cta-text {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 300;
  color: white;
  line-height: 1.05;
}

.why-cta-text em {
  font-style: normal;
  color: var(--gold);
}

@media (max-width: 1100px) {
  .why-inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}

/* ─── Pricing ─── */
.pricing-section {
  padding: 120px 0;
  /* background: var(--fog); */
  background: var(--linen);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 30px;
}

@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1400px) {
  .pricing-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.price-card {
  background: var(--white);
  padding: 48px;
  position: relative;
  transition: all 0.4s var(--ease);
  overflow: hidden;
}

.price-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}

.price-card:hover {
  transform: translateY(-6px);
  background: var(--ink);
}

.price-card:hover::before {
  transform: scaleX(1);
}

.price-card:hover .price-from,
.price-card:hover .price-period,
.price-card:hover .price-feature {
  color: rgba(255, 255, 255, 0.5);
}

.price-card:hover .price-amount {
  color: var(--gold);
}

.price-card:hover .price-cta {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}

.price-card:hover .price-feature {
  border-color: rgba(255, 255, 255, 0.1);
}

.price-label {
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  display: block;
  font-weight: 500;
  font-size: 1.2rem;
}

.price-amount {
  font-family: "Zain", sans-serif;
  font-weight: 500;
  font-size: 4rem;
  color: var(--ink);
  line-height: 1;
  transition: color 0.4s;
}

.price-from {
  color: var(--dark);
  font-weight: 500;
  margin-bottom: 10px;
  transition: color 0.4s;
}

.price-period {
  color: var(--dark);
  font-weight: 500;
  margin-bottom: 30px;
  transition: color 0.4s;
}

.price-features {
  list-style: none;
  margin-bottom: 30px;
}

.price-feature {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 1.1rem;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  gap: 12px;
  transition:
    color 0.4s,
    border-color 0.4s;
}

.price-feature:first-child {
  border-top: 1px solid var(--border);
}
.price-feature::before {
  content: "—";
  color: var(--gold);
  font-size: 0.7rem;
}

.price-cta {
  display: inline-block;
  padding: 14px 32px;
  background: transparent;
  border: 1px solid var(--ink);
  color: var(--ink);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all 0.4s var(--ease);
  width: 100%;
  text-align: center;
}

.price-cta:hover {
  background: var(--ink);
  color: var(--gold-light);
}

/* ─── Contact ─── */
.contact-section {
  padding: 120px 0;
  background: var(--ink);
  color: white;
}

.contact-section .section-label {
  color: var(--gold);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  align-items: start;
}

.contact-info h2 {
  color: white;
  margin-bottom: 40px;
}

.contact-detail {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-detail:last-of-type {
  border-bottom: none;
}

.contact-detail-label {
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.contact-detail-value {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.6;
}

.contact-detail-value a {
  color: rgba(255, 255, 255, 0.75);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.form-group.hp {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 0;
  width: 0;
  z-index: -1;
  pointer-events: none;
}

.form-feedback {
  padding: 16px 20px;
  border-radius: 6px;
  margin-bottom: 24px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.form-feedback--success {
  background: rgba(80, 200, 120, 0.15);
  border: 1px solid rgba(80, 200, 120, 0.4);
  color: #7ee8a2;
}

.form-feedback--error {
  background: rgba(220, 80, 80, 0.15);
  border: 1px solid rgba(220, 80, 80, 0.4);
  color: #f5a0a0;
}

.form-group label {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 10px;
}

.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  padding: 16px 20px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  transition: all 0.3s;
  outline: none;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  background: rgba(201, 169, 110, 0.05);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.2);
}

.form-group select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c9a96e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 16px;
  padding-right: 50px;
}

.form-group select:focus {
  background-image:
    url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c9a96e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'/%3e%3c/svg%3e"),
    linear-gradient(rgba(201, 169, 110, 0.05), rgba(201, 169, 110, 0.05));
  background-repeat: no-repeat, no-repeat;
  background-position:
    right 20px center,
    0 0;
  background-size: 16px, 100%;
}

.form-group select option {
  background: #1a1a1a;
  color: white;
  padding: 10px;
}

.form-group textarea {
  min-height: 120px;
}

.form-submit {
  padding: 18px 48px;
  background: var(--gold);
  color: var(--ink);
  border: none;
  font-family: "DM Sans", sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: all 0.4s var(--ease);
  align-self: flex-start;
  display: flex;
  align-items: center;
  gap: 12px;
}

.form-submit::after {
  content: "→";
}
.form-submit:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

/* ─── Buttons ─── */
.btn-primary {
  padding: 16px 40px;
  background: var(--gold);
  color: var(--ink);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.4s var(--ease);
  border: 1px solid var(--gold);
}

.btn-primary::after {
  content: "→";
  transition: transform 0.3s var(--ease);
}

.btn-primary:hover {
  background: transparent;
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-primary:hover::after {
  transform: translateX(4px);
}

.btn-outline {
  padding: 16px 40px;
  background: var(--fog);
  color: var(--ink);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.4s var(--ease);
}

.btn-outline:hover {
  background: var(--ink);
  color: var(--fog);
  transform: translateY(-2px);
}

/* ─── Footer ─── */
.footer {
  background: var(--ink-mid);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 40px 5%;
}

.footer p {
  color: rgba(255, 255, 255, 0.8);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.footer .logo {
  font-size: 2.4rem;
  font-weight: bold;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.8);
}
.footer a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s;
}
.footer p a {
  text-decoration: underline;
}
.footer a:hover {
  color: var(--gold);
}

.footer .created-by {
  background-color: var(--light);
  user-select: none;
}

.footer .created-by a {
  text-decoration: none;
  font-family: monospace;
  font-size: 0.9rem;
}

/* ─── Animations ─── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroZoom {
  from {
    transform: scale(1.12);
  }
  to {
    transform: scale(1.05);
  }
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% - 2rem));
  }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.9s var(--ease),
    transform 0.9s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 {
  transition-delay: 0.15s;
}
.reveal-delay-2 {
  transition-delay: 0.3s;
}
.reveal-delay-3 {
  transition-delay: 0.45s;
}

/* ─── Responsive ─── */
@media (max-width: 1300px) {
  nav a,
  .navbar.scrolled nav a:not(.nav-cta) {
    color: var(--ink);
  }

  body.subpage .navbar.scrolled nav a:not(.nav-cta) {
    color: var(--ink);
  }

  .features-img-badge {
    right: 0;
  }

  .nav-cta {
    color: var(--white) !important;
    border-color: var(--ink);
  }

  .menu-toggle {
    display: flex;
  }

  nav {
    position: fixed;
    top: 113px;
    left: 0;
    right: 0;
    background: rgba(247, 245, 241, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 32px;
    gap: 0;
    transform: translateY(-110%);
    opacity: 0;
    transition: all 0.4s var(--ease);
    pointer-events: none;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.1);
  }

  nav.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  nav a {
    padding: 20px;
    border-bottom: 1px solid var(--border);
    width: 100%;
  }

  .gallery-masonry {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-item:first-child {
    grid-row: auto;
    grid-column: span 2;
  }

  .gallery-item:first-child img {
    min-height: 300px;
  }

  .gallery-item--video {
    aspect-ratio: 16 / 7;
  }

  .calendar-top,
  .calendar-body {
    padding: 32px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1400px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-right {
    position: absolute;
    inset: 0;
    z-index: 0;
  }

  .hero-left {
    position: relative;
    z-index: 1;
    background: linear-gradient(
      to right,
      rgba(13, 13, 13, 0.95) 20%,
      transparent
    );
    padding: 160px 5% 80px;
  }

  .features-inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .features-img-wrap {
    max-width: 600px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

@media (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
  .footer-left,
  .footer-right {
    width: 100%;
  }
  .footer .created-by {
    text-align: center;
  }
  .about-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 480px) {
  .gallery-masonry {
    grid-template-columns: 1fr;
  }
  .gallery-item:first-child {
    grid-column: auto;
  }
  .gallery-item--video {
    aspect-ratio: 16 / 9;
  }
  .calendar-top {
    padding: 24px 20px;
  }
  .calendar-body {
    padding: 24px 20px;
  }
  .calendar-day {
    font-size: 0.75rem;
  }
}

/* ─── Checkboxes ─── */
.checkbox-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.checkbox-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  transition: all 0.3s var(--ease);
  user-select: none;
  margin-bottom: 0;
}

.checkbox-card:hover {
  border-color: var(--gold);
  background: rgba(201, 169, 110, 0.06);
}

.checkbox-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.checkbox-custom {
  width: 18px;
  height: 18px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  display: inline-block;
  position: relative;
  transition: all 0.3s;
}

.checkbox-custom::after {
  content: "";
  position: absolute;
  inset: 3px;
  background: var(--gold);
  transform: scale(0);
  transition: transform 0.25s var(--ease);
}

.checkbox-card input:checked + .checkbox-custom {
  border-color: var(--gold);
  background: rgba(201, 169, 110, 0.1);
}

.checkbox-card input:checked + .checkbox-custom::after {
  transform: scale(1);
}
.checkbox-card input:checked ~ .checkbox-text {
  color: var(--gold-light);
}

.checkbox-text {
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.3s;
}

::placeholder {
  color: var(--white) !important;
  opacity: 0.85;
}
#startdate,
#enddate {
  color: var(--white);
}

/* ─── FAQ ─── */
.faq-section {
  padding: 120px 0;
  background: var(--fog);
}
.faq-list {
  margin-top: 0;
  /* max-width: 900px; */
}
.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 28px 0;
  text-align: left;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: var(--ink);
  transition: color 0.3s;
}

.faq-question:hover {
  color: var(--gold);
}
.faq-icon {
  font-size: 1.4rem;
  transition: transform 0.3s var(--ease);
  color: var(--gold);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}

.faq-answer p {
  padding-bottom: 24px;
  color: var(--muted);
}
.faq-item.active .faq-answer {
  max-height: 200px;
}
.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/* ─── About Section ─── */
.about-section {
  padding: 120px 0;
  background: var(--ink);
  color: white;
}

.about-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-content h2 {
  color: white;
  margin-bottom: 32px;
}
.about-content em {
  color: var(--gold);
  font-style: normal;
}
.about-intro {
  font-size: 1.1rem;
  margin-bottom: 28px;
}
.about-content p {
  color: white;
  margin-bottom: 20px;
}

.about-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  border-radius: 6px;
}

/* ─── Responsive ─── */
@media (max-width: 1100px) {
  .about-inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .about-image {
    order: -1;
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 100px 20px;
  }
  .about-inner {
    gap: 40px;
  }
  .about-image img {
    max-height: none;
  }
}

@media (max-width: 480px) {
  .about-section {
    padding: 60px 15px;
  }
  .about-inner {
    gap: 30px;
  }
  .about-intro {
    font-size: 1rem;
  }
}

.gold {
  color: var(--gold);
}

/* ─── Cookie banner ─── */
.cookie-banner[hidden] {
  display: none;
}

.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: var(--ink-mid);
  color: var(--gold-light);
  padding: 1rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 0.875rem;
  font-weight: 300;
  z-index: 10000;
  width: min(90vw, 640px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}

.cookie-banner p {
  color: var(--gold-light);
  font-size: 0.875rem;
  margin: 0;
}

.cookie-banner a {
  color: var(--gold);
  text-decoration: underline;
}

.cookie-accept {
  flex-shrink: 0;
  background: var(--gold);
  color: var(--ink);
  border: none;
  padding: 0.5rem 1.25rem;
  font-family: "DM Sans", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.2s var(--ease);
}

.cookie-accept:hover {
  background: var(--gold-light);
}
