/* ═══════════════════════════════════════════════════════════════════════════
 * TOURWILL — SINGLE HOTEL PAGE  (single-hotel.php)
 * ─────────────────────────────────────────────────────────────────────────
 * Mobile-first scoped styles. Token system matches the theme's homepage and
 * accommodation page (Inter / Playfair / Caveat + forest-dark heading).
 *
 * Sections (in order):
 *   1. Tokens + base
 *   2. Buttons (primary, ghost, ghost-dark)
 *   3. Section primitives (.sh-section, .sh-section__title)
 *   4. Hero
 *   5. Info bar (floating white card)
 *   6. About this stay
 *   7. Facilities grid
 *   8. Gallery (swiper)
 *   9. Surroundings
 *  10. Ideal For (pill tags)
 *  11. Final CTA (dark teal panel)
 *  12. Reduced motion + print
 * ═══════════════════════════════════════════════════════════════════════════ */

/* ─────────────────────────────────────────────────────────────────────────
 * 1. Tokens + base
 * ───────────────────────────────────────────────────────────────────────── */
.sh-main {
    /* Color tokens */
    --sh-primary:        var(--color-primary, #134e4a);
    --sh-primary-dark:   #0d3a35;
    --sh-primary-deep:   #062322;
    --sh-accent:         var(--color-accent, #eab308);
    --sh-accent-dark:    #ca8a04;

    /* Heading + body inks — match the theme's homepage palette */
    --sh-ink:            var(--color-forest-dark, #07261C);
    --sh-ink-body:       #334155;
    --sh-ink-soft:       #475569;
    --sh-muted:          #5f6b6a;

    --sh-line:           #e5e7eb;
    --sh-line-soft:      #eef0ee;
    --sh-bg-page:        #f8f8f6;
    --sh-bg-card:        #ffffff;

    /* Typography — matches Tourwill's canonical 3-font system */
    --sh-font-sans:      "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    --sh-font-serif:     "Playfair Display", Georgia, "Times New Roman", serif;

    --sh-radius:         12px;
    --sh-radius-lg:      18px;
    --sh-radius-pill:    999px;
    --sh-shadow-card:    0 8px 24px rgba(7, 38, 28, .06);
    --sh-shadow-float:   0 18px 48px rgba(7, 38, 28, .12);
    --sh-ease:           cubic-bezier(.4, .14, .3, 1);

    background: var(--sh-bg-page);
    color: var(--sh-ink-body);
    font-family: var(--sh-font-sans);
    line-height: 1.55;
    overflow-x: hidden;
}

.sh-main *,
.sh-main *::before,
.sh-main *::after { box-sizing: border-box; }

.sh-main img,
.sh-main svg { max-width: 100%; }

/* ─────────────────────────────────────────────────────────────────────────
 * 2. Buttons
 * ───────────────────────────────────────────────────────────────────────── */
.sh-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 10px;
    font-family: inherit;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.2;
    text-decoration: none;
    border: 0;
    cursor: pointer;
    transition: transform .25s var(--sh-ease), background .25s var(--sh-ease),
                color .25s var(--sh-ease), box-shadow .25s var(--sh-ease),
                border-color .25s var(--sh-ease);
    white-space: normal;
    text-align: center;
    max-width: 100%;
    letter-spacing: .005em;
}
@media (min-width: 600px) {
    .sh-btn {
        padding: 13px 22px;
        font-size: 14.5px;
        white-space: nowrap;
    }
}
.sh-btn svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}
.sh-btn--primary {
    background: var(--sh-accent);
    color: #0c2419;
    box-shadow: 0 6px 18px rgba(234, 179, 8, .35);
}
.sh-btn--primary:hover {
    background: var(--sh-accent-dark);
    transform: translateY(-1px);
}
.sh-btn--ghost {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .35);
}
.sh-btn--ghost:hover {
    background: rgba(255, 255, 255, .08);
    border-color: rgba(255, 255, 255, .6);
}
.sh-btn--ghost-dark {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .25);
}
.sh-btn--ghost-dark:hover {
    background: rgba(255, 255, 255, .06);
    border-color: rgba(255, 255, 255, .45);
}
.sh-btn:focus-visible {
    outline: 2px solid var(--sh-accent);
    outline-offset: 3px;
}

/* ─────────────────────────────────────────────────────────────────────────
 * 3. Section primitives
 * ───────────────────────────────────────────────────────────────────────── */
.sh-section {
    padding: 40px 0;
}
.sh-section__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.sh-section__title {
    font-family: var(--sh-font-serif);
    font-size: clamp(22px, 5.4vw, 32px);
    font-weight: 700;
    line-height: 1.2;
    color: var(--sh-ink);
    margin: 0 0 22px;
    letter-spacing: -.01em;
    overflow-wrap: anywhere;
    hyphens: auto;
}
@media (min-width: 768px) {
    .sh-section { padding: 56px 0; }
    .sh-section__inner { padding: 0 32px; }
    .sh-section__title { margin-bottom: 28px; }
}
@media (min-width: 1024px) {
    .sh-section { padding: 64px 0; }
}

/* ─────────────────────────────────────────────────────────────────────────
 * 4. Hero
 * ───────────────────────────────────────────────────────────────────────── */
.sh-hero {
    position: relative;
    isolation: isolate;
    min-height: 600px;
    color: #fff;
    overflow: hidden;
}
.sh-hero__bg {
    position: absolute;
    inset: 0;
    z-index: -2;
}
.sh-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
.sh-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: -1;
    /* Vertical gradient on mobile so the bottom-aligned text stays legible */
    background: linear-gradient(
        180deg,
        rgba(6, 35, 34, .55) 0%,
        rgba(6, 35, 34, .35) 30%,
        rgba(6, 35, 34, .75) 70%,
        rgba(6, 35, 34, .92) 100%
    );
}
@media (min-width: 768px) {
    .sh-hero__overlay {
        background: linear-gradient(
            90deg,
            rgba(6, 35, 34, .92) 0%,
            rgba(6, 35, 34, .68) 45%,
            rgba(6, 35, 34, .15) 100%
        );
    }
}

.sh-hero__inner {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    /* Top padding clears the fixed navbar pill (~110px). Bottom padding
       gives the info bar room to float over. */
    padding: 130px 20px 110px;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px;
}
@media (min-width: 768px) {
    .sh-hero__inner {
        padding: 130px 32px 130px;
        min-height: 680px;
    }
}
@media (min-width: 1024px) {
    .sh-hero__inner {
        padding: 120px 40px 140px;
    }
}

.sh-hero__crumbs ol {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: rgba(255, 255, 255, .85);
}
.sh-hero__crumbs a {
    color: inherit;
    text-decoration: none;
    transition: color .2s var(--sh-ease);
}
.sh-hero__crumbs a:hover { color: var(--sh-accent); }
.sh-hero__crumb-sep {
    opacity: .55;
    font-size: 11px;
}
.sh-hero__crumbs li[aria-current="page"] {
    color: var(--sh-accent);
    font-weight: 500;
}

.sh-hero__content {
    max-width: 560px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
@media (min-width: 768px) {
    .sh-hero__content { gap: 18px; max-width: 600px; }
}

.sh-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: transparent;
    border: 1px solid var(--sh-accent);
    color: var(--sh-accent);
    border-radius: var(--sh-radius-pill);
    font-size: 12.5px;
    font-weight: 600;
    width: fit-content;
    text-decoration: none;
    transition: background .25s var(--sh-ease), color .25s var(--sh-ease);
}
.sh-hero__badge svg { width: 14px; height: 14px; }
.sh-hero__badge:hover {
    background: var(--sh-accent);
    color: #0c2419;
}

.sh-hero__title {
    font-family: var(--sh-font-serif);
    font-size: clamp(34px, 9vw, 64px);
    font-weight: 700;
    line-height: 1.05;
    color: #fff;
    margin: 0;
    letter-spacing: -.015em;
}

.sh-hero__loc {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    color: var(--sh-accent);
    font-size: 14.5px;
    font-weight: 500;
}
.sh-hero__loc svg { width: 16px; height: 16px; flex-shrink: 0; }

.sh-hero__desc {
    margin: 0;
    font-size: 14.5px;
    line-height: 1.6;
    color: rgba(255, 255, 255, .88);
    max-width: 50ch;
}
@media (min-width: 768px) {
    .sh-hero__desc { font-size: 15.5px; }
}

.sh-hero__tags {
    list-style: none;
    padding: 0;
    margin: 4px 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.sh-hero__tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    background: rgba(255, 255, 255, .1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: var(--sh-radius-pill);
    font-size: 12.5px;
    font-weight: 500;
    color: #fff;
}
.sh-hero__tag-icon {
    display: inline-flex;
    width: 14px;
    height: 14px;
    color: var(--sh-accent);
}
.sh-hero__tag-icon svg { width: 100%; height: 100%; }

.sh-hero__ctas {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-top: 6px;
}
.sh-hero__ctas .sh-btn { width: auto; max-width: 100%; }
@media (min-width: 600px) {
    .sh-hero__ctas {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        gap: 12px;
    }
}

/* ─────────────────────────────────────────────────────────────────────────
 * 5. Info bar — floating white card
 * ───────────────────────────────────────────────────────────────────────── */
.sh-infobar {
    position: relative;
    z-index: 3;
    /* Float upward to overlap the bottom of the hero */
    margin-top: -64px;
    padding: 0 16px;
}
@media (min-width: 768px) {
    .sh-infobar { margin-top: -80px; padding: 0 32px; }
}
.sh-infobar__inner {
    max-width: 1200px;
    margin: 0 auto;
    background: var(--sh-bg-card);
    border-radius: var(--sh-radius-lg);
    box-shadow: var(--sh-shadow-float);
    padding: 16px;
}
@media (min-width: 768px) {
    .sh-infobar__inner { padding: 22px 28px; }
}
.sh-infobar__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    /* Mobile: 2 columns. Tablet: 3. Desktop: 5 in a row. */
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
@media (min-width: 600px) {
    .sh-infobar__list { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1024px) {
    .sh-infobar__list { grid-template-columns: repeat(5, 1fr); gap: 20px; }
}
.sh-infobar__cell {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    min-width: 0;
}
.sh-infobar__icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    color: var(--sh-accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.sh-infobar__icon svg { width: 22px; height: 22px; }
.sh-infobar__text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}
.sh-infobar__label {
    font-size: 11.5px;
    color: var(--sh-muted);
    text-transform: none;
    letter-spacing: .02em;
}
.sh-infobar__value {
    font-size: 14px;
    font-weight: 600;
    color: var(--sh-ink);
    line-height: 1.3;
    overflow-wrap: anywhere;
}

/* ─────────────────────────────────────────────────────────────────────────
 * 6. About this stay
 * ───────────────────────────────────────────────────────────────────────── */
.sh-section--about { padding-top: 48px; }
@media (min-width: 768px) {
    .sh-section--about { padding-top: 72px; }
}

.sh-about__grid {
    display: grid;
    gap: 28px;
    grid-template-columns: 1fr;
}
@media (min-width: 900px) {
    .sh-about__grid {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: 56px;
        align-items: start;
    }
}

.sh-about__body p {
    margin: 0 0 14px;
    color: var(--sh-ink-body);
    font-size: 15px;
    line-height: 1.7;
}
.sh-about__body p:last-child { margin-bottom: 0; }

.sh-about__mini {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}
@media (min-width: 600px) {
    .sh-about__mini { gap: 16px; }
}

.sh-mini-card {
    background: var(--sh-bg-card);
    border-radius: var(--sh-radius);
    padding: 18px 16px;
    box-shadow: var(--sh-shadow-card);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    min-height: 110px;
}
.sh-mini-card__icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    color: var(--sh-accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.sh-mini-card__icon svg { width: 100%; height: 100%; }
.sh-mini-card__body {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}
.sh-mini-card__label {
    font-size: 12px;
    color: var(--sh-muted);
}
.sh-mini-card__value {
    font-size: 14.5px;
    font-weight: 600;
    color: var(--sh-ink);
    line-height: 1.35;
}

/* ─────────────────────────────────────────────────────────────────────────
 * 7. Facilities grid
 * ───────────────────────────────────────────────────────────────────────── */
.sh-facilities__grid {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}
@media (min-width: 600px) {
    .sh-facilities__grid { grid-template-columns: repeat(4, 1fr); gap: 14px; }
}
@media (min-width: 1024px) {
    .sh-facilities__grid { grid-template-columns: repeat(8, 1fr); }
}

.sh-facility {
    background: var(--sh-bg-card);
    border-radius: var(--sh-radius);
    padding: 18px 12px;
    box-shadow: var(--sh-shadow-card);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    min-height: 110px;
    transition: transform .25s var(--sh-ease), box-shadow .25s var(--sh-ease);
}
.sh-facility:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(7, 38, 28, .08);
}
.sh-facility__icon {
    width: 32px;
    height: 32px;
    color: var(--sh-accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.sh-facility__icon svg { width: 100%; height: 100%; }
.sh-facility__icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}
.sh-facility__label {
    font-size: 13px;
    font-weight: 600;
    color: var(--sh-ink);
    line-height: 1.3;
    overflow-wrap: anywhere;
}

/* ─────────────────────────────────────────────────────────────────────────
 * 8. Gallery
 * ───────────────────────────────────────────────────────────────────────── */
.sh-gallery {
    position: relative;
}
.sh-gallery__swiper {
    overflow: hidden;
    border-radius: var(--sh-radius);
}
.sh-gallery__slide {
    margin: 0;
    border-radius: var(--sh-radius);
    overflow: hidden;
    aspect-ratio: 4 / 3;
    width: 78%;
}
@media (min-width: 600px) {
    .sh-gallery__slide { width: 48%; }
}
@media (min-width: 1024px) {
    .sh-gallery__slide { width: calc((100% - 3 * 16px) / 4); aspect-ratio: 4 / 5; }
}
.sh-gallery__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .6s var(--sh-ease);
}
.sh-gallery__slide:hover img { transform: scale(1.04); }

.sh-gallery__nav {
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--sh-line);
    color: var(--sh-ink);
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: var(--sh-shadow-card);
    transition: background .25s var(--sh-ease), color .25s var(--sh-ease),
                transform .25s var(--sh-ease);
    z-index: 2;
}
.sh-gallery__nav svg { width: 18px; height: 18px; }
.sh-gallery__nav:hover {
    background: var(--sh-primary);
    color: #fff;
    transform: translateY(-50%) scale(1.08);
}
@media (min-width: 1024px) {
    .sh-gallery__nav { display: inline-flex; right: -12px; }
}

/* ─────────────────────────────────────────────────────────────────────────
 * 9. Surroundings
 * ───────────────────────────────────────────────────────────────────────── */
.sh-surr__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}
@media (min-width: 900px) {
    .sh-surr__grid {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: 40px;
        align-items: stretch;
    }
}

.sh-surr__map {
    border-radius: var(--sh-radius);
    overflow: hidden;
    background: #eef0ee;
    box-shadow: var(--sh-shadow-card);
    aspect-ratio: 4 / 3;
    min-height: 240px;
}
@media (min-width: 900px) {
    .sh-surr__map { aspect-ratio: auto; min-height: 380px; }
}
.sh-surr__map iframe,
.sh-surr__map img {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    object-fit: cover;
}
.sh-surr__map-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: var(--sh-muted);
    padding: 24px;
    text-align: center;
    gap: 12px;
}
.sh-surr__map-placeholder svg { width: 48px; height: 48px; opacity: .35; }

.sh-surr__content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.sh-surr__desc {
    margin: 0;
    color: var(--sh-ink-body);
    font-size: 15px;
    line-height: 1.65;
}
.sh-surr__list {
    list-style: none;
    padding: 0;
    margin: 8px 0 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.sh-surr__item {
    display: grid;
    grid-template-columns: 24px 1fr auto;
    gap: 14px;
    align-items: center;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--sh-line-soft);
}
.sh-surr__item:last-child { border-bottom: 0; padding-bottom: 0; }
.sh-surr__item-icon {
    width: 22px;
    height: 22px;
    color: var(--sh-accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.sh-surr__item-icon svg { width: 100%; height: 100%; }
.sh-surr__item-name {
    font-size: 14.5px;
    font-weight: 600;
    color: var(--sh-ink);
    line-height: 1.3;
    min-width: 0;
    overflow-wrap: anywhere;
}
.sh-surr__item-time {
    font-size: 13.5px;
    color: var(--sh-ink-body);
    text-align: right;
    white-space: nowrap;
}

/* ─────────────────────────────────────────────────────────────────────────
 * 10. Ideal For
 * ───────────────────────────────────────────────────────────────────────── */
.sh-ideal__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.sh-ideal__item { display: inline-flex; }
.sh-ideal__pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: var(--sh-bg-card);
    border: 1px solid var(--sh-line);
    border-radius: var(--sh-radius-pill);
    box-shadow: var(--sh-shadow-card);
    color: var(--sh-ink);
    font-size: 13.5px;
    font-weight: 600;
    text-decoration: none;
    transition: border-color .25s var(--sh-ease), background .25s var(--sh-ease),
                transform .25s var(--sh-ease);
}
.sh-ideal__pill:hover {
    border-color: var(--sh-accent);
    transform: translateY(-1px);
}
.sh-ideal__icon {
    display: inline-flex;
    width: 18px;
    height: 18px;
    color: var(--sh-accent);
}
.sh-ideal__icon svg { width: 100%; height: 100%; }

/* ─────────────────────────────────────────────────────────────────────────
 * 11. Final CTA panel
 * ───────────────────────────────────────────────────────────────────────── */
.sh-section--cta { padding-bottom: 64px; }

.sh-cta {
    position: relative;
    background: linear-gradient(135deg, var(--sh-primary-deep) 0%, var(--sh-primary) 100%);
    color: #fff;
    border-radius: var(--sh-radius-lg);
    padding: 32px 24px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}
@media (min-width: 900px) {
    .sh-cta {
        padding: 44px 56px;
        grid-template-columns: minmax(0, 1.4fr) auto;
        align-items: center;
        gap: 32px;
    }
}
.sh-cta__leaf {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 80px;
    height: auto;
    color: var(--sh-accent);
    pointer-events: none;
}
@media (min-width: 900px) {
    .sh-cta__leaf { left: 16px; bottom: 16px; width: 100px; }
}
.sh-cta__head {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.sh-cta__title {
    font-family: var(--sh-font-serif);
    font-size: clamp(22px, 5vw, 30px);
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1.2;
}
.sh-cta__desc {
    margin: 0;
    color: rgba(255, 255, 255, .82);
    font-size: 14.5px;
    line-height: 1.6;
    max-width: 50ch;
}

.sh-cta__btns {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
}
@media (min-width: 600px) {
    .sh-cta__btns {
        flex-direction: row;
        align-items: center;
        flex-wrap: wrap;
    }
    .sh-cta__btns .sh-btn { width: auto; }
}
@media (min-width: 900px) {
    .sh-cta__btns { justify-content: flex-end; }
}

.sh-cta__support {
    list-style: none;
    padding: 20px 0 0;
    margin: 0;
    grid-column: 1 / -1;
    border-top: 1px solid rgba(255, 255, 255, .12);
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}
@media (min-width: 600px) {
    .sh-cta__support {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
        padding-top: 24px;
    }
}
.sh-cta__support-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    min-width: 0;
}
.sh-cta__support-icon {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    color: var(--sh-accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.sh-cta__support-icon svg { width: 100%; height: 100%; }
.sh-cta__support-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}
.sh-cta__support-title {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
}
.sh-cta__support-desc {
    color: rgba(255, 255, 255, .72);
    font-size: 13px;
    line-height: 1.4;
}

/* ─────────────────────────────────────────────────────────────────────────
 * 12. Reduced motion + print
 * ───────────────────────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
    .sh-main *,
    .sh-main *::before,
    .sh-main *::after {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .001ms !important;
        scroll-behavior: auto !important;
    }
}

@media print {
    .sh-hero__overlay,
    .sh-gallery__nav,
    .sh-cta { background: none !important; color: #000 !important; }
    .sh-section { page-break-inside: avoid; }
}
