/**
 * Bathroom Transformations page.
 * Scoped to .aahr-bt-page so it cannot alter the rest of the AAHR site.
 */
.aahr-bt-page {
    --bt-navy: #092845;
    --bt-navy-2: #123b62;
    --bt-red: #c91f37;
    --bt-red-dark: #a5162a;
    --bt-ink: #102238;
    --bt-muted: #5f6f80;
    --bt-warm: #f7f1e7;
    --bt-soft: #f4f7fa;
    --bt-line: #d9e1e8;
    --bt-white: #ffffff;
    --bt-gold: #d99a17;
    --bt-shadow: 0 18px 44px rgba(16, 34, 56, 0.12);
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background: var(--bt-white);
    color: var(--bt-ink);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.55;
}

.aahr-bt-page *,
.aahr-bt-page *::before,
.aahr-bt-page *::after {
    box-sizing: border-box;
}

.aahr-bt-page img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
}

.aahr-bt-page a {
    color: inherit;
    text-decoration: none;
}

.aahr-bt-page button,
.aahr-bt-page input,
.aahr-bt-page select,
.aahr-bt-page textarea {
    font: inherit;
}

.aahr-bt-page .shell {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.aahr-bt-page .btn {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.aahr-bt-page .btn:hover,
.aahr-bt-page .btn:focus-visible {
    transform: translateY(-2px);
}

.aahr-bt-page .btn:focus-visible,
.aahr-bt-page .filter-btn:focus-visible,
.aahr-bt-page .compare-range:focus-visible {
    outline: 3px solid rgba(201, 31, 55, 0.32);
    outline-offset: 3px;
}

.aahr-bt-page .btn-primary {
    background: var(--bt-red);
    color: var(--bt-white);
    box-shadow: 0 10px 24px rgba(201, 31, 55, 0.24);
}

.aahr-bt-page .btn-primary:hover,
.aahr-bt-page .btn-primary:focus-visible {
    background: var(--bt-red-dark);
}

.aahr-bt-page .btn-light {
    background: var(--bt-white);
    color: var(--bt-navy);
}

.aahr-bt-page .btn-outline {
    border-color: rgba(255, 255, 255, 0.88);
    background: transparent;
    color: var(--bt-white);
}

.aahr-bt-page .kicker {
    display: block;
    margin-bottom: 12px;
    color: var(--bt-red);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.aahr-bt-page .kicker-light {
    color: #ff9aa9;
}

.aahr-bt-page h1,
.aahr-bt-page h2,
.aahr-bt-page h3 {
    margin: 0;
    color: var(--bt-navy);
    font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
    font-weight: 700;
    line-height: 1.03;
    text-wrap: balance;
}

.aahr-bt-page h1 {
    max-width: 760px;
    color: var(--bt-white);
    font-size: clamp(46px, 6vw, 76px);
}

.aahr-bt-page h2 {
    font-size: clamp(36px, 4vw, 56px);
}

.aahr-bt-page h3 {
    font-size: 26px;
}

.aahr-bt-page p {
    margin: 0;
}

.aahr-bt-page .hero {
    overflow: hidden;
    padding: 72px 0 64px;
    background: linear-gradient(115deg, var(--bt-navy) 0%, var(--bt-navy) 58%, #173e63 100%);
    color: var(--bt-white);
}

.aahr-bt-page .hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
    align-items: center;
    gap: 56px;
}

.aahr-bt-page .hero-copy p {
    max-width: 650px;
    margin: 24px 0 30px;
    color: #dbe7f1;
    font-size: 19px;
}

.aahr-bt-page .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.aahr-bt-page .hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 26px;
    margin-top: 30px;
    color: #dbe7f1;
    font-size: 13px;
    font-weight: 700;
}

.aahr-bt-page .hero-points span::before {
    content: "✓";
    margin-right: 8px;
    color: #ff9aaa;
}

.aahr-bt-page .compare-card {
    position: relative;
    aspect-ratio: 1.2 / 1;
    overflow: hidden;
    border-radius: 24px;
    background: var(--bt-white);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.32);
    isolation: isolate;
}

.aahr-bt-page .compare-card .before,
.aahr-bt-page .compare-card .after {
    position: absolute;
    inset: 0;
}

.aahr-bt-page .compare-card .before img {
    object-position: center 55%;
}

.aahr-bt-page .compare-card .after {
    clip-path: inset(0 0 0 50%);
}

.aahr-bt-page .compare-label {
    position: absolute;
    top: 18px;
    z-index: 3;
    padding: 8px 12px;
    border-radius: 999px;
    color: var(--bt-white);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
}

.aahr-bt-page .compare-label.before-l {
    left: 18px;
    background: rgba(9, 40, 69, 0.9);
}

.aahr-bt-page .compare-label.after-l {
    right: 18px;
    background: rgba(201, 31, 55, 0.92);
}

.aahr-bt-page .compare-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    z-index: 3;
    width: 3px;
    transform: translateX(-50%);
    background: var(--bt-white);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1);
}

.aahr-bt-page .compare-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 4;
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: var(--bt-white);
    color: var(--bt-navy);
    font-weight: 900;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.aahr-bt-page .compare-range {
    position: absolute;
    inset: 0;
    z-index: 5;
    width: 100%;
    height: 100%;
    margin: 0;
    opacity: 0;
    cursor: ew-resize;
}

.aahr-bt-page .compare-caption {
    position: absolute;
    bottom: 18px;
    left: 20px;
    z-index: 4;
    padding: 10px 14px;
    border-radius: 12px;
    background: rgba(9, 40, 69, 0.88);
    color: var(--bt-white);
    font-size: 12px;
    font-weight: 800;
}

.aahr-bt-page .proof {
    border-bottom: 1px solid var(--bt-line);
    background: var(--bt-white);
}

.aahr-bt-page .proof-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.aahr-bt-page .proof-item {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    padding: 20px 18px;
    border-right: 1px solid var(--bt-line);
}

.aahr-bt-page .proof-item:last-child {
    border-right: 0;
}

.aahr-bt-page .proof-icon {
    display: grid;
    width: 34px;
    height: 34px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 50%;
    background: #fbe9ed;
    color: var(--bt-red);
    font-size: 12px;
    font-weight: 900;
}

.aahr-bt-page .proof-item strong {
    display: block;
    font-size: 14px;
    line-height: 1.25;
}

.aahr-bt-page .proof-item small {
    display: block;
    margin-top: 3px;
    color: var(--bt-muted);
    font-size: 12px;
    line-height: 1.35;
}

.aahr-bt-page .section {
    padding: 92px 0;
}

.aahr-bt-page .section-soft {
    background: var(--bt-soft);
}

.aahr-bt-page .section-warm {
    background: var(--bt-warm);
}

.aahr-bt-page .heading-split {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    align-items: end;
    gap: 60px;
    margin-bottom: 40px;
}

.aahr-bt-page .heading-split p {
    max-width: 520px;
    color: var(--bt-muted);
    font-size: 17px;
}

.aahr-bt-page .choice-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.aahr-bt-page .choice-card {
    overflow: hidden;
    border: 1px solid var(--bt-line);
    border-radius: 18px;
    background: var(--bt-white);
    box-shadow: 0 10px 28px rgba(16, 34, 56, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.aahr-bt-page .choice-card:hover,
.aahr-bt-page .choice-card:focus-visible {
    transform: translateY(-4px);
    box-shadow: var(--bt-shadow);
}

.aahr-bt-page .choice-img {
    height: 210px;
    overflow: hidden;
}

.aahr-bt-page .choice-body {
    padding: 22px;
}

.aahr-bt-page .choice-body .num {
    color: var(--bt-red);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.aahr-bt-page .choice-body h3 {
    margin: 8px 0 10px;
    font-size: 25px;
}

.aahr-bt-page .choice-body p {
    color: var(--bt-muted);
    font-size: 14px;
}

.aahr-bt-page .story {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    align-items: center;
    gap: 54px;
    margin-bottom: 86px;
    scroll-margin-top: 150px;
}

.aahr-bt-page .story:last-child {
    margin-bottom: 0;
}

.aahr-bt-page .story.reverse {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.aahr-bt-page .story.reverse .story-media {
    order: 2;
}

.aahr-bt-page .story-media {
    position: relative;
    min-width: 0;
}

.aahr-bt-page .story-main {
    height: 520px;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: var(--bt-shadow);
}

.aahr-bt-page .story-mini {
    position: absolute;
    right: -24px;
    bottom: -24px;
    width: 210px;
    height: 170px;
    overflow: hidden;
    border: 9px solid var(--bt-white);
    border-radius: 18px;
    background: var(--bt-white);
    box-shadow: 0 18px 40px rgba(16, 34, 56, 0.2);
}

.aahr-bt-page .story.reverse .story-mini {
    right: auto;
    left: -24px;
}

.aahr-bt-page .story-copy h2 {
    margin-bottom: 20px;
    font-size: clamp(38px, 4vw, 48px);
}

.aahr-bt-page .story-copy > p {
    margin-bottom: 22px;
    color: var(--bt-muted);
    font-size: 17px;
}

.aahr-bt-page .detail-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 18px;
    margin: 22px 0 28px;
    padding: 0;
    list-style: none;
}

.aahr-bt-page .detail-list li {
    position: relative;
    padding-left: 22px;
    font-size: 14px;
    font-weight: 700;
}

.aahr-bt-page .detail-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--bt-red);
}

.aahr-bt-page .quote-card {
    margin-top: 20px;
    padding: 22px;
    border-radius: 18px;
    background: var(--bt-navy);
    color: var(--bt-white);
}

.aahr-bt-page .quote-card .stars,
.aahr-bt-page .review-card .stars {
    color: #f5b628;
    letter-spacing: 2px;
}

.aahr-bt-page .quote-card p {
    color: var(--bt-white);
    font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.35;
}

.aahr-bt-page .quote-card small {
    display: block;
    margin-top: 12px;
    color: #c8d7e4;
    font-weight: 800;
}

.aahr-bt-page .filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
}

.aahr-bt-page .filter-btn {
    padding: 10px 16px;
    border: 1px solid var(--bt-line);
    border-radius: 999px;
    background: var(--bt-white);
    color: var(--bt-navy);
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
}

.aahr-bt-page .filter-btn.active {
    border-color: var(--bt-navy);
    background: var(--bt-navy);
    color: var(--bt-white);
}

.aahr-bt-page .gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.aahr-bt-page .gallery-card {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--bt-line);
    border-radius: 18px;
    background: var(--bt-white);
    box-shadow: 0 10px 28px rgba(16, 34, 56, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.aahr-bt-page .gallery-card:hover,
.aahr-bt-page .gallery-card:focus-within {
    transform: translateY(-3px);
    box-shadow: var(--bt-shadow);
}

.aahr-bt-page .gallery-card[hidden] {
    display: none;
}

.aahr-bt-page .gallery-image {
    height: 270px;
    overflow: hidden;
}

.aahr-bt-page .gallery-body {
    padding: 20px;
}

.aahr-bt-page .gallery-body > span {
    color: var(--bt-red);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.aahr-bt-page .gallery-body h3 {
    margin: 8px 0;
    font-size: 24px;
}

.aahr-bt-page .gallery-body p {
    color: var(--bt-muted);
    font-size: 14px;
}

.aahr-bt-page .gallery-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 14px;
    color: var(--bt-red);
    font-size: 13px;
    font-weight: 800;
}

.aahr-bt-page .review-band {
    padding: 88px 0;
    background: var(--bt-navy);
    color: var(--bt-white);
}

.aahr-bt-page .review-band h2 {
    color: var(--bt-white);
}

.aahr-bt-page .review-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 38px;
}

.aahr-bt-page .review-card {
    padding: 26px;
    border-radius: 18px;
    background: var(--bt-white);
    color: var(--bt-ink);
}

.aahr-bt-page .review-card blockquote {
    margin: 16px 0 18px;
    color: var(--bt-ink);
    font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
    font-size: 21px;
    font-weight: 600;
    line-height: 1.42;
}

.aahr-bt-page .review-card strong {
    display: block;
}

.aahr-bt-page .review-card small {
    color: var(--bt-muted);
}

.aahr-bt-page .process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-top: 36px;
}

.aahr-bt-page .process-card {
    padding: 22px 4px 0;
    border-top: 3px solid var(--bt-red);
}

.aahr-bt-page .process-card span {
    color: var(--bt-red);
    font-size: 12px;
    font-weight: 900;
}

.aahr-bt-page .process-card h3 {
    margin: 8px 0;
    font-size: 25px;
}

.aahr-bt-page .process-card p {
    color: var(--bt-muted);
    font-size: 14px;
}

.aahr-bt-page .booking {
    padding: 90px 0;
    background: linear-gradient(135deg, #f6eee3, var(--bt-white));
    scroll-margin-top: 150px;
}

.aahr-bt-page .booking-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: start;
    gap: 60px;
}

.aahr-bt-page .booking-copy {
    position: sticky;
    top: 150px;
}

.aahr-bt-page .booking-copy p {
    margin: 20px 0;
    color: var(--bt-muted);
    font-size: 18px;
}

.aahr-bt-page .booking-note {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-top: 26px;
    padding-top: 20px;
    border-top: 1px solid #d7cdbf;
}

.aahr-bt-page .booking-note strong {
    display: block;
}

.aahr-bt-page .booking-note span {
    color: var(--bt-muted);
    font-size: 14px;
}

.aahr-bt-page .booking-card {
    min-width: 0;
    padding: 24px;
    border: 1px solid var(--bt-line);
    border-radius: 22px;
    background: var(--bt-white);
    box-shadow: var(--bt-shadow);
}

.aahr-bt-page .booking-card h3 {
    margin-bottom: 8px;
    font-size: 32px;
}

.aahr-bt-page .booking-card > p {
    margin-bottom: 18px;
    color: var(--bt-muted);
    font-size: 14px;
}

.aahr-bt-page .booking-card .meetings-iframe-container,
.aahr-bt-page .booking-card .meetings-iframe-container iframe {
    width: 100% !important;
    min-width: 0 !important;
}

.aahr-bt-page .booking-card .meetings-iframe-container iframe {
    min-height: 680px;
    border: 0;
}

.aahr-bt-page .booking-fallback {
    display: grid;
    min-height: 220px;
    place-items: center;
    padding: 30px;
    border: 1px dashed var(--bt-line);
    border-radius: 14px;
    text-align: center;
}

.aahr-bt-page .booking-fallback p {
    margin-bottom: 16px;
    color: var(--bt-muted);
}

@media (max-width: 1100px) {
    .aahr-bt-page .hero-grid,
    .aahr-bt-page .story,
    .aahr-bt-page .story.reverse,
    .aahr-bt-page .booking-grid {
        gap: 38px;
    }

    .aahr-bt-page .choice-grid,
    .aahr-bt-page .proof-grid,
    .aahr-bt-page .process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .aahr-bt-page .proof-item:nth-child(2) {
        border-right: 0;
    }

    .aahr-bt-page .proof-item:nth-child(-n + 2) {
        border-bottom: 1px solid var(--bt-line);
    }

    .aahr-bt-page .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 860px) {
    .aahr-bt-page .hero {
        padding: 58px 0 54px;
    }

    .aahr-bt-page .hero-grid,
    .aahr-bt-page .heading-split,
    .aahr-bt-page .story,
    .aahr-bt-page .story.reverse,
    .aahr-bt-page .booking-grid {
        grid-template-columns: 1fr;
    }

    .aahr-bt-page .hero-grid {
        gap: 38px;
    }

    .aahr-bt-page .story.reverse .story-media {
        order: 0;
    }

    .aahr-bt-page .story-mini,
    .aahr-bt-page .story.reverse .story-mini {
        right: 18px;
        left: auto;
    }

    .aahr-bt-page .heading-split {
        align-items: start;
        gap: 18px;
    }

    .aahr-bt-page .heading-split p {
        max-width: none;
    }

    .aahr-bt-page .review-grid {
        grid-template-columns: 1fr;
    }

    .aahr-bt-page .booking-copy {
        position: static;
    }
}

@media (max-width: 640px) {
    .aahr-bt-page .shell {
        width: min(100% - 28px, 1180px);
    }

    .aahr-bt-page h1 {
        font-size: clamp(42px, 13vw, 58px);
    }

    .aahr-bt-page h2 {
        font-size: clamp(34px, 10vw, 46px);
    }

    .aahr-bt-page .hero {
        padding: 44px 0 42px;
    }

    .aahr-bt-page .hero-copy p {
        font-size: 17px;
    }

    .aahr-bt-page .hero-actions,
    .aahr-bt-page .hero-actions .btn {
        width: 100%;
    }

    .aahr-bt-page .hero-points {
        display: grid;
        gap: 8px;
    }

    .aahr-bt-page .compare-card {
        aspect-ratio: 0.92 / 1;
        border-radius: 18px;
    }

    .aahr-bt-page .compare-caption {
        right: 14px;
        bottom: 14px;
        left: 14px;
        text-align: center;
    }

    .aahr-bt-page .proof-grid,
    .aahr-bt-page .choice-grid,
    .aahr-bt-page .gallery-grid,
    .aahr-bt-page .process-grid,
    .aahr-bt-page .detail-list {
        grid-template-columns: 1fr;
    }

    .aahr-bt-page .proof-item,
    .aahr-bt-page .proof-item:nth-child(2) {
        border-right: 0;
        border-bottom: 1px solid var(--bt-line);
    }

    .aahr-bt-page .proof-item:last-child {
        border-bottom: 0;
    }

    .aahr-bt-page .section,
    .aahr-bt-page .review-band,
    .aahr-bt-page .booking {
        padding: 68px 0;
    }

    .aahr-bt-page .choice-img {
        height: 235px;
    }

    .aahr-bt-page .story {
        gap: 28px;
        margin-bottom: 68px;
    }

    .aahr-bt-page .story-main {
        height: 410px;
        border-radius: 18px;
    }

    .aahr-bt-page .story-mini,
    .aahr-bt-page .story.reverse .story-mini {
        right: 12px;
        bottom: -18px;
        width: 148px;
        height: 118px;
        border-width: 6px;
    }

    .aahr-bt-page .story-copy {
        padding-top: 12px;
    }

    .aahr-bt-page .story-copy .btn {
        width: 100%;
    }

    .aahr-bt-page .gallery-image {
        height: 235px;
    }

    .aahr-bt-page .filter-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .aahr-bt-page .filter-btn:first-child {
        grid-column: 1 / -1;
    }

    .aahr-bt-page .booking-card {
        padding: 18px;
    }

    .aahr-bt-page .booking-card .meetings-iframe-container iframe {
        min-height: 760px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .aahr-bt-page *,
    .aahr-bt-page *::before,
    .aahr-bt-page *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}
