/* ==================== TOKENS ==================== */
:root {
      /* Palette inspired by the reference: deep teal, warm sunset, sun yellow */
      --teal-900: #0F2B2A;
      --teal-800: #163B39;
      --teal-700: #1F4F4D;
      --teal-600: #2D6E6B;
      --teal-500: #3C8B87;
      --cream-50: #FBF6EC;
      --cream-100: #F4ECD8;
      --cream-200: #EBE0C6;
      --sun: #F4C75A;
      --sun-deep: #E0B038;
      --ember: #D97A3F;
      --ember-deep: #BC5A28;
      --ink: #1A2624;
      --muted: rgba(26,38,36,0.62);
      --hairline: rgba(26,38,36,0.10);
      --hairline-light: rgba(251,246,236,0.14);

      /* Type */
      --display: 'DM Serif Display', 'Times New Roman', serif;
      --serif: 'Instrument Serif', 'Times New Roman', serif;
      --body: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    }

    /* ==================== RESET ==================== */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
    body {
      font-family: var(--body);
      background: var(--cream-50);
      color: var(--ink);
      line-height: 1.55;
      font-weight: 400;
      overflow-x: hidden;
    }
    img { max-width: 100%; display: block; }
    a { color: inherit; text-decoration: none; }
    button { font-family: inherit; cursor: pointer; border: none; background: none; }

    /* ==================== GLOBAL TYPE ==================== */
    .display { font-family: var(--display); font-weight: 400; letter-spacing: -0.015em; line-height: 1.05; }
    .serif-i { font-family: var(--serif); font-style: italic; font-weight: 400; }
    .eyebrow {
      font-size: 11px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
    }

    /* ==================== TEXTURE & ATMOSPHERE ==================== */
    .grain::before {
      content: ''; position: absolute; inset: 0; pointer-events: none;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.1 0 0 0 0 0.1 0 0 0 0 0.1 0 0 0 0.5 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
      opacity: 0.15; mix-blend-mode: overlay;
    }

    /* ==================== NAV ==================== */
    .nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      padding: 20px 32px;
      background: linear-gradient(180deg, rgba(15,43,42,0.4) 0%, rgba(15,43,42,0) 100%);
    }
    .nav-inner {
      max-width: 1400px; margin: 0 auto;
      display: flex; align-items: center; justify-content: space-between;
    }
    .brand {
      display: inline-flex; align-items: baseline; gap: 4px;
      color: var(--cream-50);
      font-family: var(--display);
      font-size: 28px;
      letter-spacing: -0.02em;
    }
    .brand-mark {
      display: inline-block;
      width: 8px; height: 8px;
      background: var(--sun);
      border-radius: 50%;
      transform: translateY(-4px);
      box-shadow: 0 0 16px var(--sun);
    }
    .logo{width:100px}
    .nav-actions { display: flex; gap: 12px; }
    .pill {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 10px 18px;
      border-radius: 999px;
      font-size: 13px; font-weight: 600;
      font-family: var(--body);
      transition: transform 0.2s, background 0.2s;
    }
    .pill-sun { background: var(--sun); color: var(--ink); }
    .pill-sun:hover { background: var(--sun-deep); transform: translateY(-1px); }
    .pill-ghost { background: transparent; color: var(--cream-50); border: 1px solid rgba(251,246,236,0.3); }
    .pill-ghost:hover { background: rgba(251,246,236,0.1); }

    /* ==================== HERO ==================== */
    .hero {
      position: absolute; top:0;
      min-height: 110vh;
      padding: 120px 32px 60px;
      color: var(--cream-50);
      overflow: hidden;
      padding-bottom:10px;
    }
    .hero-grid {
      max-width: 1400px; margin: 0 auto;
      display: grid; grid-template-columns: 7fr 5fr;
      gap: 60px;
      align-items: center;
      min-height: calc(100vh - 200px);
    }
    .hero-tag {
      display: inline-flex; align-items: center; gap: 10px;
      padding: 8px 16px;
      border: 1px solid #fbffaf;
      background: rgba(244,199,90,0.08);
      border-radius: 999px;
      color: #fbffaf;
      margin-bottom: 32px;
      animation: fadeUp 0.8s ease-out 0.1s both;
      box-shadow: 0 40px 80px -20px rgba(15,43,42,0.6), inset 0 1px 0 rgba(255,255,255,0.4);
      transform: rotate(2deg);
      position: relative;
      overflow: visible;
      -webkit-backdrop-filter: blur(20px) saturate(180%);
      backdrop-filter: blur(20px) saturate(180%);
    }
    .hero-tag-dot {
      width: 8px; height: 8px;
      background: #fbffaf;
      border-radius: 50%;
      box-shadow: 0 0 12px var(--sun);
      animation: pulse 2.5s infinite;
    }
    @keyframes pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.5; transform: scale(0.85); }
    }
    .hero h1 {
      font-family: var(--display);
      font-size: clamp(48px, 8vw, 104px);
      line-height: 0.95;
      letter-spacing: -0.025em;
      margin-bottom: 32px;
      animation: fadeUp 1s ease-out 0.2s both;
    }
    .hero h1 .ital {
      font-family: var(--serif);
      font-style: italic;
      color: var(--sun);
      font-weight: 400;
    }
    .hero-sub {
      font-size: clamp(16px, 1.6vw, 19px);
      line-height: 1.6;
      max-width: 540px;
      color: rgba(251,246,236,0.85);
      margin-bottom: 40px;
      animation: fadeUp 1s ease-out 0.4s both;
    }
    .hero-actions {
      display: flex; gap: 14px; flex-wrap: wrap;
      animation: fadeUp 1s ease-out 0.6s both;
    }
    .btn-primary {
      display: inline-flex; align-items: center; gap: 10px;
      padding: 18px 32px;
      background: var(--sun);
      color: var(--ink);
      border-radius: 999px;
      font-size: 15px; font-weight: 700;
      transition: all 0.2s;
      box-shadow: 0 10px 30px -10px rgba(244,199,90,0.5);
    }
    .btn-primary:hover {
      background: var(--sun-deep);
      transform: translateY(-2px);
      box-shadow: 0 15px 40px -10px rgba(244,199,90,0.6);
    }
    .btn-ghost {
      display: inline-flex; align-items: center; gap: 10px;
      padding: 18px 28px;
      background: transparent;
      color: var(--cream-50);
      border: 1px solid rgba(251,246,236,0.3);
      border-radius: 999px;
      font-size: 15px; font-weight: 600;
      transition: all 0.2s;
    }
    .btn-ghost:hover { background: rgba(251,246,236,0.08); border-color: rgba(251,246,236,0.5); }

    /* Hero postcard column */
    .hero-postcard {
      position: relative;
      animation: fadeUp 1.2s ease-out 0.5s both;
    }
    .postcard {
      /* ---- iOS-style frosted glass ---- */
      background: rgba(251,246,236,0.10);
      border: 1px solid rgba(251,246,236,0.25);
      border-radius: 20px;
      padding: 28px;
      color: var(--cream-50);
      box-shadow:
        0 40px 80px -20px rgba(15,43,42,0.6),
        inset 0 1px 0 rgba(255,255,255,0.4);
      transform: rotate(2deg);
      position: relative;
      overflow: visible;
    }
    /* Diagonal light sheen across the glass */
    .postcard::after {
      content: '';
      position: absolute; inset: 0;
      border-radius: inherit;
      background: linear-gradient(150deg, rgba(255,255,255,0.20) 0%, rgba(255,255,255,0) 42%);
      pointer-events: none;
    }
    .postcard-stamp {
      position: absolute; top: -16px; right: 24px;
      background: var(--ember);
      color: var(--cream-50);
      padding: 6px 14px;
      border-radius: 999px;
      font-size: 11px; font-weight: 700;
      letter-spacing: 0.1em; text-transform: uppercase;
      transform: rotate(-4deg);
      box-shadow: 0 6px 16px -4px rgba(188,90,40,0.5);
    }
    .postcard-eyebrow {
      font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
      color: rgba(251,246,236,0.7); font-weight: 600;
      margin-bottom: 10px;
      position: relative; z-index: 1;
    }
    .postcard-title {
      font-family: var(--display);
      font-size: 26px;
      line-height: 1.1;
      margin-bottom: 16px;
      position: relative; z-index: 1;
    }
    .postcard-quote {
      font-family: var(--serif);
      font-style: italic;
      font-size: 18px;
      line-height: 1.4;
      color: var(--cream-50);
      padding-left: 14px;
      border-left: 3px solid var(--sun);
      margin-bottom: 18px;
      position: relative; z-index: 1;
      text-shadow:2px 2px 4px rgba(0, 0, 0, 0.5);
    }
    .postcard-meta {
      display: flex; align-items: center; gap: 10px;
      padding-top: 14px; border-top: 1px solid rgba(251,246,236,0.18);
      font-size: 12px;
      position: relative; z-index: 1;
    }
    .postcard-avatar {
      width: 30px; height: 30px; border-radius: 50%;
      background: linear-gradient(135deg, var(--ember), var(--teal-600));
      display: flex; align-items: center; justify-content: center;
      color: var(--cream-50); font-weight: 700; font-size: 12px;
    }
    .postcard-meta strong { display: block; font-weight: 600; }
    .postcard-meta span { color: rgba(251,246,236,0.6); }
    .postcard-after {
      position: absolute; top: 24px; right: -40px;
      width: 100px; height: 100px;
      background: var(--sun);
      border-radius: 50%;
      opacity: 0.3; filter: blur(40px);
      z-index: -1;
    }

    /* Hero marquee */
    .hero-strip {
      position: absolute; top: 0; left: 0; right: 0;
      background: #fffcd0;
      backdrop-filter: blur(10px);
      border-top: 1px solid rgba(251,246,236,0.08);
      overflow: hidden;
      padding: 5px 0;
    }
    .strip-track {
      display: inline-flex; gap: 60px;
      white-space: nowrap;
      animation: scroll 40s linear infinite;
    }
    .strip-item {
      font-family: var(--serif); font-style: italic;
      color: #000000;
      font-size: 16px;
      display: inline-flex; align-items: center; gap: 12px;
    }
    .strip-item::after {
      content: '✦'; color:#00abab; margin-left: 60px;
    }
    @keyframes scroll {
      from { transform: translateX(0); }
      to { transform: translateX(-50%); }
    }

    /* ==================== SECTION LABEL ==================== */
    .section-label {
      display: inline-flex; align-items: center; gap: 12px;
      margin-bottom: 24px;
    }
    .section-label-line { width: 32px; height: 1px; background: currentColor; opacity: 0.4; }

    /* ==================== TELL US / IMAGE PANEL ==================== */
    .panel-section {
      padding: 100px 32px;
      background: #295868;
      color: var(--cream-50);
      position: relative;
    }
    .panel-grid {
      max-width: 1400px; margin: 0 auto;
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 0;
      border-radius: 24px;
      overflow: hidden;
      box-shadow: 0 40px 80px -20px rgba(15,43,42,0.5);
    }
    .panel-text {
      background: #235a6e;

      padding: 60px 50px;
      display: flex; flex-direction: column; justify-content: center;
      color: var(--cream-50);
    }
    .panel-text .eyebrow { color: var(--sun); }
    .panel-text h2 {
      font-family: var(--display);
      font-size: clamp(36px, 4vw, 52px);
      line-height: 1.0;
      margin-bottom: 24px;
      letter-spacing: -0.02em;
    }
    .panel-text h2 .ital {
      font-family: var(--serif); font-style: italic;
      color: var(--sun);
    }
    .panel-text p {
      font-size: 16px;
      line-height: 1.6;
      color: rgba(251,246,236,0.78);
      margin-bottom: 32px;
      max-width: 460px;
    }
    .panel-image {
      background-size: cover;
      background-position: center;
      min-height: 480px;
      position: relative;
    }
    .panel-image::after {
      content: '';
      position: absolute; inset: 0;
      background: linear-gradient(135deg, transparent 50%, rgba(15,43,42,0.3) 100%);
    }
    .panel-image.warungs {
      /* slideshow uses absolutely-positioned <img> children below */
      background: #163B39;
      overflow: hidden;
    }

    /* ---- Looping crossfade slideshow ---- */
    .slideshow {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      z-index: 0;
    }
    .slideshow .slide {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0;
      animation: slideFade 15s infinite;
      will-change: opacity;
    }
    /* Each slide is offset by 1/3 of the loop length (5s) so they hand off cleanly */
    .slideshow .slide:nth-child(1) { animation-delay: 0s; }
    .slideshow .slide:nth-child(2) { animation-delay: 5s; }
    .slideshow .slide:nth-child(3) { animation-delay: 10s; }

    @keyframes slideFade {
      /* Each slide is visible for ~30% of the cycle with smooth fade in/out */
      0%   { opacity: 0; }
      6%   { opacity: 1; }       /* fade in (~0.9s) */
      33%  { opacity: 1; }       /* hold visible */
      40%  { opacity: 0; }       /* fade out (~1s) */
      100% { opacity: 0; }
    }

    /* Respect users who prefer reduced motion — show first slide, no animation */
    @media (prefers-reduced-motion: reduce) {
      .slideshow .slide {
        animation: none;
        opacity: 0;
      }
      .slideshow .slide:nth-child(1) { opacity: 1; }
    }

    /* Make sure the postcard sits above the slideshow */
    .panel-image.warungs .image-postcard {
      z-index: 2;
    }
    /* Subtle vignette over slideshow for legibility of the postcard */
    .panel-image.warungs::before {
      content: '';
      position: absolute; inset: 0;
      background: linear-gradient(135deg, transparent 40%, rgba(15,43,42,0.35) 100%);
      z-index: 1;
      pointer-events: none;
    }
    .panel-image.ubud {
     /* background:
        radial-gradient(ellipse at center, #F4C75A 0%, #D97A3F 40%, #1F4F4D 100%);*/
        background-image: url("rice.jpg");
        background-size: cover;
        background-clip: border-box;
        background-repeat: no-repeat;
    }
    /* Subtle glass sheen over the rice-field photo for depth + legibility */
    .panel-image.ubud::before {
      content: '';
      position: absolute; inset: 0;
      background:
        linear-gradient(160deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0) 35%),
        linear-gradient(0deg, rgba(15,43,42,0.35) 0%, rgba(15,43,42,0) 45%);
      -webkit-backdrop-filter: saturate(115%);
      backdrop-filter: saturate(115%);
      pointer-events: none;
      z-index: 1;
    }
    .image-postcard {
      position: absolute; bottom: 32px; right: 32px;
      /* ---- iOS-style frosted glass ---- */
      background: rgba(251,246,236,0.12);
      -webkit-backdrop-filter: blur(20px) saturate(180%);
      backdrop-filter: blur(20px) saturate(180%);
      border: 1px solid rgba(251,246,236,0.25);
      color: var(--cream-50);
      padding: 18px 22px;
      border-radius: 14px;
      max-width: 280px;
      box-shadow:
        0 20px 40px -10px rgba(15,43,42,0.4),
        inset 0 1px 0 rgba(255,255,255,0.4);
      overflow: hidden;
    }
    .image-postcard::after {
      content: '';
      position: absolute; inset: 0;
      border-radius: inherit;
      background: linear-gradient(150deg, rgba(255,255,255,0.20) 0%, rgba(255,255,255,0) 45%);
      pointer-events: none;
    }
    .image-postcard-title {
      font-family: var(--display);
      font-size: 18px;
      margin-bottom: 6px;
      position: relative; z-index: 1;
    }
    .image-postcard-meta {
      font-size: 12px;
      color: rgba(251,246,236,0.7);
      margin-bottom: 10px;
      position: relative; z-index: 1;
    }
    .image-postcard-cta {
      font-family: var(--serif);
      font-size: 14px;
      color:#fbffaf;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    /* Reverse panel */
    .panel-section.reverse .panel-grid { grid-template-columns: 1fr 1fr; }
    .panel-section.reverse .panel-image { order: 1; }
    .panel-section.reverse .panel-text { order: 2; }
    .panel-section.cream {
  
      color: var(--ink);
            background: #0f9999;  /* fallback for old browsers */
background: -webkit-linear-gradient(to left, #0f9999, #ffffff);  /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to left, #0f9999, #ffffff); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

    }
    .panel-section.cream .panel-text {
      background: var(--cream-50);
      color: var(--ink);
    }
    .panel-section.cream .panel-text .eyebrow { color: var(--ember); }
    .panel-section.cream .panel-text h2 { color: var(--ink); }
    .panel-section.cream .panel-text h2 .ital { color: var(--ember); }
    .panel-section.cream .panel-text p { color: var(--muted); }

    @media (max-width: 900px) {
      .panel-grid { grid-template-columns: 1fr; }
      .panel-section.reverse .panel-image { order: 0; }
      .panel-section.reverse .panel-text { order: 1; }
      .panel-image { min-height: 300px; }
    }

    /* ==================== PROBLEM STRIP ==================== */
    .problem-strip {
      background: #00abab;
      color: var(--cream-50);
      padding: 80px 32px;
      position: relative;
      background-image: url("top_beach.png");
      background-clip: border-box;
      background-repeat: no-repeat;
      background-size: 100% 450px;
    }
    .problem-inner {
      max-width: 1200px; margin: 0 auto;
    }
    .problem-header {
      text-align: center;
      margin-bottom: 60px;
      max-width: 700px;
      margin-left: auto; margin-right: auto;
    }
    .problem-header h2 {
      font-family: var(--display);
      font-size: clamp(28px, 3.5vw, 40px);
      line-height: 1.1;
      letter-spacing: -0.02em;
    }
    .problem-header .ital {
      font-family: var(--serif); font-style: italic;
      color: var(--sun);
    }

    .problem-header .italy {
      font-family: var(--serif); font-style: italic;
      color: #fbffaf;
    }  
    .problem-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
    }
    .problem-stat {
      padding: 36px 24px;
      text-align: center;
      /* ---- iOS-style frosted glass ---- */
      position: relative;
      border-radius: 20px;
      background: rgba(251,246,236,0.10);
      -webkit-backdrop-filter: blur(18px) saturate(180%);
      border: 1px solid rgba(251,246,236,0.22);
      box-shadow:
        0 10px 30px -12px rgba(0,0,0,0.35),
        inset 0 1px 0 rgba(255,255,255,0.35);
      transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
    }
    /* Soft top-edge sheen so the glass reads as having thickness */
    .problem-stat::before {
      content: '';
      position: absolute; inset: 0;
      border-radius: inherit;
      background: linear-gradient(160deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0) 45%);
      pointer-events: none;
    }
    .problem-stat:hover {
      transform: translateY(-4px);
      background: rgba(251,246,236,0.16);
      box-shadow:
        0 20px 40px -14px rgba(0,0,0,0.40),
        inset 0 1px 0 rgba(255,255,255,0.45);
    }
    .problem-stat-num {
      font-family: var(--display);
      font-size: 30px;
      color: #fbffaf;
      line-height: 1;
      margin-bottom: 8px;
    }
    .problem-stat-num small { font-size: 28px; opacity: 0.8; }
    .problem-stat-label {
      font-size: 13px;
      color: rgba(0, 0, 0, 0.65);
      line-height: 1.4;
    }
    @media (max-width: 800px) {
      .problem-grid { grid-template-columns: 1fr 1fr; }
      .problem-stat:nth-child(2) { border-right: none; }
    }

    /* ==================== LOCAL TIPS GRID ==================== */
    .tips-section {
      padding: 100px 32px;
      background: var(--cream-50);
      background: #0f9999;  /* fallback for old browsers */
      background: -webkit-linear-gradient(to left, #0f9999, #ffffff);  /* Chrome 10-25, Safari 5.1-6 */
      background: linear-gradient(to left, #0f9999, #ffffff); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

    }
    .tips-inner { max-width: 1400px; margin: 0 auto; }
    .tips-header {
      display: flex; align-items: end; justify-content: space-between;
      margin-bottom: 60px;
      gap: 40px;
    }
    .tips-header > div:first-child { max-width: 600px; }
    .tips-header .eyebrow { color: var(--ember); margin-bottom: 16px; display: block; }
    .tips-header h2 {
      font-family: var(--display);
      font-size: clamp(36px, 5vw, 60px);
      line-height: 1.05;
      letter-spacing: -0.02em;
    }
    .tips-header h2 .ital { font-family: var(--serif); font-style: italic; color: var(--ember); }
    .tips-header p {
      font-size: 16px;
      color: var(--muted);
      max-width: 380px;
    }
    .tips-grid {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    .tip-card {
      position: relative;
      border-radius: 20px;
      overflow: hidden;
      background: var(--teal-700);
      color: var(--cream-50);
      min-height: 380px;
      display: flex; flex-direction: column; justify-content: flex-end;
      padding: 30px;
      transition: transform 0.3s, box-shadow 0.3s;
      cursor: pointer;
    }
    .tip-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 30px 60px -20px rgba(15,43,42,0.4);
    }
    /* Dark bottom-up scrim baked over each photo so the white text stays legible.
       Kept in ONE background declaration — a later `background-image` line would
       otherwise clobber the gradient (which is what was happening before). */
    .tip-card.c1 {
      background:
        linear-gradient(180deg, rgba(15,43,42,0) 35%, rgba(15,43,42,0.92) 100%),
        url("20.png");
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
    }
    .tip-card.c2 {
      background:
        linear-gradient(180deg, rgba(15,43,42,0) 35%, rgba(15,43,42,0.92) 100%),
        url("cliffs.jpg");
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
    }
    .tip-card.c3 {
      background:
        linear-gradient(180deg, rgba(15,43,42,0) 35%, rgba(15,43,42,0.92) 100%),
        url("silverman.jpeg");
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
    }
    .tip-card-tag {
      align-self: flex-start;
      background: rgba(251,246,236,0.15);
      backdrop-filter: blur(10px);
      padding: 6px 12px;
      border-radius: 999px;
      font-size: 11px;
      letter-spacing: 0.1em; text-transform: uppercase;
      font-weight: 600;
      position: absolute; top: 24px; left: 24px;
    }
    .tip-card-title {
      font-family: var(--display);
      font-size: 28px;
      line-height: 1.05;
      margin-bottom: 12px;
      text-shadow: 0 1px 12px rgba(0, 0, 0, 0.55);
    }
    .tip-card-quote {
      font-family: var(--serif); font-style: italic;
      font-size: 15px;
      line-height: 1.4;
      color: rgba(251,246,236,0.9);
      margin-bottom: 16px;
      text-shadow: 0 1px 10px rgba(0, 0, 0, 0.5);
    }
    .tip-card-author {
      display: flex; align-items: center; gap: 10px;
      font-size: 12px;
      color: rgba(251,246,236,0.7);
    }
    .tip-avatar {
      width: 24px; height: 24px; border-radius: 50%;
      background: var(--sun);
      color: var(--teal-900);
      display: flex; align-items: center; justify-content: center;
      font-size: 11px; font-weight: 700;
    }
    @media (max-width: 900px) {
      .tips-grid { grid-template-columns: 1fr; }
      .tips-header { flex-direction: column; align-items: flex-start; }
    }

    /* ==================== HOW IT WORKS — TIMELINE ==================== */
    .how-section {
      padding: 100px 32px;
      background: white;
      position: relative;
    }
    .how-inner { max-width: 1200px; margin: 0 auto; }
    .how-header { text-align: center; margin-bottom: 70px; }
    .how-header .eyebrow { color: var(--ember); display: block; margin-bottom: 16px; }
    .how-header h2 {
      font-family: var(--display);
      font-size: clamp(36px, 5vw, 56px);
      line-height: 1.05;
      letter-spacing: -0.02em;
      max-width: 800px; margin: 0 auto;
    }
    .how-header h2 .ital { font-family: var(--serif); font-style: italic; color: var(--ember); }

    .how-timeline {
      display: grid; grid-template-columns: repeat(4, 1fr);
      gap: 0;
      position: relative;
    }
    .how-timeline::before {
      content: ''; position: absolute;
      top: 38px; left: 12.5%; right: 12.5%;
      height: 1px;
      background: repeating-linear-gradient(90deg, var(--ember) 0 8px, transparent 8px 14px);
    }
    .how-step {
      display: flex; flex-direction: column; align-items: center;
      text-align: center;
      padding: 0 20px;
    }
    .how-num {
      width: 76px; height: 76px;
      border-radius: 50%;
      background: var(--cream-50);
      border: 1px solid var(--ember);
      display: flex; align-items: center; justify-content: center;
      font-family: var(--display);
      font-size: 32px;
      color: var(--ember);
      margin-bottom: 24px;
      position: relative; z-index: 2;
      box-shadow: 0 8px 24px -8px rgba(217,122,63,0.4);
    }
    .how-step h3 {
      font-family: var(--display);
      font-size: 22px;
      line-height: 1.15;
      margin-bottom: 10px;
    }
    .how-step p {
      font-size: 14px;
      color: var(--muted);
      line-height: 1.5;
    }
    @media (max-width: 900px) {
      .how-timeline { grid-template-columns: 1fr 1fr; gap: 40px 20px; }
      .how-timeline::before { display: none; }
    }
    @media (max-width: 500px) {
      .how-timeline { grid-template-columns: 1fr; }
    }

    /* ==================== LOCAL GUIDES ==================== */
    .guides-section {
      padding: 100px 32px;
      background: #295868;
      color: var(--cream-50);
      position: relative;
    }
    .guides-inner { max-width: 1400px; margin: 0 auto; }
    .guides-grid-layout {
      display: grid;
      grid-template-columns: 5fr 7fr;
      gap: 60px;
      align-items: center;
    }
    .guides-text .eyebrow { color: var(--sun); display: block; margin-bottom: 16px; }
    .guides-text h2 {
      font-family: var(--display);
      font-size: clamp(36px, 4.5vw, 56px);
      line-height: 1.0;
      letter-spacing: -0.02em;
      margin-bottom: 24px;
    }
    .guides-text h2 .ital { font-family: var(--serif); font-style: italic; color: var(--sun); }
    .guides-text p {
      font-size: 17px;
      line-height: 1.6;
      color: rgba(251,246,236,0.75);
      margin-bottom: 28px;
    }
    .guides-text .note {
      font-family: var(--serif); font-style: italic;
      font-size: 14px;
      color: rgba(251,246,236,0.5);
      padding-left: 16px;
      border-left: 2px solid var(--sun);
    }
    .guides-cards {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 16px;
    }
    .guide-card {
      background: rgba(251,246,236,0.04);
      border: 1px solid rgba(251,246,236,0.08);
      border-radius: 18px;
      padding: 24px;
      transition: all 0.3s;
      position: relative;
      overflow: hidden;
    }
    .guide-card:hover {
      background: rgba(251,246,236,0.07);
      border-color: rgba(244,199,90,0.3);
      transform: translateY(-4px);
    }
    .guide-card-top {
      display: flex; align-items: center; gap: 14px;
      margin-bottom: 16px;
    }
    .guide-portrait {
      width: 56px; height: 56px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--ember), var(--sun));
      display: flex; align-items: center; justify-content: center;
      font-family: var(--display);
      font-size: 22px;
      color: var(--teal-900);
      flex-shrink: 0;
    }
    .guide-card h3 {
      font-family: var(--display);
      font-size: 20px;
      margin-bottom: 2px;
    }
    .guide-card-region {
      font-size: 11px;
      color: var(--sun);
      letter-spacing: 0.12em; text-transform: uppercase;
      font-weight: 600;
    }
    .guide-card-spec {
      font-family: var(--serif); font-style: italic;
      font-size: 14px;
      line-height: 1.45;
      color: rgba(251,246,236,0.75);
      padding-top: 12px;
      border-top: 1px solid rgba(251,246,236,0.08);
    }
    @media (max-width: 1000px) {
      .guides-grid-layout { grid-template-columns: 1fr; gap: 40px; }
    }
    @media (max-width: 600px) {
      .guides-cards { grid-template-columns: 1fr; }
    }

    /* ==================== IN-TRIP DEMO ==================== */
    .demo-section {
      padding: 100px 32px;
      background: #ffffff;
      position: relative;
      overflow: hidden;
    }
    .demo-section::before {
      content: '';
      position: absolute;
      top: 10%; right: -100px;
      width: 400px; height: 400px;
      background: radial-gradient(circle, var(--sun) 0%, transparent 70%);
      opacity: 0.25;
      filter: blur(40px);
      pointer-events: none;
    }
    .demo-inner {
      max-width: 1300px; margin: 0 auto;
      display: grid; grid-template-columns: 5fr 7fr;
      gap: 80px;
      align-items: center;
      position: relative;
    }
    .demo-text .eyebrow { color: var(--ember); display: block; margin-bottom: 16px; }
    .demo-text h2 {
      font-family: var(--display);
      font-size: clamp(40px, 5.5vw, 68px);
      line-height: 1.0;
      letter-spacing: -0.025em;
      margin-bottom: 24px;
    }
    .demo-text h2 .ital { font-family: var(--serif); font-style: italic; color: var(--ember); }
    .demo-text p {
      font-size: 17px;
      line-height: 1.6;
      color: var(--muted);
      margin-bottom: 20px;
      max-width: 440px;
    }

    .phone {
      background: var(--ink);
      border-radius: 36px;
      padding: 12px;
      box-shadow: 0 40px 80px -20px rgba(15,43,42,0.4);
      max-width: 420px;
      margin: 0 auto;
    }
    .phone-screen {
      background: var(--cream-50);
      border-radius: 28px;
      padding: 22px;
      overflow: hidden;
    }
    .phone-header {
      display: flex; align-items: center; justify-content: space-between;
      padding-bottom: 14px;
      border-bottom: 1px solid var(--hairline);
      margin-bottom: 18px;
    }
    .phone-header-left {
      display: flex; align-items: center; gap: 10px;
      font-size: 14px;
    }
    .phone-status {
      width: 8px; height: 8px;
      background: #2DAA70;
      border-radius: 50%;
      box-shadow: 0 0 8px #2DAA70;
    }
    .phone-time {
      font-size: 12px;
      color: var(--muted);
      font-variant-numeric: tabular-nums;
    }

    .chat-user {
      background: var(--teal-700);
      color: var(--cream-50);
      padding: 13px 16px;
      border-radius: 18px 18px 4px 18px;
      max-width: 85%;
      margin-left: auto;
      margin-bottom: 16px;
      font-size: 14px;
      line-height: 1.4;
    }
    .chat-ai {
      background: var(--cream-100);
      border-radius: 18px 18px 18px 4px;
      padding: 16px;
      max-width: 95%;
      font-size: 13px;
      line-height: 1.5;
    }
    .chat-ai-intro {
      font-weight: 500;
      margin-bottom: 12px;
      color: var(--ink);
    }
    .chat-options { display: flex; flex-direction: column; gap: 8px; }
    .chat-option {
      background: var(--cream-50);
      padding: 10px 12px;
      border-radius: 10px;
      border: 1px solid var(--hairline);
      font-size: 12px;
    }
    .chat-option strong { color: var(--ink); font-weight: 600; }
    .chat-option em {
      display: block;
      font-family: var(--serif); font-style: italic;
      color: var(--ember);
      margin-top: 2px;
      font-size: 11px;
    }
    .chat-skip {
      font-size: 11px;
      color: var(--muted);
      margin-top: 10px;
      font-style: italic;
    }
    .chat-source {
      display: flex; align-items: center; gap: 8px;
      padding-top: 12px;
      border-top: 1px dashed var(--hairline);
      margin-top: 12px;
      font-size: 11px;
      color: var(--muted);
    }
    .chat-source-avatar {
      width: 20px; height: 20px;
      border-radius: 50%;
      background: var(--sun);
      color: var(--teal-900);
      display: flex; align-items: center; justify-content: center;
      font-size: 10px; font-weight: 700;
    }
    .chat-actions { display: flex; gap: 8px; margin-top: 12px; }
    .chat-btn {
      flex: 1; padding: 9px 12px;
      border-radius: 10px;
      font-size: 12px; font-weight: 600;
      cursor: pointer;
    }
    .chat-btn-primary {
      background: var(--ember);
      color: var(--cream-50);
    }
    .chat-btn-ghost {
      background: var(--cream-50);
      color: var(--ink);
      border: 1px solid var(--hairline);
    }
    .phone-label {
      text-align: center;
      font-family: var(--serif); font-style: italic;
      font-size: 13px;
      color: var(--muted);
      margin-top: 20px;
    }
    @media (max-width: 900px) {
      .demo-inner { grid-template-columns: 1fr; gap: 50px; }
    }

    /* ==================== PRICING ==================== */
    .pricing-section {
      padding: 100px 32px;
      background: #ffffff;
    }
    .pricing-inner { max-width: 1100px; margin: 0 auto; }
    .pricing-header { text-align: center; margin-bottom: 60px; }
    .pricing-header .eyebrow { color: var(--ember); display: block; margin-bottom: 16px; }
    .pricing-header h2 {
      font-family: var(--display);
      font-size: clamp(36px, 5vw, 56px);
      line-height: 1.0;
      letter-spacing: -0.02em;
      max-width: 800px; margin: 0 auto 16px;
    }
    .pricing-header h2 .ital { font-family: var(--serif); font-style: italic; color: var(--ember); }
    .pricing-header p {
      font-size: 16px;
      color: var(--muted);
      max-width: 560px; margin: 0 auto;
    }
    .pricing-cards {
      display: grid; grid-template-columns: 1fr 1.1fr;
      gap: 20px;
      align-items: stretch;
    }
    .price-card {
      background: var(--cream-50);
      border-radius: 24px;
      padding: 40px;
      border: 1px solid var(--hairline);
      position: relative;
    }
    .price-card.featured {
      background: #295868;
      color: var(--cream-50);
      border: none;
      box-shadow: 0 40px 80px -20px rgba(15,43,42,0.5);
    }
    .price-badge {
      position: absolute;
      top: -14px; left: 36px;
      background: var(--sun);
      color: var(--teal-900);
      padding: 6px 14px;
      border-radius: 999px;
      font-size: 11px; font-weight: 700;
      letter-spacing: 0.12em; text-transform: uppercase;
    }
    .price-card .price-label {
      font-size: 11px;
      letter-spacing: 0.2em; text-transform: uppercase;
      font-weight: 600;
      color: var(--muted);
      margin-bottom: 16px;
    }
    .price-card.featured .price-label { color: var(--sun); }
    .price-amount {
      font-family: var(--display);
      font-size: 64px;
      line-height: 1;
      margin-bottom: 4px;
      letter-spacing: -0.03em;
    }
    .price-period {
      font-size: 13px;
      color: var(--muted);
      margin-bottom: 24px;
    }
    .price-card.featured .price-period { color: rgba(251,246,236,0.55); }
    .price-desc {
      font-family: var(--serif); font-style: italic;
      font-size: 15px;
      line-height: 1.5;
      margin-bottom: 28px;
      padding-bottom: 24px;
      border-bottom: 1px solid var(--hairline);
    }
    .price-card.featured .price-desc { border-bottom-color: rgba(251,246,236,0.12); }
    .price-features { list-style: none; }
    .price-features li {
      padding: 10px 0;
      font-size: 14px;
      display: flex; gap: 12px;
      align-items: flex-start;
    }
    .price-check {
      flex-shrink: 0;
      width: 18px; height: 18px;
      background: var(--ember);
      color: var(--cream-50);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 11px; font-weight: 700;
      margin-top: 2px;
    }
    .price-card.featured .price-check { background: var(--sun); color: var(--teal-900); }
    .price-dash {
      flex-shrink: 0;
      width: 18px; height: 18px;
      color: var(--muted);
      display: flex; align-items: center; justify-content: center;
      margin-top: 2px;
    }
    .price-features .dim { color: var(--muted); }
    .price-bottom {
      margin-top: 24px;
      padding-top: 20px;
      border-top: 1px dashed var(--hairline);
      font-family: var(--serif); font-style: italic;
      font-size: 13px;
      color: var(--muted);
    }
    .price-card.featured .price-bottom {
      border-top-color: rgba(251,246,236,0.15);
      color: rgba(251,246,236,0.6);
    }
    @media (max-width: 800px) {
      .pricing-cards { grid-template-columns: 1fr; }
    }

    /* ==================== RECRUIT ==================== */
    .recruit-section {
      padding: 100px 32px;
      background:
        radial-gradient(ellipse at top right, rgba(244,199,90,0.15) 0%, transparent 60%),
        #295868;
      color: var(--cream-50);
      position: relative;
    }
    .recruit-inner {
      max-width: 1300px; margin: 0 auto;
      display: grid; grid-template-columns: 5fr 7fr;
      gap: 80px;
      align-items: center;
    }
    .recruit-text .eyebrow { color: var(--sun); display: block; margin-bottom: 16px; }
    .recruit-text h2 {
      font-family: var(--display);
      font-size: clamp(40px, 5vw, 60px);
      line-height: 1.0;
      letter-spacing: -0.025em;
      margin-bottom: 24px;
    }
    .recruit-text h2 .ital { font-family: var(--serif); font-style: italic; color: var(--sun); }
    .recruit-text p {
      font-size: 17px;
      line-height: 1.6;
      color: rgba(251,246,236,0.75);
      margin-bottom: 32px;
    }
    .recruit-cta {
      display: inline-flex; align-items: center; gap: 10px;
      background: var(--sun);
      color: var(--teal-900);
      padding: 18px 32px;
      border-radius: 999px;
      font-weight: 700;
      transition: all 0.2s;
    }
    .recruit-cta:hover { background: var(--sun-deep); transform: translateY(-2px); }
    .recruit-perks {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 24px;
    }
    .perk {
      padding: 24px;
      background: rgba(251,246,236,0.04);
      border: 1px solid rgba(251,246,236,0.08);
      border-radius: 16px;
    }
    .perk-icon {
      width: 44px; height: 44px;
      background: rgba(244,199,90,0.15);
      border: 1px solid rgba(244,199,90,0.3);
      border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 16px;
      color: var(--sun);
    }
    .perk h4 {
      font-family: var(--display);
      font-size: 19px;
      margin-bottom: 6px;
    }
    .perk p {
      font-size: 13px;
      line-height: 1.5;
      color: rgba(251,246,236,0.65);
    }
    @media (max-width: 900px) {
      .recruit-inner { grid-template-columns: 1fr; gap: 50px; }
      .recruit-perks { grid-template-columns: 1fr; }
    }

    /* ==================== FAQ ==================== */
    .faq-section {
      padding: 100px 32px;
      background: white;
    }
    .faq-inner { max-width: 900px; margin: 0 auto; }
    .faq-header { text-align: center; margin-bottom: 60px; }
    .faq-header .eyebrow { color: var(--ember); display: block; margin-bottom: 16px; }
    .faq-header h2 {
      font-family: var(--display);
      font-size: clamp(36px, 5vw, 52px);
      line-height: 1.0;
      letter-spacing: -0.02em;
    }
    .faq-header h2 .ital { font-family: var(--serif); font-style: italic; color: var(--ember); }
    .faq-item {
      padding: 28px 0;
      border-bottom: 1px solid var(--hairline);
    }
    .faq-q {
      font-family: var(--display);
      font-size: 22px;
      line-height: 1.2;
      margin-bottom: 12px;
    }
    .faq-a {
      font-size: 15px;
      line-height: 1.6;
      color: var(--muted);
    }

    /* ==================== FINAL CTA ==================== */
    .cta-section {
      padding: 120px 32px;
      background:#295868;
      color: var(--cream-50);
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .cta-decoration {
      position: absolute;
      width: 600px; height: 600px;
      border: 1px solid rgba(244,199,90,0.15);
      border-radius: 50%;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      pointer-events: none;
    }
    .cta-decoration:nth-child(2) { width: 800px; height: 800px; }
    .cta-decoration:nth-child(3) { width: 1000px; height: 1000px; }
    .cta-inner { max-width: 700px; margin: 0 auto; position: relative; }
    .cta-section h2 {
      font-family: var(--display);
      font-size: clamp(44px, 6vw, 80px);
      line-height: 0.95;
      letter-spacing: -0.03em;
      margin-bottom: 24px;
    }
    .cta-section h2 .ital { font-family: var(--serif); font-style: italic; color: var(--sun); }
    .cta-section p {
      font-size: 18px;
      color: rgba(251,246,236,0.7);
      max-width: 540px;
      margin: 0 auto 40px;
    }
    .cta-form {
      max-width: 560px;
      margin: 0 auto;
      display: flex; gap: 8px;
      flex-wrap: wrap;
      padding: 8px;
      background: rgba(251,246,236,0.06);
      backdrop-filter: blur(16px);
      border: 1px solid rgba(251,246,236,0.12);
      border-radius: 999px;
    }
    .cta-form input {
      flex: 1; min-width: 180px;
      padding: 14px 22px;
      border: none;
      background: transparent;
      color: var(--cream-50);
      font-family: var(--body);
      font-size: 15px;
      outline: none;
    }
    .cta-form input::placeholder { color: rgba(251,246,236,0.5); }
    .cta-form button {
      padding: 14px 28px;
      background: var(--sun);
      color: var(--teal-900);
      border-radius: 999px;
      font-weight: 700;
      font-size: 14px;
    }
    .cta-meta {
      display: flex; justify-content: center; gap: 24px;
      margin-top: 24px;
      font-size: 13px;
      color: rgba(251,246,236,0.55);
      flex-wrap: wrap;
    }

    .video-container{
        position: relative;
        width: 100%;
        overflow: hidden;
    }

      /* Video scales perfectly across the width */
    .video-container video {
      width: 100%;
      height: auto;
      display: block; /* Removes bottom whitespace gap */
    }

    /* Overlay sits directly on top of the video */
    .video-container .hero.grain.video-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      /* Centers the content inside the overlay */
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      
      /* Design options */
      color: white;
      background-color: rgba(0, 0, 0, 0.4); /* Optional dark tint */
      text-align: center;
    }

    /* ==================== FOOTER ==================== */
    .footer {
      padding: 60px 32px 40px;
      background:#ffdf2b;
      border-top: 1px solid rgba(251,246,236,0.06);
      color: #295868;
    }
    .footer-inner {
      max-width: 1400px; margin: 0 auto;
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 40px;
      margin-bottom: 40px;
    }
    .footer-brand { color: var(--cream-50); }
    .footer-brand p {
      margin-top: 16px;
      font-size: 14px;
      max-width: 280px;
      line-height: 1.5;
      color:#295868;
    }
    .footer-col h5 {
      font-family: var(--display);
      font-size: 16px;
      color: #000000;
      margin-bottom: 16px;
    }
    .footer-col a {
      display: block;
      font-size: 14px;
      padding: 6px 0;
      color:#295868;
      transition: color 0.2s;
    }
    .footer-col a:hover { color: #000000; }
    .footer-bottom {
      max-width: 1400px; margin: 0 auto;
      padding-top: 24px;
      border-top: 1px solid rgba(251,246,236,0.08);
      display: flex; justify-content: space-between;
      font-size: 12px;
      flex-wrap: wrap; gap: 12px;
    }
    @media (max-width: 800px) {
      .footer-inner { grid-template-columns: 1fr 1fr; }
    }

    /* ==================== ANIMATIONS ==================== */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after { animation: none !important; transition: none !important; }
    }
