﻿@layer base {
  html {
    scroll-behavior: smooth;
    overflow-x: hidden;
  }
  body {
    background-color: #fff;
    overflow-x: hidden;
    width: 100%;
  }
  *, *::before, *::after {
    box-sizing: border-box;
  }
}

img, svg, video {
  max-width: 100%;
}

#site-header {
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(14px);
}
#site-header.scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 6px 18px rgba(16, 24, 40, 0.08);
}

.site-nav {
  min-width: 0;
}
.brand-mark {
  min-width: 0;
  color: #12382b;
}
.logo-badge {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, #176b4d 0%, #8a5a2b 100%);
  box-shadow: 0 12px 24px rgba(23, 107, 77, 0.22);
}
.brand-copy {
  min-width: 0;
  display: block;
}
.brand-title {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.1;
  white-space: nowrap;
}
.brand-subtitle {
  display: block;
  color: rgba(23, 107, 77, 0.82);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.35;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-link {
  color: rgba(0, 0, 0, 0.72);
  font-weight: 600;
  font-size: 0.92rem;
  white-space: nowrap;
}
.nav-link:hover {
  color: #176b4d;
}
.nav-toggle {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: #12382b;
  background: rgba(23, 107, 77, 0.08);
}

.btn-primary,
.btn-light,
.btn-earth,
.btn-small {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 8px;
  font-weight: 700;
  transition: transform 0.2s ease, filter 0.2s ease;
  white-space: normal;
  max-width: 100%;
}
.btn-primary {
  background: #176b4d;
  color: #fff;
  padding: 0.75rem 1.1rem;
  box-shadow: 0 12px 26px rgba(23, 107, 77, 0.25);
}
.btn-light {
  background: rgba(255, 255, 255, 0.88);
  color: #1f2937;
  padding: 0.75rem 1.1rem;
}
.btn-earth {
  background: #8a5a2b;
  color: #fff;
  padding: 0.75rem 1.1rem;
  flex: 0 0 auto;
}
.btn-small {
  background: #176b4d;
  color: #fff;
  padding: 0.65rem 0.95rem;
  min-height: 40px;
}
.btn-primary:hover,
.btn-light:hover,
.btn-earth:hover,
.btn-small:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
}

.hero-section {
  padding-top: 86px;
  background-image: url('https://images.unsplash.com/photo-1549880338-65ddcdfd017b?q=80&w=1800&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
}
.eyebrow {
  color: #f3e8d1;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}
.section-heading {
  gap: 1rem;
  min-width: 0;
}
.section-note {
  text-align: right;
  max-width: 360px;
}

.card,
.package-card,
.testimonial {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}
.card {
  background: white;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.13);
}
.card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.package-card {
  background: #fff;
  padding: 1.5rem;
}
.package-card.featured {
  border: 2px solid #176b4d;
}
.package-head,
.price-row {
  gap: 0.75rem;
  min-width: 0;
}
.package-head h3,
.price-row div {
  min-width: 0;
}
.tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-height: 28px;
  border-radius: 999px;
  padding: 0.2rem 0.7rem;
  font-size: 0.78rem;
  font-weight: 700;
}

.swiper-container {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}
.swiper-wrapper {
  min-width: 0;
}
.gallery-img {
  width: 100%;
  height: 16rem;
  object-fit: cover;
  cursor: pointer;
  border-radius: 8px;
  display: block;
}
.testimonial {
  background: #f3e8d1;
  padding: 1.5rem;
}

#lightbox {
  display: none;
}
#lightbox.show {
  display: flex;
}

.cta-section {
  background-image: url('https://images.unsplash.com/photo-1500534314209-a25ddb2bd429?q=80&w=1800&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  min-height: 240px;
}
.cta-content {
  min-width: 0;
}
.social-links {
  flex-wrap: wrap;
}

@media (max-width: 767px) {
  .brand-title {
    font-size: 0.96rem;
  }
  .brand-subtitle {
    font-size: 0.58rem;
    letter-spacing: 0.14em;
  }
  .logo-badge {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }
  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }
  .section-note {
    text-align: left;
    max-width: 100%;
  }
  .package-head,
  .price-row {
    align-items: flex-start;
    flex-direction: column;
  }
  .price-row .btn-small {
    width: 100%;
  }
  .cta-content .btn-earth {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .site-nav {
    padding-left: 0.9rem;
    padding-right: 0.9rem;
  }
  .brand-mark {
    gap: 0.55rem;
  }
  .brand-title {
    font-size: 0.88rem;
  }
  .brand-subtitle {
    display: none;
  }
  .logo-badge {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }
  .card-img {
    height: 180px;
  }
  .gallery-img {
    height: 13rem;
  }
}
