@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;1,400;1,700&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── Variables ── */
:root {
  --sand:          #F5E0C0;   /* warm sandy tan — hero & section bg */
  --sand-light:    #FAF2E6;   /* lighter sand for alternating sections */
  --brown:         #7B3B1C;   /* proper brand brown — nav, stats, why-us */
  --brown-deep:    #4A2010;   /* footer */
  --caramel:       #C08030;   /* accent only — dividers, icons */
  --white:         #FFFFFF;
  --text:          #2E1508;   /* main body text */
  --text-mid:      #5A3020;
  --text-muted:    #8B6040;
  --border:        #D8BFA0;
}

/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.7;
  color: var(--text);
  background: var(--sand-light);
}

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

/* ── Section Headers ── */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}

.section-header.light h2 {
  color: var(--white);
}

.section-subtitle {
  margin-top: 0.65rem;
  font-size: 0.97rem;
  color: var(--text-muted);
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.75;
}

.section-header.light .section-subtitle {
  color: rgba(255, 255, 255, 0.65);
}

.section-divider {
  width: 36px;
  height: 2px;
  background: var(--caramel);
  border-radius: 2px;
  margin: 0.85rem auto 0;
}

/* ── Header / Nav ── */
header {
  background: var(--brown);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.9rem 0;
}

.logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: opacity 0.2s;
}

.logo:hover { opacity: 0.8; }

.logo-icon {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.15rem;
}

.logo-image {
  display: block;
  width: 60px;
  height: auto;
  object-fit: contain;
}

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

.nav-links {
  display: flex;
  gap: 2.25rem;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  transition: color 0.2s;
}

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

.mobile-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 1.1rem;
  color: var(--white);
  cursor: pointer;
  width: 38px;
  height: 36px;
  border-radius: 5px;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s;
}

.mobile-toggle:hover { border-color: rgba(255, 255, 255, 0.65); }

/* ── Hero ── */
.hero {
  background: var(--sand);
  padding: 7rem 0 6rem;
  text-align: center;
  position: relative;
}

.hero-content {
  max-width: 760px;
  margin: 0 auto;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.75rem;
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.eyebrow-line {
  display: block;
  width: 30px;
  height: 1px;
  background: var(--border);
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.8rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1.18;
  margin-bottom: 0.75rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--brown);
}

.hero-ornament {
  color: var(--border);
  font-size: 0.65rem;
  letter-spacing: 10px;
  margin: 1.4rem 0;
}

.hero-description {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 560px;
  margin: 0 auto 0.75rem;
  line-height: 1.82;
}

.hero-regions {
  font-size: 0.86rem;
  color: var(--text-muted);
}

.hero-regions i {
  margin-right: 0.3rem;
  font-size: 0.8rem;
  color: var(--caramel);
}

.action-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-line {
  width: 1px;
  height: 38px;
  background: linear-gradient(to bottom, var(--border), transparent);
  margin: 0 auto;
  animation: scrollPulse 2.2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50%       { opacity: 1; }
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.85rem;
  background: var(--white);
  color: var(--text);
  border: 1.5px solid var(--border);
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.22s ease;
}

.btn:hover {
  border-color: var(--brown);
  color: var(--brown);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(74, 32, 16, 0.1);
}

/* Primary = brown fill on hero */
.btn-primary {
  background: var(--brown);
  color: var(--white);
  border-color: var(--brown);
}

.btn-primary:hover {
  background: var(--brown-deep);
  border-color: var(--brown-deep);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(74, 32, 16, 0.25);
}

/* Secondary = outlined on sand bg */
.btn-secondary {
  background: transparent;
  color: var(--text-mid);
  border-color: var(--border);
}

.btn-secondary:hover {
  background: transparent;
  border-color: var(--brown);
  color: var(--brown);
  box-shadow: none;
}

.btn-outline {
  background: transparent;
  color: var(--brown);
  border-color: var(--brown);
}

.btn-outline:hover {
  background: var(--brown);
  color: var(--white);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  border-color: #25D366;
  padding: 1.1rem 2.5rem;
  font-size: 0.97rem;
  border-radius: 6px;
  gap: 0.8rem;
}

.btn-whatsapp i { font-size: 1.5rem; }

.btn-whatsapp span {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.25;
}

.btn-whatsapp strong { font-size: 0.97rem; font-weight: 700; }
.btn-whatsapp small  { font-size: 0.77rem; font-weight: 400; opacity: 0.85; }

.btn-whatsapp:hover {
  background: #1EB858;
  border-color: #1EB858;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.32);
}

/* ── Stats Strip ── */
.stats-strip {
  background: var(--brown);
  padding: 2.5rem 0;
}

.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.5rem 3.25rem;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.stat-label {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.52);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-top: 0.4rem;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.18);
}

/* ── Service Inclusions ── */
.inclusions {
  padding: 5.5rem 0;
  background: var(--sand);
}

.inclusions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}

.inclusion-item {
  background: var(--white);
  padding: 1.4rem 1.6rem;
  display: flex;
  align-items: center;
  gap: 1.1rem;
  transition: background 0.2s;
}

.inclusion-item:hover {
  background: var(--sand-light);
}

.inclusion-icon {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  background: var(--sand);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--brown);
  font-size: 0.95rem;
}

.inclusion-item span {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.5;
}

/* ── Why JomSnap ── */
.why-us {
  padding: 5.5rem 0;
  background: var(--brown);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.why-card {
  padding: 2.25rem 1.75rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.1);
  transition: border-color 0.25s, background 0.25s;
}

.why-card:hover {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(0, 0, 0, 0.18);
}

.why-icon {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 1.1rem;
}

.why-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.6rem;
}

.why-card p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.72;
}

/* ── Packages ── */
.packages {
  padding: 5.5rem 0;
  background: var(--sand-light);
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  align-items: stretch;
}


.package-card {
  background: var(--white);
  border-radius: 12px;
  border: 1px solid rgba(216,191,160,0.8);
  padding: 1.6rem;
  position: relative;
  transition: transform 0.22s ease, box-shadow 0.25s, border-color 0.25s;
  display: flex;
  flex-direction: column;
  min-height: 320px;
}

.package-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 6px;
  width: 100%;
  background: linear-gradient(90deg, var(--caramel), var(--brown));
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.package-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(74, 32, 16, 0.12);
  border-color: var(--brown);
}

.package-card.featured {
  /* lighter, warm featured card */
  background: linear-gradient(180deg, #fffaf3 0%, #fff3e6 100%);
  border: 1px solid rgba(192,130,48,0.18);
  border-color: rgba(192,130,48,0.25);
  color: var(--brown-deep);
  transform: translateY(-6px);
  z-index: 3;
  padding: 1.9rem;
  box-shadow: 0 18px 36px rgba(74,32,16,0.08);
}

.package-card.featured::before {
  background: linear-gradient(90deg, rgba(192,130,48,0.95), rgba(122,59,28,0.95));
}

.package-card.featured:hover {
  transform: translateY(-10px);
  box-shadow: 0 26px 52px rgba(74,32,16,0.12);
}

.package-card.featured h3 { color: var(--brown-deep); }

.package-card.featured .package-duration {
  background: rgba(122,59,28,0.06);
  color: var(--brown-deep);
}

.package-card.featured .price-old { color: var(--text-muted); }
.package-card.featured .price-current { color: var(--caramel); font-size: 2.2rem; }
.package-card.featured .per-event { color: var(--text-muted); }

.package-card.featured .feature { color: var(--caramel); border-bottom-color: rgba(192,130,48,0.06); font-weight: 700; }
.package-card.featured .feature i { color: var(--brown-deep); }

.package-card.featured .badge {
  background: var(--brown-deep);
  color: var(--white);
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.package-card.featured .btn.btn-primary {
  background: linear-gradient(90deg, var(--caramel), var(--brown));
  color: var(--white);
  border-color: transparent;
  padding: 0.95rem 2rem;
  font-weight: 800;
  border-radius: 8px;
}

.package-card.featured .btn.btn-primary:hover {
  background: linear-gradient(90deg, var(--brown-deep), var(--brown));
}

.package-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.package-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text);
  margin: 0;
}

.package-card.featured h3 { color: var(--brown-deep); }

.package-duration {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  background: rgba(245,224,192,0.95);
  padding: 0.28rem 0.6rem;
  border-radius: 999px;
}

.package-card.featured .package-duration {
  background: rgba(255,255,255,0.95);
  color: var(--brown-deep);
}

.package-price {
  display: flex;
  align-items: baseline;
  gap: 0.45rem;
  margin: 0.8rem 0 1rem;
}

.price-old {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: line-through;
  opacity: 0.9;
}

.price-current {
  font-size: 1.85rem;
  font-weight: 900;
  color: var(--brown-deep);
}

.currency { font-size: 0.95rem; font-weight: 700; vertical-align: super; }

.per-event { font-size: 0.78rem; color: var(--text-muted); }

.price-old {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: line-through;
  opacity: 0.9;
}

.price-current {
  font-size: 2.2rem;
}

.currency {
  font-size: 1rem;
  font-weight: 600;
  vertical-align: super;
}

.per-event {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-muted);
}

/* keep per-event color from earlier rules */

.badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--caramel);
  color: var(--white);
  padding: 0.28rem 1rem;
  border-radius: 4px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  white-space: nowrap;
}

.badge i { font-size: 0.6rem; margin-right: 0.25rem; }

.package-features {
  margin-bottom: 1.75rem;
  flex: 1;
}

.feature {
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--sand);
  color: var(--text-muted);
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.feature i {
  color: var(--caramel);
  font-size: 0.72rem;
  flex-shrink: 0;
}

.feature:last-child { border-bottom: none; }

/* featured feature styles are defined above */

.packages-note {
  text-align: center;
  margin-top: 2.5rem;
  font-size: 0.86rem;
  color: var(--text-muted);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.65;
}

.packages-note i {
  color: var(--caramel);
  margin-right: 0.3rem;
}

/* ── Terms ── */
.terms {
  padding: 5rem 0;
  background: var(--brown-deep);
}

.terms .section-divider { opacity: 0.5; }

.terms-content {
  max-width: 680px;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem 2.5rem;
  border-radius: 8px;
}

.terms ul { list-style: none; }

.terms li {
  padding: 0.65rem 0;
  color: rgba(255, 255, 255, 0.75);
  position: relative;
  padding-left: 1.6rem;
  font-size: 0.91rem;
  line-height: 1.65;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

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

.terms li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.85rem;
  top: 0.68rem;
}

/* ── Contact ── */
.contact-section {
  padding: 6rem 0;
  background: var(--sand);
}

.contact-cta {
  display: flex;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.contact-socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.75rem;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 500;
  transition: color 0.2s;
}

.social-link i { font-size: 1.2rem; }
.social-link:hover { color: var(--brown); }

.social-divider {
  width: 1px;
  height: 22px;
  background: var(--border);
}

/* ── Footer ── */
.site-footer {
  background: var(--brown-deep);
  border-top: 1px solid rgba(0, 0, 0, 0.15);
  padding: 3rem 0 2.5rem;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-logo i {
  color: rgba(255, 255, 255, 0.55);
  font-size: 1.1rem;
}

.footer-logo-text {
  font-family: 'Dancing Script', cursive;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
}

.footer-tagline {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 0.3rem;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.22s;
}

.footer-social a:hover {
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-copy {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.28);
}

/* ── Gallery ── */
.gallery-section {
  padding: 5rem 0;
  min-height: 70vh;
  background: var(--sand-light);
}

.gallery-section .section-header {
  margin-bottom: 2.25rem;
}

.count {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--text-muted);
  font-size: 0.88rem;
}

.alert {
  background: #d1fae5;
  color: #065f46;
  padding: 1rem;
  border-radius: 6px;
  margin-bottom: 2rem;
  text-align: center;
  border: 1px solid #a7f3d0;
}

.empty {
  text-align: center;
  padding: 5rem 2rem;
}

.empty p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-size: 1rem;
}

/* ── Photo Grid ── */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

.photo-item {
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
  border: 1.5px solid var(--border);
  transition: border-color 0.25s, box-shadow 0.25s;
}

.photo-item:hover {
  border-color: var(--brown);
  box-shadow: 0 6px 20px rgba(74, 32, 16, 0.1);
}

.photo-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  cursor: pointer;
  display: block;
}

.photo-actions {
  display: flex;
  gap: 0.5rem;
  padding: 0.85rem;
  background: var(--white);
}

.photo-actions a,
.photo-actions button {
  flex: 1;
  padding: 0.6rem;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--text);
  text-decoration: none;
  text-align: center;
  border-radius: 5px;
  cursor: pointer;
  font-size: 0.84rem;
  font-weight: 600;
  font-family: inherit;
  transition: all 0.2s;
}

.photo-actions a:hover,
.photo-actions button:hover {
  background: var(--brown);
  color: var(--white);
  border-color: var(--brown);
}

/* ── Lightbox ── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(20, 8, 2, 0.97);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.lightbox.active { display: flex; }

.lightbox img {
  max-width: 88%;
  max-height: 88vh;
  border-radius: 6px;
}

.lightbox .close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 1.6rem;
  cursor: pointer;
  width: 42px;
  height: 42px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.lightbox .close:hover { background: rgba(255, 255, 255, 0.16); }

.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 2rem;
  cursor: pointer;
  width: 44px;
  height: 44px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.nav-btn:hover { background: rgba(255, 255, 255, 0.16); }

.prev { left: 1.5rem; }
.next { right: 1.5rem; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .why-grid { grid-template-columns: 1fr 1fr; }
  .packages-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .container { padding: 0 18px; }

  /* Nav */
  .nav-links {
    position: fixed;
    left: -100%;
    top: 57px;
    flex-direction: column;
    background: var(--brown);
    width: 100%;
    text-align: center;
    transition: left 0.3s ease;
    box-shadow: 0 8px 24px rgba(30, 10, 4, 0.3);
    padding: 1.25rem 0;
    gap: 0;
    border-bottom: 2px solid rgba(255, 255, 255, 0.15);
    z-index: 99;
  }
  .nav-links.active { left: 0; }
  .nav-links a { padding: 0.85rem 0; display: block; font-size: 0.88rem; }
  .mobile-toggle { display: flex; }

  /* Hero */
  .hero { padding: 4.5rem 0 3.75rem; }
  .hero h1 { font-size: 2.3rem; }
  .hero-description { font-size: 0.96rem; }
  .hero-eyebrow { font-size: 0.68rem; letter-spacing: 2.5px; }
  .hero-scroll-indicator { display: none; }
  .action-buttons { flex-direction: column; align-items: center; }
  .action-buttons .btn { width: 100%; max-width: 340px; justify-content: center; }

  /* Stats — 2×2 grid */
  .stats-strip { padding: 0; }
  .stats-grid { display: grid; grid-template-columns: 1fr 1fr; }
  .stat-divider { display: none; }
  .stat-item {
    padding: 1.5rem 1rem;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }
  .stat-item:nth-child(even) { border-right: none; }
  .stat-item:nth-last-child(-n+2) { border-bottom: none; }
  .stat-number { font-size: 2rem; }
  .stat-label { font-size: 0.7rem; }

  /* Inclusions */
  .inclusions { padding: 4rem 0; }
  .inclusions-grid { grid-template-columns: 1fr; }

  /* Why us */
  .why-us { padding: 4rem 0; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .why-card { padding: 1.5rem 1.25rem; }

  /* Packages */
  .packages { padding: 4rem 0; }
  .packages-grid { grid-template-columns: 1fr; }
  .package-card { padding: 2rem 1.75rem; }

  /* Section headers */
  .section-header { margin-bottom: 2.5rem; }
  .section-header h2 { font-size: 1.95rem; }

  /* Terms */
  .terms { padding: 4rem 0; }
  .terms-content { padding: 1.5rem 1.25rem; }

  /* Contact */
  .contact-section { padding: 4.5rem 0; }
  .btn-whatsapp { width: 100%; max-width: 360px; justify-content: center; }

  /* Gallery */
  .photo-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); }
  .photo-item img { height: 180px; }

  /* Lightbox */
  .nav-btn { width: 38px; height: 38px; font-size: 1.6rem; }
  .prev { left: 0.75rem; }
  .next { right: 0.75rem; }
}

@media (max-width: 480px) {
  .hero { padding: 3.5rem 0 3rem; }
  .hero h1 { font-size: 1.95rem; }
  .hero-ornament { letter-spacing: 6px; }

  .why-grid { grid-template-columns: 1fr; }
  .why-card { padding: 1.4rem 1rem; }

  .section-header h2 { font-size: 1.75rem; }
  .logo-text { font-size: 1.65rem; }
  .stat-number { font-size: 1.8rem; }

  .contact-socials { flex-direction: column; gap: 1rem; }
  .social-divider { display: none; }

  .btn-whatsapp { padding: 1rem 1.5rem; font-size: 0.93rem; }
  .btn-whatsapp i { font-size: 1.3rem; }

  .package-card { padding: 1.75rem 1.25rem; }
  .package-card h4 { font-size: 1.9rem; }

  .inclusions { padding: 3rem 0; }
}
