/* =============================================================
   Lifestyle Living Xperience — shared design system
   Brand palette drawn from the logo (sunset / outdoor adventure)
   ============================================================= */

:root {
  --orange: #E9611F;
  --orange-bright: #F5931F;
  --charcoal: #1B1B1B;
  --charcoal-soft: #262626;
  --teal: #14524E;
  --teal-dark: #0E3B38;
  --cream: #F7F1E7;
  --white: #FFFFFF;
  --grey: #6B6B6B;
  --line: rgba(0, 0, 0, 0.08);

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.25);

  --radius: 16px;
  --radius-lg: 24px;
  --maxw: 1160px;

  --sans: "Poppins", "Segoe UI", system-ui, -apple-system, Roboto, Arial, sans-serif;
  --sunset: linear-gradient(135deg, var(--orange) 0%, var(--orange-bright) 100%);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--orange); text-decoration: none; }
a:hover { color: var(--orange-bright); }

h1, h2, h3 { line-height: 1.15; font-weight: 800; margin: 0 0 0.4em; }
h1 { font-size: clamp(2.1rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1rem; }

:focus-visible {
  outline: 3px solid var(--orange-bright);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 1.25rem; }
.section { padding: clamp(3rem, 7vw, 5.5rem) 0; }
.section.alt { background: var(--cream); }
.section.dark { background: var(--charcoal); color: var(--cream); }
.section.dark h2, .section.dark h3 { color: var(--white); }

.center { text-align: center; }
.lead { font-size: 1.15rem; color: var(--grey); max-width: 60ch; }
.center .lead { margin-left: auto; margin-right: auto; }
.section.dark .lead { color: rgba(255, 255, 255, 0.8); }

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.6rem;
}

.accent-bar {
  width: 64px; height: 5px; border-radius: 999px;
  background: var(--sunset); margin: 0.6rem 0 1.6rem;
}
.center .accent-bar { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.8rem 1.5rem; border-radius: 999px;
  font-weight: 700; font-size: 1rem; cursor: pointer;
  border: 2px solid transparent; transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--sunset); color: var(--white); box-shadow: var(--shadow-sm); }
.btn-primary:hover { color: var(--white); box-shadow: var(--shadow-md); }
.btn-outline { border-color: var(--white); color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--charcoal); }
.btn-dark { background: var(--charcoal); color: var(--white); }
.btn-dark:hover { color: var(--white); background: var(--teal); }
.btn-row { display: flex; gap: 0.9rem; flex-wrap: wrap; }
.center .btn-row { justify-content: center; }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 74px;
}
.brand { display: flex; align-items: center; gap: 0.6rem; font-weight: 800; color: var(--charcoal); }
.brand img { height: 46px; width: auto; }
.brand span { font-size: 1.05rem; line-height: 1.1; }
.brand span small { display: block; font-size: 0.7rem; color: var(--orange); letter-spacing: 0.1em; }

.nav-links { display: flex; align-items: center; gap: 0.35rem; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  color: var(--charcoal); font-weight: 600; padding: 0.5rem 0.8rem; border-radius: 999px;
  font-size: 0.98rem; transition: background 0.15s ease, color 0.15s ease;
}
.nav-links a:hover { background: var(--cream); color: var(--orange); }
.nav-links a[aria-current="page"] { color: var(--orange); }
.nav-links a.nav-cta {
  background: var(--sunset); color: var(--white); box-shadow: var(--shadow-sm);
}
.nav-links a.nav-cta:hover { color: var(--white); transform: translateY(-1px); }

.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer; padding: 0.4rem;
  width: 44px; height: 44px;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; height: 3px; width: 26px; background: var(--charcoal);
  border-radius: 3px; transition: transform 0.2s ease, opacity 0.2s ease; position: relative;
}
.nav-toggle span::before { position: absolute; top: -8px; }
.nav-toggle span::after { position: absolute; top: 8px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute; top: 74px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--white); border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    max-height: 0; overflow: hidden; transition: max-height 0.25s ease;
  }
  .nav-links.open { max-height: 480px; }
  .nav-links li { border-top: 1px solid var(--line); }
  .nav-links a { display: block; padding: 1rem 1.25rem; border-radius: 0; }
  .nav-links a.nav-cta { margin: 0.75rem 1.25rem; border-radius: 999px; text-align: center; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; color: var(--white);
  min-height: 78vh; display: flex; align-items: center;
  background-size: cover; background-position: center;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(27,27,27,0.35) 0%, rgba(27,27,27,0.85) 100%);
}
.hero .container { position: relative; z-index: 1; padding-top: 4rem; padding-bottom: 4rem; }
.hero h1 { color: var(--white); max-width: 16ch; }
.hero p { font-size: 1.2rem; max-width: 52ch; color: rgba(255,255,255,0.9); }
.hero .tagline {
  display: inline-block; font-style: italic; font-weight: 700;
  color: var(--orange-bright); margin-bottom: 1rem; font-size: 1.15rem;
}

/* Page banner (smaller hero for interior pages) */
.page-banner {
  position: relative; color: var(--white);
  padding: clamp(3.5rem, 8vw, 6rem) 0; text-align: center;
  background: var(--charcoal); background-size: cover; background-position: center;
}
.page-banner::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,82,78,0.55), rgba(27,27,27,0.85));
}
.page-banner .container { position: relative; z-index: 1; }
.page-banner h1 { color: var(--white); }
.page-banner p { color: rgba(255,255,255,0.9); margin: 0 auto; max-width: 60ch; }

/* ---------- Grids & cards ---------- */
.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.6rem;
  box-shadow: var(--shadow-sm); transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card .icon {
  width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center; font-size: 1.6rem;
  background: var(--sunset); color: var(--white); margin-bottom: 1rem;
}
.card h3 { margin-bottom: 0.35rem; }
.card p { color: var(--grey); margin: 0; }

.section.dark .card { background: var(--charcoal-soft); border-color: rgba(255,255,255,0.08); color: rgba(255,255,255,0.85); }
.section.dark .card p { color: rgba(255,255,255,0.7); }

/* Numbered / benefit list */
.benefit-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 1rem; }
.benefit-list li {
  display: flex; gap: 1rem; align-items: flex-start;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.1rem 1.3rem; box-shadow: var(--shadow-sm);
}
.benefit-list .num {
  flex: none; width: 34px; height: 34px; border-radius: 50%;
  background: var(--sunset); color: var(--white); font-weight: 800;
  display: grid; place-items: center;
}

/* Value chips */
.chips { display: flex; flex-wrap: wrap; gap: 0.7rem; }
.chip {
  background: var(--white); border: 2px solid var(--orange);
  color: var(--orange); font-weight: 700; padding: 0.5rem 1.1rem;
  border-radius: 999px; font-size: 0.95rem;
}
.section.dark .chip { background: transparent; }

/* Split content (text + media) */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: center; }
.split.reverse .split-media { order: -1; }
@media (max-width: 820px) { .split { grid-template-columns: 1fr; } .split.reverse .split-media { order: 0; } }
.split-media img, .split-media video {
  width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); object-fit: cover;
}

/* ---------- Fact strip ---------- */
.facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; text-align: center; }
@media (max-width: 620px) { .facts { grid-template-columns: 1fr; } }
.fact .big { font-size: clamp(2rem, 5vw, 3rem); font-weight: 800; color: var(--orange-bright); }
.fact .label { color: rgba(255,255,255,0.8); font-weight: 600; }

/* ---------- Gallery + lightbox ---------- */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
@media (max-width: 820px) { .gallery { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .gallery { grid-template-columns: 1fr; } }
.gallery button {
  padding: 0; border: 0; cursor: pointer; background: none;
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm);
  aspect-ratio: 4 / 3;
}
.gallery img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.35s ease;
}
.gallery button:hover img { transform: scale(1.06); }

.video-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
@media (max-width: 720px) { .video-grid { grid-template-columns: 1fr; } }
.video-grid video { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-md); background: #000; }

.lightbox {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(0,0,0,0.9); display: none;
  align-items: center; justify-content: center; padding: 2rem;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 86vh; border-radius: 8px; box-shadow: var(--shadow-lg); }
.lightbox-close {
  position: absolute; top: 1.2rem; right: 1.5rem;
  background: none; border: 0; color: var(--white); font-size: 2.5rem; line-height: 1;
  cursor: pointer;
}

/* ---------- Contact cards ---------- */
.contact-card { text-align: center; }
.contact-card .avatar {
  width: 76px; height: 76px; border-radius: 50%; margin: 0 auto 1rem;
  background: var(--sunset); color: var(--white); font-size: 1.8rem; font-weight: 800;
  display: grid; place-items: center;
}
.contact-card .role { color: var(--grey); font-size: 0.95rem; margin-bottom: 1rem; }

.social-row { display: flex; flex-wrap: wrap; gap: 0.9rem; justify-content: center; }
.social-row a {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--white); border: 1px solid var(--line); color: var(--charcoal);
  padding: 0.7rem 1.2rem; border-radius: 999px; font-weight: 600; box-shadow: var(--shadow-sm);
  transition: transform 0.15s ease, color 0.15s ease;
}
.social-row a:hover { transform: translateY(-2px); color: var(--orange); }

/* ---------- Poster feature ---------- */
.poster-wrap { text-align: center; }
.poster-wrap img {
  margin: 0 auto; max-width: 480px; width: 100%;
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
}

/* ---------- Calendar ---------- */
.calendar-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
@media (max-width: 760px) { .calendar-grid { grid-template-columns: 1fr; } }
.cal-month {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.4rem; box-shadow: var(--shadow-sm);
}
.cal-title { text-align: center; font-weight: 800; font-size: 1.2rem; margin-bottom: 1rem; }
.cal-weekdays, .cal-days { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; }
.cal-weekdays span {
  text-align: center; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.04em;
  color: var(--grey); text-transform: uppercase; padding-bottom: 0.4rem;
}
.cal-day {
  aspect-ratio: 1 / 1; display: grid; place-items: center;
  border-radius: 10px; font-weight: 600; font-size: 0.95rem; color: var(--charcoal);
  background: var(--cream);
}
.cal-day.blank { background: transparent; }
a.cal-day.event {
  background: var(--sunset); color: var(--white); box-shadow: var(--shadow-sm);
  text-decoration: none; transition: transform 0.15s ease;
  position: relative;
}
a.cal-day.event:hover { transform: translateY(-2px); color: var(--white); }
a.cal-day.event::after {
  content: ""; position: absolute; bottom: 5px; width: 5px; height: 5px;
  border-radius: 50%; background: var(--white);
}
.cal-legend { display: flex; align-items: center; justify-content: center; gap: 0.5rem; margin-top: 1.6rem; color: var(--grey); font-size: 0.92rem; }
.cal-legend .swatch { width: 16px; height: 16px; border-radius: 5px; background: var(--sunset); display: inline-block; }

/* Event detail cards */
.event-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md); overflow: hidden; scroll-margin-top: 90px;
}
.event-head { display: flex; flex-wrap: wrap; gap: 0.8rem 1.2rem; align-items: center; padding: 1.4rem 1.6rem; background: var(--charcoal); color: var(--white); }
.event-head h3 { margin: 0; color: var(--white); }
.date-badge {
  flex: none; text-align: center; background: var(--sunset); color: var(--white);
  border-radius: 12px; padding: 0.5rem 0.9rem; line-height: 1.05; box-shadow: var(--shadow-sm);
}
.date-badge .d { display: block; font-size: 1.5rem; font-weight: 800; }
.date-badge .m { display: block; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.event-meta { display: flex; flex-wrap: wrap; gap: 0.5rem 1.4rem; color: rgba(255,255,255,0.85); font-size: 0.95rem; width: 100%; }
.event-body { padding: 1.6rem; }
.event-body .split { gap: 2rem; }

/* Package pricing tables */
.price-table { width: 100%; border-collapse: collapse; font-size: 0.95rem; margin-bottom: 1rem; }
.price-table caption { text-align: left; font-weight: 800; margin-bottom: 0.5rem; color: var(--teal); }
.price-table th, .price-table td { text-align: left; padding: 0.6rem 0.7rem; border-bottom: 1px solid var(--line); }
.price-table th { background: var(--cream); }
.price-table td:last-child, .price-table th:last-child { text-align: right; font-weight: 700; color: var(--orange); white-space: nowrap; }

/* ---------- Footer ---------- */
.site-footer { background: var(--charcoal); color: rgba(255,255,255,0.75); padding: 3rem 0 1.5rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1.4fr; gap: 2rem; }
@media (max-width: 780px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h4 { color: var(--white); font-size: 1rem; margin: 0 0 0.9rem; letter-spacing: 0.04em; }
.site-footer a { color: rgba(255,255,255,0.8); }
.site-footer a:hover { color: var(--orange-bright); }
.footer-brand { display: flex; align-items: center; gap: 0.7rem; margin-bottom: 0.8rem; }
.footer-brand img { height: 52px; }
.footer-links { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.5rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12); margin-top: 2.2rem; padding-top: 1.2rem;
  text-align: center; font-size: 0.9rem; color: rgba(255,255,255,0.6);
}

/* ---------- Utilities ---------- */
.mt-0 { margin-top: 0; }
.stack > * + * { margin-top: 1rem; }
.note { font-size: 0.95rem; color: var(--grey); }
.section.dark .note { color: rgba(255,255,255,0.7); }
