@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400;1,700&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --navy: #0d1b2a;
  --navy-light: #112236;
  --green: #1a6b3a;
  --green-light: #2d9c57;
  --cream: #f5f0e8;
  --gold: #c9a84c;
  --gold-light: #e0bb60;
  --white: #ffffff;
  --gray: rgba(255,255,255,0.5);
  --border: rgba(255,255,255,0.07);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 18px 60px;
  display: flex; justify-content: space-between; align-items: center;
  background: rgba(13,27,42,0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(201,168,76,0.12);
  transition: padding 0.3s;
}
nav.scrolled { padding: 12px 60px; }

.logo { font-family: 'Playfair Display', serif; font-size: 1.45rem; font-weight: 700; text-decoration: none; color: var(--white); }
.logo span { color: var(--gold); }

.nav-links { display: flex; gap: 32px; list-style: none; align-items: center; }
.nav-links a { text-decoration: none; color: rgba(255,255,255,0.65); font-size: 0.82rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; transition: color 0.2s; }
.nav-links a:hover { color: var(--gold); }
.nav-cta { background: var(--gold) !important; color: var(--navy) !important; padding: 9px 20px; border-radius: 2px; font-weight: 600 !important; transition: background 0.2s !important; }
.nav-cta:hover { background: var(--gold-light) !important; }

.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--white); transition: all 0.3s; }

/* ── HERO ── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: 120px 60px 80px;
}
.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 65% 45%, rgba(26,107,58,0.16) 0%, transparent 55%),
              radial-gradient(ellipse at 15% 75%, rgba(201,168,76,0.07) 0%, transparent 50%),
              linear-gradient(140deg, #0d1b2a 0%, #091520 100%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(201,168,76,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(201,168,76,0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  animation: gridDrift 25s linear infinite;
}
@keyframes gridDrift { to { transform: translate(64px, 64px); } }

.hero-orb {
  position: absolute; right: -60px; top: 50%; transform: translateY(-50%);
  width: 680px; height: 680px; border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.08);
}
.hero-orb::before { content:''; position:absolute; inset:50px; border-radius:50%; border:1px solid rgba(26,107,58,0.15); }
.hero-orb::after  { content:''; position:absolute; inset:120px; border-radius:50%; border:1px solid rgba(201,168,76,0.06); }

.hero-content { position: relative; z-index: 2; max-width: 680px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.28);
  color: var(--gold); padding: 5px 14px; border-radius: 2px;
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  margin-bottom: 26px;
  animation: fadeUp 0.5s ease both;
}
.badge-pulse { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); animation: pulse 1.8s ease-in-out infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.25} }

h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  font-weight: 900; line-height: 1.06; margin-bottom: 22px;
  animation: fadeUp 0.5s 0.12s ease both;
}
h1 em { font-style: italic; color: var(--gold); }
h1 .city-name { color: var(--gold); }

.hero-sub {
  font-size: 1.05rem; color: rgba(255,255,255,0.6); line-height: 1.72;
  max-width: 480px; margin-bottom: 44px; font-weight: 300;
  animation: fadeUp 0.5s 0.24s ease both;
}

.hero-actions { display: flex; gap: 16px; align-items: center; animation: fadeUp 0.5s 0.36s ease both; }

.btn-primary {
  background: var(--gold); color: var(--navy);
  padding: 15px 34px; font-family: 'DM Sans', sans-serif;
  font-size: 0.86rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase;
  border: none; border-radius: 2px; cursor: pointer; text-decoration: none;
  display: inline-block; transition: all 0.2s;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(201,168,76,0.28); }

.btn-ghost {
  color: rgba(255,255,255,0.65); font-size: 0.86rem; font-weight: 500;
  text-decoration: none; display: flex; align-items: center; gap: 7px; transition: color 0.2s;
}
.btn-ghost:hover { color: var(--white); }
.btn-ghost::after { content: '→'; transition: transform 0.2s; }
.btn-ghost:hover::after { transform: translateX(4px); }

.hero-stats {
  display: flex; gap: 44px; margin-top: 56px; padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.07);
  animation: fadeUp 0.5s 0.48s ease both;
}
.stat-num { font-family: 'Playfair Display', serif; font-size: 1.9rem; font-weight: 700; color: var(--gold); }
.stat-label { font-size: 0.74rem; color: rgba(255,255,255,0.4); letter-spacing: 0.07em; text-transform: uppercase; margin-top: 2px; }

/* ── AVAILABILITY BANNER ── */
.avail-banner {
  background: linear-gradient(90deg, #1a6b3a, #155230);
  padding: 15px 60px;
  display: flex; align-items: center; justify-content: center; gap: 12px;
  font-size: 0.86rem; font-weight: 500;
}
.avail-banner strong { color: #9effc3; }

/* ── SECTIONS ── */
section { padding: 96px 60px; }

.section-label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(1.9rem, 3.2vw, 2.9rem); font-weight: 700; line-height: 1.16; margin-bottom: 14px; }
.section-sub { color: rgba(255,255,255,0.52); font-size: 0.98rem; line-height: 1.72; max-width: 500px; font-weight: 300; }

/* ── EVENT CARDS ── */
.events-section { background: rgba(255,255,255,0.015); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.events-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 56px; }
.event-card {
  background: rgba(255,255,255,0.025); border: 1px solid var(--border); border-radius: 3px;
  padding: 34px 30px; transition: all 0.3s; position: relative; overflow: hidden;
}
.event-card::after { content:''; position:absolute; bottom:0; left:0; right:0; height:2px; background:var(--gold); transform:scaleX(0); transition:transform 0.3s; transform-origin:left; }
.event-card:hover { background: rgba(255,255,255,0.05); border-color: rgba(201,168,76,0.18); transform: translateY(-3px); }
.event-card:hover::after { transform: scaleX(1); }
.event-icon { font-size: 1.8rem; margin-bottom: 18px; }
.event-card h3 { font-family: 'Playfair Display', serif; font-size: 1.18rem; font-weight: 700; margin-bottom: 8px; }
.event-card p { color: rgba(255,255,255,0.48); font-size: 0.86rem; line-height: 1.62; font-weight: 300; }

/* ── PACKAGES ── */
.packages-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 56px; }
.pkg {
  background: rgba(255,255,255,0.025); border: 1px solid var(--border);
  border-radius: 3px; padding: 40px 32px; transition: all 0.3s; position: relative;
}
.pkg.featured { background: var(--green); border-color: var(--green-light); }
.pkg-tag { position:absolute; top:-1px; right:22px; background:var(--gold); color:var(--navy); font-size:0.65rem; font-weight:700; letter-spacing:0.1em; text-transform:uppercase; padding:4px 11px; border-radius:0 0 3px 3px; }
.pkg-name { font-size:0.72rem; font-weight:600; letter-spacing:0.13em; text-transform:uppercase; color:var(--gold); margin-bottom:14px; }
.pkg-price { font-family:'Playfair Display',serif; font-size:2.8rem; font-weight:900; line-height:1; margin-bottom:5px; }
.pkg-price sup { font-size:1.3rem; font-weight:400; vertical-align:super; }
.pkg-dur { font-size:0.8rem; color:rgba(255,255,255,0.42); margin-bottom:28px; }
.pkg-features { list-style:none; margin-bottom:32px; }
.pkg-features li { font-size:0.86rem; color:rgba(255,255,255,0.68); padding:8px 0; border-bottom:1px solid rgba(255,255,255,0.055); display:flex; align-items:center; gap:9px; font-weight:300; }
.pkg-features li::before { content:'✓'; color:var(--gold); font-weight:700; font-size:0.72rem; flex-shrink:0; }
.pkg-cta {
  display:block; text-align:center; padding:13px;
  border:1px solid rgba(201,168,76,0.38); border-radius:2px;
  color:var(--gold); text-decoration:none; font-size:0.8rem; font-weight:600;
  letter-spacing:0.08em; text-transform:uppercase; transition:all 0.2s;
}
.pkg-cta:hover, .pkg.featured .pkg-cta { background:var(--gold); border-color:var(--gold); color:var(--navy); }

/* ── BOOKING ── */
.booking-section { background: rgba(26,107,58,0.07); border-top:1px solid rgba(26,107,58,0.18); border-bottom:1px solid rgba(26,107,58,0.18); }
.booking-grid { display:grid; grid-template-columns:1fr 1fr; gap:72px; align-items:start; }

.cal-wrap { background:rgba(255,255,255,0.025); border:1px solid var(--border); border-radius:3px; padding:28px; }
.cal-head { display:flex; justify-content:space-between; align-items:center; margin-bottom:20px; }
.cal-month { font-family:'Playfair Display',serif; font-size:1.1rem; font-weight:700; }
.cal-grid { display:grid; grid-template-columns:repeat(7,1fr); gap:3px; }
.cal-label { text-align:center; font-size:0.65rem; color:rgba(255,255,255,0.28); letter-spacing:0.06em; text-transform:uppercase; padding:4px 0; font-weight:600; }
.cal-day { aspect-ratio:1; display:flex; align-items:center; justify-content:center; font-size:0.8rem; border-radius:2px; cursor:default; position:relative; }
.cal-day.booked { color:rgba(255,255,255,0.22); }
.cal-day.booked::after { content:''; position:absolute; bottom:3px; left:50%; transform:translateX(-50%); width:4px; height:4px; border-radius:50%; background:#e05555; }
.cal-day.open { color:var(--white); background:rgba(26,107,58,0.18); border:1px solid rgba(26,107,58,0.3); cursor:pointer; transition:all 0.15s; }
.cal-day.open:hover { background:var(--green); transform:scale(1.1); }
.cal-legend { display:flex; gap:18px; margin-top:16px; padding-top:14px; border-top:1px solid var(--border); }
.cal-legend-item { display:flex; align-items:center; gap:6px; font-size:0.7rem; color:rgba(255,255,255,0.42); }
.cal-dot { width:8px; height:8px; border-radius:2px; }
.cal-dot.booked { background:rgba(224,85,85,0.5); }
.cal-dot.open { background:var(--green); }

.booking-form-wrap h2 { font-family:'Playfair Display',serif; font-size:2rem; font-weight:700; margin-bottom:10px; }
.booking-form-wrap > p { color:rgba(255,255,255,0.48); font-size:0.9rem; line-height:1.65; margin-bottom:32px; font-weight:300; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.fg { margin-bottom:16px; }
.fg label { display:block; font-size:0.7rem; font-weight:600; letter-spacing:0.1em; text-transform:uppercase; color:rgba(255,255,255,0.46); margin-bottom:7px; }
.fg input, .fg select, .fg textarea {
  width:100%; background:rgba(255,255,255,0.035); border:1px solid rgba(255,255,255,0.09);
  border-radius:2px; padding:12px 14px; color:var(--white);
  font-family:'DM Sans',sans-serif; font-size:0.9rem; outline:none; transition:border-color 0.2s;
}
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color:var(--gold); }
.fg select option { background:var(--navy); }
.fg textarea { height:80px; resize:none; }
.deposit-box { background:rgba(201,168,76,0.07); border:1px solid rgba(201,168,76,0.18); border-radius:2px; padding:13px 16px; font-size:0.8rem; color:rgba(255,255,255,0.62); margin-bottom:18px; line-height:1.5; }
.deposit-box strong { color:var(--gold); }
.submit-btn { width:100%; background:var(--gold); color:var(--navy); padding:15px; font-family:'DM Sans',sans-serif; font-size:0.88rem; font-weight:700; letter-spacing:0.08em; text-transform:uppercase; border:none; border-radius:2px; cursor:pointer; transition:all 0.2s; }
.submit-btn:hover { background:var(--gold-light); transform:translateY(-2px); box-shadow:0 8px 28px rgba(201,168,76,0.22); }

/* ── TESTIMONIALS ── */
.testi-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; margin-top:56px; }
.testi-card { background:rgba(255,255,255,0.018); border:1px solid var(--border); border-radius:3px; padding:32px 28px; }
.stars { color:var(--gold); font-size:0.82rem; letter-spacing:2px; margin-bottom:16px; }
.testi-text { font-size:0.9rem; color:rgba(255,255,255,0.65); line-height:1.72; font-weight:300; margin-bottom:22px; font-style:italic; }
.testi-author { font-size:0.78rem; font-weight:600; letter-spacing:0.06em; text-transform:uppercase; color:rgba(255,255,255,0.38); }
.testi-role { font-size:0.73rem; color:rgba(255,255,255,0.22); margin-top:2px; }

/* ── LOCATIONS HUB ── */
.locations-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:16px; margin-top:56px; }
.loc-card {
  background:rgba(255,255,255,0.025); border:1px solid var(--border); border-radius:3px;
  padding:28px 28px; text-decoration:none; color:var(--white); transition:all 0.3s;
  display:flex; justify-content:space-between; align-items:center;
}
.loc-card:hover { background:rgba(255,255,255,0.05); border-color:rgba(201,168,76,0.22); transform:translateX(4px); }
.loc-info h3 { font-family:'Playfair Display',serif; font-size:1.2rem; font-weight:700; margin-bottom:4px; }
.loc-info p { font-size:0.82rem; color:rgba(255,255,255,0.45); font-weight:300; }
.loc-arrow { font-size:1.3rem; color:var(--gold); transition:transform 0.2s; }
.loc-card:hover .loc-arrow { transform:translateX(4px); }
.loc-region { font-size:0.65rem; font-weight:600; letter-spacing:0.12em; text-transform:uppercase; color:var(--gold); margin-bottom:8px; }

/* ── FAQ ── */
.faq-section { background:rgba(255,255,255,0.008); border-top:1px solid var(--border); }
.faq-grid { display:grid; grid-template-columns:1fr 1fr; gap:18px; margin-top:56px; }
.faq-item { border-bottom:1px solid var(--border); padding-bottom:26px; }
.faq-item h4 { font-family:'Playfair Display',serif; font-size:1.02rem; font-weight:700; margin-bottom:9px; }
.faq-item p { font-size:0.86rem; color:rgba(255,255,255,0.48); line-height:1.65; font-weight:300; }

/* ── LOCAL SEO SECTION ── */
.local-section { background:rgba(255,255,255,0.012); border-top:1px solid var(--border); padding:64px 60px; }
.local-section p { font-size:0.88rem; color:rgba(255,255,255,0.42); line-height:1.75; font-weight:300; max-width:760px; }
.local-section h2 { font-family:'Playfair Display',serif; font-size:1.6rem; font-weight:700; margin-bottom:14px; }

/* ── FOOTER ── */
footer {
  background:rgba(0,0,0,0.45); border-top:1px solid var(--border);
  padding:44px 60px;
  display:grid; grid-template-columns:1fr auto 1fr; align-items:center; gap:24px;
}
.footer-logo { font-family:'Playfair Display',serif; font-size:1.3rem; font-weight:700; text-decoration:none; color:var(--white); }
.footer-logo span { color:var(--gold); }
.footer-copy { text-align:center; font-size:0.75rem; color:rgba(255,255,255,0.22); }
.footer-links { display:flex; gap:22px; justify-content:flex-end; }
.footer-links a { font-size:0.76rem; color:rgba(255,255,255,0.32); text-decoration:none; transition:color 0.2s; }
.footer-links a:hover { color:var(--gold); }
.footer-nav { margin-top:12px; }
.footer-cities { display:flex; flex-wrap:wrap; gap:8px; margin-top:16px; padding-top:16px; border-top:1px solid var(--border); justify-content:center; }
.footer-cities a { font-size:0.72rem; color:rgba(255,255,255,0.28); text-decoration:none; transition:color 0.2s; }
.footer-cities a:hover { color:var(--gold); }

/* ── NOTICE POPUP ── */
.notice {
  position:fixed; bottom:28px; right:28px; z-index:200;
  background:rgba(10,20,35,0.97); border:1px solid rgba(201,168,76,0.25); border-radius:3px;
  padding:16px 20px; display:flex; align-items:center; gap:12px;
  max-width:270px; box-shadow:0 8px 40px rgba(0,0,0,0.5);
  animation:slideNotice 0.4s ease;
}
@keyframes slideNotice { from{opacity:0;transform:translateX(16px)} to{opacity:1;transform:translateX(0)} }
.notice-close { position:absolute; top:7px; right:9px; background:none; border:none; color:rgba(255,255,255,0.28); cursor:pointer; font-size:0.8rem; }
.notice-icon { font-size:1.3rem; flex-shrink:0; }
.notice strong { display:block; font-size:0.82rem; color:var(--white); margin-bottom:1px; }
.notice span { font-size:0.74rem; color:rgba(255,255,255,0.42); }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from{opacity:0;transform:translateY(18px)} to{opacity:1;transform:translateY(0)} }
.fade-up { opacity:0; transform:translateY(22px); transition:all 0.6s ease; }
.fade-up.visible { opacity:1; transform:translateY(0); }

/* ── RESPONSIVE ── */
@media(max-width:900px){
  nav { padding:16px 24px; }
  nav.scrolled { padding:12px 24px; }
  .nav-links { display:none; flex-direction:column; position:absolute; top:100%; left:0; right:0; background:rgba(13,27,42,0.98); padding:20px 24px; gap:16px; border-bottom:1px solid var(--border); }
  .nav-links.open { display:flex; }
  .nav-hamburger { display:flex; }
  section { padding:64px 24px; }
  .hero { padding:100px 24px 64px; }
  h1 { font-size:2.6rem; }
  .events-grid, .packages-grid, .testi-grid { grid-template-columns:1fr; }
  .booking-grid { grid-template-columns:1fr; gap:40px; }
  .faq-grid { grid-template-columns:1fr; }
  .locations-grid { grid-template-columns:1fr; }
  .hero-orb { display:none; }
  .hero-stats { gap:28px; }
  footer { grid-template-columns:1fr; text-align:center; }
  .footer-links { justify-content:center; }
  .avail-banner { padding:14px 24px; font-size:0.8rem; text-align:center; }
  .local-section { padding:48px 24px; }
}
