/* ══════════════════════════════════════════════════════════════════
   OLIVE TREE TRAVEL — consumer design system (/travel/)
   Evolved from the Olive Tree "Executive Atlas" tokens: same family
   (forest green heritage, Cormorant Garamond + Manrope), warmed for
   leisure — sun-bleached sand grounds, lagoon + sunset-coral accents,
   photography-led composition. Standalone: never imports the B2B CSS.
   ══════════════════════════════════════════════════════════════════ */

:root {
  /* ── Family heritage (shared with Olive Tree DMC) ── */
  --tr-forest: #143A2D;
  --tr-palm: #1F5A45;
  --tr-gold: #C8A64A;

  /* ── Travel-only warm ground ── */
  --tr-shell: #FBF6EC;      /* lightest surface */
  --tr-sand: #F5EDDD;       /* primary surface  */
  --tr-dune: #EDE1C8;       /* deep surface     */
  --tr-driftwood: #D9CCAE;  /* borders          */

  /* ── Travel accents ── */
  --tr-lagoon: #0E6E66;     /* interactive / links     */
  --tr-lagoon-deep: #0A5750;
  --tr-coral: #B44A28;      /* primary CTA (sunset)    */
  --tr-coral-deep: #9C3E20;
  --tr-ink: #1C2420;        /* text on sand            */
  --tr-ink-soft: #57635C;   /* secondary text          */
  --tr-foam: #FFFDF8;       /* text on dark            */

  /* ── Type ── */
  --tr-font-display: "Cormorant Garamond", Georgia, serif;
  --tr-font-body: "Manrope", system-ui, -apple-system, sans-serif;
  --tr-h-hero: clamp(2.7rem, 8vw, 5rem);
  --tr-h1: clamp(2.2rem, 5vw, 3.4rem);
  --tr-h2: clamp(1.9rem, 3.6vw, 2.7rem);
  --tr-h3: clamp(1.35rem, 2.2vw, 1.7rem);
  --tr-body: 1.08rem;
  --tr-small: 0.92rem;

  /* ── Rhythm ── */
  --tr-s1: 0.375rem; --tr-s2: 0.75rem; --tr-s3: 1.25rem;
  --tr-s4: 2rem; --tr-s5: 3.25rem; --tr-s6: 5.25rem;
  --tr-radius: 18px;
  --tr-radius-sm: 10px;
  --tr-shadow: 0 10px 30px rgba(28, 36, 32, 0.12), 0 2px 8px rgba(28, 36, 32, 0.06);
  --tr-shadow-soft: 0 4px 14px rgba(28, 36, 32, 0.08);
  --tr-max: 1160px;
  --tr-ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { overflow-x: hidden; }
body {
  margin: 0;
  font-family: var(--tr-font-body);
  font-size: var(--tr-body);
  line-height: 1.65;
  color: var(--tr-ink);
  background: var(--tr-sand);
}
img { max-width: 100%; display: block; }
h1, h2, h3, h4 { font-family: var(--tr-font-display); line-height: 1.12; margin: 0 0 var(--tr-s3); font-weight: 700; text-wrap: balance; }
h1 { font-size: var(--tr-h1); }
h2 { font-size: var(--tr-h2); }
h3 { font-size: var(--tr-h3); font-weight: 600; }
p { margin: 0 0 var(--tr-s3); }
a { color: var(--tr-lagoon); }
.tr-container { width: min(var(--tr-max), 91%); margin: 0 auto; }
.tr-skip { position: absolute; top: -9999px; left: 0; background: var(--tr-forest); color: var(--tr-foam); padding: 10px 18px; z-index: 200; }
.tr-skip:focus { top: 0; }

/* ── Buttons ── */
.tr-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--tr-font-body); font-weight: 700; font-size: 1.02rem;
  padding: 15px 30px; border-radius: 999px; text-decoration: none;
  border: none; cursor: pointer; letter-spacing: 0.01em;
  transition: transform 0.25s var(--tr-ease), box-shadow 0.25s var(--tr-ease), background 0.2s ease;
}
.tr-btn-primary { background: var(--tr-coral); color: #fff; box-shadow: 0 6px 18px rgba(180, 74, 40, 0.35); }
.tr-btn-primary:hover { background: var(--tr-coral-deep); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(180, 74, 40, 0.42); }
.tr-btn-ghost { background: rgba(255, 253, 248, 0.14); color: var(--tr-foam); border: 1.5px solid rgba(255, 253, 248, 0.55); backdrop-filter: blur(6px); }
.tr-btn-ghost:hover { background: rgba(255, 253, 248, 0.26); transform: translateY(-2px); }
.tr-btn-forest { background: var(--tr-forest); color: var(--tr-foam); }
.tr-btn-forest:hover { background: var(--tr-palm); transform: translateY(-2px); }
.tr-btn-wa { background: #1FAF5A; color: #fff; }
.tr-btn-wa:hover { background: #17934A; transform: translateY(-2px); }
.tr-btn:focus-visible { outline: 3px solid var(--tr-lagoon); outline-offset: 3px; }

/* ── Header ── */
.tr-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(251, 246, 236, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(217, 204, 174, 0.6);
}
.tr-header-in { display: flex; align-items: center; gap: var(--tr-s3); padding: 10px 0; }
.tr-brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--tr-ink); }
.tr-brand img { width: 76px; height: 76px; object-fit: contain; border-radius: 10px; }
.tr-brand-name { display: flex; flex-direction: column; line-height: 1.05; }
.tr-brand-name strong { font-family: var(--tr-font-display); font-size: 1.65rem; letter-spacing: 0.03em; color: var(--tr-forest); }
.tr-brand-name span { font-family: "Dancing Script", cursive; font-size: 1.45rem; font-weight: 700; letter-spacing: 0.02em; color: var(--tr-coral); margin-top: -6px; transform: rotate(-2deg); transform-origin: left center; }
.tr-nav { display: flex; align-items: center; gap: var(--tr-s3); margin-left: auto; }
.tr-nav a { text-decoration: none; color: var(--tr-ink); font-weight: 600; font-size: 0.98rem; }
.tr-nav a:not(.tr-btn):hover { color: var(--tr-lagoon); }
.tr-nav .tr-btn { padding: 11px 22px; font-size: 0.95rem; }
.tr-nav-trade { font-size: 0.86rem !important; color: var(--tr-ink-soft) !important; font-weight: 600 !important; }
.tr-nav-trade:hover { color: var(--tr-lagoon) !important; }
.tr-nav-link { position: relative; }
/* Hamburger toggle + mobile menu */
.tr-nav-toggle { display: none; flex: none; width: 44px; height: 44px; border: none; background: transparent; cursor: pointer; padding: 10px; margin-left: auto; }
.tr-nav-toggle span { display: block; height: 2px; background: var(--tr-forest); border-radius: 2px; margin: 4px 0; transition: transform 0.25s var(--tr-ease), opacity 0.2s ease; }
.tr-nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.tr-nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.tr-nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.tr-mobile-backdrop { position: fixed; inset: 0; z-index: 58; background: rgba(20, 33, 27, 0.4); opacity: 0; transition: opacity 0.25s ease; }
.tr-mobile-backdrop.open { opacity: 1; }
.tr-mobile-menu {
  position: fixed; top: 0; right: 0; z-index: 59; height: 100dvh; width: min(84vw, 340px);
  background: var(--tr-shell); box-shadow: -12px 0 40px rgba(20, 33, 27, 0.25);
  display: flex; flex-direction: column; gap: 4px; padding: 84px 24px 32px;
  transform: translateX(100%); transition: transform 0.3s var(--tr-ease); overflow-y: auto;
}
.tr-mobile-menu[hidden], .tr-mobile-backdrop[hidden] { display: none !important; }
.tr-mobile-menu.open { transform: translateX(0); }
.tr-mobile-menu a { text-decoration: none; color: var(--tr-ink); font-weight: 700; font-size: 1.12rem; padding: 13px 0; border-bottom: 1px solid var(--tr-driftwood); }
.tr-mobile-menu a:last-child, .tr-mobile-menu .tr-btn { border-bottom: none; }
.tr-mobile-menu .tr-btn-primary { margin-top: 16px; justify-content: center; font-size: 1.05rem; }
.tr-mobile-trade { font-size: 0.9rem !important; font-weight: 600 !important; color: var(--tr-ink-soft) !important; margin-top: 12px; }
body.tr-menu-open { overflow: hidden; }

@media (max-width: 780px) {
  .tr-nav { display: none; }
  .tr-nav-toggle { display: block; }
  .tr-brand img { width: 56px; height: 56px; }
  .tr-brand-name strong { font-size: 1.3rem; }
}
@media (min-width: 781px) { .tr-mobile-menu, .tr-mobile-backdrop, .tr-nav-toggle { display: none !important; } }

/* ── Hero ── */
.tr-hero { position: relative; min-height: 92svh; display: flex; align-items: flex-end; color: var(--tr-foam); isolation: isolate; }
.tr-hero-media { position: absolute; inset: 0; z-index: -2; }
.tr-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.tr-hero-veil { position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(178deg, rgba(20, 33, 27, 0.18) 0%, rgba(20, 33, 27, 0.06) 38%, rgba(20, 33, 27, 0.62) 78%, rgba(15, 26, 21, 0.86) 100%); }
.tr-hero-content { padding: var(--tr-s6) 0 var(--tr-s5); max-width: 780px; }
.tr-hero h1 { font-size: var(--tr-h-hero); color: var(--tr-foam); margin-bottom: var(--tr-s3); text-shadow: 0 2px 22px rgba(15, 26, 21, 0.45); }
.tr-hero h1 em { font-style: italic; color: #EFD9A7; }
.tr-hero-sub { font-size: clamp(1.05rem, 1.9vw, 1.25rem); max-width: 56ch; color: rgba(255, 253, 248, 0.94); margin-bottom: var(--tr-s4); }
.tr-hero-actions { display: flex; flex-wrap: wrap; gap: var(--tr-s2); margin-bottom: var(--tr-s4); }
.tr-hero-facts { display: flex; flex-wrap: wrap; gap: 6px 26px; padding-top: var(--tr-s3); border-top: 1px solid rgba(255, 253, 248, 0.3); font-size: var(--tr-small); font-weight: 600; color: rgba(255, 253, 248, 0.88); }

/* ── Sections ── */
.tr-section { padding: var(--tr-s6) 0; }
.tr-section-dune { background: var(--tr-dune); }
.tr-section-shell { background: var(--tr-shell); }
.tr-eyebrowless h2 { max-width: 24ch; }
.tr-lede { font-size: 1.15rem; color: var(--tr-ink-soft); max-width: 62ch; }
.tr-head-split { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: var(--tr-s3); margin-bottom: var(--tr-s5); }

/* ── The route (signature) ── */
.tr-route { position: relative; }
.tr-route-line { position: absolute; left: 26px; top: 0; bottom: 0; width: 3px; background: var(--tr-driftwood); border-radius: 2px; overflow: hidden; }
.tr-route-line span { display: block; width: 100%; height: 100%; background: linear-gradient(var(--tr-lagoon), var(--tr-coral)); transform: scaleY(0); transform-origin: top; transition: transform 1.4s var(--tr-ease); }
.tr-route.tr-on .tr-route-line span { transform: scaleY(1); }
.tr-stop { position: relative; padding: 0 0 var(--tr-s5) 76px; }
.tr-stop:last-child { padding-bottom: 0; }
.tr-stop-dot {
  position: absolute; left: 13px; top: 6px; width: 29px; height: 29px; border-radius: 50%;
  background: var(--tr-shell); border: 3px solid var(--tr-lagoon);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.82rem; color: var(--tr-lagoon);
}
.tr-stop-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: var(--tr-s4); align-items: center; }
.tr-stop-media { border-radius: var(--tr-radius); overflow: hidden; box-shadow: var(--tr-shadow); aspect-ratio: 4 / 3; }
.tr-stop-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--tr-ease); }
.tr-stop:hover .tr-stop-media img { transform: scale(1.045); }
.tr-stop-kicker { display: flex; flex-wrap: wrap; align-items: baseline; gap: 10px 16px; margin-bottom: var(--tr-s2); }
.tr-stop-kicker h3 { margin: 0; font-size: clamp(1.5rem, 2.6vw, 2rem); }
.tr-nights { font-weight: 800; font-size: 0.85rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--tr-coral); }
.tr-stop p { color: var(--tr-ink-soft); margin-bottom: var(--tr-s2); max-width: 52ch; }
.tr-plannernote {
  display: inline-block; background: var(--tr-shell); border: 1px dashed var(--tr-driftwood);
  border-radius: var(--tr-radius-sm); padding: 10px 16px; font-size: var(--tr-small);
  color: var(--tr-ink); box-shadow: var(--tr-shadow-soft);
}
.tr-plannernote strong { color: var(--tr-lagoon-deep); }
.tr-leg {
  position: relative; margin: 0 0 var(--tr-s4) 76px;
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--tr-forest); color: var(--tr-foam);
  border-radius: 999px; padding: 8px 20px 8px 14px;
  font-size: 0.88rem; font-weight: 700; letter-spacing: 0.02em;
  box-shadow: var(--tr-shadow-soft);
}
.tr-leg svg { width: 17px; height: 17px; flex: none; }
.tr-stop, .tr-leg { opacity: 0; transform: translateY(26px); transition: opacity 0.8s var(--tr-ease), transform 0.8s var(--tr-ease); }
.tr-on .tr-stop, .tr-on .tr-leg, .tr-stop.tr-on, .tr-leg.tr-on { opacity: 1; transform: none; }
.tr-route-close { margin: var(--tr-s5) 0 0 76px; max-width: 60ch; }
.tr-route-close p { font-family: var(--tr-font-display); font-size: 1.5rem; line-height: 1.3; color: var(--tr-ink); }
@media (max-width: 860px) {
  .tr-stop { padding-left: 58px; }
  .tr-leg, .tr-route-close { margin-left: 58px; }
  .tr-route-line { left: 20px; }
  .tr-stop-dot { left: 7px; }
  .tr-stop-grid { grid-template-columns: 1fr; gap: var(--tr-s3); }
  .tr-stop-media { order: -1; }
}

/* ── Destinations editorial grid ── */
.tr-dests { display: grid; grid-template-columns: repeat(12, 1fr); gap: var(--tr-s3); }
.tr-dest { position: relative; border-radius: var(--tr-radius); overflow: hidden; display: flex; align-items: flex-end; color: var(--tr-foam); text-decoration: none; box-shadow: var(--tr-shadow-soft); }
.tr-dest img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--tr-ease); }
.tr-dest::after { content: ""; position: absolute; inset: 0; background: linear-gradient(186deg, rgba(20, 33, 27, 0) 40%, rgba(20, 33, 27, 0.74) 100%); }
.tr-dest:hover img { transform: scale(1.05); }
.tr-dest-body { position: relative; z-index: 1; padding: var(--tr-s3); }
.tr-dest h3 { color: var(--tr-foam); font-size: clamp(1.5rem, 2.4vw, 2rem); margin-bottom: 4px; }
.tr-dest p { color: rgba(255, 253, 248, 0.9); font-size: var(--tr-small); margin: 0; max-width: 44ch; }
.tr-dest-go { display: inline-flex; align-items: center; gap: 7px; margin-top: 9px; font-weight: 700; font-size: 0.88rem; color: #EFD9A7; }
.tr-dest-a { grid-column: span 7; min-height: 400px; }
.tr-dest-b { grid-column: span 5; min-height: 400px; }
.tr-dest-c { grid-column: span 4; min-height: 290px; }
@media (max-width: 860px) {
  .tr-dest-a, .tr-dest-b, .tr-dest-c { grid-column: span 12; min-height: 250px; }
}

/* ── Credentials / DOT badge ── */
.tr-cred {
  display: flex; align-items: center; gap: 18px;
  background: var(--tr-shell); border: 1px solid var(--tr-driftwood);
  border-radius: var(--tr-radius); padding: 18px 24px;
  box-shadow: var(--tr-shadow-soft); margin-top: var(--tr-s4);
}
.tr-cred img { width: 78px; height: 78px; object-fit: contain; background: #fff; border-radius: 50%; padding: 7px; box-shadow: var(--tr-shadow-soft); flex: none; }
.tr-cred strong { display: block; font-size: 1.02rem; }
.tr-cred span { color: var(--tr-ink-soft); font-size: var(--tr-small); }
.tr-factchips { display: flex; flex-wrap: wrap; gap: var(--tr-s2); margin-top: var(--tr-s3); }
.tr-factchip { background: #fff; border: 1px solid var(--tr-driftwood); border-radius: 999px; padding: 9px 18px; font-size: var(--tr-small); font-weight: 700; color: var(--tr-forest); }

/* ── Credentials & affiliations strip ── */
.tr-creds-head { margin: var(--tr-s4) 0 0; font-size: 0.78rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--tr-ink-soft); }
.tr-creds { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--tr-s3); margin-top: var(--tr-s2); }
.tr-creds-item {
  margin: 0; background: transparent; border: none; box-shadow: none;
  padding: var(--tr-s3) 8px;
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 12px;
}
.tr-creds-item + .tr-creds-item { border-left: 1px solid var(--tr-driftwood); }
.tr-creds-logo { height: 60px; display: flex; align-items: center; justify-content: center; }
.tr-creds-logo a { display: inline-flex; line-height: 0; }
.tr-creds-logo img { max-height: 60px; max-width: 130px; width: auto; height: auto; object-fit: contain; filter: grayscale(1); opacity: 0.62; mix-blend-mode: multiply; transition: filter 0.25s var(--tr-ease), opacity 0.25s var(--tr-ease); }
.tr-creds-item:hover .tr-creds-logo img { filter: grayscale(0); opacity: 1; }
.tr-creds-mini a { display: inline-flex; line-height: 0; }
.tr-creds-item figcaption strong { display: block; font-size: 0.9rem; line-height: 1.3; color: var(--tr-forest); }
.tr-creds-item figcaption span { display: block; font-size: 0.78rem; color: var(--tr-ink-soft); margin-top: 2px; }
@media (max-width: 620px) { .tr-creds { grid-template-columns: repeat(3, 1fr); gap: var(--tr-s2); } .tr-creds-item { padding: var(--tr-s3) 8px; } .tr-creds-logo { height: 46px; } .tr-creds-logo img { max-height: 46px; } .tr-creds-item figcaption strong { font-size: 0.76rem; } .tr-creds-item figcaption span { display: none; } }
/* Compact affiliation row — logos sit INTO the surface, muted so the mismatched
   marks harmonise; full colour on hover. */
.tr-creds-mini { display: flex; align-items: center; justify-content: center; gap: 28px; flex-wrap: wrap; margin-top: var(--tr-s3); padding-top: var(--tr-s3); border-top: 1px solid var(--tr-driftwood); }
.tr-creds-mini img { height: 34px; width: auto; max-width: 84px; object-fit: contain; filter: grayscale(1); opacity: 0.5; mix-blend-mode: multiply; transition: filter 0.25s var(--tr-ease), opacity 0.25s var(--tr-ease); }
.tr-creds-mini a:hover img { filter: grayscale(0); opacity: 1; }
/* Footer sits on dark green — each logo on a uniform white tile (legible, neat) */
.tr-creds-mini-footer { margin: var(--tr-s4) auto 0; max-width: 480px; gap: 16px; border-top-color: rgba(255,253,248,0.16); }
.tr-creds-mini-footer a { background: #fff; border-radius: 10px; width: 96px; height: 54px; padding: 8px 12px; align-items: center; justify-content: center; box-shadow: 0 2px 8px rgba(0,0,0,0.18); transition: transform 0.2s var(--tr-ease); }
.tr-creds-mini-footer a:hover { transform: translateY(-2px); }
.tr-creds-mini-footer img { filter: none; opacity: 1; mix-blend-mode: normal; height: auto; max-height: 36px; max-width: 100%; }

/* ── Reviews ── */
.tr-reviews-embed { margin-top: var(--tr-s4); text-align: left; max-width: 100%; overflow-x: hidden; }
.tr-quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--tr-s3); margin-top: var(--tr-s4); text-align: left; }
.tr-quote { background: var(--tr-shell); border: 1px solid var(--tr-driftwood); border-radius: var(--tr-radius); padding: var(--tr-s4); box-shadow: var(--tr-shadow-soft); display: flex; flex-direction: column; }
.tr-quote blockquote { margin: 0 0 var(--tr-s3); font-family: var(--tr-font-display); font-size: 1.22rem; line-height: 1.45; color: var(--tr-ink); flex: 1; }
.tr-quote blockquote::before { content: "\201C"; display: block; font-size: 2.6rem; line-height: 0.6; color: var(--tr-coral); margin-bottom: 10px; }
.tr-quote figcaption { font-size: var(--tr-small); color: var(--tr-ink-soft); }
.tr-quote figcaption strong { color: var(--tr-forest); }
.tr-quotes-note { font-size: 0.82rem; color: var(--tr-ink-soft); margin-top: var(--tr-s3); }
@media (max-width: 860px) { .tr-quotes { grid-template-columns: 1fr; } }

/* ── Ground-team / trust ── */
.tr-ground { display: grid; grid-template-columns: 1fr 1fr; gap: var(--tr-s5); align-items: center; }
.tr-ground-media { position: relative; border-radius: var(--tr-radius); overflow: hidden; box-shadow: var(--tr-shadow); }
.tr-ground-media img { width: 100%; height: 100%; object-fit: cover; }
.tr-ground-tag {
  position: absolute; left: 16px; bottom: 16px; background: rgba(251, 246, 236, 0.94);
  border-radius: var(--tr-radius-sm); padding: 10px 16px; font-size: 0.85rem; font-weight: 700; color: var(--tr-forest);
}
.tr-facts { list-style: none; margin: var(--tr-s4) 0 0; padding: 0; display: grid; gap: var(--tr-s3); }
.tr-facts li { display: flex; gap: 14px; align-items: flex-start; }
.tr-facts svg { width: 26px; height: 26px; flex: none; color: var(--tr-lagoon); margin-top: 3px; }
.tr-facts strong { display: block; font-size: 1.04rem; }
.tr-facts span { color: var(--tr-ink-soft); font-size: var(--tr-small); }
@media (max-width: 860px) { .tr-ground { grid-template-columns: 1fr; } }

/* ── Trip styles ── */
.tr-styles { display: grid; grid-template-columns: repeat(12, 1fr); gap: var(--tr-s3); }
.tr-style { position: relative; border-radius: var(--tr-radius); overflow: hidden; min-height: 300px; display: flex; align-items: flex-end; text-decoration: none; color: var(--tr-foam); box-shadow: var(--tr-shadow-soft); }
.tr-style img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--tr-ease); }
.tr-style::after { content: ""; position: absolute; inset: 0; background: linear-gradient(185deg, rgba(20, 33, 27, 0) 34%, rgba(20, 33, 27, 0.78) 100%); }
.tr-style-body { position: relative; z-index: 1; padding: var(--tr-s3) var(--tr-s3) var(--tr-s3); }
.tr-style h3 { color: var(--tr-foam); margin-bottom: 4px; }
.tr-style p { color: rgba(255, 253, 248, 0.88); font-size: var(--tr-small); margin: 0; max-width: 40ch; }
.tr-style-go { display: inline-flex; align-items: center; gap: 7px; margin-top: 10px; font-weight: 700; font-size: 0.9rem; color: #EFD9A7; }
.tr-style:hover img { transform: scale(1.05); }
.tr-style-lead { grid-column: span 12; min-height: 380px; }
.tr-style-half { grid-column: span 6; }
.tr-style-third { grid-column: span 4; }
@media (max-width: 860px) {
  .tr-style-half, .tr-style-third { grid-column: span 12; min-height: 240px; }
  .tr-style-lead { min-height: 300px; }
}

/* ── Reviews / proof ── */
.tr-proof { text-align: center; max-width: 720px; margin: 0 auto; }
.tr-proof-stars { color: var(--tr-gold); font-size: 1.5rem; letter-spacing: 0.35em; margin-bottom: var(--tr-s2); }
.tr-proof-actions { display: flex; flex-wrap: wrap; gap: var(--tr-s2); justify-content: center; margin-top: var(--tr-s4); }

/* ── How it works ── */
.tr-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--tr-s4); counter-reset: trstep; }
.tr-step { position: relative; padding-top: var(--tr-s3); border-top: 3px solid var(--tr-driftwood); }
.tr-step::before {
  counter-increment: trstep; content: counter(trstep);
  position: absolute; top: -1.55rem; left: 0;
  font-family: var(--tr-font-display); font-size: 2.4rem; font-weight: 700; color: var(--tr-coral);
}
.tr-step h3 { margin-bottom: var(--tr-s2); }
.tr-step p { color: var(--tr-ink-soft); font-size: var(--tr-small); margin: 0; }
@media (max-width: 780px) { .tr-steps { grid-template-columns: 1fr; gap: var(--tr-s5); } }

/* ── CTA band ── */
.tr-band { position: relative; padding: var(--tr-s6) 0; color: var(--tr-foam); isolation: isolate; }
.tr-band-media { position: absolute; inset: 0; z-index: -2; }
.tr-band-media img { width: 100%; height: 100%; object-fit: cover; }
.tr-band::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(120deg, rgba(15, 32, 25, 0.86) 18%, rgba(15, 32, 25, 0.55) 60%, rgba(15, 32, 25, 0.35)); }
.tr-band h2 { color: var(--tr-foam); max-width: 20ch; }
.tr-band p { max-width: 54ch; color: rgba(255, 253, 248, 0.92); }
.tr-band-actions { display: flex; flex-wrap: wrap; gap: var(--tr-s2); margin-top: var(--tr-s4); }

/* ── Forms (plan-my-trip) ── */
.tr-form-wrap { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr); gap: var(--tr-s5); align-items: start; }
.tr-form-card { background: var(--tr-shell); border-radius: var(--tr-radius); box-shadow: var(--tr-shadow); padding: var(--tr-s4); }
.tr-form-card h1 { font-size: var(--tr-h2); }
.tr-field { margin-bottom: var(--tr-s3); }
.tr-field label { display: block; font-weight: 700; font-size: var(--tr-small); margin-bottom: 7px; }
.tr-field input, .tr-field textarea {
  width: 100%; padding: 14px 16px; border-radius: var(--tr-radius-sm);
  border: 1.5px solid var(--tr-driftwood); background: #fff;
  font-family: var(--tr-font-body); font-size: 1rem; color: var(--tr-ink);
}
.tr-field input:focus, .tr-field textarea:focus { outline: none; border-color: var(--tr-lagoon); box-shadow: 0 0 0 3px rgba(14, 110, 102, 0.16); }
.tr-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--tr-s3); }
.tr-phone-row { display: flex; gap: 8px; }
.tr-phone-row input { flex: 1; min-width: 0; }
select.tr-cc {
  flex: none; width: 132px; padding: 13px 8px; border-radius: var(--tr-radius-sm);
  border: 1.5px solid var(--tr-driftwood); background: #fff;
  font-family: var(--tr-font-body); font-size: 0.92rem; color: var(--tr-ink);
}
select.tr-cc:focus { outline: none; border-color: var(--tr-lagoon); box-shadow: 0 0 0 3px rgba(14, 110, 102, 0.16); }
.tr-field input.tr-invalid { border-color: var(--tr-coral); box-shadow: 0 0 0 3px rgba(180, 74, 40, 0.14); }
.tr-chips { display: flex; flex-wrap: wrap; gap: var(--tr-s2); }
.tr-chip { position: relative; }
.tr-chip input { position: absolute; opacity: 0; width: 1px; height: 1px; margin: 0; pointer-events: none; }
.tr-chip span {
  display: inline-block; padding: 11px 20px; border-radius: 999px; cursor: pointer;
  border: 1.5px solid var(--tr-driftwood); background: #fff; font-weight: 700; font-size: var(--tr-small);
  transition: all 0.18s ease;
}
.tr-chip input:checked + span { background: var(--tr-forest); color: var(--tr-foam); border-color: var(--tr-forest); }
.tr-chip input:focus-visible + span { outline: 3px solid var(--tr-lagoon); outline-offset: 2px; }
.tr-form-error { display: none; background: rgba(180, 74, 40, 0.1); border: 1px solid rgba(180, 74, 40, 0.35); color: var(--tr-coral-deep); border-radius: var(--tr-radius-sm); padding: 12px 16px; margin-bottom: var(--tr-s3); font-size: var(--tr-small); font-weight: 600; }
.tr-honeypot { position: absolute; top: -9999px; left: 0; opacity: 0; height: 0; width: 0; overflow: hidden; }
.tr-form-trust { list-style: none; margin: 0 0 var(--tr-s4); padding: var(--tr-s3) var(--tr-s4); background: var(--tr-dune); border-radius: var(--tr-radius-sm); display: grid; gap: 8px; }
.tr-form-trust li { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; font-weight: 600; color: var(--tr-ink); }
.tr-form-trust svg { width: 18px; height: 18px; flex: none; color: var(--tr-lagoon); }
.tr-form-note { font-size: 0.85rem; color: var(--tr-ink-soft); margin: var(--tr-s2) 0 0; }
.tr-aside { position: sticky; top: 100px; }
.tr-aside-card { background: var(--tr-dune); border-radius: var(--tr-radius); padding: var(--tr-s4); margin-bottom: var(--tr-s3); }
.tr-aside-card h3 { margin-bottom: var(--tr-s2); }
.tr-aside-card ol { margin: 0; padding-left: 1.2rem; color: var(--tr-ink-soft); font-size: var(--tr-small); display: grid; gap: 10px; }
@media (max-width: 900px) {
  .tr-form-wrap { grid-template-columns: 1fr; }
  .tr-aside { position: static; }
  .tr-field-row { grid-template-columns: 1fr; }
}

/* ── Thank-you ── */
.tr-ty { min-height: 68svh; display: flex; align-items: center; text-align: center; }
.tr-ty-card { max-width: 620px; margin: 0 auto; }
.tr-ty-mark { width: 96px; height: 96px; margin: 0 auto var(--tr-s3); border-radius: 50%; background: var(--tr-shell); box-shadow: var(--tr-shadow); display: flex; align-items: center; justify-content: center; }
.tr-ty-mark svg { width: 50px; height: 50px; color: var(--tr-lagoon); }

/* ── Footer ── */
.tr-footer { background: var(--tr-forest); color: rgba(255, 253, 248, 0.85); padding: var(--tr-s5) 0 var(--tr-s4); }
.tr-footer a { color: var(--tr-foam); }
.tr-footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: var(--tr-s4); }
.tr-footer h4 { color: var(--tr-foam); font-size: 1.15rem; margin-bottom: var(--tr-s2); }
.tr-footer-nav { display: grid; gap: 9px; font-size: var(--tr-small); }
.tr-footer-brand img { width: 64px; margin-bottom: var(--tr-s2); border-radius: 8px; }
.tr-footer-brand p { font-size: var(--tr-small); max-width: 40ch; }
.tr-footer-bottom { border-top: 1px solid rgba(255, 253, 248, 0.18); margin-top: var(--tr-s4); padding-top: var(--tr-s3); font-size: 0.82rem; display: flex; flex-wrap: wrap; gap: 8px 24px; justify-content: space-between; }
@media (max-width: 780px) { .tr-footer-grid { grid-template-columns: 1fr; } }

/* ── WhatsApp float ── */
.tr-wa-float {
  position: fixed; right: 18px; bottom: 18px; z-index: 70;
  width: 56px; height: 56px; border-radius: 50%; background: #1FAF5A;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 22px rgba(23, 60, 38, 0.4);
  transition: transform 0.25s var(--tr-ease);
}
.tr-wa-float:hover { transform: translateY(-3px) scale(1.05); }
.tr-wa-float svg { width: 30px; height: 30px; fill: #fff; }

/* ── Guide inline CTA callout ── */
.tr-guidecta {
  background: var(--tr-dune); border: 1px solid var(--tr-driftwood);
  border-radius: var(--tr-radius); padding: var(--tr-s4);
  margin: var(--tr-s4) 0; display: flex; flex-wrap: wrap; gap: var(--tr-s3);
  align-items: center; justify-content: space-between;
}
.tr-guidecta div { flex: 1 1 320px; }
.tr-guidecta strong { display: block; font-family: var(--tr-font-display); font-size: 1.35rem; color: var(--tr-forest); margin-bottom: 4px; }
.tr-guidecta p { margin: 0; font-size: var(--tr-small); color: var(--tr-ink-soft); }
.tr-guidecta .tr-btn { flex: 0 0 auto; }
/* Guide cards grid (guides index) */
.tr-guidecards { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--tr-s3); }
.tr-guidecard { background: #fff; border: 1px solid var(--tr-driftwood); border-radius: var(--tr-radius); overflow: hidden; text-decoration: none; color: var(--tr-ink); display: flex; flex-direction: column; transition: transform 0.2s var(--tr-ease), box-shadow 0.2s var(--tr-ease); box-shadow: var(--tr-shadow-soft); }
.tr-guidecard:hover { transform: translateY(-3px); box-shadow: var(--tr-shadow); }
.tr-guidecard-img { aspect-ratio: 16 / 10; overflow: hidden; }
.tr-guidecard-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--tr-ease); }
.tr-guidecard:hover .tr-guidecard-img img { transform: scale(1.05); }
.tr-guidecard-body { padding: var(--tr-s3) var(--tr-s4) var(--tr-s4); }
.tr-guidecard h3 { font-size: 1.28rem; margin-bottom: 6px; }
.tr-guidecard p { margin: 0; font-size: var(--tr-small); color: var(--tr-ink-soft); }
@media (max-width: 860px) { .tr-guidecards { grid-template-columns: 1fr; } }

/* ── Breadcrumbs ── */
.tr-crumbs { background: var(--tr-sand); border-bottom: 1px solid rgba(217, 204, 174, 0.5); font-size: 0.85rem; }
.tr-crumbs .tr-container { padding: 11px 0; display: flex; flex-wrap: wrap; gap: 4px 8px; align-items: center; }
.tr-crumbs a { color: var(--tr-ink-soft); text-decoration: none; }
.tr-crumbs a:hover { color: var(--tr-lagoon); }
.tr-crumbs span[aria-current] { color: var(--tr-forest); font-weight: 700; }
.tr-crumb-sep { color: var(--tr-driftwood); }

/* ── Content pages (destinations, styles, guides) ── */
.tr-hero-short { min-height: 62svh; }
.tr-prose { max-width: 70ch; }
.tr-prose p { color: var(--tr-ink); }
.tr-prose h2 { margin-top: var(--tr-s5); }
.tr-prose h3 { margin-top: var(--tr-s4); }
.tr-keyfacts { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--tr-s3); margin: var(--tr-s4) 0; }
.tr-keyfact { background: var(--tr-shell); border: 1px solid var(--tr-driftwood); border-radius: var(--tr-radius-sm); padding: 16px 20px; }
.tr-keyfact strong { display: block; font-size: 0.8rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: var(--tr-lagoon-deep); margin-bottom: 5px; }
.tr-keyfact span { font-size: var(--tr-small); color: var(--tr-ink); }
@media (max-width: 780px) { .tr-keyfacts { grid-template-columns: 1fr; } }
.tr-combine { display: flex; flex-wrap: wrap; gap: var(--tr-s2); margin-top: var(--tr-s3); }
.tr-combine a { display: inline-block; background: #fff; border: 1.5px solid var(--tr-driftwood); border-radius: 999px; padding: 10px 20px; font-size: var(--tr-small); font-weight: 700; color: var(--tr-forest); text-decoration: none; transition: all 0.18s ease; }
.tr-combine a:hover { border-color: var(--tr-lagoon); color: var(--tr-lagoon); }
.tr-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--tr-s3); margin: var(--tr-s4) 0; }
.tr-gallery figure { margin: 0; border-radius: var(--tr-radius); overflow: hidden; box-shadow: var(--tr-shadow-soft); aspect-ratio: 4 / 3; }
.tr-gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--tr-ease); }
.tr-gallery figure:hover img { transform: scale(1.05); }
@media (max-width: 780px) { .tr-gallery { grid-template-columns: 1fr 1fr; } }

/* ── Sample journeys & FAQs (money pages) ── */
.tr-journeys { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--tr-s3); margin: var(--tr-s4) 0 var(--tr-s2); }
.tr-journey { background: var(--tr-shell); border: 1px solid var(--tr-driftwood); border-radius: var(--tr-radius); padding: var(--tr-s4); box-shadow: var(--tr-shadow-soft); }
.tr-journey h3 { margin-bottom: 6px; }
.tr-journey-nights { display: inline-block; font-size: 0.8rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: var(--tr-coral); margin-bottom: 10px; }
.tr-journey-route { font-weight: 700; color: var(--tr-lagoon-deep); font-size: var(--tr-small); margin-bottom: var(--tr-s2); }
.tr-journey p:last-child { color: var(--tr-ink-soft); font-size: var(--tr-small); margin: 0; }
@media (max-width: 860px) { .tr-journeys { grid-template-columns: 1fr; } }
.tr-faqs { max-width: 760px; margin-top: var(--tr-s4); }
.tr-faqs details { background: var(--tr-shell); border: 1px solid var(--tr-driftwood); border-radius: var(--tr-radius-sm); margin-bottom: var(--tr-s2); overflow: hidden; }
.tr-faqs summary { cursor: pointer; padding: 16px 20px; font-weight: 700; list-style: none; position: relative; padding-right: 44px; }
.tr-faqs summary::after { content: "+"; position: absolute; right: 18px; top: 50%; transform: translateY(-50%); font-size: 1.4rem; color: var(--tr-coral); transition: transform 0.2s ease; }
.tr-faqs details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.tr-faqs summary::-webkit-details-marker { display: none; }
.tr-faqs details p { padding: 0 20px 16px; margin: 0; color: var(--tr-ink-soft); font-size: var(--tr-small); }

/* ── Sticky mobile CTA bar (money pages: body.tr-page-content) ── */
.tr-stickybar { display: none; }
@media (max-width: 780px) {
  .tr-page-content .tr-stickybar, .tr-page-home .tr-stickybar {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 80;
    display: grid; grid-template-columns: 1fr 1.4fr; gap: 10px;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    background: rgba(251, 246, 236, 0.96); backdrop-filter: blur(10px);
    border-top: 1px solid var(--tr-driftwood);
  }
  .tr-page-content .tr-stickybar .tr-btn, .tr-page-home .tr-stickybar .tr-btn { padding: 13px 10px; font-size: 0.95rem; }
  .tr-page-content .tr-wa-float, .tr-page-home .tr-wa-float { display: none; }
  .tr-page-content .tr-footer, .tr-page-home .tr-footer { padding-bottom: 96px; }
}

/* ── Trust / about: DOT certificate display ── */
.tr-cert { display: grid; grid-template-columns: 1fr 1fr; gap: var(--tr-s4); align-items: center; margin-top: var(--tr-s4); }
.tr-cert-frame { display: block; border: 1px solid var(--tr-driftwood); border-radius: var(--tr-radius); overflow: hidden; box-shadow: var(--tr-shadow); background: #fff; line-height: 0; }
.tr-cert-frame img { width: 100%; height: auto; display: block; transition: transform 0.4s var(--tr-ease); }
.tr-cert-frame:hover img { transform: scale(1.02); }
.tr-cert-note { font-size: var(--tr-small); color: var(--tr-ink-soft); }
.tr-cert-note strong { color: var(--tr-forest); }
.tr-cert-view { display: inline-flex; align-items: center; gap: 6px; margin-top: var(--tr-s2); font-weight: 700; color: var(--tr-lagoon); text-decoration: none; }
@media (max-width: 780px) { .tr-cert { grid-template-columns: 1fr; } }

/* ── Paid landing pages ── */
.tr-lp-header { position: sticky; top: 0; z-index: 60; background: rgba(251,246,236,0.96); backdrop-filter: blur(10px); border-bottom: 1px solid rgba(217,204,174,0.6); }
.tr-lp-header-in { display: flex; align-items: center; justify-content: space-between; padding: 8px 0; }
.tr-lp-header .tr-brand img { width: 56px; height: 56px; object-fit: contain; border-radius: 8px; }
.tr-lp-header .tr-brand { display: flex; align-items: center; gap: 10px; }
.tr-lp-head-cta { display: inline-flex; align-items: center; gap: 8px; background: #1FAF5A; color: #fff; text-decoration: none; font-weight: 700; font-size: 0.95rem; padding: 10px 18px; border-radius: 999px; }
.tr-lp-head-cta svg { width: 18px; height: 18px; fill: #fff; }
.tr-lp-hero { position: relative; color: var(--tr-foam); isolation: isolate; padding: var(--tr-s5) 0 var(--tr-s6); }
.tr-lp-hero-media { position: absolute; inset: 0; z-index: -2; }
.tr-lp-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.tr-lp-hero-veil { position: absolute; inset: 0; z-index: -1; background: linear-gradient(105deg, rgba(15,26,21,0.82) 0%, rgba(15,26,21,0.62) 46%, rgba(15,26,21,0.35) 100%); }
.tr-lp-hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: var(--tr-s5); align-items: center; }
.tr-lp-hero-copy h1 { font-size: clamp(2.1rem, 4.6vw, 3.3rem); color: var(--tr-foam); text-shadow: 0 2px 20px rgba(15,26,21,0.4); margin-bottom: var(--tr-s3); }
.tr-lp-hero-copy h1 em { font-style: italic; color: #EFD9A7; }
.tr-lp-sub { font-size: clamp(1.05rem, 1.8vw, 1.2rem); color: rgba(255,253,248,0.94); max-width: 46ch; margin-bottom: var(--tr-s4); }
.tr-lp-usps { list-style: none; margin: 0 0 var(--tr-s4); padding: 0; display: grid; gap: 10px; }
.tr-lp-usps li { display: flex; align-items: flex-start; gap: 10px; font-weight: 600; }
.tr-lp-usps li::before { content: "✓"; color: #6FD79A; font-weight: 800; flex: none; }
.tr-lp-trustline { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 16px; font-size: var(--tr-small); color: rgba(255,253,248,0.9); padding-top: var(--tr-s3); border-top: 1px solid rgba(255,253,248,0.28); }
.tr-lp-trustline .tr-proof-stars { color: var(--tr-gold); font-size: 1rem; letter-spacing: 0.15em; margin: 0; }
.tr-lp-form-card { background: var(--tr-shell); color: var(--tr-ink); border-radius: var(--tr-radius); box-shadow: var(--tr-shadow); padding: var(--tr-s4); }
.tr-lp-form-card h2 { font-size: var(--tr-h3); margin-bottom: 4px; }
.tr-lp-form-card > p { color: var(--tr-ink-soft); font-size: var(--tr-small); margin-bottom: var(--tr-s3); }
.tr-lp-footer { background: var(--tr-forest); color: rgba(255,253,248,0.8); padding: var(--tr-s4) 0; text-align: center; }
.tr-lp-footer-legal { font-size: 0.8rem; max-width: 80ch; margin: var(--tr-s3) auto 0; }
@media (max-width: 900px) {
  .tr-lp-hero-grid { grid-template-columns: 1fr; gap: var(--tr-s4); }
  .tr-lp-form-card { order: -1; }
}

/* ── Reveal ── */
.tr-reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.85s var(--tr-ease), transform 0.85s var(--tr-ease); }
.tr-reveal.tr-on { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .tr-reveal, .tr-stop, .tr-leg { opacity: 1 !important; transform: none !important; transition: none !important; }
  .tr-route-line span { transform: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}

/* Larger footer accreditation badges + clickable label to trust page */
.tr-creds-mini-footer a{width:120px;height:66px;padding:9px 14px}
.tr-creds-mini-footer img{max-height:46px}
.tr-creds-mini-label{display:block;text-align:center;margin:26px 0 10px;font-weight:700;font-size:.82rem;letter-spacing:.02em;color:#cdd8cf;text-decoration:none}
.tr-creds-mini-label:hover{color:#fff;text-decoration:underline}

/* ══════════════════════════════════════════════════════════════════
   PAID LP v2 — "Maslul formula" honeymoon page (.tr-lph-*)
   Centred emotional hero → gold price anchor → one CTA → trust strip
   → why + sticky form → sample journey → proof. Locked: no external
   links; the page's only actions are the form and WhatsApp.
   ══════════════════════════════════════════════════════════════════ */

/* ── Hero ── */
.tr-lph { padding: 0; display: flex; align-items: center; justify-content: center; text-align: center; min-height: clamp(560px, 92vh, 800px); }
.tr-lph-veil { position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(15,26,21,0.38) 0%, rgba(15,26,21,0.5) 52%, rgba(15,26,21,0.78) 100%); }
.tr-lph-in { position: relative; max-width: 780px; padding-top: var(--tr-s6); padding-bottom: var(--tr-s6); }
.tr-lph-badge { display: inline-flex; align-items: center; gap: 9px; background: rgba(255,253,248,0.13); border: 1px solid rgba(255,253,248,0.4); backdrop-filter: blur(6px); border-radius: 999px; padding: 9px 20px; font-size: var(--tr-small); font-weight: 600; margin-bottom: var(--tr-s3); }
.tr-lph-badge svg { width: 17px; height: 17px; color: var(--tr-gold); flex: none; }
.tr-lph h1 { font-size: clamp(2.3rem, 5.4vw, 3.6rem); color: var(--tr-foam); line-height: 1.14; text-shadow: 0 2px 22px rgba(15,26,21,0.5); margin-bottom: var(--tr-s3); }
.tr-lph h1 em { font-style: italic; color: #EFD9A7; }
.tr-lph-sub { font-size: clamp(1.05rem, 1.9vw, 1.22rem); color: rgba(255,253,248,0.95); max-width: 54ch; margin: 0 auto var(--tr-s4); text-shadow: 0 1px 12px rgba(15,26,21,0.45); }
.tr-lph-price { display: inline-block; background: linear-gradient(160deg, #D9BC6B 0%, var(--tr-gold) 55%, #B99339 100%); color: #241B08; border-radius: 16px; padding: 16px 30px; margin-bottom: var(--tr-s4); box-shadow: 0 10px 32px rgba(15,26,21,0.45); line-height: 1.5; }
.tr-lph-price b { display: block; font-size: 1.4rem; letter-spacing: -0.01em; }
.tr-lph-price span { display: block; font-weight: 700; color: #4A3A10; font-size: var(--tr-small); }
.tr-lph-price small { display: block; font-weight: 500; font-size: 0.78rem; opacity: 0.75; margin-top: 2px; }
.tr-lph-cta { font-size: 1.15rem; padding: 17px 44px; border-radius: 999px; }
.tr-lph-wa { margin-top: var(--tr-s3); font-size: var(--tr-small); color: rgba(255,253,248,0.88); }
.tr-lph-wa a { color: #fff; font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }

/* ── Trust strip ── */
.tr-lph-trust { background: var(--tr-forest); color: var(--tr-foam); padding: 16px 0; }
.tr-lph-trust-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 40px; }
.tr-lph-trust-grid span { display: inline-flex; align-items: center; gap: 9px; font-size: var(--tr-small); font-weight: 600; }
.tr-lph-trust-grid svg { width: 19px; height: 19px; color: var(--tr-gold); flex: none; }

/* ── Why + form ── */
.tr-lph-main { scroll-margin-top: 80px; }
.tr-lph-cols { display: grid; grid-template-columns: 1fr 0.92fr; gap: var(--tr-s5); align-items: start; }
.tr-lph-side h2 { font-size: var(--tr-h2); margin-bottom: var(--tr-s2); }
.tr-lph-side > p { color: var(--tr-ink-soft); max-width: 62ch; margin-bottom: var(--tr-s3); }
.tr-lph-points { list-style: none; margin: 0 0 var(--tr-s4); padding: 0; display: grid; gap: 14px; }
.tr-lph-points li { display: flex; gap: 12px; align-items: flex-start; line-height: 1.55; }
.tr-lph-points svg { width: 22px; height: 22px; color: var(--tr-lagoon); flex: none; margin-top: 2px; }
.tr-lph-pics { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.tr-lph-pics img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 14px; display: block; box-shadow: 0 6px 20px rgba(28,36,32,0.14); }
.tr-lph-form { position: sticky; top: 84px; }
.tr-lph-form-trust { display: flex; flex-wrap: wrap; gap: 6px 14px; margin-bottom: 10px; }
.tr-lph-form-trust span { font-size: 0.8rem; font-weight: 700; color: var(--tr-lagoon-deep); background: rgba(14,110,102,0.09); border-radius: 999px; padding: 4px 11px; }

/* ── Sample journey ── */
.tr-lph-route { list-style: none; margin: var(--tr-s4) 0 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--tr-s3); counter-reset: stop; }
.tr-lph-route li { position: relative; counter-increment: stop; }
.tr-lph-route li::before { content: counter(stop); position: absolute; top: 10px; inset-inline-start: 10px; z-index: 1; width: 30px; height: 30px; display: grid; place-items: center; background: var(--tr-foam); color: var(--tr-forest); font-weight: 800; font-size: 0.9rem; border-radius: 999px; box-shadow: 0 3px 10px rgba(28,36,32,0.25); }
.tr-lph-route img { width: 100%; aspect-ratio: 5 / 4; object-fit: cover; border-radius: 14px; display: block; box-shadow: 0 6px 20px rgba(28,36,32,0.16); margin-bottom: 12px; }
.tr-lph-route b { display: flex; align-items: baseline; gap: 8px; font-size: 1.12rem; color: var(--tr-forest); }
.tr-lph-route b span { font-size: 0.82rem; font-weight: 700; color: var(--tr-coral); white-space: nowrap; }
.tr-lph-route p { font-size: var(--tr-small); color: var(--tr-ink-soft); line-height: 1.5; margin-top: 4px; }
.tr-lph-journey-cta { display: flex; flex-direction: column; align-items: center; gap: 8px; margin-top: var(--tr-s4); text-align: center; }
.tr-lph-journey-cta span { font-size: 0.85rem; color: var(--tr-ink-soft); }

/* ── Locked-LP shared chrome (badges, sticky action bar) ── */
.tr-cred-static { background: #fff; border-radius: 10px; width: 120px; height: 66px; padding: 9px 14px; display: inline-flex; align-items: center; justify-content: center; }
.tr-cred-static img { max-height: 46px; max-width: 100%; display: block; filter: none; }
.tr-lp-stickybar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 70; display: flex; gap: 10px; justify-content: center; align-items: center; padding: 10px 14px; background: rgba(251,246,236,0.96); backdrop-filter: blur(10px); box-shadow: 0 -4px 22px rgba(28,36,32,0.16); }
.tr-lp-stickybar .tr-btn { margin: 0; padding: 12px 22px; font-size: 0.98rem; }
.tr-page-lp { padding-bottom: 72px; }
@media (min-width: 900px) { .tr-lp-stickybar { display: none; } .tr-page-lp { padding-bottom: 0; } }

/* ── Responsive ── */
@media (max-width: 900px) {
  .tr-lph { min-height: auto; }
  .tr-lph-in { padding-top: 72px; padding-bottom: 84px; }
  .tr-lph-cols { grid-template-columns: 1fr; gap: var(--tr-s4); }
  .tr-lph-form { position: static; order: -1; }
  .tr-lph-route { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .tr-lph-route { grid-template-columns: 1fr; }
  .tr-lph-route img { aspect-ratio: 16 / 9; }
  .tr-lph-trust-grid { flex-direction: column; align-items: center; gap: 9px; }
}
@media (prefers-reduced-motion: reduce) {
  .tr-lph * { transition: none !important; }
}
