  *,
  *::before,
  *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  :root {
    --gold: #b8942a;
    --gold-light: #d4b45a;
    --dark: #1a1a18;
    --charcoal: #2c2c28;
    --warm-white: #f8f5ef;
    --text-muted: #7a7668;
    --serif: 'Cormorant Garamond', Georgia, serif;
    --sans: 'Jost', sans-serif;
    --border: #e2ddd6;
    --ink: #1A1410;
    --cream: #F5F0E8;
    --rust: #8B3A1E;
    --sage: #5C6B52;
    --text-muted: #7A6E62;
    --white: #ffff;
  }

  html {
    scroll-behavior: smooth;
  }

  body {
    font-family: var(--sans);
    background: var(--warm-white);
    color: var(--dark);
    overflow-x: hidden;
  }

  /* ── TOP BAR ── */
  .topbar {
    background: var(--dark);
    color: #ccc;
    font-size: 12px;
    letter-spacing: 0.08em;
    padding: 8px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .topbar a {
    color: #ccc;
    text-decoration: none;
  }

  .topbar a:hover {
    color: var(--gold-light);
  }

  /* ── NAV ── */
  nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(248, 245, 239, 0.97);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(184, 148, 42, 0.2);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    height: 72px;
  }

  .nav-logo {
    font-family: var(--serif);
    font-size: 26px;
    font-weight: 600;
    color: var(--dark);
    letter-spacing: 0.04em;
    text-decoration: none;
    padding-top: 8px;
  }

  .nav-logo span {
    color: var(--gold);
  }

  .nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
  }

  .nav-links a {
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--charcoal);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
  }

  .nav-links a:hover {
    color: var(--gold);
  }

  .nav-cta {
    background: var(--gold);
    color: #fff;
    border: none;
    padding: 10px 22px;
    font-family: var(--sans);
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s;
    text-decoration: none;
  }

  .nav-cta:hover {
    background: var(--charcoal);
  }

  /* ── HERO ── */
  .hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
  }

  .hero-slides {
    position: absolute;
    inset: 0;
  }

  .hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.4s ease;
  }

  .hero-slide.active {
    opacity: 1;
  }

  .hero-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 26, 24, 0.75) 0%, rgba(26, 26, 24, 0.2) 50%, transparent 100%);
  }

  .hero-content {
    position: relative;
    z-index: 2;
    padding: 0 60px 80px;
    max-width: 700px;
    animation: fadeUp 1.2s ease both;
  }

  .hero-eyebrow {
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 16px;
  }

  .hero-title {
    font-family: var(--serif);
    font-size: clamp(44px, 7vw, 88px);
    font-weight: 300;
    color: #fff;
    line-height: 1.05;
    margin-bottom: 20px;
  }

  .hero-title em {
    font-style: italic;
    color: var(--gold-light);
  }

  .hero-sub {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 0.05em;
    margin-bottom: 36px;
    font-weight: 300;
  }

  .hero-btn {
    display: inline-block;
    border: 1px solid var(--gold-light);
    color: #fff;
    padding: 14px 36px;
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.3s, color 0.3s;
  }

  .hero-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
  }

  .hero-location {
    position: absolute;
    right: 60px;
    bottom: 80px;
    z-index: 2;
    writing-mode: vertical-rl;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
  }

  .hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
  }

  .hero-scroll::after {
    content: '';
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.4);
    animation: scrollLine 1.8s ease infinite;
  }

  @keyframes scrollLine {

    0%,
    100% {
      transform: scaleY(0);
      transform-origin: top;
    }

    50% {
      transform: scaleY(1);
      transform-origin: top;
    }
  }

  /* ── SECTION BASE ── */
  section {
    padding: 100px 60px;
  }

  .section-label {
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
  }

  .section-title {
    font-family: var(--serif);
    font-size: clamp(32px, 4vw, 54px);
    font-weight: 300;
    line-height: 1.15;
    color: var(--dark);
    margin-bottom: 20px;
  }

  .section-title em {
    font-style: italic;
    color: var(--gold);
  }

  .section-sub {
    font-size: 13px;
    color: var(--text-muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 50px;
  }

  .about-page {
    background: var(--dark);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }

  /* ── ABOUT ── */
  .about {
    background: var(--dark);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }

  .about-page-img {
    position: relative;
    height: 730px;
  }

  .about-page-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .about-img {
    position: relative;
    height: 520px;
  }

  .about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .about-img::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 60%;
    height: 60%;
    border: 1px solid var(--gold);
    z-index: 0;
  }

  .about-img img {
    position: relative;
    z-index: 1;
  }

  .about-text .section-label {
    color: var(--gold-light);
  }

  .about-text .section-title {
    color: #fff;
  }

  .about-text p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.8;
    margin-bottom: 16px;
    font-weight: 300;
  }

  .about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
  }

  .stat {
    border-left: 2px solid var(--gold);
    padding-left: 16px;
  }

  .stat-num {
    font-family: var(--serif);
    font-size: 36px;
    color: var(--gold-light);
    font-weight: 300;
  }

  .stat-label {
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 4px;
  }

  .experiences-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 20px;
    margin-bottom: 20px;
    background-color: #fff;
  }

  .experience-page-img img {
    width: 100%;
    height: 250px;
  }

  .experience-text {
    flex: 1;
  }

  .experience-text p {
    font-size: 15px;
  }

  /* ── EXPERIENCES ── */
  .experiences {
    background: var(--warm-white);
  }

  .exp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 50px;
  }

  .exp-card {
    position: relative;
    height: 420px;
    overflow: hidden;
    cursor: pointer;
  }

  .exp-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
  }

  .exp-card:hover img {
    transform: scale(1.07);
  }

  .exp-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 26, 24, 0.8) 0%, transparent 55%);
  }

  .exp-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 28px;
  }

  .exp-card-tag {
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 8px;
  }

  .exp-card-title {
    font-family: var(--serif);
    font-size: 24px;
    color: #fff;
    font-weight: 300;
  }

  /* ── GALLERY ── */
  .gallery {
    background: #f0ece4;
  }

  .destination-about-page {
    background: var(--dark);
    display: flex;
    align-items: center;
    text-align: center;
  }

  .destination-about-page .destination-section-label {
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
  }

  .destination-about-page .section-title {
    color: #fff;
  }

  .destination-about-text p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.8;
    margin-bottom: 16px;
    font-weight: 300;
  }

  .tours-about-page {
    background: var(--dark);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    text-align: center;
  }

  .tours-about-page .tours-section-label {
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
  }

  .tours-about-page .section-title {
    color: #fff;
  }

  .tours-about-text p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.8;
    margin-bottom: 16px;
    font-weight: 300;
  }

  .tour-page-img {
    position: relative;
    height: 730px;
  }

  .tour-page-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .tour-page-text-img {
    position: relative;
    height: 450px;
    margin-top: 10px;
  }

  .tour-page-text-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .experience-about-page {
    background: var(--dark);
    display: flex;
    text-align: center;
  }

  .experience-about-page .experience-section-label {
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
  }

  .experience-about-page .section-title {
    color: #fff;
  }

  .experience-about-text p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.8;
    margin-bottom: 16px;
    font-weight: 300;
  }

  .blog-about-page {
    background: var(--dark);
    display: flex;
    align-items: center;
    text-align: center;
  }

  .blog-about-page .blog-section-label {
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
  }

  .blog-about-page .section-title {
    color: #fff;
  }

  .blog-about-text p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.8;
    margin-bottom: 16px;
    font-weight: 300;
  }

  .contact-about-page {
    background: var(--dark);
    display: flex;
    text-align: center;
  }

  .contact-about-page .contact-section-label {
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
  }

  .contact-about-page .section-title {
    color: #fff;
  }

  .contact-about-text p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.8;
    margin-bottom: 16px;
    font-weight: 300;
  }

  /* ── DESTINATION PAGE ── */
  .destination-page {
    background: #f0ece4;
  }

  .destination-page .section-title {
    color: var(--dark);
  }

  .destination-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
    align-items: stretch;
  }

  .destination-page-card {
    height: 420px;
    display: flex;
    flex-direction: column;
    background: #fff;
    overflow: hidden;
  }

  .destination-page-card-img {
    height: 220px;
    overflow: hidden;
  }

  .destination-page-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
  }

  .destination-page-card:hover .destination-page-card-img img {
    transform: scale(1.05);
  }

  .destination-page-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
  }

  .destination-page-date {
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
  }

  .destination-page-title {
    font-family: var(--serif);
    font-size: 20px;
    color: var(--dark);
    margin-bottom: 12px;
    line-height: 1.3;
    font-weight: 400;
  }

  .destination-page-excerpt {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 16px;
  }

  .destination-page-link {
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    text-decoration: none;
    padding-bottom: 2px;
  }

  .desti-slider {
    margin: 0 auto;
    position: relative;
  }

  .desti-slide {
    display: none;
  }

  .desti-slide.active {
    display: block;
  }

  /* .desti-dots {
      display: flex;
      justify-content: center;
      gap: 10px;
      margin-top: 36px;
    }
    .desti-dot {
      width: 8px; height: 8px;
      border-radius: 50%;
      background: #fff;
      cursor: pointer;
      transition: background 0.2s;
      border: none;
    }
    .desti-dot.active { background: var(--gold); } */
  /* Buttons */
  .desti-slider-buttons {
    width: 100%;
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }

  .desti-slider-buttons #prevBtn,
  #nextBtn {
    background: var(--gold);
    color: var(--warm-white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin: 10px;
    cursor: pointer;
  }

  #prevBtn {
    left: 10px;
  }

  #nextBtn {
    right: 10px;
  }

  /* ── DESTINATIONS ── */
  .destinations {
    background: #f0ece4;
  }

  .dest-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 50px;
  }

  .dest-card {
    position: relative;
    overflow: hidden;
    height: 300px;
  }

  .dest-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
  }

  .dest-card:hover img {
    transform: scale(1.06);
  }

  .dest-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 26, 24, 0.65) 0%, transparent 60%);
  }

  .dest-card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
  }

  .dest-card-name {
    font-family: var(--serif);
    font-size: 22px;
    color: #fff;
    font-weight: 400;
  }

  .dest-card-type {
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold-light);
  }

  /* ── TOURS ── */
  .tours-page {
    background: var(--warm-white);
  }

  /* ── TOURS ── */
  .tours {
    background: var(--dark);
  }

  .tours .section-label {
    color: var(--gold-light);
  }

  .tours .section-title {
    color: #fff;
  }

  .tours .section-sub {
    color: rgba(255, 255, 255, 0.4);
  }

  .tours-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 50px;
  }

  .tour-card {
    background: var(--charcoal);
    overflow: hidden;
    transition: transform 0.3s;
  }

  .tour-card:hover {
    transform: translateY(-6px);
  }

  .tour-card-img {
    height: 220px;
    overflow: hidden;
  }

  .tour-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
  }

  .tour-card:hover .tour-card-img img {
    transform: scale(1.06);
  }

  .tour-card-body {
    padding: 24px;
  }

  .tour-days {
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
  }

  .tour-name {
    font-family: var(--serif);
    font-size: 22px;
    color: #fff;
    margin-bottom: 6px;
    font-weight: 300;
  }

  .tour-tagline {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 16px;
  }

  .tour-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 20px;
  }

  .tour-link {
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-light);
    text-decoration: none;
    border-bottom: 1px solid var(--gold);
    padding-bottom: 2px;
    transition: color 0.2s;
  }

  .tour-link:hover {
    color: #fff;
  }

  /* ── HOTELS ── */
  .hotels {
    background: var(--warm-white);
  }

  .hotels-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 50px;
  }

  .hotel-card {
    position: relative;
    height: 380px;
    overflow: hidden;
  }

  .hotel-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
  }

  .hotel-card:hover img {
    transform: scale(1.07);
  }

  .hotel-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 26, 24, 0.8) 0%, transparent 60%);
  }

  .hotel-card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 24px 20px;
  }

  .hotel-name {
    font-family: var(--serif);
    font-size: 20px;
    color: #fff;
    font-weight: 400;
  }

  .hotel-loc {
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-top: 4px;
  }

  /* ── TESTIMONIALS ── */
  .testimonials {
    background: var(--dark);
    text-align: center;
  }

  .testimonials .section-label {
    color: var(--gold-light);
  }

  .testimonials .section-title {
    color: #fff;
  }

  .testimonials .section-sub {
    color: rgba(255, 255, 255, 0.35);
  }

  .testi-slider {
    max-width: 720px;
    margin: 0 auto;
    position: relative;
  }

  .testi-slide {
    display: none;
  }

  .testi-slide.active {
    display: block;
    animation: fadeIn 0.6s ease;
  }

  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(12px);
    }

    to {
      opacity: 1;
      transform: none;
    }
  }

  .testi-quote {
    font-family: var(--serif);
    font-size: clamp(18px, 2.5vw, 24px);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    font-style: italic;
    font-weight: 300;
    margin-bottom: 32px;
  }

  .testi-quote::before {
    content: '\201C';
    color: var(--gold);
    font-size: 48px;
    line-height: 0;
    vertical-align: -20px;
    margin-right: 6px;
  }

  .testi-author {
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
  }

  .testi-country {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.35);
    margin-top: 4px;
  }

  .testi-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 36px;
  }

  .testi-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: background 0.2s;
    border: none;
  }

  .testi-dot.active {
    background: var(--gold);
  }

  /* ── BLOG ── */
  .blog {
    background: #f0ece4;
  }

  .blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
  }

  .blog-card {
    background: #fff;
    overflow: hidden;
  }

  .blog-card-img {
    height: 200px;
    overflow: hidden;
  }

  .blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
  }

  .blog-card:hover .blog-card-img img {
    transform: scale(1.05);
  }

  .blog-card-body {
    padding: 24px;
  }

  .blog-date {
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
  }

  .blog-title {
    font-family: var(--serif);
    font-size: 20px;
    color: var(--dark);
    margin-bottom: 12px;
    line-height: 1.3;
    font-weight: 400;
  }

  .blog-excerpt {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 16px;
  }

  .blog-link {
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    text-decoration: none;
    border-bottom: 1px solid var(--gold);
    padding-bottom: 2px;
  }

  /* ── OFFERS ── */
  .offers {
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--dark) 100%);
    position: relative;
    overflow: hidden;
  }

  .offers::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(184, 148, 42, 0.08) 0%, transparent 70%);
  }

  .offers .section-label {
    color: var(--gold-light);
  }

  .offers .section-title {
    color: #fff;
  }

  .offers .section-sub {
    color: rgba(255, 255, 255, 0.35);
  }

  .offers-grid {
    display: flex;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
  }

  .offer-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(184, 148, 42, 0.2);
    transition: border-color 0.3s;
  }

  .offer-card:hover {
    border-color: var(--gold);
  }

  .offer-card-img {
    height: 220px;
    overflow: hidden;
  }

  .offer-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .offer-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .offer-badge {
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 10px;
  }

  .offer-name {
    font-family: var(--serif);
    font-size: 20px;
    color: #fff;
    margin-bottom: 8px;
    font-weight: 400;
  }

  .offer-price {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 16px;
  }

  .offer-btn {
    display: inline-block;
    background: var(--gold);
    color: #fff;
    padding: 10px 20px;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    align-self: flex-start;
    transition: background 0.2s;
  }

  .offer-btn:hover {
    background: #fff;
    color: var(--dark);
  }

  .enquiry {
    display: grid;
    grid-template-columns: 1fr 1.35fr;
    min-height: 760px;
    overflow: hidden;
  }

  /* ── Left Info Panel ─────────────────────────────────────── */
  .enquiry-info {
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: #1a1208;
  }

  .enquiry-info-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.22;
  }

  .enquiry-info-inner {
    position: relative;
    z-index: 1;
    padding: 72px 52px;
    display: flex;
    flex-direction: column;
    gap: 28px;
    height: 100%;
  }

  .enquiry-info .section-label {
    color: #c9a86c;
    letter-spacing: .2em;
    font-size: .7rem;
    text-transform: uppercase;
    font-family: 'Jost', sans-serif;
    font-weight: 500;
  }

  .enquiry-info .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3.2vw, 2.8rem);
    font-weight: 300;
    color: #f5ede0;
    line-height: 1.2;
    margin: 0;
  }

  .enquiry-info .section-title em {
    font-style: italic;
    color: #c9a86c;
  }

  .enquiry-tagline {
    font-family: 'Jost', sans-serif;
    font-size: .92rem;
    color: #b8a88a;
    line-height: 1.7;
    max-width: 340px;
    margin: 0;
  }

  /* contact items */
  .enquiry-contact-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 8px;
  }

  .enquiry-contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
  }

  .enquiry-icon {
    font-size: 1.1rem;
    margin-top: 2px;
    opacity: .75;
  }

  .enquiry-contact-item>div {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .enquiry-contact-label {
    font-family: 'Jost', sans-serif;
    font-size: .72rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #c9a86c;
    font-weight: 500;
  }

  .enquiry-contact-item a,
  .enquiry-contact-item span:not(.enquiry-icon):not(.enquiry-contact-label) {
    font-family: 'Jost', sans-serif;
    font-size: .88rem;
    color: #d8ccba;
    text-decoration: none;
    line-height: 1.6;
    transition: color .2s;
  }

  .enquiry-contact-item a:hover {
    color: #c9a86c;
  }

  .enquiry-quote {
    margin: auto 0 0;
    padding: 20px 0 0;
    border-top: 1px solid rgba(201, 168, 108, .25);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    font-style: italic;
    color: #8a7a62;
    line-height: 1.6;
  }

  /* ── Right Form Panel ────────────────────────────────────── */
  .enquiry-form-wrap {
    background: #faf7f2;
    padding: 64px 60px 64px 56px;
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .enquiry-form-header {
    margin-bottom: 36px;
  }

  .enquiry-form-badge {
    display: inline-block;
    font-family: 'Jost', sans-serif;
    font-size: .68rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: #fff;
    background: var(--gold);
    padding: 5px 14px;
    margin-bottom: 14px;
  }

  .enquiry-form-header h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 400;
    color: #1a1208;
    margin: 0 0 8px;
  }

  .enquiry-form-header p {
    font-family: 'Jost', sans-serif;
    font-size: .88rem;
    color: #7a6d5e;
    margin: 0;
  }

  /* ── Form Layout ─────────────────────────────────────────── */
  .enquiry-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .form-row {
    width: 100%;
  }

  .form-row.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }

  .form-row.three-col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }

  .form-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
  }

  .form-group label {
    font-family: 'Jost', sans-serif;
    font-size: .75rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #4a3f30;
    font-weight: 500;
  }

  .form-group label small {
    font-size: .7rem;
    text-transform: none;
    letter-spacing: 0;
    color: #9a8c7a;
    font-weight: 400;
  }

  .req {
    color: #c9a86c;
  }

  /* Inputs */
  .enquiry-form input[type="text"],
  .enquiry-form input[type="email"],
  .enquiry-form input[type="tel"],
  .enquiry-form input[type="date"],
  .enquiry-form select,
  .enquiry-form textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid #ddd4c4;
    background: #fff;
    font-family: 'Jost', sans-serif;
    font-size: .88rem;
    color: #1a1208;
    outline: none;
    transition: border-color .2s, box-shadow .2s;
    border-radius: 0;
    box-sizing: border-box;
    appearance: none;
    -webkit-appearance: none;
  }

  .enquiry-form input::placeholder,
  .enquiry-form textarea::placeholder {
    color: #bbb0a0;
  }

  .enquiry-form input:focus,
  .enquiry-form select:focus,
  .enquiry-form textarea:focus {
    border-color: #c9a86c;
    box-shadow: 0 0 0 3px rgba(201, 168, 108, .12);
  }

  /* Select wrapper */
  .select-wrap {
    position: relative;
  }

  .select-wrap select {
    padding-right: 36px;
    cursor: pointer;
  }

  .select-arrow {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #9a8c7a;
    font-size: .8rem;
  }

  /* Textarea */
  .enquiry-form textarea {
    resize: vertical;
    min-height: 100px;
  }

  /* ── Counter widget ──────────────────────────────────────── */
  .counter-wrap {
    display: flex;
    align-items: center;
    border: 1px solid #ddd4c4;
    overflow: hidden;
    background: #fff;
  }

  .counter-wrap input[type="number"] {
    border: none;
    text-align: center;
    width: 100%;
    padding: 10px 4px;
    font-size: .95rem;
    font-family: 'Jost', sans-serif;
    color: #1a1208;
    font-weight: 500;
    box-shadow: none;
    -moz-appearance: textfield;
  }

  .counter-wrap input[type="number"]::-webkit-inner-spin-button,
  .counter-wrap input[type="number"]::-webkit-outer-spin-button {
    display: none;
  }

  .counter-btn {
    flex-shrink: 0;
    width: 36px;
    height: 100%;
    min-height: 40px;
    background: #f5ede0;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    color: #4a3f30;
    transition: background .2s, color .2s;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .counter-btn:hover {
    background: #c9a86c;
    color: #fff;
  }

  /* ── Interest Chips ──────────────────────────────────────── */
  .chip-group {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border: 1px solid #ddd4c4;
    cursor: pointer;
    font-family: 'Jost', sans-serif;
    font-size: .8rem;
    color: #4a3f30;
    background: #fff;
    transition: all .18s;
    user-select: none;
  }

  .chip input[type="checkbox"] {
    display: none;
  }

  .chip:hover {
    border-color: #c9a86c;
    color: #c9a86c;
  }

  .chip:has(input:checked) {
    background: var(--gold);
    border-color: var(--gold);
    color: #fff;
  }

  /* ── Form Footer ─────────────────────────────────────────── */
  .form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 4px;
  }

  .form-privacy {
    font-family: 'Jost', sans-serif;
    font-size: .76rem;
    color: #9a8c7a;
    margin: 0;
  }

  .form-privacy a {
    color: #c9a86c;
    text-decoration: none;
  }

  .form-privacy a:hover {
    text-decoration: underline;
  }

  /* Submit button */
  .enquiry-submit {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 36px;
    background: var(--gold);
    color: #f5ede0;
    border: none;
    cursor: pointer;
    font-family: 'Jost', sans-serif;
    font-size: .82rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    font-weight: 500;
    transition: background .25s, color .25s, gap .25s;
    white-space: nowrap;
  }

  .enquiry-submit:hover {
    background: #c9a86c;
    gap: 18px;
  }

  .btn-arrow {
    font-size: 1rem;
    transition: transform .25s;
  }

  .enquiry-submit:hover .btn-arrow {
    transform: translateX(4px);
  }

  /* ── Success Message ─────────────────────────────────────── */
  .form-success {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 32px;
    background: #f0ede8;
    text-align: center;
    border-left: 3px solid #c9a86c;
    animation: fadeIn .4s ease;
    text-transform: uppercase;
    color: var(--gold);
  }

  .form-success-icon {
    font-size: 2rem;
    color: #c9a86c;
  }

  .form-success p {
    font-family: 'Jost', sans-serif;
    font-size: .92rem;
    color: #4a3f30;
    line-height: 1.7;
    margin: 0;
  }

  .form-success.visible {
    display: flex !important;
  }

  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(8px);
    }

    to {
      opacity: 1;
      transform: none;
    }
  }

  /* ── CONTACT BANNER ── */
  .contact-banner {
    background: var(--gold);
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .contact-banner h2 {
    font-family: var(--serif);
    font-size: clamp(24px, 3vw, 38px);
    color: #fff;
    font-weight: 300;
  }

  .contact-banner h2 em {
    font-style: italic;
  }

  .contact-banner p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    margin-top: 6px;
  }

  .contact-banner-btn {
    background: #fff;
    color: var(--gold);
    padding: 16px 40px;
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    transition: background 0.2s, color 0.2s;
  }

  .contact-banner-btn:hover {
    background: var(--dark);
    color: #fff;
  }

  /* ── FOOTER ── */
  footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.5);
    padding: 80px 60px 40px;
  }

  .footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .footer-brand-name {
    font-family: var(--serif);
    font-size: 28px;
    color: #fff;
    font-weight: 400;
    margin-bottom: 16px;
  }

  .footer-brand-name span {
    color: var(--gold);
  }

  .footer-brand p {
    font-size: 13px;
    line-height: 1.8;
    margin-bottom: 20px;
  }

  .footer-contact-item {
    font-size: 13px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
  }

  .footer-contact-item span:first-child {
    color: var(--gold);
    font-size: 14px;
  }

  .footer-col h4 {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 500;
  }

  .footer-col ul {
    list-style: none;
  }

  .footer-col ul li {
    margin-bottom: 10px;
  }

  .footer-col ul li a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    transition: color 0.2s;
  }

  .footer-col ul li a:hover {
    color: var(--gold-light);
  }

  .footer-bottom {
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
  }

  .footer-awards {
    display: flex;
    gap: 16px;
    align-items: center;
  }

  .award-badge {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(184, 148, 42, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    text-align: center;
    line-height: 1.2;
  }

  .social-links {
    display: flex;
    gap: 14px;
  }

  .social-links a {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s;
  }

  .social-links a:hover {
    border-color: var(--gold);
    color: var(--gold);
  }

  /* ── VIEW ALL BTN ── */
  .view-all-wrap {
    text-align: center;
    margin-top: 50px;
  }

  .view-all {
    display: inline-block;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 13px 36px;
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
  }

  .view-all:hover {
    background: var(--gold);
    color: #fff;
  }

  .view-all-dark {
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.7);
    padding: 13px 36px;
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s;
  }

  .view-all-dark:hover {
    border-color: var(--gold);
    color: var(--gold);
  }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }

    to {
      opacity: 1;
      transform: none;
    }
  }

  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

  .reveal.visible {
    opacity: 1;
    transform: none;
  }

  .nav-toggle {
    display: none;
  }

  /* ── ARTICLE LAYOUT ── */
  .article-wrapper {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
    padding: 72px 48px;
    align-items: start;
  }

  /* ── MAIN CONTENT ── */
  .article-body {
    padding-right: 64px;
  }

  .article-intro {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    font-weight: 300;
    line-height: 1.6;
    color: #4a4640;
    padding-bottom: 10px;
    /* border-bottom: 1px solid var(--border); */
  }

  .article-section {
    margin-bottom: 25px;
  }

  .section-heading {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 25px;
  }

  .section-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.4rem;
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
    opacity: 0.6;
  }

  .blog-section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.55rem;
    font-weight: 600;
    color: var(--dark);
    letter-spacing: 0.01em;
  }

  .article-section p {
    font-size: 0.95rem;
    line-height: 1.85;
    color: #4a4640;
    font-weight: 300;
  }

  .pull-quote {
    margin: 48px 0 48px 0;
    padding: 28px 32px;
    border-left: 3px solid var(--gold);
    background: rgba(184, 155, 106, 0.06);
  }

  .pull-quote p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-style: italic;
    font-weight: 300;
    color: #3a3830;
    line-height: 1.5;
    margin: 0;
  }

  .article-image {
    margin: 48px 0;
    position: relative;
    overflow: hidden;
  }

  .article-image img,
  .article-image .img-placeholder {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
  }

  .img-placeholder {
    background: linear-gradient(135deg, #3d5040 0%, #6b7d55 40%, #a08b6a 70%, #c4a882 100%);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .img-placeholder-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.1em;
  }

  .image-caption {
    font-size: 0.72rem;
    color: var(--warm-gray);
    letter-spacing: 0.1em;
    margin-top: 12px;
    text-align: center;
    text-transform: uppercase;
  }

  .article-closing {
    margin-top: 56px;
    padding: 40px;
    background: var(--dark);
    color: #d4cfc8;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-style: italic;
    font-weight: 300;
    line-height: 1.65;
    text-align: center;
  }

  .article-closing strong {
    display: block;
    font-family: 'Jost', sans-serif;
    font-style: normal;
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
  }

  /* ── SIDEBAR ── */
  .sidebar {
    position: sticky;
    top: 96px;
  }

  .sidebar-card {
    background: white;
    border: 1px solid var(--border);
    padding: 32px;
    margin-bottom: 28px;
  }

  .sidebar-label {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
  }

  .sidebar-author {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
  }

  .author-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold) 0%, #8b7355 100%);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: white;
    font-weight: 600;
  }

  .author-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
  }

  .author-role {
    font-size: 0.7rem;
    color: var(--warm-gray);
    letter-spacing: 0.08em;
    margin-top: 2px;
  }

  .author-bio {
    font-size: 0.82rem;
    color: #6a6660;
    line-height: 1.7;
    font-weight: 300;
  }

  .tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .tag {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: 5px 12px;
    transition: all 0.2s;
    cursor: pointer;
    text-decoration: none;
  }

  .tag:hover {
    background: var(--gold);
    color: white;
  }

  .related-post {
    display: flex;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    cursor: pointer;
    text-decoration: none;
  }

  .related-post:last-child {
    border: none;
    padding-bottom: 0;
  }

  .related-thumb {
    width: 62px;
    height: 62px;
    flex-shrink: 0;
    background: linear-gradient(135deg, #4a5e3a, #8b7355);
    overflow: hidden;
  }

  .related-thumb.t2 {
    background: linear-gradient(135deg, #3d4a5e, #6b7d8e);
  }

  .related-thumb.t3 {
    background: linear-gradient(135deg, #5e3a3a, #8e6b6b);
  }

  .related-info {
    flex: 1;
  }

  .related-thumb img {
    width: 61px;
    height: 70px;
    display: block;
    object-fit: cover;
  }

  .related-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.3;
    margin-bottom: 4px;
    transition: color 0.2s;
  }

  .related-post:hover .related-title {
    color: var(--gold);
  }

  .related-date {
    font-size: 0.65rem;
    color: var(--warm-gray);
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .cta-card {
    background: var(--dark);
    padding: 32px;
    text-align: center;
  }

  .cta-card .sidebar-label {
    border-color: rgba(184, 155, 106, 0.3);
  }

  .cta-card p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    font-style: italic;
    color: #c4beb4;
    line-height: 1.6;
    margin-bottom: 24px;
  }

  .cta-btn {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--dark);
    background: var(--gold);
    padding: 13px 28px;
    text-decoration: none;
    transition: background 0.2s;
  }

  .cta-btn:hover {
    background: var(--gold-light);
  }

  /* ── DIVIDER ── */
  .ornament-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 25px 0;
  }

  .ornament-line {
    flex: 1;
    height: 1px;
    background: var(--border);
  }

  .ornament-diamond {
    width: 6px;
    height: 6px;
    background: var(--gold);
    transform: rotate(45deg);
  }

  /* ── INTRO SPLIT ── */
  .destination-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 70vh;
    padding-bottom: 0;
    font-weight: 300;
  }

  .destination-intro-image {
    position: relative;
    overflow: hidden;
  }

  .destination-intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
  }

  .destination-intro-image:hover img {
    transform: scale(1.03);
  }

  .destination-intro-image-overlay {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background: var(--ink);
    padding: 0.75rem 1.25rem;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
  }

  .destination-intro-text {
    padding: 5rem 4.5rem;
    background: var(--cream);
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .destination-section-tag {
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }

  .destination-section-tag::before {
    content: '';
    display: block;
    width: 28px;
    height: 1px;
    background: var(--gold);
  }

  .destination-intro-text h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 400;
    line-height: 1.2;
    color: var(--ink);
    margin-bottom: 1rem;
  }

  .destination-intro-text h2 em {
    color: var(--rust);
    font-style: italic;
  }

  .destination-intro-text p {
    font-size: 0.95rem;
    line-height: 1.85;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
  }

  .destination-intro-stats {
    display: flex;
    gap: 3rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
  }

  .destination-stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
  }

  .destination-stat-label {
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 0.3rem;
  }

  /* ── EXPERIENCES ── */
  .destination-experiences {
    padding: 7rem 6rem;
    background: var(--warm-white);
  }

  .destination-section-header {
    text-align: center;
    margin-bottom: 4rem;
  }

  .destination-section-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 400;
    color: var(--ink);
    margin-bottom: 0.75rem;
  }

  .destination-section-header p {
    font-size: 0.9rem;
    color: var(--text-muted);
    max-width: 480px;
    margin: 0 auto;
    font-weight: 300;
  }

  .destination-divider {
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin: 1.5rem auto;
  }

  .destination-exp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--border);
  }

  .destination-exp-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    background: var(--cream);
    cursor: pointer;
  }

  .destination-exp-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s;
    filter: brightness(0.85) saturate(0.9);
  }

  .destination-exp-card:hover img {
    transform: scale(1.06);
    filter: brightness(0.7) saturate(1);
  }

  .destination-exp-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 20, 16, 0.9) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    transition: background 0.4s;
  }

  .destination-exp-card:hover .destination-exp-card-overlay {
    background: linear-gradient(to top, rgba(26, 20, 16, 0.95) 0%, rgba(26, 20, 16, 0.2) 60%);
  }

  .destination-exp-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    font-weight: 300;
    color: rgba(184, 149, 90, 0.25);
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    line-height: 1;
    pointer-events: none;
  }

  .destination-exp-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--cream);
    margin-bottom: 0.5rem;
  }

  .destination-exp-card p {
    font-size: 0.8rem;
    line-height: 1.6;
    color: rgba(245, 240, 232, 0.7);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
  }

  .destination-exp-card:hover p {
    max-height: 100px;
  }

  .destination-exp-card-tag {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.5rem;
  }

  .destination-exp-card-arrow {
    margin-top: 1rem;
    width: 32px;
    height: 32px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s, transform 0.4s;
    color: var(--gold);
    font-size: 0.9rem;
  }

  .destination-exp-card:hover .exp-card-arrow {
    opacity: 1;
    transform: translateY(0);
  }

  /* ── HIGHLIGHT STRIP ── */
  .destination-highlight-strip {
    background: var(--ink);
    padding: 5rem 6rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
  }

  .destination-highlight-strip h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 300;
    color: var(--cream);
    line-height: 1.3;
  }

  .destination-highlight-strip h2 span {
    color: var(--gold);
    font-style: italic;
  }

  .destination-highlight-list {
    list-style: none;
  }

  .destination-highlight-list li {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(184, 149, 90, 0.12);
    font-size: 0.85rem;
    line-height: 1.6;
    color: rgba(245, 240, 232, 0.65);
  }

  .destination-highlight-list li:first-child {
    border-top: 1px solid rgba(184, 149, 90, 0.12);
  }

  .destination-hl-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    margin-top: 0.1rem;
  }

  .destination-hl-title {
    font-weight: 500;
    color: var(--cream);
    font-size: 0.9rem;
  }

  /* ── PRACTICAL INFO ── */
  .destination-practical {
    padding: 6rem;
    background: var(--cream);
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3px;
    background-color: var(--border);
  }

  .destination-prac-card {
    background: var(--warm-white);
    padding: 3rem 2.5rem;
    border-bottom: 3px solid transparent;
    transition: border-color 0.3s;
  }

  .destination-prac-card:hover {
    border-color: var(--gold);
  }

  .destination-prac-icon {
    font-size: 1.8rem;
    margin-bottom: 1.25rem;
  }

  .destination-prac-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 0.75rem;
  }

  .destination-prac-card p {
    font-size: 0.85rem;
    line-height: 1.7;
    color: var(--text-muted);
    font-weight: 300;
  }
  
  /* TOUR NAV TABS */
  .tour-tabs {
    background: var(--dark);
    display: flex;
    overflow-x: auto;
  }

  .tour-tab {
    padding: 18px 36px;
    font-size: 12px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .5);
    cursor: pointer;
    border-bottom: 3px solid transparent;
    white-space: nowrap;
    transition: color .2s, border-color .2s;
    flex-shrink: 0;
    font-weight: 500;
  }

  .tour-tab:hover {
    color: rgba(255, 255, 255, .8);
  }

  .tour-tab.active {
    color: var(--gold);
    border-bottom-color: var(--gold);
  }

  /* TOUR PANELS */
  .tour-panel {
    display: none;
  }

  .tour-panel.active {
    display: block;
  }

  /* TOUR HEADER */
  .tour-header {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 0;
    min-height: 520px;
  }

  .tour-header-img {
    position: relative;
    overflow: hidden;
  }

  .tour-header-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 520px;
  }

  .tour-header-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 12, 6, .3) 0%, transparent 60%);
  }

  .tour-header-info {
    background: var(--cream);
    padding: 56px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .tour-category {
    font-size: 11px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 12px;
  }

  .tour-header-info h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.6rem;
    font-weight: 300;
    color: var(--dark);
    line-height: 1.1;
  }

  .tour-header-info h2 em {
    font-style: italic;
    color: var(--gold);
  }

  .tour-tagline-text {
    font-size: 15px;
    color: var(--text-light);
    margin-top: 8px;
    font-style: italic;
  }

  .tour-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 32px;
  }

  .meta-item {
    background: var(--white);
    padding: 16px 20px;
    border-left: 3px solid var(--gold);
  }

  .meta-label {
    font-size: 10px;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 4px;
  }

  .meta-value {
    font-size: 15px;
    color: var(--dark);
    font-weight: 600;
  }

  .tour-header-info p.tour-summary {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text);
    margin-top: 24px;
  }

  .tour-header-cta {
    margin-top: 28px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold);
    color: var(--white);
    padding: 14px 28px;
    font-size: 12px;
    letter-spacing: .12em;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 700;
    transition: background .2s;
  }

  .tour-header-cta:hover {
    background: var(--dark);
  }

  /* HIGHLIGHTS BAR */
  .highlights-bar {
    background: var(--dark);
    padding: 32px 80px;
    display: flex;
    gap: 0;
    align-items: stretch;
    flex-wrap: wrap;
  }

  .highlight-item {
    flex: 1;
    min-width: 160px;
    padding: 16px 24px;
    border-right: 1px solid #2e2e2e;
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .highlight-item:last-child {
    border-right: none;
  }

  .hi-icon {
    font-size: 22px;
    flex-shrink: 0;
  }

  .hi-text {
    font-size: 13px;
    color: rgba(255, 255, 255, .75);
    line-height: 1.4;
  }

  .hi-text strong {
    color: var(--white);
    display: block;
    font-size: 12px;
    letter-spacing: .05em;
  }

  /* ITINERARY */
  .itinerary-section {
    padding: 80px;
    background: var(--white);
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 64px;
    align-items: start;
  }

  .itinerary-head {
    margin-bottom: 40px;
  }

  .itinerary-head .section-label {
    display: block;
  }

  .itinerary-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 300;
    color: var(--dark);
    margin-top: 8px;
  }

  .itinerary-title em {
    font-style: italic;
    color: var(--gold);
  }

  .day-item {
    display: flex;
    gap: 24px;
    margin-bottom: 0;
    position: relative;
  }

  .day-item::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 44px;
    bottom: -20px;
    width: 1px;
    background: #e5ddd0;
  }

  .day-item:last-child::before {
    display: none;
  }

  .day-num-wrap {
    flex-shrink: 0;
    padding-top: 4px;
  }

  .day-num {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .05em;
    position: relative;
    z-index: 1;
  }

  .day-content {
    padding: 4px 0 32px;
    flex: 1;
  }

  .day-label {
    font-size: 10px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 4px;
  }

  .day-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    color: var(--dark);
    font-weight: 400;
    margin-bottom: 8px;
  }

  .day-desc {
    font-size: 14px;
    line-height: 1.78;
    color: var(--text);
  }

  .day-activities {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 10px;
  }

  .day-activity {
    font-size: 11px;
    background: var(--cream);
    color: var(--text);
    padding: 3px 10px;
    border: 1px solid #e2dbd0;
    letter-spacing: .04em;
  }

  /* SIDEBAR */
  .tour-sidebar {
    position: sticky;
    top: 90px;
  }

  .sidebar-card {
    background: var(--cream);
    border: 1px solid #e5ddd0;
    padding: 32px;
    margin-bottom: 24px;
  }

  .sidebar-card h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    color: var(--dark);
    margin-bottom: 20px;
    font-weight: 400;
  }

  .incl-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 12px;
    font-size: 13px;
    color: var(--text);
    line-height: 1.5;
  }

  .incl-icon {
    color: var(--gold);
    font-size: 14px;
    flex-shrink: 0;
    margin-top: 1px;
  }

  .excl-icon {
    color: #cc6666;
    font-size: 14px;
    flex-shrink: 0;
    margin-top: 1px;
  }

  .sidebar-btn {
    display: block;
    background: var(--gold);
    color: var(--white);
    padding: 16px;
    text-align: center;
    font-size: 12px;
    letter-spacing: .12em;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 700;
    transition: background .2s;
    margin-bottom: 10px;
  }

  .sidebar-btn:hover {
    background: var(--dark);
  }

  .sidebar-btn.outline {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
  }

  .sidebar-btn.outline:hover {
    background: var(--gold);
    color: var(--white);
  }

  /* OTHER TOURS */
  .other-tours {
    padding: 80px;
    background: var(--cream);
  }

  .ot-head {
    margin-bottom: 48px;
  }

  .ot-head .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 300;
    color: var(--dark);
    margin-top: 8px;
  }

  .ot-head .section-title em {
    font-style: italic;
    color: var(--gold);
  }

  .ot-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .ot-card {
    background: var(--white);
    overflow: hidden;
    cursor: pointer;
    transition: transform .3s, box-shadow .3s;
  }

  .ot-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 50px rgba(0, 0, 0, .1);
  }

  .ot-img {
    aspect-ratio: 16/9;
    overflow: hidden;
    position: relative;
  }

  .ot-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s;
    display: block;
  }

  .ot-card:hover .ot-img img {
    transform: scale(1.06);
  }

  .ot-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--gold);
    color: var(--white);
    font-size: 10px;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 4px 10px;
    font-weight: 600;
  }

  .ot-body {
    padding: 22px 24px 26px;
  }

  .ot-days {
    font-size: 11px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
  }

  .ot-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    color: var(--dark);
    margin-top: 5px;
  }

  .ot-link {
    display: inline-flex;
    gap: 5px;
    margin-top: 12px;
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid transparent;
    transition: border-color .2s;
  }

  .ot-link:hover {
    border-color: var(--gold);
  }

  /* INTRO STRIP */
  .intro-strip {
    background: var(--white);
    padding: 64px 80px;
    display: flex;
    gap: 80px;
    align-items: center;
  }

  .intro-text {
    flex: 1;
  }

  .intro-strip h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.3rem;
    font-weight: 300;
    color: var(--dark);
    line-height: 1.2;
    margin-top: 8px;
  }

  .intro-strip h2 em {
    font-style: italic;
    color: var(--gold);
  }

  .intro-strip p {
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.85;
    color: var(--text);
    max-width: 560px;
  }

  .intro-stats {
    display: flex;
    gap: 48px;
    flex-shrink: 0;
  }

  .istat {
    text-align: center;
  }

  .istat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.2rem;
    color: var(--gold);
    font-weight: 300;
    line-height: 1;
  }

  .istat-label {
    font-size: 11px;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-top: 6px;
  }

  /* MAP SECTION */
  .map-section {
    padding: 88px 80px;
    background: var(--white);
  }

  .section-head {
    text-align: center;
    margin-bottom: 60px;
  }

  .section-head .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 300;
    color: var(--dark);
    margin-top: 8px;
  }

  .section-head .section-title em {
    font-style: italic;
    color: var(--gold);
  }

  .section-head p {
    margin-top: 14px;
    color: var(--text-light);
    font-size: 14px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
  }

  .map-container {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 64px;
    align-items: start;
  }

  .sri-lanka-map-wrap {
    position: relative;
  }

  .sri-lanka-map-wrap img {
    height: 900px;
    width: auto;
  }

  /* LEGEND */
  .map-legend {
    background: var(--cream);
    border: 1px solid #e5ddd0;
    padding: 36px;
  }

  .map-legend h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--dark);
  }

  .legend-sub {
    font-size: 12px;
    color: var(--text-light);
    letter-spacing: .05em;
    margin: 6px 0 24px;
  }

  .location-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 10px;
    border-bottom: 1px solid #e5ddd0;
    transition: background .15s;
    border-radius: 3px;
  }

  .location-item:last-child {
    border-bottom: none;
  }

  .loc-dot {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 12px;
    font-weight: 700;
    color: var(--white);
    margin-top: 2px;
  }

  .loc-info h4 {
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
  }

  .loc-info p {
    font-size: 12px;
    color: var(--text-light);
    margin-top: 3px;
    line-height: 1.5;
  }

  .loc-tag {
    display: inline-block;
    font-size: 10px;
    letter-spacing: .09em;
    text-transform: uppercase;
    background: rgba(184, 152, 90, .15);
    color: var(--gold);
    padding: 2px 7px;
    border-radius: 2px;
    margin-top: 5px;
  }

  /* TOUR TYPES */
  .tour-types {
    padding: 88px 80px;
    background: var(--dark);
  }

  .tour-types .section-head .section-title {
    color: var(--white);
  }

  .tour-types .section-head p {
    color: rgba(255, 255, 255, .45);
  }

  .adv-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3px;
    margin-top: 48px;
  }

  .adv-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    cursor: pointer;
  }

  .adv-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
    display: block;
  }

  .adv-item:hover img {
    transform: scale(1.08);
  }

  .adv-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 12, 6, .88) 0%, transparent 55%);
  }

  .adv-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px 22px;
  }

  .adv-icon {
    font-size: 26px;
    display: block;
    margin-bottom: 8px;
  }

  .adv-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    color: var(--white);
    font-weight: 400;
  }

  .adv-desc {
    font-size: 12px;
    color: rgba(255, 255, 255, .6);
    margin-top: 5px;
    line-height: 1.5;
  }

  /* TOURS PREVIEW */
  .tours-preview {
    padding: 88px 80px;
    background: var(--cream);
  }

  .tp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }

  .tp-card {
    background: var(--white);
    overflow: hidden;
    transition: transform .35s, box-shadow .35s;
  }

  .tp-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 22px 64px rgba(0, 0, 0, .13);
  }

  .tp-card-img {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
  }

  .tp-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .55s;
    display: block;
  }

  .tp-card:hover .tp-card-img img {
    transform: scale(1.07);
  }

  .tp-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    background: var(--gold);
    color: var(--white);
    font-size: 10px;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 5px 12px;
    font-weight: 600;
  }

  .tp-body {
    padding: 28px 28px 32px;
  }

  .tp-days {
    font-size: 11px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
  }

  .tp-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.7rem;
    color: var(--dark);
    font-weight: 400;
    margin-top: 6px;
    line-height: 1.1;
  }

  .tp-tagline {
    font-size: 13px;
    color: var(--text-light);
    margin-top: 5px;
    font-style: italic;
  }

  .tp-desc {
    font-size: 14px;
    line-height: 1.78;
    color: var(--text);
    margin-top: 14px;
  }

  .tp-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 16px;
  }

  .tp-highlight {
    font-size: 11px;
    letter-spacing: .05em;
    background: var(--cream);
    color: var(--text);
    padding: 4px 10px;
    border: 1px solid #e2dbd0;
  }

  .tp-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 22px;
    font-size: 12px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid transparent;
    padding-bottom: 2px;
    transition: border-color .2s;
  }

  .tp-link:hover {
    border-color: var(--gold);
  }
  
  /* ── Layout ── */
  .itinerary-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: start;
  }

  /* ── Accordion ── */
  .accordion {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .acc-item {
    border: 0.5px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    background: var(--white);
    transition: box-shadow .2s;
  }

  .acc-item.open {
    box-shadow: 0 4px 20px rgba(154, 139, 95, 0.12);
  }

  .acc-head {
    display: flex;
    align-items: stretch;
    cursor: pointer;
    user-select: none;
  }

  .acc-day-tab {
    background: var(--gold);
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .1em;
    padding: 0 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 110px;
    flex-shrink: 0;
    transition: background .15s;
  }

  .acc-item.open .acc-day-tab {
    background: var(--gold);
  }

  .acc-label-wrap {
    background: var(--beige);
    flex: 1;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    transition: background .15s;
  }

  .acc-head:hover .acc-label-wrap {
    background: var(--beige-dark);
  }

  .acc-item.open .acc-label-wrap {
    background: var(--beige-dark);
  }

  .acc-title {
    font-size: 15px;
    font-weight: 400;
    color: var(--text-dark);
    font-family: 'Cormorant Garamond', serif;
    font-size: 17px;
    line-height: 1.3;
  }

  .acc-chevron {
    width: 24px;
    height: 24px;
    border: 0.5px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform .28s ease, background .15s;
  }

  .acc-chevron svg {
    width: 10px;
    height: 10px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke .15s;
  }

  .acc-item.open .acc-chevron {
    transform: rotate(180deg);
    background: var(--gold);
  }

  .acc-item.open .acc-chevron svg {
    stroke: #fff;
  }

  /* Body */
  .acc-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
  }

  .acc-body-inner {
    padding: 22px 24px 24px;
    border-top: 0.5px solid var(--border);
  }

  .acc-desc {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-mid);
    margin-bottom: 16px;
  }

  .tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .itinerary-tag {
    font-size: 11.5px;
    font-weight: 400;
    letter-spacing: .04em;
    padding: 5px 13px;
    border: 1px solid #e2dbd0;
    color: var(--gold-dark);
    background: var(--cream);
  }

/* ── HERO BANNER ── */
  .page-hero {
    background: var(--dark);
    padding: 80px 40px 70px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .page-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
  }

  .hero-label {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid var(--border);
    padding: 6px 18px;
    border-radius: 2px;
    margin-bottom: 22px;
  }

  .page-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(38px, 5vw, 58px);
    font-weight: 300;
    color: #fff;
    letter-spacing: 0.02em;
    line-height: 1.1;
  }

  .page-hero h1 em {
    font-style: italic;
    color: var(--gold-light);
  }

  .hero-meta {
    margin-top: 18px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.05em;
  }

  /* ── CONTENT WRAP ── */
   .content-wrap {
    max-width: 780px;
    margin: 0 auto;
    padding: 60px 40px 100px;
    line-height: 1.75;
  }

  .content .section {
    margin-bottom: 52px;
  }

  .section-number {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 8px;
  }

  .content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 400;
    color: var(--dark);
    margin-bottom: 18px;
    line-height: 1.25;
  }

  .content p {
    color: #3d4f40;
    margin-bottom: 14px;
  }

  .content ul,
  .content ol {
    padding-left: 20px;
    margin-bottom: 14px;
  }

  .content li {
    color: #3d4f40;
    margin-bottom: 7px;
  }

  .content li::marker {
    color: var(--gold);
  }

  .highlight-box {
    background: linear-gradient(135deg, rgba(197, 150, 58, 0.07), rgba(197, 150, 58, 0.03));
    border: 1px solid var(--border);
    border-left: 3px solid var(--gold);
    border-radius: 0 4px 4px 0;
    padding: 20px 24px;
    margin: 20px 0;
  }

  .highlight-box p {
    margin: 0;
    font-size: 14px;
  }

  .info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 20px 0;
  }

  .info-card {
    background: #fff;
    border: 1px solid rgba(197, 150, 58, 0.18);
    border-radius: 6px;
    padding: 18px 20px;
  }

  .info-card h4 {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold);
    margin-bottom: 6px;
    font-weight: 500;
  }

  .info-card p {
    font-size: 13px;
    margin: 0;
  }

  .section-divider {
    height: 1px;
    background: linear-gradient(90deg, var(--border), transparent);
    margin-bottom: 52px;
  }

  a.inline-link {
    color: var(--gold);
    text-decoration: none;
    border-bottom: 1px solid rgba(197, 150, 58, 0.4);
  }

  a.inline-link:hover {
    border-bottom-color: var(--gold);
  }
  /* ── MOBILE ── */
  @media (max-width: 900px) {
    nav {
      padding: 0 20px;
    }

    .nav-links {
      display: none;
      flex-direction: column;
      background: var(--warm-white);
      position: absolute;
      top: 72px;
      right: 0;
      width: 200px;
      border: 1px solid rgba(0, 0, 0, 0.1);
      padding: 16px;
      gap: 1rem;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      z-index: 200;
    }

    section {
      padding: 70px 24px;
    }

    .hero-content {
      padding: 0 24px 70px;
    }

    .hero-location {
      display: none;
    }

    .about {
      grid-template-columns: 1fr;
      gap: 40px;
    }

    .about-img {
      height: 320px;
    }

    .about-page {
      display: flex;
      flex-direction: column;
    }

    .tours-about-page {
      display: flex;
      flex-direction: column;
    }

    .exp-grid,
    .dest-grid,
    .tours-grid,
    .hotels-row,
    .blog-grid,
    .offers-grid {
      grid-template-columns: 1fr;
    }

    .about-stats {
      grid-template-columns: 1fr 1fr;
    }

    .footer-top {
      display: block;
    }

    .enquiry {
      grid-template-columns: 1fr;
    }

    .enquiry-info {
      min-height: 380px;
    }

    .enquiry-info-bg {
      opacity: 0.3;
    }

    .enquiry-info-inner {
      padding: 44px 28px;
    }

    .enquiry-form-wrap {
      padding: 44px 28px;
    }

    .form-row.two-col,
    .form-row.three-col {
      grid-template-columns: 1fr;
    }

    .form-footer {
      flex-direction: column;
      align-items: flex-start;
    }

    .enquiry-quote {
      display: none;
    }

    .contact-banner {
      flex-direction: column;
      gap: 24px;
      text-align: center;
    }

    .footer-bottom {
      flex-direction: column;
      gap: 20px;
    }

    .offer-card {
      grid-template-columns: 1fr;
    }

    .topbar {
      padding: 8px 20px;
      font-size: 11px;
      display: flex;
      flex-direction: column;
    }

    .destination-page-grid {
      display: block;
      /* overflow: hidden; */
    }

    .destination-page-card {
      min-width: 100%;
      flex-shrink: 0;
    }

    .nav-links.active {
      display: flex;
    }

    /* Hamburger button */
    .nav-toggle {
      display: block;
      background: none;
      border: none;
      font-size: 28px;
      cursor: pointer;
      color: var(--dark);
    }

    .nav-cta {
      display: none;
    }

    .experiences-section {
      flex-direction: column;
      text-align: center;
    }

    .article-wrapper {
      grid-template-columns: 1fr;
      padding: 48px 24px;
    }

    .article-body {
      padding-right: 0;
    }

    .destination-intro {
      grid-template-columns: 1fr;
    }

    .destination-intro-image {
      height: 50vw;
    }

    .destination-intro-text {
      padding: 3rem 2.5rem;
    }

    .destination-experiences {
      padding: 4rem 2.5rem;
    }

    .destination-exp-grid {
      grid-template-columns: 1fr 1fr;
    }

    .destination-highlight-strip {
      padding: 4rem 2.5rem;
      grid-template-columns: 1fr;
      gap: 2.5rem;
    }

    .destination-practical {
      padding: 0;
      grid-template-columns: 1fr;
    }
    
    .intro-strip {
      flex-direction: column;
      padding: 50px 40px;
      gap: 25px;
    }
    
    .intro-stats {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    
    .tour-header,
    .itinerary-section {
      grid-template-columns: 1fr;
    }

    .tour-sidebar {
      position: static;
    }

    .ot-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .map-container {
      grid-template-columns: 1fr;
    }

    .adv-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .tp-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .intro-strip {
      flex-direction: column;
      padding: 50px 40px;
      gap: 25px;
    }

    .itinerary-layout {
      grid-template-columns: 1fr;
    }

    .info-grid {
      grid-template-columns: 1fr;
    }

  }

  @media (max-width: 640px) {
    .destination-exp-grid {
      grid-template-columns: 1fr;
    }

    .destination-intro-stats {
      gap: 2rem;
    }

    .intro-stats {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    
    .highlights-bar,
    .itinerary-section,
    .other-tours {
      padding: 48px 24px;
    }

    .tour-header-info {
      padding: 36px 28px;
    }

    .tour-meta {
      grid-template-columns: 1fr;
    }

    .ot-grid {
      grid-template-columns: 1fr;
    }

    .map-section,
    .tour-types,
    .tours-preview,
    .intro-strip {
      padding: 52px 24px;
    }

    .adv-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .tp-grid {
      grid-template-columns: 1fr;
    }
    
    .content-wrap {
      padding: 40px 20px 80px;
    }
  }