:root {
  --color-cream: #FFFBF5;
  --color-dark: #483D34;
  --color-deep: #18302D;
  --color-teal: #4E756E;
  --color-tan: #B69A68;
  --color-blue-gray: #95AFBA;

  --font-serif: 'Lora', serif;
  --font-sans: 'Nunito Sans', sans-serif;

  --container-width: 1200px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 132px;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--color-dark);
  background: var(--color-cream);
  line-height: 1.5;
}

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

h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  margin: 0 0 0.5em;
  line-height: 1.15;
}

p { margin: 0 0 1em; }

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

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

.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1em;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.reveal-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Buttons */

.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 2px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 400;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  background: var(--color-tan);
  border-color: var(--color-tan);
  color: var(--color-dark);
}

.btn-solid {
  background: var(--color-teal);
  color: var(--color-cream);
}

.btn-outline {
  background: transparent;
  color: var(--color-cream);
  border: 1px solid var(--color-cream);
}

.final-cta .btn-outline {
  color: var(--color-cream);
  border-color: var(--color-cream);
}

.link-cta {
  display: inline-block;
  color: var(--color-teal);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}

/* Announcement bar */

.announcement-bar {
  position: relative;
  background: rgba(182, 154, 104, 0.3);
  text-align: center;
  padding: 12px 48px;
}

.announcement-bar p {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 700;
}

.announcement-close {
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  background: none;
  border: none;
  padding: 4px 8px;
  font-size: 1.25rem;
  line-height: 1;
  color: var(--color-dark);
  cursor: pointer;
}

.announcement-close:hover { opacity: 0.7; }

/* Header */

.site-header {
  background: var(--color-cream);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow 0.2s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 4px 16px rgba(24, 48, 45, 0.08);
}

.site-header .container {
  padding: 0 12px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.logo img { height: 68px; width: auto; }

.main-nav {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.main-nav a {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.main-nav a.is-active {
  color: var(--color-teal);
  border-bottom-color: var(--color-teal);
}

/* Hamburger (mobile only) */

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-dark);
}

/* Mobile full-screen menu */

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--color-cream);
  z-index: 200;
  display: flex;
  flex-direction: column;
  padding: 20px 24px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.mobile-menu.is-open {
  transform: translateX(0);
}

.mobile-menu-top {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 60px;
}

.mobile-menu-close {
  background: none;
  border: none;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-dark);
  cursor: pointer;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 40px;
}

.mobile-nav a {
  font-family: var(--font-serif);
  font-size: 2rem;
}

.mobile-menu .btn { align-self: flex-start; }

/* Hero */

.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(24,48,45,0.55), rgba(24,48,45,0.65));
}

.hero-inner {
  position: relative;
  z-index: 1;
  color: var(--color-cream);
  max-width: 1000px;
  margin-left: 0;
  padding-left: calc(max(0px, (100vw - 1200px) / 2) + 12px);
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.75rem);
  color: var(--color-cream);
}

.no-break {
  white-space: nowrap;
}

.hero-sub {
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  font-weight: 300;
  margin-bottom: 1.5em;
}

/* Intro statement */

.intro-statement {
  padding: 100px 0;
  text-align: center;
}

.intro-statement p {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.35;
}

/* Split sections (escape-coast, rooted-in-place) */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 24px;
}

.split-media {
  position: relative;
  min-height: 380px;
}

.split-media img {
  border-radius: 4px;
}

.split-media.single img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-copy h2 { font-size: clamp(2rem, 4vw, 2.75rem); }
.split-copy p { font-size: 1.05rem; }

/* Escape to the Wild Coast: full-bleed-left photo, contained text */

.escape-coast {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 60px;
  padding: 80px 0;
}

.escape-coast .split-media {
  min-height: 0;
}

.escape-coast .split-media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0;
}

.escape-coast .split-copy {
  padding-left: 24px;
  padding-right: max(24px, calc((100vw - 1200px) / 2 + 24px));
}

.nation-logo {
  height: 70px;
  width: auto;
  margin-bottom: 1.5em;
}

/* Stats row */

.stats-row {
  padding: 60px 0 100px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-icon {
  width: 90px;
  height: auto;
  margin: 0 auto 20px;
}

.stat p {
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: 0.03em;
  margin: 0;
  max-width: 200px;
  margin-inline: auto;
}

/* Stay in a wildpod */

.stay-wildpod {
  text-align: center;
  padding: 40px 0 100px;
}

.stay-wildpod h2 { font-size: clamp(2rem, 4vw, 2.75rem); }

.stay-wildpod p {
  max-width: 640px;
  margin: 0 auto 1.2em;
  font-size: 1.05rem;
}

/* Pods carousel */

.pods {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 100px 0;
  color: var(--color-cream);
}

.pods-overlay {
  position: absolute;
  inset: 0;
  background: rgba(24,48,45,0.55);
}

.pods .container { position: relative; z-index: 1; }

.pods-title {
  color: var(--color-cream);
  text-align: center;
  font-size: clamp(2rem, 4vw, 2.75rem);
}

.pod-carousel {
  display: flex;
  align-items: center;
  gap: 16px;
}

.pod-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 8px 4px 24px;
  flex: 1;
  scrollbar-width: none;
}

.pod-track::-webkit-scrollbar { display: none; }

.pod-card {
  flex: 0 0 calc((100% - 48px) / 3);
  scroll-snap-align: start;
  background: var(--color-cream);
  border-radius: 4px;
  overflow: hidden;
  color: var(--color-dark);
}

.pod-card-media {
  aspect-ratio: 4 / 5;
  background: #d8d8d8;
}

.pod-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pod-card-body {
  padding: 20px 22px 26px;
}

.pod-card-body h3 {
  font-size: 1.4rem;
  margin-bottom: 0.3em;
}

.pod-card-body p {
  font-size: 0.95rem;
  margin: 0;
}

.pod-arrow {
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--color-cream);
  background: transparent;
  color: var(--color-cream);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.pod-arrow:hover {
  background: var(--color-cream);
  color: var(--color-dark);
}

.pod-arrow:disabled {
  opacity: 0.35;
  cursor: default;
}

.pod-arrow:disabled:hover {
  background: transparent;
  color: var(--color-cream);
}

/* Amenities band */

.amenities-band {
  background: var(--color-tan);
  padding: 80px 0;
}

.amenities-band h3 {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 1.2em;
}

.amenities-columns {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 700px;
  margin-inline: auto;
  columns: 2;
  column-gap: 60px;
}

.amenities-columns li {
  padding: 14px 0;
  border-bottom: 1px solid rgba(72,61,52,0.25);
  font-size: 1rem;
  break-inside: avoid;
}

.amenities-columns li:last-child { border-bottom: none; }

/* Storm quote: dark, staggered photo collage with centered quote */

.storm-quote {
  background: var(--color-deep);
  padding: 120px 0;
}

.storm-photos {
  display: flex;
  gap: 24px;
  margin-bottom: 60px;
}

.storm-photos-bottom {
  margin-top: 60px;
  margin-bottom: 0;
}

.storm-photos img {
  flex: 1;
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 2px;
}

.storm-offset {
  margin-top: 60px;
}

.storm-text {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  color: var(--color-cream);
}

.storm-text p {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  line-height: 1.4;
  margin-bottom: 0.6em;
}

/* Wide gallery carousel */

.gallery-wide { padding: 80px 0; }

.wide-carousel {
  position: relative;
  max-width: 1400px;
}

.wide-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  background: var(--color-cream);
}

.wide-track::-webkit-scrollbar { display: none; }

.wide-slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
  width: 100%;
  height: 78vh;
  object-fit: contain;
}

.wide-arrow-prev,
.wide-arrow-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  border-color: var(--color-cream);
  color: var(--color-cream);
  background: rgba(24, 48, 45, 0.3);
}

.wide-arrow-prev { left: 24px; }
.wide-arrow-next { right: 24px; }

.wide-thumbs {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  justify-content: center;
  padding: 20px 4px 4px;
  scrollbar-width: none;
}

.wide-thumbs::-webkit-scrollbar { display: none; }

.wide-thumb {
  flex: 0 0 auto;
  width: 84px;
  height: 60px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 2px;
  overflow: hidden;
  background: none;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.2s ease, border-color 0.2s ease;
}

.wide-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wide-thumb:hover {
  opacity: 0.85;
}

.wide-thumb.is-active {
  opacity: 1;
  border-color: var(--color-teal);
}

/* Rooted in place: contained text, full-bleed-right photo */

.rooted-in-place {
  background: var(--color-cream);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 60px;
  padding: 80px 0;
}

.rooted-in-place .split-copy {
  padding-right: 24px;
  padding-left: max(24px, calc((100vw - 1200px) / 2 + 24px));
}

.rooted-in-place .split-media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0;
}

/* Before you arrive */

.before-you-arrive .split {
  grid-template-columns: 0.8fr 1fr;
}

.before-you-arrive h2 { font-size: clamp(2rem, 4vw, 2.75rem); }

.rules-list {
  list-style: none;
  margin: 0;
  padding: 0;
  columns: 2;
  column-gap: 40px;
}

.rules-list li {
  padding: 14px 0;
  border-bottom: 1px solid rgba(72,61,52,0.2);
  font-size: 1rem;
  break-inside: avoid;
}

/* Final CTA */

.final-cta {
  background: var(--color-teal);
  color: var(--color-cream);
  text-align: center;
  padding: 100px 0;
}

.final-cta h2 {
  color: var(--color-cream);
  font-size: clamp(2rem, 5vw, 3.25rem);
}

.final-cta p { font-size: 1.1rem; margin-bottom: 1.5em; }

/* Footer */

.site-footer {
  background: var(--color-cream);
  padding: 60px 0 30px;
  text-align: center;
}

.footer-logo { height: 140px; width: auto; margin: 0 auto 20px; }

.footer-contact {
  font-size: 1rem;
  margin-bottom: 20px;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.social-icon img {
  width: 28px;
  height: 28px;
}

.footer-legal {
  font-size: 0.85rem;
  opacity: 0.75;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
}

.brandsmith-credit-logo {
  height: 14px;
  width: auto;
}

/* Mobile sticky booking bar */

.mobile-cta-bar {
  display: none;
}

/* Responsive */

@media (max-width: 900px) {
  .split,
  .before-you-arrive .split {
    grid-template-columns: 1fr;
    padding: 60px 24px;
  }

  .split-media { min-height: 320px; margin-bottom: 40px; }

  .escape-coast {
    grid-template-columns: 1fr;
    padding: 0 0 60px;
  }

  .escape-coast .split-media { margin-bottom: 0; }

  .escape-coast .split-copy {
    padding: 40px 24px 0;
  }

  .rooted-in-place {
    grid-template-columns: 1fr;
    padding: 60px 0 0;
  }

  .rooted-in-place .split-copy {
    padding: 0 24px 40px;
  }

  .stats-grid { grid-template-columns: 1fr; gap: 40px; }

  .amenities-columns { columns: 1; }

  .storm-photos {
    flex-direction: column;
    margin-bottom: 24px;
  }

  .storm-photos-bottom { margin-top: 24px; }

  .storm-photos img { height: 280px; }

  .storm-offset { margin-top: 0; }

  .pod-card { flex: 0 0 320px; }

  .rules-list { columns: 1; }
}

@media (max-width: 700px) {
  .main-nav,
  .header-inner .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  body {
    padding-bottom: 84px;
  }

  .mobile-cta-bar {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 90;
    padding: 14px 20px;
    background: var(--color-cream);
    box-shadow: 0 -4px 16px rgba(24, 48, 45, 0.12);
  }

  .mobile-cta-bar .btn {
    display: block;
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .pod-card {
    flex: 0 0 84%;
    scroll-snap-align: center;
  }

  .header-inner { justify-content: space-between; }

  .pod-carousel {
    flex-wrap: wrap;
    justify-content: center;
  }

  .pod-track {
    order: 1;
    flex-basis: 100%;
    gap: 8%;
    padding-left: 8%;
    padding-right: 8%;
    scroll-padding-inline: 8%;
  }

  .pod-arrow {
    order: 2;
  }

  .gallery-wide { padding: 32px 0; }

  .wide-thumb { width: 60px; height: 44px; }

  .wide-slide {
    height: 45vh;
    object-fit: cover;
  }

  .hero { background-position: left center; }

  .hero-inner {
    padding-left: 28px;
    padding-right: 28px;
  }
}
