:root {
  --green: #1f9c54;
  --green-dark: #167a3f;
  --green-light: #12251a;
  --gold: #c9a227;
  --cream: #0a0a0a;
  --charcoal: #f5f5f0;
  --gray: #a9ada3;
  --card-bg: #161616;
}

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

html { scroll-behavior: smooth; }

/* ACCESSIBILITY: skip link + visible focus states */
.skip-link {
  position: absolute;
  top: -60px;
  left: 12px;
  background: var(--green);
  color: #fff;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  z-index: 1000;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 12px; }

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 2px;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

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

.logo {
  font-family: 'Dancing Script', cursive;
  font-weight: 700;
  color: var(--green);
  font-size: 1.9rem;
  line-height: 1;
}

.logo-img {
  height: 150px;
  width: auto;
  display: block;
  transition: height 0.3s ease;
  filter: brightness(0) invert(1);
}

header.scrolled .logo-img { height: 64px; }

footer .logo-img { height: 132px; }

/* NAV */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  transition: padding 0.3s ease;
}

header.scrolled nav { padding: 6px 0; }

.nav-links {
  display: flex;
  gap: 32px;
  font-size: 0.95rem;
  font-weight: 500;
}

.nav-links a {
  position: relative;
  padding: 4px 0;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--green); }

.btn {
  display: inline-block;
  background: var(--green);
  color: #fff;
  padding: 12px 28px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.2s, transform 0.2s;
  border: none;
  cursor: pointer;
}

.btn:hover { background: var(--green-dark); transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green);
  padding: 10px 26px;
}

.btn-outline:hover { background: var(--green); color: #fff; }

.nav-cta { display: none; }
@media (min-width: 720px) { .nav-cta { display: inline-block; } }

.menu-toggle {
  display: block;
  font-size: 1.6rem;
  background: none;
  border: none;
  color: var(--green);
  cursor: pointer;
  padding: 10px;
  min-width: 44px;
  min-height: 44px;
}
@media (min-width: 720px) { .menu-toggle { display: none; } }

.nav-links {
  display: none;
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  background: var(--cream);
  flex-direction: column;
  padding: 20px 24px;
  gap: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.nav-links.open { display: flex; }
@media (min-width: 720px) {
  .nav-links { display: flex; position: static; flex-direction: row; padding: 0; border: none; background: none; }
}

/* HERO (legacy, unused but kept for reference) */
.hero {
  padding: 200px 0 100px;
  background:
    radial-gradient(circle at 20% 20%, rgba(31,156,84,0.10), transparent 40%),
    radial-gradient(circle at 80% 60%, rgba(201,162,39,0.10), transparent 45%),
    var(--cream);
  text-align: center;
}

.hero .eyebrow {
  display: inline-block;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 600;
  color: var(--charcoal);
  max-width: 780px;
  margin: 0 auto 20px;
}

.hero h1 span { color: var(--green); font-family: 'Qwitcher Grypen', cursive; font-weight: 700; font-size: 1.4em; }

.hero p {
  max-width: 560px;
  margin: 0 auto 36px;
  color: var(--gray);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.hero-reel {
  max-width: 900px;
  margin: 0 auto;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.hero-reel video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mute-btn {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s;
  z-index: 2;
}

.mute-btn:hover { transform: scale(1.08); }

.mute-btn svg {
  width: 20px;
  height: 20px;
}

.play-btn {
  width: 78px; height: 78px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: transform 0.2s;
  z-index: 2;
}

.play-btn:hover { transform: scale(1.08); }

.play-btn svg { width: 26px; height: 26px; fill: var(--green); margin-left: 4px; }

.hero-reel-label {
  position: absolute;
  bottom: 20px;
  left: 24px;
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
  z-index: 2;
}

/* FULL-BLEED VIDEO HERO */
.video-hero {
  position: relative;
  width: 100%;
  height: calc(100vh - 178px);
  min-height: 460px;
  margin-top: 178px;
  overflow: hidden;
  background: #000;
}

.video-hero video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  visibility: hidden;
}

.video-hero video.ready { visibility: visible; }

.video-hero video::-webkit-media-controls,
.video-hero video::-webkit-media-controls-enclosure,
.video-hero video::-webkit-media-controls-panel,
.video-hero video::-webkit-media-controls-overlay-play-button,
.video-hero video::-webkit-media-controls-start-playback-button {
  display: none !important;
  -webkit-appearance: none !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.video-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.25) 45%, rgba(0,0,0,0.6) 100%);
  pointer-events: none;
}

.hero-play-toggle {
  position: absolute;
  bottom: 24px;
  right: 24px;
  z-index: 3;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(0,0,0,0.55);
  border: 1.5px solid rgba(255,255,255,0.7);
  color: #fff;
  font-size: 1.1rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  backdrop-filter: blur(4px);
}
.hero-play-toggle:hover { background: rgba(0,0,0,0.75); transform: scale(1.06); }

@media (max-width: 600px) {
  .hero-play-toggle { bottom: 18px; right: 18px; width: 42px; height: 42px; font-size: 1rem; }
}

.video-hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 24px;
}

.video-hero-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
  font-size: clamp(2.6rem, 8vw, 6rem);
  line-height: 1.05;
  margin-bottom: 18px;
  text-shadow: 0 4px 24px rgba(0,0,0,0.5);
}

.video-hero-sub {
  color: rgba(255,255,255,0.92);
  max-width: 560px;
  margin: 0 auto 32px;
  font-size: 1.05rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  padding: 10px 26px;
}

.btn-outline-white:hover { background: #fff; color: var(--green); }

@media (max-width: 600px) {
  .video-hero {
    margin-top: 111px;
    height: calc(100vh - 111px);
    min-height: 380px;
  }
}

/* TAGLINE BANNER */
.tagline-banner {
  background: var(--green);
  padding: 32px 0;
}

.tagline-banner p {
  text-align: center;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: clamp(1.2rem, 2.6vw, 1.6rem);
  line-height: 1.3;
}

/* SECTION HEADINGS */
.section { padding: 100px 0; }
.section-alt { background: var(--green-light); }

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.section-head .eyebrow {
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.8rem;
  display: block;
  margin-bottom: 12px;
}

.section-head h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 600;
  margin-bottom: 14px;
}

.section-head p { color: var(--gray); }

/* ABOUT */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 860px) { .about-grid { grid-template-columns: 1fr 1fr; } }

.about-visual {
  aspect-ratio: 4/3;
  border-radius: 18px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.about-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  font-weight: 600;
  margin-bottom: 18px;
}

.about-text p { color: var(--gray); margin-bottom: 16px; }

.stat-row {
  display: flex;
  gap: 36px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.stat h3 { color: var(--green); font-size: 1.8rem; font-weight: 700; }
.stat span { color: var(--gray); font-size: 0.85rem; }

/* PACKAGES */
.packages-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  max-width: 780px;
  margin: 0 auto;
}
@media (min-width: 640px) { .packages-grid { grid-template-columns: repeat(2, 1fr); } }

.package-subtitle {
  color: var(--gray);
  font-size: 0.85rem;
  margin-top: -4px;
}

.special-request {
  max-width: 700px;
  margin: 40px auto 0;
  text-align: center;
  background: var(--card-bg);
  border: 1px dashed rgba(31,156,84,0.4);
  border-radius: 14px;
  padding: 20px 26px;
  color: var(--gray);
  font-size: 0.92rem;
}

.special-request a {
  color: var(--green);
  font-weight: 600;
  text-decoration: underline;
}

.package-card {
  background: var(--card-bg);
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.1);
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
}

.package-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0,0,0,0.5); }

.package-card.featured {
  border: 2px solid var(--green);
  transform: scale(1.03);
}

.package-card.featured:hover {
  transform: scale(1.03) translateY(-6px);
}

.featured-tag {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 16px;
  border-radius: 20px;
}

.package-card h3 { font-size: 1.3rem; margin-bottom: 8px; }
.package-card .price {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--green);
  margin: 14px 0;
}
.price-suffix { font-size: 0.95rem; font-weight: 400; color: var(--gray); }

.price-amount.pending {
  display: inline-block;
  font-size: 1rem;
  font-weight: 500;
  color: var(--gray);
}

.price-amount.pending ~ .price-suffix { display: none; }

.package-card ul { text-align: left; margin: 24px 0; }
.package-card li {
  padding: 8px 0;
  border-bottom: 1px dashed rgba(255,255,255,0.12);
  font-size: 0.92rem;
  color: var(--charcoal);
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.package-card li::before { content: "✓"; color: var(--green); font-weight: 700; }

.price-note {
  text-align: center;
  color: var(--gray);
  font-size: 0.85rem;
  margin-top: 30px;
}

/* REGION SELECTOR */
.region-select {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.region-label {
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 14px;
}

.region-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.region-btn {
  background: var(--card-bg);
  color: var(--green);
  border: 2px solid var(--green);
  padding: 10px 22px;
  border-radius: 40px;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.region-btn:hover { background: var(--green-light); }

.region-btn.active {
  background: var(--green);
  color: #fff;
}

.region-note {
  color: var(--gray);
  font-size: 0.9rem;
}

/* GALLERY */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 640px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }

.gallery-item {
  aspect-ratio: 16/10;
  border-radius: 14px;
  background: linear-gradient(150deg, #1c8a49, var(--green-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item .play-btn { width: 54px; height: 54px; }
.gallery-item .play-btn svg { width: 18px; height: 18px; }

.gallery-item span {
  position: absolute;
  bottom: 14px; left: 16px;
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
}

.gallery-note {
  text-align: center;
  color: var(--gray);
  margin-top: 30px;
  font-size: 0.9rem;
}

/* TESTIMONIALS */
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 760px) { .testimonial-grid { grid-template-columns: repeat(3, 1fr); } }

.testimonial-card {
  background: var(--card-bg);
  border-radius: 14px;
  padding: 30px;
  border: 1px solid rgba(255,255,255,0.1);
}

.stars { color: var(--gold); margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-card p { color: var(--charcoal); font-size: 0.95rem; margin-bottom: 18px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: 0.85rem;
}
.testimonial-author strong { display: block; font-size: 0.9rem; }
.testimonial-author span { color: var(--gray); font-size: 0.8rem; }

/* CONTACT */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 900px) { .contact-wrap { grid-template-columns: 0.9fr 1.1fr; } }

.contact-info h2 { font-size: clamp(1.8rem, 3vw, 2.2rem); font-weight: 600; margin-bottom: 16px; }
.contact-info p { color: var(--gray); margin-bottom: 28px; }

.contact-detail {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.contact-detail .icon {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}
.contact-detail strong { display: block; font-size: 0.95rem; }
.contact-detail span, .contact-detail a { color: var(--gray); font-size: 0.9rem; }
.contact-detail a:hover { color: var(--green); }

.social-row { display: flex; gap: 12px; margin-top: 28px; }
.social-row a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  font-weight: 600;
  transition: background 0.2s, color 0.2s;
}
.social-row a:hover { background: var(--green-dark); }

form {
  background: var(--card-bg);
  border-radius: 18px;
  padding: 36px;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.form-row { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 520px) { .form-row.two { grid-template-columns: 1fr 1fr; } }

.field { margin-bottom: 18px; }
.field label { display: block; font-size: 0.85rem; font-weight: 500; margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.18);
  font-family: inherit;
  font-size: 0.92rem;
  background: var(--cream);
  color: var(--charcoal);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(31,156,84,0.35);
}
.field textarea { resize: vertical; min-height: 110px; }

form .btn { width: 100%; text-align: center; margin-top: 4px; }

.form-success {
  background: var(--card-bg);
  border-radius: 18px;
  padding: 48px 36px;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  text-align: center;
}

.form-success-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0 auto 18px;
}

.form-success h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.form-success p { color: var(--gray); }

/* FOOTER */
footer {
  background: #111111;
  color: rgba(255,255,255,0.7);
  padding: 50px 0 24px;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 24px;
}

.footer-top .logo { color: #fff; }

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-tagline {
  font-style: italic;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
}
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; font-size: 0.9rem; }
.footer-links a:hover { color: #fff; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.8rem;
}

/* PACKAGE DETAIL PAGE */
.detail-hero {
  padding: 210px 0 60px;
  text-align: center;
  background:
    radial-gradient(circle at 20% 20%, rgba(31,156,84,0.12), transparent 40%),
    radial-gradient(circle at 80% 60%, rgba(201,162,39,0.10), transparent 45%),
    var(--cream);
}

.back-link {
  display: inline-block;
  color: var(--green);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 24px;
}
.back-link:hover { text-decoration: underline; }

.detail-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 600;
  margin-bottom: 10px;
}

.detail-hero .package-subtitle {
  font-size: 1rem;
  margin-bottom: 20px;
}

.detail-hero p.detail-intro {
  max-width: 640px;
  margin: 0 auto;
  color: var(--gray);
  font-size: 1.05rem;
}

.included-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 700px) { .included-grid { grid-template-columns: repeat(2, 1fr); } }

.included-item {
  background: var(--card-bg);
  border-radius: 14px;
  padding: 28px;
  border: 1px solid rgba(255,255,255,0.1);
}

.included-item h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.included-item h3::before {
  content: "✓";
  color: #fff;
  background: var(--green);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.included-item p { color: var(--gray); font-size: 0.92rem; }

.how-it-works {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  counter-reset: step;
}
@media (min-width: 700px) { .how-it-works { grid-template-columns: repeat(4, 1fr); } }

.step {
  text-align: center;
  counter-increment: step;
}

.step::before {
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-weight: 700;
  margin: 0 auto 14px;
}

.step h3 { font-size: 0.98rem; font-weight: 600; margin-bottom: 6px; }
.step p { color: var(--gray); font-size: 0.88rem; }

.reserve-box {
  max-width: 560px;
  margin: 0 auto;
  background: var(--card-bg);
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  padding: 40px;
  text-align: center;
}

.reserve-box .price {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--green);
  margin: 10px 0 6px;
}

.reserve-box .price-suffix { font-size: 1rem; }

.deposit-note {
  color: var(--gray);
  font-size: 0.85rem;
  margin-top: 14px;
}

.reserve-box .btn {
  width: 100%;
  text-align: center;
  margin-top: 20px;
  font-size: 1.05rem;
  padding: 14px 28px;
}

.btn.disabled {
  opacity: 0.5;
  pointer-events: none;
  cursor: default;
}

#payment-element {
  background: var(--cream);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 10px;
  padding: 18px;
}

.payment-message {
  color: var(--gray);
  font-size: 0.88rem;
  margin-top: 12px;
  min-height: 1em;
}

.payment-message.error {
  color: #ff6b6b;
}

.charge-confirm {
  text-align: center;
  color: var(--charcoal);
  font-size: 0.95rem;
  margin-top: 16px;
}

.charge-confirm strong {
  color: var(--green);
  font-size: 1.1rem;
}

@media (max-width: 600px) {
  .section { padding: 70px 0; }
  .hero { padding: 180px 0 70px; }
  .logo-img { height: 83px; }
  .detail-hero { padding: 190px 0 50px; }
}

@media (max-width: 600px) {
  header.scrolled .logo-img { height: 44px; }
}

/* ABOUT US PAGE */
.about-story {
  max-width: 720px;
  margin: 0 auto;
  color: var(--gray);
  font-size: 1.05rem;
  text-align: left;
}
.about-story p { margin-bottom: 16px; }
.about-story p:last-child { margin-bottom: 0; }

.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  max-width: 860px;
  margin: 0 auto;
}
@media (min-width: 640px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }

.team-photo {
  aspect-ratio: 4/3;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* MID-PAGE PHOTO BANNER */
.photo-banner {
  position: relative;
  height: 320px;
  overflow: hidden;
}

.photo-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.5) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 24px;
}

.photo-banner-overlay p {
  color: #fff;
  font-weight: 600;
  font-size: clamp(1.3rem, 3vw, 2rem);
  max-width: 720px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.6);
}

@media (max-width: 600px) {
  .photo-banner { height: 220px; }
}

/* PAGE IMAGE HERO (packages / about-us headers) */
.page-hero {
  position: relative;
  width: 100%;
  height: 50vh;
  min-height: 360px;
  max-height: 520px;
  margin-top: 178px;
  overflow: hidden;
  background: #000;
}

.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.page-hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 24px;
}

.page-hero-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: #fff;
  font-size: clamp(2.2rem, 6vw, 4rem);
  line-height: 1.1;
  margin-bottom: 14px;
  text-shadow: 0 4px 24px rgba(0,0,0,0.5);
}

.page-hero-sub {
  color: rgba(255,255,255,0.92);
  max-width: 560px;
  margin: 0 auto;
  font-size: 1.05rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

@media (max-width: 600px) {
  .page-hero {
    margin-top: 111px;
    height: 42vh;
    min-height: 280px;
  }
}

/* ANCHOR OFFSET so the fixed header doesn't cover jump targets on load */
#top, #about, #packages, #contact, #reserve {
  scroll-margin-top: 188px;
}

@media (max-width: 600px) {
  #top, #about, #packages, #contact, #reserve {
    scroll-margin-top: 121px;
  }
}
