/* ── FONTS ────────────────────────────────────────── */
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 300 500;
  font-display: swap;
  src: url('../fonts/dm-sans-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 300 500;
  font-display: swap;
  src: url('../fonts/dm-sans-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Lora';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/lora-italic-400-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Lora';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/lora-italic-400-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Lora';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/lora-600-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Lora';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/lora-600-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --deep:   #052d40;
      --sky:    #1a8ab5;
      --sand:   #dfc99a;
      --leaf:   #3a7d50;
      --light:  #f2ece0;
      --dark:   #0c1e29;
      --accent: #e9a020;
      --muted:  rgba(242,236,224,0.6);
      --border: rgba(255,255,255,0.07);
    }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'DM Sans', sans-serif;
      font-weight: 300;
      background: var(--dark);
      color: var(--light);
      overflow-x: hidden;
    }

    /* ── HERO ─────────────────────────────────────────── */
    .hero {
      min-height: 100svh;
      display: grid;
      grid-template-rows: auto auto;
      align-content: space-evenly;
      background: linear-gradient(to bottom, rgba(5,45,64,0.2) 0%, rgba(5,45,64,0.72) 55%, var(--dark) 100%);
    }

    .hero-logo-wrap {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0 1.5rem;
      opacity: 0;
      transition: transform 0.45s cubic-bezier(0.4, 0, 1, 1), opacity 0.3s ease;
    }

    .hero-logo-wrap.logo-ready {
      opacity: 1;
    }

    .hero-logo-wrap.is-entering {
      animation: logoDropIn 0.65s cubic-bezier(0.0, 0.0, 0.2, 1) forwards;
    }

    .hero-logo {
      width: clamp(220px, 42vw, 480px);
      height: auto;
      display: block;
    }

    .hero-inner {
      max-width: 1080px;
      width: 100%;
      margin: 0 auto;
      padding: 0 1.5rem 3rem;
    }

    .eyebrow {
      font-size: 0.7rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--accent);
      font-weight: 400;
      margin-bottom: 0.9rem;
      opacity: 0;
      animation: fadeUp 0.7s 0.2s ease forwards;
    }
    .hero h1 {
      font-family: 'Lora', serif;
      font-weight: 600;
      font-size: clamp(1.85rem, 5vw, 3.5rem);
      line-height: 1.12;
      color: #fff;
      margin-bottom: 0.9rem;
      max-width: 620px;
      opacity: 0;
      animation: fadeUp 0.7s 0.35s ease forwards;
    }
    .hero-sub {
      font-size: clamp(0.88rem, 1.8vw, 1rem);
      color: var(--muted);
      max-width: 460px;
      line-height: 1.72;
      margin-bottom: 2rem;
      opacity: 0;
      animation: fadeUp 0.7s 0.5s ease forwards;
    }
    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 1rem;
      opacity: 0;
      animation: fadeUp 0.7s 0.65s ease forwards;
    }

    /* ── BUTTONS ──────────────────────────────────────── */
    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 0.45rem;
      background: var(--accent);
      color: var(--dark);
      font-family: 'DM Sans', sans-serif;
      font-weight: 500;
      font-size: 0.9rem;
      letter-spacing: 0.03em;
      padding: 0.8rem 1.8rem;
      border-radius: 3px;
      text-decoration: none;
      transition: background 0.18s, transform 0.15s;
      white-space: nowrap;
    }
    .btn-primary:hover { background: #f5b030; transform: translateY(-1px); }
    .btn-ghost {
      font-size: 0.83rem;
      color: var(--muted);
      text-decoration: none;
      border-bottom: 1px solid rgba(242,236,224,0.22);
      padding-bottom: 1px;
      transition: color 0.18s, border-color 0.18s;
    }
    .btn-ghost:hover { color: var(--light); border-color: rgba(242,236,224,0.55); }

    /* ── SHARED ───────────────────────────────────────── */
    .wrap { max-width: 1080px; margin: 0 auto; }
    section { padding: 4rem 1.5rem; }
    .section-label {
      font-size: 0.68rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--sky);
      font-weight: 400;
      margin-bottom: 0.55rem;
    }
    .section-title {
      font-family: 'Lora', serif;
      font-size: clamp(1.45rem, 3.2vw, 2.2rem);
      font-weight: 600;
      color: #fff;
      line-height: 1.2;
      margin-bottom: 0.7rem;
    }
    .section-lead {
      font-size: 0.93rem;
      color: var(--muted);
      max-width: 520px;
      line-height: 1.72;
      margin-bottom: 2.5rem;
    }

    /* ── TOURS ────────────────────────────────────────── */
    .tours-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      border: 1px solid var(--border);
      border-radius: 4px;
      overflow: hidden;
    }
    .tour-card {
      background: var(--dark);
      padding: 1.6rem 1.4rem;
      border-right: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      display: flex;
      flex-direction: column;
      gap: 0.55rem;
      transition: background 0.2s;
    }
    .tour-card:hover { background: rgba(10,79,110,0.26); }
    .tour-name {
      font-family: 'Lora', serif;
      font-size: 1.1rem;
      font-weight: 600;
      color: #fff;
      line-height: 1.25;
    }
    .tour-desc {
      font-size: 0.86rem;
      color: var(--muted);
      line-height: 1.66;
      flex: 1;
    }


    /* ── TOUR BOOK BUTTON ─────────────────────────────── */
    .tour-card {
      position: relative;
    }
    .tour-book-wrap {
      margin-top: auto;
      padding-top: 1rem;
      display: flex;
      justify-content: flex-end;
      opacity: 0;
      transition: opacity 0.2s;
    }
    .tour-card:hover .tour-book-wrap {
      opacity: 1;
    }
    .tour-book-btn {
      font-size: 0.78rem;
      font-weight: 500;
      color: var(--accent);
      text-decoration: none;
      border: 1px solid var(--accent);
      padding: 0.4rem 0.85rem;
      border-radius: 3px;
      letter-spacing: 0.03em;
      transition: background 0.18s, color 0.18s;
      white-space: nowrap;
    }
    .tour-book-btn:hover {
      background: var(--accent);
      color: var(--dark);
    }

    /* ── BOOK CTA ─────────────────────────────────────── */
    .book-cta {
      background: linear-gradient(160deg, #0d3d56 0%, var(--deep) 100%);
      border-top: 1px solid rgba(26,138,181,0.12);
      text-align: center;
    }
    .book-cta .section-title { margin-bottom: 1.5rem; }

    /* ── CONTACT ──────────────────────────────────────── */
    .contact-strip { border-top: 1px solid var(--border); padding: 3rem 1.5rem; }
    .contact-grid {
      max-width: 1080px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
      gap: 2rem;
    }
    .contact-item h3 {
      font-size: 0.66rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--sky);
      font-weight: 400;
      margin-bottom: 0.45rem;
    }
    .contact-item p, .contact-item a {
      font-size: 0.88rem;
      color: var(--muted);
      line-height: 1.65;
      text-decoration: none;
    }
    .contact-item a:hover { color: var(--sand); }

    /* ── FOOTER ───────────────────────────────────────── */
    footer {
      padding: 1.2rem 1.5rem;
      border-top: 1px solid var(--border);
      text-align: center;
    }
    footer p { font-size: 0.73rem; color: rgba(242,236,224,0.22); }
    footer a { color: inherit; text-decoration: none; }
    footer a:hover { color: rgba(242,236,224,0.45); }

    /* ── ANIMATION ────────────────────────────────────── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(12px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    @keyframes logoDropIn {
      from { opacity: 0; transform: translate(-40vw, -35vh); }
      to   { opacity: 1; transform: translate(0, 0); }
    }

    /* ── RESPONSIVE ───────────────────────────────────── */
    @media (max-width: 600px) {
      .hero-inner { padding-bottom: 2.5rem; }
      .hero-actions { flex-direction: column; align-items: flex-start; }
      .tour-card { border-right: none; }
      section { padding: 3rem 1.25rem; }
    }

    /* ── EXIT TRANSITION ──────────────────────────────── */
    .hero-inner {
      transition: opacity 0.25s ease, transform 0.25s ease;
    }
    body.is-exiting .hero-logo-wrap {
      transform: translate(-30vw, -30vh) scale(0.15);
      opacity: 0;
    }
    body.is-exiting .hero-inner {
      opacity: 0;
      transform: translateY(12px);
    }