* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 128px;
}

body {
    margin: 0;
    font-family: "Inter", sans-serif;
    color: #073b4c;
    background: #ffffff;
    overflow-x: clip;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: #ffffff;
    box-shadow: 0 1px 0 rgba(0, 70, 95, 0.12);
}

.logo-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    width: min(1120px, 100%);
    min-height: 96px;
    margin: 0 auto;
    padding: 0 24px;
}

#navbar__logo {
    display: inline-flex;
    align-items: center;
    color: #007f7a;
    font-size: 1.4rem;
    font-weight: 800;
    text-decoration: none;
}

#navbar__logo img {
    display: block;
    width: auto;
    height: 72px;
}

.logo-bar__button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 24px 0 14px;
    border: 2px solid #007f7a;
    border-right: 0;
    color: #007f7a;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: background-color 180ms ease, color 180ms ease;
}

.logo-bar__button::before,
.logo-bar__button::after {
    position: absolute;
    left: 100%;
    content: "";
    clip-path: polygon(0 0, 100% 50%, 0 100%);
    transition: background-color 180ms ease;
}

.logo-bar__button::before {
    top: -3px;
    bottom: -3px;
    width: 20px;
    background: #007f7a;
}

.logo-bar__button::after {
    top: -0px;
    bottom: -0px;
    width: 17px;
    background: #ffffff;
}

.logo-bar__button:hover,
.logo-bar__button:focus-visible {
    background: #007f7a;
    color: #ffffff;
    outline: none;
}

.logo-bar__button:hover::after,
.logo-bar__button:focus-visible::after {
    background: #007f7a;
}

.navbar {
    position: sticky;
    top: 96px;
    z-index: 19;
    background: linear-gradient(90deg, #007f7a, #0099cc);
    box-shadow: 0 8px 24px rgba(0, 70, 95, 0.14);
}

.navbar__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    width: min(1120px, 100%);
    min-height: 58px;
    margin: 0 auto;
    padding: 0 24px;
}

.navbar__external-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    min-height: 38px;
    border-radius: 2px;
    padding: -14px 14px;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: color 180ms ease;
}

.navbar__external-link:hover,
.navbar__external-link:focus-visible {
    background: rgba(255, 255, 255, 0.16);
    outline: none;
}

.navbar__menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 1;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.navbar__links {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 14px;
    border-radius: 2px;
    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
    transition: background-color 180ms ease, color 180ms ease;
}

.navbar__links:hover,
.navbar__links:focus-visible {
    background: rgba(255, 255, 255, 0.18);
    outline: none;
}

.navbar__toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.14);
    cursor: pointer;
}

.bar {
    display: block;
    width: 24px;
    height: 3px;
    margin: 5px auto;
    border-radius: 999px;
    background: #ffffff;
    transition: transform 180ms ease, opacity 180ms ease;
}

.navbar__toggle.is-active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.navbar__toggle.is-active .bar:nth-child(2) {
    opacity: 0;
}

.navbar__toggle.is-active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.hero-banner {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 440px;
    overflow: hidden;
    background: #007f7a;
}

.hero-banner::after {
    position: absolute;
    top: 40px;
    bottom: 40px;
    left: 0;
    content: "";
    width: min(100%, max(760px, calc((100% - 1120px) / 2 + 760px)));
    border-radius: 0 60px 60px 0;
    background: #007f7a;
}

.hero-banner__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-banner__content {
    position: relative;
    z-index: 1;
    width: min(1120px, 100%);
    margin: 0 auto;
    padding: 80px 24px;
    color: #ffffff;
}

.hero-banner__content h1 {
    max-width: 680px;
    color: #ffffff;
    font-size: clamp(2.75rem, 8vw, 5.75rem);
}

.hero-banner__content p {
    max-width: 520px;
    margin: 18px 0 0;
    font-size: clamp(1.05rem, 2.4vw, 1.35rem);
    line-height: 1.55;
}

.home-hero {
    display: grid;
    grid-template-columns: minmax(300px, 48%) minmax(220px, 52%);
    align-items: stretch;
    min-height: 360px;
    background: #eef7fb;
}

.home-hero::after {
    content: none;
}

.home-hero .hero-banner__image {
    position: static;
    grid-column: 2;
    grid-row: 1;
    height: 100%;
    min-height: clamp(240px, 32vw, 360px);
}

.home-hero .hero-banner__content {
    grid-column: 1;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    margin: 0;
    padding: clamp(48px, 7vw, 86px) clamp(32px, 6vw, 72px);
    color: #0b2940;
}

.home-hero .hero-banner__content h1 {
    max-width: 520px;
    margin: 0;
    color: #156965;
    font-family: "Poppins", sans-serif;
    font-size: clamp(3rem, 5.8vw, 6rem);
    font-weight: 600;
    letter-spacing: -0.05em;
    line-height: 1.08;
}

.home-hero .hero-banner__content p {
    max-width: 460px;
    margin-top: 22px;
    color: #243946;
    font-size: clamp(1rem, 1.45vw, 1.5rem);
    font-weight: 500;
    line-height: 1.7;
}

.locations-hero {
    justify-content: center;
    min-height: 80px;
    text-align: center;
}

.locations-hero::after {
    inset: 0;
    width: auto;
    border-radius: 0;
    background: rgba(0, 127, 122, 0.78);
}

.locations-hero .hero-banner__content {
    display: grid;
    justify-items: center;
    padding-top: 12px;
    padding-bottom: 12px;
}

.locations-hero .hero-banner__content h1,
.locations-hero .hero-banner__content p {
    max-width: none;
    margin-right: auto;
    margin-left: auto;
}

.locations-hero .hero-banner__content h1 {
    margin: 0;
    font-size: clamp(1.75rem, 4vw, 2.75rem);
}

.locations-hero .hero-banner__content p {
    margin-top: 6px;
    font-size: clamp(0.85rem, 1.5vw, 1rem);
}

@media screen and (max-width: 1024px) {
    .home-hero {
        display: flex;
        min-height: 420px;
        padding: 32px;
        background: #0d2f43;
    }

    .home-hero::after {
        inset: 0;
        width: auto;
        border-radius: 0;
        background: linear-gradient(90deg, rgba(255, 255, 255, 0.88) 0%, rgba(255, 255, 255, 0.72) 48%, rgba(255, 255, 255, 0.08) 100%);
        content: "";
    }

    .home-hero .hero-banner__content {
        position: relative;
        z-index: 1;
        display: flex;
        width: min(100%, 460px);
        margin: auto 0;
        padding: 32px 0;
        color: #0b2940;
        text-align: left;
    }

    .home-hero .hero-banner__image {
        position: absolute;
        inset: 0;
        grid-column: auto;
        grid-row: auto;
        width: 100%;
        height: 100%;
        min-height: 0;
    }

    .home-hero .hero-banner__content h1,
    .home-hero .hero-banner__content p {
        margin-right: 0;
        margin-left: 0;
    }
}

.page-section {
    --section-inline-padding: 60px;
    display: grid;
    place-items: left;
    min-height: 30vh;
    padding: 0 var(--section-inline-padding) 100px;
    border-bottom: 1px solid rgba(0, 127, 122, 0.18);
    position: relative;
}

@media screen and (min-width: 1480px) {
    .page-section {
        --section-inline-padding: clamp(180px, 18vw, 600px);
    }
}

.page-section:nth-of-type(odd) {
    background: #ffffff;
}

.page-section:nth-of-type(even) {
    background: #f6f8f9;
}

.custom-line {
  position: absolute;
  width: 1px;
  top: 15px;
  bottom: 15px;             
  background-color: #a2b9c2bd; 
  left: calc(var(--section-inline-padding) - 40px);
  border-radius: 3px;
}
.custom-line2 {
  position: absolute;
  width: 2px;
  top: 15px;
  bottom: 15px;             
  background-color: #a2b9c2bd; 
  right: calc(var(--section-inline-padding) - 40px);
}

.about-section {
    grid-template-columns: minmax(0, 1fr) minmax(240px, 34%);
    align-items: stretch;
    gap: clamp(28px, 5vw, 56px);
}

.about-section__copy {
    grid-column: 1;
    grid-row: 1;
    min-width: 0;
    align-self: center;
    padding: clamp(18px, 3vw, 28px) 0;
}

.about-section__copy h1 {
    margin-top: 0;
}

.about-section__offers {
    grid-column: 1 / -1;
    grid-row: 2;
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 0;
    min-width: 0;
    margin-top: 48px;
    padding: 56px 0 16px;
}

.offers-section__eyebrow {
    margin: 0 0 10px;
    color: #007f7a;
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-align: center;
}

.offers-section__title {
    margin: 0 0 40px;
    text-align: center;
}

.offers-section__copy {
    width: 100%;
    min-width: 0;
}

.offers-list {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.offers-list li {
    position: relative;
    display: grid;
    justify-items: center;
    align-content: start;
    gap: 12px;
    min-height: 210px;
    padding: 0 clamp(16px, 2.6vw, 34px);
    border-left: 1px solid rgba(13, 47, 67, 0.14);
    color: #0d2f43;
    text-align: center;
}

.offers-list li:first-child {
    border-left: 0;
}

.offers-list li::before {
    content: none;
}

.offers-list__icon {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    color: #007f7a;
    font-family: "Material Symbols Outlined";
    font-size: 2.6rem;
    font-weight: 300;
    line-height: 1;
    font-variation-settings: "FILL" 0, "wght" 300, "GRAD" 0, "opsz" 48;
}

.offers-list h3 {
    margin: 0;
    color: #0d2f43;
    font-size: clamp(0.92rem, 1.3vw, 1.05rem);
    font-weight: 800;
    line-height: 1.3;
}

.offers-list p {
    margin: 0;
    color: #314655;
    font-size: clamp(0.84rem, 1.1vw, 0.95rem);
    font-weight: 500;
    line-height: 1.55;
}

.offers-section__image {
    display: none;
}

.about-section__image {
    grid-column: 2;
    grid-row: 1;
    margin-top: 40px;
    display: block;
    width: 100%;
    height: calc(100% - 40px);
    min-height: 320px;
    border-radius: 4px;
    object-fit: cover;
    box-shadow: 12px 12px 0 rgba(0, 127, 122, 0.14);
}

h1 {
    margin: 40px 0;
    color: #006b72;
    font-size: clamp(4rem, 6vw, 5rem);
    font-family: "Poppins", sans-serif;
    line-height: 1;
    font-weight: 550;
}

.description {
    width: 100%;
    margin: 0;
    padding: 20px 0 20px;
    font-size: clamp(1.4rem, 2.4vw, 1.6rem);
    line-height: 1.55;
}

.audience-section {
    align-content: start;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    width: 100%;
}

.audience-card {
    display: flex;
    flex-direction: column;
    min-height: 260px;
    padding: clamp(28px, 4vw, 42px);
    border: 1px solid rgba(0, 127, 122, 0.14);
    border-top: 5px solid #007f7a;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 8px 8px 0 rgba(0, 127, 122, 0.1);
}

.audience-card h2 {
    margin: 0 0 18px;
    color: #007f7a;
    font-size: clamp(1.7rem, 2.7vw, 2.35rem);
    line-height: 1.08;
}

.audience-card p {
    margin: 0;
    color: #243946;
    font-size: clamp(1rem, 1.45vw, 1.15rem);
    font-weight: 500;
    line-height: 1.65;
}

.audience-card__list {
    display: grid;
    gap: 10px;
    margin: 18px 0 0;
    padding-left: 20px;
    color: #243946;
    font-size: clamp(0.96rem, 1.35vw, 1.08rem);
    line-height: 1.45;
}

.audience-card__list li::marker {
    color: #007f7a;
}

.testimonials-section {
    align-content: start;
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    width: 100%;
    padding-bottom: 20px;
}

.testimonial-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 280px;
    padding: clamp(28px, 4vw, 44px);
    border: 1px solid rgba(0, 127, 122, 0.14);
    border-top: 5px solid #007f7a;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 8px 8px 0 rgba(0, 127, 122, 0.1);
}

.testimonial-card::after {
    position: absolute;
    right: 22px;
    bottom: 18px;
    content: "”";
    color: rgba(0, 127, 122, 0.09);
    font-family: Georgia, serif;
    font-size: 6rem;
    line-height: 0.7;
    pointer-events: none;
}

.testimonial-card__rating {
    margin-bottom: 22px;
    color: #e59b18;
    font-size: 1.35rem;
    letter-spacing: 0.18em;
}

.testimonial-card blockquote {
    flex: 1;
    margin: 0;
    color: #073b4c;
    font-size: clamp(1.15rem, 1.8vw, 1.4rem);
    font-weight: 600;
    line-height: 1.65;
}

.testimonial-card__author {
    margin: 24px 0 0;
    color: #007f7a;
    font-size: 1rem;
    font-weight: 700;
}

.faq-section {
    align-content: start;
}

.faq-list {
    width: min(900px, 100%);
}

.faq-item {
    padding: 28px 0;
    border-top: 1px solid rgba(0, 127, 122, 0.18);
}

.faq-item:last-child {
    border-bottom: 1px solid rgba(0, 127, 122, 0.18);
}

.faq-item h2 {
    margin: 0 0 14px;
    color: #007f7a;
    font-size: clamp(1.45rem, 2.6vw, 2.1rem);
    line-height: 1.15;
}

.faq-item p {
    margin: 0;
    color: #243946;
    font-size: clamp(1.05rem, 1.6vw, 1.25rem);
    font-weight: 500;
    line-height: 1.65;
}

.visit-card {
    display: grid;
    grid-template-columns: minmax(230px, 0.75fr) minmax(420px, 1.35fr) minmax(230px, 0.7fr);
    align-items: stretch;
    gap: 28px;
    width: 100%;
    padding: clamp(24px, 4vw, 40px);
    border: 1px solid rgba(0, 127, 122, 0.14);
    border-top: 5px solid #007f7a;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 8px 8px 0 rgba(0, 127, 122, 0.1);
}

.visit-card__info {
    align-self: center;
}

.visit-list {
    display: none;
}

.visit-card__info h2 {
    margin: 0 0 24px;
    color: #0d2f43;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    line-height: 1.1;
}

.visit-card__table {
    width: 100%;
    border-collapse: collapse;
    color: #243946;
    font-size: clamp(1rem, 1.6vw, 1.2rem);
    line-height: 1.5;
}

.visit-card__table tr {
    border-bottom: 1px solid rgba(0, 127, 122, 0.16);
}

.visit-card__table tr:last-child {
    border-bottom: 0;
}

.visit-card__table th,
.visit-card__table td {
    padding: 14px 0;
    text-align: left;
    vertical-align: top;
}

.visit-card__table th {
    width: 34%;
    padding-right: 18px;
    color: #007f7a;
    font-weight: 800;
}

.visit-card__table a {
    color: #243946;
    font-weight: 700;
    text-decoration-color: rgba(0, 127, 122, 0.35);
    text-underline-offset: 4px;
}

.visit-list li {
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 12px;
    color: #243946;
    font-size: 0.95rem;
    line-height: 1.35;
}

.visit-list__icon {
    display: grid;
    place-items: center;
    width: 24px;
    height: 24px;
    color: #007f7a;
    font-size: 1.25rem;
    line-height: 1;
}

.visit-list strong {
    display: block;
    color: #0d2f43;
    font-size: 0.82rem;
    font-weight: 800;
}

.visit-list a {
    color: #243946;
    font-weight: 600;
    text-decoration: none;
}

.visit-list a:hover,
.visit-list a:focus-visible {
    color: #007f7a;
    outline: none;
}

.visit-card__map {
    width: 100%;
    min-height: 460px;
    border: 0;
    border-radius: 10px;
    filter: saturate(1.25) contrast(1.05) brightness(1.04);
}

.location-section--alton .description {
    max-width: 720px;
    padding: clamp(28px, 4vw, 44px);
    border: 1px solid rgba(0, 127, 122, 0.14);
    border-top: 5px solid #007f7a;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 8px 8px 0 rgba(0, 127, 122, 0.1);
}

.location-card {
    display: grid;
    grid-template-columns: minmax(220px, 0.75fr) minmax(220px, 0.65fr) minmax(420px, 1.35fr);
    gap: 28px;
    width: 100%;
    padding: clamp(24px, 4vw, 40px);
    border: 1px solid rgba(0, 127, 122, 0.14);
    border-top: 5px solid #007f7a;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 8px 8px 0 rgba(0, 127, 122, 0.1);
}

.location-card__image,
.location-card__map {
    width: 100%;
    min-height: 420px;
    border: 0;
    border-radius: 4px;
}

.location-card__image {
    display: block;
    height: 100%;
    object-fit: cover;
}

.location-card__map {
    filter: saturate(1.25) contrast(1.05) brightness(1.04);
}

.location-card__details {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.location-card__details h2 {
    margin: 0 0 16px;
    color: #007f7a;
    font-size: clamp(1.4rem, 2.4vw, 2rem);
    line-height: 1.15;
}

.location-card__details p {
    margin: 0 0 24px;
    color: #243946;
    font-size: 1.3rem;
    line-height: 1.6;
}

.location-card__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-height: 44px;
    padding: 0 22px;
    border: 2px solid #007f7a;
    border-radius: 6px;
    color: #007f7a;
    font-family: "Poppins", sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    text-decoration: none;
    transition: background-color 180ms ease, color 180ms ease;
}

.location-card__link:hover,
.location-card__link:focus-visible {
    background: #007f7a;
    color: #ffffff;
    outline: none;
}

.visit-card__location {
    grid-column: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 12px;
    padding-left: 28px;
    border-top: 0;
    border-left: 1px solid rgba(0, 127, 122, 0.14);
}

.visit-card__location h2 {
    margin: 0;
    color: #007f7a;
    font-size: clamp(1.1rem, 1.8vw, 1.35rem);
    line-height: 1.2;
}

.visit-card__location p {
    margin: 0;
    color: #243946;
    font-size: clamp(1.08rem, 1.6vw, 1.25rem);
    line-height: 1.6;
}

.visit-card__directions {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-height: 44px;
    padding: 0 22px;
    border: 2px solid #007f7a;
    border-radius: 6px;
    color: #007f7a;
    font-size: 0.9rem;
    font-weight: 800;
    text-decoration: none;
    transition: background-color 180ms ease, color 180ms ease;
}

.visit-card__directions::before {
    margin-right: 8px;
    content: "⌖";
}

.visit-card__directions:hover,
.visit-card__directions:focus-visible {
    background: #007f7a;
    color: #ffffff;
    outline: none;
}

.visit-card__directions::before {
    margin-right: 0;
    content: none;
}

.mountain-footer {
    position: relative;
    min-height: 240px;
    overflow: hidden;
    background: linear-gradient(180deg, #f6f8f9 0%, #e7f5f6 100%);
}

.mountain-footer::before,
.mountain-footer::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    content: "";
    pointer-events: none;
}

.mountain-footer::before {
    height: 78%;
    background: rgba(0, 127, 122, 0.12);
    clip-path: polygon(0 100%, 0 64%, 12% 45%, 22% 67%, 36% 31%, 50% 66%, 63% 42%, 76% 70%, 88% 39%, 100% 62%, 100% 100%);
}

.mountain-footer::after {
    height: 58%;
    background: rgba(0, 127, 122, 0.22);
    clip-path: polygon(0 100%, 0 72%, 16% 52%, 28% 76%, 43% 38%, 58% 74%, 72% 50%, 84% 77%, 100% 46%, 100% 100%);
}

.wave-footer {
    position: relative;
    min-height: 260px;
    overflow: hidden;
    background: #e8f7f8;
}

.wave-footer::before,
.wave-footer::after {
    position: absolute;
    left: -5%;
    width: 110%;
    content: "";
    pointer-events: none;
}

.wave-footer::before {
    top: -78px;
    height: 160px;
    border-radius: 0 0 50% 50%;
    background: #ffffff;
}

.wave-footer::after {
    top: 28px;
    height: 130px;
    border-radius: 46% 54% 50% 50%;
    background: rgba(255, 255, 255, 0.28);
    transform: rotate(-1.5deg);
}


@media screen and (max-width: 720px) {
    html {
        scroll-padding-top: 116px;
    }

    .logo-bar {
        min-height: 66px;
        padding: 0 18px;
    }

    #navbar__logo {
        font-size: 1.12rem;
    }

    #navbar__logo img {
        height: 50px;
    }

    .logo-bar__button {
        min-height: 34px;
        padding: 0 20px 0 10px;
        font-size: 0.72rem;
    }

    .logo-bar__button::before,
    .logo-bar__button::after {
        width: 18px;
    }

    .logo-bar__button::after {
        width: 14px;
    }

    .navbar {
        top: 66px;
    }

    .navbar__container {
        min-height: 54px;
        padding: 0 18px;
    }

    .navbar__external-link {
        font-size: 0.75rem;
        overflow-wrap: anywhere;
    }

    .navbar__toggle {
        flex: 0 0 auto;
        display: block;
    }

    .navbar__menu {
        position: absolute;
        top: 54px;
        left: 0;
        display: grid;
        justify-content: stretch;
        justify-items: center;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        gap: 0;
        background: #007f7a;
        box-shadow: 0 14px 24px rgba(0, 70, 95, 0.16);
        transition: max-height 220ms ease;
    }

    .navbar__menu.is-active {
        max-height: 320px;
    }

    .navbar__links {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        min-height: 54px;
        padding: 0 24px;
        border-radius: 0;
    }

    .hero-banner {
        min-height: 360px;
    }

    .hero-banner::after {
        inset: 28px 0;
        width: auto;
        border-radius: 0 28px 28px 0;
        background: rgba(0, 127, 122, 0.5);
    }

    .home-hero {
        display: flex;
        min-height: 420px;
        padding: 24px;
        background: #0d2f43;
    }

    .home-hero::after {
        inset: 0;
        width: auto;
        border-radius: 0;
        background: linear-gradient(90deg, rgba(255, 255, 255, 0.88) 0%, rgba(255, 255, 255, 0.72) 48%, rgba(255, 255, 255, 0.08) 100%);
        content: "";
    }

    .home-hero .hero-banner__image {
        position: absolute;
        inset: 0;
        grid-column: auto;
        grid-row: auto;
        width: 100%;
        height: 100%;
        min-height: 0;
    }

    .home-hero .hero-banner__content {
        position: relative;
        z-index: 1;
        display: flex;
        width: min(100%, 420px);
        margin: auto 0;
        padding: 32px 0;
        border: 0;
        border-radius: 0;
        background: transparent;
        color: #0b2940;
        text-align: left;
        backdrop-filter: none;
    }

    .home-hero .hero-banner__content h1,
    .home-hero .hero-banner__content p {
        margin-right: 0;
        margin-left: 0;
    }

    .locations-hero::after {
        inset: 0;
        border-radius: 0;
        background: rgba(0, 127, 122, 0.78);
    }

    .locations-hero {
        min-height: 80px;
    }

    .hero-banner__content {
        padding: 64px 18px;
        text-align: center;
    }

    .locations-hero .hero-banner__content {
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .hero-banner__content h1,
    .hero-banner__content p {
        margin-right: auto;
        margin-left: auto;
    }

    .page-section {
        --section-inline-padding: 24px;
        display: grid;
        place-items: start center;
        min-height: 20vh;
        padding: 56px var(--section-inline-padding);
        border-bottom: 0;
    }

    .about-section {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .about-section__copy {
        padding: 18px 0;
    }

    .about-section__copy,
    .about-section__offers,
    .about-section__image {
        grid-column: auto;
        grid-row: auto;
    }

    .about-section__image {
        margin-top: 0;
    }

    .about-section__image,
    .offers-section__image {
        height: auto;
        min-height: 0;
        aspect-ratio: 4 / 3;
    }

    .about-section__offers {
        grid-template-columns: 1fr;
        gap: 0;
        margin-top: 32px;
        padding-top: 36px;
    }

    .offers-section__title,
    .offers-section__copy {
        grid-column: auto;
        grid-row: auto;
    }

    .offers-list {
        grid-template-columns: 1fr;
    }

    .offers-list li {
        min-height: 0;
        padding: 26px 0;
        border-left: 0;
        border-top: 1px solid rgba(13, 47, 67, 0.14);
    }

    .offers-list li:first-child {
        border-top: 0;
    }

    h1 {
        max-width: 100%;
        font-size: clamp(2.75rem, 9vw, 4rem);
        overflow-wrap: anywhere;
    }

    .description {
        width: 100%;
        max-width: 100%;
        padding: 12px 0 0;
        font-size: 1.15rem;
        overflow-wrap: anywhere;
    }

    .audience-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .audience-card {
        min-height: 0;
        padding: 26px 22px;
    }

    .testimonials {
        grid-template-columns: 1fr;
        gap: 20px;
        padding-bottom: 40px;
    }

    .testimonial-card {
        min-height: 0;
        padding: 26px 22px;
        border-radius: 3px;
    }

    .visit-card {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .location-card {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .location-card__image,
    .location-card__map {
        min-height: 320px;
    }

    .visit-card__info,
    .visit-card__location {
        padding: 0;
    }

    .visit-card__location {
        border-top: 1px solid rgba(0, 127, 122, 0.14);
        border-left: 0;
        padding-left: 0;
    }

    .visit-card__table th,
    .visit-card__table td {
        display: block;
        width: 100%;
        padding: 6px 0;
    }

    .visit-card__table th {
        padding-top: 14px;
    }

    .visit-card__map {
        min-height: 320px;
    }

    .mountain-footer {
        min-height: 180px;
    }
}
