.landing-container {
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
}

.landing-hero {
    position: relative;
    display: flex;
    isolation: isolate;
    min-height: calc(100svh - var(--header-height));
    align-items: center;
    overflow: hidden;
    background: linear-gradient(120deg, #4D211C 0%, #79382E 48%, #BC6C5F 100%);
    background:
        radial-gradient(circle at 78% 28%, color-mix(in srgb, var(--theme-section-soft-background, #F3E0DC) 70%, transparent), transparent 25%),
        linear-gradient(
            120deg,
            color-mix(in srgb, var(--theme-section-dark-background, #482019) 92%, var(--theme-accent, #BC4639)) 0%,
            color-mix(in srgb, var(--theme-section-dark-background, #482019) 58%, var(--theme-accent, #BC4639)) 48%,
            color-mix(in srgb, var(--theme-accent, #BC4639) 72%, var(--theme-section-soft-background, #F3E0DC)) 100%
        );
    background-position: center;
    background-size: cover;
    color: var(--theme-section-dark-text, #FFFFFF);
}

.landing-hero__backgrounds {
    position: absolute;
    z-index: 0;
    inset: 0;
    overflow: hidden;
}

.landing-hero__backgrounds::after {
    position: absolute;
    z-index: 1;
    inset: 0;
    background: linear-gradient(90deg, rgba(38, 19, 17, .78), rgba(38, 19, 17, .28));
    content: "";
    pointer-events: none;
}

.landing-hero__background {
    position: absolute;
    inset: -2%;
    background-position: center;
    background-size: cover;
    opacity: 0;
    transition: opacity 1.4s ease;
    will-change: opacity;
}

.landing-hero__background.is-active {
    opacity: 1;
}

.landing-hero::before {
    position: absolute;
    z-index: 1;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(32, 12, 9, .35));
    content: "";
    pointer-events: none;
}

.landing-hero__inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 48px;
    padding: 90px 0;
}

.landing-hero__content {
    max-width: 780px;
}

.landing-eyebrow {
    margin-bottom: 18px;
    color: var(--theme-accent, #BC4639);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.landing-eyebrow--light {
    color: #F4C9C0;
    color: color-mix(in srgb, var(--theme-section-dark-text, #FFFFFF) 78%, var(--theme-accent, #BC4639));
}

.landing-hero h1 {
    max-width: 900px;
    margin: 0;
    font-size: clamp(44px, 7vw, 88px);
    font-weight: 800;
    letter-spacing: -.055em;
    line-height: .98;
    text-shadow: 0 8px 30px rgba(0, 0, 0, .28);
}

.landing-hero__content > p {
    max-width: 700px;
    margin: 30px 0 0;
    color: rgba(255, 255, 255, .88);
    font-size: clamp(18px, 2.1vw, 24px);
    line-height: 1.55;
}

.landing-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 36px;
}

.landing-button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    border: 0;
    border-radius: 999px;
    font-family: inherit;
    font-size: 15px;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.landing-button:hover {
    transform: translateY(-2px);
}

.landing-button--primary {
    background: var(--theme-button-background, #4285F4);
    color: var(--theme-button-text, #FFFFFF);
    box-shadow: 0 12px 28px rgba(66, 133, 244, .3);
    box-shadow: 0 12px 28px color-mix(in srgb, var(--theme-button-background, #4285F4) 30%, transparent);
}

.landing-button--primary:hover,
.landing-button--primary:focus {
    background: var(--theme-button-hover-background, #2F6FD1);
    color: var(--theme-button-hover-text, #FFFFFF);
    box-shadow: 0 16px 36px rgba(66, 133, 244, .38);
    box-shadow: 0 16px 36px color-mix(in srgb, var(--theme-button-hover-background, #2F6FD1) 38%, transparent);
}

.landing-button--ghost {
    border: 1px solid rgba(255, 255, 255, .55);
    background: rgba(255, 255, 255, .1);
    color: var(--theme-section-dark-text, #FFFFFF);
    backdrop-filter: blur(8px);
}

.landing-button--ghost:hover {
    background: rgba(255, 255, 255, .18);
    color: var(--theme-section-dark-text, #FFFFFF);
}

.landing-hero__badge {
    display: grid;
    flex: 0 0 210px;
    gap: 8px;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 22px;
    background: rgba(255, 255, 255, .1);
    backdrop-filter: blur(12px);
}

.landing-hero__badge strong {
    font-size: 18px;
}

.landing-hero__badge span {
    color: rgba(255, 255, 255, .72);
    font-size: 13px;
    line-height: 1.5;
}

.landing-section {
    padding: 110px 0;
    scroll-margin-top: calc(var(--header-height) + 10px);
}

.landing-section--light {
    background: var(--theme-section-light-background, #FFFAF8);
}

.landing-section--soft {
    background: var(--theme-section-soft-background, #F3E0DC);
}

.landing-section--dark {
    background:
        radial-gradient(circle at 95% 8%, color-mix(in srgb, var(--theme-accent, #BC4639) 28%, transparent), transparent 25%),
        var(--theme-section-dark-background, #482019);
    color: var(--theme-section-dark-text, #FFFFFF);
}

.landing-section--contact {
    background: linear-gradient(135deg, var(--theme-section-dark-background, #482019), var(--theme-accent, #BC4639));
    color: var(--theme-section-dark-text, #FFFFFF);
}

.landing-split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, .9fr);
    align-items: center;
    gap: 80px;
}

.landing-split h2,
.landing-heading h2,
.contact-section h2 {
    margin: 0;
    color: var(--theme-page-text, #3F2925);
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 800;
    letter-spacing: -.05em;
    line-height: 1.05;
}

.landing-prose,
.landing-heading > p,
.contact-section > div > p {
    margin-top: 28px;
    color: #67453f;
    font-size: 18px;
    line-height: 1.8;
}

.landing-about-gallery {
    position: relative;
    min-width: 0;
}

.landing-about-gallery__stage {
    position: relative;
    min-height: 540px;
    overflow: hidden;
    border-radius: 34px;
    background: var(--theme-card-light-background, #FFFFFF);
    box-shadow: var(--site-shadow);
    isolation: isolate;
}

.landing-about-gallery__slide {
    position: absolute;
    z-index: 0;
    inset: 0;
    margin: 0;
    overflow: hidden;
    clip-path: inset(100% 0 0 0 round 34px);
    opacity: 0;
    pointer-events: none;
    transition:
        clip-path 1.05s cubic-bezier(.22, .84, .26, 1),
        opacity .75s ease;
    will-change: clip-path, opacity;
}

.landing-about-gallery__slide.is-active {
    z-index: 3;
    clip-path: inset(0 0 0 0 round 34px);
    opacity: 1;
    pointer-events: auto;
}

.landing-about-gallery__slide.is-leaving {
    z-index: 2;
    clip-path: inset(0 0 0 0 round 34px);
    opacity: 0;
}

.landing-about-gallery__slide img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 540px;
    object-fit: cover;
}

.landing-about-gallery__overlay {
    position: absolute;
    z-index: 6;
    right: 22px;
    bottom: 18px;
    left: 22px;
    display: grid;
    gap: 10px;
    pointer-events: none;
}

.landing-about-gallery__caption {
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 16px;
    background: rgba(35, 18, 15, .20);
    color: #FFFFFF;
    line-height: 1.5;
    backdrop-filter: blur(5px);
}

.landing-about-gallery__caption.is-empty {
    display: none;
}

.landing-about-gallery__dots {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    pointer-events: auto;
}

.landing-about-gallery__dots button {
    width: 10px;
    height: 5px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, .56);
    box-shadow: 0 1px 6px rgba(35, 18, 15, .28);
    cursor: pointer;
    transition: width .3s ease, background .3s ease, transform .2s ease;
}

.landing-about-gallery__dots button:hover,
.landing-about-gallery__dots button:focus-visible {
    transform: translateY(-2px);
}

.landing-about-gallery__dots button.is-active {
    width: 30px;
    background: #FFFFFF;
}

.landing-about-gallery--placeholder {
    display: grid;
    min-height: 540px;
    place-items: center;
    padding: 30px;
    border-radius: 34px;
    background:
        linear-gradient(145deg, rgba(66, 133, 244, .15), transparent 55%),
        linear-gradient(135deg, #d4a59a, #f3e0dc);
    box-shadow: var(--site-shadow);
}

.landing-media__placeholder {
    display: grid;
    gap: 8px;
    text-align: center;
}

.landing-media__placeholder span {
    color: var(--theme-page-text, #3F2925);
    font-size: 32px;
    font-weight: 800;
}

.landing-media__placeholder small {
    color: #7e4e46;
}

.landing-heading {
    max-width: 760px;
    margin-bottom: 52px;
}

.landing-heading--center {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.landing-heading--light h2,
.contact-section h2 {
    color: var(--theme-section-dark-text, #FFFFFF);
}

.landing-heading--light > p,
.contact-section > div > p {
    color: rgba(255, 255, 255, .72);
}

.location-grid {
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    overflow: hidden;
    border: 1px solid rgba(92, 32, 24, .12);
    border-radius: 32px;
    background: var(--theme-card-light-background, #FFFFFF);
    box-shadow: var(--site-shadow);
}

.location-card {
    display: flex;
    min-height: 520px;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    padding: clamp(30px, 5vw, 62px);
    background: var(--theme-card-light-background, #FFFFFF);
    text-align: center;
}

.location-card__label {
    margin-bottom: 18px;
    color: var(--theme-card-light-eyebrow, #BC4639);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.location-card__address {
    color: var(--theme-card-light-heading, #5C2018);
    font-size: clamp(25px, 3vw, 38px);
    line-height: 1.35;
}

.location-card p {
    margin: 18px 0 28px;
    color: var(--theme-card-light-text, #3F2925);
    line-height: 1.7;
}

.location-card__status {
    min-height: 24px;
    margin-top: 10px;
    color: #367055;
    font-size: 14px;
    font-weight: 700;
}

.map-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
}

.map-links a {
    padding: 9px 13px;
    border: 1px solid rgba(92, 32, 24, .14);
    border-radius: 999px;
    color: var(--theme-card-light-heading, #5C2018);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.location-map {
    min-height: 520px;
    background: #d6c7c2;
}

.location-map iframe,
.location-map img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 520px;
    border: 0;
    object-fit: cover;
}

.location-map__placeholder {
    display: grid;
    height: 100%;
    min-height: 520px;
    place-content: center;
    gap: 10px;
    padding: 30px;
    background:
        linear-gradient(45deg, rgba(255,255,255,.42) 25%, transparent 25%, transparent 75%, rgba(255,255,255,.42) 75%),
        linear-gradient(45deg, rgba(255,255,255,.42) 25%, #d7c1ba 25%, #d7c1ba 75%, rgba(255,255,255,.42) 75%);
    background-position: 0 0, 24px 24px;
    background-size: 48px 48px;
    color: var(--theme-page-text, #3F2925);
    text-align: center;
}

.location-map__placeholder strong {
    font-size: 30px;
}

.location-map__placeholder span {
    max-width: 300px;
    padding: 8px 14px;
    border-radius: 12px;
    background: rgba(255,255,255,.76);
}

.landing-card-grid {
    display: grid;
    gap: 22px;
}

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

.landing-card-grid--four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.landing-card {
    --landing-card-background: var(--theme-card-light-background, #FFFFFF);
    --landing-card-eyebrow: var(--theme-card-light-eyebrow, #BC4639);
    --landing-card-heading: var(--theme-card-light-heading, #5C2018);
    --landing-card-text: var(--theme-card-light-text, #3F2925);
    position: relative;
    display: flex;
    min-height: 280px;
    align-items: flex-start;
    flex-direction: column;
    padding: 30px;
    overflow: hidden;
    border: 1px solid color-mix(in srgb, var(--landing-card-heading) 10%, transparent);
    border-radius: 25px;
    background: var(--landing-card-background);
    box-shadow: 0 12px 34px color-mix(in srgb, var(--landing-card-heading) 8%, transparent);
    transition: transform .22s ease, box-shadow .22s ease;
}

.landing-card--light {
    --landing-card-background: var(--theme-card-light-background, #FFFFFF);
    --landing-card-eyebrow: var(--theme-card-light-eyebrow, #BC4639);
    --landing-card-heading: var(--theme-card-light-heading, #5C2018);
    --landing-card-text: var(--theme-card-light-text, #3F2925);
}

.landing-card--soft {
    --landing-card-background: var(--theme-card-soft-background, #D4A59A);
    --landing-card-eyebrow: var(--theme-card-soft-eyebrow, #BC4639);
    --landing-card-heading: var(--theme-card-soft-heading, #5C2018);
    --landing-card-text: var(--theme-card-soft-text, #3F2925);
}

.landing-card--dark {
    --landing-card-background: var(--theme-card-dark-background, #482019);
    --landing-card-eyebrow: var(--theme-card-dark-eyebrow, #D4A59A);
    --landing-card-heading: var(--theme-card-dark-heading, #FFFFFF);
    --landing-card-text: var(--theme-card-dark-text, #F3E0DC);
    box-shadow: none;
    backdrop-filter: blur(8px);
}

.landing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 44px color-mix(in srgb, var(--landing-card-heading) 14%, transparent);
}

.landing-card--image {
    --landing-card-eyebrow: var(--theme-card-dark-eyebrow, #D4A59A);
    --landing-card-heading: var(--theme-card-dark-heading, #FFFFFF);
    --landing-card-text: var(--theme-card-dark-text, #F3E0DC);
    min-height: 360px;
    justify-content: flex-end;
    background-position: center;
    background-size: cover;
    color: var(--landing-card-text);
}

.landing-card__eyebrow {
    margin-bottom: 12px;
    color: var(--landing-card-eyebrow);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.landing-card__icon {
    display: grid;
    width: 50px;
    height: 50px;
    margin-bottom: 28px;
    place-items: center;
    border-radius: 16px;
    background: color-mix(in srgb, var(--landing-card-eyebrow) 16%, transparent);
    color: var(--landing-card-eyebrow);
    font-size: 24px;
}

.landing-card--image .landing-card__icon {
    background: color-mix(in srgb, var(--landing-card-heading) 18%, transparent);
    backdrop-filter: blur(8px);
}

.landing-card h3 {
    margin: 0;
    color: var(--landing-card-heading);
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -.03em;
}

.landing-card p {
    margin: 14px 0 24px;
    color: var(--landing-card-text);
    line-height: 1.65;
}

.landing-card__links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px 18px;
    margin-top: auto;
}

.landing-card__link {
    color: var(--landing-card-heading);
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
}

.landing-card__link--secondary {
    opacity: .72;
}

.landing-card__link:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
}

.landing-heading--gallery {
    max-width: none;
}

.landing-gallery-filters {
    min-width: 0;
    margin-top: 28px;
}

.landing-gallery-filters__track {
    display: flex;
    min-width: 0;
    gap: 10px;
    padding: 2px 2px 10px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: thin;
}

.landing-gallery-filter {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    flex: 0 0 auto;
    gap: 9px;
    padding: 8px 15px 8px 9px;
    border: 1px solid rgba(92, 32, 24, .16);
    border-radius: 16px;
    background: color-mix(in srgb, var(--theme-card-light-background, #FFFFFF) 86%, transparent);
    color: var(--theme-page-text, #3F2925);
    box-shadow: 0 8px 22px rgba(92, 32, 24, .06);
    cursor: pointer;
    white-space: nowrap;
    transition: border-color .2s ease, background .2s ease, color .2s ease, transform .2s ease;
}

.landing-gallery-filter:hover {
    transform: translateY(-2px);
    border-color: color-mix(in srgb, var(--theme-accent, #BC4639) 48%, transparent);
}

.landing-gallery-filter:focus-visible {
    outline: 3px solid color-mix(in srgb, var(--theme-button-primary-background, #4285F4) 38%, transparent);
    outline-offset: 2px;
}

.landing-gallery-filter.is-active,
.landing-gallery-filter[aria-pressed="true"] {
    border-color: var(--theme-accent, #BC4639);
    background: var(--theme-accent, #BC4639);
    color: #FFFFFF;
    box-shadow: 0 12px 26px color-mix(in srgb, var(--theme-accent, #BC4639) 24%, transparent);
}

.landing-gallery-filter__icon {
    display: grid;
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    place-items: center;
    border-radius: 10px;
    background: color-mix(in srgb, currentColor 12%, transparent);
    font-size: 16px;
    line-height: 1;
}

.landing-gallery-filters--dark .landing-gallery-filter {
    border-color: rgba(255, 255, 255, .2);
    background: rgba(255, 255, 255, .08);
    color: var(--theme-section-dark-text, #FFFFFF);
    box-shadow: none;
}

.landing-gallery-filters--dark .landing-gallery-filter.is-active,
.landing-gallery-filters--dark .landing-gallery-filter[aria-pressed="true"] {
    border-color: var(--theme-card-dark-eyebrow, #D4A59A);
    background: var(--theme-card-dark-eyebrow, #D4A59A);
    color: var(--theme-card-light-heading, #5C2018);
}

.landing-gallery-filter-status {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
    white-space: nowrap;
}

.landing-gallery {
    display: grid;
    grid-auto-rows: 250px;
    grid-template-columns: repeat(12, 1fr);
    gap: 16px;
}

.landing-gallery__item {
    position: relative;
    grid-column: span 4;
    margin: 0;
    overflow: hidden;
    border-radius: 22px;
    background: var(--theme-card-light-background, #FFFFFF);
}

.landing-gallery__item:nth-child(5n + 1),
.landing-gallery__item:nth-child(5n + 4) {
    grid-column: span 8;
}

.landing-gallery.is-filtered .landing-gallery__item,
.landing-gallery.is-filtered .landing-gallery__item:nth-child(5n + 1),
.landing-gallery.is-filtered .landing-gallery__item:nth-child(5n + 4) {
    grid-column: span 4;
}

.landing-gallery.is-filtered .landing-gallery__item.is-wide {
    grid-column: span 8;
}

[data-gallery-item][hidden],
[data-gallery-filter-empty][hidden] {
    display: none !important;
}

.landing-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.landing-gallery__item:hover img {
    transform: scale(1.035);
}

.landing-gallery__item figcaption {
    position: absolute;
    right: 12px;
    bottom: 12px;
    left: 12px;
    padding: 10px 13px;
    border-radius: 12px;
    background: color-mix(in srgb, var(--theme-card-dark-background, #482019) 15%, transparent);
    color: var(--theme-card-dark-text, #F3E0DC);
    font-size: 13px;
    backdrop-filter: blur(4px);
}

.landing-empty-gallery {
    display: grid;
    min-height: 280px;
    place-content: center;
    gap: 10px;
    border: 2px dashed rgba(92, 32, 24, .18);
    border-radius: 28px;
    color: #7d574f;
    text-align: center;
}

.landing-empty-gallery strong {
    color: var(--theme-page-text, #3F2925);
    font-size: 24px;
}

.landing-empty-gallery--filter {
    margin-top: 16px;
}

.contact-section {
    display: grid;
    grid-template-columns: 1fr .9fr;
    align-items: center;
    gap: 80px;
}

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

.contact-links a,
.contact-links__static {
    display: grid;
    min-height: 110px;
    align-content: center;
    gap: 8px;
    padding: 22px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 20px;
    background: var(--theme-card-dark-background, #482019);
    color: var(--theme-card-dark-text, #F3E0DC);
    text-decoration: none;
    backdrop-filter: blur(10px);
    transition: background .2s ease, transform .2s ease;
}

.contact-links a:hover {
    background: color-mix(in srgb, var(--theme-card-dark-background, #482019) 86%, var(--theme-card-dark-heading, #FFFFFF));
    color: var(--theme-card-dark-heading, #FFFFFF);
    transform: translateY(-3px);
}

.contact-links span {
    color: var(--theme-card-dark-eyebrow, #D4A59A);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.contact-links strong {
    color: var(--theme-card-dark-heading, #FFFFFF);
    font-size: 17px;
}

@media (max-width: 1050px) {
    .landing-card-grid--four {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .landing-split,
    .contact-section {
        gap: 48px;
    }
}

@media (max-width: 860px) {
    .landing-hero__inner,
    .landing-split,
    .location-grid,
    .contact-section {
        grid-template-columns: 1fr;
    }

    .landing-hero__inner {
        display: grid;
        align-items: center;
    }

    .landing-hero__badge {
        max-width: 280px;
    }

    .landing-split {
        display: grid;
    }

    .landing-about-gallery__stage,
    .landing-about-gallery__slide img,
    .landing-about-gallery--placeholder {
        min-height: 440px;
    }

    .location-grid {
        display: grid;
    }

    .location-card,
    .location-map,
    .location-map iframe,
    .location-map img,
    .location-map__placeholder {
        min-height: 410px;
    }

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

    .landing-gallery__item,
    .landing-gallery__item:nth-child(5n + 1),
    .landing-gallery__item:nth-child(5n + 4),
    .landing-gallery.is-filtered .landing-gallery__item,
    .landing-gallery.is-filtered .landing-gallery__item.is-wide {
        grid-column: span 6;
    }
}

@media (max-width: 640px) {
    .landing-container {
        width: min(100% - 28px, 1200px);
    }

    .landing-hero {
        min-height: calc(88svh - var(--header-height));
    }

    .landing-hero__inner {
        padding: 58px 0;
    }

    .landing-hero h1 {
        font-size: clamp(40px, 13vw, 60px);
    }

    .landing-hero__content > p {
        font-size: 17px;
    }

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

    .landing-button {
        width: 100%;
    }

    .landing-section {
        padding: 78px 0;
    }

    .landing-split,
    .contact-section {
        gap: 34px;
    }

    .landing-split h2,
    .landing-heading h2,
    .contact-section h2 {
        font-size: 39px;
    }

    .landing-prose,
    .landing-heading > p,
    .contact-section > div > p {
        font-size: 16px;
    }


    .landing-about-gallery__stage,
    .landing-about-gallery__slide img,
    .landing-about-gallery--placeholder {
        min-height: 390px;
    }

    .landing-about-gallery__stage,
    .landing-about-gallery--placeholder {
        border-radius: 24px;
    }

    .landing-about-gallery__slide {
        clip-path: inset(100% 0 0 0 round 24px);
    }

    .landing-about-gallery__slide.is-active,
    .landing-about-gallery__slide.is-leaving {
        clip-path: inset(0 0 0 0 round 24px);
    }

    .landing-about-gallery__overlay {
        right: 16px;
        bottom: 14px;
        left: 16px;
        gap: 8px;
    }

    .landing-about-gallery__caption {
        padding: 10px 13px;
        border-radius: 13px;
    }

    .landing-card-grid--three,
    .landing-card-grid--four,
    .contact-links {
        grid-template-columns: 1fr;
    }

    .landing-card {
        min-height: 250px;
    }

    .landing-gallery {
        grid-auto-rows: 220px;
    }

    .landing-gallery__item,
    .landing-gallery__item:nth-child(5n + 1),
    .landing-gallery__item:nth-child(5n + 4),
    .landing-gallery.is-filtered .landing-gallery__item,
    .landing-gallery.is-filtered .landing-gallery__item.is-wide {
        grid-column: span 12;
    }

    .landing-gallery-filter {
        min-height: 44px;
        padding: 7px 13px 7px 8px;
    }

    .location-card {
        padding: 28px;
    }
}

/* Dynamic typography bindings. Values are generated by SiteTypography. */
.landing-eyebrow {
    font-family: var(--type-section-eyebrow-font-family, Inter, "Segoe UI", Arial, sans-serif);
    font-size: var(--type-section-eyebrow-font-size, 0.8125rem);
    font-weight: var(--type-section-eyebrow-font-weight, 800);
    font-style: var(--type-section-eyebrow-font-style, normal);
    line-height: var(--type-section-eyebrow-line-height, 1.2);
    letter-spacing: var(--type-section-eyebrow-letter-spacing, 0.16em);
    text-transform: var(--type-section-eyebrow-text-transform, uppercase);
}

.landing-hero .landing-eyebrow {
    font-family: var(--type-hero-eyebrow-font-family, Inter, "Segoe UI", Arial, sans-serif);
    font-size: var(--type-hero-eyebrow-font-size, 0.8125rem);
    font-weight: var(--type-hero-eyebrow-font-weight, 800);
    font-style: var(--type-hero-eyebrow-font-style, normal);
    line-height: var(--type-hero-eyebrow-line-height, 1.2);
    letter-spacing: var(--type-hero-eyebrow-letter-spacing, 0.16em);
    text-transform: var(--type-hero-eyebrow-text-transform, uppercase);
}

.landing-hero h1 {
    font-family: var(--type-hero-heading-font-family, Inter, "Segoe UI", Arial, sans-serif);
    font-size: var(--type-hero-heading-font-size, clamp(2.75rem, 7vw, 5.5rem));
    font-weight: var(--type-hero-heading-font-weight, 800);
    font-style: var(--type-hero-heading-font-style, normal);
    line-height: var(--type-hero-heading-line-height, 0.98);
    letter-spacing: var(--type-hero-heading-letter-spacing, -0.055em);
    text-transform: var(--type-hero-heading-text-transform, none);
}

.landing-hero__content > p {
    font-family: var(--type-hero-text-font-family, Inter, "Segoe UI", Arial, sans-serif);
    font-size: var(--type-hero-text-font-size, clamp(1.125rem, 2.1vw, 1.5rem));
    font-weight: var(--type-hero-text-font-weight, 400);
    font-style: var(--type-hero-text-font-style, normal);
    line-height: var(--type-hero-text-line-height, 1.55);
    letter-spacing: var(--type-hero-text-letter-spacing, 0em);
    text-transform: var(--type-hero-text-text-transform, none);
}

.landing-button,
.landing-card__link,
.landing-gallery-filter,
.map-links a {
    font-family: var(--type-button-font-family, Inter, "Segoe UI", Arial, sans-serif);
    font-size: var(--type-button-font-size, 0.9375rem);
    font-weight: var(--type-button-font-weight, 800);
    font-style: var(--type-button-font-style, normal);
    line-height: var(--type-button-line-height, 1.2);
    letter-spacing: var(--type-button-letter-spacing, 0em);
    text-transform: var(--type-button-text-transform, none);
}

.landing-hero__badge strong {
    font-family: var(--type-card-dark-heading-font-family, Inter, "Segoe UI", Arial, sans-serif);
    font-size: var(--type-card-dark-heading-font-size, 1.125rem);
    font-weight: var(--type-card-dark-heading-font-weight, 800);
    font-style: var(--type-card-dark-heading-font-style, normal);
    line-height: var(--type-card-dark-heading-line-height, 1.2);
    letter-spacing: var(--type-card-dark-heading-letter-spacing, -0.03em);
    text-transform: var(--type-card-dark-heading-text-transform, none);
}

.landing-hero__badge span {
    font-family: var(--type-card-dark-text-font-family, Inter, "Segoe UI", Arial, sans-serif);
    font-size: var(--type-card-dark-text-font-size, 0.8125rem);
    font-weight: var(--type-card-dark-text-font-weight, 400);
    font-style: var(--type-card-dark-text-font-style, normal);
    line-height: var(--type-card-dark-text-line-height, 1.5);
    letter-spacing: var(--type-card-dark-text-letter-spacing, 0em);
    text-transform: var(--type-card-dark-text-text-transform, none);
}

.landing-split h2,
.landing-heading h2,
.contact-section h2 {
    font-family: var(--type-section-heading-font-family, Inter, "Segoe UI", Arial, sans-serif);
    font-size: var(--type-section-heading-font-size, clamp(2.25rem, 5vw, 4rem));
    font-weight: var(--type-section-heading-font-weight, 800);
    font-style: var(--type-section-heading-font-style, normal);
    line-height: var(--type-section-heading-line-height, 1.05);
    letter-spacing: var(--type-section-heading-letter-spacing, -0.05em);
    text-transform: var(--type-section-heading-text-transform, none);
}

.landing-prose,
.landing-heading > p,
.contact-section > div > p {
    font-family: var(--type-section-text-font-family, Inter, "Segoe UI", Arial, sans-serif);
    font-size: var(--type-section-text-font-size, 1.125rem);
    font-weight: var(--type-section-text-font-weight, 400);
    font-style: var(--type-section-text-font-style, normal);
    line-height: var(--type-section-text-line-height, 1.8);
    letter-spacing: var(--type-section-text-letter-spacing, 0em);
    text-transform: var(--type-section-text-text-transform, none);
}

.landing-media__placeholder span {
    font-family: var(--type-card-soft-heading-font-family, Inter, "Segoe UI", Arial, sans-serif);
    font-size: var(--type-card-soft-heading-font-size, 2rem);
    font-weight: var(--type-card-soft-heading-font-weight, 800);
    font-style: var(--type-card-soft-heading-font-style, normal);
    line-height: var(--type-card-soft-heading-line-height, 1.2);
    letter-spacing: var(--type-card-soft-heading-letter-spacing, -0.03em);
    text-transform: var(--type-card-soft-heading-text-transform, none);
}

.landing-media__placeholder small,
.location-card__status,
.landing-gallery__item figcaption,
.landing-about-gallery__caption {
    font-family: var(--type-caption-font-family, Inter, "Segoe UI", Arial, sans-serif);
    font-size: var(--type-caption-font-size, 0.8125rem);
    font-weight: var(--type-caption-font-weight, 400);
    font-style: var(--type-caption-font-style, normal);
    line-height: var(--type-caption-line-height, 1.5);
    letter-spacing: var(--type-caption-letter-spacing, 0em);
    text-transform: var(--type-caption-text-transform, none);
}

.location-card__label {
    font-family: var(--type-card-light-eyebrow-font-family, Inter, "Segoe UI", Arial, sans-serif);
    font-size: var(--type-card-light-eyebrow-font-size, 0.8125rem);
    font-weight: var(--type-card-light-eyebrow-font-weight, 800);
    font-style: var(--type-card-light-eyebrow-font-style, normal);
    line-height: var(--type-card-light-eyebrow-line-height, 1.2);
    letter-spacing: var(--type-card-light-eyebrow-letter-spacing, 0.12em);
    text-transform: var(--type-card-light-eyebrow-text-transform, uppercase);
}

.location-card__address {
    font-family: var(--type-address-heading-font-family, Inter, "Segoe UI", Arial, sans-serif);
    font-size: var(--type-address-heading-font-size, clamp(1.5625rem, 3vw, 2.375rem));
    font-weight: var(--type-address-heading-font-weight, 700);
    font-style: var(--type-address-heading-font-style, normal);
    line-height: var(--type-address-heading-line-height, 1.35);
    letter-spacing: var(--type-address-heading-letter-spacing, 0em);
    text-transform: var(--type-address-heading-text-transform, none);
}

.location-card p {
    font-family: var(--type-card-light-text-font-family, Inter, "Segoe UI", Arial, sans-serif);
    font-size: var(--type-card-light-text-font-size, 1rem);
    font-weight: var(--type-card-light-text-font-weight, 400);
    font-style: var(--type-card-light-text-font-style, normal);
    line-height: var(--type-card-light-text-line-height, 1.7);
    letter-spacing: var(--type-card-light-text-letter-spacing, 0em);
    text-transform: var(--type-card-light-text-text-transform, none);
}

.location-map__placeholder strong {
    font-family: var(--type-section-heading-font-family, Inter, "Segoe UI", Arial, sans-serif);
    font-size: var(--type-section-heading-font-size, 1.875rem);
    font-weight: var(--type-section-heading-font-weight, 800);
    font-style: var(--type-section-heading-font-style, normal);
    line-height: var(--type-section-heading-line-height, 1.05);
    letter-spacing: var(--type-section-heading-letter-spacing, -0.05em);
    text-transform: var(--type-section-heading-text-transform, none);
}

.location-map__placeholder span {
    font-family: var(--type-section-text-font-family, Inter, "Segoe UI", Arial, sans-serif);
    font-size: var(--type-section-text-font-size, 1rem);
    font-weight: var(--type-section-text-font-weight, 400);
    font-style: var(--type-section-text-font-style, normal);
    line-height: var(--type-section-text-line-height, 1.5);
    letter-spacing: var(--type-section-text-letter-spacing, 0em);
    text-transform: var(--type-section-text-text-transform, none);
}

.landing-card--light {
    --landing-card-eyebrow-font-family: var(--type-card-light-eyebrow-font-family, Inter, "Segoe UI", Arial, sans-serif);
    --landing-card-eyebrow-font-size: var(--type-card-light-eyebrow-font-size, 0.75rem);
    --landing-card-eyebrow-font-weight: var(--type-card-light-eyebrow-font-weight, 800);
    --landing-card-eyebrow-font-style: var(--type-card-light-eyebrow-font-style, normal);
    --landing-card-eyebrow-line-height: var(--type-card-light-eyebrow-line-height, 1.2);
    --landing-card-eyebrow-letter-spacing: var(--type-card-light-eyebrow-letter-spacing, 0.12em);
    --landing-card-eyebrow-text-transform: var(--type-card-light-eyebrow-text-transform, uppercase);
    --landing-card-heading-font-family: var(--type-card-light-heading-font-family, Inter, "Segoe UI", Arial, sans-serif);
    --landing-card-heading-font-size: var(--type-card-light-heading-font-size, 1.5rem);
    --landing-card-heading-font-weight: var(--type-card-light-heading-font-weight, 800);
    --landing-card-heading-font-style: var(--type-card-light-heading-font-style, normal);
    --landing-card-heading-line-height: var(--type-card-light-heading-line-height, 1.2);
    --landing-card-heading-letter-spacing: var(--type-card-light-heading-letter-spacing, -0.03em);
    --landing-card-heading-text-transform: var(--type-card-light-heading-text-transform, none);
    --landing-card-text-font-family: var(--type-card-light-text-font-family, Inter, "Segoe UI", Arial, sans-serif);
    --landing-card-text-font-size: var(--type-card-light-text-font-size, 1rem);
    --landing-card-text-font-weight: var(--type-card-light-text-font-weight, 400);
    --landing-card-text-font-style: var(--type-card-light-text-font-style, normal);
    --landing-card-text-line-height: var(--type-card-light-text-line-height, 1.65);
    --landing-card-text-letter-spacing: var(--type-card-light-text-letter-spacing, 0em);
    --landing-card-text-text-transform: var(--type-card-light-text-text-transform, none);
}

.landing-card--soft {
    --landing-card-eyebrow-font-family: var(--type-card-soft-eyebrow-font-family, Inter, "Segoe UI", Arial, sans-serif);
    --landing-card-eyebrow-font-size: var(--type-card-soft-eyebrow-font-size, 0.75rem);
    --landing-card-eyebrow-font-weight: var(--type-card-soft-eyebrow-font-weight, 800);
    --landing-card-eyebrow-font-style: var(--type-card-soft-eyebrow-font-style, normal);
    --landing-card-eyebrow-line-height: var(--type-card-soft-eyebrow-line-height, 1.2);
    --landing-card-eyebrow-letter-spacing: var(--type-card-soft-eyebrow-letter-spacing, 0.12em);
    --landing-card-eyebrow-text-transform: var(--type-card-soft-eyebrow-text-transform, uppercase);
    --landing-card-heading-font-family: var(--type-card-soft-heading-font-family, Inter, "Segoe UI", Arial, sans-serif);
    --landing-card-heading-font-size: var(--type-card-soft-heading-font-size, 1.5rem);
    --landing-card-heading-font-weight: var(--type-card-soft-heading-font-weight, 800);
    --landing-card-heading-font-style: var(--type-card-soft-heading-font-style, normal);
    --landing-card-heading-line-height: var(--type-card-soft-heading-line-height, 1.2);
    --landing-card-heading-letter-spacing: var(--type-card-soft-heading-letter-spacing, -0.03em);
    --landing-card-heading-text-transform: var(--type-card-soft-heading-text-transform, none);
    --landing-card-text-font-family: var(--type-card-soft-text-font-family, Inter, "Segoe UI", Arial, sans-serif);
    --landing-card-text-font-size: var(--type-card-soft-text-font-size, 1rem);
    --landing-card-text-font-weight: var(--type-card-soft-text-font-weight, 400);
    --landing-card-text-font-style: var(--type-card-soft-text-font-style, normal);
    --landing-card-text-line-height: var(--type-card-soft-text-line-height, 1.65);
    --landing-card-text-letter-spacing: var(--type-card-soft-text-letter-spacing, 0em);
    --landing-card-text-text-transform: var(--type-card-soft-text-text-transform, none);
}

.landing-card--dark,
.landing-card--image {
    --landing-card-eyebrow-font-family: var(--type-card-dark-eyebrow-font-family, Inter, "Segoe UI", Arial, sans-serif);
    --landing-card-eyebrow-font-size: var(--type-card-dark-eyebrow-font-size, 0.75rem);
    --landing-card-eyebrow-font-weight: var(--type-card-dark-eyebrow-font-weight, 800);
    --landing-card-eyebrow-font-style: var(--type-card-dark-eyebrow-font-style, normal);
    --landing-card-eyebrow-line-height: var(--type-card-dark-eyebrow-line-height, 1.2);
    --landing-card-eyebrow-letter-spacing: var(--type-card-dark-eyebrow-letter-spacing, 0.12em);
    --landing-card-eyebrow-text-transform: var(--type-card-dark-eyebrow-text-transform, uppercase);
    --landing-card-heading-font-family: var(--type-card-dark-heading-font-family, Inter, "Segoe UI", Arial, sans-serif);
    --landing-card-heading-font-size: var(--type-card-dark-heading-font-size, 1.5rem);
    --landing-card-heading-font-weight: var(--type-card-dark-heading-font-weight, 800);
    --landing-card-heading-font-style: var(--type-card-dark-heading-font-style, normal);
    --landing-card-heading-line-height: var(--type-card-dark-heading-line-height, 1.2);
    --landing-card-heading-letter-spacing: var(--type-card-dark-heading-letter-spacing, -0.03em);
    --landing-card-heading-text-transform: var(--type-card-dark-heading-text-transform, none);
    --landing-card-text-font-family: var(--type-card-dark-text-font-family, Inter, "Segoe UI", Arial, sans-serif);
    --landing-card-text-font-size: var(--type-card-dark-text-font-size, 1rem);
    --landing-card-text-font-weight: var(--type-card-dark-text-font-weight, 400);
    --landing-card-text-font-style: var(--type-card-dark-text-font-style, normal);
    --landing-card-text-line-height: var(--type-card-dark-text-line-height, 1.65);
    --landing-card-text-letter-spacing: var(--type-card-dark-text-letter-spacing, 0em);
    --landing-card-text-text-transform: var(--type-card-dark-text-text-transform, none);
}

.landing-card__eyebrow {
    font-family: var(--landing-card-eyebrow-font-family);
    font-size: var(--landing-card-eyebrow-font-size);
    font-weight: var(--landing-card-eyebrow-font-weight);
    font-style: var(--landing-card-eyebrow-font-style);
    line-height: var(--landing-card-eyebrow-line-height);
    letter-spacing: var(--landing-card-eyebrow-letter-spacing);
    text-transform: var(--landing-card-eyebrow-text-transform);
}

.landing-card h3 {
    font-family: var(--landing-card-heading-font-family);
    font-size: var(--landing-card-heading-font-size);
    font-weight: var(--landing-card-heading-font-weight);
    font-style: var(--landing-card-heading-font-style);
    line-height: var(--landing-card-heading-line-height);
    letter-spacing: var(--landing-card-heading-letter-spacing);
    text-transform: var(--landing-card-heading-text-transform);
}

.landing-card p {
    font-family: var(--landing-card-text-font-family);
    font-size: var(--landing-card-text-font-size);
    font-weight: var(--landing-card-text-font-weight);
    font-style: var(--landing-card-text-font-style);
    line-height: var(--landing-card-text-line-height);
    letter-spacing: var(--landing-card-text-letter-spacing);
    text-transform: var(--landing-card-text-text-transform);
}

.landing-empty-gallery strong {
    font-family: var(--type-card-light-heading-font-family, Inter, "Segoe UI", Arial, sans-serif);
    font-size: var(--type-card-light-heading-font-size, 1.5rem);
    font-weight: var(--type-card-light-heading-font-weight, 800);
    font-style: var(--type-card-light-heading-font-style, normal);
    line-height: var(--type-card-light-heading-line-height, 1.2);
    letter-spacing: var(--type-card-light-heading-letter-spacing, -0.03em);
    text-transform: var(--type-card-light-heading-text-transform, none);
}

.contact-links span {
    font-family: var(--type-card-dark-eyebrow-font-family, Inter, "Segoe UI", Arial, sans-serif);
    font-size: var(--type-card-dark-eyebrow-font-size, 0.75rem);
    font-weight: var(--type-card-dark-eyebrow-font-weight, 800);
    font-style: var(--type-card-dark-eyebrow-font-style, normal);
    line-height: var(--type-card-dark-eyebrow-line-height, 1.2);
    letter-spacing: var(--type-card-dark-eyebrow-letter-spacing, 0.1em);
    text-transform: var(--type-card-dark-eyebrow-text-transform, uppercase);
}

.contact-links strong {
    font-family: var(--type-card-dark-heading-font-family, Inter, "Segoe UI", Arial, sans-serif);
    font-size: var(--type-card-dark-heading-font-size, 1.0625rem);
    font-weight: var(--type-card-dark-heading-font-weight, 800);
    font-style: var(--type-card-dark-heading-font-style, normal);
    line-height: var(--type-card-dark-heading-line-height, 1.2);
    letter-spacing: var(--type-card-dark-heading-letter-spacing, -0.03em);
    text-transform: var(--type-card-dark-heading-text-transform, none);
}


.landing-section--managed {
    content-visibility: auto;
    contain-intrinsic-size: auto 800px;
}

.landing-card-collection {
    --landing-card-heading-cap: 1.5rem;
    --landing-card-text-cap: 1rem;
    --landing-card-eyebrow-cap: 0.75rem;
    display: grid;
    gap: 22px;
}

.landing-card-collection--tiles {
    grid-template-columns: repeat(var(--landing-section-columns, 3), minmax(0, 1fr));
}

.landing-card-collection--list {
    grid-template-columns: repeat(var(--landing-section-columns, 1), minmax(0, 1fr));
    grid-template-rows: repeat(var(--landing-section-rows, 1), minmax(0, auto));
    grid-auto-flow: column;
    grid-auto-columns: minmax(0, 1fr);
    align-items: stretch;
}

.landing-card-collection--density-comfortable {
    --landing-card-heading-cap: 1.65rem;
    --landing-card-text-cap: 1.05rem;
    --landing-card-eyebrow-cap: 0.78rem;
}

.landing-card-collection--density-regular {
    --landing-card-heading-cap: 1.5rem;
    --landing-card-text-cap: 1rem;
    --landing-card-eyebrow-cap: 0.75rem;
}

.landing-card-collection--density-compact {
    --landing-card-heading-cap: 1.28rem;
    --landing-card-text-cap: 0.94rem;
    --landing-card-eyebrow-cap: 0.7rem;
}

.landing-card-collection--density-dense {
    --landing-card-heading-cap: 1.12rem;
    --landing-card-text-cap: 0.88rem;
    --landing-card-eyebrow-cap: 0.66rem;
}

.landing-card-collection .landing-card__eyebrow {
    font-size: min(var(--landing-card-eyebrow-font-size), var(--landing-card-eyebrow-cap));
}

.landing-card-collection .landing-card h3 {
    font-size: min(var(--landing-card-heading-font-size), var(--landing-card-heading-cap));
}

.landing-card-collection .landing-card p {
    font-size: min(var(--landing-card-text-font-size), var(--landing-card-text-cap));
}

.landing-card__content {
    position: relative;
    z-index: 2;
    display: flex;
    width: 100%;
    min-height: 100%;
    align-items: flex-start;
    flex-direction: column;
    container: landing-card-content / inline-size;
}

.landing-card__media {
    position: absolute;
    z-index: 0;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.landing-card--image {
    background: var(--theme-card-dark-background, #482019);
}

.landing-card--image::after {
    position: absolute;
    z-index: 1;
    inset: 0;
    background: linear-gradient(180deg, rgba(38, 19, 17, .06), rgba(38, 19, 17, .84));
    content: '';
    pointer-events: none;
}

.landing-card--layout-tiles.landing-card--image .landing-card__content {
    justify-content: flex-end;
}

.landing-card:hover .landing-card__media {
    transform: scale(1.04);
}

.landing-card-collection--density-compact .landing-card,
.landing-card-collection--density-dense .landing-card {
    padding: 24px;
}

.landing-card-collection--density-dense .landing-card {
    min-height: 240px;
}

.landing-card-collection--density-dense .landing-card__icon {
    width: 44px;
    height: 44px;
    margin-bottom: 20px;
    font-size: 21px;
}

.landing-card-collection--list .landing-card {
    min-height: 180px;
    padding: 24px;
}

.landing-card-collection--list .landing-card__icon {
    width: 44px;
    height: 44px;
    margin-bottom: 18px;
    border-radius: 14px;
    font-size: 21px;
}

.landing-card-collection--list .landing-card p {
    margin: 10px 0 18px;
}

.landing-card-collection--list .landing-card--image {
    display: grid;
    grid-template-columns: minmax(120px, .42fr) minmax(0, 1fr);
    padding: 0;
}

.landing-card-collection--list .landing-card--image::after {
    display: none;
}

.landing-card-collection--list .landing-card--image .landing-card__media {
    position: relative;
    grid-column: 1;
    grid-row: 1;
    min-height: 180px;
}

.landing-card-collection--list .landing-card--image .landing-card__content {
    grid-column: 2;
    grid-row: 1;
    justify-content: center;
    padding: 24px;
}

.landing-card-collection__empty {
    padding: 26px;
    border: 1px dashed currentColor;
    border-radius: 20px;
    color: color-mix(in srgb, currentColor 66%, transparent);
    text-align: center;
}

.landing-section--dark .landing-empty-gallery {
    border-color: rgba(255, 255, 255, .24);
    color: rgba(255, 255, 255, .72);
}

.landing-section--dark .landing-empty-gallery strong {
    color: var(--theme-section-dark-text, #FFFFFF);
}

@media (max-width: 1050px) {
    .landing-card-collection--tiles,
    .landing-card-collection--list {
        grid-template-columns: repeat(var(--landing-section-tablet-columns, 2), minmax(0, 1fr));
    }

    .landing-card-collection--list {
        grid-template-rows: none;
        grid-auto-flow: row;
    }
}

@media (max-width: 640px) {
    .landing-card-collection {
        --landing-card-heading-cap: 1.5rem;
        --landing-card-text-cap: 1rem;
        --landing-card-eyebrow-cap: 0.75rem;
    }

    .landing-card-collection--tiles,
    .landing-card-collection--list {
        grid-template-columns: 1fr;
    }

    .landing-card-collection--list .landing-card--image {
        grid-template-columns: 1fr;
    }

    .landing-card-collection--list .landing-card--image .landing-card__media {
        grid-column: 1;
        grid-row: 1;
        min-height: 190px;
        max-height: 240px;
    }

    .landing-card-collection--list .landing-card--image .landing-card__content {
        grid-column: 1;
        grid-row: 2;
    }
}

@container landing-card-content (max-width: 239px) {
    .landing-card__eyebrow {
        font-size: min(var(--landing-card-eyebrow-font-size), 0.66rem);
    }

    .landing-card h3 {
        font-size: min(var(--landing-card-heading-font-size), 1.12rem);
    }

    .landing-card p {
        font-size: min(var(--landing-card-text-font-size), 0.88rem);
    }
}

@container landing-card-content (min-width: 240px) and (max-width: 319px) {
    .landing-card__eyebrow {
        font-size: min(var(--landing-card-eyebrow-font-size), 0.7rem);
    }

    .landing-card h3 {
        font-size: min(var(--landing-card-heading-font-size), 1.28rem);
    }

    .landing-card p {
        font-size: min(var(--landing-card-text-font-size), 0.94rem);
    }
}

@container landing-card-content (min-width: 320px) and (max-width: 419px) {
    .landing-card__eyebrow {
        font-size: min(var(--landing-card-eyebrow-font-size), 0.75rem);
    }

    .landing-card h3 {
        font-size: min(var(--landing-card-heading-font-size), 1.5rem);
    }

    .landing-card p {
        font-size: min(var(--landing-card-text-font-size), 1rem);
    }
}

@container landing-card-content (min-width: 420px) {
    .landing-card__eyebrow {
        font-size: min(var(--landing-card-eyebrow-font-size), 0.78rem);
    }

    .landing-card h3 {
        font-size: min(var(--landing-card-heading-font-size), 1.65rem);
    }

    .landing-card p {
        font-size: min(var(--landing-card-text-font-size), 1.05rem);
    }
}

@media (prefers-reduced-motion: reduce) {
    .landing-hero__background,
    .landing-about-gallery__slide,
    .landing-about-gallery__dots button {
        transition: none;
    }
}
