:root {
    --red: #c74436;
    --ink: #191614;
    --muted: #726963;
    --cream: #fbf7f3;
    --line: #ece4dd;
}
.serif {
    font-family: Georgia, "Times New Roman", serif;
}
.intro {
    padding: 28px 48px 22px;
    text-align: center;
    border-bottom: 1px solid var(--line);
    background: #fff;
}
.intro h1 {
    margin: 0;
    font-size: 34px;
    line-height: 1.08;
    font-weight: 400;
    letter-spacing: -0.01em;
}
.carousel {
    position: relative;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    min-height: 560px;
    display: grid;
    grid-template-columns: 52% 48%;
    overflow: hidden;
}
.slide-image {
    position: relative;
    min-height: 560px;
    background: #f6f0eb;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid var(--line);
}
.slide-image img {
    max-width: 86%;
    max-height: 485px;
    object-fit: contain;
    mix-blend-mode: multiply;
    filter: drop-shadow(0 16px 22px rgba(0, 0, 0, 0.11));
    transition:
        transform 0.45s ease,
        filter 0.45s ease;
}
.slide-image:hover img {
    transform: scale(1.018);
    filter: drop-shadow(0 20px 28px rgba(0, 0, 0, 0.14));
}
.slide-copy {
    min-height: 560px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 58px 64px;
    background: linear-gradient(90deg, #fff 0%, #fbf7f3 100%);
}
.eyebrow {
    color: var(--red);
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.22em;
    font-weight: 700;
    margin-bottom: 18px;
}
.slide-copy h2 {
    margin: 0;
    font-size: 50px;
    line-height: 1.06;
    font-weight: 400;
    letter-spacing: -0.02em;
}
.meta {
    margin-top: 18px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 700;
    color: #8a7d73;
}
.slide-copy p {
    margin: 16px 0 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.5;
    max-width: 500px;
}
.cta-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 30px;
}
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 22px;
    border: 1px solid var(--ink);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-weight: 700;
    background: #fff;
    color: var(--ink);
}
.button.primary {
    background: var(--red);
    color: #fff;
    border-color: var(--red);
}
.carousel .button.primary {
    background: #fff;
    color: var(--ink);
    border-color: var(--ink);
}
.carousel .button.primary:hover {
    background: var(--ink);
    color: #fff;
}
.cta-row.single {
    margin-top: 26px;
}
.button:hover {
    background: var(--ink);
    color: #fff;
    border-color: var(--ink);
}
.controls {
    position: absolute;
    right: 34px;
    bottom: 30px;
    display: flex;
    gap: 10px;
    z-index: 4;
}
.arrow {
    width: 42px;
    height: 42px;
    border: 1px solid #d2c5bb;
    color: #3e3833;
    background: #fff;
    font-size: 22px;
    cursor: pointer;
}
.dots {
    position: absolute;
    left: 52%;
    bottom: 42px;
    transform: translateX(-50%);
    display: flex;
    gap: 9px;
    z-index: 5;
}
.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #cdbfb4;
    border: 0;
    cursor: pointer;
}
.dot.active {
    width: 28px;
    border-radius: 99px;
    background: var(--red);
}
.doors {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.door {
    position: relative;
    min-height: 560px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 58px;
    color: #fff;
    background: #2e2824;
}
.door:before {
    content: "";
    position: absolute;
    inset: 0;
    transition: transform 0.7s ease;
}
.door:hover:before {
    transform: scale(1.04);
}
.door:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.56), rgba(0, 0, 0, 0.18) 62%);
    transition: 0.4s ease;
}
.door:hover:after {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.64), rgba(0, 0, 0, 0.25) 62%);
}
.premium:before {
    background-image: var(--left-bg-img);
    background-size: cover;
    background-position: center center;
    filter: saturate(0.96) contrast(0.98);
}
.premium:after {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.22) 58%, rgba(0, 0, 0, 0.06)),
        linear-gradient(90deg, rgba(0, 0, 0, 0.24), transparent 50%);
}
.local:before {
    background-image: var(--right-bg-img);
    background-size: cover;
    background-position: center center;
    filter: saturate(0.94) contrast(0.98);
}
.local:after {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.64), rgba(0, 0, 0, 0.26) 58%, rgba(0, 0, 0, 0.08)),
        linear-gradient(90deg, rgba(0, 0, 0, 0.28), transparent 52%);
}
.door-content {
    position: relative;
    z-index: 2;
    max-width: 570px;
}
.door h2 {
    margin: 0;
    font-size: 58px;
    line-height: 1.03;
    font-weight: 400;
    color: #fff;
}
.subpoints {
    margin: 20px 0 0;
    display: flex;
    flex-direction: column;
    gap: 7px;
    font-size: 20px;
    color: rgba(255, 255, 255, 0.92);
}
.door .cta-row {
    margin-top: 30px;
}
.door .button {
    background: transparent;
    color: #fff;
    border-color: #fff;
}
.door .button.primary {
    background: #fff;
    color: #171717;
    border-color: #fff;
}
.door .button:hover {
    background: var(--red);
    color: #fff;
    border-color: var(--red);
}
.trust {
    background: #f8f4ef;
    padding: 76px 48px;
}
.center {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 40px;
}
.center h2 {
    margin: 0;
    font-size: 46px;
    font-weight: 400;
}
.center p {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.5;
}
.trust-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
.trust-card {
    background: #fff;
    border: 1px solid var(--line);
    padding: 28px;
    min-height: 190px;
}
.trust-card h3 {
    margin: 0;
    font-size: 18px;
}
.trust-card p {
    color: var(--muted);
    line-height: 1.55;
    font-size: 14px;
}
.cta-wrap {
    padding: 82px 48px;
}
.cta {
    max-width: 960px;
    margin: 0 auto;
    border: 1px solid var(--line);
    padding: 58px;
    text-align: center;
}
.cta h2 {
    margin: 14px 0 0;
    font-size: 52px;
    line-height: 1.05;
    font-weight: 400;
}
.cta p {
    max-width: 680px;
    margin: 20px auto 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.55;
}
.cta .button {
    margin-top: 28px;
}

@media (max-width: 900px) {
    .intro {
        padding: 16px 24px 14px;
    }
    .intro h1 {
        font-size: 25px;
    }
    .carousel {
        min-height: auto;
        grid-template-columns: 1fr;
    }
    .slide-image {
        min-height: 300px;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }
    .slide-image img {
        max-height: 250px;
        max-width: 82%;
    }
    .slide-copy {
        min-height: auto;
        padding: 26px 24px 58px;
    }
    .eyebrow {
        font-size: 11px;
        margin-bottom: 12px;
    }
    .slide-copy h2 {
        font-size: 31px;
    }
    .meta {
        font-size: 11px;
        margin-top: 14px;
    }
    .slide-copy p {
        font-size: 15px;
        margin-top: 12px;
    }
    .cta-row {
        margin-top: 20px;
    }
    .button {
        width: auto;
        padding: 13px 16px;
        font-size: 11px;
    }
    .controls {
        right: 20px;
        bottom: 18px;
    }
    .arrow {
        width: 38px;
        height: 38px;
    }
    .dots {
        left: 24px;
        bottom: 31px;
        transform: none;
    }
    .doors,
    .trust-grid {
        grid-template-columns: 1fr;
    }
    .door {
        min-height: 420px;
        padding: 34px 24px;
    }
    .door h2 {
        font-size: 39px;
    }
    .subpoints {
        font-size: 18px;
    }
    .trust {
        padding: 52px 24px;
    }
    .center h2 {
        font-size: 36px;
    }
    .cta-wrap {
        padding: 54px 24px;
    }
    .cta {
        padding: 34px 22px;
    }
    .cta h2 {
        font-size: 36px;
    }
}

/* V13 polish: button hierarchy + mobile header simplification */
.door .button.primary {
    background: #fff;
    color: #171717;
    border-color: #fff;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}
.door .button.secondary {
    background: rgba(0, 0, 0, 0.08);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.65);
}
.door .button.secondary:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: #fff;
    color: #fff;
}
@media (max-width: 900px) {
    .intro h1 {
        font-size: 23px;
    }
    .slide-image {
        min-height: 260px;
    }
    .slide-copy {
        padding: 24px 24px 42px;
    }
    .slide-copy h2 {
        font-size: 29px;
    }
    .door {
        min-height: 380px;
    }
    .door .cta-row {
        gap: 10px;
    }
}
.proof-strip {
    line-height: 1.6;
}
@media (max-width: 900px) {
    .proof-strip {
        font-size: 11px;
        padding: 14px 16px;
    }
}
.cta-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 22px;
}
.door {
    align-items: center !important;
}
.door-content {
} /* lift content slightly */
.door .button.primary {
    width: fit-content;
}
.door .button.secondary {
    background: none;
    border: none;
    padding: 0;
    font-weight: 600;
    text-transform: none;
    letter-spacing: normal;
}
.door .button.secondary:hover {
    text-decoration: underline;
}
.door {
    align-items: flex-start !important;
}
.door-content {
    margin-top: 120px;
}

/* V18 door CTA alignment fix */
.door .cta-column {
    align-items: flex-start;
    gap: 12px;
    margin-top: 24px;
}
.door .button.primary {
    min-width: 178px;
    justify-content: center;
}
.door .button.secondary {
    display: inline-flex;
    align-items: center;
    width: auto;
    margin-left: 0;
    padding-left: 0;
    text-align: left;
    line-height: 1.2;
}
.door .button.secondary::after {
    content: " \2192";
    margin-left: 5px;
}
@media (max-width: 900px) {
    .door .button.primary {
        min-width: 168px;
    }
}

/* V21 carousel upgrades */
.carousel-progress {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 100%;
    background: rgba(205, 191, 180, 0.55);
    z-index: 6;
}
.carousel-progress span {
    display: block;
    height: 100%;
    width: 0%;
    background: var(--red);
    transition: width 0.1s linear;
}
.slide-copy h2 a {
    text-decoration: none;
}
.slide-copy h2 a:hover {
    color: var(--red);
}
.controls {
    gap: 8px;
}
.arrow {
    width: 48px;
    height: 48px;
    font-size: 24px;
}
.slide-image,
.slide-copy h2,
.button.primary {
    cursor: pointer;
}
@media (max-width: 900px) {
    .arrow {
        width: 44px;
        height: 44px;
    }
    .controls {
        right: 16px;
        bottom: 16px;
    }
}

/* V22 Bonhams-inspired carousel: image-first with restrained caption band */
.carousel {
    display: block !important;
    min-height: auto !important;
    background: #fff !important;
    border-bottom: 1px solid var(--line);
    overflow: hidden;
}
.slide-image {
    min-height: 520px !important;
    height: clamp(380px, 52vw, 640px);
    width: 100%;
    border-right: 0 !important;
    border-bottom: 1px solid var(--line);
    background: #f6f0eb;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 34px 48px;
}
.slide-image img {
    max-width: min(92vw, 1120px) !important;
    max-height: 100% !important;
    width: auto;
    height: auto;
    object-fit: contain;
    mix-blend-mode: multiply;
    filter: drop-shadow(0 16px 22px rgba(0, 0, 0, 0.1));
}
.slide-copy {
    min-height: auto !important;
    background: #fff !important;
    padding: 30px 48px 34px !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto;
    column-gap: 36px;
    row-gap: 12px;
    align-items: center;
    border-bottom: 1px solid var(--line);
}
.slide-copy .eyebrow {
    grid-column: 1 / -1;
    margin-bottom: 0;
    font-size: 11px;
    color: var(--red);
}
.slide-copy h2 {
    margin: 0;
    font-size: 38px !important;
    line-height: 1.08 !important;
    max-width: 900px;
}
.slide-copy p {
    display: none;
}
.slide-copy .meta {
    margin-top: 10px;
    font-size: 12px;
}
.slide-copy .cta-row,
.slide-copy .cta-column {
    margin-top: 0 !important;
    justify-self: end;
}
.carousel .button.primary {
    background: #fff;
    color: var(--ink);
    border-color: var(--ink);
    min-width: 132px;
    border: 1px solid;
}
.controls {
    top: calc(clamp(380px, 52vw, 640px) / 2 + 88px);
    bottom: auto !important;
    right: 34px;
    transform: translateY(-50%);
}
.dots {
    left: 50% !important;
    bottom: auto !important;
    top: calc(clamp(380px, 52vw, 640px) + 18px);
    transform: translateX(-50%) !important;
}
.carousel-progress {
    bottom: auto !important;
    top: calc(clamp(380px, 52vw, 640px) + 0px);
}
@media (max-width: 900px) {
    .slide-image {
        height: 300px;
        min-height: 300px !important;
        padding: 22px;
    }
    .slide-copy {
        display: block !important;
        padding: 22px 24px 34px !important;
    }
    .slide-copy h2 {
        font-size: 29px !important;
    }
    .slide-copy .meta {
        margin-top: 12px;
    }
    .slide-copy .cta-row,
    .slide-copy .cta-column {
        margin-top: 18px !important;
    }
    .controls {
        top: 222px;
        right: 16px;
        transform: none;
    }
    .dots {
        top: 314px;
        left: 24px !important;
        transform: none !important;
    }
    .carousel-progress {
        top: 300px;
    }
}

/* V23 carousel controls: edge arrows + equal dots on progress rail */
.controls {
    display: none !important;
}
.arrow {
    position: absolute;
    top: calc(clamp(380px, 52vw, 640px) / 2 + 88px);
    transform: translateY(-50%);
    z-index: 8;
    width: 52px;
    height: 52px;
    border: 1px solid rgba(25, 22, 20, 0.22);
    background: rgba(255, 255, 255, 0.86);
    color: var(--ink);
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.arrow:hover {
    background: #fff;
    border-color: rgba(25, 22, 20, 0.42);
}
.arrow-left {
    left: 24px;
}
.arrow-right {
    right: 24px;
}
.carousel-progress {
    left: 48px !important;
    right: 48px !important;
    width: auto !important;
    height: 1px !important;
    background: #d8ccc2 !important;
    top: calc(clamp(380px, 52vw, 640px) + 0px) !important;
    bottom: auto !important;
}
.carousel-progress span {
    display: none !important;
}
.dots {
    top: calc(clamp(380px, 52vw, 640px) - 11px) !important;
    bottom: auto !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    gap: 18px !important;
    background: #f6f0eb;
    padding: 0 18px;
    z-index: 9;
}
.dot {
    width: 10px !important;
    height: 10px !important;
    border-radius: 50% !important;
    background: #c8b8ad !important;
    border: 1px solid #f6f0eb !important;
    padding: 0;
}
.dot.active {
    width: 10px !important;
    height: 10px !important;
    background: var(--red) !important;
    border-color: var(--red) !important;
}
@media (max-width: 900px) {
    .arrow {
        top: 150px !important;
        width: 44px;
        height: 44px;
        font-size: 26px;
    }
    .arrow-left {
        left: 12px;
    }
    .arrow-right {
        right: 12px;
    }
    .carousel-progress {
        left: 24px !important;
        right: 24px !important;
        top: 300px !important;
    }
    .dots {
        top: 289px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        gap: 14px !important;
        padding: 0 14px;
    }
    .dot,
    .dot.active {
        width: 9px !important;
        height: 9px !important;
    }
}

/* V24 polish: lighter Bonhams-style arrows + stable mobile carousel */
.arrow {
    width: 44px !important;
    height: 44px !important;
    border: none !important;
    background: rgba(255, 255, 255, 0.58) !important;
    color: var(--ink) !important;
    font-size: 26px !important;
    font-weight: 300 !important;
    opacity: 0.72;
    box-shadow: none !important;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}
.arrow:hover {
    background: rgba(255, 255, 255, 0.88) !important;
    opacity: 1;
}
.slide-copy {
    padding: 24px 48px 28px !important;
    min-height: 138px !important;
}
.slide-copy h2 {
    font-size: 34px !important;
    line-height: 1.08 !important;
}
.slide-copy .meta {
    margin-top: 8px !important;
}
.carousel {
    contain: layout;
}
@media (max-width: 900px) {
    .carousel {
        contain: layout;
    }
    .slide-image {
        height: 300px !important;
        min-height: 300px !important;
        max-height: 300px !important;
    }
    .slide-copy {
        min-height: 166px !important;
        padding: 20px 24px 30px !important;
    }
    .slide-copy h2 {
        font-size: 27px !important;
        line-height: 1.1 !important;
    }
    .arrow {
        top: 150px !important;
        width: 38px !important;
        height: 38px !important;
        font-size: 24px !important;
        background: rgba(255, 255, 255, 0.66) !important;
    }
    .dots {
        top: 289px !important;
    }
    .carousel-progress {
        top: 300px !important;
    }
}

/* V26: desktop fold fit — carousel + caption shorter so doors peek above fold */
@media (min-width: 901px) {
    .intro {
        padding: 18px 48px 16px !important;
    }
    .intro h1 {
        font-size: 30px !important;
    }
    .slide-image {
        height: clamp(320px, 38vw, 460px) !important;
        min-height: 320px !important;
        max-height: 460px !important;
        padding: 24px 48px !important;
    }
    .slide-copy {
        min-height: 112px !important;
        padding: 18px 48px 20px !important;
    }
    .slide-copy h2 {
        font-size: 31px !important;
        line-height: 1.08 !important;
    }
    .slide-copy .meta {
        margin-top: 6px !important;
    }
    .slide-copy .cta-row,
    .slide-copy .cta-column {
        margin-top: 0 !important;
    }
    .controls,
    .arrow {
        top: calc(clamp(320px, 38vw, 460px) / 2 + 88px) !important;
    }
    .dots {
        top: calc(clamp(320px, 38vw, 460px) - 11px) !important;
    }
    .carousel-progress {
        top: calc(clamp(320px, 38vw, 460px) + 0px) !important;
    }
}

/* V27: stricter desktop fold fit at Chrome 100% zoom */
@media (min-width: 901px) {
    /* Keep the whole above-the-fold stack intentionally compact:
       topbar 35 + header 88 + intro ~40 + image max 360 + caption ~92 = ~615px */
    .intro {
        padding: 14px 48px 12px !important;
    }
    .intro h1 {
        font-size: 28px !important;
        line-height: 1.05 !important;
    }
    .slide-image {
        height: clamp(280px, 30vw, 360px) !important;
        min-height: 280px !important;
        max-height: 360px !important;
        padding: 18px 48px !important;
    }
    .slide-image img {
        max-height: 100% !important;
        max-width: min(88vw, 980px) !important;
    }
    .slide-copy {
        min-height: 92px !important;
        height: 92px !important;
        max-height: 92px !important;
        padding: 14px 48px 16px !important;
        grid-template-columns: minmax(0, 1fr) auto !important;
        overflow: hidden;
    }
    .slide-copy .eyebrow {
        display: none !important;
    }
    .slide-copy h2 {
        font-size: 28px !important;
        line-height: 1.08 !important;
        max-width: 820px !important;
    }
    .slide-copy .meta {
        margin-top: 5px !important;
        font-size: 11px !important;
    }
    .arrow {
        top: calc(clamp(280px, 30vw, 360px) / 2 + 123px + 40px) !important;
    }
    .dots {
        top: calc(clamp(280px, 30vw, 360px) + 123px + 40px - 11px) !important;
    }
    .carousel-progress {
        top: calc(clamp(280px, 30vw, 360px) + 123px + 40px) !important;
    }
}

/* Very short laptop screens: compress just a little more */
@media (min-width: 901px) and (max-height: 760px) {
    .slide-image {
        height: 330px !important;
        min-height: 330px !important;
        max-height: 330px !important;
    }
    .slide-copy {
        height: 86px !important;
        min-height: 86px !important;
        max-height: 86px !important;
        padding-top: 12px !important;
        padding-bottom: 14px !important;
    }
    .slide-copy h2 {
        font-size: 26px !important;
    }
    .arrow {
        top: calc(330px / 2 + 123px + 40px) !important;
    }
    .dots {
        top: calc(330px + 123px + 40px - 11px) !important;
    }
    .carousel-progress {
        top: calc(330px + 123px + 40px) !important;
    }
}

/* V28 audit polish: carousel arrow + CTA placement */
.carousel {
    --heroH: clamp(380px, 52vw, 640px);
}
.slide-copy {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    grid-template-areas:
        "eyebrow cta"
        "title   cta"
        "meta    cta";
    align-items: center !important;
    column-gap: 40px !important;
    row-gap: 8px !important;
    padding: 24px 48px 28px !important;
}
.slide-copy .eyebrow {
    grid-area: eyebrow;
    margin: 0 !important;
    align-self: end;
}
.slide-copy h2 {
    grid-area: title;
    margin: 0 !important;
}
.slide-copy .meta {
    grid-area: meta;
    margin: 0 !important;
    align-self: start;
}
.slide-copy .cta-row,
.slide-copy .cta-column {
    grid-area: cta;
    justify-self: end !important;
    align-self: center !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: row !important;
}
.arrow {
    position: absolute !important;
    top: calc(var(--heroH) / 2) !important;
    transform: translateY(-50%) !important;
    z-index: 10 !important;
    width: 42px !important;
    height: 42px !important;
    border: none !important;
    background: rgba(255, 255, 255, 0.48) !important;
    color: var(--ink) !important;
    font-size: 28px !important;
    font-weight: 300 !important;
    line-height: 1 !important;
    opacity: 0.68;
    box-shadow: none !important;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}
.arrow:hover {
    background: rgba(255, 255, 255, 0.84) !important;
    opacity: 1;
}
.arrow-left {
    left: 26px !important;
}
.arrow-right {
    right: 26px !important;
}
.dots {
    top: calc(var(--heroH) - 11px) !important;
}
.carousel-progress {
    top: var(--heroH) !important;
}

@media (max-width: 900px) {
    .carousel {
        --heroH: 300px;
    }
    .slide-copy {
        display: block !important;
        padding: 20px 24px 30px !important;
    }
    .slide-copy .eyebrow {
        margin-bottom: 10px !important;
    }
    .slide-copy h2 {
        margin: 0 !important;
    }
    .slide-copy .meta {
        margin-top: 12px !important;
    }
    .slide-copy .cta-row,
    .slide-copy .cta-column {
        display: flex !important;
        margin-top: 18px !important;
        justify-self: start !important;
        align-self: auto !important;
    }
    .arrow {
        top: 150px !important;
        width: 38px !important;
        height: 38px !important;
        font-size: 24px !important;
        background: rgba(255, 255, 255, 0.62) !important;
    }
    .arrow-left {
        left: 12px !important;
    }
    .arrow-right {
        right: 12px !important;
    }
    .dots {
        top: 289px !important;
    }
    .carousel-progress {
        top: 300px !important;
    }
}

/* V29: caption vertical centering + larger, carousel-centered arrows */
.slide-copy {
    align-items: center !important;
    align-content: center !important;
    min-height: 200px; /* slightly taller band for true vertical centering */
}
.slide-copy h2 {
    align-self: center !important;
}
.slide-copy .cta-row,
.slide-copy .cta-column {
    align-self: center !important;
}

/* Arrows: larger + centered on full carousel */
.arrow {
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 56px !important;
    height: 56px !important;
    font-size: 34px !important;
    background: rgba(255, 255, 255, 0.55) !important;
    opacity: 0.7;
}
.arrow:hover {
    background: rgba(255, 255, 255, 0.9) !important;
    opacity: 1;
}

@media (max-width: 900px) {
    .slide-copy {
        min-height: 180px !important;
    }
    .arrow {
        width: 48px !important;
        height: 48px !important;
        font-size: 30px !important;
        top: 50% !important;
    }
}

/* V32: desktop 3 first-lot primary images; mobile uses first image only */
.slide-image {
    padding: 34px 56px !important;
}
.desktop-gallery {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    width: min(92vw, 1180px);
    height: 100%;
    align-items: center;
    pointer-events: none; /* the whole slide link remains the click target */
}
.desktop-gallery img {
    width: 100%;
    height: 100%;
    max-height: 100% !important;
    object-fit: contain;
    mix-blend-mode: multiply;
    filter: drop-shadow(0 14px 20px rgba(0, 0, 0, 0.1));
    transition:
        transform 0.35s ease,
        filter 0.35s ease;
}
.slide-image:hover .desktop-gallery img {
    transform: scale(1.008);
    filter: drop-shadow(0 18px 24px rgba(0, 0, 0, 0.13));
}
.mobile-hero {
    display: none;
}

@media (max-width: 900px) {
    .desktop-gallery {
        display: none;
    }
    .mobile-hero {
        display: block;
        max-width: 82% !important;
        max-height: 250px !important;
        object-fit: contain;
        mix-blend-mode: multiply;
        filter: drop-shadow(0 16px 22px rgba(0, 0, 0, 0.11));
    }
}

/* V33 audit fix: stable 3-up carousel gallery */
.slide-image {
    overflow: hidden !important;
    padding: 32px 58px !important;
}
.desktop-gallery {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
    width: min(92vw, 1160px);
    height: 100%;
    max-height: 100%;
    align-items: center;
    justify-items: center;
    pointer-events: none;
    overflow: hidden;
}
.gallery-cell {
    width: 100%;
    height: 100%;
    min-width: 0;
    min-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: transparent;
}
.gallery-cell img,
.desktop-gallery img {
    display: block;
    max-width: 100% !important;
    max-height: 100% !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    mix-blend-mode: multiply;
    filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.1));
    transition:
        transform 0.35s ease,
        filter 0.35s ease;
}
.slide-image:hover .gallery-cell img {
    transform: scale(1.006);
    filter: drop-shadow(0 16px 22px rgba(0, 0, 0, 0.13));
}
.gallery-cell.is-missing {
    display: none;
}
.desktop-gallery.count-1 {
    grid-template-columns: minmax(0, 1fr);
    width: min(82vw, 760px);
}
.desktop-gallery.count-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(88vw, 920px);
}
.desktop-gallery.count-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.mobile-hero {
    display: none;
}

@media (max-width: 1100px) {
    .desktop-gallery {
        gap: 20px;
        width: min(94vw, 980px);
    }
    .slide-image {
        padding-left: 42px !important;
        padding-right: 42px !important;
    }
}

@media (max-width: 900px) {
    .desktop-gallery {
        display: none !important;
    }
    .mobile-hero {
        display: block;
        max-width: 82% !important;
        max-height: 250px !important;
        width: auto !important;
        height: auto !important;
        object-fit: contain !important;
        mix-blend-mode: multiply;
        filter: drop-shadow(0 14px 20px rgba(0, 0, 0, 0.11));
    }
    .slide-image {
        padding: 22px !important;
        overflow: hidden !important;
    }
}

/* V34 carousel audit: clean Bonhams-style controls, restored dots/progress + stable loading */
.arrow {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    color: var(--red) !important;
    width: 64px !important;
    height: 64px !important;
    font-size: 46px !important;
    font-weight: 200 !important;
    opacity: 0.78;
    text-shadow: 0 1px 8px rgba(255, 255, 255, 0.65);
}
.arrow:hover {
    background: transparent !important;
    opacity: 1;
    color: var(--red) !important;
}
.arrow-left {
    left: 28px !important;
}
.arrow-right {
    right: 28px !important;
}
.carousel-progress {
    display: block !important;
    left: 48px !important;
    right: 48px !important;
    width: auto !important;
    height: 1px !important;
    background: #d8ccc2 !important;
    top: var(--heroH) !important;
    bottom: auto !important;
    z-index: 7 !important;
}
.carousel-progress span {
    display: block !important;
    height: 1px !important;
    width: 0%;
    background: var(--red) !important;
    transition: width 0.12s linear;
}
.dots {
    top: calc(var(--heroH) - 7px) !important;
    left: 50% !important;
    bottom: auto !important;
    transform: translateX(-50%) !important;
    gap: 20px !important;
    background: #f6f0eb !important;
    padding: 0 18px !important;
    z-index: 9 !important;
}
.dot,
.dot.active {
    width: 10px !important;
    height: 10px !important;
    border-radius: 50% !important;
    padding: 0 !important;
    border: 1px solid #f6f0eb !important;
}
.dot {
    background: #c8b8ad !important;
}
.dot.active {
    background: var(--red) !important;
    border-color: var(--red) !important;
}

@media (max-width: 900px) {
    .arrow {
        width: 52px !important;
        height: 52px !important;
        font-size: 38px !important;
        top: 150px !important;
    }
    .arrow-left {
        left: 10px !important;
    }
    .arrow-right {
        right: 10px !important;
    }
    .carousel-progress {
        top: 300px !important;
        left: 24px !important;
        right: 24px !important;
    }
    .dots {
        top: 293px !important;
        gap: 16px !important;
        padding: 0 14px !important;
    }
    .dot,
    .dot.active {
        width: 9px !important;
        height: 9px !important;
    }
}

/* V36 careful carousel rebuild */
.carousel {
    --heroH: clamp(360px, 43vw, 540px);
    position: relative !important;
}
.slide-image {
    height: var(--heroH) !important;
    min-height: var(--heroH) !important;
    max-height: var(--heroH) !important;
    padding: 32px 58px !important;
    overflow: hidden !important;
}
.desktop-gallery {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 26px !important;
    width: min(92vw, 1160px) !important;
    height: 100% !important;
    max-height: 100% !important;
    align-items: center !important;
    justify-items: center !important;
    pointer-events: none;
    overflow: hidden;
}
.desktop-gallery img {
    display: block !important;
    width: auto !important;
    height: auto !important;
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: contain !important;
    mix-blend-mode: multiply;
    filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.1));
}
.mobile-hero {
    display: none !important;
}
.carousel-progress {
    display: block !important;
    position: absolute !important;
    left: 48px !important;
    right: 48px !important;
    width: auto !important;
    height: 2px !important;
    top: var(--heroH) !important;
    bottom: auto !important;
    background: #3d3733 !important;
    z-index: 8 !important;
}
.carousel-progress span {
    display: block !important;
    height: 2px !important;
    width: 0%;
    background: var(--red) !important;
}
.dots {
    display: flex !important;
    position: absolute !important;
    top: calc(var(--heroH) - 6px) !important;
    bottom: auto !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    gap: 18px !important;
    background: #f6f0eb !important;
    padding: 0 18px !important;
    z-index: 10 !important;
}
.dot,
.dot.active {
    width: 10px !important;
    height: 10px !important;
    border-radius: 50% !important;
    padding: 0 !important;
    border: 1px solid #f6f0eb !important;
}
.dot {
    background: #3d3733 !important;
    opacity: 0.45;
}
.dot.active {
    background: var(--red) !important;
    border-color: var(--red) !important;
    opacity: 1;
}
.arrow {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    color: var(--red) !important;
    width: 64px !important;
    height: 64px !important;
    font-size: 46px !important;
    font-weight: 200 !important;
    opacity: 0.82;
    text-shadow: 0 1px 8px rgba(255, 255, 255, 0.65);
    z-index: 12 !important;
}
.arrow:hover {
    background: transparent !important;
    opacity: 1;
}

@media (max-width: 900px) {
    .carousel {
        --heroH: 300px;
    }
    .slide-image {
        height: 300px !important;
        min-height: 300px !important;
        max-height: 300px !important;
        padding: 22px !important;
    }
    .desktop-gallery {
        display: none !important;
    }
    .mobile-hero {
        display: block !important;
        max-width: 82% !important;
        max-height: 250px !important;
        width: auto !important;
        height: auto !important;
        object-fit: contain !important;
        mix-blend-mode: multiply;
        filter: drop-shadow(0 14px 20px rgba(0, 0, 0, 0.11));
    }
    .carousel-progress {
        top: 300px !important;
        left: 24px !important;
        right: 24px !important;
    }
    .dots {
        top: 294px !important;
        gap: 14px !important;
        padding: 0 14px !important;
    }
    .dot,
    .dot.active {
        width: 9px !important;
        height: 9px !important;
    }
    .arrow {
        width: 52px !important;
        height: 52px !important;
        font-size: 38px !important;
    }
    .arrow-left {
        left: 8px !important;
    }
    .arrow-right {
        right: 8px !important;
    }
}

/* V37: tighten carousel height without changing carousel behavior */
.carousel {
    --heroH: clamp(285px, 32vw, 390px) !important;
}
.slide-image {
    height: var(--heroH) !important;
    min-height: var(--heroH) !important;
    max-height: var(--heroH) !important;
    padding: 26px 58px !important;
}
.desktop-gallery {
    height: 100% !important;
    max-height: 100% !important;
}
.desktop-gallery img {
    max-height: 100% !important;
}
.slide-copy {
    min-height: 126px !important;
    padding: 18px 48px 20px !important;
}
.slide-copy h2 {
    font-size: 31px !important;
    line-height: 1.08 !important;
}
.slide-copy .meta {
    margin-top: 6px !important;
}
.carousel-progress {
    top: var(--heroH) !important;
}
.dots {
    top: calc(var(--heroH) - 6px) !important;
}

@media (max-width: 900px) {
    .carousel {
        --heroH: 245px !important;
    }
    .slide-image {
        height: 245px !important;
        min-height: 245px !important;
        max-height: 245px !important;
        padding: 18px !important;
    }
    .mobile-hero {
        max-height: 205px !important;
    }
    .slide-copy {
        min-height: 142px !important;
        padding: 16px 24px 22px !important;
    }
    .slide-copy h2 {
        font-size: 25px !important;
        line-height: 1.1 !important;
    }
    .slide-copy .meta {
        margin-top: 8px !important;
    }
    .slide-copy .cta-row,
    .slide-copy .cta-column {
        margin-top: 14px !important;
    }
    .carousel-progress {
        top: 245px !important;
    }
    .dots {
        top: 239px !important;
    }
    .arrow {
        top: 50% !important;
    }
}

/* V38: tighter above-the-fold carousel + resized photos */
.intro {
    padding: 18px 48px 16px !important;
}
.intro h1 {
    font-size: 30px !important;
}
.carousel {
    --heroH: clamp(245px, 27vw, 330px) !important;
}
.slide-image {
    height: var(--heroH) !important;
    min-height: var(--heroH) !important;
    max-height: var(--heroH) !important;
    padding: 20px 64px !important;
}
.desktop-gallery {
    width: min(88vw, 1040px) !important;
    gap: 24px !important;
    height: 100% !important;
    max-height: 100% !important;
}
.desktop-gallery img {
    max-width: 100% !important;
    max-height: calc(var(--heroH) - 44px) !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
}
.slide-copy {
    min-height: 106px !important;
    padding: 14px 48px 16px !important;
}
.slide-copy .eyebrow {
    font-size: 10px !important;
    margin-bottom: 0 !important;
}
.slide-copy h2 {
    font-size: 28px !important;
    line-height: 1.06 !important;
}
.slide-copy .meta {
    margin-top: 4px !important;
    font-size: 11px !important;
}
.carousel-progress {
    top: var(--heroH) !important;
}
.dots {
    top: calc(var(--heroH) - 6px) !important;
}
@media (max-width: 900px) {
    .intro {
        padding: 12px 20px 10px !important;
    }
    .intro h1 {
        font-size: 21px !important;
        line-height: 1.12 !important;
    }
    .carousel {
        --heroH: 215px !important;
    }
    .slide-image {
        height: 215px !important;
        min-height: 215px !important;
        max-height: 215px !important;
        padding: 16px !important;
    }
    .mobile-hero {
        max-height: 180px !important;
        max-width: 78% !important;
        width: auto !important;
        height: auto !important;
        object-fit: contain !important;
    }
    .slide-copy {
        min-height: 124px !important;
        padding: 14px 22px 18px !important;
    }
    .slide-copy .eyebrow {
        font-size: 10px !important;
        margin-bottom: 8px !important;
    }
    .slide-copy h2 {
        font-size: 23px !important;
        line-height: 1.08 !important;
    }
    .slide-copy .meta {
        font-size: 10px !important;
        margin-top: 7px !important;
    }
    .slide-copy .cta-row,
    .slide-copy .cta-column {
        margin-top: 12px !important;
    }
    .slide-copy .button.primary {
        height: 38px !important;
        min-width: 110px !important;
        padding: 0 18px !important;
        font-size: 10px !important;
    }
    .carousel-progress {
        top: 215px !important;
    }
    .dots {
        top: 209px !important;
    }
    .arrow {
        width: 48px !important;
        height: 48px !important;
        font-size: 34px !important;
    }
}

/* V41: stronger lift for door content, preserving original left alignment */
.door {
    align-items: flex-start !important;
}
.door-content {
    margin-top: 34px !important;
}

@media (max-width: 900px) {
    .door-content {
        margin-top: 28px !important;
    }
}

/* V42: door title/subtext higher, CTAs lower */
.door {
    align-items: flex-start !important;
}
.door-content {
    margin-top: 18px !important;
}
.door .subpoints {
    margin-top: 14px !important;
}
.door .cta-column,
.door .cta-row {
    margin-top: 42px !important;
}

@media (max-width: 900px) {
    .door-content {
        margin-top: 18px !important;
    }
    .door .subpoints {
        margin-top: 10px !important;
    }
    .door .cta-column,
    .door .cta-row {
        margin-top: 28px !important;
    }
}

/* V43: tighten header/top intro to pull doors higher without distorting door layout */
.intro {
    padding: 12px 40px 10px !important;
}
.intro h1 {
    font-size: 27px !important;
    line-height: 1.06 !important;
}

@media (max-width: 900px) {
    .intro {
        padding: 9px 18px 8px !important;
    }
    .intro h1 {
        font-size: 20px !important;
        line-height: 1.08 !important;
    }
}