.page-service {
  background: #fff;
}

.service-hero {
  min-height: 360px;
  color: #fff;
  background-color: var(--color-navy);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.service-hero__inner {
  padding-top: 86px;
  padding-bottom: 64px;
}

.service-hero__kicker {
  margin: 0 0 10px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.service-hero__title {
  max-width: 980px;
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--inner-hero-title-size);
  font-weight: 400;
  line-height: 1;
}

.service-hero__crumbs {
  margin: 18px 0 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.84);
}

.service-hero__crumbs a {
  color: #fff;
}

.service-content {
  padding: 72px 0 88px;
  background: var(--color-sand);
}

.service-content__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: clamp(40px, 6vw, 88px);
  align-items: start;
}

.service-content__main {
  min-width: 0;
  padding: clamp(28px, 4vw, 56px);
  background: #fff;
  box-shadow: 0 14px 40px rgba(22, 58, 92, 0.08);
}

.service-copy {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--color-text);
}

.service-copy > :first-child {
  margin-top: 0;
}

.service-copy h2,
.service-copy h3,
.service-copy h4 {
  margin: 1.35em 0 0.55em;
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.1;
  color: var(--color-navy);
}

.service-copy h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.service-copy h3,
.service-copy h4 {
  font-size: clamp(1.4rem, 3vw, 2rem);
}

.service-copy p,
.service-copy ul,
.service-copy ol {
  margin: 0 0 1.25em;
}

.service-copy img {
  width: 100%;
  height: auto;
  margin: 24px 0;
}

.service-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 18px;
  padding: 12px 24px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  background: var(--color-navy);
}

.service-cta:hover {
  color: #fff;
  background: var(--color-gold);
}

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

.service-excursion-card {
  overflow: hidden;
  background: var(--color-sand);
  border: 1px solid rgba(32, 72, 109, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-excursion-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(22, 58, 92, 0.12);
}

.service-excursion-card__media {
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--color-navy);
}

.service-excursion-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.service-excursion-card:hover .service-excursion-card__image {
  transform: scale(1.04);
}

.service-excursion-card__title {
  margin: 0;
  padding: 20px;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1.15;
}

.service-excursion-card__title a {
  color: var(--color-navy);
}

.service-empty {
  padding: 12px 0;
}

.service-empty__title {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--color-navy);
}

.service-empty__text {
  max-width: 62ch;
  margin: 0;
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.75;
}

.service-content__aside {
  position: sticky;
  top: calc(var(--header-h) + 24px);
}

.page-service .services-sidebar__link.is-active {
  color: #fff;
  background: var(--color-navy);
}

@media (max-width: 1199.98px) {
  .service-excursions-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991.98px) {
  .service-content__layout {
    grid-template-columns: 1fr;
  }

  .service-content__aside {
    position: static;
    order: -1;
  }
}

@media (max-width: 639.98px) {
  .service-hero {
    min-height: 300px;
  }

  .service-hero__inner {
    padding-top: 64px;
    padding-bottom: 48px;
  }

  .service-content {
    padding: 40px 0 56px;
  }

  .service-content__main {
    padding: 24px 18px;
  }

  .service-excursions-grid {
    grid-template-columns: 1fr;
  }
}
