/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --sand: #D4C5A9;
  --sand-light: #E8DDCB;
  --sand-dark: #B8A88A;
  --sage: #7A8B63;
  --sage-light: #9AAB83;
  --sage-dark: #5D6E4A;
  --wood: #8B6F47;
  --wood-dark: #6B4423;
  --wood-light: #A68A62;
  --cream: #FAF7F2;
  --cream-dark: #F0E8D8;
  --warm-dark: #2C2416;
  --warm-overlay: rgba(44, 36, 22, 0.55);
  --warm-overlay-heavy: rgba(44, 36, 22, 0.78);
  --text: #3A3022;
  --text-light: #6A5E4A;
  --white: #FFFFFF;
  --shadow: rgba(44, 36, 22, 0.12);
  --shadow-strong: rgba(44, 36, 22, 0.25);
  --font-serif: 'Georgia', 'Times New Roman', serif;
  --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --transition: 0.3s ease;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--sage);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--sage-dark);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  color: var(--wood-dark);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  margin-bottom: 2.5rem;
  max-width: 640px;
}

.text-center {
  text-align: center;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
}

.btn-primary {
  background: var(--sage);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--sage-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(122, 139, 99, 0.4);
}

.btn-secondary {
  background: var(--white);
  color: var(--sage);
  border: 2px solid var(--sage);
}

.btn-secondary:hover {
  background: var(--sage);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-hero {
  background: var(--white);
  color: var(--warm-dark);
  font-size: 1.1rem;
  padding: 16px 40px;
}

.btn-hero:hover {
  background: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* ===== STICKY NAV ===== */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: all var(--transition);
  padding: 0;
}

.site-nav.scrolled {
  background: var(--cream);
  box-shadow: 0 2px 20px var(--shadow);
}

.site-nav.scrolled .nav-link {
  color: var(--text);
}

.site-nav.scrolled .nav-brand {
  color: var(--wood-dark);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-brand {
  font-family: 'Playfair Display', var(--font-serif);
  font-size: 1.15rem;
  color: var(--white);
  font-weight: 600;
  line-height: 1.3;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.02em;
}

.brand-icon {
  font-size: 1.2rem;
  line-height: 1;
}

.site-nav.scrolled .nav-brand {
  font-size: 1rem;
}

.nav-logo {
  height: 130px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  transition: filter var(--transition);
}

.site-nav.scrolled .nav-logo {
  height: 90px;
}

.site-nav.scrolled .nav-logo {
  filter: none;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 24px;
  align-items: center;
}

.nav-link {
  color: var(--cream);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: color var(--transition);
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.nav-link:hover {
  color: var(--sand);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
  transition: all var(--transition);
  border-radius: 1px;
}

.scrolled .nav-toggle span {
  background: var(--text);
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 20px 24px;
    gap: 16px;
    box-shadow: 0 4px 20px var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-link {
    color: var(--text);
    text-shadow: none;
    font-size: 0.9rem;
  }

  .nav-brand {
    font-size: 1rem;
  }
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  max-height: 900px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-poster {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(44, 36, 22, 0.7) 0%,
    rgba(44, 36, 22, 0.45) 50%,
    rgba(44, 36, 22, 0.6) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 800px;
}

.hero-badge {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--sand);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 20px;
  border: 1px solid rgba(212, 197, 169, 0.4);
  padding: 6px 16px;
  border-radius: 20px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  color: var(--white);
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--sand-light);
  line-height: 1.6;
  margin-bottom: 35px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-highlights {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 35px;
  flex-wrap: wrap;
}

.hero-highlight {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--cream);
  font-size: 0.9rem;
}

.hero-highlight .icon {
  font-size: 1.2rem;
}

/* Hero Reviews Overlay */
.hero-reviews {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  background: rgba(44, 36, 22, 0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 16px 24px;
}

.hero-reviews-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-review-stars {
  color: #E8B84B;
  font-size: 1rem;
  letter-spacing: 2px;
  flex-shrink: 0;
}

.hero-review-text {
  color: var(--cream);
  font-size: 0.95rem;
  font-style: italic;
  line-height: 1.5;
  flex: 1;
  min-height: 1.5em;
}

.hero-review-author {
  color: var(--sand);
  font-size: 0.8rem;
  flex-shrink: 0;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-highlights {
    gap: 16px;
  }

  .hero-review-text {
    font-size: 0.85rem;
  }

  .hero {
    min-height: 500px;
  }

  .hero-reviews-inner {
    flex-wrap: wrap;
  }

  .hero-review-author {
    white-space: normal;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.8rem;
  }

  .hero-highlight {
    font-size: 0.8rem;
  }

  .btn-hero {
    padding: 14px 28px;
    font-size: 1rem;
  }
}

/* ===== THE EXPERIENCE ===== */
.experience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.experience-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.experience-images img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.4s ease;
}

.experience-images img:hover {
  transform: scale(1.03);
}

.experience-images .tall {
  grid-row: span 2;
  height: 100%;
}

.experience-text h2 {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--wood-dark);
  margin-bottom: 20px;
}

.experience-text p {
  color: var(--text-light);
  margin-bottom: 16px;
  font-size: 1.05rem;
}

.experience-text .feature-list {
  list-style: none;
  margin-top: 24px;
}

.experience-text .feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  color: var(--text);
}

.experience-text .feature-list li .check {
  color: var(--sage);
  font-weight: bold;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .experience-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .experience-images {
    order: -1;
  }

  .experience-images img {
    height: 160px;
  }

  .experience-text h2 {
    font-size: 1.6rem;
  }
}

/* ===== WINTER IN JERVIS BAY ===== */
.section-alt {
  background: var(--cream-dark);
}

.winter-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.winter-text h2 {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--wood-dark);
  margin-bottom: 20px;
}

.winter-text p {
  color: var(--text-light);
  margin-bottom: 16px;
  font-size: 1.05rem;
}

.winter-attractions {
  list-style: none;
  margin-top: 20px;
}

.winter-attractions li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(139, 111, 71, 0.15);
  color: var(--text);
}

.winter-attractions li:last-child {
  border-bottom: none;
}

.winter-attractions li .emoji {
  font-size: 1.4rem;
  flex-shrink: 0;
}

.winter-image {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

.winter-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 8px;
}

@media (max-width: 768px) {
  .winter-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .winter-image {
    order: -1;
  }

  .winter-image img {
    height: 280px;
  }

  .winter-text h2 {
    font-size: 1.6rem;
  }
}

/* ===== AMENITIES ===== */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  margin-top: 20px;
}

.amenity-card {
  background: var(--white);
  border-radius: 12px;
  padding: 30px 16px;
  text-align: center;
  transition: all var(--transition);
  box-shadow: 0 2px 10px var(--shadow);
}

.amenity-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px var(--shadow-strong);
}

.amenity-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
  display: block;
}

.amenity-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}

@media (max-width: 768px) {
  .amenities-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .amenity-card {
    padding: 20px 12px;
  }

  .amenity-icon {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.gallery-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
}

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

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay-icon {
  opacity: 1;
}

.gallery-overlay-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2.5rem;
  color: var(--white);
  opacity: 0;
  transition: opacity var(--transition);
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
  pointer-events: none;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 2000;
  justify-content: center;
  align-items: center;
  padding: 40px;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2.5rem;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity var(--transition);
}

.lightbox-close:hover {
  opacity: 1;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--white);
  font-size: 2.5rem;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity var(--transition);
  padding: 16px;
}

.lightbox-nav:hover {
  opacity: 1;
}

.lightbox-prev {
  left: 16px;
}

.lightbox-next {
  right: 16px;
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lightbox {
    padding: 16px;
  }

  .lightbox-close {
    top: 12px;
    right: 16px;
    font-size: 2rem;
  }
}

/* ===== LOCAL GUIDE ===== */
.guide-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.guide-list {
  display: grid;
  gap: 16px;
}

.guide-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 1px 6px var(--shadow);
  transition: transform var(--transition);
}

.guide-item:hover {
  transform: translateX(4px);
}

.guide-item .icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  width: 44px;
  text-align: center;
}

.guide-item-content h4 {
  font-size: 1rem;
  color: var(--wood-dark);
  margin-bottom: 4px;
}

.guide-item-content p {
  font-size: 0.9rem;
  color: var(--text-light);
}

.guide-map {
  border-radius: 8px;
  overflow: hidden;
  min-height: 300px;
  background: var(--sand-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  color: var(--wood);
  padding: 40px;
  text-align: center;
}

.guide-map-icon {
  font-size: 3rem;
}

.guide-map p {
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .guide-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* ===== REVIEWS ===== */
.reviews-carousel {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  overflow: hidden;
  min-height: 220px;
}

.review-card {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.5s ease;
  padding: 30px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 4px 20px var(--shadow);
  text-align: center;
}

.review-card.active {
  opacity: 1;
  transform: translateX(0);
  position: relative;
}

.review-stars {
  color: #E8B84B;
  font-size: 1.4rem;
  letter-spacing: 3px;
  margin-bottom: 16px;
}

.review-text {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 16px;
}

.review-author {
  font-weight: 600;
  color: var(--wood);
  font-style: normal;
}

.review-date {
  color: var(--text-light);
  font-size: 0.85rem;
}

.reviews-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.review-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--sand-dark);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}

.review-dot.active {
  background: var(--sage);
  width: 30px;
  border-radius: 5px;
}

/* ===== CTA / FOOTER ===== */
.cta-section {
  background: linear-gradient(135deg, var(--warm-dark) 0%, #3A3022 100%);
  color: var(--white);
  text-align: center;
  padding: 80px 0;
}

.cta-title {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.cta-text {
  color: var(--sand-light);
  font-size: 1.1rem;
  margin-bottom: 30px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.cta-form {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 500px;
  margin: 0 auto;
}

.cta-form input[type="email"] {
  flex: 1;
  min-width: 220px;
  padding: 14px 20px;
  border: 1px solid rgba(212, 197, 169, 0.3);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 1rem;
  outline: none;
  transition: border-color var(--transition);
}

.cta-form input[type="email"]::placeholder {
  color: var(--sand-dark);
}

.cta-form input[type="email"]:focus {
  border-color: var(--sage);
}

.cta-form .btn {
  flex-shrink: 0;
}

.site-footer {
  background: var(--warm-dark);
  border-top: 1px solid rgba(212, 197, 169, 0.1);
  padding: 32px 0;
  text-align: center;
}

.footer-text {
  color: var(--sand-dark);
  font-size: 0.85rem;
  line-height: 1.8;
}

.footer-text a {
  color: var(--sand);
}

.footer-text a:hover {
  color: var(--white);
}

@media (max-width: 768px) {
  .cta-title {
    font-size: 1.8rem;
  }

  .cta-form {
    flex-direction: column;
    align-items: center;
  }

  .cta-form input[type="email"] {
    width: 100%;
    min-width: unset;
  }
}

/* ===== DIVIDER ===== */
.divider {
  width: 60px;
  height: 3px;
  background: var(--sage);
  margin: 0 auto 20px;
  border-radius: 2px;
}

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== SKIP LINK ===== */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--sage);
  color: var(--white);
  padding: 8px 16px;
  z-index: 10000;
  transition: top 0.3s;
}

.skip-link:focus {
  top: 0;
}
