* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  :root {
    --cream: #faf8f5;
    --sand: #e8e2d9;
    --coral: #d4735c;
    --dark: #1a1a1a;
    --gray: #5a5a5a;
  }
  
  html {
    scroll-behavior: smooth;
    overflow-x: hidden;
  }
  
  body {
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    background: var(--cream);
    color: var(--dark);
    line-height: 1.65;
    font-size: 16px;
    overflow-x: hidden;
  }
  
  h1, h2, h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    letter-spacing: 0.02em;
  }
  
  /* Header */
  header {
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background: rgba(250, 248, 245, 0.9);
    backdrop-filter: blur(8px);
    position: fixed;
    left: 0;
    right: 0;
  }

  /* Logo – left side, animated */
  .header-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: var(--dark);
  }

  .header-logo .logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    transition: letter-spacing 0.4s ease, transform 0.3s ease, color 0.3s ease;
    animation: headerLogoIn 0.8s ease-out both;
  }

  .header-logo:hover .logo-text {
    letter-spacing: 0.12em;
    color: var(--coral);
  }

  .header-logo:focus-visible {
    outline: 2px solid var(--coral);
    outline-offset: 4px;
  }

  @keyframes headerLogoIn {
    from {
      opacity: 0;
      transform: translateX(-20px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  /* Right side: phone + tagline */
  .header-right {
    display: flex;
    align-items: center;
    gap: 2rem;
    animation: headerRightIn 0.8s ease-out 0.2s both;
  }

  @keyframes headerRightIn {
    from {
      opacity: 0;
      transform: translateX(20px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  .header-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--dark);
    text-decoration: none;
    letter-spacing: 0.02em;
    padding: 0.4rem 0.75rem;
    border-radius: 6px;
    transition: color 0.3s ease, background 0.3s ease, transform 0.3s ease;
    position: relative;
  }

  .header-phone:hover {
    color: var(--coral);
    background: rgba(209, 115, 92, 0.12);
    transform: scale(1.02);
  }

  .header-phone:hover .header-phone-icon {
    animation: phoneRing 0.5s ease-in-out;
  }

  .header-phone:focus-visible {
    outline: 2px solid var(--coral);
    outline-offset: 3px;
  }

  .header-phone-icon {
    font-size: 1rem;
    line-height: 1;
  }

  .header-phone-number {
    font-weight: 600;
  }

  @keyframes phoneRing {
    0%, 100% { transform: rotate(0); }
    15% { transform: rotate(-15deg); }
    30% { transform: rotate(15deg); }
    45% { transform: rotate(-10deg); }
    60% { transform: rotate(10deg); }
    75% { transform: rotate(-5deg); }
  }

  @media (prefers-reduced-motion: reduce) {
    .header-logo .logo-text,
    .header-right {
      animation: none;
    }
    .header-phone:hover .header-phone-icon {
      animation: none;
    }
  }

  @media (max-width: 768px) {
    .header-right {
      gap: 1rem;
    }
    .header-phone {
      font-size: 0.85rem;
      padding: 0.35rem 0.5rem;
    }
    .header-phone-icon {
      display: none;
    }
  }

  .header-tagline {
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gray);
  }
  
  /* Fullscreen Hero */
  .hero {
    width: 100vw;
    height: 100vh;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  
  /* .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.5) 100%);
    z-index: 1;
  } */
  
  .hero .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  
  .hero-content {
    position: relative;gallery-header
    z-index: 2;
    max-width: 720px;
    text-align: center;
    padding: 2rem;
    color: #fff;
  }
  
  .hero-tagline {
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 0.8rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    opacity: 0.95;
  }
  
  .hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: clamp(3.5rem, 10vw, 7rem);
    line-height: 1.05;
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
    text-shadow: 0 2px 40px rgba(0,0,0,0.4);
  }
  
  .hero p {
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }
  
  /* Buttons */
  .btn {
    display: inline-block;
    padding: 0.9rem 2rem;
    background: var(--coral);
    color: #fff !important;
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: opacity 0.2s, transform 0.2s;
  }
  
  .btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
  }
  
  .btn-outline {
    background: transparent;
    border: 2px solid #fff;
  }
  
  .btn-outline:hover {
    background: #fff;
    color: var(--dark) !important;
  }
  
  /* Sections */
  section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .section-header {
    text-align: center;
    margin-bottom: 2.5rem;
  }
  
  .section-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: clamp(2rem, 5vw, 3.25rem);
    letter-spacing: 0.02em;
    margin-bottom: 0.5rem;
    color: var(--dark);
  }
  
  .section-header p {
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    color: var(--gray);
    letter-spacing: 0.02em;
  }
  
  /* Packages */
  #packages {
    background: #fff;
    padding: 4rem 2rem;
    scroll-margin-top: 70px;
  }
  /* Trending section & header */
.trending-section {
    background: #fff;
    padding: 5rem 2rem;
    scroll-margin-top: 70px;
  }
  
  .trending-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .trending-label {
    display: inline-block;
    font-family: 'Outfit', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 1rem;
  }
  
  .trending-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: clamp(2rem, 5vw, 3.25rem);
    letter-spacing: 0.02em;
    color: var(--dark);
    margin-bottom: 0.75rem;
    line-height: 1.2;
  }
  
  .trending-header p {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.65;
    margin: 0;
  }
  
  @media (max-width: 768px) {
    .trending-section {
      padding: 3rem 1rem;
    }
  
    .trending-header {
      margin-bottom: 2rem;
    }
  
    .trending-label {
      font-size: 0.65rem;
      letter-spacing: 0.2em;
    }
  
    .trending-header h2 {
      font-size: clamp(1.75rem, 6vw, 2.5rem);
    }
  
    .trending-header p {
      font-size: 0.95rem;
    }
  }
  
  .filter-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 2rem;
  }
  
  .filter-tabs button {
    padding: 0.5rem 1rem;
    background: var(--sand);
    border: none;
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s;
  }
  
  .filter-tabs button:hover,
  .filter-tabs button.active {
    background: var(--coral);
    color: #fff;
  }
  
  .destination-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
  }
  
  .destination-card {
    background: var(--cream);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.2s;
    border-radius: 4px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  }
  
  .destination-card:hover {
    transform: translateY(-4px);
  }
  
  .destination-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
  }
  
  .destination-card-content {
    padding: 1.25rem;
  }
  
  .destination-price {
    font-weight: 700;
    color: var(--coral);
    font-size: 1.2rem;
    margin-bottom: 0.2rem;
  }
  
  .destination-location {
    font-size: 0.85rem;
    color: var(--gray);
    margin-bottom: 0.4rem;
  }
  
  .destination-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: 1.35rem;
    letter-spacing: 0.02em;
    margin-bottom: 0.5rem;
  }
  
  .destination-meta {
    font-size: 0.8rem;
    color: var(--gray);
    margin-bottom: 0.5rem;
  }
  
  .destination-tag {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    background: var(--sand);
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
  }
  
  .destination-card .link {
    font-weight: 600;
    color: var(--coral);
    font-size: 0.85rem;
  }
  
  /* Community */
  .community-section {
    background: linear-gradient(180deg, #f0ebe3 0%, var(--cream) 100%);
  }
  
  .community-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
  }
  
  .destination-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-top: 1.5rem;
  }
  
  .destination-tags span {
    padding: 0.6rem 1.25rem;
    background: #fff;
    font-weight: 500;
    font-size: 0.9rem;
    box-shadow: 0 1px 8px rgba(0,0,0,0.06);
  }
  
  /* ===== GALLERY SECTION (light, no background) ===== */
  .gallery-section {
    padding: clamp(4rem, 10vw, 6rem) clamp(1.5rem, 5vw, 2.5rem);
    color: var(--dark);
  }

  .gallery-section .gallery-section-inner {
    max-width: 1200px;
    margin: 0 auto;
  }

  /* Gallery header: flexible tour-web style (title left, CTA right) */
.gallery-header{
  position: relative;
}
  .gallery-section .gallery-header {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: clamp(1.5rem, 4vw, 2.5rem);
    margin-bottom: clamp(2.5rem, 6vw, 3.5rem);
    padding-bottom: clamp(1.5rem, 4vw, 2rem);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }

  .gallery-section .gallery-header-content {
    flex: 1 1 280px;
    min-width: 0;
  }

  .gallery-section .gallery-header-actions {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .gallery-section .gallery-label {
    display: inline-block;
    font-family: 'Outfit', sans-serif;
    font-size: clamp(0.65rem, 1.5vw, 0.75rem);
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 0.75rem;
  }

  .gallery-section .gallery-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: clamp(1.75rem, 4.5vw, 3rem);
    letter-spacing: 0.02em;
    color: var(--dark);
    margin-bottom: 0.5rem;
    line-height: 1.2;
  }

  .gallery-section .gallery-desc {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(0.9rem, 2vw, 1rem);
    color: var(--gray);
    line-height: 1.6;
    margin: 0;
    max-width: 42ch;
  }

  .gallery-section .gallery-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.35rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: clamp(0.8rem, 1.8vw, 0.9rem);
    color: #fff;
    background: var(--coral);
    text-decoration: none;
    border-radius: 8px;
    white-space: nowrap;
    transition: background 0.2s, color 0.2s, transform 0.2s;
  }

  .gallery-section .gallery-cta:hover {
    background: #b86a52;
    color: #fff;
    transform: translateY(-1px);
  }

  .gallery-section .gallery-cta:focus-visible {
    outline: 2px solid var(--coral);
    outline-offset: 3px;
  }

  @media (max-width: 640px) {
    .gallery-section .gallery-header {
      flex-direction: column;
      align-items: stretch;
      text-align: center;
    }
    .gallery-section .gallery-desc {
      max-width: none;
    }
    .gallery-section .gallery-header-actions {
      justify-content: center;
    }
  }

  /* Bento-style grid: 4 cols, some items span 2 */
  .gallery-section .gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(0.5rem, 1.5vw, 1rem);
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .gallery-section .gallery-item {
    margin: 0;
    min-height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  }

  .gallery-section .gallery-item--wide {
    grid-column: span 2;
  }

  .gallery-section .gallery-item-link {
    display: block;
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 12px;
    outline-offset: 2px;
  }

  .gallery-section .gallery-item--wide .gallery-item-link {
    aspect-ratio: 2 / 1;
  }

  .gallery-section .gallery-item-inner {
    position: absolute;
    inset: 0;
    overflow: hidden;
    border-radius: inherit;
  }

  .gallery-section .gallery-item-link::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent 50%);
    opacity: 0;
    transition: opacity 0.35s ease;
    border-radius: inherit;
    pointer-events: none;
  }

  .gallery-section .gallery-item-link:hover::after,
  .gallery-section .gallery-item-link:focus::after {
    opacity: 1;
  }

  .gallery-section .gallery-item-link:focus-visible {
    outline: 2px solid var(--coral);
  }

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

  .gallery-section .gallery-item-link:hover img,
  .gallery-section .gallery-item-link:focus img {
    transform: scale(1.06);
  }

  @media (prefers-reduced-motion: reduce) {
    .gallery-section .gallery-item-link img {
      transition: none;
    }
    .gallery-section .gallery-item-link:hover img,
    .gallery-section .gallery-item-link:focus img {
      transform: none;
    }
    .gallery-section .gallery-item-link::after {
      transition: none;
    }
  }

  .gallery-section .gallery-item img[loading="lazy"] {
    background: var(--sand);
  }

  @media (max-width: 768px) {
    .gallery-section .gallery-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 0.5rem;
    }

    .gallery-section .gallery-item--wide {
      grid-column: span 1;
    }

    .gallery-section .gallery-item--wide .gallery-item-link {
      aspect-ratio: 1;
    }
  }
  
  /* CTA */
  .cta-section {
    text-align: center;
    padding: 3rem 2rem;
  }
  
  .cta-section .btn {
    font-size: 0.9rem;
    padding: 1rem 2.5rem;
  }
  
  /* Footer */
  footer {
    text-align: center;
    padding: 1.5rem;
    font-size: 0.85rem;
    color: var(--gray);
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    header {
        padding: 0.75rem 1rem;
      }
    
      .header-right {
        gap: 1rem;
        justify-content: flex-end;
      }
    
      .header-tagline {
        display: none;
      }
    
      .header-phone {
        font-size: 0.85rem;
      }
  
    section {
      padding: 2.5rem 1rem;
    }
  }