/* ===== C65 URBAN SUITES — NAVY · GOLD · CREAM ===== */

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

:root {
  --navy:      #14202B;
  --navy-deep: #0E1820;
  --navy-mid:  #1E2E3B;
  --slate:     #33475A;
  --gold:      #C9A24B;
  --gold-lt:   #EAD08A;
  --gold-dk:   #9C7628;
  --cream:     #F4EFE4;
  --warm-off:  #ECE5D6;
  --stone:     #C3C9CE;
  --text:      #1B2731;
  --text-mid:  #4A5560;
  --text-light:#7C8A96;
  --white:     #FBFAF6;
  --radius:    6px;
  --radius-lg: 12px;
  --radius-sm: 4px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Archivo', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.75;
  color: var(--text);
  background: var(--white);
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-weight: 400;
  line-height: 1.25;
  color: var(--navy);
}
h1 { font-size: clamp(2.6rem, 7vw, 4.6rem); letter-spacing: 0.01em; }
h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 1rem; }
h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }
p  { color: var(--text-mid); margin-bottom: 1rem; }

.label {
  display: block;
  font-family: 'Archivo', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dk);
  margin-bottom: 0.75rem;
}

/* ===== LAYOUT ===== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}
.section { padding: 5rem 0; }
.bg-warm { background: var(--warm-off); }
.text-center { text-align: center; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 2.5rem;
  background: rgba(20, 32, 43, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(201,162,75,0.25);
  transition: all 0.3s ease;
}
.navbar.scrolled {
  padding: 0.55rem 2.5rem;
  background: rgba(14, 24, 32, 0.98);
}

/* Logo as image */
.logo-img {
  display: block;
  height: 60px;
  width: auto;
  transition: height 0.3s ease;
}
.navbar.scrolled .logo-img { height: 48px; }
.navbar .logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.logo {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.5rem;
  color: var(--gold-lt);
  text-decoration: none;
  letter-spacing: 0.05em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  color: var(--cream);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.82;
  transition: opacity 0.2s, color 0.2s;
}
.nav-links a:hover, .nav-links a.active { opacity: 1; color: var(--gold-lt); }
.lang-btn {
  background: none;
  border: 1px solid var(--gold);
  color: var(--gold-lt);
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s;
}
.lang-btn:hover { background: var(--gold); color: var(--navy-deep); }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--navy-deep);
  padding: 0.9rem 2.2rem;
  border-radius: var(--radius);
  font-family: 'Archivo', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--gold-lt); transform: translateY(-1px); }
.btn-primary.large { padding: 1.1rem 2.8rem; font-size: 0.88rem; }

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--navy);
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  border: 1.5px solid var(--slate);
  font-family: 'Archivo', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-secondary:hover { background: var(--navy); color: var(--cream); }

/* ===== FEATURES ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.feature-card {
  padding: 2rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(51,71,90,0.14);
  transition: transform 0.2s, box-shadow 0.2s;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(20,32,43,0.08); }
.feature-icon { font-size: 2rem; margin-bottom: 1rem; }
.feature-card h3 { font-size: 1.1rem; }
.feature-card p { font-size: 0.92rem; margin: 0; }

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-top: 3rem;
}
.testimonial {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border-left: 4px solid var(--gold);
}
.testimonial p {
  font-family: 'Libre Baskerville', serif;
  font-style: italic;
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 1rem;
}
.testimonial cite {
  font-size: 0.85rem;
  color: var(--text-light);
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.05em;
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: var(--navy-deep);
  padding: 6rem 0;
  background-image: radial-gradient(ellipse at 60% 50%, rgba(201,162,75,0.14) 0%, transparent 70%);
}
.cta-section h2 { color: var(--cream); }
.cta-section p { color: var(--stone); margin-bottom: 2rem; }

/* ===== FOOTER ===== */
.footer {
  position: relative;
  background:
    linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
  border-top: 1px solid rgba(201,162,75,0.28);
  padding: 4rem 0 1.75rem;
  color: var(--cream);
}
.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(201,162,75,0.08), transparent 60%);
  pointer-events: none;
}
.footer > * { position: relative; z-index: 1; }
.footer-logo-img {
  display: block;
  height: 150px;
  width: auto;
  margin-bottom: 1rem;
  border-radius: 8px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-brand .logo { font-size: 1.4rem; }
.footer-brand p { color: #dfd8c8; font-size: 0.88rem; margin-top: 0.5rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a {
  color: #dfd8c8;
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold-lt); }
.footer-contact p { color: #dfd8c8; font-size: 0.88rem; margin: 0 0 0.5rem; }
.footer-bottom { text-align: center; padding-top: 1.5rem; }
.footer-bottom p { font-size: 0.8rem; color: rgba(223,216,200,0.7); margin: 0; }

/* ===== PAGES — INNER HEADER ===== */
.page-header {
  padding: 10rem 0 4rem;
  background: var(--navy-deep);
  background-image: radial-gradient(ellipse at 30% 60%, rgba(201,162,75,0.16) 0%, transparent 70%);
  text-align: center;
}
.page-header h1 {
  color: var(--cream);
  font-size: clamp(2rem, 5vw, 3.4rem);
}
.page-header p {
  color: var(--stone);
  font-family: 'Libre Baskerville', serif;
  font-style: italic;
}
.page-header .label { color: var(--gold-lt); }
.page-header-lead {
  max-width: 680px;
  margin: 1.25rem auto 0;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--cream);
}

/* ===== SUITES / ROOMS PAGE ===== */
.cabin-quote {
  margin: 1rem 0 1.25rem;
  padding: 0.75rem 0 0.75rem 1.25rem;
  border-left: 3px solid var(--gold);
  font-family: 'Libre Baskerville', Georgia, serif;
}
.cabin-quote p {
  margin: 0 0 0.35rem;
  font-style: italic;
  font-size: 1.02rem;
  line-height: 1.55;
  color: var(--slate);
}
.cabin-quote cite {
  display: block;
  font-style: normal;
  font-family: 'Archivo', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dk);
}
.cabin-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1.5rem 0;
}
.amenity-tag {
  background: var(--warm-off);
  color: var(--navy);
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}
.cabin-pricing-card {
  background: var(--warm-off);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-top: 1.5rem;
  border: 1px solid rgba(51,71,90,0.14);
}
.price-row {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px dashed rgba(51,71,90,0.22);
  font-size: 0.92rem;
}
.price-row:last-child { border-bottom: none; }
.price-row span:last-child { font-weight: 700; color: var(--gold-dk); }
.cabin-price { margin-bottom: 1.25rem; color: var(--text-mid); font-size: 0.92rem; }
.cabin-price strong { font-size: 1.3rem; font-weight: 400; color: var(--gold-dk); font-family: 'Libre Baskerville', serif; }

/* ===== BOOKING PAGE ===== */
.booking-section { padding: 5rem 0; }
.booking-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  align-items: start;
}
.booking-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid rgba(51,71,90,0.14);
  box-shadow: 0 4px 24px rgba(20,32,43,0.05);
}
.form-group { margin-bottom: 1.5rem; }
.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid rgba(51,71,90,0.22);
  border-radius: var(--radius);
  font-family: 'Archivo', sans-serif;
  font-size: 0.95rem;
  background: var(--white);
  color: var(--text);
  transition: border-color 0.2s;
  appearance: none;
}
.form-group input[type="checkbox"],
.form-group input[type="radio"] {
  width: 18px;
  height: 18px;
  padding: 0;
  margin: 0;
  border: none;
  border-radius: 0;
  background: initial;
  appearance: auto;
  -webkit-appearance: auto;
  -moz-appearance: auto;
  cursor: pointer;
  accent-color: var(--gold);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-submit {
  width: 100%;
  padding: 1rem;
  background: var(--gold);
  color: var(--navy-deep);
  border: none;
  border-radius: var(--radius);
  font-family: 'Archivo', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  margin-top: 0.5rem;
}
.form-submit:hover { background: var(--gold-lt); transform: translateY(-1px); }
.booking-info h3 { margin-bottom: 1rem; }
.info-box {
  background: var(--warm-off);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid rgba(51,71,90,0.12);
  margin-bottom: 1.5rem;
}
.info-box p { margin: 0; font-size: 0.9rem; }
.info-box strong { color: var(--navy); }
.form-success {
  display: none;
  background: #eef5ee;
  border: 1px solid #6B9B6B;
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  color: #2D5A2D;
}

/* ===== ATTRACTIONS PAGE ===== */
.attractions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.attraction-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(51,71,90,0.14);
  background: var(--white);
  transition: transform 0.2s, box-shadow 0.2s;
}
.attraction-card:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(20,32,43,0.1); }
.attraction-img {
  min-height: 220px;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  transition: transform 0.5s ease;
}
.attraction-card:hover .attraction-img { transform: scale(1.03); }
/* Gradient placeholders (replace with real photos in style.css) */
.attr-1 { background-image: linear-gradient(150deg, #1E2E3B 0%, #33475A 60%, #C9A24B 140%); }
.attr-2 { background-image: linear-gradient(150deg, #0E1820 0%, #1E2E3B 65%, #9C7628 145%); }
.attr-3 { background-image: linear-gradient(150deg, #33475A 0%, #14202B 60%, #C9A24B 150%); }
.attr-4 { background-image: linear-gradient(150deg, #14202B 0%, #33475A 70%, #EAD08A 150%); }
.attr-5 { background-image: linear-gradient(150deg, #1E2E3B 0%, #0E1820 55%, #C9A24B 140%); }
.attr-6 { background-image: linear-gradient(150deg, #0E1820 0%, #33475A 70%, #9C7628 150%); }
.attr-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(244,239,228,0.95);
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}
.attraction-body { padding: 1.5rem; }
.attraction-body h3 { font-size: 1.1rem; margin-bottom: 0.4rem; }
.attraction-body p { font-size: 0.88rem; color: var(--text-light); margin: 0; }
.attraction-dist {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold-dk);
  letter-spacing: 0.05em;
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  align-items: flex-start;
}
.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--warm-off);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-info-item h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dk);
  margin-bottom: 0.25rem;
  font-family: 'Archivo', sans-serif;
}
.contact-info-item p { margin: 0; font-size: 0.95rem; }

/* ===== CONTACT MAP ===== */
.contact-map {
  margin-top: 2.5rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(51,71,90,0.14);
  box-shadow: 0 4px 20px rgba(20,32,43,0.08);
  background: var(--warm-off);
}
.contact-map iframe {
  display: block;
  width: 100%;
  height: 340px;
  border: 0;
}
.map-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: var(--warm-off);
  border-top: 1px solid rgba(51,71,90,0.1);
}
.map-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.6rem 1.1rem;
  background: var(--navy-deep);
  color: var(--cream);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: background 0.2s, transform 0.2s;
}
.map-btn:hover {
  background: var(--gold);
  color: var(--navy-deep);
  transform: translateY(-1px);
}
.map-btn.secondary {
  background: transparent;
  color: var(--navy-deep);
  border: 1px solid rgba(20,32,43,0.2);
}
.map-btn.secondary:hover {
  background: var(--navy-deep);
  color: var(--cream);
  border-color: var(--navy-deep);
}

/* ===== AVAILABILITY CALENDAR ===== */
.availability-widget {
  background: var(--warm-off);
  border: 1px solid rgba(51,71,90,0.14);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 1.75rem;
}
.cal-empty {
  text-align: center;
  color: var(--text-light);
  font-size: 0.92rem;
  padding: 1.25rem 0;
}
.cal-heading {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px dashed rgba(51,71,90,0.25);
}
.cal-heading-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dk);
}
.cal-heading-name {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 1.1rem;
  color: var(--navy);
}
.cal-months {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.cal-month-label {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--navy);
  text-align: center;
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}
.cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  margin-bottom: 4px;
}
.cal-weekdays span {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  text-align: center;
  padding: 2px 0;
}
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}
.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 400;
  border-radius: 4px;
  background: var(--white);
  color: var(--text);
  cursor: default;
  position: relative;
  transition: background 0.15s ease, transform 0.1s ease, box-shadow 0.15s ease;
  user-select: none;
}
.cal-day.empty { background: transparent; }
.cal-day.past { color: var(--text-light); opacity: 0.4; background: transparent; }
.cal-day.available {
  background: var(--white);
  border: 1px solid rgba(201,162,75,0.35);
  color: var(--navy);
  cursor: pointer;
}
.cal-day.available:hover {
  background: rgba(201, 162, 75, 0.18);
  border-color: var(--gold);
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(201,162,75,0.25);
}
.cal-day.available:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
.cal-day.blocked {
  background: repeating-linear-gradient(45deg, rgba(192,57,43,0.18) 0 4px, rgba(192,57,43,0.05) 4px 8px);
  color: #8a3b33;
  text-decoration: line-through;
  border: 1px solid rgba(192,57,43,0.3);
  cursor: not-allowed;
}
.cal-day.selected {
  background: var(--gold);
  color: var(--navy-deep);
  border: 1px solid var(--gold);
  font-weight: 700;
}
.cal-day.selected-mid {
  background: rgba(201, 162, 75, 0.45);
  font-weight: 500;
}
.cal-day.selected-start { border-top-right-radius: 0; border-bottom-right-radius: 0; }
.cal-day.selected-end { border-top-left-radius: 0; border-bottom-left-radius: 0; }
.cal-day.pending-start {
  background: var(--gold);
  color: var(--navy-deep);
  border: 1px solid var(--gold);
  font-weight: 700;
  box-shadow: 0 0 0 2px rgba(201,162,75,0.35);
}
.cal-day.hover-range {
  background: rgba(201, 162, 75, 0.25);
  border-color: rgba(201, 162, 75, 0.5);
}
.cal-hint {
  font-size: 0.85rem;
  color: var(--text-mid);
  background: rgba(201, 162, 75, 0.08);
  border-left: 3px solid var(--gold);
  padding: 0.7rem 0.9rem;
  border-radius: 4px;
  margin-bottom: 1rem;
  line-height: 1.45;
}
.cal-hint strong { color: var(--navy); font-weight: 700; margin-right: 0.25rem; }
.cal-reset-link {
  color: var(--gold-dk);
  text-decoration: underline;
  margin-left: 0.35rem;
  font-weight: 500;
}
.cal-reset-link:hover { color: var(--navy); }
.cal-legend {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px dashed rgba(51,71,90,0.25);
  flex-wrap: wrap;
}
.lg-item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.78rem;
  color: var(--text-mid);
}
.lg-dot { width: 14px; height: 14px; border-radius: 3px; display: inline-block; }
.lg-dot.available { background: var(--white); border: 1px solid rgba(201,162,75,0.6); }
.lg-dot.blocked {
  background: repeating-linear-gradient(45deg, rgba(192,57,43,0.6) 0 3px, rgba(192,57,43,0.15) 3px 6px);
  border: 1px solid rgba(192,57,43,0.5);
}
.lg-dot.selected { background: var(--gold); border: 1px solid var(--gold); }

/* Flatpickr theming */
.flatpickr-calendar {
  font-family: 'Archivo', sans-serif;
  box-shadow: 0 8px 30px rgba(20,32,43,0.14);
  border: 1px solid rgba(51,71,90,0.15);
}
.flatpickr-day.selected,
.flatpickr-day.selected:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy-deep);
}
.flatpickr-day.today { border-color: var(--gold); }
.flatpickr-day.flatpickr-disabled {
  color: rgba(192,57,43,0.35);
  text-decoration: line-through;
  background: repeating-linear-gradient(45deg, rgba(192,57,43,0.08) 0 4px, transparent 4px 8px);
}

@media (max-width: 900px) { .cal-months { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) {
  .cal-months { grid-template-columns: 1fr; }
  .availability-widget { padding: 1rem; }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .testimonials-grid,
  .booking-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .attractions-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 640px) {
  .navbar { padding: 0.85rem 1.25rem; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: rgba(14, 24, 32, 0.98); backdrop-filter: blur(8px); padding: 1.5rem 2rem; gap: 1.25rem; border-top: 1px solid rgba(201,162,75,0.2); }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .features-grid { grid-template-columns: 1fr; }
  .attractions-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .container { padding: 0 1.25rem; }
  .section { padding: 3rem 0; }
}

/* ============================================================
   EDITORIAL SCROLL SYSTEM — chapter heroes, pinned media
   ============================================================ */
.chapter-hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--cream);
  text-align: center;
  padding: 0 2rem;
}
.chapter-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  z-index: 0;
}
.chapter-hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,24,32,0.55) 0%, rgba(14,24,32,0.35) 45%, rgba(14,24,32,0.78) 100%);
  z-index: 1;
}
.chapter-hero > .chapter-hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}
.chapter-hero .eyebrow {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 1.5rem;
  font-weight: 700;
  font-family: 'Archivo', sans-serif;
}
.chapter-hero h1 {
  color: var(--cream);
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: clamp(3rem, 8vw, 5.6rem);
  line-height: 1.08;
  margin-bottom: 1.25rem;
}
.chapter-hero .chapter-sub {
  color: var(--cream);
  font-family: 'Archivo', sans-serif;
  font-weight: 300;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  letter-spacing: 0.08em;
  max-width: 640px;
  margin: 0 auto;
}
.chapter-hero .scroll-cue {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.75;
  z-index: 2;
  animation: cue-bob 2.4s ease-in-out infinite;
}
@keyframes cue-bob {
  0%, 100% { transform: translate(-50%, 0); opacity: 0.6; }
  50%      { transform: translate(-50%, 8px); opacity: 1; }
}

/* Hero placeholders — navy/gold gradients (swap for photos here) */
.hero-1 { background-image: linear-gradient(135deg, #0E1820 0%, #14202B 45%, #33475A 100%), radial-gradient(circle at 70% 30%, rgba(201,162,75,0.25), transparent 55%); }
.hero-2 { background-image: linear-gradient(135deg, #14202B 0%, #1E2E3B 50%, #0E1820 100%); }
.hero-3 { background-image: linear-gradient(135deg, #1E2E3B 0%, #0E1820 55%, #14202B 100%); }
.hero-4 { background-image: linear-gradient(135deg, #0E1820 0%, #33475A 60%, #14202B 100%); }

@media (hover: none) and (pointer: coarse) {
  .chapter-hero::before { background-attachment: scroll; }
}

.chapter { position: relative; padding: 0; }
.chapter-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  min-height: 100vh;
}
.chapter-row.reverse { direction: rtl; }
.chapter-row.reverse > * { direction: ltr; }

.chapter-media {
  position: relative;
  overflow: hidden;
  min-height: 70vh;
}
.chapter-media-inner {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.chapter-media-inner::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,24,32,0.1), rgba(14,24,32,0.28));
}

.chapter-text {
  padding: 6rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
}
.chapter-text .label { margin-bottom: 1rem; }
.chapter-text h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-bottom: 1.5rem;
  line-height: 1.15;
}
.chapter-text p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text-mid);
}
.chapter-text.warm   { background: var(--warm-off); }
.chapter-text.cream  { background: var(--cream); }
.chapter-text.navy   { background: var(--navy-deep); }
.chapter-text.navy h2,
.chapter-text.navy h3 { color: var(--cream); }
.chapter-text.navy p  { color: var(--stone); }
.chapter-text.navy .label { color: var(--gold-lt); }

/* Media placeholders (swap for photos here) */
.media-1 { background-image: linear-gradient(160deg, #14202B 0%, #33475A 70%, #C9A24B 145%); }
.media-2 { background-image: linear-gradient(160deg, #1E2E3B 0%, #0E1820 60%, #9C7628 150%); }
.media-3 { background-image: linear-gradient(160deg, #33475A 0%, #14202B 65%, #EAD08A 155%); }
.media-4 { background-image: linear-gradient(160deg, #0E1820 0%, #1E2E3B 60%, #C9A24B 150%); }
.media-5 { background-image: linear-gradient(160deg, #14202B 0%, #0E1820 55%, #9C7628 150%); }

/* Full-bleed pinned band */
.chapter-band {
  position: relative;
  height: 80vh;
  min-height: 520px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--cream);
  padding: 0 2rem;
}
.chapter-band::before {
  content: "";
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 0;
}
.chapter-band::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,24,32,0.55), rgba(14,24,32,0.7));
  z-index: 1;
}
.chapter-band > * { position: relative; z-index: 2; max-width: 780px; }
.chapter-band h2 {
  color: var(--cream);
  font-family: 'Libre Baskerville', Georgia, serif;
  font-style: italic;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 1.3;
}
.chapter-band cite {
  display: block;
  margin-top: 1.2rem;
  font-family: 'Archivo', sans-serif;
  font-style: normal;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-lt);
  font-weight: 700;
}
@media (hover: none) and (pointer: coarse) {
  .chapter-band::before { background-attachment: scroll; }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s cubic-bezier(.22,.61,.36,1), transform 1s cubic-bezier(.22,.61,.36,1);
  will-change: opacity, transform;
}
.reveal.in-view { opacity: 1; transform: none; }
.reveal.delay-1  { transition-delay: 0.12s; }
.reveal.delay-2  { transition-delay: 0.24s; }
.reveal.delay-3  { transition-delay: 0.36s; }
.reveal.fade     { transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .chapter-hero::before,
  .chapter-band::before { background-attachment: scroll; }
  .chapter-media-inner  { position: static; height: 70vh; }
  .scroll-cue { animation: none; }
  html { scroll-behavior: auto; }
}

@media (max-width: 820px) {
  .chapter-row { grid-template-columns: 1fr; }
  .chapter-row.reverse { direction: ltr; }
  .chapter-media { min-height: 60vh; }
  .chapter-media-inner { position: static; height: 60vh; }
  .chapter-text { padding: 4rem 1.5rem; }
  .chapter-band { height: 60vh; }
  .chapter-hero { min-height: 540px; }
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  max-width: 520px;
  margin-left: auto;
  background: rgba(14, 24, 32, 0.97);
  backdrop-filter: blur(10px);
  color: var(--cream);
  padding: 1.4rem 1.5rem;
  border-radius: 12px;
  border: 1px solid rgba(201,162,75,0.3);
  box-shadow: 0 12px 40px rgba(0,0,0,0.45);
  z-index: 999;
  font-size: 0.9rem;
  line-height: 1.55;
  transform: translateY(120%);
  opacity: 0;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s ease;
}
.cookie-banner.visible { transform: translateY(0); opacity: 1; }
.cookie-banner h4 {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 1.1rem;
  color: var(--gold-lt);
  margin: 0 0 0.5rem;
  font-weight: 400;
}
.cookie-banner p { margin: 0 0 1rem; color: #d5cdba; }
.cookie-banner a { color: var(--gold-lt); text-decoration: underline; }
.cookie-banner-actions { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.cookie-btn {
  padding: 0.55rem 1.1rem;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: 'Archivo', sans-serif;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.2s ease;
  letter-spacing: 0.02em;
}
.cookie-btn-accept { background: var(--gold); color: var(--navy-deep); border-color: var(--gold); }
.cookie-btn-accept:hover { background: var(--gold-lt); border-color: var(--gold-lt); }
.cookie-btn-reject { background: transparent; color: var(--cream); border-color: rgba(244,239,228,0.35); }
.cookie-btn-reject:hover { border-color: var(--cream); background: rgba(244,239,228,0.08); }
.cookie-btn-details { background: transparent; color: var(--gold-lt); border-color: transparent; text-decoration: underline; padding: 0.55rem 0.4rem; }
@media (max-width: 640px) {
  .cookie-banner { left: 0.75rem; right: 0.75rem; bottom: 0.75rem; padding: 1.1rem 1.2rem; }
  .cookie-banner-actions { flex-direction: column; }
  .cookie-btn { width: 100%; }
}

/* ===== LEGAL PAGES ===== */
.legal-page {
  max-width: 780px;
  margin: 0 auto;
  padding: 3rem 1.5rem 5rem;
  line-height: 1.75;
  color: var(--text);
}
.legal-page h1 {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--navy);
  margin-bottom: 0.5rem;
  font-weight: 400;
}
.legal-page .legal-updated {
  color: var(--text-light);
  font-size: 0.85rem;
  margin-bottom: 2.5rem;
  letter-spacing: 0.04em;
}
.legal-page h2 {
  font-family: 'Libre Baskerville', Georgia, serif;
  color: var(--navy);
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  font-size: 1.4rem;
  font-weight: 400;
}
.legal-page h3 { color: var(--navy); margin-top: 1.5rem; margin-bottom: 0.5rem; font-size: 1.05rem; font-weight: 700; }
.legal-page p, .legal-page li { color: var(--text-mid); font-size: 0.98rem; }
.legal-page ul, .legal-page ol { padding-left: 1.3rem; margin-bottom: 1rem; }
.legal-page a { color: var(--gold-dk); text-decoration: underline; }
.legal-page table { width: 100%; border-collapse: collapse; margin: 1rem 0; font-size: 0.9rem; }
.legal-page th, .legal-page td { border: 1px solid rgba(51,71,90,0.2); padding: 0.6rem 0.8rem; text-align: left; vertical-align: top; }
.legal-page th { background: var(--warm-off); font-weight: 700; }

/* Homepage hero logo (SVG form from the brand mark) */
.hero-logo {
  margin: 0 auto 1.5rem;
  padding: 0;
  line-height: 0;
}
.hero-logo svg {
  display: block;
  width: min(440px, 82vw);
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 6px 24px rgba(0,0,0,0.45));
}

/* Homepage intro paragraph */
.intro-lead {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-style: italic;
  font-size: 1.2rem;
  line-height: 1.9;
  color: var(--text-mid);
}
