/* --------------------------------------------------------------
   Golden Circle Guide Page
   Matches Blog Hub / Articles visual system
-------------------------------------------------------------- */

body:has(.gc-guide-page) {
  background: var(--gc-bg-soft, #f3f5f9);
}

.gc-guide-page {
  width: 100%;
  background: var(--gc-bg-soft, #f3f5f9);
  color: var(--gc-text, #061b3a);
  font-family: var(--gc-font-body);

  --gc-guide-container: var(--gc-container, 1180px);
  --gc-guide-gutter: var(--gc-container-padding, clamp(20px, 4vw, 40px));
  --gc-guide-midnight: var(--gc-midnight, var(--gc-navy, #002b5c));
  --gc-guide-gold: var(--gc-gold, #d6a321);
  --gc-guide-heading: var(--gc-font-heading);
  --gc-guide-body: var(--gc-font-body);
  --gc-guide-nav-width: 264px;
}

/* --------------------------------------------------------------
   Shell (sidebar + content)
-------------------------------------------------------------- */

.gc-guide-shell {
  width: min(100% - calc(var(--gc-guide-gutter) * 2), 1400px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: var(--gc-guide-nav-width) minmax(0, 1fr);
  align-items: start;
  gap: clamp(24px, 3vw, 40px);
  padding-block: clamp(24px, 3vw, 36px) clamp(64px, 6vw, 96px);
}

/* --------------------------------------------------------------
   Sidebar navigation
-------------------------------------------------------------- */

.gc-guide-nav {
  position: sticky;
  top: clamp(16px, 2vw, 24px);
}

.gc-guide-nav__inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: #ffffff;
  border: 1px solid var(--gc-border, rgba(0, 37, 94, 0.12));
  border-radius: var(--gc-radius-lg, 24px);
  padding: 20px 16px;
  box-shadow: var(--gc-shadow-card, 0 14px 35px rgba(0, 37, 94, 0.08));
}

.gc-guide-nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 4px 4px 18px;
  border-bottom: 1px solid var(--gc-border, rgba(0, 37, 94, 0.12));
  text-decoration: none;
}

.gc-guide-nav__brand-mark {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
}

.gc-guide-nav__brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.gc-guide-nav__brand-text {
  display: flex;
  flex-direction: column;
}

.gc-guide-nav__brand-title {
  font-family: var(--gc-guide-heading);
  font-weight: 700;
  font-size: 0.98rem;
  line-height: 1.2;
  color: var(--gc-guide-midnight);
}

.gc-guide-nav__brand-subtitle {
  margin-top: 2px;
  font-family: var(--gc-guide-body);
  font-weight: 800;
  font-size: 0.64rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gc-guide-gold);
}

.gc-guide-nav__list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.gc-guide-nav__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: var(--gc-radius-sm, 10px);
  color: var(--gc-guide-midnight);
  font-family: var(--gc-guide-body);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.gc-guide-nav__item:hover,
.gc-guide-nav__item.is-active {
  background: var(--gc-guide-midnight);
  color: #ffffff;
}

.gc-guide-nav__item-icon {
  flex: 0 0 auto;
  display: inline-flex;
  width: 18px;
  height: 18px;
  color: var(--gc-muted, #5f6f86);
}

.gc-guide-nav__item-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.gc-guide-nav__item:hover .gc-guide-nav__item-icon,
.gc-guide-nav__item.is-active .gc-guide-nav__item-icon {
  color: var(--gc-guide-gold);
}

.gc-guide-nav__list:hover .gc-guide-nav__item.is-active:not(:hover) {
  background: transparent;
  color: var(--gc-guide-midnight);
}

.gc-guide-nav__list:hover .gc-guide-nav__item.is-active:not(:hover) .gc-guide-nav__item-icon {
  color: var(--gc-muted, #5f6f86);
}

/* --------------------------------------------------------------
   Content column
-------------------------------------------------------------- */

.gc-guide-content {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

/* --------------------------------------------------------------
   Hero
-------------------------------------------------------------- */

.gc-guide-hero {
  scroll-margin-top: 24px;
  font-family: var(--gc-guide-body);
}

.gc-guide-hero__image {
  position: relative;
  min-height: clamp(340px, 34vw, 460px);
  overflow: hidden;
  border-radius: var(--gc-radius-lg, 24px);
  background: var(--gc-guide-midnight);
}

.gc-guide-hero__img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.gc-guide-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(0, 31, 74, 0.82) 0%,
      rgba(0, 31, 74, 0.62) 40%,
      rgba(0, 31, 74, 0.24) 72%,
      rgba(0, 31, 74, 0.1) 100%
    ),
    linear-gradient(
      180deg,
      rgba(0, 31, 74, 0.05) 0%,
      rgba(0, 31, 74, 0.12) 55%,
      rgba(0, 31, 74, 0.4) 100%
    );
  pointer-events: none;
}

.gc-guide-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: clamp(48px, 7vw, 76px) clamp(28px, 4vw, 52px);
}

.gc-guide-hero__eyebrow {
  margin: 0 0 12px;
  color: var(--gc-guide-gold);
  font-family: var(--gc-guide-body);
  font-size: 0.8rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.gc-guide-hero__title {
  max-width: 520px;
  margin: 0;
  color: #ffffff;
  font-family: var(--gc-guide-heading);
  font-size: clamp(2.2rem, 3.6vw, 3.4rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.gc-guide-hero__subtitle {
  max-width: 460px;
  margin: clamp(16px, 1.8vw, 22px) 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--gc-guide-body);
  font-size: clamp(0.96rem, 1vw, 1.05rem);
  font-weight: 500;
  line-height: 1.6;
}

.gc-guide-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: clamp(22px, 2.4vw, 30px);
}

.gc-guide-hero__btn {
  gap: 8px;
}

.gc-guide-hero__btn-icon {
  width: 18px;
  height: 18px;
}

/* --------------------------------------------------------------
   Quick Facts
-------------------------------------------------------------- */

.gc-guide-facts {
  margin-top: 20px;
  background: #ffffff;
  border: 1px solid var(--gc-border, rgba(0, 37, 94, 0.12));
  border-radius: var(--gc-radius-lg, 24px);
  box-shadow: var(--gc-shadow-card, 0 14px 35px rgba(0, 37, 94, 0.08));
  font-family: var(--gc-guide-body);
}

.gc-guide-facts__inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gc-guide-fact {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 18px;
}

.gc-guide-fact + .gc-guide-fact {
  border-left: 1px solid var(--gc-border, rgba(0, 37, 94, 0.12));
}

.gc-guide-fact__icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--gc-bg-soft, #f3f5f9);
  color: var(--gc-guide-midnight);
}

.gc-guide-fact__icon svg {
  display: block;
  width: 19px;
  height: 19px;
}

.gc-guide-fact__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.gc-guide-fact__title {
  font-family: var(--gc-guide-body);
  font-size: 0.96rem;
  font-weight: 800;
  line-height: 1.3;
  color: var(--gc-guide-midnight);
}

.gc-guide-fact__subtitle {
  font-family: var(--gc-guide-body);
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.3;
  color: var(--gc-muted, #5f6f86);
}

/* --------------------------------------------------------------
   Main Attractions
-------------------------------------------------------------- */

.gc-guide-attractions {
  scroll-margin-top: 24px;
  margin-top: clamp(44px, 5vw, 64px);
}

.gc-guide-attractions__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: clamp(16px, 2vw, 22px);
}

.gc-guide-attractions__title {
  margin: 0;
  font-family: var(--gc-guide-heading);
  font-weight: 700;
  font-size: clamp(1.3rem, 1.8vw, 1.6rem);
  color: var(--gc-guide-midnight);
}

.gc-guide-attractions__all-icon {
  width: 13px;
  height: 13px;
}

.gc-guide-attractions__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 1.6vw, 20px);
}

.gc-guide-attractions__grid--main {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gc-guide-attractions__grid--optional {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gc-guide-attractions__grid--optional .gc-guide-attraction-card__image {
  aspect-ratio: 2 / 1;
}

.gc-guide-attractions__header--optional {
  margin-top: clamp(24px, 3vw, 32px);
}

.gc-guide-attractions__subtitle {
  margin: 0;
  font-family: var(--gc-guide-heading);
  font-weight: 700;
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: var(--gc-guide-midnight);
}

.gc-guide-attraction-card {
  display: flex;
  flex-direction: column;
}

.gc-guide-attraction-card__image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.gc-guide-attraction-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gc-guide-attraction-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 8px;
  padding: 22px 16px 18px;
}

.gc-guide-attraction-card__title {
  margin: 0;
  font-family: var(--gc-guide-heading);
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--gc-guide-midnight);
}

.gc-guide-attraction-card__description {
  flex: 1;
  margin: 0;
  font-family: var(--gc-guide-body);
  font-size: 0.85rem;
  line-height: 1.55;
  color: var(--gc-muted, #5f6f86);
}

.gc-guide-attraction-card__link {
  margin-top: 4px;
  font-size: 0.85rem;
}

.gc-guide-attraction-card__link-icon {
  width: 13px;
  height: 13px;
}

/* --------------------------------------------------------------
   Suggested Route
-------------------------------------------------------------- */

.gc-guide-route {
  scroll-margin-top: 24px;
  margin-top: clamp(44px, 5vw, 64px);
}

.gc-guide-route__title {
  margin: 0 0 clamp(16px, 2vw, 22px);
  font-family: var(--gc-guide-heading);
  font-weight: 700;
  font-size: clamp(1.3rem, 1.8vw, 1.6rem);
  color: var(--gc-guide-midnight);
}

.gc-guide-route__timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.gc-guide-route__step {
  position: relative;
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 14px;
  align-items: stretch;
}

.gc-guide-route__marker-col {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.gc-guide-route__marker-col::before,
.gc-guide-route__marker-col::after {
  content: "";
  flex: 1;
  width: 0;
  border-left: 2px dashed var(--gc-border, rgba(0, 37, 94, 0.12));
}

.gc-guide-route__step:first-child .gc-guide-route__marker-col::before,
.gc-guide-route__step:last-child .gc-guide-route__marker-col::after {
  border-left: none;
}

.gc-guide-route__marker {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gc-guide-midnight);
  color: #ffffff;
  font-family: var(--gc-guide-body);
  font-weight: 800;
  font-size: 0.92rem;
}

.gc-guide-route__card {
  display: flex;
  align-items: stretch;
  gap: 20px;
  min-width: 0;
  margin-bottom: 18px;
  padding: 18px 20px;
  background: #ffffff;
  border: 1px solid var(--gc-border, rgba(0, 37, 94, 0.12));
  border-radius: var(--gc-radius-lg, 24px);
  box-shadow: var(--gc-shadow-card, 0 14px 35px rgba(0, 37, 94, 0.08));
}

.gc-guide-route__step:last-child .gc-guide-route__card {
  margin-bottom: 0;
}

.gc-guide-route__body {
  flex: 1;
  min-width: 0;
}

.gc-guide-route__heading {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.gc-guide-route__step-title {
  margin: 0;
  font-family: var(--gc-guide-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--gc-guide-midnight);
}

.gc-guide-route__badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 999px;
  font-family: var(--gc-guide-body);
  font-weight: 800;
  font-size: 0.7rem;
  white-space: nowrap;
}

.gc-guide-route__badge--start,
.gc-guide-route__badge--main {
  background: rgba(0, 43, 92, 0.1);
  color: var(--gc-guide-midnight);
}

.gc-guide-route__badge--optional {
  background: rgba(214, 163, 33, 0.16);
  color: #7a5b0e;
}

.gc-guide-route__badge--end {
  background: var(--gc-bg-soft, #f3f5f9);
  color: var(--gc-muted, #5f6f86);
}

.gc-guide-route__time {
  margin: 6px 0 0;
  font-family: var(--gc-guide-body);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--gc-guide-midnight);
}

.gc-guide-route__description {
  margin: 8px 0 0;
  font-family: var(--gc-guide-body);
  font-size: 0.85rem;
  line-height: 1.55;
  color: var(--gc-muted, #5f6f86);
}

.gc-guide-route__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.gc-guide-route__tag {
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--gc-bg-soft, #f3f5f9);
  font-family: var(--gc-guide-body);
  font-weight: 700;
  font-size: 0.76rem;
  color: var(--gc-guide-midnight);
}

.gc-guide-route__meta {
  flex: 0 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  align-self: center;
  padding-inline: 18px;
}

.gc-guide-route__meta-icon {
  display: inline-flex;
  width: 18px;
  height: 18px;
  color: var(--gc-guide-midnight);
}

.gc-guide-route__meta-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.gc-guide-route__meta-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.gc-guide-route__meta-duration {
  font-family: var(--gc-guide-body);
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--gc-guide-midnight);
}

.gc-guide-route__meta-distance {
  font-family: var(--gc-guide-body);
  font-size: 0.78rem;
  color: var(--gc-muted, #5f6f86);
}

.gc-guide-route__image {
  flex: 0 0 168px;
  aspect-ratio: 4 / 3;
  border-radius: var(--gc-radius-md, 16px);
  overflow: hidden;
}

.gc-guide-route__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --------------------------------------------------------------
   Driving Times
-------------------------------------------------------------- */

.gc-guide-driving {
  scroll-margin-top: 24px;
  margin-top: clamp(44px, 5vw, 64px);
}

.gc-guide-driving__title {
  margin: 0 0 clamp(16px, 2vw, 22px);
  font-family: var(--gc-guide-heading);
  font-weight: 700;
  font-size: clamp(1.3rem, 1.8vw, 1.6rem);
  color: var(--gc-guide-midnight);
}

/* --------------------------------------------------------------
   Weather & Roads
-------------------------------------------------------------- */

.gc-guide-weather {
  scroll-margin-top: 24px;
  margin-top: clamp(44px, 5vw, 64px);
}

.gc-guide-weather__title {
  margin: 0 0 clamp(16px, 2vw, 22px);
  font-family: var(--gc-guide-heading);
  font-weight: 700;
  font-size: clamp(1.3rem, 1.8vw, 1.6rem);
  color: var(--gc-guide-midnight);
}

.gc-guide-weather__highlights {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 24px;
}

.gc-guide-weather-highlight {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: #ffffff;
  border: 1px solid var(--gc-border, rgba(0, 37, 94, 0.12));
  border-radius: var(--gc-radius-lg, 24px);
  box-shadow: var(--gc-shadow-card, 0 14px 35px rgba(0, 37, 94, 0.08));
}

.gc-guide-weather-highlight__icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gc-bg-soft, #f3f5f9);
  color: var(--gc-guide-midnight);
}

.gc-guide-weather-highlight__icon svg {
  display: block;
  width: 18px;
  height: 18px;
}

.gc-guide-weather-highlight__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.gc-guide-weather-highlight__title {
  font-family: var(--gc-guide-body);
  font-weight: 800;
  font-size: 0.88rem;
  line-height: 1.3;
  color: var(--gc-guide-midnight);
}

.gc-guide-weather-highlight__subtitle {
  font-family: var(--gc-guide-body);
  font-size: 0.76rem;
  line-height: 1.35;
  color: var(--gc-muted, #5f6f86);
}

.gc-guide-weather-card {
  margin-bottom: 24px;
  padding: 22px;
  background: #ffffff;
  border: 1px solid var(--gc-border, rgba(0, 37, 94, 0.12));
  border-radius: var(--gc-radius-lg, 24px);
  box-shadow: var(--gc-shadow-card, 0 14px 35px rgba(0, 37, 94, 0.08));
}

.gc-guide-weather-card__title {
  margin: 0 0 16px;
  font-family: var(--gc-guide-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--gc-guide-midnight);
}

/* --------------------------------------------------------------
   Shared mobile "swipe to scroll" hint for wide tables
-------------------------------------------------------------- */

.gc-guide-table-swipe-hint {
  display: none;
  align-items: center;
  gap: 8px;
  margin: 0 0 10px;
  font-family: var(--gc-guide-body);
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--gc-guide-midnight);
  opacity: 0.85;
}

.gc-guide-table-swipe-hint__icon {
  flex: 0 0 auto;
  font-size: 0.9rem;
  color: var(--gc-guide-gold);
}

@media (max-width: 768px) {
  .gc-guide-table-swipe-hint {
    display: flex;
  }
}

.gc-guide-weather-table-scroll {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.gc-guide-weather-table {
  width: 100%;
  min-width: 560px;
  table-layout: fixed;
  border-collapse: collapse;
  font-family: var(--gc-guide-body);
}

.gc-guide-weather-table--center {
  text-align: center;
}

.gc-guide-weather-table__th {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.gc-guide-weather-table__th--center {
  justify-content: center;
}

.gc-guide-weather-table__th-icon {
  display: inline-flex;
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  color: var(--gc-guide-gold);
}

.gc-guide-weather-table__th-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.gc-guide-weather-table th,
.gc-guide-weather-table td {
  padding: 10px 12px;
  border: 1px solid var(--gc-border, rgba(0, 37, 94, 0.12));
  font-size: 0.85rem;
  line-height: 1.4;
  color: var(--gc-guide-midnight);
  text-align: left;
}

.gc-guide-weather-table thead th {
  font-weight: 800;
  background: var(--gc-bg-soft, #f3f5f9);
}

.gc-guide-weather-table tbody tr:nth-child(even) td {
  background: var(--gc-bg-soft, #f3f5f9);
}

.gc-guide-weather-table__month {
  font-weight: 700;
}

.gc-guide-weather-drivers {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.gc-guide-weather-driver-tip {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.gc-guide-weather-driver-tip__icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gc-bg-soft, #f3f5f9);
  color: var(--gc-guide-midnight);
}

.gc-guide-weather-driver-tip__icon svg {
  display: block;
  width: 18px;
  height: 18px;
}

.gc-guide-weather-driver-tip__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.gc-guide-weather-driver-tip__title {
  font-family: var(--gc-guide-body);
  font-weight: 800;
  font-size: 0.86rem;
  line-height: 1.3;
  color: var(--gc-guide-midnight);
}

.gc-guide-weather-driver-tip__subtitle {
  font-family: var(--gc-guide-body);
  font-size: 0.76rem;
  line-height: 1.4;
  color: var(--gc-muted, #5f6f86);
}

.gc-guide-weather-footnote {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 16px 20px;
  background: var(--gc-bg-soft, #f3f5f9);
  border-radius: var(--gc-radius-lg, 24px);
  font-family: var(--gc-guide-body);
  font-size: 0.85rem;
  color: var(--gc-guide-midnight);
}

.gc-guide-weather-footnote__icon {
  flex: 0 0 auto;
  display: inline-flex;
  width: 20px;
  height: 20px;
  color: var(--gc-guide-midnight);
}

.gc-guide-weather-footnote__icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.gc-guide-weather-footnote a {
  color: var(--gc-guide-midnight);
  font-weight: 800;
  text-decoration: underline;
}

.gc-guide-weather-footnote a:hover {
  color: var(--gc-guide-gold);
}

/* --------------------------------------------------------------
   Opening Hours
-------------------------------------------------------------- */

.gc-guide-hours {
  scroll-margin-top: 24px;
  margin-top: clamp(44px, 5vw, 64px);
}

.gc-guide-hours__title {
  margin: 0 0 8px;
  font-family: var(--gc-guide-heading);
  font-weight: 700;
  font-size: clamp(1.3rem, 1.8vw, 1.6rem);
  color: var(--gc-guide-midnight);
}

.gc-guide-hours__checked {
  margin: 0 0 clamp(16px, 2vw, 22px);
  font-family: var(--gc-guide-body);
  font-size: 0.8rem;
  font-style: italic;
  color: var(--gc-muted, #5f6f86);
}

.gc-guide-hours__input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.gc-guide-hours__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.gc-guide-hours__tab {
  display: inline-flex;
  align-items: center;
  padding: 9px 18px;
  border: 1px solid var(--gc-border, rgba(0, 37, 94, 0.16));
  border-radius: 999px;
  background: #ffffff;
  color: var(--gc-guide-midnight);
  font-family: var(--gc-guide-body);
  font-weight: 800;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

#gc-hours-tab-attractions:checked ~ .gc-guide-hours__tabs label[for="gc-hours-tab-attractions"],
#gc-hours-tab-food:checked ~ .gc-guide-hours__tabs label[for="gc-hours-tab-food"],
#gc-hours-tab-pools:checked ~ .gc-guide-hours__tabs label[for="gc-hours-tab-pools"] {
  background: var(--gc-guide-midnight);
  border-color: var(--gc-guide-midnight);
  color: #ffffff;
}

.gc-guide-hours-card {
  width: 100%;
  box-sizing: border-box;
  padding: 22px;
  background: #ffffff;
  border: 1px solid var(--gc-border, rgba(0, 37, 94, 0.12));
  border-radius: var(--gc-radius-lg, 24px);
  box-shadow: var(--gc-shadow-card, 0 14px 35px rgba(0, 37, 94, 0.08));
}

.gc-guide-hours__panel {
  display: none;
}

#gc-hours-tab-attractions:checked ~ .gc-guide-hours-card .gc-guide-hours__panel--attractions,
#gc-hours-tab-food:checked ~ .gc-guide-hours-card .gc-guide-hours__panel--food,
#gc-hours-tab-pools:checked ~ .gc-guide-hours-card .gc-guide-hours__panel--pools {
  display: block;
}

.gc-guide-hours-table-scroll {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.gc-guide-hours-table {
  width: 100%;
  min-width: 720px;
  table-layout: fixed;
  border-collapse: collapse;
  font-family: var(--gc-guide-body);
}

.gc-guide-hours-table th,
.gc-guide-hours-table td {
  padding: 12px;
  border: 1px solid var(--gc-border, rgba(0, 37, 94, 0.12));
  vertical-align: top;
  text-align: left;
  font-size: 0.85rem;
  line-height: 1.4;
  color: var(--gc-guide-midnight);
}

.gc-guide-hours-table thead th {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--gc-guide-midnight);
  background: var(--gc-bg-soft, #f3f5f9);
}

.gc-guide-hours-table__sub {
  font-weight: 500;
  font-size: 0.72rem;
  color: var(--gc-muted, #5f6f86);
}

.gc-guide-hours-table--center {
  text-align: center;
}

.gc-guide-hours-table__note {
  display: inline-block;
  margin-top: 3px;
  font-size: 0.76rem;
  font-weight: 500;
  color: var(--gc-muted, #5f6f86);
}

.gc-guide-hours-table tbody tr:nth-child(even) td {
  background: var(--gc-bg-soft, #f3f5f9);
}

.gc-guide-hours-place {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.gc-guide-hours-place__avatar {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gc-bg-soft, #f3f5f9);
  color: var(--gc-guide-midnight);
  overflow: hidden;
}

.gc-guide-hours-place__avatar svg {
  display: block;
  width: 20px;
  height: 20px;
}

.gc-guide-hours-place__avatar--photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gc-guide-hours-place__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.gc-guide-hours-place__name {
  font-weight: 800;
  font-size: 0.92rem;
  color: var(--gc-guide-midnight);
}

.gc-guide-hours-place__category {
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--gc-guide-gold);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.gc-guide-hours-place__meta {
  font-size: 0.78rem;
  color: var(--gc-muted, #5f6f86);
}

.gc-guide-hours-place__link {
  font-size: 0.78rem;
  color: var(--gc-guide-midnight);
  font-weight: 700;
  text-decoration: underline;
}

.gc-guide-hours-place__link:hover {
  color: var(--gc-guide-gold);
}


/* --------------------------------------------------------------
   Parking & Fees
-------------------------------------------------------------- */

.gc-guide-parking {
  scroll-margin-top: 24px;
  margin-top: clamp(44px, 5vw, 64px);
}

.gc-guide-parking__title {
  margin: 0 0 8px;
  font-family: var(--gc-guide-heading);
  font-weight: 700;
  font-size: clamp(1.3rem, 1.8vw, 1.6rem);
  color: var(--gc-guide-midnight);
}

.gc-guide-parking__checked {
  margin: 0 0 clamp(16px, 2vw, 22px);
  font-family: var(--gc-guide-body);
  font-size: 0.8rem;
  font-style: italic;
  color: var(--gc-muted, #5f6f86);
}

.gc-guide-parking__highlights {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 24px;
}

.gc-guide-parking-highlight {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: #ffffff;
  border: 1px solid var(--gc-border, rgba(0, 37, 94, 0.12));
  border-radius: var(--gc-radius-lg, 24px);
  box-shadow: var(--gc-shadow-card, 0 14px 35px rgba(0, 37, 94, 0.08));
}

.gc-guide-parking-highlight__icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gc-bg-soft, #f3f5f9);
  color: var(--gc-guide-midnight);
}

.gc-guide-parking-highlight__icon svg {
  display: block;
  width: 18px;
  height: 18px;
}

.gc-guide-parking-highlight__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.gc-guide-parking-highlight__title {
  font-family: var(--gc-guide-body);
  font-weight: 800;
  font-size: 0.88rem;
  line-height: 1.3;
  color: var(--gc-guide-midnight);
}

.gc-guide-parking-highlight__subtitle {
  font-family: var(--gc-guide-body);
  font-size: 0.76rem;
  line-height: 1.35;
  color: var(--gc-muted, #5f6f86);
}

.gc-guide-parking__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 20px;
  align-items: stretch;
}

.gc-guide-parking-card--table {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.gc-guide-parking__aside {
  height: 100%;
}

.gc-guide-parking__aside {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.gc-guide-parking-card {
  width: 100%;
  box-sizing: border-box;
  padding: 22px;
  background: #ffffff;
  border: 1px solid var(--gc-border, rgba(0, 37, 94, 0.12));
  border-radius: var(--gc-radius-lg, 24px);
  box-shadow: var(--gc-shadow-card, 0 14px 35px rgba(0, 37, 94, 0.08));
}

.gc-guide-parking-card__title {
  margin: 0 0 16px;
  font-family: var(--gc-guide-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--gc-guide-midnight);
}

.gc-guide-parking-card__title--icon {
  display: flex;
  align-items: center;
  gap: 10px;
}

.gc-guide-parking-card__title-icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--gc-bg-soft, #f3f5f9);
  color: var(--gc-guide-midnight);
}

.gc-guide-parking-card__title-icon svg {
  display: block;
  width: 15px;
  height: 15px;
}

.gc-guide-parking-card__text {
  margin: 0 0 18px;
  font-family: var(--gc-guide-body);
  font-size: 0.85rem;
  line-height: 1.55;
  color: var(--gc-muted, #5f6f86);
}

.gc-guide-parking-table-scroll {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.gc-guide-parking-table {
  width: 100%;
  min-width: 620px;
  table-layout: fixed;
  border-collapse: collapse;
  font-family: var(--gc-guide-body);
}

.gc-guide-parking-table__note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 14px 0 0;
  font-family: var(--gc-guide-body);
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--gc-muted, #5f6f86);
}

.gc-guide-parking-table__note-bullet {
  flex: 0 0 auto;
  width: 6px;
  height: 6px;
  margin-top: 6px;
  border-radius: 50%;
  background: var(--gc-guide-gold);
}

.gc-guide-parking-table th,
.gc-guide-parking-table td {
  padding: 12px;
  border: 1px solid var(--gc-border, rgba(0, 37, 94, 0.12));
  vertical-align: top;
  text-align: left;
  font-size: 0.82rem;
}

.gc-guide-parking-table thead th {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--gc-guide-midnight);
  background: var(--gc-bg-soft, #f3f5f9);
}

.gc-guide-parking-table tbody tr:nth-child(even) td {
  background: var(--gc-bg-soft, #f3f5f9);
}

.gc-guide-parking-place {
  display: flex;
  align-items: center;
  gap: 10px;
}

.gc-guide-parking-place__avatar {
  flex: 0 0 auto;
  display: inline-flex;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  overflow: hidden;
}

.gc-guide-parking-place__avatar img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gc-guide-parking-place__name {
  font-weight: 800;
  color: var(--gc-guide-midnight);
}

.gc-guide-parking-availability {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--gc-muted, #5f6f86);
}

.gc-guide-parking-availability__icon {
  flex: 0 0 auto;
  display: inline-flex;
  width: 16px;
  height: 16px;
  margin-top: 1px;
  color: var(--gc-guide-midnight);
}

.gc-guide-parking-availability__icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.gc-guide-parking-amount {
  display: block;
  font-weight: 800;
  color: var(--gc-guide-midnight);
}

.gc-guide-parking-amount__sub {
  display: block;
  font-size: 0.74rem;
  color: var(--gc-muted, #5f6f86);
}

.gc-guide-parking-dash {
  color: var(--gc-muted, #5f6f86);
}

.gc-guide-parking-notes {
  color: var(--gc-muted, #5f6f86);
}

.gc-guide-parking-payment-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.gc-guide-parking-payment-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.gc-guide-parking-payment-item__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gc-bg-soft, #f3f5f9);
  color: var(--gc-guide-midnight);
}

.gc-guide-parking-payment-item__icon svg {
  display: block;
  width: 18px;
  height: 18px;
}

.gc-guide-parking-payment-item__label {
  font-family: var(--gc-guide-body);
  font-size: 0.74rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--gc-guide-midnight);
}

.gc-guide-parking-tips {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.gc-guide-parking-tips__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--gc-guide-body);
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--gc-guide-midnight);
}

.gc-guide-parking-tips__icon {
  flex: 0 0 auto;
  display: inline-flex;
  width: 17px;
  height: 17px;
  margin-top: 2px;
  color: var(--gc-guide-gold);
}

.gc-guide-parking-tips__icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* --------------------------------------------------------------
   Food & Drink
-------------------------------------------------------------- */

.gc-guide-food {
  scroll-margin-top: 24px;
  margin-top: clamp(44px, 5vw, 64px);
}

.gc-guide-food__title {
  margin: 0 0 clamp(16px, 2vw, 22px);
  font-family: var(--gc-guide-heading);
  font-weight: 700;
  font-size: clamp(1.3rem, 1.8vw, 1.6rem);
  color: var(--gc-guide-midnight);
}

.gc-guide-food__input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.gc-guide-food__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.gc-guide-food__tab {
  display: inline-flex;
  align-items: center;
  padding: 9px 18px;
  border: 1px solid var(--gc-border, rgba(0, 37, 94, 0.16));
  border-radius: 999px;
  background: #ffffff;
  color: var(--gc-guide-midnight);
  font-family: var(--gc-guide-body);
  font-weight: 800;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

#gc-food-tab-farm:checked ~ .gc-guide-food__tabs label[for="gc-food-tab-farm"],
#gc-food-tab-cafes:checked ~ .gc-guide-food__tabs label[for="gc-food-tab-cafes"],
#gc-food-tab-restaurants:checked ~ .gc-guide-food__tabs label[for="gc-food-tab-restaurants"] {
  background: var(--gc-guide-midnight);
  border-color: var(--gc-guide-midnight);
  color: #ffffff;
}

.gc-guide-food__panel {
  display: none;
}

#gc-food-tab-farm:checked ~ .gc-guide-food__panel--farm,
#gc-food-tab-cafes:checked ~ .gc-guide-food__panel--cafes,
#gc-food-tab-restaurants:checked ~ .gc-guide-food__panel--restaurants {
  display: block;
}

.gc-guide-food__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 28px;
}

.gc-guide-food-card {
  display: flex;
  flex-direction: column;
}

.gc-guide-food-card__image {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--gc-bg-soft, #f3f5f9);
}

.gc-guide-food-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gc-guide-food-card__fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: var(--gc-guide-midnight);
}

.gc-guide-food-card__fallback svg {
  display: block;
  width: 32px;
  height: 32px;
}

.gc-guide-food-card__body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px 18px 20px;
}

.gc-guide-food-card__name {
  margin: 0;
  font-family: var(--gc-guide-heading);
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--gc-guide-midnight);
}

.gc-guide-food-card__location {
  margin: 0;
  font-family: var(--gc-guide-body);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gc-guide-gold);
}

.gc-guide-food-card__description {
  margin: 4px 0 0;
  font-family: var(--gc-guide-body);
  font-size: 0.85rem;
  line-height: 1.55;
  color: var(--gc-muted, #5f6f86);
}

.gc-guide-food-card__hours {
  margin: 2px 0 0;
  font-family: var(--gc-guide-body);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gc-guide-midnight);
}

.gc-guide-food-card__link {
  align-self: flex-start;
  margin-top: 10px;
  min-height: 40px;
  padding: 0 20px;
  font-size: 0.85rem;
}

.gc-guide-food__info {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.gc-guide-food-info-card {
  position: relative;
  padding: 22px;
  background: #ffffff;
  border: 1px solid var(--gc-border, rgba(0, 37, 94, 0.12));
  border-radius: var(--gc-radius-lg, 24px);
  box-shadow: var(--gc-shadow-card, 0 14px 35px rgba(0, 37, 94, 0.08));
  overflow: hidden;
}

.gc-guide-food-info-card--route {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
}

.gc-guide-food-info-card--route .gc-guide-food-info-card__content {
  flex: 1;
  min-width: 0;
}

.gc-guide-food-info-card--route .gc-guide-food-info-card__title {
  white-space: nowrap;
}

.gc-guide-food-info-card__decoration {
  display: flex;
  flex: 0 0 auto;
  align-self: center;
  justify-content: center;
  pointer-events: none;
}

.gc-guide-food-info-card__decoration-img {
  display: block;
  width: 150px;
  height: 100px;
  object-fit: cover;
  border-radius: var(--gc-radius-md, 14px);
}

.gc-guide-food-info-card__title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  font-family: var(--gc-guide-heading);
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--gc-guide-midnight);
}

.gc-guide-food-info-card__icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gc-bg-soft, #f3f5f9);
  color: var(--gc-guide-midnight);
}

.gc-guide-food-info-card__icon svg {
  display: block;
  width: 18px;
  height: 18px;
}

.gc-guide-food-info-card__text {
  margin: 0;
  font-family: var(--gc-guide-body);
  font-size: 0.85rem;
  line-height: 1.55;
  color: var(--gc-muted, #5f6f86);
}

.gc-guide-food-checklist {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.gc-guide-food-checklist__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--gc-guide-body);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gc-guide-midnight);
}

.gc-guide-food-checklist__icon {
  flex: 0 0 auto;
  display: inline-flex;
  width: 16px;
  height: 16px;
  color: var(--gc-guide-gold);
}

.gc-guide-food-checklist__icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.gc-guide-food-tips {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.gc-guide-food-tips__item {
  position: relative;
  padding-left: 16px;
  font-family: var(--gc-guide-body);
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--gc-muted, #5f6f86);
}

.gc-guide-food-tips__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gc-guide-gold);
}

/* --------------------------------------------------------------
   Geothermal Pools & Spas
-------------------------------------------------------------- */

.gc-guide-pools {
  scroll-margin-top: 24px;
  margin-top: clamp(44px, 5vw, 64px);
}

.gc-guide-pools__title {
  margin: 0 0 clamp(16px, 2vw, 22px);
  font-family: var(--gc-guide-heading);
  font-weight: 700;
  font-size: clamp(1.3rem, 1.8vw, 1.6rem);
  color: var(--gc-guide-midnight);
}

.gc-guide-pools__highlights {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 24px;
}

.gc-guide-pools-highlight {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: #ffffff;
  border: 1px solid var(--gc-border, rgba(0, 37, 94, 0.12));
  border-radius: var(--gc-radius-lg, 24px);
  box-shadow: var(--gc-shadow-card, 0 14px 35px rgba(0, 37, 94, 0.08));
}

.gc-guide-pools-highlight__icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gc-bg-soft, #f3f5f9);
  color: var(--gc-guide-midnight);
}

.gc-guide-pools-highlight__icon svg {
  display: block;
  width: 18px;
  height: 18px;
}

.gc-guide-pools-highlight__title {
  font-family: var(--gc-guide-body);
  font-weight: 800;
  font-size: 0.85rem;
  line-height: 1.35;
  color: var(--gc-guide-midnight);
}

.gc-guide-pools__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 24px;
}

.gc-guide-pool-card {
  display: flex;
  flex-direction: column;
}

.gc-guide-pool-card__image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.gc-guide-pool-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gc-guide-pool-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 8px;
  padding: 18px 16px 20px;
}

.gc-guide-pool-card__heading {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.gc-guide-pool-card__name {
  margin: 0;
  font-family: var(--gc-guide-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--gc-guide-midnight);
}

.gc-guide-pool-card__tag {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(214, 163, 33, 0.16);
  color: #7a5b0e;
  font-family: var(--gc-guide-body);
  font-weight: 800;
  font-size: 0.68rem;
}

.gc-guide-pool-card__description {
  flex: 1;
  margin: 0;
  font-family: var(--gc-guide-body);
  font-size: 0.83rem;
  line-height: 1.5;
  color: var(--gc-muted, #5f6f86);
}

.gc-guide-pool-card__meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.gc-guide-pool-card__meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--gc-guide-body);
  font-size: 0.78rem;
  color: var(--gc-muted, #5f6f86);
}

.gc-guide-pool-card__meta-icon {
  display: inline-flex;
  flex: 0 0 auto;
  width: 14px;
  height: 14px;
  color: var(--gc-guide-midnight);
}

.gc-guide-pool-card__meta-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.gc-guide-pool-card__link {
  margin-top: 6px;
  font-size: 0.85rem;
}

.gc-guide-pool-card__link-icon {
  width: 13px;
  height: 13px;
}

.gc-guide-pools-card {
  margin-bottom: 24px;
  padding: 22px;
  background: #ffffff;
  border: 1px solid var(--gc-border, rgba(0, 37, 94, 0.12));
  border-radius: var(--gc-radius-lg, 24px);
  box-shadow: var(--gc-shadow-card, 0 14px 35px rgba(0, 37, 94, 0.08));
}

.gc-guide-pools-card__title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  font-family: var(--gc-guide-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--gc-guide-midnight);
}

.gc-guide-pools-card__title-icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--gc-bg-soft, #f3f5f9);
  color: var(--gc-guide-midnight);
}

.gc-guide-pools-card__title-icon svg {
  display: block;
  width: 15px;
  height: 15px;
}

.gc-guide-pools-tips {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.gc-guide-pools-tip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.gc-guide-pools-tip__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gc-bg-soft, #f3f5f9);
  color: var(--gc-guide-midnight);
}

.gc-guide-pools-tip__icon svg {
  display: block;
  width: 18px;
  height: 18px;
}

.gc-guide-pools-tip__title {
  font-family: var(--gc-guide-body);
  font-weight: 800;
  font-size: 0.82rem;
  color: var(--gc-guide-midnight);
}

.gc-guide-pools-tip__text {
  font-family: var(--gc-guide-body);
  font-size: 0.76rem;
  line-height: 1.4;
  color: var(--gc-muted, #5f6f86);
}

.gc-guide-pools-card--split {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  padding: 0;
  margin-bottom: 0;
}

.gc-guide-pools-split__col {
  position: relative;
  padding: 24px;
  overflow: hidden;
}

.gc-guide-pools-split__col--safety {
  display: flex;
  flex-direction: row-reverse;
  align-items: stretch;
  justify-content: center;
  gap: 16px;
  border-left: 1px solid var(--gc-border, rgba(0, 37, 94, 0.12));
}

.gc-guide-pools-split__photo {
  flex: 0 0 38%;
  width: 38%;
  border-radius: var(--gc-radius-md, 16px);
  object-fit: cover;
}

.gc-guide-pools-split__content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

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

.gc-guide-pools-season {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px;
  border: 1px solid var(--gc-border, rgba(0, 37, 94, 0.12));
  border-radius: var(--gc-radius-md, 16px);
  background: var(--gc-bg-soft, #f3f5f9);
}

.gc-guide-pools-season__icon {
  display: inline-flex;
  width: 20px;
  height: 20px;
  margin-bottom: 4px;
  color: var(--gc-guide-gold);
}

.gc-guide-pools-season__icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.gc-guide-pools-season__title {
  font-family: var(--gc-guide-body);
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--gc-guide-midnight);
}

.gc-guide-pools-season__range {
  font-family: var(--gc-guide-body);
  font-size: 0.72rem;
  color: var(--gc-muted, #5f6f86);
}

.gc-guide-pools-season__text {
  margin-top: 4px;
  font-family: var(--gc-guide-body);
  font-size: 0.74rem;
  line-height: 1.4;
  color: var(--gc-muted, #5f6f86);
}

.gc-guide-pools-safety {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.gc-guide-pools-safety__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--gc-guide-body);
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--gc-muted, #5f6f86);
}

.gc-guide-pools-safety__icon {
  flex: 0 0 auto;
  display: inline-flex;
  width: 17px;
  height: 17px;
  margin-top: 2px;
  color: var(--gc-guide-gold);
}

.gc-guide-pools-safety__icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* --------------------------------------------------------------
   Hidden Gems
-------------------------------------------------------------- */

.gc-guide-gems {
  scroll-margin-top: 24px;
  margin-top: clamp(44px, 5vw, 64px);
}

.gc-guide-gems__title {
  margin: 0 0 clamp(16px, 2vw, 22px);
  font-family: var(--gc-guide-heading);
  font-weight: 700;
  font-size: clamp(1.3rem, 1.8vw, 1.6rem);
  color: var(--gc-guide-midnight);
}

.gc-guide-gems__highlights {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 24px;
}

.gc-guide-gems-highlight {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: #ffffff;
  border: 1px solid var(--gc-border, rgba(0, 37, 94, 0.12));
  border-radius: var(--gc-radius-lg, 24px);
  box-shadow: var(--gc-shadow-card, 0 14px 35px rgba(0, 37, 94, 0.08));
}

.gc-guide-gems-highlight__icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gc-bg-soft, #f3f5f9);
  color: var(--gc-guide-midnight);
}

.gc-guide-gems-highlight__icon svg {
  display: block;
  width: 18px;
  height: 18px;
}

.gc-guide-gems-highlight__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.gc-guide-gems-highlight__title {
  font-family: var(--gc-guide-body);
  font-weight: 800;
  font-size: 0.88rem;
  line-height: 1.3;
  color: var(--gc-guide-midnight);
}

.gc-guide-gems-highlight__subtitle {
  font-family: var(--gc-guide-body);
  font-size: 0.76rem;
  line-height: 1.35;
  color: var(--gc-muted, #5f6f86);
}

.gc-guide-gems__input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.gc-guide-gems__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.gc-guide-gems__tab {
  display: inline-flex;
  align-items: center;
  padding: 9px 18px;
  border: 1px solid var(--gc-border, rgba(0, 37, 94, 0.16));
  border-radius: 999px;
  background: #ffffff;
  color: var(--gc-guide-midnight);
  font-family: var(--gc-guide-body);
  font-weight: 800;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

#gc-gems-tab-local:checked ~ .gc-guide-gems__tabs label[for="gc-gems-tab-local"],
#gc-gems-tab-waterfalls:checked ~ .gc-guide-gems__tabs label[for="gc-gems-tab-waterfalls"],
#gc-gems-tab-geothermal:checked ~ .gc-guide-gems__tabs label[for="gc-gems-tab-geothermal"] {
  background: var(--gc-guide-midnight);
  border-color: var(--gc-guide-midnight);
  color: #ffffff;
}

.gc-guide-gems__panel {
  display: none;
}

#gc-gems-tab-local:checked ~ .gc-guide-gems__panel--local,
#gc-gems-tab-waterfalls:checked ~ .gc-guide-gems__panel--waterfalls,
#gc-gems-tab-geothermal:checked ~ .gc-guide-gems__panel--geothermal {
  display: block;
}

.gc-guide-gems__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 28px;
}

.gc-guide-gem-card {
  display: flex;
  flex-direction: column;
}

.gc-guide-gem-card__image {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.gc-guide-gem-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gc-guide-gem-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 8px;
  padding: 18px 18px 20px;
}

.gc-guide-gem-card__name {
  margin: 0;
  font-family: var(--gc-guide-heading);
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--gc-guide-midnight);
}

.gc-guide-gem-card__location {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  font-family: var(--gc-guide-body);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gc-guide-gold);
}

.gc-guide-gem-card__location-icon {
  display: inline-flex;
  flex: 0 0 auto;
  width: 13px;
  height: 13px;
}

.gc-guide-gem-card__location-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.gc-guide-gem-card__description {
  flex: 1;
  margin: 0;
  font-family: var(--gc-guide-body);
  font-size: 0.85rem;
  line-height: 1.55;
  color: var(--gc-muted, #5f6f86);
}

.gc-guide-gem-card__link {
  align-self: flex-start;
  margin-top: 10px;
  min-height: 40px;
  padding: 0 20px;
  font-size: 0.85rem;
}

.gc-guide-gems__bottom {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.gc-guide-gems__bottom .gc-guide-gems-card {
  display: flex;
  flex-direction: column;
}

.gc-guide-gems-card {
  padding: 22px;
  background: #ffffff;
  border: 1px solid var(--gc-border, rgba(0, 37, 94, 0.12));
  border-radius: var(--gc-radius-lg, 24px);
  box-shadow: var(--gc-shadow-card, 0 14px 35px rgba(0, 37, 94, 0.08));
}

.gc-guide-gems-card__title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  font-family: var(--gc-guide-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--gc-guide-midnight);
}

.gc-guide-gems-card__title-icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--gc-bg-soft, #f3f5f9);
  color: var(--gc-guide-midnight);
}

.gc-guide-gems-card__title-icon svg {
  display: block;
  width: 15px;
  height: 15px;
}

.gc-guide-gems-card__text {
  margin: 0 0 16px;
  font-family: var(--gc-guide-body);
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--gc-muted, #5f6f86);
}

.gc-guide-gems-card__footnote {
  margin: 16px 0 0;
  font-family: var(--gc-guide-body);
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--gc-muted, #5f6f86);
}

.gc-guide-gems-tips {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.gc-guide-gems-tips__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--gc-guide-body);
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--gc-guide-midnight);
}

.gc-guide-gems-tips__icon {
  flex: 0 0 auto;
  display: inline-flex;
  width: 17px;
  height: 17px;
  margin-top: 2px;
  color: var(--gc-guide-gold);
}

.gc-guide-gems-tips__icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.gc-guide-gems-seasons {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.gc-guide-gems-season {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 12px 8px;
  text-align: center;
  border: 1px solid var(--gc-border, rgba(0, 37, 94, 0.12));
  border-radius: var(--gc-radius-md, 16px);
  background: #ffffff;
}

.gc-guide-gems-season--spring {
  background: rgba(74, 145, 90, 0.12);
  border-color: rgba(74, 145, 90, 0.4);
}

.gc-guide-gems-season--spring .gc-guide-gems-season__icon {
  color: #3f8a54;
}

.gc-guide-gems-season--summer {
  background: rgba(214, 163, 33, 0.14);
  border-color: var(--gc-guide-gold);
}

.gc-guide-gems-season--autumn {
  background: rgba(140, 90, 45, 0.12);
  border-color: rgba(140, 90, 45, 0.4);
}

.gc-guide-gems-season--autumn .gc-guide-gems-season__icon {
  color: #8c5a2d;
}

.gc-guide-gems-season--winter {
  background: rgba(70, 140, 200, 0.12);
  border-color: rgba(70, 140, 200, 0.4);
}

.gc-guide-gems-season--winter .gc-guide-gems-season__icon {
  color: #4682c8;
}

.gc-guide-gems-season__icon {
  display: inline-flex;
  width: 18px;
  height: 18px;
  margin-bottom: 2px;
  color: var(--gc-guide-gold);
}

.gc-guide-gems-season__icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.gc-guide-gems-season__title {
  font-family: var(--gc-guide-body);
  font-weight: 800;
  font-size: 0.8rem;
  color: var(--gc-guide-midnight);
}

.gc-guide-gems-season__range {
  font-family: var(--gc-guide-body);
  font-size: 0.68rem;
  color: var(--gc-muted, #5f6f86);
}

/* --------------------------------------------------------------
   Where to Stay
-------------------------------------------------------------- */

.gc-guide-stay {
  scroll-margin-top: 24px;
  margin-top: clamp(44px, 5vw, 64px);
}

.gc-guide-stay__title {
  margin: 0 0 clamp(16px, 2vw, 22px);
  font-family: var(--gc-guide-heading);
  font-weight: 700;
  font-size: clamp(1.3rem, 1.8vw, 1.6rem);
  color: var(--gc-guide-midnight);
}

.gc-guide-stay__input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.gc-guide-stay__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.gc-guide-stay__tab {
  display: inline-flex;
  align-items: center;
  padding: 9px 18px;
  border: 1px solid var(--gc-border, rgba(0, 37, 94, 0.16));
  border-radius: 999px;
  background: #ffffff;
  color: var(--gc-guide-midnight);
  font-family: var(--gc-guide-body);
  font-weight: 800;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

#gc-stay-tab-hotels:checked ~ .gc-guide-stay__tabs label[for="gc-stay-tab-hotels"],
#gc-stay-tab-farm:checked ~ .gc-guide-stay__tabs label[for="gc-stay-tab-farm"] {
  background: var(--gc-guide-midnight);
  border-color: var(--gc-guide-midnight);
  color: #ffffff;
}

.gc-guide-stay__panel {
  display: none;
}

#gc-stay-tab-hotels:checked ~ .gc-guide-stay__panel--hotels,
#gc-stay-tab-farm:checked ~ .gc-guide-stay__panel--farm {
  display: block;
}

.gc-guide-stay__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 28px;
}

.gc-guide-stay-card {
  display: flex;
  flex-direction: column;
}

.gc-guide-stay-card__image {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--gc-bg-soft, #f3f5f9);
}

.gc-guide-stay-card__type {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 1;
  display: inline-flex;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--gc-guide-midnight);
  font-family: var(--gc-guide-body);
  font-weight: 800;
  font-size: 0.7rem;
}

.gc-guide-stay-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gc-guide-stay-card__fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: var(--gc-guide-midnight);
}

.gc-guide-stay-card__fallback svg {
  display: block;
  width: 30px;
  height: 30px;
}

.gc-guide-stay-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 6px;
  padding: 18px 18px 20px;
}

.gc-guide-stay-card__name {
  margin: 0;
  font-family: var(--gc-guide-heading);
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--gc-guide-midnight);
}

.gc-guide-stay-card__location {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  font-family: var(--gc-guide-body);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gc-guide-gold);
}

.gc-guide-stay-card__location-icon {
  display: inline-flex;
  flex: 0 0 auto;
  width: 13px;
  height: 13px;
}

.gc-guide-stay-card__location-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.gc-guide-stay-card__description {
  flex: 1;
  margin: 4px 0 0;
  font-family: var(--gc-guide-body);
  font-size: 0.85rem;
  line-height: 1.55;
  color: var(--gc-muted, #5f6f86);
}

.gc-guide-stay-card__link {
  align-self: flex-start;
  margin-top: 10px;
  min-height: 40px;
  padding: 0 20px;
  font-size: 0.85rem;
}

.gc-guide-stay__bottom {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.gc-guide-stay-card-info {
  display: flex;
  flex-direction: column;
  padding: 22px;
  background: #ffffff;
  border: 1px solid var(--gc-border, rgba(0, 37, 94, 0.12));
  border-radius: var(--gc-radius-lg, 24px);
  box-shadow: var(--gc-shadow-card, 0 14px 35px rgba(0, 37, 94, 0.08));
}

.gc-guide-stay-card-info--photo {
  flex-direction: row-reverse;
  align-items: stretch;
  gap: 16px;
}

.gc-guide-stay-card-info__photo {
  flex: 0 0 38%;
  width: 38%;
  max-height: 160px;
  border-radius: var(--gc-radius-md, 16px);
  object-fit: cover;
}

.gc-guide-stay-card-info__content {
  flex: 1;
  min-width: 0;
}

.gc-guide-stay-card-info__title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  font-family: var(--gc-guide-heading);
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--gc-guide-midnight);
}

.gc-guide-stay-card-info__icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--gc-bg-soft, #f3f5f9);
  color: var(--gc-guide-midnight);
}

.gc-guide-stay-card-info__icon svg {
  display: block;
  width: 15px;
  height: 15px;
}

.gc-guide-stay-card-info__text {
  margin: 0;
  font-family: var(--gc-guide-body);
  font-size: 0.85rem;
  line-height: 1.55;
  color: var(--gc-muted, #5f6f86);
}

.gc-guide-stay-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.gc-guide-stay-list__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--gc-guide-body);
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--gc-muted, #5f6f86);
}

.gc-guide-stay-list__item strong {
  color: var(--gc-guide-midnight);
}

.gc-guide-stay-list__icon {
  flex: 0 0 auto;
  display: inline-flex;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  color: var(--gc-guide-gold);
}

.gc-guide-stay-list__icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.gc-guide-stay-amenities {
  display: grid;
  flex: 1;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 12px;
  row-gap: 20px;
  align-content: space-evenly;
}

.gc-guide-stay-amenity {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--gc-guide-body);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gc-guide-midnight);
}

.gc-guide-stay-amenity__icon {
  flex: 0 0 auto;
  display: inline-flex;
  width: 17px;
  height: 17px;
  color: var(--gc-guide-gold);
}

.gc-guide-stay-amenity__icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* --------------------------------------------------------------
   Practical Info
-------------------------------------------------------------- */

.gc-guide-practical {
  scroll-margin-top: 24px;
  margin-top: clamp(44px, 5vw, 64px);
}

.gc-guide-practical__title {
  margin: 0 0 clamp(16px, 2vw, 22px);
  font-family: var(--gc-guide-heading);
  font-weight: 700;
  font-size: clamp(1.3rem, 1.8vw, 1.6rem);
  color: var(--gc-guide-midnight);
}

.gc-guide-practical-stats {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 24px;
  padding: 20px 22px;
  background: #ffffff;
  border: 1px solid var(--gc-border, rgba(0, 37, 94, 0.12));
  border-radius: var(--gc-radius-lg, 24px);
  box-shadow: var(--gc-shadow-card, 0 14px 35px rgba(0, 37, 94, 0.08));
}

.gc-guide-practical-stat {
  display: flex;
  align-items: center;
  gap: 10px;
}

.gc-guide-practical-stat__icon {
  flex: 0 0 auto;
  display: inline-flex;
  width: 22px;
  height: 22px;
  color: var(--gc-guide-gold);
}

.gc-guide-practical-stat__icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.gc-guide-practical-stat__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.gc-guide-practical-stat__label {
  font-family: var(--gc-guide-body);
  font-size: 0.72rem;
  color: var(--gc-muted, #5f6f86);
}

.gc-guide-practical-stat__value {
  font-family: var(--gc-guide-body);
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--gc-guide-midnight);
}

.gc-guide-practical__columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 24px;
  align-items: stretch;
}

.gc-guide-practical__columns:not(.gc-guide-practical__columns--three) {
  grid-template-rows: auto repeat(5, auto);
}

.gc-guide-practical-card--sync {
  display: grid;
  grid-row: span 6;
  grid-template-rows: subgrid;
  row-gap: 16px;
}

.gc-guide-practical-card--sync .gc-guide-practical-item {
  align-self: start;
}

.gc-guide-practical__columns--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gc-guide-practical-card {
  padding: 22px;
  background: #ffffff;
  border: 1px solid var(--gc-border, rgba(0, 37, 94, 0.12));
  border-radius: var(--gc-radius-lg, 24px);
  box-shadow: var(--gc-shadow-card, 0 14px 35px rgba(0, 37, 94, 0.08));
}

.gc-guide-practical-card__title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  font-family: var(--gc-guide-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--gc-guide-midnight);
}

.gc-guide-practical-card__title-icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--gc-bg-soft, #f3f5f9);
  color: var(--gc-guide-midnight);
}

.gc-guide-practical-card__title-icon svg {
  display: block;
  width: 15px;
  height: 15px;
}

.gc-guide-practical-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.gc-guide-practical-item__icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--gc-bg-soft, #f3f5f9);
  color: var(--gc-guide-midnight);
}

.gc-guide-practical-item__icon svg {
  display: block;
  width: 17px;
  height: 17px;
}

.gc-guide-practical-item__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.gc-guide-practical-item__title {
  font-family: var(--gc-guide-body);
  font-weight: 800;
  font-size: 0.88rem;
  color: var(--gc-guide-midnight);
}

.gc-guide-practical-item__desc {
  font-family: var(--gc-guide-body);
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--gc-muted, #5f6f86);
}

.gc-guide-practical-essentials {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 24px;
}

.gc-guide-practical-essential {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px;
  background: #ffffff;
  border: 1px solid var(--gc-border, rgba(0, 37, 94, 0.12));
  border-radius: var(--gc-radius-lg, 24px);
  box-shadow: var(--gc-shadow-card, 0 14px 35px rgba(0, 37, 94, 0.08));
}

.gc-guide-practical-essential__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 4px;
  border-radius: 50%;
  background: var(--gc-bg-soft, #f3f5f9);
  color: var(--gc-guide-midnight);
}

.gc-guide-practical-essential__icon svg {
  display: block;
  width: 18px;
  height: 18px;
}

.gc-guide-practical-essential__title {
  font-family: var(--gc-guide-body);
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--gc-guide-midnight);
}

.gc-guide-practical-essential__text {
  font-family: var(--gc-guide-body);
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--gc-muted, #5f6f86);
}

.gc-guide-practical-checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.gc-guide-practical-checklist__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--gc-guide-body);
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--gc-muted, #5f6f86);
}

.gc-guide-practical-checklist__item strong {
  color: var(--gc-guide-midnight);
}

.gc-guide-practical-checklist__icon {
  flex: 0 0 auto;
  display: inline-flex;
  width: 17px;
  height: 17px;
  margin-top: 2px;
  color: var(--gc-guide-gold);
}

.gc-guide-practical-checklist__icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.gc-guide-practical-know {
  padding: 22px;
  background: #ffffff;
  border: 1px solid var(--gc-border, rgba(0, 37, 94, 0.12));
  border-radius: var(--gc-radius-lg, 24px);
  box-shadow: var(--gc-shadow-card, 0 14px 35px rgba(0, 37, 94, 0.08));
}

.gc-guide-practical-know__title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  font-family: var(--gc-guide-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--gc-guide-midnight);
}

.gc-guide-practical-know__title-icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--gc-bg-soft, #f3f5f9);
  color: var(--gc-guide-midnight);
}

.gc-guide-practical-know__title-icon svg {
  display: block;
  width: 15px;
  height: 15px;
}

.gc-guide-practical-know__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.gc-guide-practical-know-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.gc-guide-practical-know-item__icon {
  flex: 0 0 auto;
  display: inline-flex;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  color: var(--gc-guide-gold);
}

.gc-guide-practical-know-item__icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.gc-guide-practical-know-item__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.gc-guide-practical-know-item__title {
  font-family: var(--gc-guide-body);
  font-weight: 800;
  font-size: 0.82rem;
  color: var(--gc-guide-midnight);
}

.gc-guide-practical-know-item__desc {
  font-family: var(--gc-guide-body);
  font-size: 0.76rem;
  line-height: 1.4;
  color: var(--gc-muted, #5f6f86);
}

/* --------------------------------------------------------------
   FAQs
-------------------------------------------------------------- */

.gc-guide-faqs {
  scroll-margin-top: 24px;
  margin-top: clamp(44px, 5vw, 64px);
}

.gc-guide-faqs__title {
  margin: 0 0 clamp(16px, 2vw, 22px);
  font-family: var(--gc-guide-heading);
  font-weight: 700;
  font-size: clamp(1.3rem, 1.8vw, 1.6rem);
  color: var(--gc-guide-midnight);
}

.gc-guide-faqs-categories {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 32px;
}

.gc-guide-faqs-category {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: #ffffff;
  border: 1px solid var(--gc-border, rgba(0, 37, 94, 0.12));
  border-radius: var(--gc-radius-lg, 24px);
  box-shadow: var(--gc-shadow-card, 0 14px 35px rgba(0, 37, 94, 0.08));
}

.gc-guide-faqs-category__icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gc-bg-soft, #f3f5f9);
  color: var(--gc-guide-midnight);
}

.gc-guide-faqs-category__icon svg {
  display: block;
  width: 18px;
  height: 18px;
}

.gc-guide-faqs-category__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.gc-guide-faqs-category__title {
  font-family: var(--gc-guide-body);
  font-weight: 800;
  font-size: 0.85rem;
  line-height: 1.3;
  color: var(--gc-guide-midnight);
}

.gc-guide-faqs-category__subtitle {
  font-family: var(--gc-guide-body);
  font-size: 0.74rem;
  line-height: 1.35;
  color: var(--gc-muted, #5f6f86);
}

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

.gc-guide-faq-group__title {
  margin: 0 0 14px;
  font-family: var(--gc-guide-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--gc-guide-midnight);
}

.gc-guide-faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.gc-guide-faq-item {
  background: #ffffff;
  border: 1px solid var(--gc-border, rgba(0, 37, 94, 0.12));
  border-radius: var(--gc-radius-md, 16px);
  overflow: hidden;
}

.gc-guide-faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  list-style: none;
  cursor: pointer;
  font-family: var(--gc-guide-body);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--gc-guide-midnight);
}

.gc-guide-faq-item__question::-webkit-details-marker {
  display: none;
}

.gc-guide-faq-item__chevron {
  flex: 0 0 auto;
  display: inline-flex;
  width: 14px;
  height: 14px;
  color: var(--gc-muted, #5f6f86);
  transition: transform 0.15s ease;
}

.gc-guide-faq-item__chevron-icon {
  display: block;
  width: 100%;
  height: 100%;
  transform: rotate(90deg);
}

.gc-guide-faq-item[open] .gc-guide-faq-item__chevron-icon {
  transform: rotate(-90deg);
}

.gc-guide-faq-item__answer {
  margin: 0;
  padding: 0 16px 16px;
  font-family: var(--gc-guide-body);
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--gc-muted, #5f6f86);
}

.gc-guide-faqs-quick-info {
  margin-bottom: 24px;
  padding: 22px;
  background: #ffffff;
  border: 1px solid var(--gc-border, rgba(0, 37, 94, 0.12));
  border-radius: var(--gc-radius-lg, 24px);
  box-shadow: var(--gc-shadow-card, 0 14px 35px rgba(0, 37, 94, 0.08));
}

.gc-guide-faqs-quick-info__title {
  margin: 0 0 18px;
  font-family: var(--gc-guide-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--gc-guide-midnight);
}

.gc-guide-faqs-quick-info__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.gc-guide-faqs-quick-info-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.gc-guide-faqs-quick-info-item__icon {
  flex: 0 0 auto;
  display: inline-flex;
  width: 19px;
  height: 19px;
  margin-top: 2px;
  color: var(--gc-guide-gold);
}

.gc-guide-faqs-quick-info-item__icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.gc-guide-faqs-quick-info-item__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.gc-guide-faqs-quick-info-item__title {
  font-family: var(--gc-guide-body);
  font-weight: 800;
  font-size: 0.82rem;
  color: var(--gc-guide-midnight);
}

.gc-guide-faqs-quick-info-item__desc {
  font-family: var(--gc-guide-body);
  font-size: 0.76rem;
  line-height: 1.4;
  color: var(--gc-muted, #5f6f86);
}

.gc-guide-faqs-contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding: 22px;
  background: var(--gc-bg-soft, #f3f5f9);
  border-radius: var(--gc-radius-lg, 24px);
}

.gc-guide-faqs-contact__title {
  margin: 0 0 4px;
  font-family: var(--gc-guide-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--gc-guide-midnight);
}

.gc-guide-faqs-contact__desc {
  margin: 0;
  font-family: var(--gc-guide-body);
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--gc-muted, #5f6f86);
}

.gc-guide-faqs-contact__link-icon {
  width: 15px;
  height: 15px;
  margin-left: 6px;
}

/* --------------------------------------------------------------
   Maps
-------------------------------------------------------------- */

.gc-guide-map {
  scroll-margin-top: 24px;
  margin-top: clamp(44px, 5vw, 64px);
}

.gc-guide-map__title {
  margin: 0 0 clamp(16px, 2vw, 22px);
  font-family: var(--gc-guide-heading);
  font-weight: 700;
  font-size: clamp(1.3rem, 1.8vw, 1.6rem);
  color: var(--gc-guide-midnight);
}

.gc-guide-map__input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.gc-guide-map__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.gc-guide-map__tab {
  display: inline-flex;
  align-items: center;
  padding: 9px 18px;
  border: 1px solid var(--gc-border, rgba(0, 37, 94, 0.16));
  border-radius: 999px;
  background: #ffffff;
  color: var(--gc-guide-midnight);
  font-family: var(--gc-guide-body);
  font-weight: 800;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

#gc-map-tab-route:checked ~ .gc-guide-map__tabs label[for="gc-map-tab-route"],
#gc-map-tab-accommodation:checked ~ .gc-guide-map__tabs label[for="gc-map-tab-accommodation"],
#gc-map-tab-food-drink:checked ~ .gc-guide-map__tabs label[for="gc-map-tab-food-drink"],
#gc-map-tab-geothermal-pools:checked ~ .gc-guide-map__tabs label[for="gc-map-tab-geothermal-pools"] {
  background: var(--gc-guide-midnight);
  border-color: var(--gc-guide-midnight);
  color: #ffffff;
}

.gc-guide-map__panel {
  display: none;
}

#gc-map-tab-route:checked ~ .gc-guide-map__panel--route,
#gc-map-tab-accommodation:checked ~ .gc-guide-map__panel--accommodation,
#gc-map-tab-food-drink:checked ~ .gc-guide-map__panel--food-drink,
#gc-map-tab-geothermal-pools:checked ~ .gc-guide-map__panel--geothermal-pools {
  display: block;
}

.gc-guide-map__frame {
  position: relative;
  width: 100%;
  height: 420px;
  overflow: hidden;
  background: var(--gc-bg-soft, #f3f5f9);
  border: 1px solid var(--gc-border, rgba(0, 37, 94, 0.12));
  border-radius: var(--gc-radius-lg, 24px);
  box-shadow: var(--gc-shadow-card, 0 14px 35px rgba(0, 37, 94, 0.08));
}

.gc-guide-map__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* --------------------------------------------------------------
   Responsive
-------------------------------------------------------------- */

@media (max-width: 1180px) {
  .gc-guide-attractions__grid,
  .gc-guide-attractions__grid--main,
  .gc-guide-attractions__grid--optional {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .gc-guide-weather-drivers {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .gc-guide-parking__layout {
    grid-template-columns: minmax(0, 1fr);
  }

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

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

  .gc-guide-pools-tips {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .gc-guide-practical-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .gc-guide-practical-essentials {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gc-guide-practical-know__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .gc-guide-faqs-categories {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .gc-guide-faqs-quick-info__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1024px) {
  .gc-guide-page {
    --gc-guide-gutter: clamp(22px, 4vw, 32px);
  }

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

  .gc-guide-nav {
    position: static;
  }

  .gc-guide-nav__list {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .gc-guide-nav__item {
    flex: 1 1 auto;
  }

  .gc-guide-hero__image {
    min-height: clamp(360px, 48vw, 480px);
  }

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

  .gc-guide-fact:nth-child(2n + 1) {
    border-left: 0;
  }

  .gc-guide-fact:nth-child(1),
  .gc-guide-fact:nth-child(2) {
    border-bottom: 1px solid var(--gc-border, rgba(0, 37, 94, 0.12));
  }

  .gc-guide-route__card {
    flex-wrap: wrap;
  }

  .gc-guide-route__image {
    flex-basis: 140px;
  }

  .gc-guide-parking-payment-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

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

  .gc-guide-pools-split__col--safety {
    min-height: 380px;
    border-left: 0;
    border-top: 1px solid var(--gc-border, rgba(0, 37, 94, 0.12));
  }

  .gc-guide-pools-split__content {
    max-width: 100%;
  }

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

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

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

  .gc-guide-practical__columns,
  .gc-guide-practical__columns--three {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .gc-guide-practical-card--sync {
    display: block;
    grid-row: auto;
  }

  .gc-guide-practical-know__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .gc-guide-faqs-quick-info__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .gc-guide-page {
    --gc-guide-gutter: 20px;
  }

  .gc-guide-nav__list {
    flex-direction: column;
  }

  .gc-guide-map__frame {
    height: 340px;
  }

  .gc-guide-hero__image {
    min-height: 400px;
  }

  .gc-guide-hero__title {
    max-width: 340px;
    font-size: clamp(2.1rem, 9vw, 2.6rem);
  }

  .gc-guide-hero__subtitle {
    max-width: 300px;
  }

  .gc-guide-hero__actions .gc-btn {
    flex: 1 1 auto;
  }

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

  .gc-guide-fact {
    border-left: 0 !important;
    border-bottom: 1px solid var(--gc-border, rgba(0, 37, 94, 0.12));
  }

  .gc-guide-fact:last-child {
    border-bottom: 0;
  }

  .gc-guide-attractions__grid,
  .gc-guide-attractions__grid--main,
  .gc-guide-attractions__grid--optional {
    grid-template-columns: 1fr;
  }

  .gc-guide-attractions__grid--optional .gc-guide-attraction-card__image {
    aspect-ratio: 4 / 3;
  }

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

  .gc-guide-weather-drivers {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .gc-guide-parking-payment-grid {
    grid-template-columns: 1fr;
  }

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

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

  .gc-guide-pools-tips {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gc-guide-pools-seasons {
    grid-template-columns: 1fr;
  }

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

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

  .gc-guide-gems-seasons {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gc-guide-stay-amenities {
    grid-template-columns: 1fr;
  }

  .gc-guide-practical-stats {
    grid-template-columns: 1fr;
  }

  .gc-guide-practical-essentials {
    grid-template-columns: 1fr;
  }

  .gc-guide-practical-know__grid {
    grid-template-columns: 1fr;
  }

  .gc-guide-faqs-categories {
    grid-template-columns: 1fr;
  }

  .gc-guide-faqs-quick-info__grid {
    grid-template-columns: 1fr;
  }

  .gc-guide-faqs-contact {
    flex-direction: column;
    align-items: flex-start;
  }

  .gc-guide-route__step {
    grid-template-columns: 28px minmax(0, 1fr);
  }

  .gc-guide-route__marker {
    width: 28px;
    height: 28px;
    font-size: 0.78rem;
  }

  .gc-guide-route__card {
    flex-direction: column;
    padding: 16px;
  }

  .gc-guide-route__meta {
    padding-inline: 0;
    align-self: flex-start;
  }

  .gc-guide-route__image {
    flex-basis: auto;
    width: 100%;
    aspect-ratio: 16 / 9;
  }

  .gc-guide-food-info-card--route {
    flex-direction: column;
  }

  .gc-guide-food-info-card--route .gc-guide-food-info-card__title {
    white-space: normal;
  }

  .gc-guide-food-info-card__decoration {
    align-self: center;
  }

  .gc-guide-stay-card-info--photo {
    flex-direction: column;
  }

  .gc-guide-stay-card-info__photo {
    width: 100%;
    flex: 0 0 auto;
    max-height: 180px;
  }
}
