/* ═══════════════════════════════════════
   VARIABLES & RESET
═══════════════════════════════════════ */
:root {
  --gold:       #C9A96E;
  --gold-light: #dfc49a;
  --gold-dark:  #a8853e;
  --charcoal:   #1A1816;
  --charcoal-2: #2a2724;
  --cream:      #F4EFE8;
  --cream-2:    #ede7de;
  --white:      #ffffff;
  --text-body:  #3d3a36;
  --text-muted: #7a746c;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Montserrat', sans-serif;

  --transition: 0.35s ease;
  --radius:     4px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--text-body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

a { text-decoration: none; color: inherit; transition: color var(--transition); }

/* ═══════════════════════════════════════
   BUTTONS
═══════════════════════════════════════ */
.btn-gold {
  background: var(--gold);
  color: var(--charcoal);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 34px;
  border-radius: var(--radius);
  border: 2px solid var(--gold);
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  display: inline-block;
}
.btn-gold:hover {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}

.btn-outline-light-custom {
  background: transparent;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 34px;
  border-radius: var(--radius);
  border: 2px solid rgba(255,255,255,0.5);
  transition: border-color var(--transition), background var(--transition);
  display: inline-block;
}
.btn-outline-light-custom:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
  color: var(--white);
}

.btn-book {
  background: var(--gold);
  color: var(--charcoal);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 11px 26px;
  border-radius: var(--radius);
  border: 2px solid var(--gold);
  transition: background var(--transition), color var(--transition);
  display: inline-block;
}
.btn-book:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--white);
}

/* ═══════════════════════════════════════
   SHARED SECTION LABELS & TITLES
═══════════════════════════════════════ */
.section-label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

.section-body {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 14px;
}

/* placeholder boxes (swap for real images) */
.img-placeholder-box { background: var(--cream-2); border-radius: var(--radius); overflow: hidden; }
.placeholder-inner {
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-transform: uppercase;
  height: 100%;
}
.placeholder-dark { background: #2e2b28; color: #7a746c; }

/* ═══════════════════════════════════════
   NAVBAR
═══════════════════════════════════════ */
#navbar {
  padding: 22px 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
  background: transparent;
}

#navbar.scrolled {
  background: var(--charcoal);
  padding: 14px 0;
  box-shadow: 0 2px 30px rgba(0,0,0,0.25);
}

.nav-logo {
  height: 52px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: height var(--transition);
}
#navbar.scrolled .nav-logo { height: 44px; }

.navbar-brand {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  gap: 1px;
}
.nav-wordmark {
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 300;
  letter-spacing: 0.22em;
  color: var(--white);
  text-transform: uppercase;
}
.nav-wordmark strong {
  font-weight: 700;
}
.nav-wordmark-sub {
  font-family: var(--font-sans);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
}

/* fallback text if logo not loaded */
.navbar-brand { display: flex; align-items: center; gap: 10px; }

.navbar-nav .nav-link {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85) !important;
  padding: 8px 14px !important;
  transition: color var(--transition);
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active-link { color: var(--gold) !important; }

/* hamburger */
.navbar-toggler {
  border: none;
  background: transparent;
  padding: 6px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.navbar-toggler:focus { box-shadow: none; }
.toggler-icon {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

@media (max-width: 991px) {
  #navbar.scrolled .navbar-collapse,
  .navbar-collapse.show {
    background: var(--charcoal-2);
    padding: 16px 20px 20px;
    border-top: 1px solid rgba(255,255,255,0.07);
    margin-top: 12px;
  }
  .navbar-collapse .btn-book { margin-top: 8px; width: 100%; text-align: center; }
}

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.hero-section {
  min-height: 100vh;
  position: relative;
  background: var(--charcoal);
  /* swap background-image for a real hero photo: */
  /* background-image: url('../assets/hero.jpg'); */
  background-image:
    radial-gradient(ellipse at 30% 60%, rgba(201,169,110,0.12) 0%, transparent 60%),
    linear-gradient(160deg, #1a1816 0%, #0e0d0b 100%);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(26,24,22,0.4) 0%, rgba(26,24,22,0.6) 100%);
  pointer-events: none;
}

.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.18;
  margin-bottom: 24px;
}
.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  max-width: 520px;
  margin: 0 auto 8px;
  line-height: 1.8;
  font-weight: 300;
}

/* scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
}
.hero-scroll-hint span {
  display: block;
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  margin: 0 auto;
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: 0.3; transform: scaleY(0.6); transform-origin: top; }
  50%      { opacity: 1;   transform: scaleY(1);   transform-origin: top; }
}

/* ═══════════════════════════════════════
   ABOUT
═══════════════════════════════════════ */
.section-about {
  padding: 110px 0;
  background: var(--white);
}

.about-img-wrap { position: relative; }
.about-badge {
  position: absolute;
  bottom: -18px;
  right: -18px;
  background: var(--gold);
  color: var(--charcoal);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1.2;
  box-shadow: 0 8px 30px rgba(201,169,110,0.35);
}
.badge-number {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
}
.badge-text {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-tags { margin-top: 28px; }
.tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--charcoal);
  border: 1px solid var(--cream-2);
  background: var(--cream);
  padding: 7px 14px;
  border-radius: 100px;
}

/* ═══════════════════════════════════════
   HOW IT WORKS
═══════════════════════════════════════ */
.section-hiw {
  padding: 110px 0;
  background: var(--charcoal);
}
.section-hiw .section-label { color: var(--gold); }
.section-hiw .section-title { color: var(--white); }

.hiw-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px;
  padding: 36px 28px;
  height: 100%;
  position: relative;
  transition: border-color var(--transition), background var(--transition);
}
.hiw-card:hover {
  border-color: rgba(201,169,110,0.4);
  background: rgba(255,255,255,0.06);
}

.hiw-step {
  font-family: var(--font-serif);
  font-size: 56px;
  font-weight: 700;
  color: rgba(201,169,110,0.15);
  line-height: 1;
  margin-bottom: 16px;
}

.hiw-icon {
  width: 40px;
  height: 40px;
  color: var(--gold);
  margin-bottom: 18px;
}
.hiw-icon svg { width: 100%; height: 100%; }

.hiw-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}

.hiw-body {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
  margin: 0;
}

/* ═══════════════════════════════════════
   BACKDROPS
═══════════════════════════════════════ */
.section-backdrops {
  padding: 110px 0;
  background: var(--cream);
}

.backdrop-card {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--cream-2);
  background: var(--white);
  transition: box-shadow var(--transition), transform var(--transition);
}
.backdrop-card:hover {
  box-shadow: 0 16px 50px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}

.backdrop-info {
  padding: 24px 28px 28px;
}
.backdrop-info h4 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.backdrop-info p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 14px;
}

.backdrop-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
  background: var(--cream);
  border: 1px solid var(--cream-2);
  padding: 6px 14px;
  border-radius: 100px;
}
.backdrop-tag-dark {
  background: var(--charcoal);
  color: var(--gold);
  border-color: var(--charcoal);
}

/* ═══════════════════════════════════════
   PRICING
═══════════════════════════════════════ */
.section-pricing {
  padding: 110px 0;
  background: var(--white);
}

.pricing-card {
  background: var(--white);
  border: 1px solid #ece8e2;
  border-radius: 8px;
  padding: 40px 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: box-shadow var(--transition), transform var(--transition);
}
.pricing-card:hover {
  box-shadow: 0 20px 60px rgba(0,0,0,0.09);
  transform: translateY(-4px);
}

.pricing-featured {
  background: var(--charcoal);
  border-color: var(--charcoal);
}
.pricing-featured .pricing-name,
.pricing-featured .pricing-price,
.pricing-featured .pricing-duration { color: var(--white) !important; }
.pricing-featured .pricing-features li { color: rgba(255,255,255,0.65); border-color: rgba(255,255,255,0.08); }
.pricing-featured .pricing-features li::before { color: var(--gold); }

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--charcoal);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-header { margin-bottom: 28px; }
.pricing-name {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.pricing-price {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1;
  margin-bottom: 6px;
}
.pricing-price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-muted);
}
.pricing-duration {
  font-size: 13px;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.05em;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  flex: 1;
}
.pricing-features li {
  font-size: 14px;
  color: var(--text-muted);
  padding: 10px 0;
  border-bottom: 1px solid #f0ece6;
  display: flex;
  align-items: center;
  gap: 10px;
}
.pricing-features li::before {
  content: '—';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}

.pricing-note {
  font-size: 13px;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════
   GALLERY
═══════════════════════════════════════ */
.section-gallery {
  padding: 110px 0;
  background: var(--cream);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 12px;
}

.gallery-item { border-radius: var(--radius); overflow: hidden; }
.gallery-item-tall { grid-row: span 2; }
.gallery-item-wide { grid-column: span 2; }

.gallery-placeholder {
  background: var(--cream-2);
  width: 100%;
  height: 100%;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: filter var(--transition);
  cursor: pointer;
}
.gallery-placeholder:hover { filter: brightness(0.95); }

/* real images (once added) */
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.03); }

@media (max-width: 767px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-item-tall { grid-row: span 1; }
  .gallery-item-wide { grid-column: span 2; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item-wide { grid-column: span 1; }
}

/* ═══════════════════════════════════════
   BOOKING
═══════════════════════════════════════ */
.section-booking {
  padding: 110px 0;
  background: var(--white);
}

.booking-cta-wrap {
  max-width: 620px;
  margin: 0 auto;
}

.booking-cta-box {
  background: var(--cream);
  border: 1px solid var(--cream-2);
  border-radius: 12px;
  padding: 56px 48px;
  text-align: center;
}

.booking-cta-icon {
  width: 52px;
  height: 52px;
  color: var(--gold);
  margin: 0 auto 24px;
}
.booking-cta-icon svg { width: 100%; height: 100%; }

.booking-cta-title {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 14px;
}

.booking-cta-body {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

.btn-lg-custom {
  padding: 16px 44px;
  font-size: 13px;
}

.booking-cta-note {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 16px;
  letter-spacing: 0.05em;
  margin-bottom: 0;
}

.booking-note {
  font-size: 14px;
  color: var(--text-muted);
}
.booking-note a {
  color: var(--gold);
  font-weight: 600;
}
.booking-note a:hover { color: var(--gold-dark); }

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.site-footer {
  background: var(--charcoal);
  padding: 60px 0 30px;
  color: rgba(255,255,255,0.6);
}

.footer-logo {
  height: 52px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

.footer-tagline {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-style: italic;
  color: rgba(255,255,255,0.55);
  margin-bottom: 4px;
}
.footer-location {
  font-size: 13px;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.35);
  margin: 0;
}

.footer-contact {
  font-size: 13px;
  line-height: 2;
  margin: 0;
}
.footer-contact a {
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer-contact a:hover { color: var(--gold); }

.footer-insta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  margin-top: 10px;
  transition: color var(--transition);
}
.footer-insta svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.footer-insta:hover { color: var(--gold); }

.footer-divider {
  border-color: rgba(255,255,255,0.08);
  margin: 40px 0 20px;
}
.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.05em;
  margin: 0;
}

/* ═══════════════════════════════════════
   RESPONSIVE TWEAKS
═══════════════════════════════════════ */
@media (max-width: 991px) {
  .section-about,
  .section-hiw,
  .section-backdrops,
  .section-pricing,
  .section-gallery,
  .section-booking { padding: 80px 0; }

  .about-badge { right: 0; bottom: -14px; width: 84px; height: 84px; }
  .badge-number { font-size: 18px; }
}

@media (max-width: 767px) {
  .hero-title { font-size: 2.2rem; }
  .section-title { font-size: 2rem; }
  .about-badge { display: none; }
  .pricing-card { padding: 32px 22px; }
}
