.guide-page {
  background: #fffdf9;
}

.guide-site-header {
  position: absolute;
  background: #080808;
  box-shadow: 0 1px 0 rgba(255,255,255,.08);
}

.guide-site-header .main-nav a.is-current::after {
  right: 0;
}

.guide-hero {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: end;
  color: #fff;
  background-image: var(--guide-hero-image);
  background-position: center;
  background-size: cover;
  isolation: isolate;
}

.guide-hero__shade {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.8), rgba(0,0,0,.28) 65%, rgba(0,0,0,.42));
}

.guide-hero__content {
  padding-top: calc(var(--header-height) + 60px);
  padding-bottom: 64px;
}

.guide-hero h1 {
  max-width: 880px;
  margin: 0 0 18px;
  font-size: clamp(3.3rem, 7vw, 7rem);
  line-height: .98;
  letter-spacing: -.045em;
}

.guide-hero__content > p:last-child {
  max-width: 690px;
  margin: 0;
  color: rgba(255,255,255,.86);
  font-size: 1.05rem;
}

.guide-intro {
  padding: 60px 0 34px;
}

.guide-intro__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .78fr);
  align-items: end;
  gap: 70px;
}

.guide-intro h2 {
  margin: 0;
  font-size: clamp(2.3rem, 4vw, 4rem);
}

.guide-intro p {
  margin: 0 0 6px;
  color: var(--muted);
}

.guide-listing {
  padding: 20px 0 72px;
}

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

.guide-card {
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(190px, .8fr) minmax(0, 1.2fr);
  min-height: 290px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.guide-card--text-only {
  grid-template-columns: 1fr;
}

.guide-card__image {
  overflow: hidden;
  min-height: 100%;
  background: var(--cream-deep);
}

.guide-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.guide-card:hover .guide-card__image img {
  transform: scale(1.045);
}

.guide-card__content {
  display: flex;
  flex-direction: column;
  padding: 30px;
}

.guide-card__number {
  margin-bottom: 16px;
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 1.35rem;
}

.guide-card h2 {
  margin-bottom: 12px;
  font-size: clamp(1.75rem, 2.4vw, 2.5rem);
  line-height: 1.02;
}

.guide-card p {
  margin-bottom: 16px;
  color: var(--muted);
  font-size: .93rem;
  line-height: 1.65;
}

.guide-card__address {
  margin-top: auto;
  color: var(--ink) !important;
  font-size: .82rem !important;
  font-weight: 700;
}

.guide-card__link {
  width: fit-content;
  color: var(--gold);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.guide-card__link span {
  transition: transform var(--transition);
}

.guide-card__link:hover span {
  display: inline-block;
  transform: translateX(4px);
}

.guide-booking-cta {
  padding: 54px 0;
  color: #fff;
  background: var(--black-soft);
}

.guide-booking-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.guide-booking-cta h2 {
  max-width: 800px;
  margin-bottom: 10px;
  font-size: clamp(2.2rem, 4vw, 4rem);
}

.guide-booking-cta p:not(.eyebrow) {
  margin-bottom: 0;
  color: rgba(255,255,255,.7);
}

@media (max-width: 1100px) {
  .guide-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 960px) {
  .guide-site-header {
    position: absolute;
  }

  .guide-hero {
    min-height: 460px;
  }

  .guide-intro__inner {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (max-width: 680px) {
  .guide-hero {
    min-height: 410px;
  }

  .guide-hero__content {
    padding-bottom: 38px;
  }

  .guide-hero h1 {
    font-size: clamp(2.8rem, 13vw, 4rem);
  }

  .guide-intro {
    padding: 38px 0 22px;
  }

  .guide-listing {
    padding-bottom: 44px;
  }

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

  .guide-card__image {
    min-height: 210px;
  }

  .guide-card__content {
    padding: 24px;
  }

  .guide-booking-cta__inner {
    align-items: stretch;
    flex-direction: column;
  }

  .guide-booking-cta .button {
    width: 100%;
  }
}

.guide-site-header { background: #080808 !important; }
