/* ============ Tokens ============ */
:root {
  --navy-950: #050810;
  --navy-900: #0a0f1c;
  --navy-800: #101a2e;
  --navy-700: #172341;
  --gold: #c9a24a;
  --gold-light: #e6c877;
  --gold-dim: #8a7133;
  --text: #f3efe6;
  --text-muted: #aeb4c4;
  --border: rgba(201, 162, 74, 0.18);
  --radius: 4px;
  --container: 1180px;
  --shadow-lg: 0 30px 60px -20px rgba(0, 0, 0, 0.6);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

section[id] { scroll-margin-top: 96px; }

body {
  margin: 0;
  background: var(--navy-950);
  color: var(--text);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }

ul { list-style: none; margin: 0; padding: 0; }

h1, h2, h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 600;
  margin: 0 0 0.5em;
  line-height: 1.15;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 96px 0; }

.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 600;
  margin: 0 0 12px;
}

.section-title { font-size: clamp(1.8rem, 3.2vw, 2.6rem); }

.section-sub {
  color: var(--text-muted);
  max-width: 620px;
  font-size: 1.02rem;
}

.center { text-align: center; margin-left: auto; margin-right: auto; }

/* ============ Buttons ============ */
.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy-950);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 10px 24px -8px rgba(201, 162, 74, 0.55); }

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: rgba(243, 239, 230, 0.35);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold-light); }

.btn-outline-gold {
  display: inline-block;
  width: 100%;
  text-align: center;
  background: transparent;
  color: var(--gold-light);
  border: 1px solid var(--border);
  padding: 13px 28px;
  border-radius: var(--radius);
  font-weight: 600;
}
.btn-outline-gold:hover { background: rgba(201, 162, 74, 0.08); border-color: var(--gold); }

.btn-lg { padding: 16px 36px; font-size: 1rem; }

/* ============ Topbar ============ */
.topbar {
  background: var(--navy-900);
  border-bottom: 1px solid var(--border);
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-muted);
  padding: 8px 16px;
}
.topbar a { color: var(--gold-light); font-weight: 600; }

/* ============ Header ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 15, 28, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.logo {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text);
}
.logo span { color: var(--gold); }

.main-nav {
  display: flex;
  gap: 34px;
}
.main-nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.15s ease;
}
.main-nav a:hover { color: var(--gold-light); }

.header-actions { display: flex; align-items: center; gap: 18px; }

.header-book { padding: 11px 24px; font-size: 0.88rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px;
  height: 34px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* ============ Hero ============ */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(5,8,16,0.55) 0%, rgba(5,8,16,0.75) 55%, rgba(5,8,16,0.96) 100%),
    linear-gradient(90deg, rgba(5,8,16,0.9) 0%, rgba(5,8,16,0.35) 60%);
}

.hero-content { position: relative; z-index: 2; padding: 140px 24px 100px; max-width: 720px; }

.hero-sub { color: var(--text-muted); font-size: 1.08rem; max-width: 560px; margin-bottom: 36px; }

h1 { font-size: clamp(2.4rem, 5.2vw, 3.8rem); }
h1 span { color: var(--gold-light); display: block; }

.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }

/* ============ Trust strip ============ */
.trust-strip {
  background: var(--navy-900);
  border-bottom: 1px solid var(--border);
  padding: 36px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.trust-item { text-align: center; }
.trust-icon { font-size: 1.6rem; display: block; margin-bottom: 8px; }
.trust-item p { margin: 0; font-size: 0.92rem; color: var(--text-muted); }

/* ============ Services / pricing ============ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}

.price-card {
  position: relative;
  background: var(--navy-900);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
}

.price-card.featured {
  background: linear-gradient(180deg, var(--navy-700), var(--navy-800));
  border-color: var(--gold-dim);
  transform: translateY(-14px);
  box-shadow: var(--shadow-lg);
}

.badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy-950);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
  margin: 0;
}

.price-card h3 { font-size: 1.3rem; }
.price-card .price {
  font-family: "Playfair Display", serif;
  font-size: 2.6rem;
  color: var(--gold-light);
  margin: 0 0 20px;
}

.price-card ul { margin-bottom: 28px; flex-grow: 1; }
.price-card li {
  padding: 9px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  color: var(--text-muted);
  font-size: 0.94rem;
  padding-left: 20px;
  position: relative;
}
.price-card li:first-child { border-top: none; }
.price-card li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.price-card.featured .btn-outline-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy-950);
  border: none;
  text-align: center;
}

.pricing-note {
  color: var(--text-muted);
  font-size: 0.86rem;
  text-align: center;
  max-width: 640px;
  margin: 40px auto 0;
}

/* ============ Gallery ============ */
.gallery-section { background: var(--navy-900); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
  margin-top: 56px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  border: none;
  padding: 0;
  cursor: pointer;
  background: var(--navy-800);
}
.gallery-item.span-2 { grid-column: span 2; grid-row: span 2; }

.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.06); }

.gallery-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 14px 16px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.85));
  color: var(--text);
  font-size: 0.86rem;
  font-weight: 600;
  text-align: left;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.gallery-item:hover .gallery-caption { opacity: 1; transform: translateY(0); }

/* ============ Process ============ */
.process-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 72px;
  align-items: center;
}
.process-media img {
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-height: 520px;
  object-fit: cover;
}

.process-steps { margin-top: 36px; display: flex; flex-direction: column; gap: 28px; }
.process-steps li { display: flex; gap: 20px; align-items: flex-start; }
.step-num {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  color: var(--gold);
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 52px; height: 52px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.process-steps h3 { font-size: 1.1rem; margin-bottom: 4px; }
.process-steps p { color: var(--text-muted); margin: 0; font-size: 0.94rem; }

/* ============ Service area ============ */
.area-section { background: var(--navy-900); }
.area-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.area-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 24px;
  margin: 28px 0;
}
.area-list li {
  padding-left: 22px;
  position: relative;
  color: var(--text-muted);
  font-weight: 500;
}
.area-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
}
.area-note { color: var(--text-muted); font-size: 0.92rem; }
.area-note a { color: var(--gold-light); font-weight: 600; }
.area-map img {
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-height: 520px;
  object-fit: cover;
}

/* ============ Booking ============ */
.booking-section {
  background: radial-gradient(ellipse at center top, var(--navy-700) 0%, var(--navy-950) 70%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.booking-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 40px;
}

/* ============ Footer ============ */
.site-footer { padding: 72px 0 0; background: var(--navy-950); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}
.footer-logo { font-size: 1.2rem; margin-bottom: 10px; }
.footer-tagline { color: var(--text-muted); font-size: 0.92rem; max-width: 280px; }
.footer-col h4 {
  font-family: "Inter", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.78rem;
  color: var(--gold);
  margin-bottom: 14px;
}
.footer-col p { margin: 0 0 8px; color: var(--text-muted); font-size: 0.94rem; }
.footer-col a:hover { color: var(--gold-light); }
.social-links { display: flex; flex-direction: column; gap: 8px; }
.social-links a { color: var(--text-muted); font-size: 0.94rem; }
.social-links a:hover { color: var(--gold-light); }

.footer-bottom {
  padding: 22px 24px;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.82rem;
}

/* ============ Lightbox ============ */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(5, 8, 16, 0.94);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
  padding: 40px;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 100%;
  max-height: 88vh;
  border-radius: 6px;
  box-shadow: var(--shadow-lg);
}
.lightbox-close {
  position: absolute;
  top: 24px; right: 32px;
  background: none;
  border: none;
  color: var(--text);
  font-size: 2.4rem;
  line-height: 1;
  cursor: pointer;
}
.lightbox-close:hover { color: var(--gold-light); }

/* ============ Responsive ============ */
@media (max-width: 960px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
  .process-grid, .area-grid { grid-template-columns: 1fr; }
  .process-media { order: -1; }
  .footer-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .main-nav {
    position: absolute;
    top: 76px; left: 0; right: 0;
    flex-direction: column;
    background: var(--navy-900);
    border-bottom: 1px solid var(--border);
    padding: 20px 24px;
    gap: 18px;
    display: none;
  }
  .main-nav.open { display: flex; }
  .nav-toggle { display: flex; }
  .header-book { display: none; }
  .section { padding: 64px 0; }
  .hero-content { padding: 120px 20px 72px; }
  .hero-cta .btn { width: 100%; text-align: center; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gallery-item.span-2 { grid-column: span 2; grid-row: span 1; }
  .area-list { grid-template-columns: 1fr; }
  .booking-actions .btn { width: 100%; text-align: center; }
}
