:root {
  --paper: #f5f2eb;
  --paper-deep: #e9e3d8;
  --white: #ffffff;
  --ink: #1c2722;
  --muted: #667069;
  --forest: #254f3d;
  --forest-deep: #18382c;
  --sage: #dfe7df;
  --gold: #b5822c;
  --gold-soft: #f4e7c9;
  --clay: #98503b;
  --clay-soft: #f2dfd8;
  --sky: #dce8ea;
  --night: #172126;
  --night-soft: #26363d;
  --line: #d1cbc0;
  --shadow: 0 18px 50px rgba(22, 34, 28, 0.12);
  --content: 1180px;
  --header-height: 74px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

body,
button,
a {
  letter-spacing: 0;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-underline-offset: 3px;
}

p,
h1,
h2,
h3,
ol,
blockquote,
figure,
address {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  line-height: 1.08;
}

h1 {
  font-size: 64px;
}

h2 {
  font-size: 48px;
}

h3 {
  font-size: 26px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--white);
  color: var(--ink);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.book-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  padding: 10px 28px;
  border-bottom: 1px solid rgba(37, 79, 61, 0.14);
  background: rgba(245, 242, 235, 0.97);
  backdrop-filter: blur(14px);
}

.book-brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.book-brand img,
.footer-brand img {
  flex: 0 0 auto;
  border-radius: 50%;
  object-fit: cover;
}

.book-brand span,
.footer-brand span {
  display: grid;
  line-height: 1.2;
}

.book-brand strong,
.footer-brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
}

.book-brand small,
.footer-brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

.header-actions,
.cover-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
}

.quiet-link,
.primary-link,
.cover-actions a,
.button-row a,
.night-note > a,
.explore-grid article > div > a,
.essentials-grid article > a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 8px 13px;
  border: 1px solid currentColor;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
}

.primary-link {
  border-color: var(--forest);
  background: var(--forest);
  color: var(--white);
}

.quiet-link {
  color: var(--forest);
}

.book-cover {
  position: relative;
  min-height: 650px;
  height: calc(78vh - var(--header-height));
  max-height: 760px;
  overflow: hidden;
  background: var(--forest-deep);
  color: var(--white);
}

.cover-image,
.cover-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.cover-image {
  object-fit: cover;
  object-position: center 46%;
}

.cover-shade {
  background: rgba(13, 28, 21, 0.62);
}

.cover-copy {
  position: relative;
  z-index: 2;
  width: min(var(--content), calc(100% - 48px));
  margin: 0 auto;
  padding-top: 72px;
}

.cover-logo {
  width: 84px;
  height: 84px;
  margin-bottom: 22px;
  border: 4px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  object-fit: cover;
}

.kicker {
  margin-bottom: 10px;
  color: var(--clay);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.cover-copy .kicker {
  color: #f2d9a7;
}

.cover-copy h1 {
  max-width: 760px;
  margin-bottom: 20px;
}

.cover-intro {
  max-width: 650px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 19px;
}

.cover-actions a {
  min-height: 46px;
  border-color: rgba(255, 255, 255, 0.78);
  color: var(--white);
  font-size: 14px;
}

.cover-actions a:first-child {
  border-color: var(--gold-soft);
  background: var(--gold-soft);
  color: var(--ink);
}

.stay-ribbon {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  min-height: 96px;
  background: rgba(245, 242, 235, 0.97);
  color: var(--ink);
}

.stay-ribbon > span {
  display: grid;
  align-content: center;
  min-width: 0;
  padding: 16px 22px;
  border-right: 1px solid var(--line);
}

.stay-ribbon > span:last-child {
  border-right: 0;
}

.stay-ribbon small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.stay-ribbon strong {
  margin-top: 3px;
  overflow-wrap: anywhere;
  font-size: 15px;
}

.contents-section {
  width: min(var(--content), calc(100% - 48px));
  margin: 0 auto;
  padding: 96px 0 88px;
  scroll-margin-top: 150px;
}

.contents-heading {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 28px 64px;
  align-items: end;
  margin-bottom: 44px;
}

.contents-heading .kicker {
  grid-column: 1 / -1;
  margin-bottom: -18px;
}

.contents-heading h2 {
  margin-bottom: 0;
}

.contents-heading > p:last-child {
  max-width: 590px;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 18px;
}

.contents-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.contents-grid a {
  display: grid;
  min-height: 178px;
  align-content: space-between;
  padding: 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.46);
  text-decoration: none;
  transition: background 160ms ease, color 160ms ease;
}

.contents-grid a:hover,
.contents-grid a:focus-visible {
  background: var(--forest);
  color: var(--white);
}

.contents-grid a > span {
  color: var(--clay);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 700;
}

.contents-grid a:hover > span,
.contents-grid a:focus-visible > span {
  color: var(--gold-soft);
}

.contents-grid strong {
  align-self: end;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  line-height: 1.15;
}

.contents-grid small {
  margin-top: 7px;
  color: var(--muted);
  font-size: 12px;
}

.contents-grid a:hover small,
.contents-grid a:focus-visible small {
  color: rgba(255, 255, 255, 0.76);
}

.chapter-strip {
  position: sticky;
  top: var(--header-height);
  z-index: 40;
  display: flex;
  min-height: 49px;
  justify-content: center;
  gap: 4px;
  overflow-x: auto;
  padding: 6px 18px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  scrollbar-width: none;
}

.chapter-strip::-webkit-scrollbar {
  display: none;
}

.chapter-strip a {
  flex: 0 0 auto;
  min-height: 35px;
  padding: 7px 11px;
  border-radius: 3px;
  color: var(--forest);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

.chapter-strip a:hover,
.chapter-strip a:focus-visible {
  background: var(--sage);
}

.chapter {
  padding: 104px max(24px, calc((100% - var(--content)) / 2));
  scroll-margin-top: 118px;
}

.chapter-heading {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  gap: 20px 28px;
  align-items: start;
  margin-bottom: 58px;
}

.chapter-number {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border: 1px solid var(--forest);
  border-radius: 50%;
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  font-weight: 700;
}

.chapter-heading h2 {
  margin-bottom: 14px;
}

.chapter-heading > div > p:last-child {
  max-width: 690px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
}

.back-link {
  margin-top: 14px;
  color: var(--forest);
  font-size: 12px;
  font-weight: 700;
}

.location-chapter,
.food-chapter,
.buses-chapter {
  background: var(--white);
}

.location-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(320px, 0.8fr);
  gap: 28px;
  align-items: start;
}

.location-map {
  position: relative;
  min-height: 0;
  aspect-ratio: 1000 / 725;
  overflow: hidden;
  border: 1px solid #c7d2ca;
  border-radius: 6px;
  background: #e7ebe5;
}

.location-map-image {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.map-context-label {
  position: absolute;
  z-index: 7;
  padding: 5px 7px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 2px 7px rgba(20, 32, 28, 0.2);
  color: #25322d;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.15;
  pointer-events: none;
}

.map-airport-name {
  top: 54%;
  left: 23%;
  max-width: 120px;
}

.map-queens-name {
  top: 22%;
  left: 58%;
  white-space: nowrap;
  transform: rotate(-68deg);
  transform-origin: left center;
}

.bula-pin {
  position: absolute;
  top: 48.8%;
  left: 64.3%;
  z-index: 8;
  display: grid;
  width: 220px;
  padding: 14px 16px 14px 46px;
  border: 2px solid var(--forest);
  border-radius: 5px;
  background: var(--white);
  box-shadow: var(--shadow);
  text-decoration: none;
  transform: translate(-18px, -50%);
}

.pin-dot {
  position: absolute;
  top: 18px;
  left: 16px;
  width: 20px;
  height: 20px;
  border: 5px solid var(--white);
  border-radius: 50% 50% 50% 0;
  background: var(--clay);
  box-shadow: 0 0 0 2px var(--clay);
  transform: rotate(-45deg);
}

.bula-pin strong {
  font-size: 13px;
  line-height: 1.25;
}

.bula-pin small {
  margin-top: 4px;
  color: var(--clay);
  font-size: 10px;
  font-weight: 900;
}

.exact-pin-detail {
  display: grid;
  gap: 3px;
  margin: -4px 0 24px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.07);
}

.exact-pin-detail span {
  color: #f0d9a9;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.exact-pin-detail code {
  color: var(--white);
  font-family: Consolas, "Courier New", monospace;
  font-size: 12px;
}

.location-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.location-steps article {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 11px;
  min-width: 0;
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--paper);
}

.location-steps article > span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--white);
  font-size: 11px;
  font-weight: 900;
}

.location-steps strong {
  display: block;
  line-height: 1.35;
}

.location-steps p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.driver-card {
  display: flex;
  min-height: 530px;
  flex-direction: column;
  justify-content: center;
  padding: 38px;
  border-radius: 6px;
  background: var(--forest);
  color: var(--white);
}

.driver-card .kicker {
  color: #f0d9a9;
}

.driver-card h3 {
  margin-bottom: 20px;
  font-size: 30px;
}

.driver-card address {
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.78);
  font-style: normal;
}

.driver-card .button-row a {
  color: var(--white);
}

.driver-note {
  display: grid;
  gap: 2px;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.driver-note span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.arrival-grid,
.essentials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
}

.arrival-grid article,
.essentials-grid article {
  min-height: 250px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
}

.arrival-grid article > span,
.essentials-grid article > span {
  color: var(--clay);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.arrival-grid h3,
.essentials-grid h3 {
  margin: 16px 0 12px;
  font-size: 23px;
}

.arrival-grid p,
.essentials-grid p {
  color: var(--muted);
}

.arrival-grid article > a {
  color: var(--forest);
  font-size: 13px;
  font-weight: 700;
}

.apartment-chapter {
  background: var(--forest-deep);
  color: var(--white);
}

.light-heading .chapter-number {
  border-color: rgba(255, 255, 255, 0.62);
  color: var(--white);
}

.light-heading .kicker {
  color: #f0d9a9;
}

.light-heading > div > p:last-child,
.light-heading .back-link {
  color: rgba(255, 255, 255, 0.72);
}

.apartment-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.howto-item {
  display: grid;
  min-height: 245px;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  padding: 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.howto-item.tv-guide {
  min-height: 330px;
  grid-column: 1 / -1;
}

.item-number {
  color: #e2bd75;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
}

.howto-item h3 {
  margin-bottom: 14px;
}

.howto-item p,
.howto-item li {
  color: rgba(255, 255, 255, 0.74);
}

.howto-item ol {
  display: grid;
  max-width: 850px;
  gap: 8px;
  padding-left: 20px;
}

.howto-item a {
  color: #f0d9a9;
  font-size: 13px;
  font-weight: 700;
}

.fare-explainer {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  padding: 24px 28px;
  border-left: 4px solid var(--gold);
  background: var(--gold-soft);
}

.fare-explainer p {
  margin-bottom: 0;
  color: #62583e;
  font-size: 14px;
}

.area-heading {
  margin: 72px 0 26px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.area-heading h3 {
  margin-bottom: 0;
  font-size: 33px;
}

.venue-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.venue-grid.three-up {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.venue-card {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

.venue-card.featured-card {
  border-top: 4px solid var(--forest);
}

.venue-card.quick-card {
  border-top: 4px solid var(--clay);
}

.venue-card.coastal-card {
  border-top: 4px solid #4f7880;
  background: #f4f8f8;
}

.venue-card.marina-card {
  border-top: 4px solid var(--gold);
}

.venue-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
}

.venue-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 27px;
  padding: 4px 8px;
  border-radius: 3px;
  background: var(--sage);
  color: var(--forest-deep);
  font-size: 10px;
  font-weight: 800;
  line-height: 1.15;
}

.venue-tags span:nth-child(2) {
  background: var(--gold-soft);
  color: #684c16;
}

.venue-tags span:nth-child(3) {
  background: var(--sky);
  color: #2c5359;
}

.venue-card h3 {
  margin-bottom: 13px;
}

.venue-card > p {
  flex: 1;
  color: var(--muted);
}

.venue-card > small {
  display: block;
  min-height: 40px;
  margin-bottom: 14px;
  color: #4f5a54;
  font-size: 12px;
  font-weight: 700;
}

.venue-card .button-row a {
  color: var(--forest);
}

.nightlife-chapter {
  background: var(--night);
  color: var(--white);
}

.night-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 42px;
}

.night-gallery figure {
  position: relative;
  min-height: 300px;
  margin-bottom: 0;
  overflow: hidden;
  border-radius: 6px;
  background: var(--night-soft);
}

.night-gallery .gallery-wide {
  grid-column: 1 / -1;
  min-height: 470px;
}

.night-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.night-gallery .gallery-wide img {
  object-position: center;
}

.night-gallery figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 16px;
  background: rgba(12, 18, 21, 0.84);
}

.night-gallery figcaption a {
  color: rgba(255, 255, 255, 0.66);
  font-size: 10px;
}

.night-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.night-grid article {
  display: flex;
  min-height: 300px;
  flex-direction: column;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  background: var(--night-soft);
}

.night-grid h3 {
  margin-bottom: 12px;
}

.night-grid article > p {
  flex: 1;
  color: rgba(255, 255, 255, 0.72);
}

.night-grid article > small {
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 700;
}

.night-grid .button-row a,
.night-note > a {
  color: var(--white);
}

.night-note {
  display: grid;
  grid-template-columns: 1fr 1.8fr auto;
  gap: 20px;
  align-items: center;
  margin-top: 24px;
  padding: 24px 28px;
  border-left: 4px solid #dfb567;
  background: #2d3d43;
}

.night-note p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.transport-chapter {
  background: var(--sky);
}

.cab-feature {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 30px;
  padding: 42px;
  border-radius: 6px;
  background: var(--forest);
  color: var(--white);
}

.cab-feature .kicker {
  color: #f0d9a9;
}

.cab-feature h3 {
  margin-bottom: 16px;
  font-size: 42px;
}

.cab-feature p {
  color: rgba(255, 255, 255, 0.76);
}

.cab-feature blockquote {
  max-width: 680px;
  margin-bottom: 0;
  padding-left: 20px;
  border-left: 3px solid #e7c27c;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
}

.cab-contact {
  display: grid;
  align-content: center;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 5px;
}

.cab-contact > span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.cab-contact > strong {
  margin: 8px 0 20px;
  font-size: 29px;
}

.cab-contact .button-row a {
  color: var(--white);
}

.fare-guide-grid,
.bus-budget {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.fare-guide-grid article,
.bus-budget > div {
  display: grid;
  min-height: 126px;
  align-content: center;
  padding: 20px;
  border: 1px solid rgba(37, 79, 61, 0.18);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.68);
}

.fare-guide-grid span,
.bus-budget span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.fare-guide-grid strong,
.bus-budget strong {
  margin-top: 6px;
  color: var(--forest-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
}

.fare-guide-grid small {
  margin-top: 4px;
  color: var(--muted);
}

.fare-footnote {
  margin: 18px 0 0;
  color: #566760;
  font-size: 13px;
}

.bus-budget {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0 0 28px;
}

.bus-budget > div {
  min-height: 108px;
  background: var(--paper);
}

.timetable-stack {
  display: grid;
  gap: 26px;
}

.timetable-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.45fr) minmax(0, 1.55fr);
  gap: 28px;
  align-items: center;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
}

.timetable-copy {
  padding: 14px;
}

.timetable-copy h3 {
  margin-bottom: 14px;
  font-size: 34px;
}

.timetable-copy > p:not(.kicker) {
  color: var(--muted);
}

.timetable-copy > small {
  display: block;
  margin: 22px 0 16px;
  color: var(--forest);
  font-weight: 700;
}

.timetable-copy .button-row a {
  color: var(--forest);
}

.timetable-image {
  position: relative;
  display: block;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--white);
}

.timetable-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.timetable-image span {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 7px 10px;
  border-radius: 3px;
  background: rgba(28, 39, 34, 0.9);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
}

.bus-note {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 20px;
  margin-top: 26px;
  padding: 24px 28px;
  border-left: 4px solid var(--clay);
  background: var(--clay-soft);
}

.bus-note p {
  margin-bottom: 0;
  color: #6a493f;
  font-size: 14px;
}

.explore-chapter {
  background: var(--sage);
}

.explore-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.explore-grid article {
  display: grid;
  min-height: 330px;
  grid-template-columns: 0.9fr 1.1fr;
  overflow: hidden;
  border-radius: 6px;
  background: var(--white);
}

.explore-grid img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
}

.explore-grid article > div {
  display: flex;
  flex-direction: column;
  padding: 24px;
}

.explore-grid h3 {
  margin: 4px 0 12px;
  font-size: 24px;
}

.explore-grid p {
  flex: 1;
  color: var(--muted);
}

.explore-grid article > div > a {
  align-self: flex-start;
  color: var(--forest);
}

.help-chapter {
  background: var(--forest-deep);
  color: var(--white);
}

.essentials-grid {
  margin-top: 0;
}

.essentials-grid article {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.07);
}

.essentials-grid article > span {
  color: #f0d9a9;
}

.essentials-grid p {
  color: rgba(255, 255, 255, 0.7);
}

.essentials-grid article > a {
  color: var(--white);
}

.support-panel {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 30px;
  align-items: center;
  margin-top: 24px;
  padding: 38px;
  border-radius: 6px;
  background: var(--gold-soft);
  color: var(--ink);
}

.support-panel h3 {
  margin-bottom: 12px;
  font-size: 34px;
}

.support-panel p:not(.kicker) {
  margin-bottom: 0;
  color: #685f4b;
}

.support-number {
  display: grid;
  justify-items: start;
}

.support-number > strong {
  margin-bottom: 16px;
  color: var(--forest);
  font-size: 31px;
}

.support-number .button-row a {
  color: var(--forest);
}

.emergency-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.emergency-row a {
  display: grid;
  min-height: 116px;
  align-content: center;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.06);
  text-decoration: none;
}

.emergency-row span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.emergency-row strong {
  margin-top: 5px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
}

.useful-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  align-items: center;
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.useful-links span {
  color: rgba(255, 255, 255, 0.48);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.useful-links a {
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
}

.book-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 28px;
  align-items: center;
  padding: 34px max(24px, calc((100% - var(--content)) / 2));
  border-top: 1px solid var(--line);
  background: var(--paper-deep);
}

.book-footer p {
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
}

.book-footer > a:last-child {
  justify-self: end;
  color: var(--forest);
  font-size: 12px;
  font-weight: 700;
}

@media (max-width: 1050px) {
  h1 {
    font-size: 52px;
  }

  h2 {
    font-size: 42px;
  }

  .book-cover {
    min-height: 620px;
  }

  .contents-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .location-layout,
  .cab-feature,
  .support-panel {
    grid-template-columns: 1fr;
  }

  .driver-card {
    min-height: 0;
  }

  .venue-grid.three-up {
    grid-template-columns: 1fr;
  }

  .venue-grid.three-up .venue-card {
    min-height: 280px;
  }

  .timetable-card {
    grid-template-columns: 1fr;
  }

  .timetable-image {
    aspect-ratio: 16 / 10;
  }

  .explore-grid article {
    grid-template-columns: 1fr;
  }

  .explore-grid img {
    height: 250px;
    min-height: 250px;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 68px;
  }

  body {
    font-size: 15px;
  }

  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 35px;
  }

  h3 {
    font-size: 23px;
  }

  .book-header {
    padding: 8px 16px;
  }

  .book-brand img {
    width: 46px;
    height: 46px;
  }

  .book-brand strong {
    font-size: 17px;
  }

  .quiet-link {
    display: none;
  }

  .primary-link {
    min-height: 40px;
    padding: 8px 12px;
    font-size: 12px;
  }

  .book-cover {
    height: 650px;
    min-height: 650px;
  }

  .cover-image {
    object-position: 58% center;
  }

  .cover-copy {
    width: calc(100% - 32px);
    padding-top: 46px;
  }

  .cover-logo {
    width: 70px;
    height: 70px;
    margin-bottom: 18px;
  }

  .cover-intro {
    max-width: 520px;
    font-size: 16px;
  }

  .stay-ribbon {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-height: 132px;
  }

  .stay-ribbon > span {
    min-height: 66px;
    padding: 10px 14px;
    border-bottom: 1px solid var(--line);
  }

  .stay-ribbon > span:nth-child(2) {
    border-right: 0;
  }

  .stay-ribbon > span:nth-child(3),
  .stay-ribbon > span:nth-child(4) {
    border-bottom: 0;
  }

  .stay-ribbon strong {
    font-size: 12px;
  }

  .contents-section {
    width: calc(100% - 32px);
    padding: 72px 0 64px;
  }

  .contents-heading {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 30px;
  }

  .contents-heading .kicker {
    margin-bottom: 0;
  }

  .contents-heading > p:last-child {
    font-size: 16px;
  }

  .contents-grid a {
    min-height: 150px;
    padding: 18px;
  }

  .chapter-strip {
    justify-content: flex-start;
    padding-right: 12px;
    padding-left: 12px;
  }

  .chapter {
    padding: 76px 16px;
  }

  .chapter-heading {
    grid-template-columns: 56px 1fr;
    gap: 16px;
    margin-bottom: 42px;
  }

  .chapter-number {
    width: 52px;
    height: 52px;
    font-size: 19px;
  }

  .chapter-heading > div > p:last-child {
    font-size: 16px;
  }

  .chapter-heading .back-link {
    grid-column: 2;
    margin-top: -4px;
  }

  .location-map {
    min-height: 0;
  }

  .bula-pin {
    top: 48.8%;
    right: auto;
    left: 64.3%;
    width: 190px;
    min-width: 0;
    transform: translate(-18px, -50%);
  }

  .location-steps {
    grid-template-columns: 1fr;
  }

  .driver-card {
    padding: 28px;
  }

  .driver-card h3 {
    font-size: 27px;
  }

  .arrival-grid,
  .essentials-grid,
  .apartment-grid,
  .venue-grid,
  .night-grid,
  .fare-guide-grid,
  .bus-budget,
  .explore-grid,
  .emergency-row {
    grid-template-columns: 1fr;
  }

  .arrival-grid article,
  .essentials-grid article {
    min-height: 220px;
  }

  .howto-item.tv-guide {
    grid-column: auto;
  }

  .fare-explainer,
  .bus-note {
    grid-template-columns: 1fr;
  }

  .venue-card {
    min-height: 300px;
  }

  .night-gallery {
    grid-template-columns: 1fr;
  }

  .night-gallery .gallery-wide {
    grid-column: auto;
    min-height: 320px;
  }

  .night-gallery figure {
    min-height: 300px;
  }

  .night-note {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .cab-feature {
    padding: 28px;
  }

  .cab-feature h3 {
    font-size: 35px;
  }

  .cab-feature blockquote {
    font-size: 18px;
  }

  .timetable-card {
    padding: 14px;
  }

  .timetable-copy {
    padding: 10px;
  }

  .timetable-image {
    aspect-ratio: 4 / 3;
  }

  .explore-grid article {
    min-height: 0;
  }

  .support-panel {
    padding: 28px;
  }

  .support-number > strong {
    font-size: 26px;
  }

  .book-footer {
    grid-template-columns: 1fr auto;
  }

  .book-footer p {
    display: none;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 35px;
  }

  h2 {
    font-size: 31px;
  }

  .book-brand small {
    display: none;
  }

  .cover-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .cover-actions a {
    width: 100%;
  }

  .contents-grid {
    grid-template-columns: 1fr;
  }

  .contents-grid a {
    min-height: 126px;
  }

  .chapter-heading {
    grid-template-columns: 48px 1fr;
  }

  .chapter-number {
    width: 44px;
    height: 44px;
    font-size: 17px;
  }

  .location-map {
    min-height: 0;
  }

  .bula-pin {
    top: 48.8%;
    right: auto;
    left: 64.3%;
    width: 130px;
    padding: 12px 12px 12px 42px;
    transform: translate(-12px, -50%);
  }

  .bula-pin strong {
    font-size: 12px;
  }

  .map-context-label {
    padding: 4px 5px;
    font-size: 8px;
  }

  .map-airport-name {
    max-width: 88px;
  }

  .venue-card,
  .night-grid article {
    padding: 22px;
  }

  .night-gallery figcaption {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }

  .cab-contact > strong {
    font-size: 24px;
  }

  .timetable-image {
    aspect-ratio: 1 / 1;
  }

  .book-footer {
    grid-template-columns: 1fr;
  }

  .book-footer > a:last-child {
    justify-self: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
  }
}
