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

:root {
  --black: #0a0a0a;
  --dark: #1a1a1a;
  --white: #ffffff;
  --off-white: #f5f5f5;
  --gold: #c9a961;
  --muted: #888;
  --border: #2a2a2a;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  color: var(--white);
  background: var(--black);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── Nav ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
nav.hidden { transform: translateY(-100%); }
.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
}
nav img.logo { height: 60px; width: auto; }
nav ul {
  list-style: none;
  display: flex;
  gap: 2.5rem;
  align-items: center;
}
nav ul a {
  color: var(--off-white);
  text-decoration: none;
  font-weight: 400;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: color 0.2s;
}
nav ul a:hover { color: var(--gold); }
.nav-cta {
  background: var(--gold);
  color: var(--black);
  padding: 0.7rem 1.5rem;
  border-radius: 2px;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.nav-cta:hover { background: #b89850; }

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem 6rem;
  position: relative;
  overflow: hidden;
}
.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.6);
  z-index: 1;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 20%;
  background: linear-gradient(to bottom, transparent, var(--dark));
  z-index: 1;
}
.hero-content { position: relative; z-index: 2; width: 100%; text-align: center; }
.hero-tag {
  display: inline-block;
  color: var(--gold);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero h1 {
  font-size: clamp(3rem, 7vw, 7.5rem);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
  white-space: nowrap;
  text-align: center;
}
.hero h1 strong { font-weight: 700; color: var(--gold); }
.hero p {
  font-size: 1.1rem;
  color: var(--white);
  text-shadow: 0 1px 8px rgba(0,0,0,0.6);
  margin: 0 auto 3rem;
  max-width: 600px;
  line-height: 1.8;
}
.btn {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  padding: 0.9rem 2.5rem;
  border-radius: 0;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid var(--gold);
  cursor: pointer;
}
.btn:hover { background: transparent; color: var(--gold); transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.4);
  color: var(--white);
  margin-left: 1rem;
}
.btn-ghost:hover { border-color: var(--white); background: transparent; box-shadow: none; }

/* ── Section defaults ── */
section { padding: 10rem 2rem; border-top: 1px solid var(--border); }
.section-inner { max-width: 1400px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 5rem; }
.section-tag {
  display: inline-block;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
h2 strong { font-weight: 700; color: var(--gold); }
.lead { font-size: 1.25rem; color: var(--muted); max-width: 650px; margin: 0 auto; line-height: 1.8; }

/* ── Services ── */
#services { background: var(--dark); border-top: none; }
#services > .section-inner > .section-tag { display: block; margin-bottom: 3rem; text-align: center; }
.services-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.services-image img,
.services-image video {
  width: 100%;
  height: auto;
  display: block;
}
.services-list {
  list-style: none;
  padding: 0;
  text-align: left;
}
.services-list li {
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--white);
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
}
.services-list li::before {
  content: '✓';
  color: var(--gold);
  font-size: 1.2rem;
  font-weight: 600;
  flex-shrink: 0;
}
.services-list li:hover { color: var(--gold); }

/* ── Pricing ── */
#pricing { background: var(--black); }
.pricing-carousel {
  position: relative;
}
.pricing-carousel .carousel-prev,
.pricing-carousel .carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background: rgba(10,10,10,0.75);
}
.pricing-carousel .carousel-prev { left: 0.75rem; }
.pricing-carousel .carousel-next { right: 0.75rem; }
.pricing-track-wrap {
  overflow: hidden;
  width: 100%;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.pricing-track {
  display: flex;
  gap: 2rem;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.pricing-card {
  flex: 0 0 calc((100% - 4rem) / 3);
  background: var(--dark);
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s ease;
}
.pricing-card:hover { border-color: var(--gold); }
.pricing-placeholder { opacity: 0.35; pointer-events: none; }
.pricing-card--featured { border-color: var(--gold); }
.pricing-card-image {
  height: 340px;
  overflow: hidden;
  flex-shrink: 0;
}
.pricing-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.pricing-card:hover .pricing-card-image img { transform: scale(1.04); }
.pricing-card-content {
  padding: 1.75rem 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.pricing-name {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.6rem;
}
.pricing-card--featured .pricing-name { color: var(--gold); }
.pricing-price {
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}
.pricing-from {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0.5;
  vertical-align: middle;
  margin-right: 0.25rem;
}
.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
  flex: 1;
}
.pricing-features li {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
  padding: 0.3rem 0;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  line-height: 1.4;
}
.pricing-features li::before {
  content: '—';
  color: var(--gold);
  font-size: 0.65rem;
  flex-shrink: 0;
}
.pricing-features--addons li {
  justify-content: space-between;
}
.pricing-features--addons li::before { display: none; }
.pricing-features--addons li span:last-child { color: var(--gold); }
.addon-item {
  cursor: pointer;
  padding: 0.5rem 0.4rem;
  margin: 0 -0.4rem;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s;
}
.addon-item:hover { background: rgba(201,169,97,0.1); color: var(--white); }
.addon-item:hover span:last-child { color: var(--gold); }
.pricing-badge {
  display: inline-block;
  font-size: 0.6rem;
  background: var(--gold);
  color: var(--black);
  padding: 0.2rem 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 0.75rem;
  align-self: flex-start;
}
.pricing-card-arrow {
  margin-top: 1.25rem;
  font-size: 1.1rem;
  color: var(--gold);
  align-self: flex-end;
  opacity: 0.5;
  transition: opacity 0.2s, transform 0.2s;
}
.pricing-card:hover .pricing-card-arrow { opacity: 1; transform: translateX(4px); }
.pricing-nudge {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.78rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.35);
}
.carousel-btn {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--white);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.2s;
  border-radius: 2px;
}
.carousel-btn:hover { border-color: var(--gold); color: var(--gold); }
.carousel-btn:disabled { opacity: 0.25; cursor: default; pointer-events: none; }

/* ── Gallery ── */
#gallery { background: var(--black); }
.gallery-carousel {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.gallery-track-wrap {
  flex: 1;
  position: relative;
  height: 65vh;
  min-height: 400px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: border-color 0.3s;
  cursor: pointer;
}
.gallery-track-wrap:hover { border-color: var(--gold); }
.gallery-track {
  position: relative;
  width: 100%;
  height: 100%;
}
.gallery-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}
.gallery-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}
.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.gallery-track-wrap:hover .gallery-slide.is-active img { transform: scale(1.03); }
.gallery-slide--comparison { cursor: ew-resize; user-select: none; }
.comp-before,
.comp-after {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.comp-after { clip-path: inset(0 50% 0 0); }
.comp-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--gold);
  transform: translateX(-50%);
  pointer-events: none;
}
.comp-handle-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 42px;
  height: 42px;
  background: var(--black);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--gold);
  box-shadow: 0 2px 12px rgba(0,0,0,0.5);
}
.comp-label {
  position: absolute;
  bottom: 1.5rem;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  background: rgba(0,0,0,0.5);
  color: var(--white);
  pointer-events: none;
}
.comp-label--before { left: 1.5rem; }
.comp-label--after  { right: 1.5rem; }
.gallery-counter {
  position: absolute;
  bottom: 1.25rem;
  right: 1.25rem;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.55);
  pointer-events: none;
  z-index: 2;
}

/* ── About ── */
#about { background: var(--dark); }
/* ── About ── */
.about__wrap {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 0;
  margin-bottom: 5rem;
}
.about__wrap::before,
.about__wrap::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 40px;
  opacity: 0.4;
}
.about__wrap::before { top: -12px; left: -12px; border-top: 1px solid var(--gold); border-left: 1px solid var(--gold); }
.about__wrap::after  { bottom: -12px; right: -12px; border-bottom: 1px solid var(--gold); border-right: 1px solid var(--gold); }
.about__left {
  padding: 3rem 3rem 3rem 0;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.about__eyebrow {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.about__name {
  font-size: clamp(2.6rem, 5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.about__name em { font-style: italic; font-weight: 300; color: var(--muted); }
.about__title {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 400;
}
.about__divider { width: 2.5rem; height: 1px; background: var(--gold); }
.about__stats { display: flex; flex-direction: column; gap: 1.25rem; }
.about__stat { display: flex; flex-direction: column; gap: 0.2rem; }
.about__stat-num {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.02em;
}
.about__stat-lbl {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 400;
}
.about__right {
  padding: 3rem 0 3rem 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2.5rem;
}
.about__body { display: flex; flex-direction: column; gap: 1.4rem; }
.about__headline {
  font-size: clamp(1.4rem, 2.5vw, 1.75rem);
  font-weight: 600;
  line-height: 1.35;
  color: var(--white);
}
.about__headline em { font-style: italic; font-weight: 300; color: var(--gold); }
.about__text {
  font-size: 0.92rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.55);
  font-weight: 300;
}
.about__tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.about__tag {
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 0.35rem 0.85rem;
  transition: border-color 0.2s, color 0.2s;
}
.about__tag:hover { border-color: var(--gold); color: var(--gold); }
.about__cta { display: flex; align-items: center; gap: 1.25rem; padding-top: 0.5rem; }
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
  text-align: center;
}
.stat strong {
  display: block;
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat span { font-size: 0.85rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.05em; }

/* ── Hero availability ── */
.hero-availability {
  margin-top: 1.25rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  font-weight: 300;
}

/* ── Stats Strip ── */
.stats-strip {
  background: #111;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 3rem 2rem;
}
.stats-strip .section-inner { max-width: 100%; }
.stats-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 2rem;
}
.stats-strip-item strong {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: -0.02em;
  margin-bottom: 0.4rem;
}
.stats-strip-item span {
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.55);
  line-height: 1.4;
}
.stats-strip-source {
  text-align: center;
  font-size: 0.65rem;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.05em;
  margin-top: 1rem;
}

/* ── CTA Band ── */
.cta-band {
  background: linear-gradient(135deg, var(--gold) 0%, #b89850 100%);
  color: var(--black);
  text-align: center;
  padding: 6rem 2rem;
}
.cta-band h2 { color: var(--black); margin-bottom: 1rem; }
.cta-band h2 strong { color: var(--white); }
.cta-band p { color: rgba(0,0,0,0.7); margin-bottom: 2.5rem; font-size: 1.1rem; }
.btn-black { background: var(--black); color: var(--white); }
.btn-black:hover { background: #1a1a1a; }

/* ── Contact ── */
#contact { background: var(--black); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6rem;
  align-items: start;
}
.contact-info h3 { font-size: 1.4rem; margin-bottom: 1.5rem; font-weight: 600; }
.contact-info p { color: var(--muted); margin-bottom: 2rem; line-height: 1.8; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
  color: var(--off-white);
}
.contact-detail svg { color: var(--gold); flex-shrink: 0; margin-top: 0.2rem; }
form {
  background: var(--dark);
  padding: 3rem;
  border: 1px solid var(--border);
  border-radius: 2px;
}
form h3 { font-size: 1.4rem; margin-bottom: 2rem; font-weight: 600; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.form-group { margin-bottom: 1.5rem; }
label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--off-white);
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
label .req { color: var(--gold); font-weight: 400; }

input, select, textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid var(--border);
  border-radius: 2px;
  font-size: 0.95rem;
  font-family: inherit;
  background: var(--black);
  color: var(--white);
  transition: border-color 0.2s;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--gold);
}
textarea { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; padding: 1.1rem; font-size: 0.9rem; }
.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
  color: var(--gold);
  background: rgba(201,169,97,0.1);
  border: 1px solid var(--gold);
  border-radius: 2px;
  font-weight: 600;
}

/* ── Booking page header ── */
.booking-header {
  position: relative;
  min-height: 52vh;
  display: flex;
  align-items: center;
  text-align: center;
  padding: 10rem 2rem 7rem;
  overflow: hidden;
}
.booking-header-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/Twilight%20and%20Grass%20HR.jpg');
  background-size: cover;
  background-position: center 40%;
}
.booking-header-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.62);
}
.booking-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 35%;
  background: linear-gradient(to bottom, transparent, var(--black));
  z-index: 1;
}
.booking-header-content {
  position: relative;
  z-index: 2;
  width: 100%;
}
.booking-header-content .section-tag { margin-bottom: 1.25rem; }
.booking-header-title {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 16px rgba(0,0,0,0.5);
}
.booking-header-title strong { color: var(--gold); font-weight: 700; }
.booking-header-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  max-width: 520px;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}
.booking-header-details {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  flex-wrap: wrap;
}
.booking-header-detail {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.5);
}
.booking-header-detail svg { color: var(--gold); flex-shrink: 0; }
.booking-header-detail a { color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; }
.booking-header-detail a:hover { color: var(--gold); }

/* ── Booking split layout ── */
section.booking-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  padding: 0;
  border-top: none;
}
.booking-split-image {
  padding: 5rem 0 6rem 4.5rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.booking-split-image img {
  flex: 1;
  width: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
  display: block;
}
.booking-split-form {
  padding: 5rem 4.5rem 6rem;
}
.booking-split-form form {
  background: transparent;
  border: none;
  padding: 0;
}
.booking-split-form form h3 { display: none; }
.booking-form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}
.booking-form-footer .hero-availability { margin: 0; }
.booking-form-footer .form-submit { width: auto; padding: 1.1rem 3rem; }

/* ── Contact CTA (index.html contact section) ── */
.contact-cta {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.contact-cta .lead { margin-bottom: 2.5rem; }
.contact-details-row {
  display: flex;
  gap: 3rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.contact-cta .contact-detail { justify-content: center; }

/* ── GLightbox dark theme overrides ── */
.glightbox-clean .gslide-description {
  background: #0a0a0a;
}
.glightbox-clean .gdesc-inner .gslide-title {
  color: var(--gold);
  font-family: Arial, sans-serif;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.75rem;
}
.glightbox-clean .gclose,
.glightbox-clean .gnext,
.glightbox-clean .gprev {
  background: rgba(0,0,0,0.7);
  border: 1px solid rgba(201,169,97,0.3);
}
.glightbox-clean .gclose svg,
.glightbox-clean .gnext svg,
.glightbox-clean .gprev svg {
  color: #c9a961;
}
.glightbox-clean .gclose:hover,
.glightbox-clean .gnext:hover,
.glightbox-clean .gprev:hover {
  border-color: var(--gold);
  background: rgba(201,169,97,0.15);
}
.glightbox-container {
  background: rgba(0,0,0,0.96);
}
.gslide-image img {
  max-height: 82vh;
  max-width: 88vw;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* ── Footer ── */
footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  color: var(--muted);
  text-align: center;
  padding: 3rem 2rem;
  font-size: 0.85rem;
}
footer img { height: 50px; margin-bottom: 1.5rem; opacity: 0.6; }
footer a { color: var(--muted); text-decoration: none; transition: color 0.2s; }
footer a:hover { color: var(--gold); }

/* ── Hamburger nav ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 101;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .nav-hamburger { display: flex; }
  #nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10,10,10,0.98);
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid var(--border);
  }
  #nav-menu.open { display: flex; }
  #nav-menu li { list-style: none; }
  #nav-menu a { font-size: 1rem; }
  .about__wrap { grid-template-columns: 1fr; }
  .about__left { border-right: none; border-bottom: 1px solid var(--border); padding: 3rem 0; }
  .about__right { padding: 3rem 0 0; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .gallery-carousel { position: relative; }
  .gallery-carousel .carousel-btn.gallery-prev,
  .gallery-carousel .carousel-btn.gallery-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    background: rgba(10,10,10,0.5);
  }
  .gallery-carousel .carousel-btn.gallery-prev { left: 0.75rem; }
  .gallery-carousel .carousel-btn.gallery-next { right: 0.75rem; }
  .gallery-track-wrap { height: 56vw; min-height: 220px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .services-split { grid-template-columns: 1fr; gap: 3rem; }
  .pricing-card { flex: 0 0 calc((100% - 2rem) / 2); }
}
@media (max-width: 768px) {
  .stats-strip-grid { grid-template-columns: repeat(2, 1fr); }
  section { padding: 5rem 1.5rem; }
  .hero { padding: 6rem 1.5rem 4rem; }
  .form-row { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .btn-ghost { margin-left: 0; margin-top: 1rem; }
  .services-list li { font-size: 1.1rem; }
  .hero h1 { white-space: normal; }
  .pricing-card { flex: 0 0 100%; }
  .carousel-btn { width: 36px; height: 36px; }
  .pricing-card-image { height: 260px; }
  .booking-header { min-height: auto; padding: 8rem 1.5rem 5rem; }
  .booking-header-details { gap: 1.25rem; flex-direction: column; align-items: center; }
  section.booking-split { grid-template-columns: 1fr; }
  .booking-split-image { display: none; }
  .booking-split-form { padding: 3rem 1.5rem 5rem; }
  .booking-form-footer { flex-direction: column; align-items: flex-start; }
  .booking-form-footer .form-submit { width: 100%; }
}
