﻿:root {
  --olive-900: #0f1a17;
  --olive-800: #172622;
  --olive-700: #1f342f;
  --olive-600: #28433d;
  --sand-50: #fbf9f4;
  --sand-100: #f4efe6;
  --sand-200: #ece4d6;
  --charcoal: #101617;
  --muted: #5c6a67;
  --gold: #c5a46d;
  --white: #ffffff;
  --line: rgba(16, 22, 23, 0.08);
  --shadow-sm: 0 10px 28px rgba(12, 18, 18, 0.1);
  --shadow-md: 0 20px 50px rgba(12, 18, 18, 0.16);
  --shadow-lg: 0 34px 70px rgba(10, 15, 15, 0.22);
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --header-height: 86px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Heebo", sans-serif;
  color: var(--charcoal);
  background: var(--sand-50);
  direction: rtl;
  text-align: right;
  padding-top: var(--header-height);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

h1,
h2,
h3,
h4 {
  font-family: "Assistant", sans-serif;
  letter-spacing: -0.3px;
  font-weight: 700;
}

h2,
h3,
h4 {
  font-weight: 600;
}

button,
input,
select,
textarea {
  font-family: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: 100%;
}

.ui-icon {
  width: 30px;
  height: 30px;
  display: block;
  flex: 0 0 auto;
  object-fit: contain;
}

.ui-icon--sm {
  width: 24px;
  height: 24px;
}

.ui-icon--badge {
  width: 36px;
  height: auto;
}

.ui-icon--whatsapp {
  width: 30px;
  height: 30px;
}

p,
li,
summary {
  overflow-wrap: anywhere;
}

.container {
  width: min(1180px, 92vw);
  margin: 0 auto;
}

.section {
  padding: 100px 0;
}

.section--sand {
  background: var(--sand-100);
}

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

.section__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 28px;
  margin-bottom: 44px;
}

.section__header > div {
  max-width: 720px;
}

.section__header > div {
  max-width: 720px;
}

.section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.section__title {
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  margin: 0 0 12px;
  color: inherit;
  letter-spacing: 0.2px;
}

.section__subtitle {
  margin: 0;
  color: var(--muted);
  line-height: 1.85;
  max-width: 560px;
}

.section--dark .section__subtitle {
  color: rgba(255, 255, 255, 0.7);
}

.site-header {
  position: fixed;
  top: 0;
  inset-inline: 0;
  z-index: 60;
  height: var(--header-height);
  display: flex;
  align-items: center;
  transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  background: #f5f7ef;
  border-bottom: 1px solid rgba(31, 52, 47, 0.08);
}

.site-header.is-scrolled {
  background: #f5f7ef;
  border-bottom-color: rgba(31, 52, 47, 0.12);
  box-shadow: 0 16px 32px rgba(20, 30, 24, 0.12);
}

.site-header--overlay .brand,
.site-header--overlay .nav__link {
  color: #1f2a1c;
}

.site-header--overlay .nav__link:hover,
.site-header--overlay .nav__link:focus-visible,
.site-header--overlay .nav__link.is-active {
  background: rgba(107, 125, 58, 0.12);
  color: #6b7d3a;
}

.site-header.is-scrolled .brand,
.site-header.is-scrolled .nav__link {
  color: #1f2a1c;
}

.site-header.is-scrolled .nav__link:hover,
.site-header.is-scrolled .nav__link:focus-visible,
.site-header.is-scrolled .nav__link.is-active {
  background: rgba(107, 125, 58, 0.12);
  color: #6b7d3a;
}

.site-header--overlay .menu-toggle span {
  background: #1f2a1c;
}

.site-header.is-scrolled .menu-toggle span {
  background: #1f2a1c;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--olive-900);
}

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

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

.logo-footer {
  height: 36px;
  width: auto;
  object-fit: contain;
  display: block;
  margin-bottom: 10px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.95rem;
  color: #1f2a1c;
}

.site-header--minimal {
  background: transparent;
}

.site-header--lux {
  background: #f5f7ef;
  border-bottom-color: rgba(31, 52, 47, 0.08);
  backdrop-filter: blur(8px);
}

.page-home .site-header--lux {
  background: #f5f7ef;
}

.site-header--lux.is-scrolled {
  background: #f5f7ef;
}

.nav--minimal {
  gap: 28px;
  font-size: 0.92rem;
  letter-spacing: 0.2px;
}

.nav--lux {
  font-weight: 500;
}

.nav--minimal .nav__list {
  gap: 22px;
}

.nav--minimal .nav__link {
  padding: 6px 0;
  border-radius: 0;
  position: relative;
  background: transparent;
}

.nav--minimal .nav__link::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: -6px;
  height: 2px;
  background: currentColor;
  opacity: 0;
  transform: scaleX(0.6);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav--minimal .nav__link:hover,
.nav--minimal .nav__link:focus-visible,
.nav--minimal .nav__link.is-active {
  background: transparent;
}

.site-header--minimal .nav--minimal .nav__link:hover,
.site-header--minimal .nav--minimal .nav__link:focus-visible,
.site-header--minimal .nav--minimal .nav__link.is-active {
  background: transparent;
}

.nav--minimal .nav__link:hover::after,
.nav--minimal .nav__link:focus-visible::after,
.nav--minimal .nav__link.is-active::after {
  opacity: 0.9;
  transform: scaleX(1);
}

.nav__cta {
  margin-inline-start: 12px;
}

.site-header--overlay .nav--lux .nav__link {
  color: #1f2a1c;
}

.site-header--overlay .nav--lux .nav__link::after {
  background: #6b7d3a;
}

.site-header--overlay .nav--lux .nav__submenu a {
  color: var(--olive-800);
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__link {
  padding: 10px 14px;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav__link:hover,
.nav__link:focus-visible,
.nav__link.is-active {
  background: rgba(107, 125, 58, 0.12);
  color: #6b7d3a;
}

.nav__item {
  position: relative;
}

.nav__submenu {
  position: absolute;
  top: calc(100% + 4px);
  inset-inline-end: 0;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 12px;
  min-width: 220px;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav__submenu::before {
  content: "";
  position: absolute;
  top: -10px;
  inset-inline: 0;
  height: 10px;
}

.nav__item:hover .nav__submenu,
.nav__item:focus-within .nav__submenu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.nav__item {
  padding-bottom: 6px;
}

.nav__submenu a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--olive-700);
}

.nav__submenu a:hover,
.nav__submenu a:focus-visible {
  background: var(--sand-100);
  color: var(--olive-900);
}

.menu-toggle {
  display: none;
  border: none;
  background: transparent;
  padding: 8px;
  border-radius: 10px;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--olive-900);
  margin: 6px 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero {
  position: relative;
  height: 90vh;
  min-height: 600px;
  margin-top: calc(-1 * var(--header-height));
  overflow: hidden;
}

.hero__slides {
  position: relative;
  height: 100%;
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.1s ease;
}

.hero__slide.is-active {
  opacity: 1;
  z-index: 2;
}

.hero__media,
.hero__media picture {
  width: 100%;
  height: 100%;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.hero__content {
  position: absolute;
  z-index: 2;
  inset-inline-start: 7%;
  inset-inline-end: 7%;
  bottom: 16%;
  color: #fff;
  max-width: 640px;
}

.hero__eyebrow {
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 16px;
}

.hero__title {
  font-size: clamp(2.6rem, 4.6vw, 4.4rem);
  line-height: 1.08;
  margin: 0 0 20px;
  font-weight: 700;
  text-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.hero__text {
  font-size: 1.15rem;
  line-height: 1.85;
  margin: 0 0 32px;
  color: rgba(255, 255, 255, 0.86);
  max-width: 520px;
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.btn--sm {
  padding: 10px 20px;
  font-size: 0.92rem;
}

.btn--primary {
  background: var(--gold);
  color: #1b1408;
  box-shadow: 0 16px 34px rgba(197, 164, 109, 0.38);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 36px rgba(197, 164, 109, 0.5);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
  background: rgba(255, 255, 255, 0.3);
}

.grid {
  display: grid;
  gap: 28px;
  align-items: stretch;
}

.grid > * {
  min-width: 0;
}

.grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card__media {
  aspect-ratio: 4 / 3;
  position: relative;
}

.card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.35) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card__body {
  padding: 22px 24px 28px;
  display: grid;
  gap: 10px;
  align-content: start;
}

.card__title {
  margin: 0;
  font-size: 1.2rem;
}

.card__text {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
  font-size: 0.95rem;
}

.card__link {
  color: var(--olive-700);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.card:hover .card__media::after {
  opacity: 1;
}

.card img {
  transition: transform 0.6s ease;
}

.card:hover img {
  transform: scale(1.05);
}

.card--premium {
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(12, 18, 18, 0.14);
}

.card--premium:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 55px rgba(12, 18, 18, 0.22);
}

.image-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 46px rgba(12, 18, 18, 0.18);
}

.image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 35%, rgba(0, 0, 0, 0.6) 100%);
}

.image-card__title {
  position: absolute;
  bottom: 22px;
  inset-inline-start: 22px;
  z-index: 2;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 600;
}

.image-card img {
  transition: transform 0.6s ease;
}

.image-card:hover img {
  transform: scale(1.06);
}

.experience-card {
  display: grid;
  gap: 12px;
}

.experience-card .icon {
  width: 32px;
  height: 32px;
}

.adventure-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(12, 18, 18, 0.2);
}

.adventure-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.6) 100%);
}

.adventure-card img,
.luxury-card img {
  transition: transform 0.6s ease;
}

.adventure-card:hover img,
.luxury-card:hover img {
  transform: scale(1.04);
}

.luxury-card,
.image-card,
.adventure-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.luxury-card:hover,
.image-card:hover,
.adventure-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.adventure-card__content {
  position: absolute;
  inset-inline-start: 26px;
  inset-inline-end: 26px;
  bottom: 28px;
  z-index: 2;
  color: #fff;
  display: grid;
  gap: 12px;
}

.icon-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
}

.icon-item {
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  text-align: right;
  box-shadow: var(--shadow-sm);
  display: grid;
  gap: 12px;
}

.icon-item .icon {
  color: var(--olive-700);
}

.icon-item strong {
  font-size: 1rem;
}

.icon-item span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

.luxury-card {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(12, 18, 18, 0.18);
}

.luxury-card__content {
  padding: 20px 22px 26px;
  background: #fff;
}

.scroll-row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 1fr);
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 10px;
  scroll-snap-type: x mandatory;
}

.scroll-row > * {
  scroll-snap-align: start;
}

.cta-banner {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: 360px;
  display: grid;
  align-items: center;
}

.cta-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.cta-banner__content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 56px;
  max-width: 560px;
}

.cta-banner__title {
  margin: 0 0 14px;
  font-size: clamp(1.9rem, 3.6vw, 3rem);
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 22px;
  box-shadow: var(--shadow-sm);
  display: grid;
  gap: 12px;
}

.feature-card__title {
  margin: 0;
  font-size: 1.05rem;
}

.feature-card__text {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.icon {
  width: 26px;
  height: 26px;
  color: var(--gold);
}

.icon--dark {
  color: var(--olive-700);
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.mt-3 {
  margin-top: 18px;
}

.mt-4 {
  margin-top: 22px;
}

.contact-info {
  display: grid;
  gap: 16px;
}

.contact-row {
  display: flex;
  gap: 12px;
  align-items: center;
}

.contact-row .ui-icon {
  width: 26px;
  height: 26px;
}

.badge {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(197, 164, 109, 0.15);
  color: var(--olive-700);
  font-size: 0.85rem;
  font-weight: 500;
}

.page-hero {
  position: relative;
  min-height: 56vh;
  margin-top: calc(-1 * var(--header-height));
  overflow: hidden;
  border-radius: 0 0 30px 30px;
}

.page-hero__media,
.page-hero__media picture {
  width: 100%;
  height: 100%;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 9, 8, 0.5) 0%, rgba(6, 9, 8, 0.2) 45%, rgba(6, 9, 8, 0.65) 100%);
}

.page-hero__content {
  position: absolute;
  inset-inline-start: 7%;
  bottom: 12%;
  color: #fff;
  z-index: 2;
  background: rgba(10, 14, 14, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 18px 20px;
  max-width: 520px;
  backdrop-filter: blur(6px);
}

.page-hero__title {
  font-size: clamp(2rem, 4vw, 3.4rem);
  margin: 0 0 12px;
}

.page-hero__text {
  margin: 0;
  max-width: 520px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
}

/* Philippines video hero */
.hero-video {
  position: relative;
  height: 90vh;
  min-height: 560px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.hero-video video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

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

.hero-video--philippines {
  background-image: url("./images/philippines/hero/philippines-banaue-rice-terraces-wide-aerial-hero-desktop.webp");
}

@media (max-width: 768px) {
  .hero-video {
    height: 70vh;
    min-height: 420px;
  }

  .hero-video video {
    display: none;
  }

  .hero-video--philippines {
    background-image: url("./images/philippines/hero/philippines-banaue-rice-terraces-wide-aerial-hero-mobile.webp");
  }
}

.two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  align-items: center;
}

.image-stack {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.image-stack__item {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  aspect-ratio: 4 / 3;
}

.cta-panel {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
  display: grid;
  gap: 20px;
}

.form {
  display: grid;
  gap: 16px;
}

.form__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.form label {
  font-size: 0.85rem;
  color: var(--muted);
  display: block;
  margin-bottom: 6px;
}

.form input,
.form select,
.form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(16, 22, 23, 0.12);
  background: #fff;
  font-family: inherit;
  font-size: 0.95rem;
}

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

.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: 2px solid rgba(197, 164, 109, 0.5);
  border-color: rgba(197, 164, 109, 0.6);
}

.masonry {
  column-count: 3;
  column-gap: 24px;
}

.masonry .card {
  margin: 0 0 24px;
  break-inside: avoid;
}

.site-footer {
  background: #f5f7ef;
  color: var(--olive-900);
  padding: 60px 0 30px;
  border-top: 1px solid rgba(31, 52, 47, 0.08);
}

.site-footer p {
  margin: 0;
  line-height: 1.7;
  color: rgba(16, 22, 23, 0.7);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 32px;
  margin-bottom: 40px;
}

.footer-grid > div {
  display: grid;
  gap: 10px;
  align-content: start;
}

.footer-grid h4 {
  margin: 0 0 14px;
  font-size: 1rem;
  color: var(--olive-900);
  letter-spacing: 0.3px;
}

.footer-grid a {
  display: block;
  margin-bottom: 12px;
  color: rgba(16, 22, 23, 0.7);
  transition: color 0.2s ease;
}

.footer-grid a:hover {
  color: var(--olive-900);
}

.footer-grid .btn {
  margin-top: 8px;
  width: fit-content;
}

.footer-bottom {
  border-top: 1px solid rgba(31, 52, 47, 0.12);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.9rem;
}

@media (max-width: 1100px) {
  .grid--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }

  .icon-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .section__header {
    flex-direction: column;
    align-items: flex-start;
  }

  .two-col {
    grid-template-columns: 1fr;
  }

  .form__row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 780px) {
  body {
    padding-top: 76px;
  }

  .site-header {
    height: 76px;
  }

  .menu-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
  }

  .nav {
    position: fixed;
    top: 76px;
    inset-inline: 0;
    background: #f5f7ef;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 6vw;
    transform: translateY(-120%);
    transition: transform 0.3s ease;
    box-shadow: var(--shadow-sm);
  }

  .site-header--overlay .nav__link {
    color: #1f2a1c;
  }

  .site-header--overlay .nav__link:hover,
  .site-header--overlay .nav__link:focus-visible,
  .site-header--overlay .nav__link.is-active {
    background: rgba(107, 125, 58, 0.12);
    color: #6b7d3a;
  }

  .nav.is-open {
    transform: translateY(0);
  }

  .nav__list {
    flex-direction: column;
    width: 100%;
  }

  .nav--minimal .nav__list {
    gap: 14px;
  }

  .nav--minimal .nav__link::after {
    display: none;
  }

  .nav__cta {
    margin-inline-start: 0;
    width: 100%;
  }

  .nav__cta .btn {
    width: 100%;
    justify-content: center;
  }

  .nav__submenu {
    position: static;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    box-shadow: none;
    padding: 6px 0 0;
  }

  .nav__submenu a {
    padding-inline-start: 0;
  }

  .grid--3 {
    grid-template-columns: 1fr;
  }

  .grid--2 {
    grid-template-columns: 1fr;
  }

  .grid--4 {
    grid-template-columns: 1fr;
  }

  .masonry {
    column-count: 1;
  }

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

  .cta-banner__content {
    padding: 32px;
  }

  .hero {
    height: 80vh;
    min-height: 480px;
  }

  .hero--single {
    height: 84vh;
    min-height: 520px;
  }

  .home-hero.hero--slider .hero__content {
    align-items: flex-end;
    padding-top: calc(var(--header-height) + 18px);
    padding-bottom: 12%;
  }

  .section {
    padding: 80px 0;
  }

  .logo-main {
    height: 44px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero__slide {
    transition: none;
  }

  .card img {
    transition: none;
  }
}

/* Homepage Premium Redesign */
.home-hero {
  height: 92vh;
  min-height: 660px;
}

.home-hero .hero__overlay {
  background: linear-gradient(180deg, rgba(7, 10, 10, 0.62) 0%, rgba(7, 10, 10, 0.35) 45%, rgba(7, 10, 10, 0.7) 100%);
}

.home-hero.hero--slider .hero__content {
  inset: 0;
  display: flex;
  align-items: center;
  padding-bottom: 10%;
  padding-top: calc(var(--header-height) + 48px);
  width: 100%;
  max-width: none;
}

.home-hero .hero__title {
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  line-height: 1.05;
  letter-spacing: 0.2px;
}

.home-hero .hero__text {
  font-size: 1.18rem;
  max-width: 540px;
}

.hero__panel {
  background: rgba(12, 16, 16, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 18px;
  padding: 24px 26px;
  backdrop-filter: blur(6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
  display: grid;
  gap: 12px;
  width: min(640px, 100%);
}

.hero__panel--single {
  width: min(560px, 100%);
}

.hero--single {
  height: 92vh;
  min-height: 640px;
}

.home-hero.hero--single .hero__overlay {
  background: linear-gradient(120deg, rgba(7, 10, 10, 0.78) 0%, rgba(7, 10, 10, 0.38) 55%, rgba(7, 10, 10, 0.62) 100%);
}

.home-hero.hero--single .hero__content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0;
  padding-top: calc(var(--header-height) * 0.6);
  padding-bottom: 0;
  margin: 0;
  max-width: none;
}

.home-hero.hero--single .hero__panel {
  background: rgba(9, 12, 12, 0.35);
  border-color: rgba(255, 255, 255, 0.2);
  padding: 30px 34px;
  gap: 18px;
}

.home-hero.hero--single .hero__title {
  font-size: clamp(2.7rem, 4.8vw, 4.8rem);
  letter-spacing: 0.2px;
}

.home-hero.hero--single .hero__text {
  font-size: 1.08rem;
  max-width: 520px;
  margin-bottom: 6px;
  line-height: 1.75;
}

.hero--lux .hero__eyebrow {
  letter-spacing: 2.6px;
  color: rgba(255, 255, 255, 0.72);
}

.hero--lux .hero__actions {
  gap: 12px;
}

.hero--lux .btn--primary {
  padding: 15px 32px;
}

.hero--lux .btn--ghost {
  border-color: rgba(255, 255, 255, 0.5);
}

.home-hero.hero--slider .hero__content .container {
  display: flex;
  justify-content: flex-start;
}

.hero__text span {
  display: block;
  margin-top: 8px;
}

.hero__panel .hero__text + .hero__text {
  margin-top: 12px;
}

.trust-bar {
  background: #0f1a17;
  color: #fff;
  padding: 26px 0;
}

.trust-bar--lux {
  background: #0b1413;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
  text-align: right;
  align-items: center;
}

.trust-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.85);
}

.trust-bar--lux .trust-item {
  font-size: 0.88rem;
  letter-spacing: 0.2px;
}

.trust-item .icon {
  width: 26px;
  height: 26px;
  color: #fff;
  margin: 0 auto;
}

.trust-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin: 0 auto;
}

.trust-item span {
  line-height: 1.4;
}

.team-section .section__subtitle {
  max-width: 760px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  align-items: stretch;
}

.team-panel {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  display: grid;
  gap: 16px;
}

.team-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  color: var(--olive-700);
}

.team-feature .ui-icon {
  width: 28px;
  height: auto;
}

.team-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

/* Destinations are equal size */

.adventure-grid--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.why-grid--compact {
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.community-actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.process-section {
  position: relative;
  overflow: hidden;
}

.process-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 48px;
}

.process-intro {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.process-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.process-connector {
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

.process-connector img {
  display: block;
  width: 100%;
  height: auto;
}

.process-connector-desktop {
  top: 34px;
  inset-inline: 6%;
}

.process-connector-mobile {
  display: none;
}

.process-card {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 22px;
  padding: 34px 24px 26px;
  box-shadow: 0 16px 40px rgba(18, 24, 22, 0.1);
  min-height: 280px;
  text-align: center;
  border: 1px solid rgba(31, 52, 47, 0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.process-card:hover,
.process-card:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 20px 44px rgba(18, 24, 22, 0.14);
}

.process-badge-wrap {
  position: relative;
  width: 76px;
  height: 76px;
  margin: 0 auto 18px;
}

.process-badge-svg {
  display: block;
  width: 76px;
  height: 76px;
}

.process-badge-number {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #ffffff;
  font-weight: 800;
  font-size: 1.7rem;
  line-height: 1;
}

.process-icon {
  margin: 0 auto 16px;
  width: 48px;
  height: 48px;
}

.process-icon img {
  display: block;
  width: 100%;
  height: 100%;
}

.process-card h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
}

.process-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.process-note {
  margin: 28px 0 0;
  text-align: center;
  color: var(--olive-700);
  font-weight: 600;
}

.icon-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.icon-link span {
  display: inline-block;
}

.whatsapp-float {
  position: fixed;
  inset-inline-end: 22px;
  bottom: 24px;
  background: #1f7d55;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 16px 40px rgba(13, 25, 22, 0.3);
  font-weight: 600;
  z-index: 80;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 46px rgba(13, 25, 22, 0.36);
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
}

.hero__meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.home-section {
  padding: 110px 0;
}

.home-section .section__header {
  margin-bottom: 50px;
}

.home-section .section__title {
  font-size: clamp(2.2rem, 4.4vw, 3.6rem);
}

.section--soft {
  background: linear-gradient(180deg, rgba(244, 239, 230, 0.7) 0%, rgba(244, 239, 230, 0.35) 100%);
}

.section--light {
  background: #fbfaf7;
}

.section--light-alt {
  background: #f5f1e8;
}

.section--olive-soft {
  background: rgba(31, 52, 47, 0.08);
}

.section--olive-medium {
  background: rgba(31, 52, 47, 0.16);
}

.section--olive-strong {
  background: #0f1a17;
  color: #fff;
}

.section--olive-strong .section__title,
.section--olive-strong .section__eyebrow {
  color: #fff;
}

.section--olive-strong .section__subtitle {
  color: rgba(255, 255, 255, 0.78);
}

.section--olive-medium .section__title,
.section--olive-medium .section__eyebrow,
.section--olive-medium .section__subtitle {
  color: var(--olive-900);
}

.dest-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.dest-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 22px 55px rgba(10, 14, 14, 0.2);
  display: grid;
  grid-template-rows: auto 1fr;
}

.dest-card::after {
  content: none;
}

.dest-card__content {
  position: static;
  z-index: 2;
  color: var(--charcoal);
  display: grid;
  gap: 10px;
  padding: 18px 20px 22px;
  background: #fff;
}

.dest-card__title {
  font-size: 1.35rem;
  font-weight: 600;
}

.dest-card__text {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.dest-card__link {
  color: var(--olive-700);
  font-weight: 600;
}

.section__cta {
  margin-top: 28px;
}

.dest-card img {
  aspect-ratio: 4 / 3;
  transition: transform 0.7s ease;
}

.dest-card:hover img {
  transform: scale(1.05);
}

.experience-grid {
  display: grid;
  gap: 26px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.experience-tile {
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-sm);
  display: grid;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.experience-tile__media {
  aspect-ratio: 3 / 2;
}

.experience-tile__media img {
  object-position: center;
}

.experience-tile__body {
  padding: 18px 22px 24px;
  display: grid;
  gap: 10px;
}

.experience-tile__icon {
  width: 28px;
  height: 28px;
}

.experience-tile__title {
  margin: 0;
  font-size: 1.15rem;
}

.experience-tile__text {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.experience-tile .icon {
  width: 28px;
  height: 28px;
  color: var(--olive-700);
}

.experience-tile img {
  transition: transform 0.6s ease;
}

.experience-tile:hover img {
  transform: scale(1.04);
}

.experience-tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.adventure-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.adventure-card {
  border-radius: 20px;
  aspect-ratio: 16 / 9;
}

.adventure-card__content h3 {
  margin: 0;
  font-size: 1.4rem;
}

.adventure-card__content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
}

.adventure-card__content .btn {
  width: fit-content;
}

.why-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.why-grid--extended {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.why-card {
  background: #fff;
  border-radius: 18px;
  padding: 22px;
  display: grid;
  gap: 12px;
  box-shadow: var(--shadow-sm);
  align-content: start;
}

.why-card strong {
  font-size: 1rem;
}

.why-card span {
  color: var(--muted);
  line-height: 1.75;
}

.why-card .ui-icon {
  width: 30px;
  height: 30px;
  margin-bottom: 4px;
}

.stay-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stay-card {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(10, 14, 14, 0.18);
  background: #fff;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.stay-card img {
  aspect-ratio: 4 / 3;
}

.stay-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.stay-card__body {
  padding: 20px 22px 26px;
}

.community-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.community-grid__item {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  aspect-ratio: 4 / 3;
}

.community-grid__item.is-wide {
  grid-column: span 2;
  aspect-ratio: 7 / 4;
}

.community-section .section__eyebrow {
  margin-bottom: 12px;
}

.community-intro {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  align-items: center;
  margin-bottom: 52px;
}

.community-intro__content {
  display: grid;
  gap: 12px;
}

.community-intro__subtitle {
  margin: 0;
  color: var(--olive-700);
  font-weight: 600;
  font-size: 1.08rem;
  line-height: 1.7;
}

.community-intro__text {
  margin: 0;
  color: var(--muted);
  line-height: 1.85;
}

.community-intro__text + .community-intro__text {
  margin-top: 12px;
}

.community-media {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
}

.community-media__main,
.community-media__stack img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 3;
}

.community-media__main img,
.community-media__stack img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.community-media__stack {
  display: grid;
  gap: 18px;
}

.community-benefits {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 48px;
}

.community-benefits__title {
  margin: 0 0 26px;
  font-size: 1.65rem;
  color: var(--olive-900);
}

.community-benefit {
  background: #fff;
  border-radius: 18px;
  padding: 22px 24px;
  box-shadow: var(--shadow-sm);
  display: grid;
  gap: 10px;
  align-content: start;
}

.community-benefit h3 {
  margin: 0;
  font-size: 1.05rem;
}

.community-benefit p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.community-cta {
  display: grid;
  gap: 24px;
}

.community-cta__title {
  margin: 0;
  font-size: 1.55rem;
  color: var(--olive-900);
}

.community-cta__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.community-cta-card {
  background: #fff;
  border-radius: 20px;
  padding: 26px;
  box-shadow: var(--shadow-sm);
  display: grid;
  gap: 12px;
}

.community-cta-card h4 {
  margin: 0;
  font-size: 1.2rem;
}

.community-cta-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.community-cta__actions {
  display: grid;
  gap: 12px;
}

.community-cta__actions .btn {
  justify-content: center;
  width: 100%;
}

.community-btn {
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 600;
  font-size: 0.95rem;
  color: #fff;
  box-shadow: 0 12px 26px rgba(12, 18, 18, 0.18);
  transition: transform 0.2s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.community-btn--facebook {
  background: #1b4fbf;
}

.community-btn--facebook:hover,
.community-btn--facebook:focus-visible {
  background: #153f99;
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(11, 36, 82, 0.32);
}

.community-btn--whatsapp {
  background: #1f7d55;
}

.community-btn--whatsapp:hover,
.community-btn--whatsapp:focus-visible {
  background: #176444;
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(10, 46, 31, 0.32);
}

.support-list,
.stay-highlights {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.support-list span,
.stay-highlights span {
  background: rgba(15, 26, 23, 0.08);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.88rem;
  color: var(--olive-700);
}

.steps-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.step-card {
  background: #fff;
  border-radius: 18px;
  padding: 22px;
  box-shadow: var(--shadow-sm);
  display: grid;
  gap: 12px;
  align-content: start;
}

.step-number {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(197, 164, 109, 0.2);
  color: var(--olive-700);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.faq-grid {
  display: grid;
  gap: 14px;
}

.faq-grid details {
  background: #fff;
  border-radius: 16px;
  padding: 16px 18px;
  box-shadow: var(--shadow-sm);
}

.faq-grid summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}

.faq-grid summary::-webkit-details-marker {
  display: none;
}

.faq-grid p {
  margin-top: 10px;
  color: var(--muted);
}

.final-cta__note {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.85);
}

.final-cta {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  min-height: 380px;
  display: grid;
  align-items: center;
}

.final-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(6, 9, 9, 0.6);
}

.final-cta__content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 64px;
  max-width: 560px;
}

.footer--premium .footer-grid {
  gap: 36px;
}

.footer--premium .footer-grid h4 {
  font-size: 1.05rem;
}

@media (max-width: 1100px) {
  .nav__list {
    flex-wrap: wrap;
    gap: 10px 12px;
  }

  .adventure-grid--four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .experience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .why-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .why-grid--extended {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .community-benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .community-cta__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .process-heading {
    margin-bottom: 36px;
  }

  .process-flow {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-inline-end: 78px;
  }

  .process-connector-desktop {
    display: none;
  }

  .process-connector-mobile {
    display: block;
    top: 24px;
    bottom: 24px;
    inset-inline-end: 36px;
    width: 48px;
  }

  .process-connector-mobile img {
    height: 100%;
    width: auto;
  }

  .process-card {
    min-height: unset;
    text-align: right;
    padding: 26px 22px 24px;
  }

  .process-badge-wrap {
    position: absolute;
    top: 24px;
    inset-inline-end: -58px;
    margin: 0;
  }

  .process-icon {
    margin: 0 0 14px;
  }

  .process-note {
    margin-top: 22px;
  }
}

@media (max-width: 900px) {
  .dest-grid,
  .stay-grid,
  .adventure-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .community-intro {
    grid-template-columns: 1fr;
  }

  .community-media {
    grid-template-columns: 1fr;
  }

  .community-media__stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .community-cta__grid {
    grid-template-columns: 1fr;
  }

  .community-grid {
    grid-template-columns: 1fr 1fr;
  }

  .steps-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .home-hero {
    height: 84vh;
    min-height: 520px;
  }

  .ui-icon {
    width: 24px;
    height: 24px;
  }

  .ui-icon--badge {
    width: 30px;
  }

  .whatsapp-float {
    inset-inline-end: 14px;
    bottom: 16px;
    padding: 10px 14px;
    font-size: 0.9rem;
  }

  .home-section {
    padding: 84px 0;
  }

  .hero__panel {
    padding: 20px;
  }

  .home-hero .hero__text {
    font-size: 1.02rem;
  }

  .experience-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .community-grid {
    grid-template-columns: 1fr;
  }

  .community-grid__item.is-wide {
    grid-column: span 1;
    aspect-ratio: 4 / 3;
  }

  .community-benefits {
    grid-template-columns: 1fr;
  }

  .community-media__stack {
    grid-template-columns: 1fr;
  }

  .community-cta-card {
    padding: 22px;
  }

  .final-cta__content {
    padding: 36px;
  }

  .trust-grid {
    grid-template-columns: 1fr 1fr;
    text-align: right;
  }

  .trust-item {
    text-align: right;
  }

  .trust-item .icon,
  .trust-icon,
  .trust-item .ui-icon {
    margin: 0;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Philippines page premium upgrade */
.page-philippines .section__header {
  margin-bottom: 44px;
}

.ph-hero {
  color: #fff;
}

.ph-hero .hero-overlay {
  background: rgba(7, 10, 10, 0.5);
}

.ph-hero .hero-video__content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  padding: clamp(140px, 18vh, 190px) 0 90px;
}

.ph-hero__panel {
  backdrop-filter: blur(6px);
  max-width: 640px;
}

.ph-dest-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.ph-dest-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-md);
  color: #fff;
}

.ph-dest-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.ph-dest-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 11, 11, 0.08) 0%, rgba(8, 11, 11, 0.75) 100%);
  transition: background 0.35s ease;
}

.ph-dest-card__content {
  position: relative;
  z-index: 2;
  padding: 26px;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
}

.ph-dest-card__content h3 {
  margin: 0;
  font-size: 1.35rem;
}

.ph-dest-card__content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
}

.ph-dest-card:hover img {
  transform: scale(1.05);
}

.ph-dest-card:hover::after {
  background: linear-gradient(180deg, rgba(8, 11, 11, 0.18) 0%, rgba(8, 11, 11, 0.85) 100%);
}

.ph-image-break {
  position: relative;
  height: 360px;
  overflow: hidden;
}

.ph-image-break img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ph-attractions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
}

.ph-attraction-card {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ph-attraction-card__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.ph-attraction-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.ph-attraction-card h3 {
  margin: 18px 18px 22px;
  font-size: 1.05rem;
}

.ph-attraction-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.ph-attraction-card:hover img {
  transform: scale(1.04);
}

.ph-category-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.ph-category-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  min-height: 260px;
  box-shadow: var(--shadow-md);
  color: #fff;
}

.ph-category-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.ph-category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 11, 11, 0.1) 0%, rgba(8, 11, 11, 0.78) 100%);
  transition: background 0.35s ease;
}

.ph-category-card__content {
  position: relative;
  z-index: 2;
  padding: 24px;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
}

.ph-category-card__content h3 {
  margin: 0;
  font-size: 1.3rem;
}

.ph-category-card__content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.ph-category-card:hover img {
  transform: scale(1.05);
}

.ph-category-card:hover::after {
  background: linear-gradient(180deg, rgba(8, 11, 11, 0.2) 0%, rgba(8, 11, 11, 0.86) 100%);
}

.ph-itinerary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 22px;
}

.ph-itinerary-card {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ph-itinerary-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.ph-itinerary-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.ph-itinerary-card__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(15, 26, 23, 0.88);
  color: #fff;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.ph-itinerary-card__body {
  padding: 18px 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ph-itinerary-card__body h3 {
  margin: 0;
  font-size: 1.1rem;
}

.ph-itinerary-card__body p {
  margin: 0;
  color: var(--muted);
}

.ph-itinerary-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.ph-itinerary-card:hover img {
  transform: scale(1.05);
}

.ph-tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.ph-tip-card {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ph-tip-card .ui-icon {
  width: 28px;
  height: 28px;
}

.ph-tip-card h3 {
  margin: 0;
  font-size: 1.05rem;
}

.ph-tip-card p {
  margin: 0;
  color: var(--muted);
}

@media (max-width: 1100px) {
  .ph-dest-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .ph-category-grid {
    grid-template-columns: 1fr;
  }

  .ph-hero .hero-video__content {
    padding: 120px 0 70px;
  }
}

@media (max-width: 720px) {
  .ph-dest-grid {
    grid-template-columns: 1fr;
  }

  .ph-image-break {
    height: 220px;
  }
}

/* Mobile optimization pass */
@media (max-width: 900px) {
  .site-header {
    padding: 10px 0;
  }

  .site-header__inner {
    gap: 12px;
  }

  .logo-main {
    max-height: 42px;
  }

  .nav__list {
    gap: 12px;
    padding: 14px 12px 22px;
  }

  .nav__link {
    padding: 10px 6px;
    font-size: 0.98rem;
  }

  .nav__submenu {
    padding: 10px;
  }

  .nav__submenu a {
    padding: 10px 8px;
  }

  .hero__actions,
  .btn-group,
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__actions .btn,
  .cta-actions .btn {
    width: 100%;
    text-align: center;
  }

  .home-hero,
  .hero-video,
  .page-hero {
    min-height: 62vh;
  }

  .hero__panel {
    max-width: 100%;
  }

  .hero__title {
    font-size: clamp(2rem, 6vw, 3.1rem);
  }

  .hero__text {
    font-size: 1rem;
  }

  .page-hero__title {
    font-size: clamp(1.9rem, 5.5vw, 3rem);
  }

  .page-hero__text {
    font-size: 1rem;
  }

  .section {
    padding: 70px 0;
  }

  .section__header {
    gap: 10px;
    margin-bottom: 32px;
  }

  .section__title {
    font-size: clamp(1.8rem, 4.6vw, 2.6rem);
  }

  .section__subtitle {
    font-size: 1rem;
  }

  .grid,
  .grid--3,
  .grid--4,
  .dest-grid,
  .experience-grid,
  .why-grid,
  .steps-grid,
  .ph-dest-grid,
  .ph-attractions-grid,
  .ph-category-grid,
  .ph-itinerary-grid,
  .ph-tips-grid,
  .community-grid {
    grid-template-columns: 1fr !important;
  }

  .card,
  .ph-dest-card,
  .ph-category-card,
  .ph-itinerary-card,
  .ph-attraction-card,
  .ph-tip-card,
  .why-card,
  .experience-tile {
    border-radius: 16px;
  }

  .card__body,
  .ph-itinerary-card__body,
  .ph-tip-card,
  .why-card {
    padding: 18px;
  }

  .image-stack,
  .community-media,
  .two-col {
    grid-template-columns: 1fr;
  }

  .community-media__stack {
    grid-template-columns: 1fr;
  }

  .ph-image-break {
    height: 200px;
  }

  .final-cta__content {
    padding: 28px 22px;
  }

  .final-cta h2 {
    font-size: clamp(1.8rem, 5vw, 2.6rem);
  }

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

  .footer-brand .btn {
    width: 100%;
  }

  .form__row {
    grid-template-columns: 1fr;
  }

  .form__actions .btn,
  .community-actions .btn,
  .community-btn {
    width: 100%;
  }
}

@media (max-width: 720px) {
  .site-header__inner {
    padding: 6px 0;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
  }

  .hero__panel {
    padding: 18px;
  }

  .hero__title {
    font-size: clamp(1.8rem, 7vw, 2.6rem);
  }

  .hero__actions {
    gap: 10px;
  }

  .section {
    padding: 60px 0;
  }

  .section__title {
    font-size: clamp(1.7rem, 5.4vw, 2.4rem);
  }

  .btn {
    min-height: 46px;
  }

  .nav__list {
    padding: 12px 10px 20px;
  }

  .nav__link {
    padding: 10px 4px;
  }

  .whatsapp-float {
    inset-inline-end: 14px;
    inset-block-end: 14px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .hero__text,
  .page-hero__text {
    font-size: 0.95rem;
  }

  .section__subtitle {
    font-size: 0.95rem;
  }

  .ph-image-break {
    height: 180px;
  }
}

/* Mobile nav color fix */
@media (max-width: 780px) {
  .nav {
    background: #f5f7ef;
    color: #1f2a1c;
  }

  .nav__link {
    color: #1f2a1c;
  }

  .nav__link:hover,
  .nav__link:focus-visible,
  .nav__link.is-active {
    color: #6b7d3a;
    background: rgba(107, 125, 58, 0.12);
  }

  .nav__submenu {
    background: #f5f7ef;
  }

  .nav__submenu a {
    color: #1f2a1c;
  }

  .nav__submenu a:hover,
  .nav__submenu a:focus-visible {
    color: #6b7d3a;
    background: rgba(107, 125, 58, 0.12);
  }
}

/* Mobile nav visibility & contrast hard-fix */
@media (max-width: 780px) {
  .site-header--overlay .nav,
  .site-header.is-scrolled .nav,
  .nav {
    background: #f5f7ef;
    color: #1f2a1c;
    z-index: 1000;
  }

  .site-header--overlay .nav__link,
  .site-header.is-scrolled .nav__link,
  .nav__link {
    color: #1f2a1c;
  }

  .site-header--overlay .nav__link:hover,
  .site-header--overlay .nav__link:focus-visible,
  .site-header--overlay .nav__link.is-active,
  .site-header.is-scrolled .nav__link:hover,
  .site-header.is-scrolled .nav__link:focus-visible,
  .site-header.is-scrolled .nav__link.is-active,
  .nav__link:hover,
  .nav__link:focus-visible,
  .nav__link.is-active {
    color: #6b7d3a;
    background: rgba(107, 125, 58, 0.12);
  }

  .nav__submenu {
    background: #f5f7ef;
    border: 1px solid rgba(31, 42, 28, 0.08);
  }

  .nav__submenu a {
    color: #1f2a1c;
  }

  .nav__submenu a:hover,
  .nav__submenu a:focus-visible {
    color: #6b7d3a;
    background: rgba(107, 125, 58, 0.12);
  }
}
