 :root {
      --cream: #F5F0E8;
      --cream-dark: #EDE6D6;
      --cream-deep: #E4D9C4;
      --saffron: #C4622D;
      --saffron-light: #E07840;
      --gold: #C9963A;
      --gold-light: #D4A843;
      --forest: #1C3A2F;
      --forest-light: #2A5040;
      --ink: #1A1510;
      --muted: #6B5E4E;
      --muted-l: #9A8A78
    }

    *,
    *::before,
    *::after {
      margin: 0;
      padding: 0;
      box-sizing: border-box
    }

    html {
      scroll-behavior: smooth
    }

    body {
      background: var(--cream);
      color: var(--ink);
      font-family: 'DM Sans', sans-serif;
      font-weight: 300;
      overflow-x: hidden
    }

    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
      pointer-events: none;
      z-index: 999;
      opacity: 0.35
    }

    .lang-bar {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 101;
      background: var(--forest);
      height: 28px;
      display: flex;
      align-items: center;
      justify-content: flex-end;
      padding: 0 56px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.07);
      transition: transform 0.4s ease
    }

    .lang-bar.hidden {
      transform: translateY(-100%)
    }

    .lang-toggle {
      display: flex;
      align-items: center;
      gap: 6px
    }

    .lang-btn {
      background: none;
      border: none;
      cursor: pointer;
      font-family: 'DM Sans', sans-serif;
      font-size: 10px;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.4);
      padding: 2px 6px;
      transition: color 0.3s;
      font-weight: 400
    }

    .lang-btn.active {
      color: var(--gold-light)
    }

    .lang-sep {
      color: rgba(255, 255, 255, 0.2);
      font-size: 10px
    }

    nav {
      position: fixed;
      top: 28px;
      left: 0;
      right: 0;
      z-index: 100;
      padding: 0 56px;
      height: 72px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      transition: all 0.5s ease
    }

    nav.scrolled {
      background: rgba(28, 58, 47, 0.97);
      backdrop-filter: blur(12px);
      box-shadow: 0 2px 40px rgba(0, 0, 0, 0.25);
      top: 0
    }

    .nav-logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 22px;
      font-weight: 500;
      color: white;
      letter-spacing: 0.05em;
      text-decoration: none
    }

    .nav-logo span {
      color: var(--gold-light)
    }

    .nav-links {
      display: flex;
      gap: 32px;
      list-style: none;
      align-items: center
    }

    .nav-links a {
      color: rgba(255, 255, 255, 0.82);
      text-decoration: none;
      font-size: 13px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      font-weight: 400;
      transition: color 0.3s
    }

    .nav-links a:hover,
    .nav-links a.active {
      color: var(--gold-light)
    }

    .nav-cta {
      background: var(--saffron) !important;
      color: white !important;
      padding: 10px 22px;
      font-size: 12px !important;
      font-weight: 500 !important;
      white-space: nowrap
    }

    .page-hero {
      padding-top: 160px;
      padding-bottom: 80px;
      background: var(--forest);
      position: relative;
      overflow: hidden
    }

    .page-hero::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(to right, transparent, rgba(201, 150, 58, 0.4), transparent)
    }

    .page-hero-inner {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 80px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: end
    }

    .eyebrow {
      font-size: 11px;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--gold-light);
      font-weight: 500;
      margin-bottom: 16px;
      display: flex;
      align-items: center;
      gap: 12px
    }

    .eyebrow::before {
      content: '';
      width: 24px;
      height: 1px;
      background: var(--gold-light)
    }

    .page-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(44px, 5.5vw, 72px);
      font-weight: 300;
      color: white;
      line-height: 1.05;
      letter-spacing: -0.02em;
      margin-bottom: 20px
    }

    .page-title em {
      font-style: italic;
      color: var(--gold-light)
    }

    .page-desc {
      color: rgba(255, 255, 255, 0.55);
      font-size: 16px;
      line-height: 1.9
    }

    .hero-stats {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1px;
      background: rgba(255, 255, 255, 0.08);
      align-self: end
    }

    .hero-stat {
      background: rgba(255, 255, 255, 0.04);
      padding: 28px 32px
    }

    .hs-n {
      font-family: 'Cormorant Garamond', serif;
      font-size: 52px;
      color: white;
      font-weight: 300;
      line-height: 1
    }

    .hs-n em {
      font-style: normal;
      color: var(--gold-light)
    }

    .hs-l {
      font-size: 11px;
      color: rgba(255, 255, 255, 0.45);
      letter-spacing: 0.1em;
      text-transform: uppercase;
      margin-top: 6px
    }

    .featured-quote {
      background: var(--ink);
      padding: 80px;
      position: relative;
      overflow: hidden
    }

    .featured-quote::before {
      content: '❝';
      position: absolute;
      top: -20px;
      left: 60px;
      font-size: 240px;
      color: rgba(201, 150, 58, 0.06);
      font-family: 'Cormorant Garamond', serif;
      line-height: 1
    }

    .fq-inner {
      max-width: 1400px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 380px 1fr;
      gap: 80px;
      align-items: center;
      position: relative;
      z-index: 1
    }

    .fq-img {
      width: 100%;
      aspect-ratio: 4/5;
      object-fit: cover;
      object-position: center top;
      display: block
    }

    .fq-stars {
      display: flex;
      gap: 4px;
      margin-bottom: 24px
    }

    .fq-star {
      color: var(--gold-light);
      font-size: 18px
    }

    .fq-text {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(22px, 2.5vw, 32px);
      color: white;
      font-weight: 300;
      line-height: 1.55;
      font-style: italic;
      margin-bottom: 32px
    }

    .fq-name {
      font-size: 14px;
      color: white;
      font-weight: 500;
      margin-bottom: 4px
    }

    .fq-trip {
      font-size: 12px;
      color: rgba(255, 255, 255, 0.4);
      letter-spacing: 0.08em;
      text-transform: uppercase
    }

    .testimonials {
      padding: 100px 80px;
      max-width: 1400px;
      margin: 0 auto
    }

    .sec-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(36px, 4vw, 52px);
      font-weight: 300;
      line-height: 1.05;
      letter-spacing: -0.02em;
      color: var(--ink);
      margin-bottom: 56px
    }

    .sec-title em {
      font-style: italic;
      color: var(--saffron)
    }

    .tgrid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px
    }

    .tcard {
      background: white;
      padding: 36px;
      box-shadow: 0 2px 32px rgba(0, 0, 0, 0.06);
      transition: transform 0.3s, box-shadow 0.3s
    }

    .tcard:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 48px rgba(0, 0, 0, 0.1)
    }

    .tc-stars {
      display: flex;
      gap: 3px;
      margin-bottom: 20px
    }

    .tc-star {
      color: var(--gold);
      font-size: 14px
    }

    .tc-quote {
      font-family: 'Cormorant Garamond', serif;
      font-size: 18px;
      color: var(--ink);
      font-style: italic;
      line-height: 1.65;
      margin-bottom: 24px
    }

    .tc-divider {
      width: 32px;
      height: 1px;
      background: var(--saffron);
      margin-bottom: 20px
    }

    .tc-name {
      font-size: 14px;
      color: var(--ink);
      font-weight: 500;
      margin-bottom: 3px
    }

    .tc-trip {
      font-size: 11px;
      color: var(--muted-l);
      letter-spacing: 0.08em;
      text-transform: uppercase
    }

    .photo-row {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 3px;
      height: 280px;
      margin: 0
    }

    .photo-item {
      overflow: hidden
    }

    .photo-item div {
      width: 100%;
      height: 100%;
      background-size: cover;
      background-position: center;
      transition: transform 0.6s ease
    }

    .photo-item:hover div {
      transform: scale(1.06)
    }

    .testi-cta {
      position: relative;
      height: 380px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      overflow: hidden
    }

    .testi-cta-bg {
      position: absolute;
      inset: 0;
      background: linear-gradient(rgba(8, 5, 2, 0.6), rgba(8, 5, 2, 0.6)), url('https://images.unsplash.com/photo-1561458033-36e5756c3c9a?w=1800&q=85') center/cover
    }

    .testi-cta-content {
      position: relative;
      z-index: 2;
      max-width: 520px;
      padding: 0 32px
    }

    .testi-cta h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(30px, 4vw, 48px);
      color: white;
      font-weight: 300;
      line-height: 1.2;
      margin: 14px 0 28px;
      letter-spacing: -0.01em
    }

    .testi-cta h2 em {
      font-style: italic;
      color: var(--gold-light)
    }

    .btn-primary {
      background: var(--saffron);
      color: white;
      padding: 16px 36px;
      font-size: 11px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      text-decoration: none;
      font-weight: 500;
      font-family: 'DM Sans', sans-serif;
      transition: background 0.3s, transform 0.2s;
      display: inline-block
    }

    .btn-primary:hover {
      background: var(--saffron-light);
      transform: translateY(-1px)
    }

    .fbar {
      background: var(--forest-light);
      padding: 18px 80px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08)
    }

    .fbar-inner {
      display: flex;
      align-items: center;
      gap: 28px;
      flex-wrap: wrap
    }

    .fbar-link {
      display: flex;
      align-items: center;
      gap: 8px;
      color: rgba(255, 255, 255, 0.8);
      text-decoration: none;
      font-size: 14px;
      font-family: 'DM Sans', sans-serif;
      transition: color 0.3s
    }

    .fbar-link svg {
      color: var(--gold-light);
      flex-shrink: 0
    }

    .fbar-link:hover {
      color: white
    }

    .fbar-div {
      color: rgba(255, 255, 255, 0.2);
      font-size: 16px
    }

    .fbar-socials {
      display: flex;
      gap: 8px;
      margin-left: auto
    }

    .soc {
      width: 34px;
      height: 34px;
      border: 1px solid rgba(255, 255, 255, 0.18);
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255, 255, 255, 0.55);
      text-decoration: none;
      transition: all 0.3s
    }

    .soc:hover {
      border-color: var(--gold-light);
      color: var(--gold-light)
    }

    footer {
      background: var(--ink);
      padding: 64px 80px 32px
    }

    .foot-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 48px;
      padding-bottom: 48px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.07);
      margin-bottom: 28px
    }

    .foot-logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 24px;
      font-weight: 500;
      color: white;
      letter-spacing: 0.05em;
      text-decoration: none;
      display: block;
      margin-bottom: 14px
    }

    .foot-logo span {
      color: var(--gold-light)
    }

    .foot-tag {
      font-size: 13px;
      color: rgba(255, 255, 255, 0.42);
      line-height: 1.85;
      max-width: 260px
    }

    .foot-col-h {
      font-size: 10px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.3);
      margin-bottom: 18px;
      font-weight: 500
    }

    .foot-links {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px
    }

    .foot-links a {
      color: rgba(255, 255, 255, 0.52);
      text-decoration: none;
      font-size: 14px;
      transition: color 0.3s
    }

    .foot-links a:hover {
      color: white
    }

    .foot-addr {
      margin-top: 20px;
      font-size: 11px;
      color: rgba(255, 255, 255, 0.22);
      line-height: 1.7
    }

    .foot-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 12px
    }

    .foot-copy {
      font-size: 12px;
      color: rgba(255, 255, 255, 0.22)
    }

    .foot-legal {
      display: flex;
      gap: 20px
    }

    .foot-legal a {
      font-size: 12px;
      color: rgba(255, 255, 255, 0.22);
      text-decoration: none;
      transition: color 0.3s
    }

    .foot-legal a:hover {
      color: rgba(255, 255, 255, 0.6)
    }

    .reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.8s ease, transform 0.8s ease
    }

    .reveal.on {
      opacity: 1;
      transform: translateY(0)
    }

    .d1 {
      transition-delay: 0.1s
    }

    .d2 {
      transition-delay: 0.2s
    }

    .d3 {
      transition-delay: 0.3s
    }

    @media(max-width:960px) {

      nav,
      nav.scrolled {
        padding: 0 24px
      }

      .lang-bar {
        padding: 0 24px
      }

      .page-hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 24px
      }

      .hero-stats {
        grid-template-columns: 1fr 1fr
      }

      .featured-quote {
        padding: 48px 24px
      }

      .fq-inner {
        grid-template-columns: 1fr;
        gap: 40px
      }

      .fq-img {
        height: 360px;
        width: 100%;
        object-fit: cover;
        object-position: center top
      }

      .testimonials {
        padding: 60px 24px
      }

      .tgrid {
        grid-template-columns: 1fr
      }

      .photo-row {
        grid-template-columns: repeat(3, 1fr);
        height: 200px
      }

      .photo-row .photo-item:nth-child(n+4) {
        display: none
      }

      .fbar {
        padding: 18px 24px
      }

      footer {
        padding: 48px 24px 32px
      }

      .foot-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px
      }
    }

    @media(max-width:768px) {

      html,
      body {
        overflow-x: hidden !important
      }

      nav,
      nav.scrolled {
        padding: 0 16px !important;
        height: 64px !important
      }

      .lang-bar,
      .fbar {
        padding-left: 16px !important;
        padding-right: 16px !important
      }

      .nav-logo {
        font-size: 20px !important
      }

      .page-title,
      .sec-title {
        font-size: clamp(34px, 10vw, 54px) !important;
        line-height: 1.08 !important
      }

      .foot-grid {
        grid-template-columns: 1fr !important
      }

      footer {
        padding: 48px 20px 32px
      }

      .fq-img {
        height: 280px
      }

      .tgrid {
        grid-template-columns: 1fr
      }
    }

    .menu-toggle {
      display: none;
      width: 42px;
      height: 42px;
      border: 1px solid rgba(255, 255, 255, 0.18);
      background: rgba(255, 255, 255, 0.06);
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      border-radius: 10px;
      padding: 0
    }

    .menu-toggle span {
      display: block;
      width: 18px;
      height: 1.5px;
      background: rgba(255, 255, 255, 0.92);
      transition: transform .25s ease, opacity .25s ease
    }

    body.menu-open {
      overflow: hidden
    }

    @media(max-width:768px) {
      .menu-toggle {
        display: flex !important
      }

      .nav-links {
        position: fixed !important;
        top: 64px !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 120 !important;
        display: none !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 0 !important;
        max-width: none !important;
        width: 100% !important;
        background: rgba(28, 58, 47, 0.98) !important;
        backdrop-filter: blur(12px);
        padding: 14px 20px 22px !important;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
        overflow: visible !important
      }

      body.menu-open .nav-links {
        display: flex !important
      }

      .nav-links li {
        width: 100%
      }

      .nav-links a {
        display: block !important;
        width: 100% !important;
        padding: 12px 0 !important;
        font-size: 12px !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08)
      }

      .nav-links li:last-child a {
        border-bottom: none
      }

      .nav-cta {
        margin-top: 10px;
        border-bottom: none !important;
        width: auto !important;
        padding: 10px 16px !important
      }
    }