    @import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600&family=DM+Sans:wght@300;400;500;600&display=swap');
	    :root {
	      --navy:      #0d2137;
	      --ocean:     #1a5276;
	      --turquoise: #1abc9c;
	      --aqua:      #48c9b0;
	      --sand:      #f5efe6;
	      --cream:     #fdfaf6;
	      --gold:      #c8a84b;
	      --coral:     #e74c3c;
	      --pine:      #1a6b3a;
	      --text-dark: #0d1b2a;
	      --text-mid:  #2c4a5a;
	      --text-muted:#6b8896;
	      --white:     #ffffff;
	      --border:    rgba(26,82,118,0.14);
	      --shadow-sm: 0 2px 12px rgba(13,33,55,0.08);
	      --shadow-md: 0 8px 32px rgba(13,33,55,0.14);
	      --shadow-lg: 0 20px 60px rgba(13,33,55,0.18);
	      --radius-sm: 6px;
	      --radius-md: 12px;
	      --radius-lg: 20px;
	      --ff-display: 'Cormorant Garamond', Georgia, serif;
	      --ff-body:    'DM Sans', sans-serif;
	    }
	
	    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
	    html { scroll-behavior: smooth; font-size: 16px; }
	    body {
	      font-family: var(--ff-body);
	      background: var(--cream);
	      color: var(--text-dark);
	      line-height: 1.7;
	      overflow-x: hidden;
	    }
	    img { max-width: 100%; display: block; }
	    a { color: inherit; text-decoration: none; }
	    strong { font-weight: 600; color: var(--navy); }
	
	    h1, h2, h3, h4 { font-family: var(--ff-display); line-height: 1.2; color: var(--navy); }
	    h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 700; }
	    h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); font-weight: 600; }
	    h3 { font-size: clamp(1.15rem, 2vw, 1.5rem); font-weight: 600; }
	    h4 { font-size: 1.05rem; font-weight: 600; }
	    p  { font-size: 1rem; color: var(--text-mid); margin-bottom: 1rem; line-height: 1.75; }
	    p:last-child { margin-bottom: 0; }
	
	    .container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
	    .section    { padding: 72px 0; }
	    .section--alt  { background: var(--sand); }
	    .section--dark {
	      background: var(--navy);
	      color: var(--white);
	    }
	    .section--dark h2, .section--dark h3, .section--dark h4 { color: var(--white); }
	    .section--dark p   { color: rgba(255,255,255,0.8); }
	    .section--dark strong { color: var(--aqua); }
	
	    .badge {
	      display: inline-block;
	      background: var(--turquoise);
	      color: var(--white);
	      font-size: 0.72rem; font-weight: 600;
	      text-transform: uppercase; letter-spacing: 0.1em;
	      padding: 4px 12px; border-radius: 50px; margin-bottom: 14px;
	    }
	    .badge--gold  { background: var(--gold); }
	    .badge--coral { background: var(--coral); }
	    .badge--pine  { background: var(--pine); }
	
	    .section-intro { max-width: 700px; margin: 0 auto 52px; text-align: center; }
	    .section-intro p { font-size: 1.05rem; }
	
	    /* -- HEADER -- */
	    .site-header {
	      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
	      padding: 16px 0;
	      transition: background .3s, box-shadow .3s;
	    }
	    .site-header.scrolled {
	      background: rgba(13,33,55,0.97);
	      backdrop-filter: blur(12px);
	      box-shadow: var(--shadow-md);
	    }
	    .header-inner { display: flex; align-items: center; justify-content: space-between; }
	    .site-logo {
	      font-family: var(--ff-display); font-size: 1.35rem; font-weight: 700;
	      color: var(--white); display: flex; align-items: center; gap: 8px;
	    }
	    .site-nav { display: flex; gap: 28px; list-style: none; }
	    .site-nav a { color: rgba(255,255,255,0.85); font-size: 0.88rem; font-weight: 500; transition: color .2s; }
	    .site-nav a:hover { color: var(--aqua); }
	    .nav-cta { background: var(--turquoise); color: var(--white) !important; padding: 7px 18px; border-radius: 50px; font-weight: 600 !important; }
	    .nav-cta:hover { background: var(--aqua) !important; }
	
	    /* -- BREADCRUMB -- */
	    .breadcrumb {
	      padding: 100px 0 0;
	      font-size: 0.82rem;
	      color: rgba(255,255,255,0.6);
	    }
	    .breadcrumb a { color: rgba(255,255,255,0.6); transition: color .2s; }
	    .breadcrumb a:hover { color: var(--aqua); }
	    .breadcrumb span { margin: 0 6px; }
	
	    /* -- HERO -- */
	    .hero {
	      min-height: 82vh;
	      display: flex; align-items: flex-end;
	      position: relative; overflow: hidden;
	      background: linear-gradient(165deg, #0d2137 0%, #1a4a6e 50%, #0d4a3a 100%);
	      padding-bottom: 0;
	    }
	    .hero::before {
	      content: '';
	      position: absolute; inset: 0;
	      background:
	        radial-gradient(ellipse 60% 55% at 75% 45%, rgba(26,188,156,0.13) 0%, transparent 70%),
	        radial-gradient(ellipse 35% 35% at 15% 65%, rgba(200,168,75,0.07) 0%, transparent 60%);
	      pointer-events: none;
	    }
	    .hero-content { position: relative; z-index: 2; padding: 0 20px 56px 20px; width: 100%; }
	    .hero-meta {
	      display: flex; align-items: center; gap: 12px;
	      flex-wrap: wrap; margin-bottom: 20px;
	    }
	    .hero-chip {
	      display: inline-flex; align-items: center; gap: 6px;
	      background: rgba(26,188,156,0.15);
	      border: 1px solid rgba(26,188,156,0.35);
	      color: var(--aqua);
	      font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em;
	      padding: 5px 14px; border-radius: 50px;
	    }
	    .hero h1 { color: var(--white); margin-bottom: 16px; max-width: 820px; }
	    .hero h1 em { font-style: italic; color: var(--aqua); }
	    .hero-sub { font-size: 1.08rem; color: rgba(255,255,255,0.72); max-width: 600px; margin-bottom: 36px; }
	    .hero-quick {
	      display: flex; gap: 32px; flex-wrap: wrap;
	      background: rgba(13,33,55,0.55);
	      backdrop-filter: blur(8px);
	      border: 1px solid rgba(255,255,255,0.1);
	      border-radius: var(--radius-md);
	      padding: 20px 28px; margin-bottom: 32px;
	      width: fit-content;
	    }
	    .quick-item { text-align: center; }
	    .quick-item__val {
	      font-family: var(--ff-display); font-size: 1.5rem; font-weight: 700;
	      color: var(--aqua); line-height: 1;
	    }
	    .quick-item__key { font-size: 0.75rem; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 4px; }
	    .hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
	    .btn {
	      display: inline-flex; align-items: center; gap: 8px;
	      font-family: var(--ff-body); font-size: 0.93rem; font-weight: 600;
	      padding: 13px 26px; border-radius: 50px; cursor: pointer;
	      transition: transform .15s, box-shadow .15s, background .2s; border: none;
	    }
	    .btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
	    .btn-primary { background: var(--turquoise); color: var(--white); }
	    .btn-primary:hover { background: #17a589; }
	    .btn-outline { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.4); }
	    .btn-outline:hover { border-color: var(--aqua); color: var(--aqua); }
	
	    /* wave */
	    .hero-wave { position: absolute; bottom: -2px; left: 0; right: 0; pointer-events: none; }
	
	    /* -- ITINERARY TIMELINE -- */
	    .timeline { position: relative; padding-left: 32px; }
	    .timeline::before {
	      content: ''; position: absolute; left: 9px; top: 8px; bottom: 8px;
	      width: 2px; background: linear-gradient(to bottom, var(--turquoise), var(--ocean));
	      border-radius: 2px;
	    }
	    .timeline-item { position: relative; margin-bottom: 28px; }
	    .timeline-item:last-child { margin-bottom: 0; }
	    .timeline-dot {
	      position: absolute; left: -28px; top: 4px;
	      width: 18px; height: 18px; border-radius: 50%;
	      background: var(--turquoise);
	      border: 3px solid var(--cream);
	      box-shadow: 0 0 0 2px var(--turquoise);
	      display: flex; align-items: center; justify-content: center;
	      font-size: 0.55rem; color: white; font-weight: 700;
	    }
	    .timeline-item h4 { color: var(--navy); margin-bottom: 6px; font-size: 1rem; }
	    .timeline-item p  { font-size: 0.9rem; margin-bottom: 0; }
	
	    /* -- LAYOUT -- */
	    .two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
	    @media (max-width: 720px) { .two-col { grid-template-columns: 1fr; gap: 28px; } }
	    .three-col { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
	    @media (max-width: 680px) { .three-col { grid-template-columns: 1fr; } }
	
	    /* -- INFO BOXES -- */
	    .info-box {
	      background: var(--white); border-radius: var(--radius-md);
	      border: 1px solid var(--border); box-shadow: var(--shadow-sm);
	      padding: 24px;
	    }
	    .info-box h4 { margin-bottom: 12px; font-size: 1rem; color: var(--navy); }
	
	    .tip-box {
	      background: linear-gradient(135deg,#eaf7f4,#f0faf8);
	      border-left: 4px solid var(--turquoise);
	      border-radius: 0 var(--radius-md) var(--radius-md) 0;
	      padding: 18px 20px; margin: 24px 0;
	    }
	    .tip-box h4 { color: var(--turquoise); margin-bottom: 8px; font-size: 0.95rem; }
	    .tip-box ul { padding-left: 18px; font-size: 0.9rem; color: var(--text-mid); line-height: 1.8; }
	
	    .warning-box {
	      background: #fff8e1; border-left: 4px solid var(--gold);
	      border-radius: 0 var(--radius-md) var(--radius-md) 0;
	      padding: 16px 20px; margin: 20px 0;
	      font-size: 0.9rem; color: #6d5000;
	    }
	    .warning-box strong { color: #6d5000; }
	
	    /* -- FEATURE LIST -- */
	    .feat-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
	    .feat-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.93rem; color: var(--text-mid); line-height: 1.6; }
	    .feat-list .chk { flex-shrink:0; width:20px; height:20px; border-radius:50%; background:var(--turquoise); color:#fff; font-size:.65rem; display:flex; align-items:center; justify-content:center; margin-top:2px; }
	    .feat-list .x   { flex-shrink:0; width:20px; height:20px; border-radius:50%; background:#fdecea; color:#c0392b; font-size:.65rem; display:flex; align-items:center; justify-content:center; margin-top:2px; }
	
	    /* -- TABLE -- */
	    .table-wrap { overflow-x: auto; border-radius: var(--radius-md); box-shadow: var(--shadow-sm); border: 1px solid var(--border); }
	    .data-table { width: 100%; border-collapse: collapse; font-size: 0.91rem; background: var(--white); }
	    .data-table thead { background: var(--navy); color: var(--white); }
	    .data-table thead th { font-family: var(--ff-body); font-weight: 600; font-size: 0.82rem; text-transform: uppercase; letter-spacing: .06em; padding: 14px 16px; text-align: left; }
	    .data-table tbody tr { border-bottom: 1px solid var(--border); transition: background .15s; }
	    .data-table tbody tr:hover { background: var(--sand); }
	    .data-table tbody tr:last-child { border-bottom: none; }
	    .data-table td { padding: 13px 16px; color: var(--text-mid); vertical-align: middle; }
	    .data-table td:first-child { font-weight: 600; color: var(--navy); }
	    .pill-y { display:inline-block; background:#d5f5e3; color:#1e8449; font-size:.75rem; font-weight:600; padding:3px 9px; border-radius:50px; }
	    .pill-n { display:inline-block; background:#fdecea; color:#c0392b; font-size:.75rem; font-weight:600; padding:3px 9px; border-radius:50px; }
	    .pill-m { display:inline-block; background:#fef9e7; color:#d4ac0d; font-size:.75rem; font-weight:600; padding:3px 9px; border-radius:50px; }
	
	    /* -- ACTIVITY GRID (dark) -- */
	    .act-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px,1fr)); gap: 14px; }
	    .act-card {
	      background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.11);
	      border-radius: var(--radius-md); padding: 22px 14px; text-align: center;
	      transition: background .2s, transform .2s;
	    }
	    .act-card:hover { background: rgba(26,188,156,0.13); transform: translateY(-4px); }
	    .act-card__icon { font-size: 1.8rem; margin-bottom: 8px; }
	    .act-card__name { font-weight: 600; font-size: 0.87rem; color: var(--white); margin-bottom: 4px; }
	    .act-card__note { font-size: 0.75rem; color: rgba(255,255,255,0.5); }
	
	    /* -- OPINION CARD -- */
	    .opinion-card {
	      background: var(--white); border-radius: var(--radius-md);
	      border: 1px solid var(--border); box-shadow: var(--shadow-sm);
	      padding: 24px; display: flex; flex-direction: column; gap: 10px;
	    }
	    .stars { color: #f0b429; font-size: 1rem; letter-spacing: 2px; }
	    .opinion-text { font-size: 0.95rem; color: var(--text-mid); font-style: italic; line-height: 1.7; }
	    .opinion-author { font-size: 0.82rem; font-weight: 600; color: var(--text-muted); }
	
	    /* -- CTA BANNER -- */
	    .cta-banner {
	      background: linear-gradient(135deg, var(--turquoise), var(--ocean));
	      border-radius: var(--radius-lg); padding: 44px 40px;
	      display: flex; align-items: center; justify-content: space-between;
	      gap: 28px; flex-wrap: wrap; box-shadow: var(--shadow-lg);
	    }
	    .cta-banner h3 { color: var(--white); margin-bottom: 8px; }
	    .cta-banner p  { color: rgba(255,255,255,0.8); max-width: 520px; }
	    .btn-white {
	      background: var(--white); color: var(--ocean); font-weight: 700;
	      padding: 13px 30px; border-radius: 50px;
	      display: inline-flex; align-items: center; gap: 8px; flex-shrink: 0;
	      transition: transform .15s, box-shadow .15s;
	    }
	    .btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(13,33,55,0.22); }
	
	    /* -- FAQ -- */
	    .faq-list { display: flex; flex-direction: column; gap: 10px; max-width: 840px; margin: 0 auto; }
	    details { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; }
	    details[open] { box-shadow: var(--shadow-sm); }
	    summary {
	      display: flex; align-items: center; justify-content: space-between;
	      padding: 17px 22px; cursor: pointer; font-weight: 600; color: var(--navy);
	      font-size: 0.95rem; list-style: none; user-select: none; transition: background .15s;
	    }
	    summary:hover { background: var(--sand); }
	    summary::-webkit-details-marker { display: none; }
	    .faq-icon { font-size: 1.1rem; color: var(--turquoise); transition: transform .2s; flex-shrink:0; margin-left:10px; }
	    details[open] .faq-icon { transform: rotate(45deg); }
	    .faq-body { padding: 0 22px 18px; font-size: 0.91rem; color: var(--text-mid); line-height: 1.75; border-top: 1px solid var(--border); }
	    .faq-body p { margin-top: 14px; }
	
	    /* -- MAP MOCKUP -- */
	    .route-map {
	      background: linear-gradient(135deg, #e8f4f8, #d6eef5);
	      border-radius: var(--radius-lg); border: 1px solid var(--border);
	      padding: 32px; position: relative; overflow: hidden;
	    }
	    .route-map::before {
	      content: ''; position: absolute; right: 20px; top: 20px; font-size: 3rem; opacity: .15;
	    }
	    .route-stops { display: flex; flex-direction: column; gap: 6px; }
	    .route-stop {
	      display: flex; align-items: center; gap: 12px;
	      font-size: 0.88rem; font-weight: 500; color: var(--text-mid);
	    }
	    .route-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--turquoise); flex-shrink:0; }
	    .route-dot.start { background: var(--navy); }
	    .route-dot.end   { background: var(--coral); }
	    .route-line { width: 2px; height: 16px; background: var(--border); margin-left: 4px; }
	
	    /* -- FOOTER -- */
	    .site-footer { background: var(--navy); color: rgba(255,255,255,0.55); padding: 0 0 32px; }
	    .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 44px; }
	    @media(max-width:768px){ .footer-grid{ grid-template-columns:1fr 1fr; } }
	    @media(max-width:480px){ .footer-grid{ grid-template-columns:1fr; } }
	    .footer-brand p { font-size:.87rem; line-height:1.7; margin-top:10px; color:rgba(255,255,255,.45); }
	    .footer-col h4 { color:var(--white); font-size:.83rem; font-weight:600; text-transform:uppercase; letter-spacing:.08em; margin-bottom:12px; }
	    .footer-col ul  { list-style:none; }
	    .footer-col li  { margin-bottom:7px; }
	    .footer-col a   { font-size:.87rem; color:rgba(255,255,255,.48); transition:color .2s; }
	    .footer-col a:hover { color:var(--aqua); }
	    .footer-bottom { border-top:1px solid rgba(255,255,255,.1); padding-top:22px; display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px; font-size:.78rem; }
	    .footer-legal { display:flex; gap:18px; }
	    .footer-legal a { color:rgba(255,255,255,.38); transition:color .2s; }
	    .footer-legal a:hover { color:var(--white); }
	
	    /* -- ANIMATIONS -- */
	    .fade-in { opacity:0; transform:translateY(22px); transition:opacity .6s ease,transform .6s ease; }
	    .fade-in.visible { opacity:1; transform:none; }
	
	    @media(max-width:768px){
	      .section { padding: 52px 0; }
	      .site-nav { display:none; }
	      .cta-banner { padding: 28px 22px; }
	      .hero-quick { gap:20px; padding:16px 20px; }
	    }
	
