.corporate-membership-page-body {
    margin: 0;
    overflow-x: hidden;
    background: #171717;
    color: #f6f1e9;
}

.corporate-membership-page-body .corporate-membership-page {
    min-height: 0;
    padding: clamp(36px, 4vw, 64px) 0 0;
    background: #f4efe7;
}

.corporate-membership-page-body .corporate-membership-hero {
    display: grid;
    grid-template-columns: minmax(0, 50%) minmax(0, 50%);
    width: min(1500px, 300vw);
    height: clamp(380px, 42vw, 480px);
    min-height: 0;
    margin: 0 auto;
    overflow: hidden;
    background: #171717;
}

.corporate-membership-page-body .corporate-membership-copy {
    display: flex;
    min-width: 0;
    padding: clamp(42px, 4vw, 76px) clamp(38px, 4.5vw, 86px);
    align-items: center;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.corporate-membership-page-body .corporate-membership-copy h1 {
    max-width: 880px;
    margin: 0 auto clamp(22px, 1.8vw, 34px);
    color: #f6f1e9;
    font-family: "Playfair Display", serif;
    font-size: clamp(32px, 2.7vw, 52px);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -0.025em;
}

.corporate-membership-page-body .corporate-membership-copy p {
    max-width: 760px;
    margin: 0 auto 18px;
    color: rgba(255, 255, 255, 0.88);
    font-family: "Inter", sans-serif;
    font-size: clamp(15px, 1.05vw, 20px);
    font-weight: 400;
    line-height: 1.55;
}

.corporate-membership-page-body .corporate-membership-copy p + p {
    max-width: 680px;
    margin-top: 8px;
}

.corporate-membership-page-body .corporate-membership-cta {
    display: inline-flex;
    min-width: min(200px, 100%);
    min-height: 36px;
    margin-top: 22px;
    padding: 4px 8px;
    align-items: center;
    justify-content: center;
    border: 1px solid #ffffff;
    border-radius: 999px;
    background: #ffffff;
    color: black;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    transition: background-color 200ms ease, color 200ms ease, transform 200ms ease;
}

.corporate-membership-page-body .corporate-membership-cta:hover,
.corporate-membership-page-body .corporate-membership-cta:focus-visible {
    border-radius: 999px;
    background: transparent;
    color: #ffffff;
    transform: translateY(-2px);
}

.corporate-membership-page-body .corporate-membership-visual {
    min-width: 0;
    height: 100%;
    min-height: 0;
    margin: 0;
    overflow: hidden;
}

.corporate-membership-page-body .corporate-membership-visual img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Service page selector */
.travel-service-switcher {
    position: relative;
    z-index: 4;
    min-height: 85px;
    padding: 22px 52px;
    background: #e9e9e9;
}

.travel-service-switcher__control {
    box-sizing: border-box;
    display: flex;
    width: 211px;
    height: 40px;
    min-height: 40px;
    padding: 0 10px 0 11px;
    align-items: center;
    justify-content: space-between;
    border: 0;
    border-radius: 999px;
    background: #000;
    color: #f6f1e9;
    cursor: pointer;
    font-family: "Inter", sans-serif;
    font-size: 13.2px;
    font-weight: 400;
    line-height: 1;
    text-align: left;
}

.travel-service-switcher__chevron {
    width: 5px;
    height: 5px;
    margin: -2px 1px 0 0;
    border-right: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
    transform: rotate(45deg);
    transition: transform 180ms ease, margin 180ms ease;
}

.travel-service-switcher.is-open .travel-service-switcher__chevron {
    margin-top: 2px;
    transform: rotate(225deg);
}

.travel-service-switcher__menu {
    position: absolute;
    top: 62px;
    left: 52px;
    z-index: 1;
    display: none;
    width: 211px;
    margin: 0;
    padding: 6px 0;
    border-radius: 0;
    background: #000;
    list-style: none;
}

.travel-service-switcher.is-open .travel-service-switcher__menu { display: block; }

.travel-service-switcher.is-open .travel-service-switcher__control {
    border-bottom: 0;
    border-radius: 0;
}

.travel-service-switcher__menu a {
    display: block;
    padding: 9px 11px;
    color: #f6f1e9;
    font-family: "Inter", sans-serif;
    font-size: 13.2px;
    font-weight: 400;
    line-height: 1.25;
    text-decoration: none;
}

.travel-service-switcher__menu a:hover,
.travel-service-switcher__menu a:focus-visible {
    background: rgba(255, 255, 255, .13);
    outline: none;
}

@media (max-width: 520px) {
    .travel-service-switcher { min-height: 75px; padding: 18px 24px; }
    .travel-service-switcher__control,
    .travel-service-switcher__menu { width: 211px; }
    .travel-service-switcher__menu { top: 58px; left: 24px; }
}

@media (max-width: 1100px) {
    .corporate-membership-page-body .corporate-membership-hero {
        grid-template-columns: minmax(0, 48%) minmax(0, 52%);
    }

    .corporate-membership-page-body .corporate-membership-copy {
        padding-inline: clamp(32px, 4vw, 56px);
    }

    .corporate-membership-page-body .corporate-membership-copy h1 {
        font-size: clamp(42px, 4.5vw, 58px);
    }
}

@media (max-width: 768px) {
    .corporate-membership-page-body .corporate-membership-page {
        min-height: 0;
        padding: 0;
        background: #171717;
    }

    .corporate-membership-page-body .corporate-membership-hero {
        display: flex;
        width: 100%;
        height: auto;
        min-height: 0;
        max-height: none;
        flex-direction: column;
    }

    .corporate-membership-page-body .corporate-membership-visual {
        order: 1;
        width: 100%;
        min-height: 0;
        aspect-ratio: 16 / 10;
    }

    .corporate-membership-page-body .corporate-membership-copy {
        order: 2;
        padding: 56px 24px 72px;
        align-items: flex-start;
        text-align: left;
    }

    .corporate-membership-page-body .corporate-membership-copy h1 {
        max-width: 620px;
        margin: 0 0 28px;
        font-size: clamp(31.7px, 8.8vw, 40.5px);
        line-height: 1.1;
    }

    .corporate-membership-page-body .corporate-membership-copy p,
    .corporate-membership-page-body .corporate-membership-copy p + p {
        max-width: 620px;
        margin-right: 0;
        margin-left: 0;
        font-size: 16px;
        line-height: 1.7;
    }

    .corporate-membership-page-body .corporate-membership-cta {
        width: 100%;
        min-width: 0;
        max-width: 340px;
        min-height: 60px;
        margin-top: 24px;
        align-self: center;
        font-size: 15px;
    }
}

/* ========================================
   CORPORATE MEMBERSHIP ENQUIRY
   ======================================== */

.corporate-enquiry {
    padding: clamp(72px, 8vw, 128px) 24px clamp(78px, 9vw, 140px);
    background: #202020;
    color: #f6f1e9;
}

.corporate-enquiry-inner {
    width: min(720px, 100%);
    margin: 0 auto;
}

.corporate-enquiry-intro {
    margin-bottom: 46px;
    text-align: center;
}

.corporate-enquiry-intro h2 {
    margin: 0;
    color: #f6f1e9;
    font-family: "Playfair Display", serif;
    font-size: clamp(36px, 3.6vw, 52px);
    font-weight: 400;
    line-height: 1.12;
}

.corporate-enquiry-intro p {
    max-width: 650px;
    margin: 17px auto 0;
    color: rgba(255, 255, 255, .78);
    font-family: "Inter", sans-serif;
    font-size: 14px;
    line-height: 1.55;
}

.corporate-enquiry-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 31px 28px;
    font-family: "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
    font-size: 14px;
}

.corporate-enquiry-field {
    position: relative;
    display: grid;
    min-width: 0;
}

.corporate-enquiry-field-full {
    grid-column: 1 / -1;
}

.corporate-enquiry-field > span {
    position: absolute;
    top: 50%;
    left: 0;
    z-index: 1;
    color: #afafaf;
    font-family: "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif !important;
    font-size: 14px !important;
    font-weight: 600;
    line-height: 1;
    pointer-events: none;
    transform: translateY(-50%);
    transform-origin: left center;
    opacity: 1;
    transition: transform 200ms ease, opacity 200ms ease, font-size 200ms ease;
}

.corporate-enquiry-field.is-focused > span {
    font-size: 12px;
    transform: translateY(calc(-50% - 17px));
}

.corporate-enquiry-field.is-filled > span {
    opacity: 0;
    visibility: hidden;
}

.corporate-enquiry-message > span {
    top: 10px;
    transform: none;
}

.corporate-enquiry-message.is-focused > span {
    transform: translateY(-19px);
}

.corporate-enquiry-field input,
.corporate-enquiry-field select,
.corporate-enquiry-field textarea {
    width: 100%;
    min-width: 0;
    padding: 3px 34px 5px 0;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .6);
    border-radius: 0;
    outline: 0;
    background: transparent;
    color: #afafaf !important;
    font-family: sans-serif !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    line-height: 17px !important;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.corporate-enquiry-field select {
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, rgba(255,255,255,.78) 50%), linear-gradient(135deg, rgba(255,255,255,.78) 50%, transparent 50%);
    background-position: calc(100% - 8px) calc(50% - 2px), calc(100% - 3px) calc(50% - 2px);
    background-size: 5px 5px, 5px 5px;
    background-repeat: no-repeat;
}

.corporate-enquiry-field select option { background: #202020; }

.corporate-enquiry-field textarea {
    min-height: 104px;
    resize: vertical;
}

.corporate-enquiry-field input:focus,
.corporate-enquiry-field select:focus,
.corporate-enquiry-field textarea:focus {
    border-bottom-color: #fff;
    box-shadow: 0 1px 0 #fff;
}

.corporate-enquiry-field input:-webkit-autofill,
.corporate-enquiry-field input:-webkit-autofill:hover,
.corporate-enquiry-field input:-webkit-autofill:focus {
    -webkit-text-fill-color: #afafaf !important;
    -webkit-box-shadow: 0 0 0 1000px #202020 inset !important;
    box-shadow: 0 0 0 1000px #202020 inset !important;
    caret-color: #afafaf;
    transition: background-color 9999s ease-out 0s;
}

/* Final browser-autofill override: keep stored values visually flush with the form. */
.corporate-enquiry-form input:-webkit-autofill,
.corporate-enquiry-form input:-webkit-autofill:hover,
.corporate-enquiry-form input:-webkit-autofill:focus,
.corporate-enquiry-form select:-webkit-autofill,
.corporate-enquiry-form select:-webkit-autofill:hover,
.corporate-enquiry-form select:-webkit-autofill:focus,
.corporate-enquiry-form textarea:-webkit-autofill,
.corporate-enquiry-form textarea:-webkit-autofill:hover,
.corporate-enquiry-form textarea:-webkit-autofill:focus {
    background-color: #202020 !important;
    -webkit-text-fill-color: #afafaf !important;
    -webkit-box-shadow: 0 0 0 1000px #202020 inset !important;
    box-shadow: 0 0 0 1000px #202020 inset !important;
    font-family: sans-serif !important;
    font-size: 14px !important;
    font-weight: 600 !important;
}

.corporate-enquiry-phone {
    display: grid;
    grid-template-columns: minmax(160px, .75fr) minmax(0, 1.25fr);
    gap: 28px;
}

.corporate-enquiry-consents {
    display: grid;
    gap: 14px;
    margin-top: 1px;
}

.corporate-enquiry-consents label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255, 255, 255, .79);
    font-family: "Inter", sans-serif;
    font-size: 13px;
    line-height: 1.5;
}

.corporate-enquiry-consents input {
    width: 17px;
    height: 17px;
    flex: 0 0 auto;
    margin: 1px 0 0;
    accent-color: #fff;
}

.corporate-enquiry-consents a {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    text-underline-offset: 3px;
}

.corporate-enquiry-consents small {
    color: rgba(255, 255, 255, .45);
    font: 12px/1.4 "Inter", sans-serif;
}

.corporate-enquiry-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.corporate-enquiry-actions button {
    min-width: 144px;
    padding: 13px 22px;
    border: 1px solid #fff;
    border-radius: 999px;
    background: #fff;
    color: #171717;
    font: 600 13px/1 "Inter", sans-serif;
    cursor: pointer;
    transition: background .2s ease, color .2s ease;
}

.corporate-enquiry-actions button:hover,
.corporate-enquiry-actions button:focus-visible {
    background: transparent;
    color: #fff;
}

.corporate-enquiry-actions button:disabled { cursor: wait; opacity: .72; }

.corporate-enquiry-actions p {
    margin: 0;
    color: rgba(255, 255, 255, .76);
    font: 13px/1.45 "Inter", sans-serif;
}

@media (max-width: 600px) {
    .corporate-enquiry { padding: 66px 22px 76px; }
    .corporate-enquiry-intro { margin-bottom: 38px; }
    .corporate-enquiry-form { grid-template-columns: 1fr; gap: 28px; }
    .corporate-enquiry-phone { grid-template-columns: 1fr; gap: 28px; }
    .corporate-enquiry-actions { align-items: flex-start; flex-direction: column; }
}
/* ========================================
   CORPORATE MEMBERSHIP FEATURES
   ======================================== */

.corporate-membership-features {
    display: grid;
    grid-template-columns: 46% 54%;

    width: 100%;
    min-height: 730px;

    padding: 52px 3.5vw 58px;

    background: #f7f7f5;
    color: #171717;
}


/* LEFT SIDE */

.corporate-membership-features-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 20px 5vw 30px 1vw;
}


.corporate-membership-features-copy h2 {
    margin: 0 0 32px;
font-size: clamp(30px, 2.4vw, 42px);
    font-family: "Playfair Display", serif;
    font-weight: 400;
    line-height: 1.1;

    color: #171717;
}


.corporate-membership-features-copy ul {
    margin: 0;
    padding: 0;
    list-style: none;
    max-width: 650px;
}

.corporate-membership-features-copy li {
    position: relative;
    margin-bottom: 17px;
    padding-left: 28px;

    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;

    color: #171717;
}

.corporate-membership-features-copy li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #777;
    font-size: 16px;
    font-weight: 400;
}

/* ========================================
   RIGHT BROCHURE
   ======================================== */

.corporate-membership-brochure {
    display: flex;
    min-width: 0;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
}

.corporate-membership-brochure-viewer {
    width: 100%;
    max-width: 740px;
    height: 625px;
    padding: 28px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
    box-sizing: border-box;

    background: #343434;
}


/* ========================================
   MOBILE — MEMBERSHIP FEATURES
   ======================================== */

@media (max-width: 768px) {

    .corporate-membership-features {
        grid-template-columns: 1fr;
        min-height: 0;
        padding: 55px 22px;
    }

    .corporate-membership-features-copy {
        padding: 0 0 50px;
    }

    .corporate-membership-features-copy h2 {
        font-size: 38px;
    }

    .corporate-membership-features-copy li {
        margin-bottom: 15px;
        font-size: 15px;
    }

    .corporate-membership-brochure {
        align-items: stretch;
    }

    .corporate-membership-brochure-viewer {
        width: 100%;
        height: 560px;
        padding: 20px 18px;
    }
}


/* REMOVE GAP BETWEEN MEMBERSHIP FEATURES AND FOOTER */

.corporate-membership-page-body .corporate-membership-page {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

.corporate-membership-features {
    position: relative;
    z-index: 1;
    margin-bottom: 0 !important;
}

.corporate-membership-page-body #siteFooter {
    margin-top: 0 !important;
}


/* =========================================
   BLACKWOOD CORPORATE BROCHURE FLIPBOOK
   ========================================= */

.blackwood-flipbook-container {
    position: relative;

    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    /* Allow horizontal page gestures while keeping vertical page scrolling natural. */
    touch-action: pan-y;
}


/*
 * This is the fixed stage. It never moves.
 * PageFlip always has the same geometry to work with.
 */
.blackwood-flipbook-stage {
    position: relative;

    /* Keep a clear rail either side of the pages for the navigation arrows. */
    width: calc(100% - 96px);
    height: calc(100% - 82px);

    display: flex;
    align-items: center;
    justify-content: center;
}


/*
 * ONLY this wrapper moves.
 * PageFlip itself is never translated or transitioned.
 */
.blackwood-flipbook-motion {
    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;
    /* Never transform this ancestor: PageFlip's 3D layers must stay in one coordinate system. */
    transform: none !important;

    /* Keep the cover-to-spread movement in step with the page-turn duration. */
    overflow: hidden;
    transition: opacity 160ms ease;

    will-change: transform;
    cursor: grab;
}

.blackwood-flipbook-motion:active { cursor: grabbing; }

.blackwood-flipbook-motion.is-ready {
    opacity: 1;
}


/*
 * PageFlip's single front cover naturally occupies the right half
 * of its landscape book area. Shifting the OUTER motion wrapper
 * left by one quarter centres that single cover in the fixed stage.
 */
.blackwood-flipbook-motion.is-cover-centered {
    transform: none !important;
}

/* Move the entire first spread left before the closed cover is centred. */
.blackwood-flipbook-motion.is-closing-cover {
    transform: none !important;
}


/*
 * PageFlip owns this element. Do not add transform/transition here.
 */
#blackwoodFlipbook {
    width: 100%;
    height: 100%;
}


/* PDF PAGES */

.flipbook-page {
    overflow: hidden;
    background: #ffffff;
}

.flipbook-page canvas {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: contain;
}


/* LEFT + RIGHT ARROWS */

.flipbook-arrow {
    position: absolute;
    top: 50%;
    z-index: 50;

    width: 38px;
    /* 20% taller hover area makes the controls easier to catch. */
    height: 72px;
    padding: 0;

    border: 0;
    background: transparent;

    color: #ffffff;

    font-family: Arial, sans-serif;
    font-size: 50px;
    font-weight: 200;
    line-height: 1;

    cursor: pointer;

    opacity: 0.72;
    transform: translateY(-50%);

    transition: opacity 180ms ease;
}

.flipbook-arrow:hover:not(:disabled) {
    background: rgba(0, 0, 0, 0.32);
    opacity: 1;
}

.flipbook-arrow:disabled {
    opacity: 0.18;
    cursor: default;
}

.flipbook-prev {
    left: 4px;
}

.flipbook-next {
    right: 4px;
}


/* PAGE NUMBER */

.flipbook-page-counter {
    position: absolute;
    bottom: 17px;
    left: 20px;
    z-index: 65;

    color: rgba(255, 255, 255, 0.76);

    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0;
    white-space: nowrap;
}

.flipbook-tools {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 60;
    display: flex;
    height: 58px;
    border-radius: 0 0 4px 4px;
    background: #202020;
}

.flipbook-tool {
    display: grid;
    width: 30px;
    height: 30px;
    padding: 0;
    place-items: center;
    border: 0;
    border-radius: 2px;
    background: transparent;
    color: rgba(255, 255, 255, .92);
    cursor: pointer;
    transition: background .18s ease, color .18s ease;
}

.flipbook-tool svg {
    display: block;
    width: 22px;
    height: 22px;
    fill: none;
    stroke: #f5f5f5;
    stroke-linecap: square;
    stroke-linejoin: miter;
    stroke-width: 2.75;
}

.flipbook-tool-grid svg { stroke-width: 2.5; }

#flipbookGridToggle { position: absolute; bottom: 14px; left: 14%; }
#flipbookSearchToggle { position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%); }
#flipbookFullscreen { position: absolute; right: 14%; bottom: 14px; }

.flipbook-tool:hover,
.flipbook-tool:focus-visible,
.flipbook-arrow:hover:not(:disabled),
.flipbook-arrow:focus-visible:not(:disabled) {
    background: rgba(0, 0, 0, .38);
    color: #fff;
    outline: 0;
}

.flipbook-search {
    position: absolute;
    right: 14px;
    bottom: 66px;
    z-index: 65;
    width: min(250px, calc(100% - 28px));
    padding: 10px;
    background: rgba(20, 20, 20, .96);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .28);
}

.flipbook-search[hidden],
.flipbook-grid[hidden] { display: none; }

.flipbook-search input {
    width: 100%;
    padding: 8px 9px;
    border: 1px solid rgba(255, 255, 255, .34);
    border-radius: 0;
    outline: 0;
    background: #2b2b2b;
    color: #fff;
    font: 12px/1.3 "Inter", sans-serif;
}

.flipbook-search p {
    min-height: 15px;
    margin: 7px 0 0;
    color: rgba(255, 255, 255, .75);
    font: 11px/1.35 "Inter", sans-serif;
}

.flipbook-grid {
    position: absolute;
    right: 0;
    bottom: 58px;
    left: 0;
    top: 0;
    z-index: 58;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(88px, 1fr));
    gap: 12px;
    align-content: start;
    padding: 22px;
    overflow: auto;
    background: rgba(35, 35, 35, .98);
}

.flipbook-progress {
    position: absolute;
    right: 86px;
    /* Sit above the three viewer controls instead of running through them. */
    bottom: 52px;
    left: 86px;
    z-index: 65;
    height: 2px;
    background: rgba(255, 255, 255, .32);
}

.flipbook-progress span {
    display: block;
    width: 0;
    height: 100%;
    background: #fff;
    transition: width .25s ease;
}

.flipbook-viewer-brand {
    position: absolute;
    bottom: 36px;
    right: 18px;
    z-index: 65;
    color: rgba(255, 255, 255, .72);
    font: 600 9px/1 "Helvetica Neue", Helvetica, Arial, sans-serif;
    letter-spacing: .12em;
}

.flipbook-grid button {
    display: grid;
    gap: 5px;
    padding: 0;
    border: 1px solid transparent;
    background: transparent;
    color: rgba(255, 255, 255, .8);
    font: 11px/1 "Inter", sans-serif;
    cursor: pointer;
}

.flipbook-grid button:hover,
.flipbook-grid button:focus-visible {
    border-color: rgba(255, 255, 255, .85);
    outline: 0;
}

.flipbook-grid img {
    display: block;
    width: 100%;
    height: auto;
    background: #fff;
}

.corporate-membership-brochure-viewer:fullscreen {
    width: 100%;
    max-width: none;
    height: 100%;
    padding: 50px;
    background: #343434;
}

/* Shared editorial cards on service pages */
.travel-gallery {
    padding: 78px 52px 0;
    background: #fff;
}

.travel-gallery__grid {
    display: grid;
    width: min(1280px, 100%);
    margin: 0 auto;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: start;
    gap: 37px;
}

.travel-gallery__card {
    display: grid;
    min-width: 0;
    grid-template-rows: auto 1fr;
    align-content: start;
}

.travel-gallery__image {
    display: block;
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.travel-gallery__image--venice { object-position: center 48%; }
.travel-gallery__image--villa { object-position: center 50%; }
.travel-gallery__image--island { object-position: center 38%; }

.travel-gallery__copy {
    padding: 68px 18px 0;
    color: #1b1b1b;
    text-align: center;
}

.travel-gallery__copy h2 {
    margin: 0;
    font-family: "Playfair Display", serif;
    font-size: clamp(34px, 2.45vw, 50px);
    font-weight: 500;
    line-height: 1.25;
    letter-spacing: -0.03em;
}

.travel-gallery__copy p {
    margin: 24px 0 0;
    font-family: "Inter", sans-serif;
    font-size: clamp(17px, 1.22vw, 25px);
    font-weight: 400;
    line-height: 1.52;
}

@media (max-width: 768px) {
    .travel-gallery { padding: 40px 24px 0; }
    .travel-gallery__grid { grid-template-columns: 1fr; gap: 50px; }
    .travel-gallery__copy { padding-top: 34px; }
}


/* LOAD ERROR */

.flipbook-error {
    margin: 0;
    padding: 30px;

    color: #ffffff;

    font-family: "Inter", sans-serif;
    font-size: 13px;
}


/* MOBILE — FLIPBOOK */

@media (max-width: 768px) {

    .blackwood-flipbook-stage {
        width: calc(100% - 78px);
        height: calc(100% - 66px);
    }

    .flipbook-arrow {
        top: 50%;
    }

    .flipbook-prev {
        left: 2px;
    }

    .flipbook-next {
        right: 2px;
    }

    .flipbook-arrow {
        width: 30px;
        font-size: 42px;
    }

    .flipbook-page-counter {
        bottom: 18px;
        left: 14px;
        font-size: 12px;
    }

    .flipbook-tools { height: 58px; }
    #flipbookGridToggle { bottom: 14px; left: 12%; }
    #flipbookSearchToggle { bottom: 14px; }
    #flipbookFullscreen { right: 12%; bottom: 14px; }
    .flipbook-progress { right: 58px; bottom: 52px; left: 58px; }
    .flipbook-viewer-brand { right: 12px; bottom: 37px; font-size: 8px; }
}
@media (max-width: 768px) {
    .flipbook-page-counter {
        bottom: 74px !important;
        left: 14px !important;
    }
}
