
<style>
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --pink: #D9359A;
    --pink-dark: #A8247A;
    --pink-light: #FBEAF0;
    --coral: #E8604A;
    --off-white: #FAF8F5;
    --stone: #E8E3DC;
    --charcoal: #1A1A1A;
    --slate: #6B6B6B;
    --white: #ffffff;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'DM Sans', system-ui, sans-serif;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: var(--font-body);
    background: var(--off-white);
    color: var(--charcoal);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
  }

  img { max-width: 100%; display: block; }
  a { text-decoration: none; color: inherit; }

  /* ── NAV ── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2.5rem;
    height: 72px;
    background: rgba(250,248,245,0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--stone);
    transition: box-shadow 0.3s;
  }
  nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }
  .nav-logo { display: flex; align-items: center; gap: 0.6rem; }
  .nav-logo img { height: 44px; width: auto; }
  .nav-brand { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; color: var(--pink); letter-spacing: -0.01em; }
  .nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
  .nav-links a { font-size: 0.875rem; font-weight: 500; color: var(--slate); transition: color 0.2s; position: relative; }
  .nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--pink); transition: width 0.25s ease; }
  .nav-links a:hover { color: var(--charcoal); }
  .nav-links a:hover::after { width: 100%; }
  .nav-cta { background: var(--pink); color: var(--white) !important; padding: 0.5rem 1.25rem; border-radius: 100px; font-weight: 600; font-size: 0.875rem; transition: background 0.2s !important; }
  .nav-cta::after { display: none !important; }
  .nav-cta:hover { background: var(--pink-dark) !important; color: var(--white) !important; }

  /* ── HERO ── */
  .hero {
    margin-top: 72px;
    min-height: calc(100vh - 72px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
  }
  .hero-left {
    background: var(--off-white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem 4rem 5rem 5rem;
    position: relative;
  }
  .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--pink);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.35rem 0.85rem;
    border-radius: 100px;
    margin-bottom: 1.75rem;
    width: fit-content;
  }
  .hero-headline {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 4.5vw, 4.2rem);
    font-weight: 700;
    color: var(--charcoal);
    line-height: 1.1;
    margin-bottom: 1.5rem;
  }
  .hero-headline em {
    font-style: italic;
    color: var(--pink);
  }
  .hero-sub {
    font-size: 1.1rem;
    color: var(--slate);
    max-width: 420px;
    margin-bottom: 2.5rem;
    line-height: 1.7;
  }
  .hero-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
  }
  .btn-primary {
    background: var(--pink);
    color: var(--white);
    padding: 0.85rem 2rem;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background 0.2s, transform 0.15s;
    border: none;
    cursor: pointer;
    display: inline-block;
  }
  .btn-primary:hover { background: var(--pink-dark); transform: translateY(-1px); }
  .btn-ghost {
    color: var(--slate);
    font-weight: 500;
    font-size: 0.95rem;
    border-bottom: 1px solid var(--stone);
    padding-bottom: 2px;
    transition: color 0.2s, border-color 0.2s;
  }
  .btn-ghost:hover { color: var(--charcoal); border-color: var(--pink); }
  .hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    margin-top: 3.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--stone);
  }
  .hero-stat-num {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--pink);
  }
  .hero-stat-label {
    font-size: 0.8rem;
    color: var(--slate);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 0.2rem;
  }
  .hero-right {
    position: relative;
    background: var(--stone);
    overflow: hidden;
  }
  .hero-right-grid {
    display: grid;
    grid-template-rows: 1fr 1fr;
    height: 100%;
  }
  .hero-img-placeholder {
    position: relative;
    overflow: hidden;
    display: block;
  }
  .hero-img-placeholder:first-child {
    border-bottom: 3px solid var(--white);
  }
  .hero-img-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 6s ease;
  }
  .hero-img-bg:hover { transform: scale(1.03); }
  .hero-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 60%);
  }
  .hero-img-tag {
    position: absolute;
    bottom: 1.25rem;
    left: 1.25rem;
    background: var(--pink);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.3rem 0.7rem;
    border-radius: 100px;
  }

  /* placeholder gradient images */
  .img-chinatown { background: linear-gradient(135deg, #2e0053 0%, #7C3AED 40%, #D9359A 75%, #FF6B9D 100%); }
  .img-botanical { background: linear-gradient(135deg, #052e16 0%, #15803D 40%, #22C55E 75%, #86EFAC 100%); }

  /* ── SECTION COMMON ── */
  section { padding: 5rem 0; }
  .container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
  .section-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--pink);
    margin-bottom: 0.75rem;
  }
  .section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3vw, 2.75rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--charcoal);
    margin-bottom: 1rem;
  }
  .section-sub {
    font-size: 1.05rem;
    color: var(--slate);
    max-width: 560px;
    line-height: 1.7;
  }

  /* ── CATEGORIES ── */
  .categories-section { background: var(--white); }
  .categories-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
    gap: 2rem;
    flex-wrap: wrap;
  }
  .categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
  }
  .cat-card {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 3/4;
    cursor: pointer;
    transition: transform 0.3s ease;
  }
  .cat-card:hover { transform: translateY(-4px); }
  .cat-card:nth-child(1) { grid-row: span 2; aspect-ratio: auto; }
  .cat-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
  }
  .cat-card:hover .cat-bg { transform: scale(1.05); }
  .cat-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
  }
  .cat-content {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 1.5rem;
  }
  .cat-pill {
    display: inline-block;
    background: var(--pink);
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.25rem 0.6rem;
    border-radius: 100px;
    margin-bottom: 0.5rem;
  }
  .cat-name {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
  }
  .cat-desc {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.7);
    margin-top: 0.35rem;
    line-height: 1.5;
  }

  /* category background gradients */
  .bg-architecture { background: linear-gradient(160deg, #1a0533, #6B21A8, #A855F7); }
  .bg-art { background: linear-gradient(160deg, #D9359A, #FF6B9D, #FFB3D1); }
  .bg-heritage { background: linear-gradient(160deg, #0f2027, #7B2FBE, #D9359A); }
  .bg-culture { background: linear-gradient(160deg, #0d1f0d, #16A34A, #4ADE80); }
  .bg-food { background: linear-gradient(160deg, #A8247A, #D9359A, #FF6B9D); }
  .bg-nature { background: linear-gradient(160deg, #052e16, #15803D, #22C55E); }
  .bg-different { background: linear-gradient(160deg, #2e0053, #7C3AED, #D9359A); }

  /* ── WHY DOIT ── */
  .why-section { background: var(--off-white); }
  .why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
  }
  .why-visual {
    position: relative;
  }
  .why-img-main {
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/5;
    background: linear-gradient(160deg, #2e0053, #7C3AED, #D9359A);
    position: relative;
  }
  .why-img-badge {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    background: var(--charcoal);
    color: var(--white);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
  }
  .why-badge-num {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--pink);
    display: block;
  }
  .why-badge-label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 0.1em;
  }
  .why-points {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2.5rem;
  }
  .why-point {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
  }
  .why-point-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--pink-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
  }
  .why-point-title {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.3rem;
    color: var(--charcoal);
  }
  .why-point-body { font-size: 0.9rem; color: var(--slate); line-height: 1.6; }

  /* ── FEATURED TOURS ── */
  .tours-section { background: var(--charcoal); }
  .tours-section .section-title { color: var(--white); }
  .tours-section .section-sub { color: rgba(255,255,255,0.55); }
  .tours-section .section-eyebrow { color: var(--pink); }
  .tours-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .tours-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 1.5rem;
  }
  .tour-card {
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    transition: transform 0.3s, border-color 0.3s;
    cursor: pointer;
  }
  .tour-card:hover { transform: translateY(-4px); border-color: var(--pink); }
  .tour-card-img {
    aspect-ratio: 16/9;
    position: relative;
    overflow: hidden;
  }
  .tour-card:first-child .tour-card-img { aspect-ratio: 16/10; }
  .tour-img-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s;
  }
  .tour-card:hover .tour-img-bg { transform: scale(1.04); }
  .tour-img-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, transparent 60%);
  }
  .tour-pill {
    position: absolute;
    top: 1rem; left: 1rem;
    background: var(--pink);
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.25rem 0.65rem;
    border-radius: 100px;
  }
  .tour-card-body { padding: 1.5rem; }
  .tour-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.45);
    margin-bottom: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
  }
  .tour-name {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.25;
    margin-bottom: 0.5rem;
  }
  .tour-card:first-child .tour-name { font-size: 1.5rem; }
  .tour-excerpt { font-size: 0.85rem; color: rgba(255,255,255,0.55); line-height: 1.6; }
  .tour-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.06);
  }
  .tour-price { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--pink); }
  .tour-price span { font-family: var(--font-body); font-size: 0.75rem; font-weight: 400; color: rgba(255,255,255,0.4); margin-left: 0.2rem; }
  .tour-link {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--pink);
    display: flex;
    align-items: center;
    gap: 0.35rem;
    transition: gap 0.2s;
  }
  .tour-card:hover .tour-link { gap: 0.6rem; }
  .btn-outline-white {
    border: 1.5px solid rgba(255,255,255,0.25);
    color: var(--white);
    padding: 0.7rem 1.75rem;
    border-radius: 100px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: border-color 0.2s, background 0.2s;
    display: inline-block;
  }
  .btn-outline-white:hover { border-color: var(--pink); background: rgba(217,53,154,0.1); }

  /* ── TESTIMONIALS ── */
  .testimonials-section { background: var(--white); }
  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
  }
  .testimonial-card {
    background: var(--off-white);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
  }
  .testimonial-stars {
    color: var(--pink);
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
  }
  .testimonial-text {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.05rem;
    color: var(--charcoal);
    line-height: 1.65;
    margin-bottom: 1.5rem;
  }
  .testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }
  .testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--pink-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--pink-dark);
    flex-shrink: 0;
  }
  .testimonial-name { font-weight: 600; font-size: 0.9rem; }
  .testimonial-from { font-size: 0.78rem; color: var(--slate); }
  .review-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    margin-top: 3.5rem;
    padding: 2rem;
    background: var(--off-white);
    border-radius: 16px;
    flex-wrap: wrap;
  }
  .review-platform {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }
  .review-platform-name { font-weight: 600; font-size: 0.9rem; color: var(--charcoal); }
  .review-platform-score { font-size: 0.85rem; color: var(--slate); }

  /* ── BOOKING CTA ── */
  .booking-section {
    background: var(--pink);
    padding: 5rem 0;
  }
  .booking-inner {
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
  }
  .booking-inner .section-title { color: var(--white); }
  .booking-sub { font-size: 1.1rem; color: rgba(255,255,255,0.75); margin: 1rem 0 2.5rem; line-height: 1.7; }
  .booking-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
  }
  .btn-white {
    background: var(--white);
    color: var(--pink);
    padding: 0.9rem 2.25rem;
    border-radius: 100px;
    font-weight: 700;
    font-size: 1rem;
    transition: transform 0.15s, box-shadow 0.2s;
    display: inline-block;
  }
  .btn-white:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0,0,0,0.15); }
  .btn-outline-pink {
    border: 2px solid rgba(255,255,255,0.4);
    color: var(--white);
    padding: 0.9rem 2.25rem;
    border-radius: 100px;
    font-weight: 600;
    font-size: 1rem;
    transition: border-color 0.2s, background 0.2s;
    display: inline-block;
  }
  .btn-outline-pink:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }

  /* ── FOOTER ── */
  footer {
    background: var(--charcoal);
    padding: 4rem 0 2rem;
    color: rgba(255,255,255,0.6);
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
  }
  .footer-brand-logo img { height: 48px; width: auto; margin-bottom: 1rem; }
  .footer-brand-tagline { font-family: var(--font-display); font-style: italic; font-size: 1rem; color: rgba(255,255,255,0.5); margin-bottom: 1.25rem; }
  .footer-socials { display: flex; gap: 0.75rem; }
  .footer-social {
    width: 36px; height: 36px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    font-size: 0.8rem;
    font-weight: 700;
    transition: border-color 0.2s, color 0.2s;
  }
  .footer-social:hover { border-color: var(--pink); color: var(--pink); }
  .footer-col-title { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.9); margin-bottom: 1.25rem; }
  .footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; padding: 0; margin: 0; }
  .footer-links a { font-size: 0.875rem; color: rgba(255,255,255,0.5); transition: color 0.2s; }
  .footer-links a:hover { color: var(--pink); }
  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  /* ── REVEAL ANIMATION ── */
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }
  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }

  /* ── MOBILE ── */
  .nav-right { display: flex; align-items: center; gap: 1rem; }
  .nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
  }
  .nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--charcoal);
    transition: transform 0.25s ease, opacity 0.25s ease;
  }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  @media (max-width: 900px) {
    .hero { grid-template-columns: 1fr; }
    .hero-right { min-height: 320px; }
    .hero-left { padding: 3rem 2rem; }
    .categories-grid { grid-template-columns: repeat(2, 1fr); }
    .cat-card:nth-child(1) { grid-row: span 1; aspect-ratio: 3/4; }
    .why-grid { grid-template-columns: 1fr; }
    .why-visual { display: none; }
    .tours-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    nav { padding: 0 1.25rem; }
    .nav-toggle { display: flex; }
    .nav-right .nav-cta { display: none; }
    .nav-links {
      position: absolute;
      top: 72px;
      left: 0;
      right: 0;
      flex-direction: column;
      align-items: flex-start;
      gap: 0;
      background: var(--off-white);
      border-bottom: 1px solid var(--stone);
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
      padding: 0 1.25rem;
    }
    .nav-links.open {
      max-height: 320px;
      padding: 0.5rem 1.25rem 1.25rem;
    }
    .nav-links li { width: 100%; }
    .nav-links a { display: block; padding: 0.85rem 0; font-size: 1rem; }
  }

  @media (max-width: 480px) {
    .hero-stats { gap: 1.5rem; }
    .subtour-media.three { grid-template-columns: 1fr 1fr; }
    .subtour-media.three .ph:nth-child(3) { grid-column: span 2; }
    .cat-card:nth-child(1) { aspect-ratio: 1/1; }
    .phone-row { flex-direction: column; }
    .phone-row select { width: 100% !important; min-width: 0 !important; }
    .footer-grid { grid-template-columns: 1fr; }
    .booking-widget { padding: 1.1rem; max-width: 100%; }
    .bw-field input[type="date"],
    .bw-field select {
      padding: 0.6rem 0.5rem;
      font-size: 0.82rem;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
    .cat-bg, .tour-img-bg, .hero-img-bg { transition: none; }
  }

/* ============================================================
   INNER-PAGE COMPONENTS (shared across tours/about/faq/contact)
   ============================================================ */

.page-hero {
  margin-top: 72px;
  padding: 4.5rem 2.5rem 3.5rem;
  background: linear-gradient(160deg, #3b2a3f, var(--charcoal));
  color: var(--white);
}
.page-hero .breadcrumb {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1.25rem;
}
.page-hero .breadcrumb a { color: rgba(255,255,255,0.75); }
.page-hero .breadcrumb a:hover { color: var(--white); }
.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  color: var(--white);
  max-width: 760px;
  line-height: 1.15;
}
.page-hero .page-lead {
  color: rgba(255,255,255,0.82);
  font-size: 1.05rem;
  max-width: 620px;
  margin-top: 1.1rem;
  line-height: 1.7;
}
.page-hero .page-lead em { font-style: italic; color: rgba(255,255,255,0.95); }

/* Filter bar (All Tours) */
.filter-bar {
  display: flex; flex-wrap: wrap; gap: 0.6rem;
  padding: 2rem 0; border-bottom: 1px solid var(--stone); margin-bottom: 2.75rem;
}
.filter-chip {
  font-family: var(--font-body); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.02em;
  padding: 0.55rem 1.1rem; border-radius: 100px; border: 1.5px solid var(--stone);
  background: transparent; color: var(--charcoal); cursor: pointer; transition: all 0.2s ease;
}
.filter-chip:hover, .filter-chip.active { background: var(--pink); border-color: var(--pink); color: var(--white); }

/* Light-background tour listing grid (reuses .tour-card visuals) */
.listing-section { padding: 0 2.5rem 5rem; max-width: 1240px; margin: 0 auto; }
.listing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.listing-grid .tour-card { background: var(--white); border: 1px solid var(--stone); }
.listing-grid .tour-card .tour-name,
.listing-grid .tour-card .tour-excerpt,
.listing-grid .tour-card .tour-meta { color: var(--charcoal); }
.listing-grid .tour-card .tour-excerpt { color: var(--slate); }
.listing-grid .tour-card .tour-meta { color: var(--slate); }
.listing-grid .tour-card .tour-price { color: var(--charcoal); }
@media (max-width: 960px) { .listing-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 640px) { .listing-grid { grid-template-columns: 1fr; } }

/* Category intro (on category pages) */
.cat-intro { max-width: 1240px; margin: 0 auto; padding: 3.5rem 2.5rem 1rem; }
.cat-intro .section-eyebrow { margin-bottom: 0.5rem; }
.cat-intro p { color: var(--slate); font-size: 1.05rem; max-width: 720px; line-height: 1.75; }

/* Sub-tour detail block */
.subtour-list { max-width: 1240px; margin: 0 auto; padding: 1rem 2.5rem 5rem; }
.subtour {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  grid-template-areas: "media content" "facts content";
  gap: 0.5rem 2.75rem; align-items: start;
  padding: 3rem 0; border-bottom: 1px solid var(--stone);
}
.subtour-media { grid-area: media; display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; align-self: end; }
.subtour-media.three { grid-template-columns: 1fr 1fr 1fr; }
.subtour > .tour-facts { grid-area: facts; margin: 0; align-self: start; }
.subtour-content { grid-area: content; min-width: 0; }
.subtour:last-child { border-bottom: none; }
.subtour-media .ph {
  aspect-ratio: 4/5; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.85); font-size: 0.7rem; letter-spacing: 0.06em; text-transform: uppercase;
}
.subtour h3 { font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; margin-bottom: 0.4rem; color: var(--charcoal); }
.subtour .sub-meta { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--pink-dark); margin-bottom: 0.85rem; display: block; }
.subtour p.desc { color: var(--slate); font-size: 0.98rem; line-height: 1.7; margin-bottom: 1.25rem; }
.subtour h4 { font-family: var(--font-body); font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--charcoal); margin-bottom: 0.85rem; }
.subtour ul.expect { margin-bottom: 1.5rem; list-style: none; padding-left: 0; }
.subtour ul.expect li { position: relative; padding-left: 1.1rem; margin-bottom: 0.6rem; font-size: 0.92rem; color: var(--charcoal); line-height: 1.6; }
.subtour ul.expect li::before { content: '•'; position: absolute; left: 0; color: var(--slate); font-weight: 700; }
@media (max-width: 800px) { .subtour { grid-template-columns: 1fr; grid-template-areas: "media" "facts" "content"; } }

/* FAQ accordion */
.faq-wrap { max-width: 840px; margin: 0 auto; padding: 3.5rem 2.5rem 5rem; }
.faq-group { margin-bottom: 3.25rem; }
.faq-group h2 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: var(--pink-dark); margin-bottom: 1.25rem; }
.faq-item { border-bottom: 1px solid var(--stone); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 1.15rem 0; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; color: var(--charcoal);
}
.faq-q .plus { font-family: var(--font-body); font-size: 1.4rem; color: var(--pink); transition: transform 0.25s ease; flex-shrink: 0; }
.faq-item.open .faq-q .plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-a p, .faq-a ul { padding-bottom: 1.15rem; color: var(--slate); font-size: 0.92rem; line-height: 1.7; }
.faq-a ul { padding-left: 1.2rem; }
.faq-a ul li { margin-bottom: 0.35rem; }
.faq-still {
  text-align: center; padding-top: 1rem;
}
.faq-still h3 { font-family: var(--font-display); font-size: 1.3rem; margin-bottom: 0.75rem; }
.faq-still p { color: var(--slate); margin-bottom: 1.5rem; }

/* Contact page */
.contact-wrap { max-width: 1100px; margin: 0 auto; padding: 3.5rem 2.5rem 5rem; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 3.5rem; }
.contact-grid > * { min-width: 0; }
.contact-info h3 { font-family: var(--font-display); font-size: 1.3rem; margin-bottom: 0.9rem; }
.contact-info p.lead { color: var(--slate); font-size: 0.95rem; line-height: 1.7; margin-bottom: 1.75rem; }
.contact-info .item { margin-bottom: 1.25rem; }
.contact-info .item strong { display: block; font-size: 0.75rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--pink-dark); margin-bottom: 0.25rem; }
.form-field { margin-bottom: 1.25rem; }
.form-field label { display: block; font-size: 0.8rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--charcoal); }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; padding: 0.8rem 1rem; border-radius: 10px; border: 1.5px solid var(--stone);
  font-family: var(--font-body); font-size: 0.9rem; background: var(--white); color: var(--charcoal);
}
.form-field textarea { min-height: 120px; resize: vertical; }
@media (max-width: 800px) { .contact-grid { grid-template-columns: 1fr; } }

/* Story / About */
.story-wrap { max-width: 1100px; margin: 0 auto; padding: 3.5rem 2.5rem 5rem; }
.story-hero { display: grid; grid-template-columns: 1fr 1.3fr; gap: 3.5rem; align-items: center; }
.story-portrait {
  aspect-ratio: 3/4; border-radius: 18px;
  background: linear-gradient(160deg, var(--pink-dark), var(--charcoal));
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.8); font-size: 0.75rem; letter-spacing: 0.06em; text-transform: uppercase;
}
.story-body h2 { font-family: var(--font-display); font-size: 2rem; font-weight: 700; margin-bottom: 1.1rem; }
.story-body p { color: var(--slate); font-size: 0.98rem; line-height: 1.8; margin-bottom: 1.15rem; }
@media (max-width: 800px) { .story-hero { grid-template-columns: 1fr; } }

/* Generic content section wrapper (Why Us page reuses why-section, this covers plain blocks) */
.plain-section { max-width: 1240px; margin: 0 auto; padding: 4rem 2.5rem; }

/* Tour facts row (Duration / Mode / Price) on category detail pages */
.tour-facts {
  display: flex; flex-wrap: wrap; gap: 1.5rem;
  margin: 0;
  padding: 0.75rem 0;
  border-top: 1px solid var(--stone);
  border-bottom: 1px solid var(--stone);
}
.tour-facts .fact { font-size: 0.85rem; color: var(--charcoal); }
.tour-facts .fact strong { display: block; font-size: 0.68rem; letter-spacing: 0.07em; text-transform: uppercase; color: var(--pink-dark); margin-bottom: 0.2rem; font-weight: 700; }

/* ================= Custom TripAdvisor Review Widget ================= */
.ta-rating-summary {
  display: flex; align-items: center; gap: 0.85rem;
  margin: 0.75rem 0 2.5rem; flex-wrap: wrap;
}
.ta-circles { color: #00AF87; font-size: 1.3rem; letter-spacing: 3px; line-height: 1; }
.ta-rating-text { font-size: 0.95rem; color: var(--charcoal); font-weight: 700; }
.ta-rating-sub { font-size: 0.85rem; color: var(--slate); }

.ta-reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-bottom: 3rem; }
.ta-review-card {
  background: var(--white); border: 1px solid var(--stone); border-top: 3px solid #00AF87;
  border-radius: 14px; padding: 1.75rem; display: flex; flex-direction: column;
}
.ta-review-card .ta-circles { font-size: 0.95rem; margin-bottom: 0.9rem; }
.ta-review-text { font-size: 0.92rem; color: var(--charcoal); line-height: 1.65; margin-bottom: 1.25rem; flex: 1; }
.ta-review-footer {
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid var(--stone); padding-top: 1rem; gap: 0.5rem;
}
.ta-reviewer-name { font-weight: 700; font-size: 0.85rem; color: var(--charcoal); }
.ta-reviewer-trip { font-size: 0.75rem; color: var(--slate); }
.ta-wordmark { font-weight: 800; font-size: 0.72rem; color: #00AF87; letter-spacing: -0.01em; white-space: nowrap; }

.ta-cta-box {
  display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; justify-content: space-between;
  background: linear-gradient(135deg, #00AF87 0%, #007C5E 100%);
  border-radius: 18px; padding: 2rem 2.5rem; color: var(--white);
}
.ta-cta-left { display: flex; align-items: center; gap: 1.25rem; }
.ta-cta-badge {
  width: 52px; height: 52px; border-radius: 50%; background: rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center; font-size: 1.5rem; flex-shrink: 0;
}
.ta-cta-title { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; margin-bottom: 0.3rem; }
.ta-cta-sub { font-size: 0.88rem; color: rgba(255,255,255,0.85); }
.ta-cta-btn {
  background: var(--white); color: #007C5E; font-weight: 700; font-size: 0.9rem;
  padding: 0.8rem 1.75rem; border-radius: 100px; white-space: nowrap; transition: background 0.2s, transform 0.15s;
}
.ta-cta-btn:hover { background: rgba(255,255,255,0.9); transform: translateY(-1px); }

@media (max-width: 900px) {
  .ta-reviews-grid { grid-template-columns: 1fr; }
  .ta-cta-box { flex-direction: column; align-items: flex-start; text-align: left; }
  .ta-cta-btn { width: 100%; text-align: center; }
}

/* ================= Language Switcher ================= */
.lang-switch {
  font-size: 0.7rem !important;
  font-weight: 600 !important;
  color: var(--slate) !important;
  letter-spacing: 0.03em;
  border: 1px solid var(--stone);
  border-radius: 100px;
  padding: 0.25rem 0.65rem !important;
  opacity: 0.85;
  transition: opacity 0.2s, border-color 0.2s, color 0.2s;
}
.lang-switch:hover {
  opacity: 1;
  color: var(--pink-dark) !important;
  border-color: var(--pink);
}
.lang-switch::after { content: none !important; }
@media (max-width: 900px) {
  .lang-switch { display: inline-block; margin-top: 0.4rem; }
}

/* ================= Booking Calendar Widget (public tours) ================= */
.booking-widget {
  background: var(--white);
  border: 1.5px solid var(--stone);
  border-radius: 16px;
  padding: 1.5rem;
  max-width: 380px;
  width: 100%;
  overflow: hidden;
}
.bw-price {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 1.1rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid var(--stone);
}
.bw-price-unit {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--slate);
}
.bw-field { margin-bottom: 0.9rem; width: 100%; max-width: 100%; overflow: hidden; }
.bw-field label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--pink-dark);
  margin-bottom: 0.4rem;
}
.bw-field input[type="date"],
.bw-field select {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  padding: 0.7rem 0.85rem;
  border-radius: 10px;
  border: 1.5px solid var(--stone);
  font-family: var(--font-body);
  font-size: 0.9rem;
  background: var(--white);
  color: var(--charcoal);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: block;
}
.bw-field input[type="date"] {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236B6B6B' stroke-width='2'%3E%3Crect x='3' y='4' width='18' height='18' rx='2'/%3E%3Cline x1='16' y1='2' x2='16' y2='6'/%3E%3Cline x1='8' y1='2' x2='8' y2='6'/%3E%3Cline x1='3' y1='10' x2='21' y2='10'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2.2rem;
}
.bw-field select {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236B6B6B' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2.2rem;
}
.bw-counter-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.bw-counter-row label { margin-bottom: 0; }
.bw-counter { display: flex; align-items: center; gap: 0.75rem; }
.bw-counter button {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--stone);
  background: var(--off-white);
  color: var(--charcoal);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
  transition: background 0.15s, border-color 0.15s;
}
.bw-counter button:hover { background: var(--pink); border-color: var(--pink); color: var(--white); }
.bw-count { min-width: 1.2rem; text-align: center; font-weight: 700; font-size: 0.95rem; }
.bw-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.9rem 0;
  margin: 0.4rem 0 1.1rem;
  border-top: 1px solid var(--stone);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--charcoal);
}
.bw-total span:first-child {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--slate);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.bw-note { font-size: 0.75rem; color: var(--slate); margin-top: 0.75rem; text-align: center; }
.bw-hint { font-size: 0.72rem; color: var(--pink-dark); margin-top: 0.4rem; font-weight: 600; }
.bw-max-note { font-size: 0.72rem; color: var(--slate); margin: 0.4rem 0 0.9rem; line-height: 1.5; }

/* ================= Embedded Tour Videos ================= */
.tour-video-wrap { margin: 1.25rem 0; }
.tour-video-wrap h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 0.85rem;
}
.tour-video {
  position: relative;
  width: 100%;
  max-width: 360px;
  border-radius: 14px;
  overflow: hidden;
  background: var(--charcoal);
}
.tour-video.landscape { max-width: 100%; aspect-ratio: 16 / 9; }
.tour-video.portrait { aspect-ratio: 9 / 16; }
.tour-video iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}
