/* TCA Sports Tours website, build v1
   Brand: TCA brand book (shared with TCA Tours). Charcoal, gold accent only,
   Cormorant Garamond for display, labels and numerals; Work Sans for body.
   Square corners throughout. No pure black. */

:root {
  --charcoal: #414042;
  --ink: #2A292B;
  --gold: #EFCA50;
  --stone: #F4F3F1;
  --slate: #6E6D70;
  --hairline: #DDDCDC;
  --white: #FFFFFF;

  --display: "Cormorant Garamond", Garamond, "Times New Roman", serif;
  --body: "Work Sans", "Helvetica Neue", Arial, sans-serif;

  --wrap: 1180px;
  --gutter: clamp(20px, 4vw, 48px);
  --rule: 3px;
  --section: clamp(64px, 9vw, 120px);
}

*, *::before, *::after { box-sizing: border-box; border-radius: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } * { transition: none !important; animation: none !important; } }

body {
  margin: 0;
  font-variant-numeric: lining-nums;
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
p { margin: 0 0 1em; max-width: 68ch; }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 500;
  color: var(--charcoal);
  margin: 0 0 .5em;
  line-height: 1.08;
  letter-spacing: -0.005em;
}
h1 { font-size: clamp(2.7rem, 5.4vw, 4.6rem); }
h2 { font-size: clamp(2.05rem, 3.4vw, 3rem); }
h3 { font-size: 1.6rem; font-weight: 600; line-height: 1.15; }
h4 { font-size: 1.25rem; font-weight: 600; }

.label {
  font-family: var(--display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .98rem;
  color: var(--slate);
  margin: 0 0 .6em;
}
.num, .facts dd, .steps .n, .shape .when, .months b { font-variant-numeric: lining-nums; font-feature-settings: "lnum" 1; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: var(--section) 0; }
.section.stone { background: var(--stone); }
.section.dark { background: var(--charcoal); color: var(--white); }
.section.dark h2, .section.dark h3, .section.dark h4 { color: var(--white); }
.section.dark .label { color: var(--hairline); }
.lede { font-size: 1.2rem; line-height: 1.6; color: var(--ink); }
.muted { color: var(--slate); }

.skip { position: absolute; left: -999px; top: 0; background: var(--white); padding: 10px 16px; z-index: 100; }
.skip:focus { left: 12px; top: 12px; }

:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; box-shadow: 0 0 0 5px var(--gold); }
.dark :focus-visible, .site-footer :focus-visible, .hero :focus-visible { outline-color: var(--white); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--body);
  font-weight: 500;
  font-size: .98rem;
  letter-spacing: .02em;
  text-decoration: none;
  padding: 14px 24px 14px 21px;
  border: 0;
  border-left: var(--rule) solid var(--gold);
  background: var(--charcoal);
  color: var(--white);
  cursor: pointer;
  transition: background-color .15s ease;
}
.btn:hover { background: var(--ink); }
.btn.light { background: var(--white); color: var(--charcoal); }
.btn.light:hover { background: var(--stone); }
.btn.line { background: transparent; color: var(--charcoal); border: 1px solid var(--charcoal); border-left: var(--rule) solid var(--gold); }
.btn.line:hover { background: var(--stone); }
.dark .btn.line, .hero .btn.line { color: var(--white); border-color: var(--white); border-left-color: var(--gold); }
.dark .btn.line:hover, .hero .btn.line:hover { background: rgba(255,255,255,.08); }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }


/* ---------- Header ---------- */
.topbar { background: var(--ink); color: var(--hairline); font-size: .86rem; }
.topbar .wrap { display: flex; justify-content: flex-end; gap: 24px; padding-top: 7px; padding-bottom: 7px; }
.topbar a { text-decoration: none; color: var(--white); }
.topbar a:hover { text-decoration: underline; }

.site-header { background: var(--white); border-bottom: 1px solid var(--hairline); position: sticky; top: 0; z-index: 50; }
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 84px; }
.brand img { width: 214px; height: auto; }
.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  text-decoration: none;
  font-size: .95rem;
  padding: 10px 12px;
  color: var(--charcoal);
  border-bottom: 2px solid transparent;
}
.nav a:hover { border-bottom-color: var(--hairline); }
.nav a[aria-current="page"] { border-bottom-color: var(--gold); }
.nav .btn { margin-left: 12px; padding: 11px 18px 11px 15px; color: var(--white); border-bottom: 0; }
.nav .btn:hover { border-bottom: 0; }
.nav-toggle { display: none; background: none; border: 1px solid var(--hairline); padding: 9px 12px; font: inherit; color: var(--charcoal); cursor: pointer; }

@media (max-width: 1180px) {
  .nav-toggle { display: block; }
  .nav { display: none; position: absolute; left: 0; right: 0; top: 100%; background: var(--white); flex-direction: column; align-items: stretch; padding: 8px var(--gutter) 20px; border-bottom: 1px solid var(--hairline); }
  .nav.open { display: flex; }
  .nav a { padding: 14px 0; border-bottom: 1px solid var(--hairline); }
  .nav a[aria-current="page"] { border-bottom-color: var(--hairline); box-shadow: inset var(--rule) 0 0 var(--gold); padding-left: 12px; }
  .nav .btn { margin: 16px 0 0; text-align: center; }
  .brand img { width: 176px; }
}

/* ---------- Home hero: the logo lockup as layout ---------- */
.hero { position: relative; color: var(--white); background: var(--charcoal); overflow: hidden; }
.hero-media { position: absolute; inset: 0; }
.hero-media img, .hero-media svg { width: 100%; height: 100%; object-fit: cover; }
.hero-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(42,41,43,.92) 0%, rgba(42,41,43,.78) 48%, rgba(42,41,43,.45) 100%); }
.hero .wrap { position: relative; z-index: 1; }
.lockup {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) var(--rule) minmax(0, .8fr);
  column-gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: min(78vh, 720px);
  padding: 72px 0;
}
.lockup .rule { background: var(--gold); align-self: stretch; margin: 24px 0; }
.lockup h1 { color: var(--white); max-width: 13ch; }
.lockup p { color: var(--hairline); font-size: 1.12rem; max-width: 46ch; }
.where .label { color: var(--hairline); }
.where ul { list-style: none; margin: 0; padding: 0; }
.where a {
  display: block;
  font-family: var(--display);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: clamp(1.9rem, 3.3vw, 3rem);
  line-height: 1.12;
  text-decoration: none;
  color: var(--white);
  padding: 4px 0;
}
.where a:hover { text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 6px; }
.where .aside { margin-top: 22px; font-size: .95rem; color: var(--hairline); }
.where .aside a { font-family: var(--body); text-transform: none; letter-spacing: 0; font-size: .95rem; display: inline; text-decoration: underline; }

.hero .enter { animation: rise .7s ease-out both; }
.hero .enter-2 { animation: rise .7s .15s ease-out both; }
.hero .rule { animation: grow .6s .05s ease-out both; transform-origin: top; }
@keyframes rise { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
@keyframes grow { from { transform: scaleY(0); } to { transform: scaleY(1); } }

@media (max-width: 860px) {
  .lockup { grid-template-columns: 1fr; min-height: 0; padding: 64px 0 56px; }
  .lockup .rule { height: var(--rule); width: 96px; margin: 32px 0; }
}

/* ---------- Page header (inner pages) ---------- */
.page-head { background: var(--charcoal); color: var(--white); }
.page-head .wrap { display: grid; grid-template-columns: var(--rule) 1fr; column-gap: 28px; padding-top: clamp(56px, 7vw, 96px); padding-bottom: clamp(48px, 6vw, 80px); }
.page-head .rule { background: var(--gold); }
.page-head h1 { color: var(--white); margin-bottom: .25em; }
.page-head .label { color: var(--hairline); }
.page-head p { color: var(--hairline); font-size: 1.15rem; margin: 0; max-width: 58ch; }

.subnav { border-bottom: 1px solid var(--hairline); }
.subnav ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 28px; flex-wrap: wrap; }
.subnav a { display: block; padding: 16px 0 14px; text-decoration: none; color: var(--slate); border-bottom: 2px solid transparent; font-size: .95rem; }
.subnav a[aria-current="page"] { color: var(--charcoal); border-bottom-color: var(--gold); }
.subnav a:hover { color: var(--charcoal); }

/* ---------- Layout helpers ---------- */
.split { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(32px, 6vw, 88px); align-items: start; }
.split.even { grid-template-columns: 1fr 1fr; }
@media (max-width: 860px) { .split, .split.even { grid-template-columns: 1fr; } }

.ruled { display: grid; grid-template-columns: 1fr var(--rule) 1fr; gap: clamp(24px, 4vw, 56px); }
.ruled .rule { background: var(--gold); }
@media (max-width: 760px) { .ruled { grid-template-columns: 1fr; } .ruled .rule { height: var(--rule); width: 72px; } }

.ticks { list-style: none; margin: 0; padding: 0; }
.ticks li { padding: 12px 0 12px 22px; border-bottom: 1px solid var(--hairline); position: relative; }
.ticks li::before { content: ""; position: absolute; left: 0; top: 23px; width: 10px; height: 1px; background: var(--charcoal); }
.dark .ticks li { border-bottom-color: rgba(255,255,255,.18); }
.dark .ticks li::before { background: var(--gold); }

/* ---------- Destination grid (home + destinations) ---------- */
.dest-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(20px, 3vw, 36px); margin-top: 40px; }
.dest { grid-column: span 6; text-decoration: none; display: block; }
.dest:nth-child(1) { grid-column: span 7; }
.dest:nth-child(2) { grid-column: span 5; }
.dest:nth-child(3) { grid-column: span 5; }
.dest:nth-child(4) { grid-column: span 7; }
.dest .frame { aspect-ratio: 16 / 10; overflow: hidden; background: var(--stone); }
.dest .frame img, .dest .frame svg { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.dest:hover .frame img, .dest:hover .frame svg { transform: scale(1.03); }
.dest .meta { display: grid; grid-template-columns: var(--rule) 1fr; column-gap: 16px; padding-top: 18px; }
.dest .meta .rule { background: var(--gold); }
.dest h3 { font-size: 2rem; font-weight: 500; margin: 0 0 .15em; }
.dest p { margin: 0; color: var(--slate); }
.dest .go { display: inline-block; margin-top: 10px; font-size: .92rem; color: var(--charcoal); text-decoration: underline; text-underline-offset: 4px; }
@media (max-width: 760px) { .dest, .dest:nth-child(n) { grid-column: span 12; } }

/* ---------- Steps ---------- */
.steps { list-style: none; margin: 40px 0 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--hairline); }
.steps li { padding: 28px 28px 8px 0; }
.steps li + li { padding-left: 28px; border-left: 1px solid var(--hairline); }
.steps .n { font-family: var(--display); font-size: 3.2rem; line-height: 1; color: var(--charcoal); display: block; margin-bottom: 10px; }
.steps.long { grid-template-columns: repeat(2, 1fr); }
.steps.long li { padding: 32px 32px 16px 0; border-bottom: 1px solid var(--hairline); }
.steps.long li:nth-child(even) { padding-left: 32px; border-left: 1px solid var(--hairline); }
.steps.long li + li:nth-child(odd) { border-left: 0; padding-left: 0; }
@media (max-width: 760px) {
  .steps, .steps.long { grid-template-columns: 1fr; }
  .steps li + li, .steps.long li:nth-child(n) { padding-left: 0; border-left: 0; border-top: 1px solid var(--hairline); }
}

/* ---------- GCS click-through band (TCA palette only) ---------- */
.gcs-band .wrap { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 4fr); gap: clamp(28px, 5vw, 72px); align-items: end; }
.gcs-band p { color: var(--hairline); }
.gcs-band .btn-row { margin-top: 0; justify-content: flex-start; }
@media (max-width: 860px) { .gcs-band .wrap { grid-template-columns: 1fr; } }

/* ---------- Quotes ---------- */
.quote-feature { display: grid; grid-template-columns: var(--rule) 1fr; column-gap: 32px; }
.quote-feature .rule { background: var(--gold); }
blockquote { margin: 0; }
.quote-feature blockquote p {
  font-family: var(--display);
  font-size: clamp(1.6rem, 2.8vw, 2.3rem);
  line-height: 1.25;
  color: var(--charcoal);
  max-width: 34ch;
  margin-bottom: .6em;
}
.quote-feature cite, .quote cite { font-style: normal; font-size: .95rem; color: var(--slate); }
.quote-row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 4vw, 56px); margin-top: 56px; padding-top: 40px; border-top: 1px solid var(--hairline); }
.quote p { font-size: 1.05rem; }
@media (max-width: 760px) { .quote-row { grid-template-columns: 1fr; } }

.testimonial { display: grid; grid-template-columns: minmax(0, 3fr) minmax(0, 8fr); gap: clamp(20px, 4vw, 56px); padding: 48px 0; border-top: 1px solid var(--hairline); }
.testimonial:first-child { border-top: 0; padding-top: 0; }
.testimonial h2 { font-size: 1.9rem; margin: 0; }
.testimonial .ctx { color: var(--slate); font-size: .95rem; margin-top: 6px; }
.testimonial .ticks { margin-top: 12px; }
@media (max-width: 760px) { .testimonial { grid-template-columns: 1fr; } }

/* ---------- Principles (philosophy) ---------- */
.principles { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 clamp(32px, 6vw, 88px); }
.principles article { padding: 32px 0; border-top: 1px solid var(--hairline); }
.principles h3 { margin-bottom: .35em; }
@media (max-width: 760px) { .principles { grid-template-columns: 1fr; } }

/* ---------- Accreditation ---------- */
.accredit { border-top: 1px solid var(--hairline); }
.accredit .wrap { display: flex; flex-wrap: wrap; align-items: center; gap: 28px 40px; padding-top: 36px; padding-bottom: 36px; }
.accredit img { height: 64px; width: auto; }
.accredit p { margin: 0; color: var(--slate); font-size: .95rem; max-width: 60ch; }

/* ---------- Destination page ---------- */
.d-hero { position: relative; background: var(--charcoal); color: var(--white); min-height: min(72vh, 680px); display: flex; align-items: flex-end; overflow: hidden; }
.d-hero .hero-media::after { background: linear-gradient(0deg, rgba(42,41,43,.94) 0%, rgba(42,41,43,.55) 45%, rgba(42,41,43,.12) 100%); }
.d-hero .wrap { position: relative; z-index: 1; width: 100%; padding-bottom: clamp(36px, 5vw, 64px); padding-top: 120px; }
.d-hero .lock { display: grid; grid-template-columns: minmax(0, 1.4fr) var(--rule) minmax(0, 1fr); column-gap: clamp(24px, 4vw, 56px); align-items: end; }
.d-hero .rule { background: var(--gold); align-self: stretch; }
.d-hero h1 { color: var(--white); font-size: clamp(3.2rem, 7vw, 6rem); text-transform: uppercase; letter-spacing: .06em; margin: 0; }
.d-hero .strap { color: var(--hairline); font-size: 1.15rem; margin: 10px 0 0; }
.d-hero .label { color: var(--hairline); }
.facts { display: grid; grid-template-columns: repeat(3, auto); gap: 8px 32px; justify-content: start; margin: 0; }
.facts dt { font-size: .82rem; color: var(--hairline); text-transform: uppercase; letter-spacing: .1em; font-family: var(--display); font-weight: 600; }
.facts dd { margin: 0; font-family: var(--display); font-size: 1.9rem; line-height: 1.1; color: var(--white); }
@media (max-width: 860px) {
  .d-hero .lock { grid-template-columns: 1fr; }
  .d-hero .rule { height: var(--rule); width: 72px; margin: 24px 0; }
}

.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.gallery figure { margin: 0; aspect-ratio: 4 / 3; overflow: hidden; background: var(--stone); }
.gallery img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 760px) { .gallery { grid-template-columns: repeat(2, 1fr); } }

.legends { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px, 4vw, 48px); margin-top: 40px; }
.legend { border-top: var(--rule) solid var(--gold); padding-top: 20px; }
.legend h3 { margin-bottom: .1em; }
.legend .label { margin-bottom: 12px; }
.legend ul { margin: 0; padding: 0; list-style: none; color: var(--slate); }
.legend li { padding: 4px 0; }
@media (max-width: 760px) { .legends { grid-template-columns: 1fr; } }

.shape { list-style: none; margin: 40px 0 0; padding: 0; }
.shape li { display: grid; grid-template-columns: 150px 1fr; gap: 24px; padding: 24px 0; border-top: 1px solid var(--hairline); }
.shape .when { font-family: var(--display); font-size: 1.5rem; line-height: 1.2; color: var(--charcoal); }
.shape h3 { font-size: 1.35rem; margin-bottom: .25em; }
.shape p { margin: 0; }
@media (max-width: 600px) { .shape li { grid-template-columns: 1fr; gap: 4px; } }

.months { display: grid; grid-template-columns: repeat(12, 1fr); gap: 4px; margin-top: 20px; }
.months div { text-align: center; }
.months span { display: block; height: 44px; margin-bottom: 8px; border: 1px solid var(--hairline); }
.months .best span { background: var(--charcoal); border-color: var(--charcoal); }
.months .good span { background: var(--slate); border-color: var(--slate); }
.months .moderate span { background: var(--stone); }
.months b { font-family: var(--display); font-weight: 600; font-size: 1.05rem; }
.key { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 18px; font-size: .92rem; color: var(--slate); }
.key i { display: inline-block; width: 14px; height: 14px; vertical-align: -2px; margin-right: 8px; border: 1px solid var(--hairline); }
.key .best i { background: var(--charcoal); border-color: var(--charcoal); }
.key .good i { background: var(--slate); border-color: var(--slate); }
.key .moderate i { background: var(--stone); }

.stay img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }

/* ---------- Draft notes (turn off in build.py before launch) ---------- */
.draft-note, .note { border: 1px solid var(--hairline); border-left: var(--rule) solid var(--gold); background: var(--white); color: var(--ink); padding: 14px 18px; margin: 0 0 28px; font-size: .92rem; max-width: 72ch; }
.draft-note strong { font-weight: 600; }
.d-hero + .draft-wrap, .page-head + .draft-wrap { padding-top: 28px; }

/* ---------- Forms ---------- */
.form { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 24px; }
.form .full { grid-column: 1 / -1; }
.form label { display: block; font-weight: 500; font-size: .95rem; margin-bottom: 6px; color: var(--charcoal); }
.form .hint { font-weight: 400; color: var(--slate); }
.form input, .form select, .form textarea {
  width: 100%;
  font: inherit;
  color: var(--ink);
  padding: 12px 14px;
  border: 1px solid #BDBCBD;
  background: var(--white);
}
.form input:focus, .form select:focus, .form textarea:focus { border-color: var(--charcoal); }
.form textarea { min-height: 150px; resize: vertical; }
.form fieldset { border: 0; padding: 0; margin: 0; }
.form legend { font-weight: 500; font-size: .95rem; margin-bottom: 8px; color: var(--charcoal); }
.choices { display: flex; flex-wrap: wrap; gap: 8px; }
.choices label { display: inline-flex; align-items: center; gap: 8px; margin: 0; padding: 10px 14px; border: 1px solid #BDBCBD; font-weight: 400; cursor: pointer; }
.choices input { width: auto; accent-color: var(--charcoal); }
.choices label:has(input:checked) { border-color: var(--charcoal); box-shadow: inset var(--rule) 0 0 var(--gold); }
.gcs-hint { display: none; }
.gcs-hint.show { display: block; }
.hidden { position: absolute; left: -9999px; }
@media (max-width: 700px) { .form { grid-template-columns: 1fr; } }

.contact-list { list-style: none; margin: 0; padding: 0; }
.contact-list li { padding: 18px 0; border-top: 1px solid var(--hairline); }
.contact-list .label { margin-bottom: 4px; }
.contact-list a { font-family: var(--display); font-size: 1.6rem; text-decoration: none; color: var(--charcoal); }
.contact-list a:hover { text-decoration: underline; }

/* ---------- Legal ---------- */
.legal { max-width: 78ch; }
.legal h2 { font-size: 1.9rem; margin-top: 1.4em; }
.legal h3 { font-size: 1.4rem; margin-top: 1.4em; }
.legal table { border-collapse: collapse; width: 100%; margin: 1em 0 1.5em; font-size: .95rem; }
.legal th, .legal td { border: 1px solid var(--hairline); padding: 10px 12px; text-align: left; vertical-align: top; }
.legal li { margin-bottom: .4em; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: var(--hairline); font-size: .95rem; }
.site-footer .wrap { display: grid; grid-template-columns: minmax(0, 3fr) repeat(3, minmax(0, 2fr)); gap: 40px; padding-top: 72px; padding-bottom: 48px; }
.site-footer img.logo { width: 150px; }
.site-footer h2 { font-size: 1.05rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--white); margin: 0 0 14px; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { padding: 3px 0; }
.site-footer a { color: var(--white); text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }
.site-footer address { font-style: normal; }
.legalbar { border-top: 1px solid rgba(255,255,255,.14); }
.legalbar .wrap { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; padding-top: 20px; padding-bottom: 24px; grid-template-columns: none; font-size: .85rem; color: #A9A8AA; }
@media (max-width: 900px) { .site-footer .wrap { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .site-footer .wrap { grid-template-columns: 1fr; } }

/* =====================================================================
   Build v3: workbook-driven destination and itinerary pages
   (layout modelled on the Global Cricket Series tour pages, in TCA brand)
   ===================================================================== */
:root { --header-h: 85px; --daybar-h: 50px; }
.small { font-size: .9rem; }
.center { text-align: center; }
.btn.block { display: block; text-align: center; width: 100%; }
.i { flex: none; }

/* Breadcrumbs */
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; margin: 0; padding: 22px 0; font-size: .88rem; color: var(--slate); }
.crumbs li + li::before { content: "/"; margin-right: 6px; color: var(--hairline); }
.crumbs a { color: var(--slate); text-decoration: none; }
.crumbs a:hover { color: var(--charcoal); text-decoration: underline; }
.crumbs [aria-current] { color: var(--charcoal); }

/* Destination list cards */
.tcards { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(24px, 3vw, 40px); }
.tcard { display: flex; flex-direction: column; border: 1px solid var(--hairline); background: var(--white); }
.tcard-img { display: block; aspect-ratio: 16 / 9; overflow: hidden; background: var(--stone); }
.tcard-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.tcard:hover .tcard-img img { transform: scale(1.03); }
.tcard-body { padding: 24px 26px 22px; border-top: var(--rule) solid var(--gold); display: flex; flex-direction: column; flex: 1; }
.tcard h2 { font-size: 1.9rem; margin: 0 0 4px; }
.tcard h2 a { text-decoration: none; }
.tcard h2 a::after { content: ""; position: absolute; inset: 0; }
.tcard { position: relative; }
.tcard-sub { color: var(--slate); font-size: .92rem; margin-bottom: 12px; }
.tcard-foot { margin-top: auto; padding-top: 16px; border-top: 1px solid var(--hairline); display: flex; justify-content: space-between; align-items: center; gap: 12px; font-size: .9rem; color: var(--slate); }
.tcard-foot ul { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 6px 18px; }
.tcard-foot li { display: inline-flex; align-items: center; gap: 6px; }
.tcard-foot .go { color: var(--charcoal); text-decoration: underline; text-underline-offset: 4px; white-space: nowrap; }
@media (max-width: 760px) { .tcards { grid-template-columns: 1fr; } }

/* Tour page hero */
.t-hero { position: relative; min-height: min(62vh, 560px); display: flex; align-items: center; justify-content: center; text-align: center; color: var(--white); background: var(--charcoal); overflow: hidden; }
.t-hero .hero-media::after { background: rgba(42,41,43,.62); }
.t-hero-in { position: relative; z-index: 1; padding-top: 72px; padding-bottom: 72px; }
.t-hero h1 { color: var(--white); font-size: clamp(2.8rem, 6vw, 5rem); max-width: 16ch; margin: 0 auto; }
.t-hero .label { color: var(--hairline); }
.t-rule { width: 88px; height: var(--rule); background: var(--gold); margin: 26px auto 22px; }
.t-sub { color: var(--hairline); font-size: 1.15rem; margin: 0 auto; max-width: 52ch; }

/* Tour page layout */
.t-layout { display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: clamp(32px, 5vw, 72px); align-items: start; padding-bottom: var(--section); }
.t-main > * + * { margin-top: 56px; }
.t-block h2 { font-size: clamp(1.8rem, 2.6vw, 2.3rem); }
.t-lead { font-size: clamp(2rem, 3vw, 2.6rem) !important; max-width: 24ch; }
.t-side { position: sticky; top: calc(var(--header-h) + 24px); display: grid; gap: 16px; }
.book-card { border: 1px solid var(--hairline); border-top: var(--rule) solid var(--gold); background: var(--white); padding: 26px; }
.book-card .muted { margin: 0; }
.price { font-family: var(--display); font-size: 2.8rem; line-height: 1; color: var(--charcoal); margin: 4px 0; }
.price-text { font-family: var(--display); font-size: 1.9rem; line-height: 1.1; color: var(--charcoal); margin: 4px 0 8px; }
.meta-list { list-style: none; margin: 20px 0; padding: 18px 0 0; border-top: 1px solid var(--hairline); }
.meta-list li { display: flex; gap: 12px; align-items: flex-start; padding: 6px 0; font-size: .95rem; }
.meta-list .i { margin-top: 3px; color: var(--charcoal); }
.book-card .btn + .btn { margin-top: 10px; }
.book-card .small { margin: 14px 0 0; }
.protect-card { background: var(--stone); padding: 20px 22px; text-align: center; }
.protect-card .label { font-size: .85rem; }
.protect-logos { display: flex; justify-content: center; gap: 18px; margin: 10px 0; }
.protect-logos img { height: 46px; width: auto; }
.protect-card .small { display: inline-flex; gap: 6px; align-items: center; margin: 0; color: var(--slate); }
@media (max-width: 980px) {
  .t-layout { grid-template-columns: 1fr; }
  .t-side { position: static; order: -1; }
}

.panel { background: var(--stone); border-left: var(--rule) solid var(--gold); padding: 24px 28px; }
.panel p:last-child { margin-bottom: 0; }

.t-main .legends { grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); margin-top: 24px; }
.legend-img { aspect-ratio: 1; overflow: hidden; margin-bottom: 14px; background: var(--stone); }
.legend-img img { width: 100%; height: 100%; object-fit: cover; }
.t-main .gallery { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 760px) { .t-main .gallery { grid-template-columns: repeat(2, 1fr); } }

/* Included / not included */
.incl-head { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 14px; margin-bottom: 16px; }
.incl-head h2, .incl-head h3 { margin: 0; }
.incl-sub { margin: 36px 0 16px; }
.who-switch { display: inline-flex; border: 1px solid var(--hairline); }
.who-switch button { font: inherit; font-size: .88rem; background: var(--white); color: var(--charcoal); border: 0; padding: 8px 14px; cursor: pointer; }
.who-switch button + button { border-left: 1px solid var(--hairline); }
.who-switch button[aria-pressed="true"] { background: var(--charcoal); color: var(--white); box-shadow: inset 0 -3px 0 var(--gold); }
.incl-list { list-style: none; margin: 0; padding: 18px 24px; background: var(--stone); display: grid; grid-template-columns: 1fr 1fr; gap: 2px 28px; }
.incl-list li { display: flex; gap: 10px; align-items: flex-start; padding: 8px 0; font-size: .96rem; }
.incl-list .i { margin-top: 3px; color: var(--charcoal); }
.incl-list.out li { color: var(--slate); }
.incl-list.out .i { color: var(--slate); }
.incl-list li.is-hidden { display: none; }
@media (max-width: 700px) { .incl-list { grid-template-columns: 1fr; } }

/* Hotels */
.stay-img { margin: 8px 0 20px; }
.stay-img img { width: 100%; aspect-ratio: 16 / 8; object-fit: cover; }
.hotels { display: grid; gap: 14px; margin-top: 24px; }
.hotel { display: grid; grid-template-columns: 180px 1fr; gap: 20px; border: 1px solid var(--hairline); padding: 18px; }
.hotel:not(:has(.hotel-img)) { grid-template-columns: 1fr; border-left: var(--rule) solid var(--gold); }
.hotel-img img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.hotel h3 { margin: 0 0 4px; font-size: 1.45rem; }
.hotel-meta { color: var(--slate); font-size: .9rem; margin-bottom: 8px; }
.hotel p:last-child { margin-bottom: 0; }
@media (max-width: 600px) { .hotel { grid-template-columns: 1fr; } }

.months .none span { background: var(--white); }

/* Full itinerary call-out */
.itin-cta { background: var(--charcoal); color: var(--hairline); padding: clamp(32px, 5vw, 56px); text-align: center; border-top: var(--rule) solid var(--gold); }
.itin-cta h2 { color: var(--white); margin-bottom: .3em; }
.itin-cta p { margin: 0 auto 24px; }

/* Itinerary page */
.itin-top { background: var(--stone); border-bottom: 1px solid var(--hairline); }
.itin-top .crumbs ol { padding: 16px 0 6px; }
.itin-title { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: 6px 24px; padding-bottom: 18px; }
.itin-title h1 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin: 0; }
.itin-title h1 .label { display: block; margin: 0 0 2px; font-size: .85rem; }
.itin-title p { margin: 0; color: var(--slate); font-size: .95rem; }

.daybar { position: sticky; top: var(--header-h); z-index: 40; background: var(--white); border-bottom: 1px solid var(--hairline); }
.daybar-in { display: flex; gap: 4px; overflow-x: auto; padding: 0 var(--gutter); scrollbar-width: none; max-width: 100%; }
.daybar-in::-webkit-scrollbar { display: none; }
.daybar a { flex: none; display: block; padding: 14px 12px 12px; font-size: .92rem; text-decoration: none; color: var(--slate); border-bottom: 2px solid transparent; white-space: nowrap; }
.daybar a:hover { color: var(--charcoal); }
.daybar a.active { color: var(--charcoal); border-bottom-color: var(--gold); }

.draft-wrap { padding-top: 24px; }
.day { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); scroll-margin-top: calc(var(--header-h) + var(--daybar-h)); border-bottom: 1px solid var(--hairline); }
.day-photo { position: sticky; top: calc(var(--header-h) + var(--daybar-h)); height: calc(100vh - var(--header-h) - var(--daybar-h)); min-height: 380px; overflow: hidden; background: var(--charcoal); align-self: start; }
.day-photo img { width: 100%; height: 100%; object-fit: cover; }
.day-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(42,41,43,.85) 0%, rgba(42,41,43,.1) 55%); }
.day-cap { position: absolute; left: clamp(20px, 3vw, 40px); right: 20px; bottom: clamp(22px, 3vw, 40px); z-index: 1; color: var(--hairline); border-left: var(--rule) solid var(--gold); padding-left: 18px; }
.day-cap .dn { display: block; font-family: var(--display); font-size: clamp(2.6rem, 4.5vw, 4rem); line-height: 1; color: var(--white); font-variant-numeric: lining-nums; }
.day-cap .dn-sm { font-size: clamp(1.8rem, 3vw, 2.6rem); }
.day-cap span:not(.dn) { display: block; margin-top: 8px; font-size: 1rem; }
.day-body { padding: clamp(40px, 5vw, 72px) clamp(24px, 4vw, 64px) clamp(48px, 6vw, 88px); max-width: 720px; min-height: 60vh; }
.day-body h2 { font-size: clamp(2rem, 3vw, 2.6rem); margin-bottom: 28px; }

.timeline { list-style: none; margin: 0; padding: 0; position: relative; }
.timeline::before { content: ""; position: absolute; left: 19px; top: 20px; bottom: 20px; width: 1px; background: var(--hairline); }
.timeline li { position: relative; display: grid; grid-template-columns: 40px 1fr; gap: 18px; padding: 0 0 26px; }
.timeline li + li > div { border-top: 1px solid var(--hairline); padding-top: 18px; }
.timeline li + li .ico { margin-top: 18px; }
.ico { width: 40px; height: 40px; display: grid; place-items: center; background: var(--stone); color: var(--charcoal); position: relative; z-index: 1; }
.t-match .ico { background: var(--charcoal); color: var(--white); box-shadow: inset 0 -3px 0 var(--gold); }
.timeline h3 { font-family: var(--body); font-size: 1.02rem; font-weight: 600; line-height: 1.4; margin: 8px 0 6px; color: var(--ink); display: flex; flex-wrap: wrap; align-items: center; gap: 6px 12px; }
.time { font-family: var(--body); font-weight: 500; font-size: .78rem; letter-spacing: .03em; padding: 2px 9px; border: 1px solid var(--hairline); color: var(--slate); background: var(--white); }
.timeline p { margin: 0 0 6px; font-size: .96rem; }
.loc { display: flex; gap: 6px; align-items: center; color: var(--slate); font-size: .88rem !important; }

.incl-day .incl-list { grid-template-columns: 1fr; }
.incl-day .btn-row { margin-top: 36px; }

@media (max-width: 900px) {
  .day { grid-template-columns: 1fr; }
  .day-photo { position: relative; top: 0; height: 46vw; min-height: 220px; }
  .day-body { min-height: 0; }
}
@media (max-width: 1180px) { :root { --header-h: 77px; } }


/* =====================================================================
   Build v4: brand book v2 alignment
   ===================================================================== */
h1, h2, h3 { font-weight: 600; }
p a, li a, address a, .note a { text-decoration-color: var(--gold); text-decoration-thickness: 2px; text-underline-offset: 4px; }
.site-footer a, .topbar a, .nav a, .crumbs a, .subnav a, .daybar a, .contact-list a { text-decoration-thickness: auto; }

/* Strapline: Cormorant SemiBold capitals, gold square separators, never gold text */
.strap { font-family: var(--display); font-weight: 600; text-transform: uppercase; letter-spacing: .22em; display: inline-flex; align-items: center; gap: .9em; margin: 0 0 22px; white-space: nowrap; color: var(--charcoal); max-width: none; }
.strap i { display: inline-block; width: .32em; height: .32em; background: var(--gold); font-style: normal; flex: none; }
.strap.rev { color: var(--white); }
.strap.sm { font-size: 15px; }
.strap.md { font-size: 20px; }
@media (max-width: 620px) { .strap.md { font-size: 16px; letter-spacing: .16em; } }
.site-footer .strap { margin: 51px 0 0; font-size: 13px; letter-spacing: .18em; }  /* 2x clear space: 17% of 150px logo, doubled */
.itin-top .strap { margin: 4px 0 0; float: right; }
@media (max-width: 700px) { .itin-top .strap { display: none; } }
.t-hero .strap { margin-bottom: 18px; }

/* Buttons: brand book v2, gold rule draws in along the base */
.btn { position: relative; border: 1px solid var(--charcoal); border-left: 1px solid var(--charcoal); padding: 14px 26px; }
.btn::after { content: ""; position: absolute; left: -1px; right: -1px; bottom: -1px; height: var(--rule); background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .25s ease; }
.btn:hover::after, .btn:focus-visible::after { transform: scaleX(1); }
.btn:hover { background: var(--charcoal); }
.btn.light { background: var(--white); color: var(--charcoal); border-color: var(--white); }
.btn.light:hover { background: var(--white); }
.btn.line { background: transparent; color: var(--charcoal); border: 1px solid var(--charcoal); }
.btn.line:hover { background: transparent; }
.dark .btn.line, .hero .btn.line, .itin-cta .btn.line { color: var(--white); border-color: var(--white); }
.dark .btn.line:hover, .hero .btn.line:hover { background: transparent; }
.nav .btn { border-left: 1px solid var(--charcoal); padding: 11px 18px; }

/* Home hero */
.home-hero .hero-media img { object-position: 60% 35%; }
.home-hero .hero-media::after { background: linear-gradient(90deg, rgba(42,41,43,.8) 0%, rgba(42,41,43,.66) 50%, rgba(42,41,43,.58) 100%); }
.home-hero .lockup h1 { max-width: 14ch; }
.hero-sub { font-family: var(--display); font-weight: 500; font-size: clamp(1.35rem, 2.2vw, 1.75rem) !important; line-height: 1.3; color: var(--white) !important; max-width: 30ch !important; }

/* Play / Tour / Experience pillars */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px, 4vw, 56px); margin-top: 40px; }
.pillars article { border-top: var(--rule) solid var(--gold); padding-top: 22px; }
.pillar { font-size: 1.7rem; text-transform: uppercase; letter-spacing: .18em; margin-bottom: 8px; }
.pillars .ticks li { font-size: .98rem; }
@media (max-width: 860px) { .pillars { grid-template-columns: 1fr; } }

.home-hero + .section h2, .section h2 { text-wrap: balance; }
.steps h3 { font-size: 1.45rem; }
@media (max-width: 620px) {
  .topbar .wrap { justify-content: space-between; gap: 12px; }
  .topbar a[href^="mailto"] { display: none; }
}


/* =====================================================================
   Build v5: the fifth, bespoke block
   ===================================================================== */
.dest.bespoke { grid-column: 1 / -1 !important; display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); background: var(--charcoal); color: var(--hairline); }
.dest.bespoke .frame { aspect-ratio: auto; min-height: 320px; }
.dest.bespoke .meta { padding: clamp(24px, 3vw, 40px); align-self: center; }
.dest.bespoke h3 { color: var(--white); }
.dest.bespoke p, .dest.bespoke .label { color: var(--hairline); }
.dest.bespoke .dmc { margin-top: 12px; font-size: .95rem; }
.dest.bespoke .go { color: var(--white); }
@media (max-width: 760px) { .dest.bespoke { grid-template-columns: 1fr; } .dest.bespoke .frame { min-height: 0; aspect-ratio: 16 / 10; } }

.tcard.bespoke { grid-column: 1 / -1; flex-direction: row; background: var(--charcoal); border-color: var(--charcoal); color: var(--hairline); }
.tcard.bespoke .tcard-img { flex: 1 1 55%; aspect-ratio: auto; min-height: 300px; }
.tcard.bespoke .tcard-body { flex: 1 1 45%; border-top: 0; border-left: var(--rule) solid var(--gold); }
.tcard.bespoke h2, .tcard.bespoke h2 a { color: var(--white); }
.tcard.bespoke .label, .tcard.bespoke .tcard-foot { color: var(--hairline); }
.tcard.bespoke .tcard-foot { border-top-color: rgba(255,255,255,.18); }
.tcard.bespoke .tcard-foot .go { color: var(--white); }
@media (max-width: 760px) { .tcard.bespoke { flex-direction: column; } .tcard.bespoke .tcard-img { aspect-ratio: 16 / 9; min-height: 0; } .tcard.bespoke .tcard-body { border-left: 0; border-top: var(--rule) solid var(--gold); } }

.where-more { margin: 18px 0 0; }
.where-more a { font-family: var(--display); font-size: 1.25rem; color: var(--white); text-decoration: underline; text-decoration-color: var(--gold); text-decoration-thickness: 2px; text-underline-offset: 6px; }

.pillars.four { grid-template-columns: repeat(4, 1fr); }
.pillars.four h3 { font-size: 1.4rem; }
.pillars.four p { font-size: .98rem; margin: 0; }
@media (max-width: 1000px) { .pillars.four { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .pillars.four { grid-template-columns: 1fr; } }
.featured-list .muted { display: block; font-size: .92rem; }
.featured-list a { font-family: var(--display); font-size: 1.35rem; font-weight: 600; }
.dest.bespoke .frame, .tcard.bespoke .tcard-img { position: relative; }
.dest.bespoke .frame img, .tcard.bespoke .tcard-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 760px) { .dest.bespoke .frame img, .tcard.bespoke .tcard-img img { position: static; } }
.page-head .strap { margin: 0 0 20px; }


/* =====================================================================
   Build v6: Why us
   ===================================================================== */
.people { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 4vw, 56px); }
.person { background: var(--white); border-top: var(--rule) solid var(--gold); padding: 28px 30px 20px; }
.person h3 { font-size: 2.1rem; margin: 0 0 12px; }
.person .label { margin-bottom: 4px; }
.people + .draft-note { margin-top: 28px; }
@media (max-width: 760px) { .people { grid-template-columns: 1fr; } }

.story { list-style: none; margin: 36px 0 0; padding: 0; }
.story li { display: grid; grid-template-columns: 160px var(--rule) 1fr; column-gap: 28px; }
.story li::after { content: none; }
.story .yr { font-family: var(--display); font-weight: 600; font-size: 2.6rem; line-height: 1; color: var(--charcoal); padding: 22px 0; font-variant-numeric: lining-nums; }
.story li > div { grid-column: 3; padding: 26px 0; border-bottom: 1px solid var(--hairline); }
.story li { background: linear-gradient(var(--gold), var(--gold)) 188px 0 / var(--rule) 100% no-repeat; }
.story h3 { margin: 0 0 4px; font-size: 1.5rem; }
.story p { margin: 0; }
@media (max-width: 600px) {
  .story li { grid-template-columns: 1fr; background: none; border-left: var(--rule) solid var(--gold); padding-left: 18px; }
  .story li > div { grid-column: 1; padding-top: 4px; }
  .story .yr { padding: 18px 0 0; font-size: 2rem; }
}

.protect-grid { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: clamp(32px, 6vw, 88px); align-items: center; }
.protect-band .lede { color: var(--white); }
.protect-band p { color: var(--hairline); }
.protect-marks { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.protect-marks figure { margin: 0; background: var(--white); padding: 24px 18px 18px; text-align: center; border-bottom: var(--rule) solid var(--gold); }
.protect-marks img { width: 110px; height: auto; margin: 0 auto 14px; }
.protect-marks figcaption { font-family: var(--display); font-weight: 600; font-size: 1.15rem; line-height: 1.3; color: var(--charcoal); }
.protect-band .draft-note { margin-top: 32px; }
@media (max-width: 860px) { .protect-grid { grid-template-columns: 1fr; } }
.accredit p strong { color: var(--charcoal); font-weight: 600; }


/* =====================================================================
   Build v7: Why us, the cricket and the experience
   ===================================================================== */
.duo { display: grid; grid-template-columns: 1fr 1fr; }
.duo-col { display: flex; flex-direction: column; }
.duo-img { aspect-ratio: 16 / 9; overflow: hidden; background: var(--stone); }
.duo-img img { width: 100%; height: 100%; object-fit: cover; }
.duo-body { padding: clamp(36px, 5vw, 72px) clamp(24px, 5vw, 72px) clamp(40px, 6vw, 80px); flex: 1; border-top: var(--rule) solid var(--gold); }
.duo-col.cricket .duo-body { background: var(--white); }
.duo-col.experience .duo-body { background: var(--charcoal); color: var(--hairline); }
.duo-col.experience h2, .duo-col.experience h3 { color: var(--white); }
.duo-col.experience .label { color: var(--hairline); }
.duo-col.experience .lede { color: var(--white); }
.duo-col.experience .ticks li { border-bottom-color: rgba(255,255,255,.18); }
.duo-col.experience .ticks li::before { background: var(--gold); }
.duo-list { margin: 28px 0 24px; }
.duo-list dt { font-family: var(--display); font-weight: 600; font-size: 1.45rem; color: var(--charcoal); padding-top: 18px; border-top: 1px solid var(--hairline); }
.duo-list dt:first-child { border-top: 0; padding-top: 0; }
.duo-list dd { margin: 4px 0 18px; }
.giving { margin-top: 32px; background: var(--ink); border-left: var(--rule) solid var(--gold); padding: 24px 26px 10px; }
.giving h3 { font-size: 1.8rem; margin-bottom: 6px; }
.giving p { color: var(--white); }
.giving b { color: var(--white); font-weight: 600; }
.duo-note { padding-top: 28px; }
@media (max-width: 900px) { .duo { grid-template-columns: 1fr; } }

.quote-placeholder blockquote p { color: var(--slate); font-style: italic; }


/* Build v9: profile photos and LinkedIn links */
.person { display: grid; grid-template-columns: 150px 1fr; gap: 26px; align-items: start; }
.person-photo { width: 150px; aspect-ratio: 1; background: var(--charcoal); display: grid; place-items: center; overflow: hidden; border-bottom: var(--rule) solid var(--gold); }
.person-photo img { width: 100%; height: 100%; object-fit: cover; }
.initials { font-family: var(--display); font-weight: 600; font-size: 3.4rem; letter-spacing: .06em; color: var(--white); }
.person-link { margin: 16px 0 0; }
.person-link a { display: inline-flex; align-items: center; gap: 8px; font-weight: 500; }
@media (max-width: 1000px) and (min-width: 761px) { .person { grid-template-columns: 1fr; } }
@media (max-width: 460px) { .person { grid-template-columns: 1fr; } }


/* =====================================================================
   Build v10: trio, personal contact
   ===================================================================== */
.trio { display: grid; grid-template-columns: repeat(3, 1fr); }
.trio-col { display: flex; flex-direction: column; }
.trio-img { aspect-ratio: 4 / 3; overflow: hidden; background: var(--stone); }
.trio-img img { width: 100%; height: 100%; object-fit: cover; }
.trio-body { flex: 1; padding: clamp(32px, 4vw, 56px) clamp(22px, 3vw, 44px) clamp(40px, 5vw, 64px); border-top: var(--rule) solid var(--gold); }
.trio-body h2 { font-size: clamp(1.9rem, 2.6vw, 2.4rem); }
.trio-col.play .trio-body { background: var(--white); }
.trio-col.tour .trio-body { background: var(--stone); }
.trio-col.experience .trio-body { background: var(--charcoal); color: var(--hairline); }
.trio-col.experience h2, .trio-col.experience b { color: var(--white); }
.trio-col.experience .label { color: var(--hairline); }
.trio-col.experience .lede { color: var(--white); }
.trio-col.experience .ticks li { border-bottom-color: rgba(255,255,255,.18); }
.trio-col.experience .ticks li::before { background: var(--gold); }
.trio-col.experience a { color: var(--white); }
.trio .lede { font-size: 1.05rem; }
@media (max-width: 980px) { .trio { grid-template-columns: 1fr; } .trio-img { aspect-ratio: 16 / 7; } }

.contact-grid { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); gap: clamp(36px, 6vw, 88px); align-items: start; }
.contact-me { position: sticky; top: calc(var(--header-h) + 24px); }
.me-card { display: grid; grid-template-columns: 160px 1fr; gap: 24px; align-items: center; margin-bottom: 28px; }
.me-photo { width: 160px; aspect-ratio: 1; background: var(--charcoal); display: grid; place-items: center; overflow: hidden; border-bottom: var(--rule) solid var(--gold); }
.me-photo img { width: 100%; height: 100%; object-fit: cover; }
.me-card h2 { margin: 0 0 4px; font-size: 2.3rem; }
.me-card .muted { margin: 0; }
.me-actions { display: grid; gap: 10px; margin: 28px 0 16px; max-width: 420px; }
.me-actions .btn { display: flex; align-items: center; gap: 12px; }
.contact-form { background: var(--stone); padding: clamp(24px, 4vw, 44px); border-top: var(--rule) solid var(--gold); }
.contact-form .form input, .contact-form .form select, .contact-form .form textarea, .contact-form .choices label { background: var(--white); }
@media (max-width: 980px) { .contact-grid { grid-template-columns: 1fr; } .contact-me { position: static; } }
@media (max-width: 460px) { .me-card { grid-template-columns: 110px 1fr; } .me-photo { width: 110px; } .initials { font-size: 2.6rem; } }


/* Build v15: the rest of the team */
.team-head { margin: 48px 0 18px; font-size: 1.9rem; }
.team { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 3vw, 32px); }
.mate { background: var(--white); border-top: var(--rule) solid var(--gold); padding: 22px 22px 18px; }
.mate-photo { width: 96px; aspect-ratio: 1; background: var(--charcoal); display: grid; place-items: center; overflow: hidden; margin-bottom: 16px; }
.mate-photo img { width: 100%; height: 100%; object-fit: cover; }
.initials.sm { font-size: 2.1rem; }
.mate h3 { font-size: 1.6rem; margin: 0 0 8px; }
.mate .label { margin-bottom: 2px; font-size: .85rem; }
.mate p:last-child { margin: 0; font-size: .95rem; }
.team + .draft-note { margin-top: 28px; }
@media (max-width: 900px) { .team { grid-template-columns: 1fr; } .mate { display: grid; grid-template-columns: 96px 1fr; column-gap: 18px; } .mate-photo { grid-row: span 3; margin: 0; } }
@media (max-width: 460px) { .mate { grid-template-columns: 64px 1fr; padding: 18px 16px; } .mate-photo { width: 64px; } .initials.sm { font-size: 1.5rem; } }

/* Build v19: one team heading above all cards */
.team-title { margin: 0 0 24px; }
.people + .team { margin-top: clamp(16px, 3vw, 32px); }
.hero-sub span { display: block; }
.hero-sub { max-width: 44ch !important; }

/* Build v22: enquiries on the Contact page */
#enquire { scroll-margin-top: calc(var(--header-h) + 20px); }
.next-steps { border-left: var(--rule) solid var(--gold); background: var(--white); padding: 14px 18px; margin: 0 0 24px; }
.next-steps .label { margin-bottom: 4px; }
.next-steps p:last-child { margin: 0; font-size: .95rem; }

/* Build v23: Global Cricket Series bar (all-white GCS logo on TCA ink, palettes kept apart) */
.gcs-bar { background: var(--ink); border-top: var(--rule) solid var(--gold); }
.gcs-bar-in { display: flex; align-items: center; gap: clamp(16px, 3vw, 32px); padding-top: 18px; padding-bottom: 18px; text-decoration: none; color: var(--white); }
.gcs-bar img { width: 116px; height: auto; flex: none; }
.gcs-text { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.gcs-main { font-family: var(--display); font-weight: 600; font-size: clamp(1.2rem, 2vw, 1.5rem); line-height: 1.25; }
.gcs-line { font-size: .9rem; color: var(--hairline); }
.gcs-cta { flex: none; display: inline-flex; align-items: center; gap: 8px; font-size: .92rem; font-weight: 500; padding: 9px 16px; border: 1px solid var(--white); position: relative; }
.gcs-cta::after { content: ""; position: absolute; left: -1px; right: -1px; bottom: -1px; height: var(--rule); background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .25s ease; }
.gcs-bar-in:hover .gcs-cta::after, .gcs-bar-in:focus-visible .gcs-cta::after { transform: scaleX(1); }
.gcs-bar-in:hover .gcs-main { text-decoration: underline; text-decoration-color: var(--gold); text-decoration-thickness: 2px; text-underline-offset: 5px; }
.gcs-bar + .accredit, main + .accredit { border-top: 0; }
@media (max-width: 700px) {
  .gcs-bar-in { flex-direction: column; align-items: flex-start; gap: 12px; }
  .gcs-bar img { width: 104px; }
  .gcs-line { display: none; }
}

/* =====================================================================
   Build v24: layout from the TCA Tours site, in TCA Sports Tours brand
   ===================================================================== */

/* Plane flying the arc under a heading word */
.arcword { position: relative; display: inline-block; font-style: normal; }
.arcword .track-svg { position: absolute; left: -2%; bottom: -0.16em; width: 104%; height: .3em; overflow: visible; }
.arcword .track { fill: none; stroke: var(--gold); stroke-width: 7; stroke-linecap: round; stroke-dasharray: 420; stroke-dashoffset: 420; }
.arcword .plane { position: absolute; bottom: -0.30em; left: 0; width: .30em; height: .30em; opacity: 0; }
.arcword .plane svg { width: 100%; height: 100%; display: block; fill: var(--gold); }
.arcword.go .track { animation: draw 1.9s cubic-bezier(.45,.05,.3,1) .3s forwards; }
.arcword.go .plane { animation: fly 1.9s cubic-bezier(.45,.05,.3,1) .3s forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }
@keyframes fly {
  0%   { left: 0;    opacity: 0; transform: translate(-50%, .06em) rotate(-14deg); }
  8%   { opacity: 1; }
  50%  { transform: translate(-50%, -.10em) rotate(-2deg); }
  100% { left: 100%; opacity: 1; transform: translate(-50%, .04em) rotate(9deg); }
}
@media (prefers-reduced-motion: reduce) {
  .arcword .track { stroke-dashoffset: 0; animation: none !important; }
  .arcword .plane { opacity: 1; left: 100%; transform: translate(-50%, .04em); animation: none !important; }
}

/* Home hero: one column, destinations sit underneath */
.home-hero { min-height: min(92vh, 860px); display: flex; align-items: center; }
.home-hero .hero-media::after { background: linear-gradient(100deg, rgba(42,41,43,.9) 0%, rgba(42,41,43,.7) 50%, rgba(42,41,43,.35) 100%); }
.home-hero .hero-media img { object-position: 62% 35%; }
.hero-inner { position: relative; z-index: 1; width: 100%; padding-top: clamp(64px, 9vw, 120px); padding-bottom: clamp(40px, 6vw, 72px); }
.home-hero h1 { color: var(--white); font-size: clamp(3rem, 6.2vw, 5.4rem); max-width: 14ch; margin-bottom: .35em; }
.home-hero .hero-sub { margin-bottom: 0; }
.home-hero .btn-row { margin-top: 30px; }
.dest-tabs-wrap { margin-top: clamp(36px, 5vw, 56px); padding-top: 22px; border-top: 1px solid rgba(255,255,255,.22); max-width: 760px; }
.dest-tabs-wrap .label { color: var(--hairline); margin-bottom: 12px; font-size: .85rem; }
.dest-tabs { display: flex; flex-wrap: wrap; gap: 10px 0; }
.dest-tabs a { font-family: var(--display); font-weight: 600; font-size: 1.05rem; letter-spacing: .14em; text-transform: uppercase; color: var(--white); text-decoration: none; padding: 4px 22px 4px 12px; border-left: 2px solid var(--gold); transition: color .15s, border-color .15s; }
.dest-tabs a:hover { color: var(--gold-text, #fff); border-left-color: var(--white); text-decoration: underline; text-decoration-color: var(--gold); text-underline-offset: 5px; }
.dest-tabs .bespoke-tab { font-style: normal; color: var(--hairline); }
.scroll-cue { display: inline-flex; align-items: center; gap: 10px; margin-top: 28px; color: var(--hairline); font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; text-decoration: none; font-weight: 500; }
.scroll-cue::after { content: ""; width: 9px; height: 9px; border-right: 2px solid var(--gold); border-bottom: 2px solid var(--gold); transform: rotate(45deg); animation: nudge 1.8s ease-in-out infinite; }
@keyframes nudge { 0%, 100% { transform: rotate(45deg) translate(0, 0); } 50% { transform: rotate(45deg) translate(3px, 3px); } }
@media (max-width: 620px) { .dest-tabs a { font-size: .92rem; padding-right: 16px; } }

/* Intro broken into a lead and three columns */
.intro-top { max-width: 820px; }
.intro-top h2 { font-size: clamp(2.2rem, 4vw, 3.3rem); margin-bottom: .55em; }
.intro-top .lede { font-size: 1.28rem; }
.intro-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(22px, 4vw, 48px); margin-top: clamp(32px, 5vw, 52px); }
.intro-col { border-top: var(--rule) solid var(--gold); padding-top: 18px; }
.intro-col p { margin: 0; }
@media (max-width: 860px) { .intro-cols { grid-template-columns: 1fr; } }

/* Photo hero on every page, title on the left */
.page-hero { position: relative; overflow: hidden; background: var(--charcoal); color: var(--white); min-height: min(58vh, 520px); display: flex; align-items: flex-end; }
.page-hero.tall { min-height: min(70vh, 640px); }
.page-hero .hero-media { position: absolute; inset: 0; }
.page-hero .hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.page-hero .hero-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(100deg, rgba(42,41,43,.9) 0%, rgba(42,41,43,.66) 52%, rgba(42,41,43,.3) 100%); }
.page-hero .wrap { position: relative; z-index: 1; width: 100%; }
.page-hero-in { display: grid; grid-template-columns: var(--rule) minmax(0, 780px); column-gap: 26px; padding-top: clamp(96px, 12vw, 160px); padding-bottom: clamp(44px, 6vw, 76px); }
.page-hero-in .rule { background: var(--gold); }
.page-hero h1 { color: var(--white); font-size: clamp(2.6rem, 5.4vw, 4.6rem); margin: 0 0 .2em; }
.page-hero .label { color: var(--hairline); }
.hero-lede { color: var(--hairline); font-size: 1.15rem; margin: 10px 0 0; max-width: 58ch; }
.page-hero .strap { margin: 0 0 18px; }
@media (max-width: 860px) {
  .page-hero .hero-media::after { background: linear-gradient(to top, rgba(42,41,43,.92) 25%, rgba(42,41,43,.55) 100%); }
}

/* Numbered steps that light up as you scroll */
.vsteps { list-style: none; margin: 0; padding: 0; position: relative; max-width: 760px; }
.vsteps::before { content: ""; position: absolute; left: 23px; top: 18px; bottom: 18px; width: 2px; background: var(--hairline); }
.vprogress { position: absolute; left: 23px; top: 18px; width: 2px; height: 0; background: var(--gold); transition: height .3s ease; }
.vstep { position: relative; padding: 0 0 40px 78px; cursor: default; }
.vstep:last-child { padding-bottom: 0; }
.vnum { position: absolute; left: 0; top: -4px; width: 48px; height: 48px; border-radius: 50% !important; display: grid; place-items: center; background: var(--white); box-shadow: inset 0 0 0 1px var(--charcoal); font-family: var(--display); font-weight: 600; font-size: 22px; color: var(--charcoal); font-variant-numeric: lining-nums; transition: background .25s, box-shadow .25s; }
.stone .vnum { background: var(--stone); }
.vstep h3 { font-size: clamp(1.45rem, 2.4vw, 1.9rem); margin: 0 0 8px; transition: color .25s; }
.vstep p { margin: 0; color: var(--slate); }
.vstep:not(.active) h3 { color: var(--slate); }
.vstep.active h3 { color: var(--charcoal); }
.vstep.active .vnum { background: var(--gold); box-shadow: none; }
.no-js .vstep h3 { color: var(--charcoal); }
@media (max-width: 600px) { .vstep { padding-left: 62px; } .vnum { width: 40px; height: 40px; font-size: 19px; } .vsteps::before, .vprogress { left: 19px; } }

.sticky-col { position: sticky; top: calc(var(--header-h) + 32px); }
@media (max-width: 860px) { .sticky-col { position: static; } }
.team-intro { margin-bottom: clamp(28px, 4vw, 44px); }
.team-intro h2 { margin-bottom: 0; }
.home-hero { min-height: calc(100vh - 121px); }
.home-hero h1 { font-size: clamp(2.9rem, 5.4vw, 4.7rem); }
.hero-inner { padding-top: clamp(40px, 6vw, 80px); padding-bottom: clamp(28px, 4vw, 48px); }
.home-hero .strap { margin-bottom: 16px; }
.dest-tabs-wrap { margin-top: clamp(28px, 4vw, 44px); padding-top: 18px; }
.scroll-cue { margin-top: 20px; }

/* =====================================================================
   Build v25: key points, tournaments page
   ===================================================================== */
.kpoints { list-style: none; margin: clamp(32px, 5vw, 52px) 0 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(22px, 4vw, 48px); counter-reset: none; }
.kpoint { border-top: 1px solid var(--hairline); padding-top: 26px; position: relative; }
.kpoint::before { content: ""; position: absolute; left: 0; top: -1px; height: var(--rule); width: 0; background: var(--gold); transition: width .6s ease; }
.knum { width: 48px; height: 48px; border-radius: 50% !important; display: grid; place-items: center; background: transparent; box-shadow: inset 0 0 0 1px var(--charcoal); font-family: var(--display); font-weight: 600; font-size: 22px; color: var(--charcoal); margin-bottom: 16px; font-variant-numeric: lining-nums; transition: background .3s, box-shadow .3s; }
.kpoint h3 { font-size: 1.55rem; margin: 0 0 8px; }
.kpoint p { margin: 0; }
.kpoints.lit .kpoint::before { width: 100%; }
.kpoints.lit .knum { background: var(--gold); box-shadow: none; }
.kpoints.lit .kpoint:nth-child(2)::before, .kpoints.lit .kpoint:nth-child(2) .knum { transition-delay: .25s; }
.kpoints.lit .kpoint:nth-child(3)::before, .kpoints.lit .kpoint:nth-child(3) .knum { transition-delay: .5s; }
.intro-top + .kpoints { margin-top: clamp(28px, 4vw, 44px); }
@media (max-width: 860px) { .kpoints { grid-template-columns: 1fr; } }
@media (prefers-reduced-motion: reduce) { .kpoints .knum { background: var(--gold); box-shadow: none; } .kpoint::before { width: 100%; } }

.gcs-mark { width: 180px; height: auto; margin-bottom: 22px; }

.stats-band h2 { margin-bottom: 28px; }
.stats { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(6, 1fr); gap: 0; border-top: 1px solid rgba(255,255,255,.18); }
.stats li { padding: 26px 18px 22px 0; border-bottom: 1px solid rgba(255,255,255,.18); }
.stat { display: block; font-family: var(--display); font-weight: 600; font-size: clamp(2.4rem, 4.4vw, 3.8rem); line-height: 1; color: var(--white); border-left: var(--rule) solid var(--gold); padding-left: 14px; font-variant-numeric: lining-nums tabular-nums; }
.stat-label { display: block; margin-top: 10px; padding-left: 17px; color: var(--hairline); font-size: .92rem; }
.stats-source { margin-top: 18px; font-size: .85rem; color: #A9A8AA; }
.stats-more { margin-top: 26px; }
.stats-more p { color: var(--hairline); margin: 0; }
@media (max-width: 1000px) { .stats { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 520px) { .stats { grid-template-columns: repeat(2, 1fr); } }

.coverage { align-items: start; }
.coverage img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.lineup { margin-top: 28px; padding: 22px 24px 8px; background: var(--stone); border-left: var(--rule) solid var(--gold); }
.lineup h3 { margin-bottom: 4px; }
.lineup .ticks { margin-bottom: 14px; }

.gcs-panel { background: var(--ink); color: var(--hairline); border-top: var(--rule) solid var(--gold); }
.gcs-panel-in { display: grid; grid-template-columns: 200px 1fr auto; gap: clamp(24px, 4vw, 56px); align-items: center; padding-top: clamp(48px, 7vw, 88px); padding-bottom: clamp(48px, 7vw, 88px); }
.gcs-panel img { width: 200px; height: auto; }
.gcs-panel h2 { color: var(--white); margin-bottom: .3em; }
.gcs-panel p { margin: 0; }
.gcs-panel .btn-row { margin: 0; flex-direction: column; align-items: stretch; }
.gcs-panel .btn { text-align: center; }
.gcs-panel .btn.line { color: var(--white); border-color: var(--white); }
@media (max-width: 900px) { .gcs-panel-in { grid-template-columns: 1fr; } .gcs-panel .btn-row { flex-direction: row; flex-wrap: wrap; } }

.nav a.btn[aria-current="page"] { box-shadow: inset 0 -3px 0 var(--gold); }

/* Build v27: Global Cricket Series gets its own button in the menu */
.nav .gcs-btn { background: var(--white); color: var(--charcoal); border: 1px solid var(--charcoal); display: inline-flex; align-items: center; gap: 8px; margin-left: 12px; }
.nav .gcs-btn:hover { background: var(--stone); }
.nav .gcs-btn img { width: 20px; height: 20px; object-fit: contain; }
.nav .gcs-btn + .btn { margin-left: 8px; }
.nav .gcs-btn[aria-current="page"] { box-shadow: inset 0 -3px 0 var(--gold); }
@media (max-width: 1180px) { .nav .gcs-btn { margin: 16px 0 0; justify-content: center; } .nav .gcs-btn + .btn { margin: 10px 0 0; } }
.nav a { white-space: nowrap; }
@media (min-width: 1181px) and (max-width: 1360px) {
  .nav a { padding-left: 9px; padding-right: 9px; font-size: .92rem; }
  .nav .btn { padding-left: 14px; padding-right: 14px; }
  .brand img { width: 190px; }
}

/* Build v28: delivered by TCA Sports Tours */
.delivered { border-left: var(--rule) solid var(--gold); background: var(--stone); padding: 14px 18px; margin: 18px 0 0; font-size: .95rem; }
.delivered .label { display: block; margin-bottom: 4px; color: var(--charcoal); }
@media (max-width: 700px) { .gcs-line { display: block; } }

/* Build v29: bespoke and Global Cricket Series cards sit side by side */
.tcard.bespoke, .tcard.gcs-card { grid-column: auto; flex-direction: column; background: var(--charcoal); border-color: var(--charcoal); color: var(--hairline); }
.tcard.bespoke .tcard-img, .tcard.gcs-card .tcard-img { flex: none; aspect-ratio: 16 / 9; min-height: 0; position: relative; }
.tcard.bespoke .tcard-img img { position: static; }
.tcard.bespoke .tcard-body, .tcard.gcs-card .tcard-body { flex: 1; border-left: 0; border-top: var(--rule) solid var(--gold); }
.tcard.gcs-card { background: var(--ink); border-color: var(--ink); }
.tcard.gcs-card .tcard-img::after { content: ""; position: absolute; inset: 0; background: rgba(42,41,43,.35); }
.tcard.gcs-card .gcs-card-logo { position: absolute; left: 20px; bottom: 16px; width: 150px !important; height: auto !important; z-index: 1; transform: none !important; }
.tcard.gcs-card h2, .tcard.gcs-card h2 a { color: var(--white); }
.tcard.gcs-card .label, .tcard.gcs-card .tcard-foot { color: var(--hairline); }
.tcard.gcs-card .tcard-foot { border-top-color: rgba(255,255,255,.18); }
.tcard.gcs-card .tcard-foot .go { color: var(--white); }
@media (max-width: 760px) { .tcard.bespoke .tcard-body { border-top: var(--rule) solid var(--gold); } }

/* Build v32: calmer menu, smaller buttons pushed to the right */
.site-header .wrap { gap: 16px; }
.nav { gap: 2px; }
.nav .btn, .nav .gcs-btn { padding: 8px 13px; font-size: .84rem; letter-spacing: .01em; line-height: 1.2; }
.nav .btn { margin-left: 18px; }
.nav .gcs-btn { margin-left: 6px; gap: 6px; }
.nav .gcs-btn img { width: 16px; height: 16px; }
.nav .gcs-btn + .btn, .nav .btn + .gcs-btn { margin-left: 6px; }
@media (max-width: 1180px) { .nav .btn, .nav .gcs-btn { margin: 12px 0 0; padding: 12px 16px; font-size: .92rem; } }
@media (max-width: 1180px) { .nav .btn + .gcs-btn, .nav .gcs-btn + .btn { margin-left: 0; margin-top: 10px; } }

/* Build v33: example itinerary note */
.example-note { background: var(--stone); border-bottom: 1px solid var(--hairline); }
.example-note-in { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr); gap: clamp(20px, 4vw, 56px); align-items: center; padding-top: 26px; padding-bottom: 26px; }
.example-note .label { margin-bottom: 2px; }
.example-note h2 { font-size: clamp(1.5rem, 2.4vw, 2rem); margin: 0 0 6px; }
.example-note p:last-child { margin: 0; }
.example-side { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 20px; justify-content: flex-end; }
.example-side ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 4px; }
.example-side li { display: flex; gap: 8px; align-items: center; font-weight: 500; color: var(--charcoal); }
.example-side .i { color: var(--charcoal); }
.example-foot { margin-top: 28px; font-size: .95rem; }
.itin-cta .label { color: var(--hairline); }
@media (max-width: 860px) { .example-note-in { grid-template-columns: 1fr; } .example-side { justify-content: flex-start; } }

/* Build v36: video card on destination pages */
.video-card { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr); background: var(--charcoal); color: var(--hairline); text-decoration: none; border-top: var(--rule) solid var(--gold); }
.video-thumb { position: relative; aspect-ratio: 16 / 9; overflow: hidden; background: var(--ink); display: block; }
.video-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.video-card:hover .video-thumb img { transform: scale(1.03); }
.play { position: absolute; left: 50%; top: 50%; width: 64px; height: 64px; transform: translate(-50%, -50%); border-radius: 50% !important; background: rgba(42,41,43,.82); border: 2px solid var(--gold); display: grid; place-items: center; }
.play svg { width: 26px; height: 26px; fill: var(--white); margin-left: 3px; }
.video-body { display: flex; flex-direction: column; justify-content: center; gap: 6px; padding: 22px 26px; }
.video-body .label { color: var(--hairline); margin: 0; }
.video-title { font-family: var(--display); font-weight: 600; font-size: 1.6rem; line-height: 1.15; color: var(--white); }
.video-text { font-size: .95rem; }
.video-body .go { margin-top: 8px; color: var(--white); text-decoration: underline; text-decoration-color: var(--gold); text-decoration-thickness: 2px; text-underline-offset: 4px; font-size: .92rem; }
@media (max-width: 700px) { .video-card { grid-template-columns: 1fr; } }

/* Build v37: optional extras */
.incl-list.extra { background: var(--white); border: 1px solid var(--hairline); border-left: var(--rule) solid var(--gold); }
.incl-list.extra small { display: block; color: var(--slate); font-size: .86rem; margin-top: 2px; }
.extras-intro { margin: -6px 0 14px; color: var(--slate); font-size: .95rem; }
.page-hero .hero-media img { object-position: center 28%; }

/* =====================================================================
   Build v42
   ===================================================================== */
/* 1) straight line and a real aeroplane */
.arcword .track-svg { bottom: -0.10em; height: .12em; }
.arcword .track { stroke-width: 2.5; stroke-linecap: square; stroke-dasharray: 300; stroke-dashoffset: 300; }
.arcword .plane { bottom: -0.21em; width: .34em; height: .34em; }
@keyframes fly {
  0%   { left: 0;    opacity: 0; transform: translate(-50%, 0); }
  6%   { opacity: 1; }
  100% { left: 100%; opacity: 1; transform: translate(-30%, 0); }
}
@media (prefers-reduced-motion: reduce) { .arcword .plane { transform: translate(-30%, 0); } }

/* 9) one hero height across the site, home included */
.page-hero, .page-hero.tall, .page-hero.home { min-height: min(60vh, 560px); }
.page-hero.home h1 { font-size: clamp(2.6rem, 5vw, 4.3rem); max-width: 16ch; }
.page-hero.home .hero-sub { margin-top: 14px; }
.page-hero.home .btn-row { margin-top: 24px; }
.page-hero-in { padding-top: clamp(80px, 10vw, 130px); }

.dest-strip { background: var(--ink); border-top: var(--rule) solid var(--gold); }
.dest-strip-in { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 28px; padding-top: 16px; padding-bottom: 16px; }
.dest-strip .label { color: var(--hairline); margin: 0; font-size: .85rem; }
.dest-strip .dest-tabs { gap: 8px 0; }

/* 11) four destination cards per row */
.tcards { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(16px, 2vw, 24px); }
.tcard-body { padding: 18px 18px 16px; }
.tcard h2 { font-size: 1.45rem; }
.tcard p { font-size: .92rem; }
.tcard-sub { font-size: .84rem; }
.tcard-foot { font-size: .8rem; flex-direction: column; align-items: flex-start; gap: 8px; }
.tcard-foot ul { gap: 4px 12px; }
.tcard.bespoke, .tcard.gcs-card { grid-column: span 2; }
@media (max-width: 1100px) { .tcards { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 640px) { .tcards { grid-template-columns: 1fr; } .tcard.bespoke, .tcard.gcs-card { grid-column: auto; } }

/* 13) How it works as a journey by stage */
.journey { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: var(--rule) solid var(--gold); }
.jstage { padding: 0 clamp(14px, 2vw, 28px); border-left: 1px solid var(--hairline); }
.jstage:first-child { border-left: 0; padding-left: 0; }
.jstage-name { font-family: var(--display); font-weight: 600; text-transform: uppercase; letter-spacing: .18em; color: var(--charcoal); margin: 18px 0 18px; font-size: 1.05rem; }
.jcards { list-style: none; margin: 0; padding: 0; display: grid; gap: 16px; }
.jcard { background: var(--stone); padding: 22px 22px 18px; }
.jnum { display: block; font-family: var(--display); font-weight: 600; font-size: 2.6rem; line-height: 1; color: var(--charcoal); margin-bottom: 10px; }
.jcard h3 { font-size: 1.4rem; margin: 0 0 6px; }
.jcard p { margin: 0; font-size: .96rem; }
.journey-link { margin-top: 28px; color: var(--slate); }
@media (max-width: 860px) { .journey { grid-template-columns: 1fr; } .jstage { border-left: 0; padding: 0; } }
.page-hero .btn.line { color: var(--white); border-color: var(--white); background: transparent; }
.arcword .plane { bottom: -0.30em; width: .5em; height: .5em; }
.dest-strip .dest-tabs a { font-size: .95rem; letter-spacing: .12em; padding-right: 18px; }

/* Build v44: pull quotes across the site */
.pq-sec { padding: clamp(40px, 6vw, 72px) 0; }
.pullquote { margin: 0 auto; max-width: 860px; text-align: center; }
.pullquote::before { content: ""; display: block; width: 64px; height: var(--rule); background: var(--gold); margin: 0 auto 22px; }
.pullquote blockquote p { font-family: var(--display); font-weight: 500; font-style: italic; font-size: clamp(1.5rem, 2.6vw, 2.1rem); line-height: 1.3; color: var(--charcoal); margin: 0 auto 14px; max-width: none; }
.pullquote figcaption { font-size: .92rem; color: var(--slate); letter-spacing: .02em; }

/* =====================================================================
   Build v45: one hero height everywhere; scrolling tour row
   ===================================================================== */
.page-hero, .page-hero.tall, .page-hero.home { min-height: 0; height: clamp(400px, 52vh, 500px); align-items: flex-end; }
.page-hero-in { padding-top: 40px; padding-bottom: clamp(36px, 5vw, 60px); }
.page-hero h1 { font-size: clamp(2.4rem, 4.4vw, 3.9rem); }
.page-hero.home h1 { font-size: clamp(2.3rem, 4.2vw, 3.7rem); max-width: 22ch; }
.page-hero.home .hero-sub { font-size: clamp(1.15rem, 1.8vw, 1.45rem) !important; margin-top: 10px; }
.page-hero .strap { margin-bottom: 14px; }
.hero-lede { font-size: 1.05rem; }
@media (max-width: 860px) {
  .page-hero, .page-hero.tall, .page-hero.home { height: auto; min-height: 340px; }
  .page-hero-in { padding-top: 90px; }
}

.tcarousel { position: relative; }
.tc-arrows { display: flex; justify-content: flex-end; gap: 8px; margin: -8px 0 12px; }
.tc-arrows[hidden] { display: none; }
.tc-arrows button { width: 42px; height: 42px; border: 1px solid var(--charcoal); background: var(--white); color: var(--charcoal); font-size: 1.1rem; cursor: pointer; }
.tc-arrows button:hover { background: var(--charcoal); color: var(--white); }
.tc-arrows button:disabled { opacity: .35; cursor: default; background: var(--white); color: var(--charcoal); }
.tc-track { display: grid; grid-auto-flow: column; grid-auto-columns: calc((100% - 3 * 20px) / 4); gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; padding-bottom: 10px; scrollbar-width: thin; scrollbar-color: var(--hairline) transparent; }
.tc-track > .tcard { scroll-snap-align: start; }
.tc-track:focus-visible { outline-offset: 4px; }
.tcards-extra { grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 20px; }
.tcards-extra .tcard.bespoke, .tcards-extra .tcard.gcs-card { grid-column: auto; }
@media (max-width: 1100px) { .tc-track { grid-auto-columns: calc((100% - 20px) / 2); } }
@media (max-width: 640px) { .tc-track { grid-auto-columns: 85%; } .tcards-extra { grid-template-columns: 1fr; } }

/* Build v48: How it works journey as an even grid (every card the same size) */
.journey { display: grid; grid-template-columns: repeat(var(--jcols, 4), minmax(0, 1fr)); grid-template-rows: auto; grid-auto-rows: 1fr; column-gap: 0; row-gap: 16px; border-top: var(--rule) solid var(--gold); }
.journey .jstage-name { margin: 18px 0 2px; padding: 0 clamp(12px, 1.6vw, 22px); }
.jcell { padding: 0 clamp(12px, 1.6vw, 22px); border-left: 1px solid var(--hairline); display: flex; }
.journey .jstage-name { border-left: 1px solid var(--hairline); }
.jcell.first, .journey .jstage-name.first { border-left: 0; padding-left: 0; }
.jcell .jcard { flex: 1; display: flex; flex-direction: column; }
.jcell.empty { border-left-color: var(--hairline); }
@media (max-width: 1000px) and (min-width: 641px) {
  .journey { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: auto; }
  .journey > * { grid-column: auto !important; grid-row: auto !important; }
  .jcell, .journey .jstage-name { border-left: 0; padding: 0 10px 0 0; }
  .journey .jstage-name { grid-column: 1 / -1 !important; }
  .jcell.empty { display: none; }
}
@media (max-width: 640px) {
  .journey { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .journey > * { grid-column: auto !important; grid-row: auto !important; }
  .jcell, .journey .jstage-name { border-left: 0; padding: 0; }
  .jcell.empty { display: none; }
}
.journey { column-gap: clamp(14px, 1.8vw, 24px); }
.jcell, .jcell.first, .journey .jstage-name, .journey .jstage-name.first { border-left: 0; padding-left: 0; padding-right: 0; }
@media (max-width: 1000px) and (min-width: 641px) { .journey { grid-auto-rows: 1fr; } .journey .jstage-name { grid-row: auto !important; } }
@media (max-width: 1000px) and (min-width: 641px) { .journey { grid-auto-rows: auto; } }

/* =====================================================================
   Build v49
   ===================================================================== */
/* prices */
.price-basis { margin: 2px 0 8px; font-size: .92rem; color: var(--charcoal); }
.price-note { margin: 10px 0 4px; border-top: 1px solid var(--hairline); padding-top: 10px; font-size: .88rem; }
.price-note summary { cursor: pointer; font-weight: 600; color: var(--charcoal); list-style: none; }
.price-note summary::after { content: " +"; color: var(--slate); }
.price-note[open] summary::after { content: " −"; }
.price-note p { margin: 8px 0 0; color: var(--slate); }
.tcard-price { margin: 8px 0 0; font-size: .86rem; color: var(--slate); }
.tcard-price strong { font-family: var(--display); font-size: 1.25rem; color: var(--charcoal); font-weight: 600; }
.gcs-card .tcard-price, .gcs-card .tcard-price strong { color: var(--white); }
.t-price { margin: 16px 0 4px; }
.t-price .price { font-family: var(--display); font-size: 2rem; font-weight: 600; color: var(--charcoal); }

/* home: stages and schools */
.stages { list-style: none; margin: 26px 0 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.stage { background: var(--white); padding: 22px 20px; border-top: var(--rule) solid var(--gold); }
.stage .num { display: block; font-family: var(--display); font-size: 2rem; font-weight: 600; line-height: 1; color: var(--charcoal); margin-bottom: 8px; }
.stage h3 { font-size: 1.35rem; margin: 0 0 6px; text-transform: none; }
.stage p { margin: 0; font-size: .95rem; }
.stages-link { margin-top: 22px; }
@media (max-width: 900px) { .stages { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .stages { grid-template-columns: 1fr; } }
.schools { border-bottom: 1px solid var(--hairline); padding: 22px 0; }
.schools .label { margin-bottom: 10px; }
.schools ul { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px 26px; }
.schools li { font-family: var(--display); font-weight: 600; font-size: 1.2rem; color: var(--charcoal); }

/* mobile: destination strip becomes one swipeable row */
@media (max-width: 640px) {
  .dest-strip .dest-tabs { flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none; -webkit-overflow-scrolling: touch; padding-bottom: 4px; }
  .dest-strip .dest-tabs::-webkit-scrollbar { display: none; }
  .dest-strip .dest-tabs a { white-space: nowrap; flex: none; }
  .dest-strip-in { padding-top: 12px; padding-bottom: 12px; gap: 6px; }
}

/* mobile: story before the booking box, and a slim enquire bar */
.enquire-bar { display: none; }
@media (max-width: 860px) {
  .t-layout { display: flex; flex-direction: column; }
  .t-layout .t-main { order: 1; }
  .t-layout .t-side { order: 2; position: static; }
  .enquire-bar { display: flex; position: fixed; left: 0; right: 0; bottom: 0; z-index: 40; align-items: center; justify-content: space-between; gap: 12px; padding: 10px 16px; background: var(--ink); color: var(--white); border-top: var(--rule) solid var(--gold); font-family: var(--display); font-weight: 600; font-size: 1.05rem; }
  .enquire-bar .btn { padding: 8px 16px; }
  body:has(.enquire-bar) .site-footer { padding-bottom: 70px; }
}

/* typical tour */
.typical { border: 1px solid var(--hairline); border-left: var(--rule) solid var(--gold); padding: 16px 20px; background: var(--white); }
.typical summary { cursor: pointer; list-style: none; display: flex; flex-direction: column; }
.typical summary::-webkit-details-marker { display: none; }
.typical .label { margin: 0; }
.typ-title { font-family: var(--display); font-weight: 600; font-size: 1.4rem; color: var(--charcoal); }
.typ-title::after { content: " +"; color: var(--slate); }
.typical[open] .typ-title::after { content: " −"; }
.typical-days { list-style: none; margin: 14px 0 8px; padding: 0; columns: 2; column-gap: 28px; }
.typical-days li { break-inside: avoid; padding: 5px 0; border-bottom: 1px solid var(--hairline); font-size: .95rem; }
.typical-days .num { display: inline-block; min-width: 58px; font-family: var(--display); font-weight: 600; color: var(--charcoal); }
@media (max-width: 600px) { .typical-days { columns: 1; } }

/* timeline */
.tour-timeline { margin-top: clamp(40px, 6vw, 64px); }
.tl { list-style: none; margin: 20px 0 0; padding: 0; display: grid; grid-template-columns: repeat(7, 1fr); gap: 0; border-top: var(--rule) solid var(--gold); }
.tl li { padding: 16px 14px 0 0; position: relative; }
.tl li::before { content: ""; position: absolute; top: -8px; left: 0; width: 13px; height: 13px; border-radius: 50% !important; background: var(--white); border: 3px solid var(--gold); }
.tl-when { display: block; font-family: var(--display); font-weight: 600; font-size: 1.2rem; color: var(--charcoal); margin: 6px 0 4px; }
.tl-what { font-size: .9rem; color: var(--slate); }
@media (max-width: 1000px) { .tl { grid-template-columns: 1fr; border-top: 0; border-left: var(--rule) solid var(--gold); } .tl li { padding: 0 0 16px 22px; } .tl li::before { top: 6px; left: -8px; } .tl-when { margin-top: 0; } }

/* safety, parents */
.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.info-grid article { background: var(--stone); padding: 22px 22px 18px; border-top: var(--rule) solid var(--gold); }
.info-grid h3 { font-size: 1.4rem; margin: 0 0 6px; }
.info-grid p { margin: 0; }
.closing { margin-top: 32px; max-width: 760px; }
@media (max-width: 900px) { .info-grid { grid-template-columns: 1fr; } }

/* call back */
.form.callback { background: var(--white); border: 1px solid var(--hairline); padding: 18px 20px 20px; margin: 0 0 28px; }
.form.callback h3 { margin: 0 0 4px; font-size: 1.5rem; }
.form.callback .small { margin: 0 0 12px; }

/* head's pack */
.pack-sheet { max-width: 860px; background: var(--white); border: 1px solid var(--hairline); padding: clamp(24px, 4vw, 48px); }
.pack-head { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 12px; border-bottom: var(--rule) solid var(--gold); padding-bottom: 14px; margin-bottom: 18px; }
.pack-head img { width: 220px; height: auto; }
.pack-head p { margin: 0; font-size: .85rem; color: var(--slate); }
.pack-sheet h2 { font-size: 1.5rem; margin: 22px 0 8px; }
.pack-sheet ul { margin: 0; padding-left: 18px; }
.pack-sheet li { margin: 4px 0; font-size: .95rem; }
.pack-prices { width: 100%; border-collapse: collapse; font-size: .95rem; }
.pack-prices th, .pack-prices td { text-align: left; padding: 7px 8px; border-bottom: 1px solid var(--hairline); }
.pack-prices thead th { font-family: var(--display); color: var(--charcoal); }
@media print {
  .topbar, .site-header, .page-hero, .subnav, .gcs-bar, .accredit, .site-footer, .no-print, .draft-note, .crumbs { display: none !important; }
  .section.pack { padding: 0; }
  .pack-sheet { border: 0; padding: 0; max-width: none; }
  body { background: #fff; }
}
.tl li { display: block !important; }
.tl-when, .tl-what { display: block !important; }
.tour-timeline .draft-note { margin-top: 18px; }
.nw { white-space: nowrap; }
.form.callback { display: block; }
.form.callback .grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 16px; margin-bottom: 14px; }
.form.callback .field label { display: block; margin-bottom: 4px; font-weight: 500; font-size: .92rem; }
.form.callback .field input { width: 100%; }
.form.callback .btn { width: auto; }
@media (max-width: 520px) { .form.callback .grid { grid-template-columns: 1fr; } }
#callback, #enquire { scroll-margin-top: calc(var(--header-h) + 20px); }

/* Build v50 */
.journey.across { grid-template-columns: repeat(var(--jcols, 4), minmax(0, 1fr)); grid-auto-rows: auto; row-gap: 12px; border-top: 0; }
.journey.across .jstage-name { border-top: var(--rule) solid var(--gold); padding-top: 14px; margin: 18px 0 0; }
.journey.across .jstage-name + .jstage-name { margin-left: 0; }
.journey.across .jcell { display: flex; }
.journey.across .jcard { min-height: 100%; }
@media (max-width: 1000px) and (min-width: 641px) {
  .journey.across { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .journey.across > * { grid-column: auto !important; grid-row: auto !important; }
  .journey.across .jstage-name { grid-column: 1 / -1 !important; }
}
@media (max-width: 640px) {
  .journey.across { grid-template-columns: 1fr; }
  .journey.across > * { grid-column: auto !important; grid-row: auto !important; }
}
.tl { grid-template-columns: repeat(8, 1fr); }
@media (max-width: 1000px) { .tl { grid-template-columns: 1fr; } }
.portal-band { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr); gap: clamp(20px, 4vw, 48px); align-items: center; background: var(--charcoal); color: var(--hairline); padding: clamp(24px, 4vw, 44px); border-top: var(--rule) solid var(--gold); margin-bottom: 24px; }
.portal-band h2 { color: var(--white); margin: 0 0 10px; }
.portal-band .label { color: var(--hairline); }
.portal-band .lede { color: var(--white); margin: 0; font-size: 1.05rem; }
.portal-band .ticks li { color: var(--white); border-bottom-color: rgba(255,255,255,.18); }
.portal-band .ticks li::before { background: var(--gold); }
@media (max-width: 860px) { .portal-band { grid-template-columns: 1fr; } }

/* Build v51: tour row arrows on the sides, pulsing when the pointer is near */
.tcarousel { position: relative; }
.tc-arrows { position: absolute; inset: 0 -26px; margin: 0; display: flex; justify-content: space-between; align-items: center; pointer-events: none; z-index: 3; }
.tc-arrows[hidden] { display: none; }
.tc-arrows button { pointer-events: auto; width: 52px; height: 52px; border-radius: 50% !important; border: 2px solid var(--gold); background: var(--white); color: var(--charcoal); font-size: 1.35rem; line-height: 1; box-shadow: 0 6px 18px rgba(42,41,43,.22); transition: transform .2s ease, opacity .2s ease; }
.tc-arrows button:hover { background: var(--charcoal); color: var(--white); transform: scale(1.06); }
.tc-arrows button:disabled { opacity: 0; pointer-events: none; }
@keyframes tcpulse { 0% { box-shadow: 0 0 0 0 rgba(239,202,80,.75), 0 6px 18px rgba(42,41,43,.22); } 70% { box-shadow: 0 0 0 16px rgba(239,202,80,0), 0 6px 18px rgba(42,41,43,.22); } 100% { box-shadow: 0 0 0 0 rgba(239,202,80,0), 0 6px 18px rgba(42,41,43,.22); } }
.tcarousel:hover .tc-arrows button:not(:disabled), .tc-arrows button.near:not(:disabled) { animation: tcpulse 1.4s ease-out infinite; }
@media (prefers-reduced-motion: reduce) { .tc-arrows button { animation: none !important; } }
@media (max-width: 1320px) { .tc-arrows { inset: 0 -8px; } }
@media (max-width: 640px) { .tc-arrows { inset: 0 -4px; } .tc-arrows button { width: 42px; height: 42px; font-size: 1.1rem; } }
.tcards-extra.single { grid-template-columns: 1fr; }
.tcards-extra.single .tcard.bespoke { flex-direction: row; }
.tcards-extra.single .tcard.bespoke .tcard-img { flex: 0 0 45%; aspect-ratio: auto; min-height: 240px; }
.tcards-extra.single .tcard.bespoke .tcard-body { border-top: 0; border-left: var(--rule) solid var(--gold); }
@media (max-width: 760px) { .tcards-extra.single .tcard.bespoke { flex-direction: column; } .tcards-extra.single .tcard.bespoke .tcard-img { flex: none; aspect-ratio: 16 / 9; min-height: 0; } .tcards-extra.single .tcard.bespoke .tcard-body { border-left: 0; border-top: var(--rule) solid var(--gold); } }

/* Build v53 */
.accredit img, .protect-logos img, .protect-marks img { background: transparent; mix-blend-mode: normal; }
.protect-logos img { height: 54px; }
.quotes-sec { border-bottom: 1px solid var(--hairline); }
.quote-row { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) { .quote-row { grid-template-columns: 1fr; } }
.protect-marks figure { background: transparent; border: 1px solid rgba(255,255,255,.18); border-bottom: var(--rule) solid var(--gold); }
.protect-marks figcaption { color: var(--white); }
.protect-marks figcaption .num { color: var(--hairline); }

/* Build v58: tighter, equal destination cards */
.tc-track { align-items: stretch; }
.tc-track .tcard-body { padding: 16px 18px 14px; }
.tc-track .tcard .label { margin-bottom: 4px; }
.tc-track .tcard h2 { font-size: 1.4rem; line-height: 1.15; min-height: 2.3em; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; margin-bottom: 4px; }
.tc-track .tcard-sub { margin-bottom: 8px; min-height: 2.8em; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.tc-track .tcard-body > p:not(.label):not(.tcard-sub):not(.tcard-price) { margin: 0; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; min-height: 4.5em; }
.tc-track .tcard-price { margin: 10px 0 0; min-height: 2.9em; }
.tc-track .tcard-foot { margin-top: 12px; padding-top: 10px; }
.tc-track .tcard-foot ul { flex-direction: column; flex-wrap: nowrap; gap: 3px; }
.tc-track .tcard-body > p:not(.label):not(.tcard-sub):not(.tcard-price) { -webkit-line-clamp: 4; min-height: 6em; }
.tc-track .tcard-foot { margin-top: auto; }
.tc-track .tcard .label { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* Build v59/v60: home hero enquiry button, square gold outline on the photo */
.pill-gold { display: inline-flex; align-items: center; gap: 10px; padding: 11px 26px; border: 2px solid var(--gold); border-radius: 0; background: transparent; color: var(--white); font-family: var(--body); font-weight: 500; font-size: .98rem; letter-spacing: .02em; text-decoration: none; transition: background-color .25s ease, color .25s ease; }
.pill-gold::after { content: "\2192"; font-size: 1rem; transition: transform .25s ease; }
.pill-gold:hover, .pill-gold:focus-visible { background: rgba(239, 202, 80, .16); color: var(--white); }
.pill-gold:hover::after { transform: translateX(3px); }
.pill-gold:focus-visible { outline: 2px solid var(--white); outline-offset: 3px; }

/* Build v64: video card in the Why us side column */
.side-video { margin-top: 28px; }
.side-video .video-card { grid-template-columns: 1fr; }
.side-video .video-body { padding: 18px 20px 20px; }
.side-video .video-title { font-size: 1.4rem; }

/* Build v68: featured tabs + all destinations link; in-page video player */
.dest-strip .all-dest { margin-left: auto; color: var(--white); border: 1px solid var(--gold); padding: 7px 14px; font-size: .88rem; text-decoration: none; white-space: nowrap; }
.dest-strip .all-dest:hover { background: rgba(239,202,80,.16); }
@media (max-width: 640px) { .dest-strip .all-dest { margin-left: 0; } }
#all-destinations h2 { margin-bottom: 18px; }
.video-card { cursor: pointer; }
.video-placeholder { cursor: default; opacity: .85; }
.video-placeholder .video-thumb { background: repeating-linear-gradient(45deg, #3a393b, #3a393b 12px, #414042 12px, #414042 24px); min-height: 160px; }
.vmodal { position: fixed; inset: 0; z-index: 200; background: rgba(20,20,21,.88); display: flex; align-items: center; justify-content: center; padding: 24px; }
.vmodal[hidden] { display: none; }
.vmodal-box { position: relative; width: min(1100px, 100%); aspect-ratio: 16 / 9; background: #000; border-top: var(--rule) solid var(--gold); }
.vmodal-box iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.vmodal-close { position: absolute; top: -52px; right: 0; background: transparent; border: 1px solid var(--gold); color: var(--white); padding: 8px 14px; cursor: pointer; font-size: .9rem; }
.vmodal-close:hover { background: rgba(239,202,80,.16); }
.dest-strip .all-dest { margin-left: 14px; }
.vmodal-yt { position: absolute; left: 0; bottom: -40px; color: var(--hairline); font-size: .88rem; text-decoration: underline; text-decoration-color: var(--gold); }

/* Build v78: quotes that pop out at the top of Testimonials; second destination quote */
.t-pops { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; margin: 0 0 clamp(36px, 5vw, 56px); }
.t-pop { margin: 0; background: var(--charcoal); color: var(--white); padding: clamp(24px, 3vw, 36px); position: relative; }
.t-pop .rule { width: 56px; height: var(--rule); background: var(--gold); margin-bottom: 18px; }
.t-pop h2 { color: var(--white); font-size: clamp(1.5rem, 2.2vw, 1.9rem); margin: 0 0 12px; }
.t-pop blockquote { margin: 0; }
.t-pop blockquote p { font-family: var(--display); font-style: italic; font-size: 1.22rem; line-height: 1.45; color: var(--white); margin: 0 0 12px; }
.t-pop figcaption { margin-top: 16px; font-size: .92rem; color: var(--hairline); border-top: 1px solid rgba(255,255,255,.18); padding-top: 12px; }
.t-pop figcaption strong { color: var(--white); font-weight: 600; }
@media (max-width: 860px) { .t-pops { grid-template-columns: 1fr; } }
.quote-feature.second { margin-top: -12px; }
.quote-feature.long blockquote p { font-size: clamp(1.3rem, 1.9vw, 1.65rem); line-height: 1.4; }
.quote-feature.long blockquote p { max-width: 62ch; }
.gallery:has(> figure:nth-child(2):last-child) { grid-template-columns: repeat(2, 1fr); }
.gallery:has(> figure:nth-child(2):last-child) figure { aspect-ratio: 16 / 10; }
.gallery:has(> figure:nth-child(3):last-child) { grid-template-columns: repeat(3, 1fr); }

/* Build v80: three featured cards fill the full width */
.tcarousel[data-tours="3"] .tc-track { grid-auto-columns: calc((100% - 2 * 20px) / 3); }
.tcarousel[data-tours="2"] .tc-track { grid-auto-columns: calc((100% - 20px) / 2); }
@media (max-width: 1100px) { .tcarousel[data-tours="3"] .tc-track { grid-auto-columns: calc((100% - 20px) / 2); } }
@media (max-width: 640px) { .tcarousel[data-tours="3"] .tc-track, .tcarousel[data-tours="2"] .tc-track { grid-auto-columns: 85%; } }
.vmodal-note { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; padding: 24px; color: var(--white); }
.vmodal-note p { margin: 4px 0; max-width: 46ch; }
.vmodal-note p:first-child { font-family: var(--display); font-size: 1.6rem; }
