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

:root {
  --green-dark: #1e3a2f;
  --green: #2d4a3e;
  --green-light: #3d6b58;
  --green-muted: #5a8a74;
  --gold: #c4a265;
  --gold-light: #d4b87a;
  --gold-hero: #e8d5a8;
  --cream: #faf8f5;
  --cream-dark: #f0ece6;
  --white: #ffffff;
  --text: #2c2c2c;
  --text-light: #6b6b6b;
  --font-body: 'Inter', sans-serif;
  --font-heading: 'Playfair Display', serif;
  --transition: 0.3s ease;
  --max-width: 1200px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

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

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 400; line-height: 1.2; }
h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }

.section-label {
  font-size: 0.75rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 12px;
}

.section-title {
  margin-bottom: 20px;
  color: var(--green-dark);
}

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

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary {
  background: var(--green);
  color: var(--white);
}
.btn-primary:hover { background: var(--green-light); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.5);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--green-dark);
  border-color: var(--white);
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
}
.btn-gold:hover { background: var(--gold-light); }

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition);
  background: transparent;
}

.header.scrolled {
  background: rgba(30, 58, 47, 0.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  transition: var(--transition);
}

.header.scrolled .header-inner { padding: 12px 40px; }

.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--white);
  font-weight: 400;
  letter-spacing: 1px;
}

.logo span { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 400;
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta {
  padding: 10px 24px;
  border: 1px solid var(--gold) !important;
  color: var(--gold) !important;
}
.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--white) !important;
}
.nav-cta::after { display: none !important; }

/* Mobile Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.hero.loaded .hero-bg { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.45) 50%,
    rgba(0, 0, 0, 0.6) 100%
  );
}

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

.hero-label {
  font-size: 0.75rem;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold-hero);
  margin-bottom: 24px;
  font-weight: 400;
}

.hero h1 {
  margin-bottom: 20px;
  font-weight: 400;
}

.hero p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 40px;
  line-height: 1.8;
}

.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== PAGE HERO (shorter, for inner pages) ===== */
.page-hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  overflow: hidden;
}

.page-hero .hero-bg,
.page-hero .hero-overlay {
  position: absolute;
  inset: 0;
}

.page-hero .hero-bg {
  background-size: cover;
}

.page-hero .hero-overlay {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.25) 0%,
    rgba(0, 0, 0, 0.55) 100%
  );
}

.page-hero-content {
  position: relative;
  z-index: 2;
}

.page-hero h1 { margin-bottom: 12px; }
.page-hero p { font-size: 1.1rem; opacity: 0.85; }

/* ===== SECTIONS ===== */
.section {
  padding: 100px 0;
}

.section-green {
  background: var(--green-dark);
  color: var(--white);
}

.section-cream { background: var(--cream); }

/* ===== SPLIT CONTENT (text + image) ===== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.split.reverse .split-text { order: 2; }
.split.reverse .split-image { order: 1; }

.split-image {
  position: relative;
  overflow: hidden;
}

.split-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.split-image::after {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  right: -20px;
  bottom: -20px;
  border: 1px solid var(--gold);
  z-index: -1;
}

.split-text .section-subtitle { margin-bottom: 24px; }

/* ===== TESTIMONIAL ===== */
.testimonial-section {
  padding: 80px 0;
  text-align: center;
}

.testimonial-quote {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 2.5vw, 1.6rem);
  font-style: italic;
  max-width: 700px;
  margin: 0 auto 24px;
  line-height: 1.6;
  color: var(--cream);
}

.testimonial-author {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ===== FEATURES GRID ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.feature-card {
  text-align: center;
  padding: 40px 24px;
}

.feature-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 20px;
  color: var(--gold);
}

.feature-card h4 {
  margin-bottom: 12px;
  color: var(--green-dark);
}

.feature-card p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* ===== PHOTO GALLERY (Justified) ===== */
.gallery-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  height: 280px;
  flex-grow: 1;
  cursor: pointer;
}

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

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

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: var(--transition);
}

.gallery-item:hover::after { background: rgba(0, 0, 0, 0.15); }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.92);
  align-items: center;
  justify-content: center;
}
.lightbox.active { display: flex; }
.lightbox img {
  max-width: 90%;
  max-height: 85vh;
  object-fit: contain;
}
.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font-body);
}

/* ===== PACKAGES ===== */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}

.package-card {
  background: var(--white);
  border: 1px solid #e8e4de;
  padding: 48px 32px;
  text-align: center;
  position: relative;
  transition: var(--transition);
}

.package-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.package-card.featured {
  border-color: var(--gold);
  box-shadow: 0 10px 40px rgba(0,0,0,0.06);
}

.package-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--white);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 20px;
}

.package-card h3 {
  color: var(--green-dark);
  margin-bottom: 8px;
}

.package-price {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--green);
  margin-bottom: 24px;
}

.package-price span {
  font-size: 1rem;
  color: var(--text-light);
}

.package-features {
  text-align: left;
  margin-bottom: 32px;
}

.package-features li {
  padding: 8px 0;
  border-bottom: 1px solid #f0ece6;
  font-size: 0.9rem;
  color: var(--text-light);
  padding-left: 20px;
  position: relative;
}

.package-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  transform: translateY(-50%);
}

/* ===== ADD-ONS ===== */
.addons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.addon-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background: var(--white);
  border: 1px solid #e8e4de;
  font-size: 0.9rem;
}

.addon-price {
  color: var(--green);
  font-weight: 500;
  white-space: nowrap;
  margin-left: 16px;
}

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 40px;
}

.contact-info-block {
  margin-bottom: 32px;
}

.contact-info-block h4 {
  color: var(--green-dark);
  margin-bottom: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.contact-info-block p,
.contact-info-block a {
  color: var(--text-light);
  font-size: 1.05rem;
}

.contact-info-block a:hover { color: var(--green); }

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #e0dcd6;
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 16px;
  transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--green);
}

.contact-form textarea { min-height: 140px; resize: vertical; }

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  padding: 80px 0;
  text-align: center;
  background: var(--green-dark);
  color: var(--white);
}

.cta-banner h2 { margin-bottom: 16px; }
.cta-banner p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 32px;
  font-size: 1.05rem;
}

/* ===== FOOTER ===== */
.footer {
  background: #1a2e25;
  color: rgba(255,255,255,0.6);
  padding: 60px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  margin-top: 16px;
  font-size: 0.9rem;
  line-height: 1.8;
}

.footer h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-links a {
  display: block;
  padding: 6px 0;
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-links a:hover { color: var(--gold); }

.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  font-size: 0.9rem;
}

.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
}

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .split { gap: 40px; }
  .packages-grid { grid-template-columns: 1fr; max-width: 500px; margin-left: auto; margin-right: auto; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 360px;
    height: 100vh;
    background: var(--green-dark);
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    transition: right 0.4s ease;
    padding: 40px;
  }

  .nav-links.open { right: 0; }

  .nav-links a { font-size: 1rem; }

  .header-inner { padding: 16px 20px; }

  .split {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .split.reverse .split-text { order: 1; }
  .split.reverse .split-image { order: 2; }
  .split-image::after { display: none; }
  .split-image img { height: 350px; }

  .features-grid { grid-template-columns: 1fr; gap: 16px; margin-top: 32px; }
  .feature-card { padding: 24px 16px; }
  .gallery-item { height: 220px; }

  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .addons-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  .section { padding: 48px 0; }
  .testimonial-section { padding: 48px 0; }
  .cta-banner { padding: 48px 0; }
  .hero { min-height: 500px; }
  .page-hero { min-height: 400px; }
  .split-image img { height: 300px; }
}

@media (max-width: 480px) {
  .hero-buttons { flex-direction: column; align-items: center; }
  .contact-form .form-row { grid-template-columns: 1fr; }
  .gallery-item { height: 180px; }
}
