
/* ═══════════════════════════════════════════
   ARUBA SUNSET PHOTOS — DESIGN SYSTEM
   Warm sunset palette, editorial luxury
   ═══════════════════════════════════════════ */

:root {
  --gold: #C8956C;
  --gold-light: #E8C5A0;
  --gold-dark: #A0714E;
  --sunset-orange: #E8855A;
  --sunset-pink: #D4707A;
  --deep-navy: #1A1A2E;
  --charcoal: #2D2D3A;
  --warm-black: #121218;
  --cream: #FDF6EE;
  --warm-white: #FAF4ED;
  --sand: #F0E4D4;
  --text-light: #B8A898;
  --text-body: #8A7A6A;
  --overlay-dark: rgba(18, 18, 24, 0.55);
  --overlay-gradient: linear-gradient(180deg, rgba(18,18,24,0.1) 0%, rgba(18,18,24,0.7) 100%);

  --font-display: 'Playfair Display', serif;
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Montserrat', sans-serif;

  --section-pad: clamp(80px, 10vw, 140px);
  --content-max: 1200px;
  --gap: clamp(16px, 3vw, 40px);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.7;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--gold); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--gold-dark); }

.container { max-width: var(--content-max); margin: 0 auto; padding: 0 clamp(20px, 4vw, 60px); }

/* ── NAVIGATION ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.nav.scrolled {
  background: rgba(18, 18, 24, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 2px 40px rgba(0,0,0,0.3);
}
.nav-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-logo {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 400;
  color: #fff;
  letter-spacing: 4px;
  text-transform: uppercase;
}
.nav-logo span {
  font-weight: 300;
  font-size: 13px;
  display: block;
  letter-spacing: 6px;
  color: var(--gold-light);
  margin-top: -2px;
}
.nav-links {
  display: flex; gap: 32px; list-style: none; align-items: center;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--gold) !important;
  color: var(--warm-black) !important;
  padding: 10px 24px;
  border-radius: 2px;
  font-weight: 600 !important;
  letter-spacing: 1.5px !important;
  transition: background 0.3s, transform 0.3s !important;
}
.nav-cta:hover {
  background: var(--gold-light) !important;
  transform: translateY(-1px);
}
.nav-cta::after { display: none !important; }

.mobile-toggle {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.mobile-toggle span {
  width: 24px; height: 1.5px; background: #fff; transition: 0.3s;
}

/* ── HERO ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  background: var(--warm-black);
}
/* hero-bg replaced by hero-slider - see bottom of file */
.hero-content {
  position: relative; z-index: 3;
  text-align: center;
  padding: 0 20px 100px;
  max-width: 800px;
}
.hero-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-light);
  border: 1px solid rgba(200, 149, 108, 0.4);
  padding: 8px 24px;
  margin-bottom: 30px;
  animation: fadeUp 1s 0.3s both;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(42px, 7vw, 82px);
  font-weight: 400;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 20px;
  animation: fadeUp 1s 0.5s both;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-sub {
  font-family: var(--font-heading);
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  letter-spacing: 1px;
  margin-bottom: 40px;
  animation: fadeUp 1s 0.7s both;
}
.hero-buttons {
  display: flex; gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 1s 0.9s both;
}
.btn {
  display: inline-block;
  padding: 16px 40px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.4s;
  text-align: center;
}
.btn-gold {
  background: var(--gold);
  color: var(--warm-black);
}
.btn-gold:hover {
  background: var(--gold-light);
  color: var(--warm-black);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(200, 149, 108, 0.35);
}
.btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.4);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.hero-scroll {
  position: absolute;
  bottom: 30px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: fadeUp 1s 1.2s both;
}
.hero-scroll span {
  display: block;
  width: 1px; height: 50px;
  background: linear-gradient(180deg, rgba(200,149,108,0.6), transparent);
  margin: 0 auto;
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* ── INTRO / ABOUT ── */
.intro {
  padding: var(--section-pad) 0;
  background: var(--cream);
  position: relative;
}
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.intro-images {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.intro-images img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 2px;
}
.intro-images img:nth-child(2) {
  margin-top: 40px;
}
.intro-text .label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.intro-text h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 24px;
}
.intro-text h2 em { font-style: italic; color: var(--gold-dark); }
.intro-text p {
  color: var(--text-body);
  margin-bottom: 16px;
  font-size: 15px;
}
.intro-stats {
  display: flex; gap: 40px; margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid rgba(200,149,108,0.2);
}
.intro-stats .stat-num {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
}
.intro-stats .stat-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-body);
  margin-top: 6px;
}

/* ── MARQUEE STRIP ── */
.marquee-strip {
  background: var(--warm-black);
  padding: 18px 0;
  overflow: hidden;
  position: relative;
}
.marquee-track {
  display: flex; gap: 60px;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
}
.marquee-track span {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-light);
  opacity: 0.6;
  flex-shrink: 0;
}
.marquee-track span::after {
  content: '✦';
  margin-left: 60px;
  color: var(--gold);
  opacity: 0.4;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── GALLERY ── */
.gallery {
  padding: var(--section-pad) 0;
  background: var(--warm-black);
  overflow: hidden;
}
.section-header {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 70px);
}
.section-header .label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 400;
  line-height: 1.2;
}
.gallery .section-header h2 { color: #fff; }
.gallery .section-header p { color: var(--text-light); margin-top: 14px; font-size: 15px; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 8px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}
.gallery-grid .g-item {
  overflow: hidden;
  position: relative;
  border-radius: 2px;
}
.gallery-grid .g-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.gallery-grid .g-item:hover img { transform: scale(1.06); }
.gallery-grid .g-item::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(18,18,24,0.4) 100%);
  opacity: 0;
  transition: opacity 0.4s;
}
.gallery-grid .g-item:hover::after { opacity: 1; }

.g-item:nth-child(1) { grid-column: span 2; grid-row: span 2; aspect-ratio: 4/5; }
.g-item:nth-child(2) { aspect-ratio: 1; }
.g-item:nth-child(3) { aspect-ratio: 1; }
.g-item:nth-child(4) { aspect-ratio: 1; }
.g-item:nth-child(5) { aspect-ratio: 1; }

.gallery-cta {
  text-align: center;
  margin-top: 50px;
}

/* ── EXPERIENCE / HOW IT WORKS ── */
.experience {
  padding: var(--section-pad) 0;
  background: var(--cream);
}
.exp-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 50px;
}
.exp-step {
  text-align: center;
  position: relative;
}
.exp-step .step-num {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 400;
  color: var(--gold-light);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 16px;
}
.exp-step h4 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 10px;
}
.exp-step p {
  font-size: 13px;
  color: var(--text-body);
  line-height: 1.6;
}
.exp-step::after {
  content: '';
  position: absolute;
  top: 32px; right: -20px;
  width: 40px; height: 1px;
  background: var(--gold-light);
  opacity: 0.4;
}
.exp-step:last-child::after { display: none; }

/* ── PACKAGES / PRICING ── */
.packages {
  padding: var(--section-pad) 0;
  background: linear-gradient(180deg, var(--warm-black) 0%, #1E1E30 100%);
  position: relative;
}
.packages::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.3;
}
.packages .section-header h2 { color: #fff; }
.packages .section-header p { color: var(--text-light); margin-top: 12px; }

.pkg-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}
.pkg-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(200,149,108,0.15);
  padding: 40px 30px;
  text-align: center;
  position: relative;
  transition: all 0.4s;
  border-radius: 2px;
}
.pkg-card:hover {
  border-color: rgba(200,149,108,0.4);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.pkg-card.featured {
  border-color: var(--gold);
  background: rgba(200,149,108,0.05);
}
.pkg-card.featured::before {
  content: 'MOST POPULAR';
  position: absolute; top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--warm-black);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 4px 16px;
}
.pkg-card .pkg-name {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 8px;
}
.pkg-card .pkg-duration {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.pkg-card .pkg-price {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 400;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
}
.pkg-card .pkg-price-note {
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 30px;
}
.pkg-card .pkg-features {
  list-style: none;
  margin-bottom: 36px;
  text-align: left;
}
.pkg-card .pkg-features li {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex; align-items: center; gap: 10px;
}
.pkg-card .pkg-features li::before {
  content: '✦';
  color: var(--gold);
  font-size: 8px;
  flex-shrink: 0;
}
.pkg-card .btn {
  width: 100%;
}

/* ── WHAT'S INCLUDED ── */
.included {
  padding: 60px 0;
  background: var(--sand);
}
.included-inner {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}
.incl-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.incl-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.incl-icon svg { width: 20px; height: 20px; fill: var(--warm-black); }
.incl-item span {
  font-size: 13px;
  font-weight: 500;
  color: var(--charcoal);
  letter-spacing: 0.5px;
}

/* ── REVIEWS ── */
.reviews {
  padding: var(--section-pad) 0;
  background: var(--cream);
}
.reviews .section-header h2 { color: var(--charcoal); }
.reviews .section-header p { color: var(--text-body); margin-top: 12px; }

.reviews-rating {
  text-align: center;
  margin-bottom: 50px;
}
.reviews-rating .big-rating {
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
}
.reviews-rating .stars {
  color: var(--gold);
  font-size: 22px;
  letter-spacing: 4px;
  margin: 8px 0 6px;
}
.reviews-rating .review-count {
  font-size: 13px;
  color: var(--text-body);
  letter-spacing: 1px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: #fff;
  padding: 36px 30px;
  border-radius: 2px;
  border: 1px solid rgba(200,149,108,0.1);
  transition: all 0.3s;
}
.review-card:hover {
  box-shadow: 0 10px 40px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}
.review-card .review-stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.review-card .review-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 12px;
  line-height: 1.3;
}
.review-card .review-text {
  font-size: 13px;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 20px;
}
.review-card .review-author {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--charcoal);
}
.review-card .review-date {
  font-size: 11px;
  color: var(--text-light);
  margin-top: 2px;
}
.reviews-more { text-align: center; margin-top: 40px; }

/* ── FULL-WIDTH IMAGE BREAK ── */
.image-break {
  height: 500px;
  position: relative;
  overflow: hidden;
}
.image-break img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.image-break .overlay {
  position: absolute; inset: 0;
  background: var(--overlay-dark);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
}
.image-break .overlay h3 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 400;
  color: #fff;
  text-align: center;
}
.image-break .overlay h3 em {
  font-style: italic;
  color: var(--gold-light);
}

/* ── BOOKING / CTA ── */
.booking {
  padding: var(--section-pad) 0;
  background: var(--warm-black);
  position: relative;
  overflow: hidden;
}
.booking::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(200,149,108,0.08), transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(212,112,122,0.05), transparent 50%);
}
.booking-inner {
  position: relative; z-index: 2;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.booking-inner .label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.booking-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 400;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 20px;
}
.booking-inner h2 em { font-style: italic; color: var(--gold-light); }
.booking-inner p {
  color: var(--text-light);
  font-size: 15px;
  margin-bottom: 40px;
}

.booking-form {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(200,149,108,0.15);
  padding: 40px;
  border-radius: 2px;
  text-align: left;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-group { margin-bottom: 0; }
.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 8px;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(200,149,108,0.2);
  border-radius: 2px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  transition: border-color 0.3s;
}
.form-group input::placeholder, .form-group textarea::placeholder {
  color: rgba(255,255,255,0.3);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.form-group select option { background: var(--charcoal); color: #fff; }
.form-group textarea { resize: vertical; min-height: 100px; }

.form-full { margin-bottom: 16px; }

.booking-form .btn {
  width: 100%;
  margin-top: 10px;
  font-size: 12px;
  padding: 18px;
}

.booking-details {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.booking-detail {
  text-align: center;
}
.booking-detail .bd-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.booking-detail .bd-value {
  font-family: var(--font-heading);
  font-size: 16px;
  color: rgba(255,255,255,0.8);
}

/* ── FAQ ── */
.faq {
  padding: var(--section-pad) 0;
  background: var(--sand);
}
.faq .section-header h2 { color: var(--charcoal); }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid rgba(200,149,108,0.2);
}
.faq-q {
  width: 100%;
  background: none; border: none;
  padding: 24px 0;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 500;
  color: var(--charcoal);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-q::after {
  content: '+';
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 300;
  color: var(--gold);
  transition: transform 0.3s;
}
.faq-item.active .faq-q::after {
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s;
}
.faq-item.active .faq-a {
  max-height: 300px;
  padding-bottom: 24px;
}
.faq-a p {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.7;
}

/* ── FOOTER ── */
.footer {
  background: var(--warm-black);
  padding: 70px 0 30px;
  border-top: 1px solid rgba(200,149,108,0.1);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
  margin-bottom: 50px;
}
.footer-brand .footer-logo {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 400;
  color: #fff;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-brand .footer-logo span {
  display: block;
  font-size: 11px;
  letter-spacing: 6px;
  color: var(--gold-light);
  font-weight: 300;
}
.footer-brand p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.7;
  margin-top: 12px;
}
.footer-col h5 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col a {
  display: block;
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 10px;
  transition: color 0.3s;
}
.footer-col a:hover { color: #fff; }

.footer-social {
  display: flex; gap: 12px; margin-top: 16px;
}
.footer-social a {
  width: 38px; height: 38px;
  border: 1px solid rgba(200,149,108,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
}
.footer-social a svg {
  width: 16px; height: 16px;
  fill: var(--text-light);
  transition: fill 0.3s;
}
.footer-social a:hover svg { fill: var(--warm-black); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}
.footer-bottom a { font-size: 12px; color: rgba(255,255,255,0.3); }
.footer-bottom a:hover { color: var(--gold); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s, transform 0.8s;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .intro-grid { grid-template-columns: 1fr; }
  .intro-images { order: -1; }
  .exp-steps { grid-template-columns: repeat(2, 1fr); }
  .exp-step::after { display: none; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .g-item:nth-child(1) { grid-column: span 2; grid-row: span 1; aspect-ratio: 16/9; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-toggle { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(18,18,24,0.98);
    padding: 30px;
    gap: 20px;
    text-align: center;
  }
  .hero { min-height: 600px; }
  .hero-content { padding-bottom: 80px; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .pkg-grid { grid-template-columns: 1fr; max-width: 480px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .exp-steps { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .g-item:nth-child(1) { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .included-inner { gap: 30px; }
  .intro-stats { flex-direction: column; gap: 24px; }
  .booking-details { gap: 30px; }
  .image-break { height: 350px; }
}

/* ── HERO SLIDER ── */
.hero-slider {
  position: absolute; inset: 0; z-index: 0;
}
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  transform: scale(1.05);
}
.hero-img-desktop, .hero-img-mobile {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
}
/* Desktop: show desktop image, hide mobile */
.hero-img-mobile { display: none; }
.hero-img-desktop { display: block; }
@media (max-width: 768px) {
  .hero-img-desktop { display: none; }
  .hero-img-mobile { display: block; }
}
.hero-slide.active {
  opacity: 1;
  animation: heroSlideZoom 8s ease-in-out forwards;
}
@keyframes heroSlideZoom {
  0% { transform: scale(1.05); }
  100% { transform: scale(1.12); }
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg,
    rgba(18,18,24,0.15) 0%,
    rgba(18,18,24,0.05) 40%,
    rgba(18,18,24,0.4) 70%,
    rgba(18,18,24,0.85) 100%);
}
.hero-dots {
  position: absolute; bottom: 70px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex; gap: 10px;
}
.hero-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: all 0.3s;
  border: none;
}
.hero-dot.active {
  background: var(--gold);
  transform: scale(1.2);
}

/* Signature vs Studio comparison — responsive */
@media (max-width: 768px) {
    .sig-vs-studio > .container > div:nth-child(2) {
        grid-template-columns: 1fr !important;
    }
}
