/* ============================================
   AMBROSIA HAVEN PAGE — ambrosia.css
   Extends style.css for the dedicated event page
   Colour palette: MWP black/gold
============================================ */


/* ---- HERO ---- */
.ah-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 140px 24px 80px;
}

.ah-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.ah-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.ah-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.45) 0%,
    rgba(0,0,0,0.35) 40%,
    rgba(0,0,0,0.7) 80%,
    rgba(0,0,0,0.92) 100%
  );
}

/* Fallback gradient when no hero image */
.ah-hero-bg:not(:has(img[src])),
.ah-hero-bg img[src=""] ~ .ah-hero-overlay,
.ah-hero-bg:not(:has(img)) {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a0a0a 50%, #0a0a0a 100%);
}

.ah-hero-bg:not(:has(img[src])) {
  background: radial-gradient(ellipse at 60% 40%, rgba(201,168,76,0.08) 0%, transparent 60%),
              linear-gradient(135deg, #000 0%, #0d0d0d 100%);
}

.ah-hero-logo {
  position: relative;
  z-index: 2;
  margin-bottom: 32px;
}

.ah-hero-logo img {
  height: auto;
  max-height: 560px;
  width: auto;
  max-width: 85vw;
  margin: 0 auto;
  filter: drop-shadow(0 4px 24px rgba(201,168,76,0.3));
}

.ah-logo-fallback {
  font-family: var(--font-head);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--gold);
}

.ah-hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.ah-hero-sub {
  font-family: var(--font-head);
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  font-style: italic;
  font-weight: 300;
  color: var(--gold-light);
  letter-spacing: 0.04em;
  margin-bottom: 20px;
}

.ah-hero-divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 20px;
  opacity: 0.7;
}

.ah-hero-date {
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 6px;
}

.ah-hero-location {
  font-size: 0.88rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 40px;
}

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

.ah-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--grey);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.ah-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

/* Country Allure theme badge in hero */
.ah-theme-badge {
  margin: 16px auto 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.ah-theme-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 12px 0;
}


/* ---- ABOUT ---- */
.ah-about {
  padding: var(--section-pad);
  background: var(--dark);
}

.ah-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.ah-about-text h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 12px 0 24px;
}

.ah-about-text p {
  color: var(--grey-light);
  margin-bottom: 18px;
  line-height: 1.8;
}

.ah-about-text p:last-child { margin-bottom: 0; }

.ah-about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: #1a1a1a;
}

.ah-stat {
  background: var(--dark2);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ah-stat-num {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}

.ah-stat-label {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey);
}


/* ---- HDJ 2026 THEME SECTION ---- */
.ah-theme-section {
  padding: var(--section-pad);
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.04);
}

.ah-theme-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
}

.ah-theme-image {
  overflow: hidden;
  border-radius: 4px;
}

.ah-theme-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}

.ah-theme-text h2 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  margin: 10px 0 8px;
  color: var(--gold);
}

.ah-theme-tagline {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--gold);
  letter-spacing: 0.04em;
  margin-bottom: 20px;
}

.ah-theme-verse {
  margin-top: 12px;
}

.ah-theme-verse p {
  color: var(--grey-light);
  line-height: 1.9;
  margin-bottom: 20px;
  font-size: 0.92rem;
  font-family: var(--font-head);
  font-style: italic;
  text-align: center;
}

.ah-theme-verse em {
  color: var(--white);
}

.ah-theme-finale {
  font-family: var(--font-head) !important;
  font-size: clamp(2rem, 5vw, 3.2rem) !important;
  font-style: italic !important;
  color: var(--gold) !important;
  margin-top: 8px !important;
  letter-spacing: 0.02em;
}

.ah-theme-text p {
  color: var(--grey-light);
  line-height: 1.8;
  margin-bottom: 14px;
  font-size: 0.92rem;
}

.ah-theme-text strong {
  color: var(--white);
}


/* ---- GALLERY STRIP ---- */
.ah-gallery-strip {
  background: var(--black);
  overflow: hidden;
  padding: 2px 0;
}

.ah-gallery-scroll {
  display: flex;
  gap: 2px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.ah-gallery-scroll::-webkit-scrollbar { display: none; }

.ah-gallery-scroll img {
  height: 280px;
  width: auto;
  object-fit: cover;
  scroll-snap-align: start;
  flex-shrink: 0;
  filter: brightness(0.85);
  transition: filter 0.4s ease;
}

.ah-gallery-scroll img:hover {
  filter: brightness(1);
}


/* ---- PACKAGES ---- */
.ah-packages {
  padding: var(--section-pad);
  background: var(--black);
}

.ah-packages-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: #1a1a1a;
  margin-top: 56px;
}

.ah-package {
  background: var(--dark2);
  position: relative;
  display: flex;
  flex-direction: column;
}

.ah-package-featured {
  background: var(--dark3);
  border-top: 2px solid var(--gold);
}

.ah-package-badge {
  position: absolute;
  top: -1px;
  right: 28px;
  background: var(--gold);
  color: var(--black);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 14px;
}

.ah-package-header {
  padding: 44px 40px 28px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.ah-package-tag {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.ah-package-header h3 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 400;
  margin-bottom: 8px;
}

.ah-package-tagline {
  color: var(--grey);
  font-size: 0.9rem;
  font-style: italic;
}

/* Package Pricing */
.ah-package-price {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(201,168,76,0.2);
}
.ah-price {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
}
.ah-price-note {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey);
  margin-top: 6px;
}

.ah-package-body {
  padding: 32px 40px 44px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.ah-package-features {
  list-style: none;
  margin-bottom: 36px;
  flex: 1;
}

.ah-package-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 0.92rem;
  color: var(--grey-light);
  line-height: 1.5;
}

.ah-package-features li svg {
  flex-shrink: 0;
  margin-top: 3px;
}

.ah-package-cta {
  display: block;
  text-align: center;
  width: 100%;
}

.ah-group-note {
  margin-top: 2px;
  background: var(--dark3);
}

.ah-group-note-inner {
  padding: 36px 40px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.ah-group-label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
  white-space: nowrap;
}

.ah-group-note-inner p {
  color: var(--grey-light);
  font-size: 0.92rem;
}

.text-gold { color: var(--gold); }
.text-gold:hover { text-decoration: underline; }


/* ---- HIGHLIGHTS ---- */
.ah-highlights {
  padding: var(--section-pad);
  background: var(--dark);
  background: linear-gradient(180deg, var(--dark) 0%, #0b0b08 50%, var(--dark) 100%);
}

.ah-highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: #111;
  margin-top: 56px;
}

.ah-highlight {
  background: var(--dark2);
  padding: 44px 36px;
}

.ah-highlight-icon {
  margin-bottom: 20px;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201,168,76,0.2);
}

.ah-highlight h4 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 12px;
  color: var(--white);
}

.ah-highlight p {
  color: var(--grey);
  font-size: 0.9rem;
  line-height: 1.75;
}


/* ---- BRAND PARTNERS ---- */
.ah-partners {
  padding: var(--section-pad);
  background: var(--black);
}

.ah-partners-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  margin-top: 48px;
  margin-bottom: 64px;
  padding: 40px;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.ah-partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
}

.ah-partner-logo img {
  max-height: 60px;
  width: auto;
  opacity: 0.85;
  transition: opacity 0.3s ease;
}

.ah-partner-logo img:hover {
  opacity: 1;
}

/* Logos with coloured backgrounds get a rounded container */
.ah-partner-logo-bg img {
  border-radius: 8px;
  max-height: 56px;
}

/* Primary sponsor — 30% larger than standard */
.ah-partner-logo-primary img {
  max-height: 78px;
  opacity: 1;
}

.ah-partner-logo-text span {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.45);
  transition: color 0.3s ease;
}

.ah-partner-logo-text:hover span {
  color: rgba(255,255,255,0.8);
}

/* Sponsorship CTA within partners section */
.ah-partners .ah-sponsor-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
  padding: 52px;
  border: 1px solid rgba(107,47,160,0.2);
  background: linear-gradient(135deg, var(--dark2) 0%, #110a18 100%);
}

.ah-sponsor-text h3 {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 400;
  margin: 10px 0 16px;
}

.ah-sponsor-text p {
  color: var(--grey-light);
  margin-bottom: 0;
  line-height: 1.8;
  max-width: 540px;
  font-size: 0.92rem;
}

.ah-sponsor-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 220px;
}


/* ---- TRAVEL PA ---- */
.ah-travel {
  padding: 64px 24px;
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.04);
}

.ah-travel-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
  padding: 44px 52px;
  background: var(--dark2);
  border-left: 3px solid var(--gold);
}

.ah-travel-text h3 {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 400;
  margin: 8px 0 14px;
}

.ah-travel-text p {
  color: var(--grey-light);
  font-size: 0.92rem;
  line-height: 1.7;
  max-width: 520px;
}

.ah-travel-text strong {
  color: var(--white);
}

.ah-travel-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  min-width: 180px;
}

.ah-travel-email {
  font-size: 0.78rem;
  color: var(--grey);
  letter-spacing: 0.04em;
}


/* ---- HASHTAGS ---- */
.ah-hashtags {
  padding: 48px 24px;
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.04);
}

.ah-hashtag-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.ah-hashtag-strip span {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.3);
  transition: color 0.3s ease;
}

.ah-hashtag-strip span:hover {
  color: var(--gold);
}


/* ---- SECTION HEADERS ---- */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}

.section-sub {
  color: var(--grey-light);
  font-size: 1rem;
  line-height: 1.7;
  margin-top: 8px;
}


/* ---- BOOKING ---- */
.ah-book {
  padding: var(--section-pad);
  background: var(--dark);
}

.ah-book-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.ah-book-info h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin: 12px 0 20px;
}

.ah-book-info h2 em {
  font-style: italic;
  color: var(--gold);
}

.ah-book-info > p {
  color: var(--grey-light);
  margin-bottom: 32px;
  line-height: 1.8;
}

.ah-contact-strip {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 36px;
}

.ah-contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: var(--grey-light);
  font-size: 0.9rem;
  transition: color var(--transition);
}

.ah-contact-item:hover { color: var(--gold); }

.ah-venue-detail {
  padding: 24px;
  border-left: 2px solid var(--gold);
  background: var(--dark2);
}

.ah-venue-label {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.ah-venue-detail p {
  color: var(--grey-light);
  font-size: 0.88rem;
  margin-bottom: 4px;
}

.ah-venue-detail strong { color: var(--white); }

.ah-book-form {
  background: var(--dark2);
  padding: 48px 44px;
  border-top: 2px solid var(--gold);
}

.ah-book-form h3 {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 8px;
}

.ah-form-sub {
  color: var(--grey);
  font-size: 0.88rem;
  margin-bottom: 32px;
}

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

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--white);
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  outline: none;
  transition: border-color var(--transition);
  -webkit-appearance: none;
}

.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.2);
}

.form-group textarea { resize: vertical; min-height: 90px; }

.ah-submit-btn {
  width: 100%;
  padding: 18px;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.ah-form-note {
  font-size: 0.78rem;
  color: var(--grey);
  text-align: center;
}


/* ---- NAV ACTIVE ---- */
nav .nav-active {
  color: var(--gold);
}


/* ---- WHATSAPP FLOAT ---- */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(37,211,102,0.5);
}


/* ---- FOOTER (Ambrosia page specific) ---- */
.site-footer {
  padding: 72px 24px 36px;
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
}

.footer-brand p {
  color: var(--grey);
  font-size: 0.88rem;
  margin-top: 16px;
  line-height: 1.6;
}

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

.footer-social a {
  color: var(--grey);
  transition: color 0.2s;
}

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

.footer-nav h5,
.footer-contact h5 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-nav ul li {
  margin-bottom: 10px;
}

.footer-nav ul li a {
  color: var(--grey);
  font-size: 0.88rem;
  transition: color 0.2s;
}

.footer-nav ul li a:hover { color: var(--white); }

.footer-contact p {
  color: var(--grey);
  font-size: 0.88rem;
  margin-bottom: 6px;
}

.footer-wa {
  display: inline-block;
  margin-top: 12px;
  color: #25D366;
  font-size: 0.85rem;
  font-weight: 500;
  transition: opacity 0.2s;
}

.footer-wa:hover { opacity: 0.8; }

.footer-bottom {
  max-width: var(--max-w);
  margin: 48px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom p {
  color: var(--grey);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
}


/* ---- HELICOPTER DROP OFF ---- */
.ah-helicopter {
  padding: 60px 0;
}

.ah-helicopter-inner {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  padding: 48px 40px;
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 4px;
  background: linear-gradient(135deg, var(--dark2) 0%, #110a18 100%);
}

.ah-helicopter-icon {
  margin-bottom: 20px;
  opacity: 0.9;
}

.ah-helicopter-inner h3 {
  font-family: var(--font-head);
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 12px;
}

.ah-helicopter-inner p {
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 24px;
}

/* ---- CONTACT HEADINGS ---- */
.ah-contact-heading {
  font-family: var(--font-head);
  font-size: 1.05rem;
  color: var(--gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}


/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 960px) {
  .ah-about-grid,
  .ah-book-grid,
  .ah-theme-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .ah-theme-text { order: -1; }
  .ah-theme-image { order: 1; }

  .ah-packages-grid { grid-template-columns: 1fr; }

  .ah-highlights-grid { grid-template-columns: 1fr 1fr; }

  .ah-partners .ah-sponsor-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px;
  }

  .ah-sponsor-actions {
    flex-direction: row;
    flex-wrap: wrap;
    min-width: unset;
  }

  .ah-group-note-inner {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }

  .ah-travel-inner {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 36px;
  }

  .ah-travel-actions {
    align-items: flex-start;
    min-width: unset;
  }

  .ah-gallery-scroll img { height: 220px; }

  .ah-partners-logos { gap: 32px; padding: 28px; }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .ah-highlights-grid { grid-template-columns: 1fr; }

  .ah-about-stats { grid-template-columns: 1fr 1fr; }

  .ah-book-form { padding: 32px 24px; }

  .form-row { grid-template-columns: 1fr; }

  .ah-package-header,
  .ah-package-body { padding-left: 24px; padding-right: 24px; }

  .ah-partners .ah-sponsor-inner { padding: 28px 24px; }

  .ah-partners-logos { gap: 24px; padding: 20px; }

  .ah-partner-logo img { max-height: 36px; }

  .ah-gallery-scroll img { height: 180px; }

  .ah-hero-logo img { max-height: 280px; max-width: 80vw !important; }

  .ah-travel-inner { padding: 28px 24px; }

  .ah-hashtag-strip { gap: 16px; }
  .ah-hashtag-strip span { font-size: 0.88rem; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .wa-float { bottom: 20px; right: 20px; width: 50px; height: 50px; }
}
