/* ============================================
   BLUE BOOK VACATIONS — French Quarter Editorial
   Design system, shared layout, all pages.
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght,SOFT@9..144,300..900,0..100&family=Rozha+One&family=Instrument+Sans:wght@400;500;600&family=Instrument+Serif:ital@0;1&display=swap');

/* === Reset against parent theme styles for Bluebook pages === */
body.bluebook {
  margin: 0 !important;
  padding: 0 !important;
  background: var(--paper) !important;
  color: var(--ink) !important;
  font-family: var(--body) !important;
  line-height: 1.55 !important;
}
body.bluebook *,
body.bluebook *::before,
body.bluebook *::after {
  box-sizing: border-box;
}
body.bluebook a { text-decoration: none; color: inherit; }
body.bluebook img { max-width: 100%; display: block; height: auto; }
body.bluebook button { font-family: inherit; cursor: pointer; }
body.bluebook h1, body.bluebook h2, body.bluebook h3,
body.bluebook h4, body.bluebook h5, body.bluebook h6,
body.bluebook p, body.bluebook ul, body.bluebook ol {
  margin: 0; padding: 0;
}
body.bluebook ul { list-style: none; }
/* Hide goodlayers/traveltour wrapper chrome on bluebook pages */
body.bluebook .gdlr-core-page-builder-body,
body.bluebook .traveltour-page-wrap > .traveltour-header-wrap,
body.bluebook .traveltour-page-title-wrap,
body.bluebook .traveltour-footer-wrapper { display: none; }

:root {
  /* Ink & paper */
  --ink:        #0E2A3A;      /* deep bayou teal-navy */
  --ink-soft:   #254758;
  --paper:      #FFFFFF;      /* white */
  --paper-2:    #FFFFFF;      /* white */
  --paper-3:    #F2F2F2;      /* near-white for subtle layering */
  --rule:       #1F3B4A;

  /* Accents */
  --brass:      #C8982D;      /* Mardi Gras saffron */
  --brass-d:    #9E761E;
  --brick:      #B03E2E;      /* brick red CTA */
  --brick-d:    #8A2E21;
  --moss:       #4A6B3A;      /* bayou moss */
  --plum:       #5B2A4E;      /* voodoo plum */
  --cyan:       #3DC4FF;      /* Blue Book logo cyan */
  --cyan-d:     #1DA9E8;      /* darker for hover/borders */
  --cream-card: #FFF9EB;

  /* Shadow */
  --shadow-1: 0 1px 0 rgba(14,42,58,.08), 0 10px 30px -12px rgba(14,42,58,.25);
  --shadow-2: 0 2px 0 rgba(14,42,58,.12), 0 28px 60px -20px rgba(14,42,58,.35);
  --shadow-ink: 4px 4px 0 var(--ink);

  /* Typography */
  --display: "Fraunces", "Times New Roman", serif;
  --display-accent: "Rozha One", "Playfair Display", serif;
  --italic: "Instrument Serif", "Times New Roman", serif;
  --body: "Instrument Sans", -apple-system, system-ui, sans-serif;

  /* Layout */
  --container: 1240px;
  --gutter: clamp(20px, 4vw, 48px);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  background-image: none;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* =========== TYPOGRAPHY =========== */
.display {
  font-family: var(--display);
  font-weight: 500;
  font-variation-settings: "SOFT" 50, "opsz" 144;
  letter-spacing: -0.02em;
  line-height: 0.95;
}
.display-xl {
  font-family: var(--display);
  font-weight: 400;
  font-variation-settings: "SOFT" 50, "opsz" 144;
  font-size: clamp(48px, 7.6vw, 120px);
  line-height: 0.92;
  letter-spacing: -0.025em;
}
.script {
  font-family: var(--italic);
  font-style: italic;
  font-weight: 400;
}
.accent-serif {
  font-family: var(--display-accent);
  font-weight: 400;
}
.eyebrow {
  font-family: var(--body);
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.28em;
  font-weight: 600;
}
.eyebrow::before {
  content: "◆";
  color: var(--brass);
  margin-right: 10px;
  font-size: 8px;
  vertical-align: middle;
}

/* =========== CONTAINER =========== */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* =========== MARQUEE / ANNOUNCEMENT BAR =========== */
.marquee {
  background: var(--ink);
  color: var(--paper);
  border-bottom: 1px solid rgba(243,233,210,.12);
  overflow: hidden;
  position: relative;
}
.marquee::before,
.marquee::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.marquee::before { left: 0; background: linear-gradient(90deg, var(--ink), transparent); }
.marquee::after  { right: 0; background: linear-gradient(-90deg, var(--ink), transparent); }

.marquee__track {
  display: flex;
  gap: 48px;
  padding: 11px 0;
  width: max-content;
  animation: slide 38s linear infinite;
  font-family: var(--body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  white-space: nowrap;
}
.marquee__track span { display: inline-flex; align-items: center; gap: 14px; }
.marquee__track .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--brass);
  display: inline-block;
}
.marquee__track strong {
  color: var(--brass);
  font-weight: 700;
}
@keyframes slide {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =========== HEADER / NAV =========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(243, 233, 210, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(14,42,58,.12);
}
.nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 18px 0;
  gap: 20px;
}
.nav__links {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  justify-self: start;
}
.nav__links a {
  position: relative;
  padding: 6px 0;
  transition: color .2s ease;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--brick);
  transition: right .3s ease;
}
.nav__links a:hover::after { right: 0; }
.nav__links a:hover { color: var(--brick); }

.nav__logo {
  justify-self: center;
  text-align: center;
  line-height: 1;
}
.nav__logo-mark {
  font-family: var(--display-accent);
  font-size: 22px;
  color: var(--ink);
  letter-spacing: 0.02em;
}
.nav__logo-mark span {
  color: var(--brick);
  font-family: var(--italic);
  font-style: italic;
}
.nav__logo-sub {
  display: block;
  margin-top: 2px;
  font-size: 9px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.nav__tools {
  display: flex;
  gap: 12px;
  justify-self: end;
  align-items: center;
}
.nav__tools .icon-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  display: grid;
  place-items: center;
  transition: all .2s ease;
}
.nav__tools .icon-btn:hover {
  background: var(--ink);
  color: var(--paper);
  transform: translateY(-1px);
}
.nav__tools .phone {
  font-family: var(--display);
  font-size: 14px;
  font-weight: 600;
  padding: 0 10px;
  border-left: 1px solid rgba(14,42,58,.2);
  margin-left: 6px;
}

/* =========== BUTTONS =========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 24px;
  font-family: var(--body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid var(--ink);
  background: var(--paper);
  color: var(--ink);
  border-radius: 0;
  transition: transform .15s ease, box-shadow .15s ease, background .2s ease;
  box-shadow: 4px 4px 0 var(--ink);
}
.btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--ink);
}
.btn:active {
  transform: translate(2px, 2px);
  box-shadow: 0 0 0 var(--ink);
}
.btn--primary {
  background: var(--cyan);
  color: #fff;
  border-color: var(--cyan-d);
}
.btn--primary:hover {
  background: var(--cyan-d);
}
.btn--brass {
  background: var(--brass);
  color: var(--ink);
}
.btn--ink {
  background: var(--ink);
  color: var(--paper);
}
.btn--ghost {
  background: transparent;
  box-shadow: none;
  border: 1px solid var(--ink);
}
.btn--ghost:hover {
  background: var(--ink);
  color: var(--paper);
  box-shadow: none;
  transform: none;
}
.btn--sm { padding: 9px 16px; font-size: 10.5px; box-shadow: 3px 3px 0 var(--ink); }
.btn--sm:hover { box-shadow: 5px 5px 0 var(--ink); }
.btn .arrow { transition: transform .2s ease; }
.btn:hover .arrow { transform: translateX(3px); }

/* =========== WROUGHT-IRON DIVIDER =========== */
.wrought {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--ink);
  padding: 40px 0;
}
.wrought::before,
.wrought::after {
  content: "";
  flex: 1;
  height: 22px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' height='22' viewBox='0 0 300 22' fill='none' stroke='%230E2A3A' stroke-width='1.2'><path d='M0 11 H300'/><path d='M40 11 Q50 0 60 11 T80 11'/><path d='M100 11 Q110 22 120 11 T140 11'/><path d='M160 11 Q170 0 180 11 T200 11'/><path d='M220 11 Q230 22 240 11 T260 11'/><circle cx='20' cy='11' r='3'/><circle cx='280' cy='11' r='3'/></svg>");
  background-repeat: repeat-x;
  background-position: center;
}
.wrought__mark {
  font-family: var(--display-accent);
  font-size: 18px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink);
}
.wrought__mark::before,
.wrought__mark::after {
  content: "◆";
  color: var(--brass);
  margin: 0 12px;
  font-size: 10px;
  vertical-align: middle;
}

/* =========== SECTION HEADINGS =========== */
.section {
  padding: clamp(60px, 9vw, 120px) 0;
  position: relative;
}
.section-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 40px;
  margin-bottom: 50px;
}
.section-head h2 {
  font-family: var(--display);
  font-variation-settings: "SOFT" 30, "opsz" 144;
  font-weight: 400;
  font-size: clamp(40px, 5.5vw, 80px);
  line-height: 0.94;
  margin: 10px 0 0;
  letter-spacing: -0.02em;
}
.section-head h2 em {
  font-family: var(--italic);
  font-style: italic;
  color: var(--brick);
  font-weight: 400;
}

/* =========== CARDS (dynamic population slots) =========== */
.card {
  background: var(--cream-card);
  border: 1px solid var(--ink);
  box-shadow: var(--shadow-ink);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}
.card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 7px 7px 0 var(--ink);
}
.card__media {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--moss) 0%, var(--ink) 100%);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  filter: saturate(.85) contrast(1.05);
}
.card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(14,42,58,.15) 0%, rgba(14,42,58,.78) 100%),
    linear-gradient(135deg, rgba(200,152,45,.15), transparent 60%);
}
.card__tag {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--paper);
  color: var(--ink);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 6px 10px;
  border: 1px solid var(--ink);
  z-index: 2;
}
.card__index {
  position: absolute;
  top: 12px; right: 14px;
  font-family: var(--display-accent);
  color: var(--paper);
  font-size: 32px;
  line-height: 1;
  z-index: 2;
  text-shadow: 2px 2px 0 rgba(0,0,0,.3);
}
.card__body {
  padding: 22px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.card__title {
  font-family: var(--display);
  font-variation-settings: "SOFT" 30, "opsz" 144;
  font-weight: 500;
  font-size: 26px;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0;
}
.card__desc {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0;
}
.card__meta {
  display: flex;
  gap: 18px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
  padding-top: 14px;
  border-top: 1px dashed rgba(14,42,58,.2);
  margin-top: auto;
}
.card__meta > span { display: inline-flex; align-items: center; gap: 6px; }
.card__cta {
  padding: 0 24px 24px;
}

/* =========== FOOTER =========== */
.site-footer {
  background: var(--ink);
  color: var(--paper);
  padding: 90px 0 30px;
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 22px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' height='22' viewBox='0 0 300 22' fill='none' stroke='%23C8982D' stroke-width='1.2'><path d='M0 11 H300'/><path d='M40 11 Q50 0 60 11 T80 11'/><path d='M100 11 Q110 22 120 11 T140 11'/><path d='M160 11 Q170 0 180 11 T200 11'/><path d='M220 11 Q230 22 240 11 T260 11'/><circle cx='20' cy='11' r='3'/><circle cx='280' cy='11' r='3'/></svg>");
  background-repeat: repeat-x;
  background-position: center;
  opacity: .55;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer__brand h3 {
  font-family: var(--display);
  font-variation-settings: "SOFT" 50, "opsz" 144;
  font-weight: 400;
  font-size: 32px;
  margin: 0 0 8px;
}
.footer__brand h3 em {
  font-family: var(--italic);
  font-style: italic;
  color: var(--brass);
}
.footer__brand p {
  color: rgba(243,233,210,.6);
  font-size: 14px;
  max-width: 320px;
}
.footer__col h4 {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--brass);
  margin: 0 0 18px;
  font-weight: 600;
}
.footer__col ul {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-family: var(--display);
  font-size: 20px;
  font-variation-settings: "SOFT" 30, "opsz" 96;
}
.footer__col ul a { transition: color .2s ease, padding .2s ease; display: inline-block; }
.footer__col ul a:hover { color: var(--brass); padding-left: 10px; }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid rgba(243,233,210,.18);
  font-size: 12px;
  color: rgba(243,233,210,.55);
}
.footer__social {
  display: flex;
  gap: 10px;
}
.footer__social a {
  width: 34px; height: 34px;
  border: 1px solid rgba(243,233,210,.35);
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: all .2s ease;
}
.footer__social a:hover {
  background: var(--brass);
  color: var(--ink);
  border-color: var(--brass);
}

/* =========== COUNTDOWN / STRIP =========== */
.countdown {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--display-accent);
}
.countdown__label {
  font-family: var(--body);
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 0.24em;
  color: var(--ink-soft);
}
.countdown__time {
  background: var(--ink);
  color: var(--brass);
  padding: 8px 14px;
  font-family: var(--display-accent);
  font-size: 22px;
  letter-spacing: 0.08em;
  display: inline-flex;
  gap: 6px;
  align-items: baseline;
}
.countdown__time small {
  font-family: var(--body);
  font-size: 9px;
  color: rgba(243,233,210,.6);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* =========== RESPONSIVE =========== */
@media (max-width: 980px) {
  .nav { grid-template-columns: auto 1fr auto; }
  .nav__links { display: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .section-head { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 14px; text-align: center; }
  .nav__tools .phone { display: none; }
}
/* ============================================
   Page-level styles: hero, sections, tour grids
   ============================================ */

/* =========== HOMEPAGE HERO =========== */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--paper);
  border-bottom: 1px solid rgba(14,42,58,.12);
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  padding: clamp(40px, 6vw, 80px) 0 0;
  position: relative;
}
.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--body);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 600;
  margin-bottom: 28px;
}
.hero__eyebrow::before, .hero__eyebrow::after {
  content: "";
  height: 1px;
  width: 60px;
  background: var(--ink);
  opacity: .5;
}
.hero__title {
  font-family: var(--display);
  font-variation-settings: "SOFT" 50, "opsz" 144;
  font-weight: 300;
  font-size: clamp(54px, 8.4vw, 144px);
  line-height: 0.88;
  letter-spacing: -0.035em;
  text-align: center;
  margin: 0;
  max-width: 14ch;
  margin-inline: auto;
}
.hero__title em {
  font-family: var(--italic);
  font-style: italic;
  color: var(--brick);
  font-weight: 400;
  display: inline-block;
}
.hero__title .scroll-word {
  background: var(--ink);
  color: var(--paper);
  padding: 0 .25em;
  display: inline-block;
  transform: skew(-3deg);
  font-style: normal;
  font-family: var(--display-accent);
  font-size: 0.78em;
}
.hero__sub {
  text-align: center;
  max-width: 60ch;
  margin: 28px auto 0;
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.5;
}
.hero__sub strong {
  color: var(--ink);
  font-family: var(--italic);
  font-weight: 400;
  font-style: italic;
  font-size: 1.1em;
}
.hero__ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 38px;
  flex-wrap: wrap;
}
.hero__image {
  margin: 60px auto 0;
  width: 100%;
  max-width: 1100px;
  position: relative;
  border: 1px solid var(--ink);
  box-shadow: var(--shadow-2);
  aspect-ratio: 16/7;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  filter: saturate(.92) contrast(1.04);
}
.hero__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(14,42,58,.05), rgba(14,42,58,.45));
}
.hero__caption {
  position: absolute;
  bottom: 24px; left: 28px; right: 28px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  color: var(--paper);
  z-index: 2;
  gap: 20px;
}
.hero__caption h4 {
  font-family: var(--display);
  font-variation-settings: "SOFT" 50, "opsz" 96;
  font-weight: 400;
  font-size: 28px;
  margin: 0;
  line-height: 1;
}
.hero__caption span {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: .8;
}
.hero__caption .badge {
  background: var(--brass);
  color: var(--ink);
  padding: 10px 16px;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* Hero stat strip */
.hero__strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 60px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.hero__strip > div {
  padding: 28px 24px;
  border-right: 1px solid rgba(14,42,58,.18);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hero__strip > div:last-child { border-right: 0; }
.hero__strip h5 {
  font-family: var(--display-accent);
  font-size: 38px;
  margin: 0;
  color: var(--brick);
  line-height: 1;
}
.hero__strip span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ink-soft);
}

/* =========== "WHAT IS BLUEBOOK" SECTION =========== */
.bluebook {
  padding: clamp(80px, 11vw, 140px) 0;
  position: relative;
}
.bluebook__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
.bluebook__copy h2 {
  font-family: var(--display);
  font-variation-settings: "SOFT" 30, "opsz" 144;
  font-weight: 400;
  font-size: clamp(40px, 5.4vw, 80px);
  line-height: 0.95;
  margin: 18px 0 26px;
  letter-spacing: -0.025em;
}
.bluebook__copy h2 em {
  font-family: var(--italic);
  font-style: italic;
  color: var(--brass);
}
.bluebook__copy p {
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 56ch;
}
.bluebook__copy p strong {
  color: var(--brick);
  font-family: var(--display);
  font-variation-settings: "SOFT" 0, "opsz" 144;
  font-weight: 600;
  font-size: 1.05em;
}
.bluebook__cta {
  display: flex;
  gap: 14px;
  margin-top: 34px;
  flex-wrap: wrap;
}
.bluebook__quote {
  position: relative;
  border: 1px solid var(--ink);
  background: var(--cream-card);
  padding: 50px 44px;
  box-shadow: var(--shadow-ink);
  font-family: var(--display);
  font-variation-settings: "SOFT" 50, "opsz" 144;
  font-size: 28px;
  line-height: 1.25;
  font-weight: 400;
}
.bluebook__quote::before {
  content: "❝";
  position: absolute;
  top: -30px; left: 22px;
  font-size: 80px;
  color: var(--brick);
  font-family: var(--display-accent);
  background: var(--paper);
  padding: 0 10px;
  line-height: 1;
}
.bluebook__quote em {
  font-family: var(--italic);
  font-style: italic;
  color: var(--brick);
}
.bluebook__quote footer {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 26px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-soft);
  font-family: var(--body);
  font-weight: 600;
}
.bluebook__quote footer::before {
  content: ""; width: 32px; height: 1px; background: var(--ink);
}

/* =========== EXPLORE GRID =========== */
.explore {
  background: var(--paper-2);
  border-top: 1px solid rgba(14,42,58,.12);
  border-bottom: 1px solid rgba(14,42,58,.12);
}
.explore__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 900px) {
  .explore__grid { grid-template-columns: 1fr; }
}

/* =========== "DID YOU KNOW" STRIP =========== */
.fact {
  background: var(--ink);
  color: var(--paper);
  padding: 0;
  position: relative;
  overflow: hidden;
}
.fact__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 50px;
  padding: 70px 0;
}
.fact__badge {
  font-family: var(--display-accent);
  font-size: 14px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--brass);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 14px;
}
.fact__badge::before {
  content: "";
  width: 60px;
  height: 1px;
  background: var(--brass);
}
.fact__text {
  font-family: var(--display);
  font-variation-settings: "SOFT" 50, "opsz" 144;
  font-weight: 300;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.25;
  margin: 0;
}
.fact__text em {
  font-family: var(--italic);
  font-style: italic;
  color: var(--brass);
}
.fact__year {
  font-family: var(--display-accent);
  font-size: 88px;
  line-height: 0.85;
  color: var(--brass);
}
@media (max-width: 900px) {
  .fact__inner { grid-template-columns: 1fr; gap: 24px; }
  .fact__year { font-size: 60px; }
}

/* =========== STREETS / 2 LARGE CARDS =========== */
.streets__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
@media (max-width: 900px) {
  .streets__grid { grid-template-columns: 1fr; }
}
.street-card {
  position: relative;
  aspect-ratio: 5/4;
  border: 1px solid var(--ink);
  background-size: cover;
  background-position: center;
  overflow: hidden;
  box-shadow: var(--shadow-ink);
  transition: transform .3s ease;
}
.street-card:hover { transform: translateY(-4px); }
.street-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(14,42,58,.2) 0%, rgba(14,42,58,.92) 90%),
    linear-gradient(135deg, rgba(200,152,45,.18), transparent 60%);
}
.street-card { filter: saturate(.85) contrast(1.05); }
.street-card__body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 36px;
  z-index: 2;
  color: var(--paper);
}
.street-card__num {
  font-family: var(--display-accent);
  font-size: 18px;
  color: var(--brass);
  letter-spacing: 0.16em;
}
.street-card h3 {
  font-family: var(--display);
  font-variation-settings: "SOFT" 50, "opsz" 144;
  font-weight: 400;
  font-size: clamp(30px, 3.6vw, 50px);
  line-height: 1;
  margin: 6px 0 14px;
}
.street-card h3 em {
  font-family: var(--italic);
  font-style: italic;
}
.street-card p {
  max-width: 38ch;
  font-size: 14px;
  opacity: .82;
  margin: 0;
}

/* =========== NEWSLETTER =========== */
.newsletter {
  background: var(--brick);
  color: var(--paper);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.newsletter::before, .newsletter::after {
  content: "◆ ◆ ◆";
  position: absolute;
  font-family: var(--display-accent);
  font-size: 14px;
  color: rgba(243,233,210,.18);
  letter-spacing: 0.4em;
}
.newsletter::before { top: 30px; left: 0; right: 0; text-align: center; }
.newsletter::after { bottom: 30px; left: 0; right: 0; text-align: center; }
.newsletter__inner {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.newsletter__eyebrow {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--brass);
  margin-bottom: 18px;
}
.newsletter h2 {
  font-family: var(--display);
  font-variation-settings: "SOFT" 50, "opsz" 144;
  font-weight: 400;
  font-size: clamp(40px, 5vw, 70px);
  line-height: 0.95;
  margin: 0 0 32px;
  letter-spacing: -0.02em;
}
.newsletter h2 em {
  font-family: var(--italic);
  font-style: italic;
  color: var(--brass);
}
.newsletter__form {
  display: flex;
  gap: 0;
  background: var(--paper);
  padding: 8px;
  border: 1px solid var(--paper);
  max-width: 540px;
  margin: 0 auto;
  box-shadow: 4px 4px 0 var(--ink);
}
.newsletter__form input {
  flex: 1;
  border: 0;
  background: transparent;
  font-family: var(--body);
  font-size: 15px;
  padding: 14px 16px;
  color: var(--ink);
  outline: none;
}
.newsletter__form input::placeholder { color: rgba(14,42,58,.5); }
.newsletter__form button {
  background: var(--ink);
  color: var(--paper);
  border: 0;
  padding: 14px 28px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s ease;
}
.newsletter__form button:hover { background: var(--brass); color: var(--ink); }

/* =========== TOUR TYPE CARDS — Gray Line pattern =========== */
.tour-types__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 1024px) { .tour-types__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .tour-types__grid { grid-template-columns: 1fr; } }

.tour-type-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 2px;
  background: var(--ink);
  box-shadow: var(--shadow-1);
  transition: transform .35s ease, box-shadow .35s ease;
  text-decoration: none;
  isolation: isolate;
}
.tour-type-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-2);
}
.tour-type-card__media {
  display: block;
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  position: relative;
  transition: transform .6s ease;
}
.tour-type-card:hover .tour-type-card__media { transform: scale(1.04); }
.tour-type-card__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,42,58,0) 50%, rgba(14,42,58,.35) 100%);
  pointer-events: none;
}
.tour-type-card__index {
  position: absolute;
  top: 14px; left: 16px;
  font-family: var(--display-accent);
  color: var(--paper-2);
  font-size: 26px;
  line-height: 1;
  text-shadow: 0 2px 4px rgba(0,0,0,.45);
  z-index: 2;
}
.tour-type-card__media .card__tag {
  top: 14px;
  left: auto;
  right: 14px;
}
/* Solid band at bottom — Gray Line-style */
.tour-type-card__body {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  background: var(--ink);
  color: var(--paper-2);
  padding: 18px 22px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 2px solid var(--brass);
  transition: background .3s ease;
}
.tour-type-card:hover .tour-type-card__body { background: var(--brick); border-top-color: var(--paper-2); }
.tour-type-card__title {
  font-family: var(--display);
  font-variation-settings: "SOFT" 20, "opsz" 144;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.1;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--paper-2);
  margin: 0;
}
.tour-type-card__title em {
  font-family: var(--italic);
  font-style: italic;
  font-weight: 400;
  color: var(--brass);
  text-transform: none;
  letter-spacing: 0;
}
.tour-type-card__learn {
  font-family: var(--body);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--paper-2);
  white-space: nowrap;
  display: inline-flex; align-items: center; gap: 6px;
  opacity: .95;
  transition: transform .3s ease, color .3s ease;
}
.tour-type-card__learn .arrow { color: var(--brass); transition: transform .3s ease; }
.tour-type-card:hover .tour-type-card__learn .arrow { transform: translateX(3px); }
/* Hide the old elements when they're present in server-rendered content */
.tour-type-card__desc,
.tour-type-card__meta,
.tour-type-card__foot { display: none; }

/* =========== TOUR SUB-PAGE BANNER =========== */
.tour-banner {
  background: var(--ink);
  color: var(--paper);
  position: relative;
  overflow: hidden;
  padding: 120px 0 100px;
  border-bottom: 1px solid var(--ink);
}
.tour-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .35;
  background-image: var(--bg);
}
.tour-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14,42,58,.5), rgba(14,42,58,.95));
}
.tour-banner__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: end;
}
.tour-banner__back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--paper);
  color: var(--ink);
  padding: 12px 18px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  align-self: start;
  border: 1px solid var(--paper);
  margin-bottom: 30px;
  width: max-content;
  transition: all .2s ease;
}
.tour-banner__back:hover {
  background: transparent;
  color: var(--paper);
}
.tour-banner__title {
  font-family: var(--display);
  font-variation-settings: "SOFT" 50, "opsz" 144;
  font-weight: 300;
  font-size: clamp(60px, 9vw, 140px);
  line-height: 0.9;
  letter-spacing: -0.035em;
  margin: 0;
  align-self: end;
  text-align: right;
}
.tour-banner__title em {
  font-family: var(--italic);
  font-style: italic;
  color: var(--brass);
}
.tour-banner__sub {
  grid-column: 1 / -1;
  max-width: 70ch;
  font-size: 17px;
  line-height: 1.55;
  margin: 38px 0 0;
  color: rgba(243,233,210,.78);
}

/* =========== TOUR DETAIL (Learn More v2) =========== */
.detail-breadcrumb {
  padding: 18px 0;
  font-size: 12px;
  color: var(--ink-soft);
  border-bottom: 1px solid rgba(14,42,58,.08);
}
.detail-breadcrumb a { color: var(--ink-soft); }
.detail-breadcrumb a:hover { color: var(--cyan-d); text-decoration: underline; }
.detail-breadcrumb span { margin: 0 8px; color: rgba(14,42,58,.4); }
.detail-breadcrumb strong { color: var(--ink); font-weight: 600; }

.detail-topbar {
  padding: 22px 0 18px;
  border-bottom: 1px solid rgba(14,42,58,.08);
}
.detail-topbar .detail__provider { margin-bottom: 6px; }
.detail-topbar .detail__title { margin: 0 0 10px; }
.detail-topbar .detail__sub { margin-bottom: 12px; }
.detail-gallery { padding: 20px 0 0; }
.detail-gallery__grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 6px;
  aspect-ratio: 24 / 10;
  max-height: 520px;
}
.detail-gallery__main,
.detail-gallery__thumb {
  background-size: cover;
  background-position: center;
  background-color: #eee;
  border-radius: 2px;
  display: block;
  position: relative;
  transition: filter .25s ease;
}
.detail-gallery__main { grid-row: span 2; }
.detail-gallery__side {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}
.detail-gallery__main:hover,
.detail-gallery__thumb:hover { filter: brightness(1.08); }
.detail-gallery__thumb--more {
  display: flex; align-items: flex-end; justify-content: flex-start;
  color: #fff;
  padding: 12px 14px;
  position: relative;
}
.detail-gallery__thumb--more::before {
  content: "";
  position: absolute; inset: 0;
  background: rgba(14,42,58,.55);
  border-radius: 2px;
  pointer-events: none;
}
.detail-gallery__thumb--more span {
  position: relative;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.detail {
  padding: 36px 0 80px;
}
.detail__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 56px;
  align-items: start;
}
@media (max-width: 1024px) {
  .detail__grid { grid-template-columns: 1fr; gap: 40px; }
  .detail-gallery__grid { aspect-ratio: 16 / 11; }
}

.detail__head { margin-bottom: 22px; }
.detail__provider {
  font-family: var(--body);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 12px;
  color: #E07A1F;
  margin-bottom: 8px;
}
.detail__title {
  font-family: var(--display);
  font-weight: 500;
  font-variation-settings: "SOFT" 30, "opsz" 144;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.04;
  color: var(--ink);
  letter-spacing: -0.015em;
  margin: 0 0 14px;
}
.detail__sub {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  font-size: 13px;
  color: var(--ink-soft);
  margin-bottom: 18px;
}
.detail__rating { color: var(--ink); font-weight: 700; }
.detail__star { color: var(--cyan-d); margin-right: 2px; }
.detail__rating a { color: var(--ink); text-decoration: underline; margin-left: 4px; font-weight: 500; }
.detail__rating a:hover { color: var(--cyan-d); }
.detail__dot { color: rgba(14,42,58,.3); }

.detail__badges { display: flex; flex-wrap: wrap; gap: 8px; }
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--body);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 6px 10px;
  background: #F5F7F9;
  border: 1px solid rgba(14,42,58,.1);
  border-radius: 20px;
  color: var(--ink);
}
.trust-badge__dot {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 14px; height: 14px;
  background: var(--ink);
  color: #fff;
  border-radius: 50%;
  font-size: 9px;
  font-weight: 700;
}
.trust-badge--featured {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.trust-badge--featured .trust-badge__dot {
  background: var(--brass);
  color: var(--ink);
}

.detail__quickfacts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(14,42,58,.08);
  border: 1px solid rgba(14,42,58,.08);
  border-radius: 3px;
  overflow: hidden;
  margin: 26px 0 30px;
}
.detail__quickfacts > div {
  background: #fff;
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.detail__quickfacts span {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.detail__quickfacts strong {
  font-family: var(--body);
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
  line-height: 1.2;
}
@media (max-width: 640px) {
  .detail__quickfacts { grid-template-columns: 1fr 1fr; }
}

.detail__section {
  padding: 28px 0;
  border-top: 1px solid rgba(14,42,58,.08);
}
.detail__section:first-of-type { border-top: 0; }
.detail__section h2 {
  font-family: var(--display);
  font-weight: 500;
  font-variation-settings: "SOFT" 30, "opsz" 96;
  font-size: 26px;
  color: var(--ink);
  margin: 0 0 14px;
  letter-spacing: -0.01em;
}
.detail__section p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.65;
  margin-bottom: 12px;
}
.detail__section p strong { color: var(--ink); }
.detail__highlights ul {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.detail__highlights li {
  font-size: 14.5px;
  color: var(--ink);
  line-height: 1.55;
  padding-left: 28px;
  position: relative;
}
.detail__highlights li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 2px;
  width: 18px; height: 18px;
  background: var(--cyan-d);
  color: #fff;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center; justify-content: center;
}

.detail__included-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
@media (max-width: 640px) { .detail__included-grid { grid-template-columns: 1fr; gap: 20px; } }
.detail__included h3 {
  font-family: var(--body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 10px;
  display: flex; align-items: center; gap: 8px;
}
.detail__included .icon-check,
.detail__included .icon-x {
  width: 18px; height: 18px;
  border-radius: 50%;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  display: inline-flex;
  align-items: center; justify-content: center;
}
.detail__included .icon-check { background: var(--cyan-d); }
.detail__included .icon-x { background: #D02F2F; }
.detail__included ul {
  list-style: none;
  margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 8px;
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.5;
}
.detail__included li {
  padding-left: 18px;
  position: relative;
}
.detail__included li::before {
  content: "•";
  position: absolute; left: 4px; top: 0;
  color: rgba(14,42,58,.3);
}

.detail__policy ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 8px;
  font-size: 14.5px; color: var(--ink-soft);
}
.detail__policy strong { color: var(--ink); font-weight: 700; }

.detail__reviews-summary {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 36px;
  align-items: start;
  margin-bottom: 28px;
  padding: 22px;
  background: #F5F7F9;
  border-radius: 4px;
}
@media (max-width: 640px) { .detail__reviews-summary { grid-template-columns: 1fr; gap: 18px; } }
.detail__reviews-score { text-align: center; }
.detail__reviews-num {
  font-family: var(--display-accent);
  font-size: 56px;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.02em;
}
.detail__reviews-stars {
  color: var(--cyan-d);
  font-size: 18px;
  letter-spacing: 3px;
  margin: 6px 0;
}
.detail__reviews-count {
  font-size: 11px;
  color: var(--ink-soft);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}
.detail__reviews-bars { display: flex; flex-direction: column; gap: 8px; }
.detail__reviews-bars > div {
  display: grid;
  grid-template-columns: 90px 1fr 40px;
  gap: 12px;
  align-items: center;
  font-size: 12px;
  color: var(--ink-soft);
}
.detail__reviews-bars span { font-weight: 600; letter-spacing: 0.04em; }
.detail__reviews-bars i {
  display: block;
  height: 6px;
  background: var(--cyan-d);
  border-radius: 3px;
}
.detail__reviews-bars em {
  font-style: normal;
  font-weight: 700;
  color: var(--ink);
  text-align: right;
}
.detail__reviews-list { display: flex; flex-direction: column; gap: 22px; margin-bottom: 20px; }
.review {
  padding: 18px 20px;
  border: 1px solid rgba(14,42,58,.1);
  border-radius: 3px;
  background: #fff;
}
.review header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 12px;
  color: var(--ink-soft);
}
.review header strong { color: var(--ink); font-weight: 700; }
.review__stars { color: var(--cyan-d); letter-spacing: 1px; margin-left: auto; font-size: 13px; }
.review p { font-size: 14px; color: var(--ink); line-height: 1.55; margin: 0; }

/* Booking widget (sticky right column) */
.detail__booking {
  position: sticky;
  top: 20px;
}
.detail__booking-inner {
  background: #fff;
  border: 1px solid rgba(14,42,58,.12);
  border-radius: 4px;
  padding: 22px 22px 20px;
  box-shadow: 0 18px 40px -20px rgba(14,42,58,.25);
}
.detail__booking-price {
  display: flex; align-items: baseline; flex-wrap: wrap; gap: 8px;
  margin-bottom: 2px;
}
.detail__booking-from {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.detail__booking-sale {
  font-family: var(--body);
  font-weight: 800;
  font-size: 30px;
  color: #D02F2F;
  letter-spacing: -0.01em;
  line-height: 1;
}
.detail__booking-was {
  font-family: var(--body);
  font-size: 17px;
  font-weight: 600;
  color: #9A9A9A;
  text-decoration: line-through;
  text-decoration-color: #9A9A9A;
  text-decoration-thickness: 1.5px;
}
.detail__booking-save {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  background: #D02F2F;
  color: #fff;
  padding: 4px 8px;
  border-radius: 2px;
  margin-left: auto;
}
.detail__booking-perguest {
  font-size: 11.5px;
  color: var(--ink-soft);
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}
.detail__booking-form { display: flex; flex-direction: column; gap: 14px; }
.detail__booking-field {
  display: grid; gap: 5px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.detail__booking-field input {
  font-family: var(--body);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  padding: 10px 12px;
  border: 1px solid rgba(14,42,58,.18);
  border-radius: 2px;
  background: #fff;
}
.detail__booking-field input:focus { outline: none; border-color: var(--cyan-d); }

.detail__booking-counters { display: flex; flex-direction: column; gap: 10px; }
.detail__counter {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-top: 1px solid rgba(14,42,58,.08);
}
.detail__counter:first-child { border-top: 0; padding-top: 0; }
.detail__counter strong { display: block; font-size: 13px; color: var(--ink); font-weight: 700; }
.detail__counter em { font-style: normal; font-size: 11px; color: var(--ink-soft); }
.detail__counter-ctrl {
  display: flex; align-items: center; gap: 6px;
}
.detail__counter-ctrl button {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(14,42,58,.2);
  background: #fff;
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all .2s ease;
  line-height: 1;
}
.detail__counter-ctrl button:hover {
  background: var(--cyan-d);
  color: #fff;
  border-color: var(--cyan-d);
}
.detail__counter-ctrl input {
  width: 32px;
  text-align: center;
  font-weight: 700;
  font-size: 14px;
  border: 0;
  color: var(--ink);
  background: transparent;
}

.detail__booking-total {
  margin-top: 8px;
  padding-top: 14px;
  border-top: 1px solid rgba(14,42,58,.1);
  display: flex; flex-direction: column; gap: 6px;
  font-size: 13px;
  color: var(--ink-soft);
}
.detail__booking-total > div {
  display: flex; justify-content: space-between;
}
.detail__booking-total strong { color: var(--ink); font-weight: 700; }
.detail__booking-total .is-green { color: #2e7d4a; }
.detail__booking-total-grand {
  margin-top: 6px; padding-top: 10px;
  border-top: 1px solid rgba(14,42,58,.1);
  font-size: 15px;
  color: var(--ink);
  font-weight: 700;
}
.detail__booking-total-grand strong { font-size: 20px; }

.btn--block {
  width: 100%;
  padding: 14px 18px !important;
  font-size: 13px !important;
  box-shadow: none !important;
  border-radius: 2px !important;
  justify-content: center;
  display: flex !important;
  align-items: center;
  gap: 8px;
}

.detail__booking-note {
  font-size: 11px;
  color: var(--ink-soft);
  text-align: center;
  line-height: 1.5;
  margin-top: 2px;
}
.detail__booking-trust {
  list-style: none; margin: 16px 0 0; padding: 16px 0 0;
  border-top: 1px solid rgba(14,42,58,.08);
  display: flex; flex-direction: column; gap: 6px;
  font-size: 12px;
  color: var(--ink);
}
.detail__booking-trust span {
  display: inline-block;
  width: 14px;
  color: var(--cyan-d);
  font-weight: 800;
  margin-right: 4px;
}

/* ---- DETAIL ACCORDION SECTIONS (Gray Line pattern) ---- */
.detail-acc-group {
  border-top: 1px solid rgba(14,42,58,.12);
  margin: 16px 0 24px;
}
.detail-acc {
  border-bottom: 1px solid rgba(14,42,58,.12);
}
.detail-acc > summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 2px;
  transition: color .2s ease;
}
.detail-acc > summary::-webkit-details-marker { display: none; }
.detail-acc > summary > h2 {
  font-family: var(--body);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin: 0;
  line-height: 1.3;
}
.detail-acc > summary::after {
  content: "+";
  font-family: var(--body);
  font-weight: 400;
  font-size: 26px;
  color: var(--ink);
  line-height: 1;
  width: 28px; height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform .25s ease;
  flex-shrink: 0;
}
.detail-acc[open] > summary::after {
  content: "−";
}
.detail-acc > summary:hover > h2 {
  color: var(--cyan-d);
}
.detail-acc > summary:hover::after {
  color: var(--cyan-d);
}
.detail-acc__body {
  padding: 4px 2px 24px;
  animation: detailAccFade .28s ease;
}
.detail-acc__body > p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 12px;
}
.detail-acc__body > p strong { color: var(--ink); }
@keyframes detailAccFade {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* FAQ nested accordion inside the outer "Frequently asked questions" row */
.acc-inner > details {
  border-top: 1px solid rgba(14,42,58,.08);
  padding: 18px 0;
}
.acc-inner > details:first-child { border-top: 0; }
.acc-inner > details > summary {
  list-style: none;
  cursor: pointer;
  font-weight: 700;
  font-size: 17px;
  color: var(--ink);
  padding: 10px 2px;
  display: flex; justify-content: space-between; gap: 14px;
  line-height: 1.35;
  transition: color .2s ease;
}
.acc-inner > details > summary:hover { color: var(--cyan-d); }
.acc-inner > details > summary::-webkit-details-marker { display: none; }
.acc-inner > details > summary::after {
  content: "+";
  font-size: 24px;
  color: var(--ink-soft);
  line-height: 1;
  flex-shrink: 0;
}
.acc-inner > details[open] > summary::after { content: "−"; color: var(--cyan-d); }
.acc-inner > details > div { padding: 10px 2px 6px; }
.acc-inner > details > div > p {
  font-size: 15.5px;
  color: var(--ink-soft);
  line-height: 1.7;
  margin: 0 0 10px;
}
.acc-inner > details > div > p:last-child { margin-bottom: 0; }

/* Reinforce that the detail__section used for Reviews still renders normally */
.detail__reviews > h2 {
  font-family: var(--body);
  font-weight: 700;
  font-size: 22px;
  margin: 28px 0 16px;
}

/* ---- ITINERARY / WHAT TO EXPECT ---- */
.itinerary {
  list-style: none;
  margin: 0; padding: 0;
  position: relative;
}
.itinerary::before {
  content: "";
  position: absolute;
  left: 17px; top: 8px; bottom: 8px;
  width: 2px;
  background: rgba(14,42,58,.12);
}
.itinerary > li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  padding: 10px 0 18px;
  position: relative;
}
.itinerary__marker {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--cyan-d);
  color: #fff;
  display: grid; place-items: center;
  font-weight: 800;
  font-size: 14px;
  font-family: var(--body);
  position: relative;
  z-index: 2;
  box-shadow: 0 0 0 4px #fff;
}
.itinerary__body h4 {
  font-family: var(--body);
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  margin: 6px 0 2px;
}
.itinerary__meta {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.itinerary__body p {
  margin: 8px 0 0;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-soft);
}

/* ---- VIATOR-STYLE REVIEWS ---- */
.rev-summary {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 36px;
  align-items: start;
  padding: 26px 26px 22px;
  background: #F5F7F9;
  border-radius: 4px;
  border: 1px solid rgba(14,42,58,.08);
}
@media (max-width: 640px) { .rev-summary { grid-template-columns: 1fr; gap: 20px; } }
.rev-summary__score { text-align: center; }
.rev-summary__num {
  font-family: var(--body);
  font-weight: 800;
  font-size: 54px;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.02em;
}
.rev-summary__stars {
  display: inline-flex;
  gap: 2px;
  margin: 8px 0;
}
.rev-summary__stars span {
  color: var(--cyan-d);
  font-size: 22px;
  line-height: 1;
}
.rev-summary__count {
  font-size: 12px;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}
.rev-summary__count strong { color: var(--ink); font-weight: 700; }
.rev-summary__guide {
  display: block;
  margin-top: 6px;
  font-size: 11px;
  color: var(--cyan-d);
  text-decoration: underline;
}
.rev-summary__dist {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding-left: 24px;
  border-left: 1px solid rgba(14,42,58,.08);
}
@media (max-width: 640px) {
  .rev-summary__dist { padding-left: 0; border-left: 0; }
}
.rev-dist {
  display: grid;
  grid-template-columns: 60px 1fr 50px;
  gap: 12px;
  align-items: center;
  font-size: 12px;
}
.rev-dist > span { color: var(--ink-soft); font-weight: 600; }
.rev-dist > i {
  display: block;
  height: 8px;
  background: rgba(14,42,58,.08);
  border-radius: 4px;
  overflow: hidden;
}
.rev-dist > i > em {
  display: block;
  height: 100%;
  background: var(--cyan-d);
  border-radius: 4px;
}
.rev-dist > strong {
  text-align: right;
  font-weight: 700;
  color: var(--ink);
  font-size: 12px;
}

.rev-subscores {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin: 22px 0 26px;
}
@media (max-width: 640px) { .rev-subscores { grid-template-columns: 1fr 1fr; gap: 14px; } }
.rev-subscores > div {
  padding: 14px 16px;
  background: #fff;
  border: 1px solid rgba(14,42,58,.1);
  border-radius: 3px;
}
.rev-subscores span {
  display: block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 4px;
}
.rev-subscores strong {
  display: block;
  font-size: 20px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1;
}
.rev-subscores i {
  display: block;
  height: 4px;
  background: rgba(14,42,58,.08);
  border-radius: 2px;
  overflow: hidden;
}
.rev-subscores em {
  display: block;
  height: 100%;
  background: var(--cyan-d);
  border-radius: 2px;
}

.rev-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 22px;
}
.rev-filters__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-right: 6px;
}
.rev-chip {
  font-family: var(--body);
  font-size: 12px;
  font-weight: 600;
  background: #fff;
  border: 1px solid rgba(14,42,58,.2);
  color: var(--ink);
  padding: 7px 14px;
  border-radius: 18px;
  cursor: pointer;
  transition: all .2s ease;
}
.rev-chip:hover { border-color: var(--cyan-d); color: var(--cyan-d); }
.rev-chip.is-active {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.rev-photos {
  margin-bottom: 24px;
}
.rev-photos__label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 10px;
}
.rev-photos__row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
}
@media (max-width: 640px) { .rev-photos__row { grid-template-columns: repeat(3, 1fr); } }
.rev-photos__row > span {
  position: relative;
  aspect-ratio: 1/1;
  background-size: cover;
  background-position: center;
  border-radius: 3px;
  cursor: pointer;
  transition: filter .2s ease;
}
.rev-photos__row > span:hover { filter: brightness(1.08); }
.rev-photos__row > span > em {
  position: absolute; inset: 0;
  background: rgba(14,42,58,.65);
  color: #fff;
  display: grid; place-items: center;
  font-style: normal;
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -0.01em;
  border-radius: 3px;
}

.rev-list { display: flex; flex-direction: column; gap: 16px; margin-bottom: 20px; }
.rev-card {
  padding: 18px 20px;
  border: 1px solid rgba(14,42,58,.1);
  border-radius: 4px;
  background: #fff;
}
.rev-card > header {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  gap: 12px;
  align-items: center;
  margin-bottom: 10px;
}
.rev-card__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  color: #fff;
  display: grid; place-items: center;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.04em;
}
.rev-card__who strong {
  display: block;
  font-size: 13.5px;
  color: var(--ink);
  font-weight: 700;
}
.rev-card__who span {
  display: block;
  font-size: 11px;
  color: var(--ink-soft);
  margin-top: 1px;
}
.rev-card__meta { text-align: right; }
.rev-card__stars {
  display: block;
  color: var(--cyan-d);
  font-size: 13px;
  letter-spacing: 1px;
  line-height: 1;
}
.rev-card__date {
  display: block;
  font-size: 10.5px;
  color: var(--ink-soft);
  margin-top: 4px;
  letter-spacing: 0.04em;
}
.rev-card h4 {
  font-family: var(--body);
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
  margin: 4px 0 6px;
  line-height: 1.3;
}
.rev-card > p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink);
  margin: 0;
}
.rev-card > footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(14,42,58,.06);
  font-size: 11.5px;
  color: var(--ink-soft);
}
.rev-card > footer strong { color: var(--ink); font-weight: 600; }
.rev-card__helpful {
  font-family: var(--body);
  font-size: 11.5px;
  font-weight: 600;
  color: var(--ink);
  background: transparent;
  border: 1px solid rgba(14,42,58,.2);
  border-radius: 18px;
  padding: 6px 12px;
  cursor: pointer;
  transition: all .2s ease;
}
.rev-card__helpful:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.rev-pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  padding-top: 14px;
  border-top: 1px solid rgba(14,42,58,.08);
}
.rev-pagination__info {
  font-size: 11.5px;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
}

/* =========== TOUR FILTER BAR =========== */
.tour-filters {
  padding: 18px 0 6px;
  background: #fff;
  border-bottom: 1px solid rgba(14,42,58,.08);
  position: sticky;
  top: 0;
  z-index: 20;
}
.tour-filters__bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  align-items: end;
  padding: 10px 0;
}
.tour-filters__field {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1 1 140px;
  min-width: 140px;
}
.tour-filters__field > span {
  font-family: var(--body);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.tour-filters__field select {
  font-family: var(--body);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(14,42,58,.18);
  border-radius: 2px;
  padding: 9px 30px 9px 12px;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'><path fill='%230E2A3A' d='M0 0l5 6 5-6z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
  cursor: pointer;
  transition: border-color .2s ease;
}
.tour-filters__field select:focus { outline: none; border-color: var(--cyan-d); }
.tour-filters__reset {
  font-family: var(--body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  background: transparent;
  border: 1px solid rgba(14,42,58,.18);
  border-radius: 2px;
  padding: 10px 16px;
  cursor: pointer;
  transition: all .2s ease;
}
.tour-filters__reset:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.tour-filters__count {
  font-family: var(--body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-left: auto;
  align-self: center;
}
.variation.is-empty { display: none; }
.provider-card.is-hidden { display: none; }
@media (max-width: 720px) {
  .tour-filters { position: static; }
  .tour-filters__count { margin-left: 0; width: 100%; }
}

/* =========== TOUR VARIATIONS / PROVIDER GRID =========== */
.variations {
  padding: clamp(60px, 8vw, 120px) 0;
}
.variation {
  margin-bottom: 48px;
}
.variation:last-child { margin-bottom: 0; }
.variation.section {
  padding: 36px 0 40px;
}
.variation.section + .variation.section { padding-top: 12px; }
.variation__head {
  display: flex;
  align-items: end;
  gap: 24px;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 14px;
}
.variation__num {
  font-family: var(--display-accent);
  font-size: 56px;
  line-height: 0.85;
  color: var(--brick);
}
.variation__title {
  flex: 1;
  font-family: var(--display);
  font-variation-settings: "SOFT" 30, "opsz" 144;
  font-weight: 400;
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 0.95;
  margin: 0;
  letter-spacing: -0.02em;
}
.variation__title em {
  font-family: var(--italic);
  font-style: italic;
  color: var(--brick);
}
.variation__count {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ink-soft);
  font-weight: 600;
}

/* Provider grid (both legacy .provider-grid and BEM .provider__grid supported) */
.provider-grid,
.provider__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 1100px) { .provider-grid, .provider__grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 820px)  { .provider-grid, .provider__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px)  { .provider-grid, .provider__grid { grid-template-columns: 1fr; } }

/* Gray-Line-style provider card */
.provider-card {
  position: relative;
  background: #fff;
  border: 1px solid rgba(14,42,58,.10);
  border-radius: 3px;
  box-shadow: 0 2px 8px rgba(14,42,58,.06);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
}
.provider-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px -12px rgba(14,42,58,.25);
}
.provider-card__media {
  display: block;
  aspect-ratio: 16 / 10;
  background-size: cover;
  background-position: center;
  position: relative;
  transition: transform .6s ease;
}
.provider-card:hover .provider-card__media { transform: scale(1.04); }
.provider-card__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,42,58,0) 55%, rgba(14,42,58,.55) 100%);
  pointer-events: none;
}
/* ---- popularity badge ---- */
.provider-card__badge {
  position: absolute;
  top: 12px; left: 12px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--body);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 10px 6px 10px;
  color: #fff;
  background: var(--ink);
  border-radius: 2px;
  box-shadow: 0 2px 6px rgba(14,42,58,.28);
  line-height: 1;
}
.provider-card__badge::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--brass);
  border-radius: 50%;
  display: inline-block;
}
.provider-card__badge--best-seller { background: #B03E2E; }         /* brick red */
.provider-card__badge--best-seller::before { background: #FFD36B; }
.provider-card__badge--editor-s-pick { background: #0E2A3A; }       /* navy */
.provider-card__badge--editor-s-pick::before { background: var(--brass); }
.provider-card__badge--popular { background: var(--cyan-d); }       /* logo cyan */
.provider-card__badge--popular::before { background: #fff; }
.provider-card__badge--staff-favorite { background: #5B2A4E; }      /* plum */
.provider-card__badge--staff-favorite::before { background: #F7D58A; }
.provider-card__badge--new { background: #E07A1F; }                 /* orange */
.provider-card__badge--new::before { background: #fff; }
.provider-card__body {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.provider-card__head { display: flex; flex-direction: column; gap: 8px; }
.provider-card__title {
  font-family: var(--display);
  font-variation-settings: "SOFT" 30, "opsz" 96;
  font-weight: 600;
  font-size: 15px;
  margin: 0;
  letter-spacing: 0.02em;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--ink);
}
.provider-card__provider {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 12px;
}
.provider-card__company {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 10.5px;
  color: #E07A1F;
}
.provider-card__rating {
  font-size: 12px;
  color: var(--ink);
  font-weight: 700;
}
.provider-card__star {
  color: var(--cyan-d);
  margin-right: 2px;
}
.provider-card__rating a {
  color: var(--ink);
  font-weight: 500;
  text-decoration: underline;
  margin-left: 2px;
}
.provider-card__rating a:hover { color: var(--cyan-d); }
.provider-card__price {
  display: flex;
  align-items: center;
  gap: 8px;
  border-top: 1px solid rgba(14,42,58,.08);
  padding-top: 12px;
}
.provider-card__price .from {
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-family: var(--body);
  font-weight: 600;
}
.provider-card__price .num {
  font-family: var(--body);
  font-weight: 700;
  font-size: 22px;
  color: #D02F2F;
  line-height: 1;
  letter-spacing: -0.005em;
}
.provider-card__price .was {
  font-family: var(--body);
  font-size: 16px;
  font-weight: 600;
  color: #9A9A9A;
  text-decoration: line-through;
  text-decoration-color: #9A9A9A;
  text-decoration-thickness: 1.5px;
  letter-spacing: -0.01em;
  margin-left: 6px;
  line-height: 1;
}
.provider-card__price .save {
  font-family: var(--body);
  font-size: 10px;
  background: #D02F2F;
  color: #fff;
  padding: 4px 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-left: auto;
  border-radius: 2px;
}
/* legacy .sale alias for any server-rendered markup */
.provider-card__price .sale {
  font-family: var(--body);
  font-size: 10px;
  background: #D02F2F;
  color: #fff;
  padding: 4px 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-left: auto;
  border-radius: 2px;
}
.provider-card__meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 16px;
  font-size: 11px;
  letter-spacing: 0.03em;
  color: var(--ink);
  padding: 12px 0;
  border-top: 1px solid rgba(14,42,58,.08);
  border-bottom: 1px solid rgba(14,42,58,.08);
}
.provider-card__meta strong {
  display: block;
  font-weight: 700;
  color: var(--ink-soft);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 3px;
}
.provider-card__cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 4px;
}
.provider-card__cancel {
  margin: 6px 0 0;
  font-size: 10.5px;
  letter-spacing: .04em;
  color: var(--ink);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
}
.provider-card__cancel-dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px; height: 14px;
  background: var(--ink);
  color: #fff;
  border-radius: 50%;
  font-size: 9px;
  font-weight: 700;
  flex: 0 0 14px;
}
.provider-card__cta .btn {
  padding: 11px 14px;
  font-size: 11px;
  letter-spacing: 0.1em;
  box-shadow: none;
  border-radius: 2px;
  text-align: center;
  justify-content: center;
}
.provider-card__cta .btn--primary,
.provider-card .btn--primary {
  background: var(--cyan-d) !important;
  color: #fff !important;
  border: 1px solid var(--cyan-d) !important;
  font-weight: 700;
  box-shadow: none !important;
}
.provider-card__cta .btn--primary:hover,
.provider-card .btn--primary:hover {
  background: var(--cyan) !important;
  border-color: var(--cyan) !important;
  transform: none !important;
}
.provider-card__cta .btn--ghost,
.provider-card .btn--ghost {
  background: #fff !important;
  color: var(--ink) !important;
  border: 1px solid var(--ink) !important;
  box-shadow: none !important;
}
.provider-card__cta .btn--ghost:hover,
.provider-card .btn--ghost:hover {
  background: var(--ink) !important;
  color: #fff !important;
  border-color: var(--ink) !important;
  transform: none !important;
}

/* Related carousel */
.related {
  padding: clamp(60px, 8vw, 100px) 0;
  background: var(--paper-2);
  border-top: 1px solid rgba(14,42,58,.12);
  border-bottom: 1px solid rgba(14,42,58,.12);
}

/* =========== UTILS =========== */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s ease, transform .8s ease;
}
[data-reveal].is-in {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .bluebook__grid { grid-template-columns: 1fr; gap: 50px; }
  .hero__strip { grid-template-columns: 1fr 1fr; }
  .hero__strip > div:nth-child(2) { border-right: 0; }
  .hero__strip > div:nth-child(1), .hero__strip > div:nth-child(2) {
    border-bottom: 1px solid rgba(14,42,58,.18);
  }
  .tour-banner__inner { grid-template-columns: 1fr; }
  .tour-banner__title { text-align: left; }
}

/* ============ COMING-SOON (Deals, Membership) ============ */
.coming-soon {
  min-height: 82vh;
  background-size: cover;
  background-position: center;
  color: var(--paper-2);
  display: flex;
  align-items: center;
  padding: 120px 0 100px;
}
.coming-soon__inner { max-width: 820px; text-align: center; margin: 0 auto; }
.coming-soon__eyebrow { color: var(--brass); }
.coming-soon h1 { color: var(--paper-2); margin: 18px 0 28px; }
.coming-soon h1 em { color: var(--brass); font-family: var(--italic); font-style: italic; font-weight: 400; }
.coming-soon__lede { font-size: clamp(17px, 1.4vw, 20px); color: rgba(255,249,235,.88); line-height: 1.55; }
.coming-soon__lede em { color: var(--brass); font-style: italic; }
.coming-soon__countdown {
  display: inline-flex; gap: 18px; align-items: baseline;
  margin: 36px 0 30px; padding: 16px 28px;
  border: 1px solid rgba(200,152,45,.35);
  background: rgba(14,42,58,.45);
  border-radius: 4px;
}
.coming-soon__countdown > span:first-child {
  font-family: var(--display-accent); font-size: 13px; letter-spacing: .18em; text-transform: uppercase; color: var(--brass);
}
.coming-soon__countdown [data-countdown] {
  font-family: var(--display-accent); font-size: 28px; color: var(--paper-2);
}
.coming-soon__countdown [data-countdown] span { margin: 0 4px; }
.coming-soon__countdown [data-countdown] small { display: block; font-size: 9px; letter-spacing: .18em; color: var(--brass); text-align: center; margin-top: 2px; }
.coming-soon__cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 22px; }
.coming-soon__tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 40px 0 28px;
  text-align: left;
}
.coming-soon__tiers article {
  background: rgba(250,243,228,.94);
  color: var(--ink);
  padding: 24px 22px 22px;
  border-radius: 3px;
  border-top: 3px solid var(--brass);
}
.coming-soon__tiers article.is-featured {
  background: var(--ink);
  color: var(--paper-2);
  border-top-color: var(--brick);
  transform: translateY(-8px);
  box-shadow: 0 30px 60px -20px rgba(14,42,58,.7);
}
.coming-soon__tiers h3 { font-family: var(--display-accent); font-size: 26px; margin-bottom: 8px; }
.coming-soon__tiers p { font-size: 14px; line-height: 1.5; opacity: .88; }

/* ============ CONTACT ============ */
.contact-hero {
  min-height: 48vh;
  background-size: cover; background-position: center;
  color: var(--paper-2);
  display: flex; align-items: center;
  padding: 110px 0 70px;
}
.contact-hero__inner { max-width: 820px; }
.contact-hero__inner .eyebrow { color: var(--brass); }
.contact-hero h1 { color: var(--paper-2); margin: 16px 0 20px; }
.contact-hero h1 em { color: var(--brass); font-family: var(--italic); font-style: italic; font-weight: 400; }
.contact-hero__lede { font-size: clamp(16px, 1.3vw, 19px); color: rgba(255,249,235,.86); }
.contact { padding: 90px 0; }
.contact__grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 72px;
  align-items: start;
}
.contact__info h3 { font-family: var(--display-accent); font-size: 30px; margin-bottom: 18px; color: var(--ink); }
.contact__info p { font-size: 15px; line-height: 1.7; margin-bottom: 18px; color: var(--ink-soft); }
.contact__info strong { color: var(--ink); font-weight: 600; display: block; margin-bottom: 2px; letter-spacing: .04em; }
.contact__info a { color: var(--brick); }
.contact__info a:hover { text-decoration: underline; }
.contact__social { margin-top: 22px; font-size: 13px; letter-spacing: .06em; }
.contact__form {
  background: var(--cream-card);
  border: 1px solid rgba(14,42,58,.12);
  padding: 38px 36px 34px;
  border-radius: 3px;
  box-shadow: var(--shadow-1);
  display: grid; gap: 18px;
}
.contact__form label {
  display: grid; gap: 6px;
  font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-soft);
}
.contact__form input,
.contact__form textarea,
.contact__form select {
  font-family: var(--body);
  font-size: 15px;
  padding: 12px 14px;
  background: var(--paper-2);
  border: 1px solid rgba(14,42,58,.16);
  border-radius: 2px;
  color: var(--ink);
  transition: border-color .2s ease;
}
.contact__form textarea { resize: vertical; min-height: 110px; }
.contact__form input:focus,
.contact__form textarea:focus,
.contact__form select:focus {
  outline: none; border-color: var(--brick);
}
.contact__form button { margin-top: 6px; justify-self: start; }

/* ============ BLOG ============ */
.blog-hero {
  padding: 110px 0 70px;
  text-align: center;
  background:
    radial-gradient(900px 360px at 50% -10%, rgba(200,152,45,.12), transparent 60%),
    var(--paper-2);
  border-bottom: 1px solid rgba(14,42,58,.1);
}
.blog-hero__inner { max-width: 840px; margin: 0 auto; }
.blog-hero__inner .eyebrow { color: var(--brick); }
.blog-hero h1 em { font-family: var(--italic); font-style: italic; font-weight: 400; color: var(--brick); }
.blog-hero__lede {
  margin-top: 22px;
  font-size: clamp(16px, 1.3vw, 19px);
  color: var(--ink-soft); line-height: 1.6;
  max-width: 640px; margin-left: auto; margin-right: auto;
}
.blog { padding: 90px 0 100px; }
.blog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 32px;
}
.blog-card {
  background: var(--cream-card);
  border: 1px solid rgba(14,42,58,.1);
  border-radius: 3px;
  overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-1);
  opacity: 0; animation: bb-rise .7s ease forwards;
  transition: transform .35s ease, box-shadow .35s ease;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); }
.blog-card__media {
  aspect-ratio: 16 / 10;
  background-size: cover; background-position: center;
  border-bottom: 3px solid var(--brass);
}
.blog-card__body { padding: 22px 24px 24px; display: flex; flex-direction: column; flex: 1; gap: 10px; }
.blog-card__date {
  font-family: var(--display-accent); font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--brick);
}
.blog-card__title {
  font-family: var(--display); font-weight: 500; font-size: 22px; line-height: 1.15; color: var(--ink);
}
.blog-card__excerpt { color: var(--ink-soft); font-size: 14px; line-height: 1.6; flex: 1; }
.blog-card__cta { display: flex; gap: 10px; margin-top: 12px; }
@keyframes bb-rise {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 900px) {
  .coming-soon__tiers { grid-template-columns: 1fr; }
  .coming-soon__tiers article.is-featured { transform: none; }
  .contact__grid { grid-template-columns: 1fr; gap: 40px; }
  .blog__grid { grid-template-columns: 1fr; }
}
@media (max-width: 1080px) and (min-width: 901px) {
  .blog__grid { grid-template-columns: repeat(2, 1fr); }
}
