*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }

    :root {
      --teal: #007C89;
      --teal-light: #1996A3;
      --deep-teal: #04545D;
      --purple: #4A2D7C;
      --purple-mid: #4A2D7C;
      --gold: #CDAF37;
      --gold-light: #F2D98B;
      --white: #FFFFFF;
      --off-white: #FAF8F4;
      --sand: #FAF8F4;
      --dark: #253238;
      --text-body: #253238;
      --text-muted: #66757D;
      --border: #E7E0D2;
    }

    section[id] { scroll-margin-top: 84px; }

    body {
      font-family: 'Lato', sans-serif;
      color: var(--text-body);
      background: var(--off-white);
      overflow-x: hidden;
    }

    /* ─── HERO ─── */
    .hero {
      position: relative;
      width: 100%;
      height: 100svh;
      min-height: 560px;
      overflow: hidden;
    }

    .hero-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 30%;
      display: block;
    }

    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to bottom,
        rgba(26,26,46,0.15) 0%,
        rgba(26,26,46,0.10) 40%,
        rgba(26,26,46,0.72) 80%,
        rgba(26,26,46,0.88) 100%
      );
    }

    .hero-content {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 0 20px 56px;
      text-align: center;
    }

    .logo-wrap {
      width: 160px;
      height: 160px;
      border-radius: 50%;
      background: rgba(255,255,255,0.12);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      border: 2px solid rgba(205,175,55,0.5);
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      margin-bottom: 20px;
      box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    }

    .logo-wrap img {
      width: 148px;
      height: 148px;
      object-fit: contain;
    }

    .hero-tagline {
      font-family: 'Lato', sans-serif;
      font-weight: 700;
      letter-spacing: 0.35em;
      text-transform: uppercase;
      font-size:1.35rem;
      color: var(--gold-light);
      margin-bottom: 14px;
      text-shadow: 0 1px 6px rgba(0,0,0,0.8), 0 2px 16px rgba(0,0,0,0.6);
    }

    .hero-headline {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.2rem, 5vw, 3.4rem);
      color: var(--white);
      line-height: 1.15;
      font-weight: 700;
      margin-bottom: 10px;
    }

    .hero-sub {
      font-family: 'Lato', sans-serif;
      font-weight: 300;
      font-size: 1.1rem;
      color: rgba(255,255,255,0.85);
      max-width: 480px;
      margin-bottom: 28px;
      line-height: 1.6;
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 17px 44px;
      background: var(--teal);
      color: var(--white);
      font-family: 'Lato', sans-serif;
      font-weight: 700;
      font-size:0.95rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      text-decoration: none;
      border-radius: 50px;
      box-shadow: 0 6px 18px rgba(0,124,137,0.22);
      transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.25s ease, background 0.25s ease;
      cursor: pointer;
      border: none;
      position: relative;
      overflow: hidden;
    }

    .btn-primary::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
      transition: left 0.6s ease;
    }

    .btn-primary:hover {
      background: var(--deep-teal);
      transform: translateY(-2px);
      box-shadow: 0 10px 24px rgba(4,84,93,0.28);
    }

    .btn-hero-secondary {
      padding: 16px 40px;
      background: transparent;
      color: var(--white);
      font-family: 'Lato', sans-serif;
      font-weight: 700;
      font-size: 0.95rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      text-decoration: none;
      border: 1.5px solid rgba(255,255,255,0.7);
      border-radius: 50px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      transition: all 0.25s ease;
      cursor: pointer;
    }
    .btn-hero-secondary:hover {
      background: rgba(255,255,255,0.12);
      border-color: var(--white);
    }
    .hero-cta-row {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
      justify-content: center;
    }
    .exp-card {
      transition: transform 0.22s ease, box-shadow 0.22s ease;
      box-shadow: 0 4px 14px rgba(37,50,56,0.08);
    }
    .exp-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 12px 26px rgba(37,50,56,0.14);
    }

    /* ─── MAIN NAV ─── */
    .main-nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 200;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      padding: 10px 28px;
      background: var(--deep-teal);
      border-bottom: 1px solid rgba(205,175,55,0.35);
    }
    .main-nav-logo {
      display: flex;
      align-items: center;
      flex-shrink: 0;
    }
    .main-nav-logo img {
      height: 56px;
      width: auto;
      display: block;
    }
    .main-nav-links {
      display: flex;
      align-items: center;
      gap: 28px;
      list-style: none;
    }
    .main-nav-links a {
      color: rgba(255,255,255,0.9);
      font-family: 'Lato', sans-serif;
      font-weight: 600;
      font-size: 0.85rem;
      letter-spacing: 0.02em;
      text-decoration: none;
      transition: color 0.2s ease;
      white-space: nowrap;
    }
    .main-nav-links a:hover {
      color: var(--gold-light);
    }
    .main-nav-cta {
      flex-shrink: 0;
      padding: 11px 26px !important;
      font-size: 0.72rem !important;
    }
    @media (max-width: 980px) {
      .main-nav-links { display: none; }
    }
    @media (max-width: 560px) {
      .main-nav-cta { padding: 9px 18px !important; font-size: 0.65rem !important; }
      .main-nav-logo img { height: 44px; }
    }

    /* ─── SIDE NAV ─── */
    .side-nav {
      position: fixed;
      right: 22px;
      top: 50%;
      transform: translateY(-50%);
      z-index: 150;
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 15px;
    }
    .side-nav a {
      position: relative;
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: rgba(37,50,56,0.22);
      transition: background 0.25s ease, transform 0.25s ease;
      display: block;
    }
    .side-nav a:hover, .side-nav a.active {
      background: var(--teal);
      transform: scale(1.25);
    }
    .side-nav a .side-nav-label {
      position: absolute;
      right: 22px;
      top: 50%;
      transform: translateY(-50%);
      background: var(--deep-teal);
      color: var(--white);
      font-family: 'Lato', sans-serif;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.04em;
      white-space: nowrap;
      padding: 6px 12px;
      border-radius: 20px;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.2s ease;
    }
    .side-nav a:hover .side-nav-label {
      opacity: 1;
    }
    @media (max-width: 980px) {
      .side-nav { display: none; }
    }

    .btn-primary:hover::before {
      left: 100%;
    }

    .btn-primary::after {
      content: '✦';
      font-size:1.1rem;
      transition: transform 0.25s ease;
    }

    .btn-primary:hover::after {
      transform: translateX(3px);
    }

    /* ─── INTRO ─── */
    .intro {
      background: var(--off-white);
      text-align: center;
      padding: 72px 20px;
    }

    .intro p {
      font-family: 'Playfair Display', serif;
      font-style: italic;
      font-size: clamp(1.5rem, 3vw, 2.2rem);
      color: var(--purple);
      max-width: 680px;
      margin: 0 auto 16px;
      line-height: 1.7;
    }

    .intro .sub {
      font-family: 'Lato', sans-serif;
      font-style: normal;
      font-size:0.95rem;
      color: var(--text-muted);
      max-width: 540px;
      margin: 0 auto;
    }

    /* ─── DIVIDER ─── */
    .divider {
      display: flex;
      align-items: center;
      gap: 16px;
      max-width: 200px;
      margin: 0 auto 32px;
    }
    .divider-line {
      flex: 1;
      height: 1px;
      background: var(--gold);
      opacity: 0.5;
    }
    .divider-star {
      color: var(--gold);
      font-size:0.95rem;
    }

    /* ─── SERVICES ─── */
    .services {
      background: var(--white);
      padding: 72px 20px;
      text-align: center;
    }

    .section-eyebrow {
      font-family: 'Lato', sans-serif;
      font-size:0.7rem;
      font-weight: 700;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--teal);
      margin-bottom: 12px;
    }

    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.5rem, 3vw, 2.2rem);
      color: var(--purple);
      margin-bottom: 48px;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
      gap: 24px 16px;
      max-width: 860px;
      margin: 0 auto;
    }

    .service-card {
      background: transparent;
      border: none;
      border-radius: 0;
      padding: 14px 10px;
      cursor: default;
    }

    .service-icon {
      font-size:2.2rem;
      margin-bottom: 10px;
      display: block;
    }

    .service-name {
      font-family: 'Lato', sans-serif;
      font-weight: 700;
      font-size:0.8rem;
      color: var(--purple);
      letter-spacing: 0.03em;
    }

    /* ─── WHY ─── */
    .why {
      background: var(--purple);
      padding: 72px 20px;
      text-align: center;
      color: var(--white);
    }

    .why .section-eyebrow { color: var(--gold-light); }
    .why .section-title { color: var(--white); margin-bottom: 40px; }

    .why-list {
      display: flex;
      flex-direction: column;
      gap: 16px;
      max-width: 540px;
      margin: 0 auto 48px;
    }

    .why-item {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      text-align: left;
    }

    .why-check {
      width: 22px;
      height: 22px;
      border-radius: 50%;
      background: var(--gold);
      color: var(--dark);
      font-size:0.7rem;
      font-weight: 900;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-top: 1px;
    }

    .why-item span {
      font-family: 'Lato', sans-serif;
      font-size:0.95rem;
      line-height: 1.5;
      color: rgba(255,255,255,0.9);
    }

    /* ─── UPCOMING TRIPS ─── */
    .trips {
      background: var(--off-white);
      padding: 72px 20px;
      text-align: center;
    }

    .trips-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 24px;
      max-width: 900px;
      margin: 0 auto 12px;
    }

    .trip-card {
      background: var(--white);
      border-radius: 18px;
      overflow: hidden;
      box-shadow: 0 4px 16px rgba(37,50,56,0.08);
      border: 1px solid rgba(205,175,55,0.15);
      text-align: left;
      transition: transform 0.2s, box-shadow 0.2s;
    }

    .trip-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 26px rgba(37,50,56,0.13);
    }

    .trip-header {
      background: linear-gradient(135deg, var(--teal), var(--teal-light));
      padding: 20px;
      position: relative;
    }

    .trip-label {
      font-family: 'Lato', sans-serif;
      font-size:0.7rem;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.7);
      margin-bottom: 4px;
    }

    .trip-name {
      font-family: 'Playfair Display', serif;
      font-size:1.1rem;
      color: var(--white);
      font-weight: 700;
    }

    .trip-date {
      position: absolute;
      top: 16px;
      right: 16px;
      background: var(--gold);
      color: var(--dark);
      font-family: 'Lato', sans-serif;
      font-size:0.7rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 4px 10px;
      border-radius: 2px;
    }

    .trip-body {
      padding: 18px 20px;
    }

    .trip-detail {
      font-family: 'Lato', sans-serif;
      font-size:0.8rem;
      color: var(--text-muted);
      line-height: 1.6;
      margin-bottom: 14px;
    }

    .trip-cta {
      font-family: 'Lato', sans-serif;
      font-size:0.8rem;
      font-weight: 700;
      color: var(--teal);
      text-decoration: none;
      letter-spacing: 0.05em;
      display: inline-flex;
      align-items: center;
      gap: 4px;
      transition: color 0.2s;
    }

    .trip-cta:hover { color: var(--purple); }

    /* ─── MEET KRISTINA ─── */
    .meet {
      background: var(--white);
      padding: 72px 20px;
    }

    .meet-inner {
      max-width: 760px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 2fr;
      gap: 48px;
      align-items: center;
    }

    @media (max-width: 620px) {
      .meet-inner { grid-template-columns: 1fr; text-align: center; }
      .meet-photo-wrap { margin: 0 auto; }
    }

    .meet-photo-wrap {
      width: 200px;
      height: 200px;
      border-radius: 50%;
      overflow: hidden;
      border: 4px solid var(--gold);
      box-shadow: 0 8px 32px rgba(74,45,124,0.15);
      flex-shrink: 0;
    }

    .meet-photo-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
    }

    .meet-text .section-eyebrow { text-align: left; }
    .meet-text .section-title { text-align: left; margin-bottom: 16px; font-size:1.75rem; }

    @media (max-width: 620px) {
      .meet-text .section-eyebrow, .meet-text .section-title { text-align: center; }
    }

    .meet-text p {
      font-family: 'Lato', sans-serif;
      font-size:0.95rem;
      color: var(--text-body);
      line-height: 1.75;
      margin-bottom: 12px;
    }

    .meet-badges {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
      margin-top: 16px;
    }

    @media (max-width: 620px) {
      .meet-badges { justify-content: center; }
    }

    .badge {
      font-family: 'Lato', sans-serif;
      font-size:0.7rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 6px 14px;
      border-radius: 20px;
      background: var(--off-white);
      color: var(--purple);
      border: 1px solid rgba(74,45,124,0.2);
    }

    /* ─── CTA ─── */
    .cta-section {
      background: var(--off-white);
      padding: 80px 20px;
      text-align: center;
      border-top: 3px solid var(--gold);
    }

    .cta-section .section-title { margin-bottom: 12px; }

    .cta-section p:not(.section-eyebrow) {
      font-family: 'Lato', sans-serif;
      font-size:0.95rem;
      color: var(--text-muted);
      margin-bottom: 32px;
    }

    .btn-secondary {
      display: inline-block;
      padding: 15px 38px;
      background: transparent;
      color: var(--purple);
      font-family: 'Lato', sans-serif;
      font-weight: 700;
      font-size:0.95rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      text-decoration: none;
      border: 2px solid var(--purple);
      border-radius: 50px;
      margin-left: 12px;
      transition: background 0.2s, color 0.2s;
      cursor: pointer;
    }

    .btn-secondary:hover {
      background: var(--purple);
      color: var(--white);
    }

    .contact-info {
      margin-top: 32px;
      font-family: 'Lato', sans-serif;
      font-size:0.95rem;
      color: var(--text-muted);
    }

    .contact-info a {
      color: var(--teal);
      text-decoration: none;
      font-weight: 700;
    }

    .contact-info a:hover { text-decoration: underline; }

    /* ─── FOOTER ─── */
    footer {
      background: var(--deep-teal);
      color: rgba(255,255,255,0.72);
      padding: 56px 24px 24px;
      font-family: 'Lato', sans-serif;
      font-size:0.8rem;
      letter-spacing: 0.02em;
    }

    footer .gold { color: var(--gold); }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.3fr 1fr 1fr 1fr;
      gap: 32px;
      max-width: 1080px;
      margin: 0 auto 40px;
      text-align: left;
    }
    @media (max-width: 760px) {
      .footer-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 480px) {
      .footer-grid { grid-template-columns: 1fr; }
    }
    .footer-brand {
      font-family: 'Playfair Display', serif;
      font-size: 1.3rem;
      color: var(--white);
      margin-bottom: 8px;
    }
    .footer-tag {
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--gold-light);
      margin-bottom: 14px;
    }
    .footer-desc {
      font-size: 0.85rem;
      line-height: 1.65;
      color: rgba(255,255,255,0.55);
      max-width: 280px;
    }
    .footer-col h4 {
      font-size: 0.72rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--gold-light);
      margin-bottom: 14px;
      font-weight: 700;
    }
    .footer-col a, .footer-col span {
      display: block;
      font-size: 0.86rem;
      color: rgba(255,255,255,0.72);
      text-decoration: none;
      margin-bottom: 11px;
      line-height: 1.4;
    }
    .footer-col a:hover { color: var(--gold-light); }
    .footer-bottom {
      max-width: 1080px;
      margin: 0 auto;
      padding-top: 22px;
      border-top: 1px solid rgba(255,255,255,0.1);
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      justify-content: space-between;
      font-size: 0.76rem;
      color: rgba(255,255,255,0.45);
      text-align: left;
    }

    /* ─── MODAL ─── */
    .modal-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(26,26,46,0.75);
      z-index: 1000;
      align-items: center;
      justify-content: center;
      padding: 20px;
    }

    .modal-overlay.open { display: flex; }

    .modal {
      background: var(--white);
      border-radius: 20px;
      max-width: 520px;
      width: 100%;
      overflow: hidden;
      box-shadow: 0 20px 50px rgba(37,50,56,0.22);
      animation: slideUp 0.3s ease;
    }

    @keyframes slideUp {
      from { transform: translateY(24px); opacity: 0; }
      to { transform: translateY(0); opacity: 1; }
    }

    .modal-header {
      background: linear-gradient(135deg, var(--purple), var(--purple-mid));
      padding: 28px 32px;
      color: var(--white);
    }

    .modal-header h2 {
      font-family: 'Playfair Display', serif;
      font-size:1.75rem;
      margin-bottom: 4px;
    }

    .modal-header p {
      font-family: 'Lato', sans-serif;
      font-size:0.8rem;
      color: rgba(255,255,255,0.75);
    }

    .modal-body {
      padding: 28px 32px;
    }

    .field-group {
      margin-bottom: 18px;
    }

    .field-group > label {
      display: block;
      font-family: 'Lato', sans-serif;
      font-size:0.8rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--purple);
      margin-bottom: 6px;
    }

    .field-group input,
    .field-group select,
    .field-group textarea {
      width: 100%;
      padding: 12px 14px;
      border: 1.5px solid var(--border);
      border-radius: 10px;
      font-family: 'Lato', sans-serif;
      font-size:0.95rem;
      color: var(--text-body);
      transition: border-color 0.2s;
      background: var(--white);
      outline: none;
    }

    .field-group input:focus,
    .field-group select:focus,
    .field-group textarea:focus {
      border-color: var(--teal);
    }

    .field-group textarea { resize: vertical; min-height: 80px; }

    .checkbox-group {
      display: flex;
      flex-direction: column;
      gap: 10px;
      border: 1.5px solid var(--border);
      border-radius: 10px;
      padding: 14px 16px;
      background: var(--white);
    }

    .checkbox-option {
      display: flex;
      align-items: center;
      gap: 10px;
      font-family: 'Lato', sans-serif;
      font-size: 0.9rem;
      color: var(--text-body);
      cursor: pointer;
      text-transform: none;
      letter-spacing: normal;
      font-weight: 400;
    }

    .checkbox-option input[type="checkbox"] {
      width: 17px;
      height: 17px;
      accent-color: var(--teal);
      cursor: pointer;
      flex-shrink: 0;
    }

    .modal-footer {
      padding: 0 32px 28px;
      display: flex;
      gap: 12px;
      justify-content: flex-end;
    }

    .btn-cancel {
      padding: 12px 24px;
      background: transparent;
      color: var(--text-muted);
      font-family: 'Lato', sans-serif;
      font-size:0.8rem;
      border: 1.5px solid var(--border);
      border-radius: 50px;
      cursor: pointer;
      transition: border-color 0.2s;
    }

    .btn-cancel:hover { border-color: var(--text-muted); }

    .btn-submit {
      padding: 12px 28px;
      background: var(--teal);
      color: var(--white);
      font-family: 'Lato', sans-serif;
      font-weight: 700;
      font-size:0.8rem;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      border: none;
      border-radius: 50px;
      cursor: pointer;
      transition: background 0.2s;
    }

    .btn-submit:hover { background: var(--deep-teal); }

    .success-msg {
      display: none;
      text-align: center;
      padding: 32px;
    }

    .success-msg .check { font-size:2.2rem; margin-bottom: 12px; }
    .success-msg h3 {
      font-family: 'Playfair Display', serif;
      font-size:1.35rem;
      color: var(--purple);
      margin-bottom: 8px;
    }
    .success-msg p {
      font-family: 'Lato', sans-serif;
      font-size:0.95rem;
      color: var(--text-muted);
    }
