:root {
    --tlt-forest: #24372d;
    --tlt-forest-dark: #15231c;
    --tlt-orange: #c65f2d;
    --tlt-orange-dark: #9f4520;
    --tlt-sand: #f4eee3;
    --tlt-cream: #fffaf2;
    --tlt-ink: #1d2521;
    --tlt-muted: #667069;
    --tlt-white: #ffffff;
    --tlt-radius: 18px;
    --tlt-shadow: 0 20px 55px rgba(21, 35, 28, 0.14);
}

.tlt-home {
    color: var(--tlt-ink);
    overflow: hidden;
}

.tlt-home h1,
.tlt-home h2,
.tlt-home h3 {
    color: var(--tlt-forest-dark);
    font-family: Georgia, "Times New Roman", serif;
    letter-spacing: -0.025em;
    line-height: 1.08;
}

.tlt-home p {
    line-height: 1.75;
}

.tlt-home .tlt-hero {
    min-height: min(780px, 88vh);
}

.tlt-home .tlt-hero .wp-block-cover__background {
    background: linear-gradient(
        90deg,
        rgba(16, 28, 22, 0.88) 0%,
        rgba(16, 28, 22, 0.63) 48%,
        rgba(16, 28, 22, 0.18) 100%
    ) !important;
    opacity: 1 !important;
}

.tlt-home .tlt-hero-content {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
}

.tlt-home .tlt-hero-copy {
    max-width: 720px;
}

.tlt-home .tlt-hero h1 {
    color: var(--tlt-white);
    font-size: clamp(3rem, 7vw, 6.6rem);
    margin: 16px 0 22px;
    max-width: 900px;
}

.tlt-home .tlt-hero p {
    color: rgba(255, 255, 255, 0.92);
    font-size: clamp(1.08rem, 2vw, 1.35rem);
    max-width: 680px;
}

.tlt-eyebrow {
    color: var(--tlt-orange);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.tlt-hero .tlt-eyebrow {
    color: #f1ad7d;
}

.tlt-home .wp-block-button__link {
    border-radius: 999px;
    font-weight: 750;
    padding: 14px 24px;
    transition: transform 160ms ease, background 160ms ease;
}

.tlt-home .wp-block-button__link:hover {
    transform: translateY(-2px);
}

.tlt-home .tlt-primary-button .wp-block-button__link {
    background: var(--tlt-orange);
    color: var(--tlt-white);
}

.tlt-home .tlt-primary-button .wp-block-button__link:hover {
    background: var(--tlt-orange-dark);
}

.tlt-home .tlt-secondary-button .wp-block-button__link {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.72);
    color: var(--tlt-white);
}

.tlt-section {
    padding: clamp(72px, 9vw, 120px) 24px;
}

.tlt-section-inner {
    margin-inline: auto;
    max-width: 1180px;
}

.tlt-intro {
    background: var(--tlt-cream);
}

.tlt-intro h2,
.tlt-tours h2,
.tlt-location h2 {
    font-size: clamp(2.3rem, 5vw, 4.5rem);
    max-width: 850px;
}

.tlt-facts {
    border-top: 1px solid rgba(36, 55, 45, 0.18);
    margin-top: 52px;
    padding-top: 32px;
}

.tlt-fact {
    padding-right: 24px;
}

.tlt-fact strong {
    color: var(--tlt-forest);
    display: block;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.tlt-tours {
    background: var(--tlt-sand);
}

.tlt-card {
    background: var(--tlt-white);
    border-radius: var(--tlt-radius);
    box-shadow: var(--tlt-shadow);
    height: 100%;
    overflow: hidden;
}

.tlt-card img {
    aspect-ratio: 16 / 9;
    object-fit: cover;
    width: 100%;
}

.tlt-card-body {
    padding: 30px;
}

.tlt-card h3 {
    font-size: clamp(1.75rem, 3vw, 2.35rem);
    margin-top: 8px;
}

.tlt-card-meta {
    color: var(--tlt-orange-dark);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.tlt-story {
    background: var(--tlt-forest);
    color: rgba(255, 255, 255, 0.88);
}

.tlt-story h2 {
    color: var(--tlt-white);
    font-size: clamp(2.4rem, 5vw, 4.6rem);
}

.tlt-story img {
    border-radius: var(--tlt-radius);
    box-shadow: 0 25px 65px rgba(0, 0, 0, 0.3);
}

.tlt-location {
    background: var(--tlt-cream);
}

.tlt-cta {
    background: var(--tlt-orange);
    color: var(--tlt-white);
    padding: clamp(65px, 8vw, 100px) 24px;
    text-align: center;
}

.tlt-cta h2 {
    color: var(--tlt-white);
    font-size: clamp(2.4rem, 5vw, 4.5rem);
    margin-inline: auto;
    max-width: 820px;
}

.tlt-cta p {
    font-size: 1.15rem;
    margin-inline: auto;
    max-width: 680px;
}

.tlt-cta .wp-block-button__link {
    background: var(--tlt-forest-dark);
    color: var(--tlt-white);
}

@media (max-width: 781px) {
    .tlt-home .tlt-hero {
        min-height: 720px;
    }

    .tlt-section {
        padding-inline: 20px;
    }

    .tlt-fact {
        border-bottom: 1px solid rgba(36, 55, 45, 0.14);
        padding: 18px 0;
    }

    .tlt-card-body {
        padding: 24px;
    }
}


/* ==========================================================
   Kadence integration for the bilingual redesigned homepages
   ========================================================== */

body.page-id-2003,
body.page-id-2004 {
    background: var(--tlt-cream);
}

/* Compact heritage-green header */
body.page-id-2003 #masthead,
body.page-id-2004 #masthead,
body.page-id-2003 .site-header-row-container-inner,
body.page-id-2004 .site-header-row-container-inner {
    background: var(--tlt-forest-dark) !important;
}

body.page-id-2003 .site-main-header-inner-wrap,
body.page-id-2004 .site-main-header-inner-wrap {
    min-height: 92px;
}

body.page-id-2003 #masthead .site-container,
body.page-id-2004 #masthead .site-container {
    max-width: 1440px;
    padding-left: 28px;
    padding-right: 28px;
}

/* The logo already contains the company name */
body.page-id-2003 .site-title,
body.page-id-2004 .site-title,
body.page-id-2003 .site-description,
body.page-id-2004 .site-description {
    display: none !important;
}

body.page-id-2003 .site-branding a.brand img,
body.page-id-2004 .site-branding a.brand img {
    max-height: 76px;
    width: auto;
}

/* Readable navigation */
body.page-id-2003 #masthead .primary-menu-container > ul > li > a,
body.page-id-2004 #masthead .primary-menu-container > ul > li > a {
    color: rgba(255, 255, 255, 0.88) !important;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.025em;
}

body.page-id-2003 #masthead .primary-menu-container > ul > li > a:hover,
body.page-id-2004 #masthead .primary-menu-container > ul > li > a:hover,
body.page-id-2003 #masthead .primary-menu-container > ul > li.current-menu-item > a,
body.page-id-2004 #masthead .primary-menu-container > ul > li.current-menu-item > a {
    color: #f1ad7d !important;
}

/* Remove Kadence's standard page title and boxed-page spacing */
body.page-id-2003 .entry-hero,
body.page-id-2004 .entry-hero,
body.page-id-2003 .entry-header,
body.page-id-2004 .entry-header {
    display: none !important;
}

body.page-id-2003 .site-content,
body.page-id-2004 .site-content {
    padding: 0 !important;
}

body.page-id-2003 .content-area,
body.page-id-2004 .content-area,
body.page-id-2003 .site-main,
body.page-id-2004 .site-main,
body.page-id-2003 .content-container,
body.page-id-2004 .content-container,
body.page-id-2003 .content-bg,
body.page-id-2004 .content-bg,
body.page-id-2003 article,
body.page-id-2004 article,
body.page-id-2003 .entry-content-wrap,
body.page-id-2004 .entry-content-wrap,
body.page-id-2003 .entry-content,
body.page-id-2004 .entry-content,
body.page-id-2003 .tlt-home,
body.page-id-2004 .tlt-home {
    margin: 0 !important;
    max-width: none !important;
    padding: 0 !important;
    width: 100% !important;
}

body.page-id-2003 .content-bg,
body.page-id-2004 .content-bg {
    background: transparent !important;
}

/* True viewport-width sections */
body.page-id-2003 .tlt-home .alignfull,
body.page-id-2004 .tlt-home .alignfull {
    left: 50% !important;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
    max-width: 100vw !important;
    position: relative !important;
    width: 100vw !important;
}

/* Hero refinements */
.tlt-home .tlt-hero {
    height: min(820px, calc(100vh - 92px));
    max-height: 820px;
    min-height: 680px;
    overflow: hidden;
}

.tlt-home .tlt-hero-content {
    padding-left: 28px;
    padding-right: 28px;
}

.tlt-home .tlt-hero h1 {
    color: var(--tlt-white) !important;
    font-size: clamp(3.2rem, 5.5vw, 5.5rem);
    max-width: 760px;
}

.tlt-home .tlt-hero .tlt-eyebrow {
    color: #f1ad7d !important;
}

.tlt-home .tlt-hero p:not(.tlt-eyebrow) {
    color: rgba(255, 255, 255, 0.94) !important;
}

.tlt-home .wp-block-button__link {
    letter-spacing: 0.02em !important;
    text-transform: none !important;
}

/* Responsive header and hero */
@media (max-width: 1024px) {
    body.page-id-2003 .site-branding a.brand img,
    body.page-id-2004 .site-branding a.brand img {
        max-height: 66px;
    }

    .tlt-home .tlt-hero {
        min-height: 680px;
    }
}

@media (max-width: 781px) {
    body.page-id-2003 #masthead .site-container,
    body.page-id-2004 #masthead .site-container {
        padding-left: 18px;
        padding-right: 18px;
    }

    .tlt-home .tlt-hero {
        height: auto;
        max-height: none;
        min-height: 680px;
    }

    .tlt-home .tlt-hero-content {
        padding-left: 20px;
        padding-right: 20px;
    }

    .tlt-home .tlt-hero h1 {
        font-size: clamp(3rem, 15vw, 4.5rem);
    }
}

/* ==========================================================
   Split hero: copy panel left, unobstructed photograph right
   ========================================================== */

.tlt-home .tlt-hero {
    align-items: stretch;
    background: var(--tlt-forest-dark);
    display: flex;
    min-height: 720px;
}

/* Place the original Cover image on the right side */
.tlt-home .tlt-hero .wp-block-cover__image-background {
    height: 100%;
    left: 42%;
    object-fit: cover;
    object-position: 48% center;
    top: 0;
    width: 58%;
}

/* A light overlay remains on the photograph only */
.tlt-home .tlt-hero .wp-block-cover__background {
    background: linear-gradient(
        90deg,
        rgba(21, 35, 28, 0.28) 0%,
        rgba(21, 35, 28, 0.08) 45%,
        rgba(21, 35, 28, 0.02) 100%
    ) !important;
    height: 100%;
    left: 42%;
    opacity: 1 !important;
    top: 0;
    width: 58%;
}

/* Keep the copy within the forest-green panel */
.tlt-home .tlt-hero .wp-block-cover__inner-container {
    align-items: center;
    display: flex;
    margin: 0 auto;
    max-width: 1440px;
    padding: 64px 28px;
    width: 100%;
    z-index: 2;
}

.tlt-home .tlt-hero-content {
    margin: 0;
    padding: 0;
    width: 100%;
}

.tlt-home .tlt-hero-copy {
    max-width: 520px;
    width: 38%;
}

.tlt-home .tlt-hero h1 {
    font-size: clamp(3.2rem, 4.6vw, 5.25rem);
    max-width: 520px;
}

.tlt-home .tlt-hero p:not(.tlt-eyebrow) {
    font-size: clamp(1.05rem, 1.3vw, 1.22rem);
    max-width: 500px;
}

/* Tablet: give the wording a little more room */
@media (max-width: 1100px) and (min-width: 782px) {
    .tlt-home .tlt-hero .wp-block-cover__image-background,
    .tlt-home .tlt-hero .wp-block-cover__background {
        left: 48%;
        width: 52%;
    }

    .tlt-home .tlt-hero-copy {
        max-width: 440px;
        width: 44%;
    }

    .tlt-home .tlt-hero h1 {
        font-size: clamp(3rem, 5vw, 4.4rem);
    }
}

/* Mobile: image above, copy below */
@media (max-width: 781px) {
    .tlt-home .tlt-hero {
        display: block;
        min-height: 0;
        padding-top: 56vw;
    }

    .tlt-home .tlt-hero .wp-block-cover__image-background,
    .tlt-home .tlt-hero .wp-block-cover__background {
        height: 56vw;
        left: 0;
        max-height: 430px;
        min-height: 280px;
        top: 0;
        width: 100%;
    }

    .tlt-home .tlt-hero .wp-block-cover__image-background {
        object-position: 48% center;
    }

    .tlt-home .tlt-hero .wp-block-cover__inner-container {
        display: block;
        padding: 54px 20px 62px;
    }

    .tlt-home .tlt-hero-copy {
        max-width: none;
        width: 100%;
    }

    .tlt-home .tlt-hero h1 {
        font-size: clamp(3rem, 14vw, 4.3rem);
        max-width: 620px;
    }
}

/* ==========================================================
   Cinematic hero: minimal copy over immersive photography
   ========================================================== */

.tlt-home .tlt-hero {
    background: var(--tlt-forest-dark);
    height: min(780px, calc(100vh - 92px));
    min-height: 650px;
}

/* Protect the wording while leaving most of the image natural */
.tlt-home .tlt-hero .wp-block-cover__background {
    background: linear-gradient(
        90deg,
        rgba(12, 23, 17, 0.92) 0%,
        rgba(12, 23, 17, 0.78) 28%,
        rgba(12, 23, 17, 0.48) 52%,
        rgba(12, 23, 17, 0.14) 76%,
        rgba(12, 23, 17, 0.02) 100%
    ) !important;
    opacity: 1 !important;
}

/* Keep the message concise; the next section explains the tour */
.tlt-home .tlt-hero-copy > p:not(.tlt-eyebrow) {
    display: none !important;
}

.tlt-home .tlt-hero-copy {
    max-width: 660px;
    transform: translateY(-32px);
}

.tlt-home .tlt-hero h1 {
    font-size: clamp(3.4rem, 5.2vw, 5.4rem);
    line-height: 1.01;
    margin-bottom: 30px;
    max-width: 660px;
}

.tlt-home .tlt-hero .wp-block-buttons {
    margin-top: 0;
}

/* Keep the image bright enough to feel photographic */
.tlt-home .tlt-hero .wp-block-cover__image-background {
    filter: saturate(1.04) contrast(1.02);
}

@media (max-width: 1024px) {
    .tlt-home .tlt-hero-copy {
        max-width: 590px;
        transform: translateY(-18px);
    }

    .tlt-home .tlt-hero h1 {
        max-width: 590px;
    }
}

@media (max-width: 781px) {
    .tlt-home .tlt-hero {
        height: auto;
        min-height: 680px;
    }

    .tlt-home .tlt-hero .wp-block-cover__background {
        background: linear-gradient(
            180deg,
            rgba(12, 23, 17, 0.18) 0%,
            rgba(12, 23, 17, 0.48) 42%,
            rgba(12, 23, 17, 0.92) 100%
        ) !important;
    }

    .tlt-home .tlt-hero-content {
        align-items: flex-end;
        display: flex;
        min-height: 680px;
        padding-bottom: 54px;
    }

    .tlt-home .tlt-hero-copy {
        max-width: none;
        transform: none;
        width: 100%;
    }

    .tlt-home .tlt-hero h1 {
        font-size: clamp(3rem, 14vw, 4.25rem);
        max-width: 600px;
    }
}

/* ==========================================================
   Continuous full-bleed hero — no split or visible boundary
   ========================================================== */

.tlt-home .tlt-hero .wp-block-cover__image-background {
    filter: saturate(1.04) contrast(1.02);
    height: 100% !important;
    inset: 0 !important;
    object-fit: cover !important;
    object-position: center center !important;
    width: 100% !important;
}

/* Gentle continuous scrim; the photograph remains visible */
.tlt-home .tlt-hero .wp-block-cover__background {
    background: linear-gradient(
        90deg,
        rgba(12, 23, 17, 0.76) 0%,
        rgba(12, 23, 17, 0.58) 32%,
        rgba(12, 23, 17, 0.32) 60%,
        rgba(12, 23, 17, 0.12) 82%,
        rgba(12, 23, 17, 0.04) 100%
    ) !important;
    height: 100% !important;
    inset: 0 !important;
    opacity: 1 !important;
    width: 100% !important;
}

/* Minimal hero copy */
.tlt-home .tlt-hero p:not(.tlt-eyebrow) {
    display: none !important;
}

.tlt-home .tlt-hero-copy {
    max-width: 660px !important;
    transform: translateY(-20px);
    width: auto !important;
}

.tlt-home .tlt-hero h1 {
    font-size: clamp(3.4rem, 5.2vw, 5.4rem);
    max-width: 660px;
}

@media (max-width: 781px) {
    .tlt-home .tlt-hero .wp-block-cover__background {
        background: linear-gradient(
            180deg,
            rgba(12, 23, 17, 0.08) 0%,
            rgba(12, 23, 17, 0.32) 45%,
            rgba(12, 23, 17, 0.86) 100%
        ) !important;
    }

    .tlt-home .tlt-hero-copy {
        transform: none;
    }
}

/* ==========================================================
   Homepage final polish
   ========================================================== */

.tlt-section {
    padding-bottom: clamp(60px, 7vw, 92px);
    padding-top: clamp(60px, 7vw, 92px);
}

.tlt-intro {
    padding-top: clamp(68px, 7vw, 96px);
}

.tlt-facts {
    border-top-color: rgba(36, 55, 45, 0.26);
    margin-top: 42px;
    padding-top: 30px;
}

.tlt-tours {
    padding-top: clamp(64px, 7vw, 94px);
}

.tlt-card-meta {
    line-height: 1.5;
}

.tlt-story .wp-block-columns,
.tlt-location .wp-block-columns {
    align-items: center !important;
}

/* Styled location benefits */
.tlt-location ul {
    list-style: none;
    margin: 8px 0 0;
    padding: 0;
}

.tlt-location li {
    font-size: 1.02rem;
    line-height: 1.45;
    margin: 0;
    padding: 8px 0 8px 30px;
    position: relative;
}

.tlt-location li::before {
    color: var(--tlt-orange);
    content: "✓";
    font-size: 1.05rem;
    font-weight: 900;
    left: 0;
    position: absolute;
    top: 8px;
}

/* Treat the final CTA as one unified message */
.tlt-cta {
    padding-bottom: clamp(64px, 7vw, 92px);
    padding-top: clamp(64px, 7vw, 92px);
}

.tlt-cta .tlt-section-inner {
    margin-inline: auto;
    max-width: 880px;
}

.tlt-cta .wp-block-columns {
    display: block !important;
    margin: 0 auto !important;
    max-width: 880px;
}

.tlt-cta .wp-block-column {
    margin: 0 !important;
    width: 100% !important;
}

.tlt-cta h2,
.tlt-cta p,
.tlt-cta .wp-block-buttons {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.tlt-cta h2 {
    max-width: 780px;
}

.tlt-cta p {
    max-width: 680px;
}

.tlt-cta .wp-block-buttons {
    justify-content: center;
}

@media (max-width: 781px) {
    .tlt-section {
        padding-bottom: 58px;
        padding-top: 58px;
    }

    .tlt-facts {
        margin-top: 32px;
    }

    .tlt-location li {
        font-size: 1rem;
    }
}

/* Final CTA alignment: direct children of the constrained group */
.tlt-cta > h2,
.tlt-cta > p,
.tlt-cta > .wp-block-buttons {
    box-sizing: border-box;
    margin-left: auto !important;
    margin-right: auto !important;
    width: calc(100% - 40px) !important;
}

.tlt-cta > h2 {
    max-width: 820px !important;
    text-align: center !important;
}

.tlt-cta > p {
    max-width: 680px !important;
    text-align: center !important;
}

.tlt-cta > .wp-block-buttons {
    justify-content: center !important;
    max-width: 680px !important;
}

/* Force the CTA into one centered vertical composition */
.tlt-home .tlt-cta {
    align-items: center !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    text-align: center !important;
}

.tlt-home .tlt-cta > h2 {
    align-self: center !important;
    margin: 0 auto 28px !important;
    max-width: 820px !important;
    text-align: center !important;
    width: calc(100% - 40px) !important;
}

.tlt-home .tlt-cta > p {
    align-self: center !important;
    margin: 0 auto 28px !important;
    max-width: 680px !important;
    text-align: center !important;
    width: calc(100% - 40px) !important;
}

.tlt-home .tlt-cta > .wp-block-buttons {
    align-self: center !important;
    justify-content: center !important;
    margin: 0 auto !important;
    max-width: 680px !important;
    width: calc(100% - 40px) !important;
}

/* Force the CTA into one centered vertical composition */
.tlt-home .tlt-cta {
    align-items: center !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    text-align: center !important;
}

.tlt-home .tlt-cta > h2 {
    align-self: center !important;
    margin: 0 auto 28px !important;
    max-width: 820px !important;
    text-align: center !important;
    width: calc(100% - 40px) !important;
}

.tlt-home .tlt-cta > p {
    align-self: center !important;
    margin: 0 auto 28px !important;
    max-width: 680px !important;
    text-align: center !important;
    width: calc(100% - 40px) !important;
}

.tlt-home .tlt-cta > .wp-block-buttons {
    align-self: center !important;
    justify-content: center !important;
    margin: 0 auto !important;
    max-width: 680px !important;
    width: calc(100% - 40px) !important;
}

/* Final illustrated header-logo sizing */
body.page-id-2003 .site-main-header-inner-wrap,
body.page-id-2004 .site-main-header-inner-wrap {
    min-height: 104px;
}

body.page-id-2003 .site-branding a.brand img,
body.page-id-2004 .site-branding a.brand img {
    max-height: 88px;
    width: auto;
}

@media (max-width: 781px) {
    body.page-id-2003 .site-main-header-inner-wrap,
    body.page-id-2004 .site-main-header-inner-wrap {
        min-height: 86px;
    }

    body.page-id-2003 .site-branding a.brand img,
    body.page-id-2004 .site-branding a.brand img {
        max-height: 70px;
    }
}

/* Controlled EN/ES navigation switcher */
#masthead .primary-menu-container > ul > li.tlt-language-switcher {
    margin-left: 12px;
}

#masthead .primary-menu-container > ul > li.tlt-language-switcher > a {
    align-items: center;
    border: 1px solid rgba(241, 173, 125, 0.72);
    border-radius: 999px;
    color: #f1ad7d !important;
    display: inline-flex;
    font-size: 0.78rem;
    font-weight: 800;
    justify-content: center;
    letter-spacing: 0.12em;
    min-height: 36px;
    padding: 0 13px !important;
}

#masthead .primary-menu-container > ul > li.tlt-language-switcher > a:hover,
#masthead .primary-menu-container > ul > li.tlt-language-switcher > a:focus {
    background: var(--tlt-orange);
    border-color: var(--tlt-orange);
    color: var(--tlt-white) !important;
}

#masthead .mobile-navigation .tlt-language-switcher > a {
    color: var(--tlt-orange) !important;
    font-weight: 800;
    letter-spacing: 0.12em;
}

/* ==========================================================
   Mobile hero and navigation — final overrides
   ========================================================== */
@media (max-width: 781px) {
    /* Keep photograph and copy together as one cinematic hero */
    .tlt-home .tlt-hero {
        align-items: stretch !important;
        display: flex !important;
        height: calc(100vh - 86px) !important;
        height: calc(100svh - 86px) !important;
        max-height: 760px !important;
        min-height: 620px !important;
        padding-top: 0 !important;
        position: relative;
    }

    .tlt-home .tlt-hero .wp-block-cover__image-background {
        height: 100% !important;
        inset: 0 !important;
        max-height: none !important;
        min-height: 0 !important;
        object-fit: cover !important;
        object-position: 46% center !important;
        width: 100% !important;
    }

    .tlt-home .tlt-hero .wp-block-cover__background {
        background: linear-gradient(
            180deg,
            rgba(12, 23, 17, 0.10) 0%,
            rgba(12, 23, 17, 0.25) 35%,
            rgba(12, 23, 17, 0.72) 67%,
            rgba(12, 23, 17, 0.96) 100%
        ) !important;
        height: 100% !important;
        inset: 0 !important;
        width: 100% !important;
    }

    .tlt-home .tlt-hero .wp-block-cover__inner-container {
        align-items: flex-end !important;
        display: flex !important;
        height: 100% !important;
        padding: 30px 20px 38px !important;
    }

    .tlt-home .tlt-hero-content {
        display: block !important;
        min-height: 0 !important;
        padding: 0 !important;
        width: 100% !important;
    }

    .tlt-home .tlt-hero-copy {
        margin: 0 !important;
        max-width: 100% !important;
        transform: none !important;
        width: 100% !important;
    }

    .tlt-home .tlt-hero .tlt-eyebrow {
        font-size: 0.72rem !important;
        line-height: 1.55;
        margin-bottom: 12px !important;
    }

    .tlt-home .tlt-hero h1 {
        font-size: clamp(2.65rem, 12vw, 3.35rem) !important;
        line-height: 0.98 !important;
        margin: 0 0 24px !important;
        max-width: 350px !important;
    }

    .tlt-home .tlt-hero .wp-block-buttons {
        column-gap: 10px !important;
        row-gap: 10px !important;
    }

    .tlt-home .tlt-hero .wp-block-button__link {
        font-size: 0.88rem !important;
        padding: 12px 17px !important;
    }

    /* Mobile navigation colors */
    body.page-id-2003 #mobile-site-navigation a,
    body.page-id-2004 #mobile-site-navigation a {
        color: rgba(255, 255, 255, 0.92) !important;
    }

    body.page-id-2003 #mobile-site-navigation a:hover,
    body.page-id-2003 #mobile-site-navigation a:focus,
    body.page-id-2004 #mobile-site-navigation a:hover,
    body.page-id-2004 #mobile-site-navigation a:focus {
        color: var(--tlt-orange) !important;
    }

    body.page-id-2003 #mobile-site-navigation .tlt-language-switcher,
    body.page-id-2004 #mobile-site-navigation .tlt-language-switcher {
        border-bottom: 0 !important;
        margin-top: 18px !important;
    }

    body.page-id-2003 #mobile-site-navigation .tlt-language-switcher > a,
    body.page-id-2004 #mobile-site-navigation .tlt-language-switcher > a {
        border: 1px solid rgba(241, 173, 125, 0.75) !important;
        border-radius: 999px !important;
        color: #f1ad7d !important;
        display: inline-flex !important;
        font-size: 0.78rem !important;
        font-weight: 800 !important;
        justify-content: center;
        letter-spacing: 0.12em !important;
        min-width: 54px;
        padding: 10px 16px !important;
        width: auto !important;
    }
}

/* Ensure the mobile hero scrim covers the complete photograph */
@media (max-width: 781px) {
    .tlt-home .tlt-hero .wp-block-cover__background {
        max-height: none !important;
        min-height: 0 !important;
    }
}

/* Consistent mobile gutters for homepage content sections */
@media (max-width: 781px) {
    .tlt-home .tlt-section {
        box-sizing: border-box !important;
        padding-left: 20px !important;
        padding-right: 20px !important;
        width: 100% !important;
    }

    .tlt-home .tlt-section > * {
        box-sizing: border-box;
        max-width: 100%;
    }

    .tlt-home .tlt-card {
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
    }
}

/* Refined mobile typography for the Turrialba section */
@media (max-width: 781px) {
    .tlt-home .tlt-location h2 {
        font-size: clamp(2.45rem, 10.5vw, 3rem) !important;
        line-height: 1.08 !important;
    }

    .tlt-home .tlt-location p {
        font-size: 1.08rem !important;
        line-height: 1.7 !important;
        margin-top: 24px !important;
    }

    .tlt-home .tlt-location .wp-block-columns {
        gap: 30px !important;
    }

    .tlt-home .tlt-location li {
        font-size: 1rem !important;
        line-height: 1.5 !important;
        margin-bottom: 14px !important;
    }
}

/* ==========================================================
   Branded Tico Landy footer
   ========================================================== */
#colophon,
#colophon .site-footer-wrap,
#colophon .site-footer-row-container,
#colophon .site-footer-row-container-inner {
    background: var(--tlt-forest-dark) !important;
    border: 0 !important;
}

#colophon .site-bottom-footer-inner-wrap {
    padding: 48px 20px !important;
}

#colophon .site-info,
#colophon .site-info-inner,
#colophon .footer-html {
    width: 100%;
}

.tlt-footer-brand {
    align-items: center;
    color: rgba(255, 255, 255, 0.88);
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.tlt-footer-logo {
    height: auto;
    margin: 0 auto 20px;
    max-width: 190px;
    width: 100%;
}

.tlt-footer-brand p {
    color: rgba(255, 255, 255, 0.82) !important;
    line-height: 1.5;
    margin: 0 !important;
    text-align: center;
}

.tlt-footer-location {
    font-size: 0.95rem;
    font-weight: 650;
    letter-spacing: 0.03em;
}

.tlt-footer-copyright {
    font-size: 0.82rem;
    margin-top: 8px !important;
    opacity: 0.72;
}

@media (max-width: 781px) {
    #colophon .site-bottom-footer-inner-wrap {
        padding: 36px 20px !important;
    }

    .tlt-footer-logo {
        margin-bottom: 16px;
        max-width: 160px;
    }
}

/* =========================================================
   Native bilingual availability form
   ========================================================= */

/* Remove Kadence's standard page wrapper from contact pages. */
body.page-id-2015 .content-area,
body.page-id-2016 .content-area,
body.page-id-2015 .site-main,
body.page-id-2016 .site-main,
body.page-id-2015 article,
body.page-id-2016 article,
body.page-id-2015 .entry-content,
body.page-id-2016 .entry-content {
    margin: 0 !important;
}

body.page-id-2015 .content-container,
body.page-id-2016 .content-container {
    display: block !important;
    max-width: none !important;
    padding: 0 !important;
}

body.page-id-2015 #primary,
body.page-id-2016 #primary {
    float: none !important;
    margin: 0 !important;
    width: 100% !important;
}

body.page-id-2015 .entry-content-wrap,
body.page-id-2016 .entry-content-wrap {
    background: transparent !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
}

body.page-id-2015 .entry-header,
body.page-id-2016 .entry-header {
    display: none !important;
}

/* Match the homepage heritage-green header. */
body.page-id-2015 .site-header-row-container-inner,
body.page-id-2016 .site-header-row-container-inner {
    background: var(--tlt-green, #10271f) !important;
}

body.page-id-2015 .site-main-header-inner-wrap,
body.page-id-2016 .site-main-header-inner-wrap {
    min-height: 104px;
}

body.page-id-2015 .site-branding a.brand img,
body.page-id-2016 .site-branding a.brand img {
    max-height: 88px;
    width: auto;
}

body.page-id-2015 #masthead .primary-menu-container > ul > li > a,
body.page-id-2016 #masthead .primary-menu-container > ul > li > a {
    color: var(--tlt-white, #fffaf2) !important;
}

body.page-id-2015 #masthead .primary-menu-container > ul > li > a:hover,
body.page-id-2016 #masthead .primary-menu-container > ul > li > a:hover {
    color: var(--tlt-orange, #d7662b) !important;
}

/* Contact-page hero. */
.tlt-contact-page {
    background: var(--tlt-cream, #fbf5eb);
    color: var(--tlt-green, #10271f);
}

.tlt-contact-hero {
    background:
        radial-gradient(
            circle at 82% 20%,
            rgba(215, 102, 43, 0.20),
            transparent 34%
        ),
        linear-gradient(
            135deg,
            #10271f 0%,
            #19382c 100%
        );
    color: var(--tlt-white, #fffaf2);
    padding: 108px 28px 104px;
}

.tlt-contact-hero > * {
    margin-left: auto !important;
    margin-right: auto !important;
    max-width: 1120px;
    width: 100%;
}

.tlt-contact-hero .tlt-eyebrow {
    color: #f1ad7d;
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.17em;
    margin-bottom: 26px;
    text-transform: uppercase;
}

.tlt-contact-hero h1 {
    color: var(--tlt-white, #fffaf2);
    font-size: clamp(3.4rem, 7vw, 6.4rem);
    line-height: 0.98;
    margin: 0;
    max-width: 900px;
}

.tlt-contact-hero .tlt-contact-intro {
    color: rgba(255, 250, 242, 0.86);
    font-size: 1.24rem;
    line-height: 1.75;
    margin: 34px 0 0;
    max-width: 760px;
}

/* Main contact layout. */
.tlt-contact-content {
    background: var(--tlt-cream, #fbf5eb);
    padding: 92px 28px 110px;
}

.tlt-contact-content > * {
    margin-left: auto !important;
    margin-right: auto !important;
    max-width: 1120px;
    width: 100%;
}

.tlt-contact-columns {
    align-items: flex-start !important;
    gap: clamp(42px, 6vw, 76px) !important;
}

.tlt-contact-details {
    padding-top: 18px;
}

.tlt-contact-details h2,
.tlt-contact-form-card > h2 {
    color: var(--tlt-green, #10271f);
    font-size: clamp(2.25rem, 4vw, 3.35rem);
    line-height: 1.08;
    margin: 0 0 28px;
}

.tlt-contact-details > p {
    font-size: 1.06rem;
    line-height: 1.75;
}

.tlt-contact-details ul {
    list-style: none;
    margin: 32px 0 42px;
    padding: 0;
}

.tlt-contact-details li {
    line-height: 1.5;
    margin: 0 0 17px;
    padding-left: 32px;
    position: relative;
}

.tlt-contact-details li::before {
    color: var(--tlt-orange, #d7662b);
    content: "✓";
    font-weight: 900;
    left: 0;
    position: absolute;
    top: 0;
}

.tlt-contact-details .tlt-contact-email-label {
    color: var(--tlt-orange-dark, #a9451c);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.tlt-contact-details .tlt-contact-email {
    font-size: 1.06rem;
    font-weight: 800;
    margin-top: 0;
    overflow-wrap: anywhere;
}

.tlt-contact-details .tlt-contact-email a {
    color: var(--tlt-green, #10271f);
}

.tlt-contact-details .tlt-contact-email a:hover {
    color: var(--tlt-orange, #d7662b);
}

.tlt-contact-details .tlt-contact-note {
    border-left: 3px solid var(--tlt-orange, #d7662b);
    color: #526158;
    font-size: 0.93rem;
    line-height: 1.65;
    margin-top: 32px;
    padding-left: 18px;
}

/* Form card. */
.tlt-contact-form-card {
    background: #ffffff;
    border: 1px solid rgba(16, 39, 31, 0.09);
    border-radius: 24px;
    box-shadow: 0 24px 70px rgba(16, 39, 31, 0.12);
    padding: clamp(30px, 5vw, 52px);
}

.tlt-contact-form-card > h2 {
    font-size: clamp(2rem, 3.3vw, 2.8rem);
}

.tlt-form-required-note {
    color: #66746b;
    font-size: 0.85rem;
    margin: -12px 0 28px;
}

.tlt-form-grid {
    display: grid;
    gap: 22px 20px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tlt-availability-form p {
    margin-bottom: 24px;
}

.tlt-form-field label {
    color: var(--tlt-green, #10271f);
    display: block;
    font-size: 0.9rem;
    font-weight: 800;
    margin-bottom: 9px;
}

.tlt-form-field input,
.tlt-form-field select,
.tlt-form-field textarea {
    background: #fffdf9;
    border: 1px solid #c8d0ca;
    border-radius: 10px;
    box-shadow: none;
    box-sizing: border-box;
    color: var(--tlt-green, #10271f);
    font-family: inherit;
    font-size: 16px;
    line-height: 1.4;
    padding: 13px 14px;
    transition:
        border-color 160ms ease,
        box-shadow 160ms ease;
    width: 100%;
}

.tlt-form-field input,
.tlt-form-field select {
    min-height: 52px;
}

.tlt-form-field textarea {
    min-height: 150px;
    resize: vertical;
}

.tlt-form-field input:focus,
.tlt-form-field select:focus,
.tlt-form-field textarea:focus {
    border-color: var(--tlt-orange, #d7662b);
    box-shadow: 0 0 0 3px rgba(215, 102, 43, 0.15);
    outline: none;
}

.tlt-form-field small {
    color: #69766f;
    display: block;
    font-size: 0.78rem;
    line-height: 1.45;
    margin-top: 7px;
}

.tlt-form-consent label {
    align-items: flex-start;
    color: #44554b;
    cursor: pointer;
    display: flex;
    font-size: 0.91rem;
    gap: 12px;
    line-height: 1.55;
}

.tlt-form-consent input {
    accent-color: var(--tlt-orange, #d7662b);
    flex: 0 0 auto;
    height: 19px;
    margin-top: 2px;
    width: 19px;
}

.tlt-form-honeypot {
    height: 1px !important;
    left: -10000px !important;
    overflow: hidden !important;
    position: absolute !important;
    top: auto !important;
    width: 1px !important;
}

.tlt-form-submit {
    background: var(--tlt-orange, #d7662b) !important;
    border: 2px solid var(--tlt-orange, #d7662b) !important;
    border-radius: 999px !important;
    color: #ffffff !important;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 800;
    min-height: 54px;
    padding: 13px 28px !important;
    transition:
        background 160ms ease,
        border-color 160ms ease,
        transform 160ms ease;
}

.tlt-form-submit:hover,
.tlt-form-submit:focus {
    background: var(--tlt-green, #10271f) !important;
    border-color: var(--tlt-green, #10271f) !important;
    transform: translateY(-1px);
}

.tlt-form-status {
    border-radius: 12px;
    font-weight: 700;
    line-height: 1.55;
    margin-bottom: 28px;
    padding: 18px 20px;
}

.tlt-form-status ul {
    margin: 0;
    padding-left: 20px;
}

.tlt-form-success {
    background: #e4f2e9;
    border: 1px solid #90bea0;
    color: #173f25;
}

.tlt-form-error {
    background: #fff0e8;
    border: 1px solid #df9a76;
    color: #783314;
}

/* Contact-page mobile layout. */
@media (max-width: 781px) {
    body.page-id-2015 .site-main-header-inner-wrap,
    body.page-id-2016 .site-main-header-inner-wrap {
        min-height: 86px;
    }

    body.page-id-2015 .site-branding a.brand img,
    body.page-id-2016 .site-branding a.brand img {
        max-height: 70px;
    }

    .tlt-contact-hero {
        padding: 72px 24px 70px;
    }

    .tlt-contact-hero .tlt-eyebrow {
        font-size: 0.76rem;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    .tlt-contact-hero h1 {
        font-size: clamp(2.75rem, 13vw, 4rem);
        line-height: 1.02;
    }

    .tlt-contact-hero .tlt-contact-intro {
        font-size: 1.04rem;
        line-height: 1.65;
        margin-top: 26px;
    }

    .tlt-contact-content {
        padding: 64px 22px 82px;
    }

    .tlt-contact-columns {
        gap: 52px !important;
    }

    .tlt-contact-details {
        padding-top: 0;
    }

    .tlt-contact-details h2 {
        font-size: 2.55rem;
    }

    .tlt-contact-form-card {
        border-radius: 18px;
        padding: 30px 22px 34px;
    }

    .tlt-contact-form-card > h2 {
        font-size: 2.25rem;
    }

    .tlt-form-grid {
        display: block;
    }

    .tlt-form-submit {
        width: 100%;
    }
}

/* Final contact-page header and mobile gutter correction */
body.page-id-2015 .site-title,
body.page-id-2016 .site-title,
body.page-id-2015 .site-description,
body.page-id-2016 .site-description {
    display: none !important;
}

@media (max-width: 781px) {
    body.page-id-2015 .site-main-header-inner-wrap,
    body.page-id-2016 .site-main-header-inner-wrap {
        min-height: 86px !important;
    }

    body.page-id-2015 .site-branding,
    body.page-id-2016 .site-branding {
        padding: 0 !important;
    }

    .tlt-contact-hero > *,
    .tlt-contact-content > * {
        margin-left: 0 !important;
        margin-right: 0 !important;
        max-width: none !important;
        width: auto !important;
    }

    .tlt-contact-hero {
        box-sizing: border-box;
        padding-left: 24px !important;
        padding-right: 24px !important;
    }

    .tlt-contact-content {
        box-sizing: border-box;
        padding-left: 22px !important;
        padding-right: 22px !important;
    }

    .tlt-contact-hero h1 {
        font-size: clamp(2.65rem, 11.5vw, 3.45rem);
    }
}

/* Final mobile form-field spacing */
@media (max-width: 781px) {
    .tlt-availability-form .tlt-form-grid {
        margin-bottom: 30px !important;
    }
}

/* Tours pages — version 0.4.5 */
body.page-id-2005,
body.page-id-2006 {
    --tlt-tour-cream: #f8f2e8;
    --tlt-tour-green: #0d2c21;
    --tlt-tour-green-light: #183c2e;
    --tlt-tour-orange: #cf6028;
    --tlt-tour-ink: #102d25;
    --tlt-tour-muted: #59675f;
}

body.page-id-2005 .site-title-wrap,
body.page-id-2006 .site-title-wrap,
body.page-id-2005 .entry-header,
body.page-id-2006 .entry-header {
    display: none !important;
}

body.page-id-2005 #primary,
body.page-id-2006 #primary,
body.page-id-2005 .content-area,
body.page-id-2006 .content-area,
body.page-id-2005 .site-main,
body.page-id-2006 .site-main {
    margin: 0 !important;
    padding: 0 !important;
}

body.page-id-2005 .content-container,
body.page-id-2006 .content-container {
    max-width: none !important;
    padding: 0 !important;
}

body.page-id-2005 article.entry,
body.page-id-2006 article.entry,
body.page-id-2005 .entry-content-wrap,
body.page-id-2006 .entry-content-wrap {
    margin: 0 !important;
    padding: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    background: transparent !important;
}

body.page-id-2005 .entry-content,
body.page-id-2006 .entry-content,
.tlt-tours-page {
    margin: 0 !important;
    overflow: hidden;
}

.tlt-tours-page .wp-block-group,
.tlt-tours-page .wp-block-cover {
    box-sizing: border-box;
}

.tlt-tours-hero {
    min-height: clamp(650px, 78vh, 840px);
    display: flex;
    align-items: flex-end;
    padding: 110px max(40px, calc((100vw - 1180px) / 2)) 100px !important;
    color: #fff;
}

.tlt-tours-hero::before {
    background: linear-gradient(
        180deg,
        rgba(5, 18, 14, 0.12) 15%,
        rgba(5, 18, 14, 0.45) 55%,
        rgba(5, 18, 14, 0.92) 100%
    ) !important;
    opacity: 1 !important;
}

.tlt-tours-hero .wp-block-cover__inner-container {
    width: min(1180px, 100%);
    margin: 0 auto;
}

.tlt-tours-hero h1 {
    max-width: 850px;
    margin: 18px 0 24px !important;
    color: #fff !important;
    font-size: clamp(4rem, 7vw, 7rem) !important;
    line-height: 0.94 !important;
    letter-spacing: -0.045em;
}

.tlt-tours-hero p {
    max-width: 680px;
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 1.2rem !important;
    line-height: 1.7 !important;
}

.tlt-tours-page .tlt-kicker,
.tlt-tours-page .tlt-eyebrow {
    color: #ef9668 !important;
    font-size: 0.92rem !important;
    font-weight: 800 !important;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.tlt-tours-intro {
    padding: 105px max(40px, calc((100vw - 950px) / 2)) !important;
    background: var(--tlt-tour-cream);
    text-align: center;
}

.tlt-tours-intro h2,
.tlt-tour-options > h2 {
    color: var(--tlt-tour-ink) !important;
    font-size: clamp(2.8rem, 5vw, 4.8rem) !important;
    line-height: 1.05 !important;
    letter-spacing: -0.035em;
}

.tlt-tours-intro p {
    max-width: 760px;
    margin-right: auto !important;
    margin-left: auto !important;
    color: var(--tlt-tour-muted);
    font-size: 1.15rem !important;
    line-height: 1.75 !important;
}

.tlt-tour-options {
    padding: 105px max(40px, calc((100vw - 1180px) / 2)) 120px !important;
    background: #fff;
}

.tlt-tour-options > h2 {
    max-width: 760px;
    margin: 0 auto 58px !important;
    text-align: center;
}

.tlt-tour-card-grid {
    align-items: stretch !important;
    gap: 34px !important;
}

.tlt-tour-card-grid > .wp-block-column {
    display: flex;
}

.tlt-tour-card {
    width: 100%;
    overflow: hidden;
    border: 1px solid rgba(16, 45, 37, 0.11);
    border-radius: 24px;
    background: var(--tlt-tour-cream);
    box-shadow: 0 22px 60px rgba(13, 44, 33, 0.11);
}

.tlt-tour-card figure {
    margin: 0 !important;
}

.tlt-tour-card figure img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.tlt-tour-card > .wp-block-group {
    padding: 42px 42px 46px !important;
}

.tlt-tour-card h3 {
    margin: 10px 0 20px !important;
    color: var(--tlt-tour-ink) !important;
    font-size: clamp(2rem, 3vw, 3rem) !important;
    line-height: 1.08 !important;
}

.tlt-tour-card p,
.tlt-tour-card li {
    color: var(--tlt-tour-muted);
    font-size: 1.05rem !important;
    line-height: 1.7 !important;
}

.tlt-tour-card ul {
    margin: 26px 0 32px !important;
    padding-left: 1.2rem !important;
}

.tlt-tour-card li {
    margin-bottom: 10px;
}

.tlt-tours-page .wp-block-button__link {
    border-radius: 999px !important;
    padding: 15px 26px !important;
    font-size: 1rem !important;
    font-weight: 750 !important;
}

.tlt-tour-card .wp-block-button__link,
.tlt-tours-cta .wp-block-button__link {
    border: 2px solid var(--tlt-tour-orange) !important;
    background: var(--tlt-tour-orange) !important;
    color: #fff !important;
}

.tlt-tour-card .wp-block-button__link:hover,
.tlt-tours-cta .wp-block-button__link:hover {
    border-color: var(--tlt-tour-green) !important;
    background: var(--tlt-tour-green) !important;
    color: #fff !important;
}

.tlt-tours-included {
    padding: 115px max(40px, calc((100vw - 1180px) / 2)) !important;
    background: var(--tlt-tour-green);
    color: #fff;
}

.tlt-tours-included .wp-block-columns {
    align-items: center !important;
    gap: clamp(48px, 7vw, 100px) !important;
}

.tlt-tours-included figure,
.tlt-tours-included img {
    border-radius: 22px;
}

.tlt-tours-included img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.tlt-tours-included h2 {
    color: #fff !important;
    font-size: clamp(2.8rem, 4.5vw, 4.5rem) !important;
    line-height: 1.05 !important;
}

.tlt-tours-included p,
.tlt-tours-included li {
    color: rgba(255, 255, 255, 0.82) !important;
    font-size: 1.08rem !important;
    line-height: 1.7 !important;
}

.tlt-tours-included li {
    margin-bottom: 12px;
}

.tlt-tours-cta {
    padding: 105px max(40px, calc((100vw - 900px) / 2)) !important;
    background: var(--tlt-tour-orange);
    color: #fff;
    text-align: center;
}

.tlt-tours-cta h2 {
    color: #fff !important;
    font-size: clamp(3rem, 5.5vw, 5.5rem) !important;
    line-height: 1 !important;
}

.tlt-tours-cta p {
    max-width: 700px;
    margin-right: auto !important;
    margin-left: auto !important;
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 1.15rem !important;
    line-height: 1.7 !important;
}

.tlt-tours-cta .wp-block-button__link {
    border-color: var(--tlt-tour-green) !important;
    background: var(--tlt-tour-green) !important;
}

.tlt-tours-cta .wp-block-button__link:hover {
    border-color: #fff !important;
    background: #fff !important;
    color: var(--tlt-tour-green) !important;
}

@media (max-width: 781px) {
    body.page-id-2005,
    body.page-id-2006 {
        overflow-x: hidden;
    }

    .tlt-tours-hero {
        min-height: 650px;
        padding: 80px 24px 58px !important;
    }

    .tlt-tours-hero h1 {
        margin-top: 14px !important;
        font-size: clamp(3rem, 14vw, 4.2rem) !important;
        line-height: 0.98 !important;
    }

    .tlt-tours-hero p {
        font-size: 1.04rem !important;
        line-height: 1.65 !important;
    }

    .tlt-tours-intro,
    .tlt-tour-options,
    .tlt-tours-included,
    .tlt-tours-cta {
        width: 100% !important;
        margin-right: 0 !important;
        margin-left: 0 !important;
        box-sizing: border-box;
    }

    .tlt-tours-intro {
        padding: 72px 24px !important;
    }

    .tlt-tour-options {
        padding: 74px 24px 82px !important;
    }

    .tlt-tours-intro h2,
    .tlt-tour-options > h2,
    .tlt-tours-included h2 {
        font-size: clamp(2.45rem, 11.5vw, 3.25rem) !important;
        line-height: 1.07 !important;
    }

    .tlt-tour-options > h2 {
        margin-bottom: 38px !important;
    }

    .tlt-tour-card-grid {
        display: block !important;
    }

    .tlt-tour-card-grid > .wp-block-column {
        display: block !important;
        width: 100% !important;
        margin: 0 0 30px !important;
    }

    .tlt-tour-card {
        border-radius: 18px;
    }

    .tlt-tour-card > .wp-block-group {
        padding: 30px 25px 34px !important;
    }

    .tlt-tour-card h3 {
        font-size: 2.2rem !important;
    }

    .tlt-tours-included {
        padding: 78px 24px 84px !important;
    }

    .tlt-tours-included .wp-block-columns {
        display: flex !important;
        flex-direction: column !important;
        gap: 38px !important;
    }

    .tlt-tours-included .wp-block-column {
        width: 100% !important;
        margin: 0 !important;
    }

    .tlt-tours-included figure,
    .tlt-tours-included img {
        border-radius: 16px;
    }

    .tlt-tours-cta {
        padding: 78px 24px 84px !important;
    }

    .tlt-tours-cta h2 {
        font-size: clamp(2.7rem, 12vw, 3.7rem) !important;
        line-height: 1.04 !important;
    }

    .tlt-tours-cta .wp-block-button,
    .tlt-tours-cta .wp-block-button__link {
        width: 100%;
        box-sizing: border-box;
    }
}

/* Tours structural corrections — version 0.4.6 */

/* Branded header on the dedicated Tours pages */
body.page-id-2005 #masthead,
body.page-id-2006 #masthead,
body.page-id-2005 .site-main-header-wrap,
body.page-id-2006 .site-main-header-wrap,
body.page-id-2005 .site-header-row-container-inner,
body.page-id-2006 .site-header-row-container-inner {
    background: #0d2c21 !important;
}

body.page-id-2005 .site-header-row,
body.page-id-2006 .site-header-row {
    min-height: 108px;
}

body.page-id-2005 .custom-logo,
body.page-id-2006 .custom-logo {
    width: auto !important;
    max-width: 245px !important;
    max-height: 92px !important;
}

body.page-id-2005 .mobile-toggle-open-container .menu-toggle,
body.page-id-2006 .mobile-toggle-open-container .menu-toggle {
    color: rgba(255, 255, 255, 0.72) !important;
}

/* Actual hero structure: separate image and content groups */
body.page-id-2005 .tlt-tours-hero,
body.page-id-2006 .tlt-tours-hero {
    position: relative !important;
    display: flex !important;
    align-items: flex-end !important;
    width: 100% !important;
    min-height: clamp(650px, 78vh, 840px) !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden;
    isolation: isolate;
    background: #0d2c21;
}

body.page-id-2005 .tlt-tours-hero::before,
body.page-id-2006 .tlt-tours-hero::before {
    content: "";
    position: absolute;
    z-index: 1;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(5, 18, 14, 0.08) 10%,
        rgba(5, 18, 14, 0.36) 47%,
        rgba(5, 18, 14, 0.94) 100%
    ) !important;
    pointer-events: none;
}

body.page-id-2005 .tlt-tours-hero-image,
body.page-id-2006 .tlt-tours-hero-image {
    position: absolute !important;
    z-index: 0;
    inset: 0;
    width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
}

body.page-id-2005 .tlt-tours-hero-image img,
body.page-id-2006 .tlt-tours-hero-image img {
    display: block;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    object-fit: cover;
    object-position: center;
}

body.page-id-2005 .tlt-tours-hero-content,
body.page-id-2006 .tlt-tours-hero-content {
    position: relative;
    z-index: 2;
    width: min(1180px, 100%) !important;
    max-width: none !important;
    margin: 0 auto !important;
    padding: 120px 40px 94px !important;
    box-sizing: border-box;
}

body.page-id-2005 .tlt-tours-hero-content > *,
body.page-id-2006 .tlt-tours-hero-content > * {
    margin-right: 0 !important;
    margin-left: 0 !important;
}

body.page-id-2005 .tlt-tours-hero-content h1,
body.page-id-2006 .tlt-tours-hero-content h1 {
    max-width: 850px;
    color: #fff !important;
    text-shadow: 0 3px 22px rgba(0, 0, 0, 0.28);
}

body.page-id-2005 .tlt-tours-hero-content > p:not(.tlt-eyebrow),
body.page-id-2006 .tlt-tours-hero-content > p:not(.tlt-eyebrow) {
    max-width: 690px;
    color: rgba(255, 255, 255, 0.9) !important;
}

body.page-id-2005 .tlt-tours-hero .tlt-eyebrow,
body.page-id-2006 .tlt-tours-hero .tlt-eyebrow {
    color: #f5a278 !important;
}

body.page-id-2005 .tlt-tours-hero .wp-block-button__link,
body.page-id-2006 .tlt-tours-hero .wp-block-button__link {
    border: 2px solid #cf6028 !important;
    background: #cf6028 !important;
    color: #fff !important;
}

body.page-id-2005 .tlt-tours-hero .wp-block-button__link:hover,
body.page-id-2006 .tlt-tours-hero .wp-block-button__link:hover {
    border-color: #fff !important;
    background: #fff !important;
    color: #0d2c21 !important;
}

/* Keep the two tour cards vertical and equal-height */
body.page-id-2005 .tlt-tour-card,
body.page-id-2006 .tlt-tour-card {
    flex-direction: column !important;
}

body.page-id-2005 .tlt-tour-card-body,
body.page-id-2006 .tlt-tour-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
}

body.page-id-2005 .tlt-tour-card-body .wp-block-buttons,
body.page-id-2006 .tlt-tour-card-body .wp-block-buttons {
    margin-top: auto !important;
    padding-top: 12px;
}

body.page-id-2005 .tlt-tour-card .is-style-outline .wp-block-button__link,
body.page-id-2006 .tlt-tour-card .is-style-outline .wp-block-button__link {
    border-color: #0d2c21 !important;
    background: transparent !important;
    color: #0d2c21 !important;
}

body.page-id-2005 .tlt-tour-card .is-style-outline .wp-block-button__link:hover,
body.page-id-2006 .tlt-tour-card .is-style-outline .wp-block-button__link:hover {
    background: #0d2c21 !important;
    color: #fff !important;
}

/* Restore the homepage availability CTA color */
.tlt-home .tlt-cta .wp-block-button__link {
    border-color: #0d2c21 !important;
    background: #0d2c21 !important;
    color: #fff !important;
}

.tlt-home .tlt-cta .wp-block-button__link:hover,
.tlt-home .tlt-cta .wp-block-button__link:focus {
    border-color: #fff !important;
    background: #fff !important;
    color: #0d2c21 !important;
}

@media (max-width: 781px) {
    body.page-id-2005 .site-header-row,
    body.page-id-2006 .site-header-row {
        min-height: 112px;
    }

    body.page-id-2005 .custom-logo,
    body.page-id-2006 .custom-logo {
        max-width: 220px !important;
        max-height: 86px !important;
    }

    body.page-id-2005 .tlt-tours-hero,
    body.page-id-2006 .tlt-tours-hero {
        min-height: 680px !important;
    }

    body.page-id-2005 .tlt-tours-hero-image img,
    body.page-id-2006 .tlt-tours-hero-image img {
        object-position: 55% center;
    }

    body.page-id-2005 .tlt-tours-hero-content,
    body.page-id-2006 .tlt-tours-hero-content {
        width: 100% !important;
        padding: 100px 24px 58px !important;
    }

    body.page-id-2005 .tlt-tours-hero-content h1,
    body.page-id-2006 .tlt-tours-hero-content h1 {
        margin: 15px 0 22px !important;
        font-size: clamp(3rem, 13vw, 4rem) !important;
        line-height: 0.98 !important;
    }

    body.page-id-2005 .tlt-tours-hero-content > p:not(.tlt-eyebrow),
    body.page-id-2006 .tlt-tours-hero-content > p:not(.tlt-eyebrow) {
        font-size: 1.04rem !important;
        line-height: 1.65 !important;
    }

    body.page-id-2005 .tlt-tours-hero .wp-block-buttons,
    body.page-id-2006 .tlt-tours-hero .wp-block-buttons,
    body.page-id-2005 .tlt-tours-hero .wp-block-button,
    body.page-id-2006 .tlt-tours-hero .wp-block-button {
        width: 100%;
    }

    body.page-id-2005 .tlt-tours-hero .wp-block-button__link,
    body.page-id-2006 .tlt-tours-hero .wp-block-button__link {
        width: 100%;
        box-sizing: border-box;
        text-align: center;
    }
}

/* Tours section-gap corrections — version 0.4.7 */
body.page-id-2005 .tlt-tours-page > .wp-block-group,
body.page-id-2006 .tlt-tours-page > .wp-block-group {
    margin-block-start: 0 !important;
    margin-block-end: 0 !important;
}

body.page-id-2005 .tlt-tour-options + .tlt-tours-included,
body.page-id-2006 .tlt-tour-options + .tlt-tours-included,
body.page-id-2005 .tlt-tours-included + .tlt-tours-cta,
body.page-id-2006 .tlt-tours-included + .tlt-tours-cta {
    margin-top: 0 !important;
}

@media (max-width: 781px) {
    body.page-id-2005 .tlt-tour-options,
    body.page-id-2006 .tlt-tour-options {
        padding-bottom: 54px !important;
    }

    body.page-id-2005 .tlt-tour-card-grid > .wp-block-column:last-child,
    body.page-id-2006 .tlt-tour-card-grid > .wp-block-column:last-child {
        margin-bottom: 0 !important;
    }
}

/* Tours parent layout-gap correction — version 0.4.8 */
body.page-id-2005 .tlt-tours-page,
body.page-id-2006 .tlt-tours-page {
    gap: 0 !important;
    row-gap: 0 !important;
}

body.page-id-2005 .tlt-tours-page > *,
body.page-id-2006 .tlt-tours-page > * {
    margin-block-start: 0 !important;
    margin-block-end: 0 !important;
}

/* Kadence Tours inner-wrapper correction — version 0.4.9 */
body.page-id-2005 .tlt-tours-page > .wp-block-group__inner-container,
body.page-id-2006 .tlt-tours-page > .wp-block-group__inner-container {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    gap: 0 !important;
    row-gap: 0 !important;
}

body.page-id-2005 .tlt-tours-page > .wp-block-group__inner-container > *,
body.page-id-2006 .tlt-tours-page > .wp-block-group__inner-container > * {
    margin-block-start: 0 !important;
    margin-block-end: 0 !important;
}

/* Tours desktop navigation contrast — version 0.5.0 */
@media (min-width: 782px) {
    body.page-id-2005 .main-navigation .primary-menu-container > ul > li.menu-item > a,
    body.page-id-2006 .main-navigation .primary-menu-container > ul > li.menu-item > a {
        color: rgba(255, 255, 255, 0.9) !important;
    }

    body.page-id-2005 .main-navigation .primary-menu-container > ul > li.menu-item > a:hover,
    body.page-id-2005 .main-navigation .primary-menu-container > ul > li.menu-item > a:focus,
    body.page-id-2006 .main-navigation .primary-menu-container > ul > li.menu-item > a:hover,
    body.page-id-2006 .main-navigation .primary-menu-container > ul > li.menu-item > a:focus,
    body.page-id-2005 .main-navigation .primary-menu-container > ul > li.current-menu-item > a,
    body.page-id-2006 .main-navigation .primary-menu-container > ul > li.current-menu-item > a {
        color: #f5a278 !important;
    }

    body.page-id-2005 .main-navigation li.tlt-language-switcher > a,
    body.page-id-2006 .main-navigation li.tlt-language-switcher > a {
        color: #f5a278 !important;
    }
}

/* Story pages — version 0.5.1 */
body.page-id-2009 .site-title-wrap,
body.page-id-2010 .site-title-wrap,
body.page-id-2009 .entry-header,
body.page-id-2010 .entry-header {
    display: none;
}

body.page-id-2009 .content-area,
body.page-id-2010 .content-area,
body.page-id-2009 .site-main,
body.page-id-2010 .site-main {
    margin: 0;
    padding: 0;
}

body.page-id-2009 .content-container.site-container,
body.page-id-2010 .content-container.site-container {
    width: 100%;
    max-width: none;
    padding: 0;
}

body.page-id-2009 .entry-content-wrap,
body.page-id-2010 .entry-content-wrap {
    margin: 0;
    padding: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

body.page-id-2009 .entry-content,
body.page-id-2010 .entry-content {
    margin: 0;
}

.tlt-story-page,
.tlt-story-page > .wp-block-group__inner-container {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
    gap: 0;
    row-gap: 0;
}

.tlt-story-page > .wp-block-group__inner-container > * {
    margin-top: 0;
    margin-bottom: 0;
}

.tlt-story-page h1,
.tlt-story-page h2,
.tlt-story-page h3,
.tlt-story-page p,
.tlt-story-page figure {
    margin-top: 0;
}

.tlt-story-page .tlt-eyebrow {
    margin-bottom: 28px;
    color: #f39464;
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    line-height: 1.5;
    text-transform: uppercase;
}

/* Story hero */
.tlt-story-hero {
    position: relative;
    min-height: clamp(680px, 82vh, 900px);
    overflow: hidden;
    color: #fffaf1;
    background: #07382f;
}

.tlt-story-hero > .wp-block-group__inner-container {
    position: relative;
    display: flex;
    align-items: flex-end;
    width: 100%;
    max-width: none;
    min-height: inherit;
    margin: 0;
    padding: 0;
}

.tlt-story-hero::after {
    position: absolute;
    z-index: 1;
    inset: 0;
    content: "";
    background:
        linear-gradient(
            90deg,
            rgba(3, 31, 26, 0.92) 0%,
            rgba(3, 31, 26, 0.70) 42%,
            rgba(3, 31, 26, 0.18) 76%
        ),
        linear-gradient(
            0deg,
            rgba(3, 31, 26, 0.72) 0%,
            rgba(3, 31, 26, 0) 55%
        );
    pointer-events: none;
}

.tlt-story-hero-image,
.tlt-story-hero-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.tlt-story-hero-image {
    margin: 0;
}

.tlt-story-hero-image img {
    object-fit: cover;
    object-position: center;
}

.tlt-story-hero-content {
    position: relative;
    z-index: 2;
    width: min(100% - 80px, 1200px);
    max-width: none;
    margin: 0 auto;
    padding: clamp(90px, 12vw, 170px) 0;
}

.tlt-story-hero-content > .wp-block-group__inner-container {
    width: min(720px, 100%);
    max-width: none;
    margin: 0;
    padding: 0;
}

.tlt-story-hero h1 {
    max-width: 820px;
    margin-bottom: 30px;
    color: #fffaf1;
    font-size: clamp(3.6rem, 6.4vw, 6.8rem);
    font-weight: 800;
    letter-spacing: -0.055em;
    line-height: 0.94;
}

.tlt-story-hero-content > .wp-block-group__inner-container > p:not(.tlt-eyebrow) {
    max-width: 680px;
    margin-bottom: 0;
    color: #fffaf1;
    font-size: clamp(1.15rem, 1.7vw, 1.45rem);
    line-height: 1.75;
}

/* Shared Story sections */
.tlt-story-origin,
.tlt-story-values,
.tlt-story-place,
.tlt-story-legacy,
.tlt-story-cta {
    width: 100%;
    margin: 0;
}

.tlt-story-origin > .wp-block-group__inner-container,
.tlt-story-values > .wp-block-group__inner-container,
.tlt-story-place > .wp-block-group__inner-container,
.tlt-story-legacy > .wp-block-group__inner-container,
.tlt-story-cta > .wp-block-group__inner-container {
    width: min(100% - 80px, 1200px);
    max-width: none;
    margin: 0 auto;
    padding: clamp(90px, 10vw, 150px) 0;
}

.tlt-story-page .wp-block-columns {
    align-items: center;
    gap: clamp(50px, 8vw, 110px);
    margin: 0;
}

.tlt-story-page .wp-block-column {
    margin: 0;
}

.tlt-story-page h2 {
    margin-bottom: 30px;
    color: #06372e;
    font-size: clamp(2.8rem, 5vw, 5.1rem);
    font-weight: 800;
    letter-spacing: -0.045em;
    line-height: 1;
}

.tlt-story-page h3 {
    margin-bottom: 18px;
    color: #06372e;
    font-size: clamp(1.65rem, 2.5vw, 2.35rem);
    font-weight: 800;
    line-height: 1.12;
}

.tlt-story-page p {
    color: #526760;
    font-size: clamp(1.05rem, 1.35vw, 1.22rem);
    line-height: 1.8;
}

.tlt-story-page figure img {
    display: block;
    width: 100%;
    border-radius: 28px;
    object-fit: cover;
}

/* Family origin */
.tlt-story-origin {
    background: #fff8ed;
}

.tlt-story-origin figure img {
    aspect-ratio: 4 / 3;
    box-shadow: 0 24px 60px rgba(3, 55, 46, 0.13);
}

.tlt-story-origin-copy p + p {
    margin-top: 22px;
}

/* Values */
.tlt-story-values {
    color: #fffaf1;
    background: #07382f;
}

.tlt-story-values > .wp-block-group__inner-container {
    text-align: center;
}

.tlt-story-values h2 {
    max-width: 900px;
    margin-right: auto;
    margin-left: auto;
    color: #fffaf1;
}

.tlt-story-value-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
    margin-top: 58px;
}

.tlt-story-value-grid > .wp-block-group__inner-container {
    display: contents;
}

.tlt-story-value {
    height: 100%;
    padding: 38px 32px;
    border: 1px solid rgba(255, 250, 241, 0.16);
    border-radius: 24px;
    text-align: left;
    background: rgba(255, 250, 241, 0.07);
}

.tlt-story-value > .wp-block-group__inner-container {
    margin: 0;
    padding: 0;
}

.tlt-story-value h3 {
    color: #fffaf1;
}

.tlt-story-value p {
    margin-bottom: 0;
    color: rgba(255, 250, 241, 0.82);
}

/* Turrialba mountains */
.tlt-story-place {
    background: #f2f7f7;
}

.tlt-story-place figure img {
    aspect-ratio: 4 / 3;
    box-shadow: 0 24px 60px rgba(3, 55, 46, 0.12);
}

.tlt-story-place-copy p + p {
    margin-top: 22px;
}

/* Land Rover legacy */
.tlt-story-legacy {
    color: #fffaf1;
    background: #07382f;
}

.tlt-story-legacy h2,
.tlt-story-legacy h3 {
    color: #fffaf1;
}

.tlt-story-legacy p {
    color: rgba(255, 250, 241, 0.84);
}

.tlt-story-legacy figure img {
    aspect-ratio: 4 / 3;
}

.tlt-story-legacy-copy p + p {
    margin-top: 22px;
}

/* Story CTA */
.tlt-story-cta {
    color: #fffaf1;
    text-align: center;
    background: #d76327;
}

.tlt-story-cta > .wp-block-group__inner-container {
    width: min(100% - 80px, 940px);
}

.tlt-story-cta h2 {
    max-width: 850px;
    margin-right: auto;
    margin-left: auto;
    color: #fffaf1;
}

.tlt-story-cta p {
    max-width: 720px;
    margin-right: auto;
    margin-bottom: 38px;
    margin-left: auto;
    color: #fffaf1;
}

.tlt-story-cta .wp-block-buttons {
    justify-content: center;
    gap: 16px;
}

.tlt-story-cta .wp-block-button__link {
    min-width: 220px;
    padding: 18px 30px;
    border: 2px solid #07382f;
    border-radius: 999px;
    color: #fffaf1;
    font-weight: 800;
    background: #07382f;
}

.tlt-story-cta .is-style-outline .wp-block-button__link {
    border-color: #fffaf1;
    color: #fffaf1;
    background: transparent;
}

.tlt-story-cta .wp-block-button__link:hover,
.tlt-story-cta .wp-block-button__link:focus {
    color: #07382f;
    background: #fffaf1;
}

/* Mobile Story layout */
@media (max-width: 767px) {
    .tlt-story-hero {
        min-height: 760px;
    }

    .tlt-story-hero::after {
        background:
            linear-gradient(
                0deg,
                rgba(3, 31, 26, 0.94) 0%,
                rgba(3, 31, 26, 0.58) 70%,
                rgba(3, 31, 26, 0.18) 100%
            );
    }

    .tlt-story-hero-image img {
        object-position: center;
    }

    .tlt-story-hero-content {
        width: calc(100% - 48px);
        padding: 90px 0 72px;
    }

    .tlt-story-hero h1 {
        margin-bottom: 24px;
        font-size: clamp(3.25rem, 15vw, 4.4rem);
    }

    .tlt-story-hero-content > .wp-block-group__inner-container > p:not(.tlt-eyebrow) {
        font-size: 1.06rem;
        line-height: 1.7;
    }

    .tlt-story-origin > .wp-block-group__inner-container,
    .tlt-story-values > .wp-block-group__inner-container,
    .tlt-story-place > .wp-block-group__inner-container,
    .tlt-story-legacy > .wp-block-group__inner-container,
    .tlt-story-cta > .wp-block-group__inner-container {
        width: calc(100% - 48px);
        padding: 76px 0;
    }

    .tlt-story-page .wp-block-columns {
        flex-direction: column;
        gap: 42px;
    }

    .tlt-story-page .wp-block-column {
        width: 100%;
        flex-basis: 100% !important;
    }

    .tlt-story-page h2 {
        font-size: clamp(2.55rem, 12vw, 3.6rem);
    }

    .tlt-story-page figure img {
        border-radius: 20px;
    }

    .tlt-story-value-grid,
    .tlt-story-value-grid > .wp-block-group__inner-container {
        display: grid;
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .tlt-story-value-grid {
        margin-top: 40px;
    }

    .tlt-story-value {
        padding: 30px 26px;
    }

    .tlt-story-cta .wp-block-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .tlt-story-cta .wp-block-button,
    .tlt-story-cta .wp-block-button__link {
        width: 100%;
    }
}

/* Story pages — mobile refinement 0.5.2 */
body.page-id-2009 #masthead,
body.page-id-2010 #masthead,
body.page-id-2009 .site-header-row-container-inner,
body.page-id-2010 .site-header-row-container-inner {
    background: #07382f;
}

body.page-id-2009 .mobile-toggle-open-container .menu-toggle,
body.page-id-2010 .mobile-toggle-open-container .menu-toggle {
    color: #fffaf1;
}

.tlt-story-hero .tlt-story-hero-image img {
    border-radius: 0;
}

@media (max-width: 767px) {
    .tlt-story-hero {
        min-height: 690px;
    }

    .tlt-story-hero-content {
        padding-top: 72px;
        padding-bottom: 60px;
    }

    .tlt-story-hero h1 {
        max-width: 340px;
        font-size: clamp(2.85rem, 12vw, 3.25rem);
        letter-spacing: -0.045em;
        line-height: 0.98;
    }

    .tlt-story-hero-content > .wp-block-group__inner-container > p:not(.tlt-eyebrow) {
        font-size: 1rem;
        line-height: 1.65;
    }
}

/* Story pages — final mobile refinement 0.5.3 */

/* Remove Gutenberg/Kadence gaps between Story sections */
.tlt-story-page > .wp-block-group__inner-container {
    gap: 0 !important;
    row-gap: 0 !important;
}

.tlt-story-page > .wp-block-group__inner-container > .wp-block-group,
.tlt-story-page > .wp-block-group__inner-container > .wp-block-group + .wp-block-group,
.tlt-story-hero,
.tlt-story-origin,
.tlt-story-values,
.tlt-story-place,
.tlt-story-legacy,
.tlt-story-cta {
    margin-block-start: 0 !important;
    margin-block-end: 0 !important;
}

/* Correct secondary CTA brand colors */
.tlt-story-cta .wp-block-button:nth-child(2) .wp-block-button__link {
    border: 2px solid #fffaf1;
    color: #fffaf1;
    background: transparent;
}

.tlt-story-cta .wp-block-button:nth-child(2) .wp-block-button__link:hover,
.tlt-story-cta .wp-block-button:nth-child(2) .wp-block-button__link:focus {
    border-color: #fffaf1;
    color: #07382f;
    background: #fffaf1;
}

@media (max-width: 767px) {
    .tlt-story-page h2 {
        margin-bottom: 24px;
        font-size: clamp(2.35rem, 10.5vw, 2.75rem);
        letter-spacing: -0.04em;
        line-height: 1.04;
    }

    .tlt-story-values h2,
    .tlt-story-cta h2 {
        max-width: 330px;
        margin-right: auto;
        margin-left: auto;
    }

    .tlt-story-page p {
        font-size: 1rem;
        line-height: 1.7;
    }

    .tlt-story-cta p {
        margin-bottom: 32px;
    }
}

/* Story CTA outline correction — version 0.5.4 */
.tlt-story-cta .wp-block-button:nth-child(2) .wp-block-button__link,
.tlt-story-cta .wp-block-button:nth-child(2) .wp-block-button__link:visited {
    border-color: #fffaf1 !important;
    color: #fffaf1 !important;
    background: transparent !important;
    box-shadow: none !important;
    text-decoration: none;
}

.tlt-story-cta .wp-block-button:nth-child(2) .wp-block-button__link:hover,
.tlt-story-cta .wp-block-button:nth-child(2) .wp-block-button__link:focus {
    border-color: #fffaf1 !important;
    color: #07382f !important;
    background: #fffaf1 !important;
}

/* Global branded-header contrast — version 0.5.5 */
#masthead .main-navigation .primary-menu-container > ul > li:not(.lang-item) > a,
#masthead .header-navigation .header-menu-container > ul > li:not(.lang-item) > a {
    color: #fffaf1 !important;
}

#masthead .main-navigation .primary-menu-container > ul > li:not(.lang-item) > a:hover,
#masthead .main-navigation .primary-menu-container > ul > li:not(.lang-item) > a:focus,
#masthead .main-navigation .primary-menu-container > ul > li.current-menu-item:not(.lang-item) > a,
#masthead .header-navigation .header-menu-container > ul > li:not(.lang-item) > a:hover,
#masthead .header-navigation .header-menu-container > ul > li:not(.lang-item) > a:focus,
#masthead .header-navigation .header-menu-container > ul > li.current-menu-item:not(.lang-item) > a {
    color: #f39464 !important;
}

#masthead .menu-toggle-open-container .menu-toggle,
#masthead .mobile-toggle-open-container .menu-toggle,
#masthead .menu-toggle-open-container .menu-toggle-icon,
#masthead .mobile-toggle-open-container .menu-toggle-icon {
    color: #fffaf1 !important;
}

/* Turrialba destination pages — version 0.6.0 */

:is(body.page-id-2007, body.page-id-2008, body.page-id-2011, body.page-id-2012, body.page-id-2013, body.page-id-2014) .content-area,
:is(body.page-id-2007, body.page-id-2008, body.page-id-2011, body.page-id-2012, body.page-id-2013, body.page-id-2014) .site-main,
:is(body.page-id-2007, body.page-id-2008, body.page-id-2011, body.page-id-2012, body.page-id-2013, body.page-id-2014) article,
:is(body.page-id-2007, body.page-id-2008, body.page-id-2011, body.page-id-2012, body.page-id-2013, body.page-id-2014) .entry-content-wrap,
:is(body.page-id-2007, body.page-id-2008, body.page-id-2011, body.page-id-2012, body.page-id-2013, body.page-id-2014) .entry-content {
  margin: 0 !important;
  padding: 0 !important;
  max-width: none !important;
}

:is(body.page-id-2007, body.page-id-2008, body.page-id-2011, body.page-id-2012, body.page-id-2013, body.page-id-2014) .entry-header {
  display: none;
}

:is(body.page-id-2007, body.page-id-2008, body.page-id-2011, body.page-id-2012, body.page-id-2013, body.page-id-2014) .tlt-place-page {
  --tlt-place-green: #07382f;
  --tlt-place-green-soft: #124c42;
  --tlt-place-orange: #d96227;
  --tlt-place-coral: #ff9668;
  --tlt-place-cream: #fbf4e8;
  --tlt-place-pale: #eef5f4;
  --tlt-place-ink: #063830;
  --tlt-place-copy: #536d69;
  overflow: hidden;
  margin: 0;
  color: var(--tlt-place-copy);
}

:is(body.page-id-2007, body.page-id-2008, body.page-id-2011, body.page-id-2012, body.page-id-2013, body.page-id-2014)
.tlt-place-page > .wp-block-group__inner-container {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  gap: 0;
  row-gap: 0;
}

:is(body.page-id-2007, body.page-id-2008, body.page-id-2011, body.page-id-2012, body.page-id-2013, body.page-id-2014)
.tlt-place-page :is(h1, h2, h3, p, figure) {
  margin-top: 0;
}

:is(body.page-id-2007, body.page-id-2008, body.page-id-2011, body.page-id-2012, body.page-id-2013, body.page-id-2014)
.tlt-place-page :is(h1, h2, h3) {
  color: var(--tlt-place-ink);
  letter-spacing: -0.035em;
  line-height: 1.06;
}

:is(body.page-id-2007, body.page-id-2008, body.page-id-2011, body.page-id-2012, body.page-id-2013, body.page-id-2014)
.tlt-place-page p {
  line-height: 1.75;
}

:is(body.page-id-2007, body.page-id-2008, body.page-id-2011, body.page-id-2012, body.page-id-2013, body.page-id-2014)
.tlt-place-page .tlt-eyebrow {
  margin-bottom: 28px;
  color: var(--tlt-place-coral);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.45;
  text-transform: uppercase;
}

/* Hero */

:is(body.page-id-2007, body.page-id-2008, body.page-id-2011, body.page-id-2012, body.page-id-2013, body.page-id-2014) .tlt-place-hero {
  position: relative;
  min-height: 790px;
  margin: 0;
  background: var(--tlt-place-green);
  isolation: isolate;
}

:is(body.page-id-2007, body.page-id-2008, body.page-id-2011, body.page-id-2012, body.page-id-2013, body.page-id-2014)
.tlt-place-hero > .wp-block-group__inner-container {
  position: relative;
  min-height: 790px;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

:is(body.page-id-2007, body.page-id-2008, body.page-id-2011, body.page-id-2012, body.page-id-2013, body.page-id-2014)
.tlt-place-hero::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background:
    linear-gradient(
      90deg,
      rgba(2, 31, 26, 0.91) 0%,
      rgba(2, 31, 26, 0.72) 42%,
      rgba(2, 31, 26, 0.22) 74%,
      rgba(2, 31, 26, 0.12) 100%
    );
}

:is(body.page-id-2007, body.page-id-2008, body.page-id-2011, body.page-id-2012, body.page-id-2013, body.page-id-2014)
.tlt-place-hero-image {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
}

:is(body.page-id-2007, body.page-id-2008, body.page-id-2011, body.page-id-2012, body.page-id-2013, body.page-id-2014)
.tlt-place-hero-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

:is(body.page-id-2007, body.page-id-2008, body.page-id-2011, body.page-id-2012, body.page-id-2013, body.page-id-2014)
.tlt-place-hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 790px;
  width: min(100% - 80px, 1240px);
  max-width: none;
  margin: 0 auto;
  padding: 90px 0;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

:is(body.page-id-2007, body.page-id-2008, body.page-id-2011, body.page-id-2012, body.page-id-2013, body.page-id-2014)
.tlt-place-hero-content > .wp-block-group__inner-container {
  width: min(100%, 720px);
  max-width: none;
  margin: 0;
  padding: 0;
}

:is(body.page-id-2007, body.page-id-2008, body.page-id-2011, body.page-id-2012, body.page-id-2013, body.page-id-2014)
.tlt-place-hero :is(h1, p) {
  color: #fffaf1;
}

:is(body.page-id-2007, body.page-id-2008, body.page-id-2011, body.page-id-2012, body.page-id-2013, body.page-id-2014)
.tlt-place-hero h1 {
  max-width: 760px;
  margin-bottom: 28px;
  font-size: clamp(3.6rem, 6.2vw, 6.6rem);
}

:is(body.page-id-2007, body.page-id-2008, body.page-id-2011, body.page-id-2012, body.page-id-2013, body.page-id-2014)
.tlt-place-hero-content > .wp-block-group__inner-container > p:not(.tlt-eyebrow) {
  max-width: 650px;
  margin-bottom: 34px;
  font-size: clamp(1.08rem, 1.5vw, 1.3rem);
}

/* Shared buttons */

:is(body.page-id-2007, body.page-id-2008, body.page-id-2011, body.page-id-2012, body.page-id-2013, body.page-id-2014)
.tlt-place-page .wp-block-button__link {
  min-width: 220px;
  padding: 18px 30px;
  border: 2px solid var(--tlt-place-orange);
  border-radius: 999px;
  background: var(--tlt-place-orange);
  color: #fffaf1;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  transition:
    background-color 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

:is(body.page-id-2007, body.page-id-2008, body.page-id-2011, body.page-id-2012, body.page-id-2013, body.page-id-2014)
.tlt-place-page .wp-block-button__link:hover {
  border-color: var(--tlt-place-green);
  background: var(--tlt-place-green);
  color: #fffaf1;
  transform: translateY(-2px);
}

:is(body.page-id-2007, body.page-id-2008, body.page-id-2011, body.page-id-2012, body.page-id-2013, body.page-id-2014)
.tlt-place-page .is-style-outline .wp-block-button__link {
  border-color: var(--tlt-place-green);
  background: transparent;
  color: var(--tlt-place-green);
}

/* Introduction */

:is(body.page-id-2007, body.page-id-2008, body.page-id-2011, body.page-id-2012, body.page-id-2013, body.page-id-2014) .tlt-place-intro {
  margin: 0;
  padding: 120px 40px;
  background: var(--tlt-place-cream);
  text-align: center;
}

:is(body.page-id-2007, body.page-id-2008, body.page-id-2011, body.page-id-2012, body.page-id-2013, body.page-id-2014)
.tlt-place-intro > .wp-block-group__inner-container {
  width: min(100%, 920px);
  max-width: none;
  margin: 0 auto;
  padding: 0;
}

:is(body.page-id-2007, body.page-id-2008, body.page-id-2011, body.page-id-2012, body.page-id-2013, body.page-id-2014)
.tlt-place-intro h2 {
  margin-bottom: 34px;
  font-size: clamp(2.8rem, 5vw, 5.1rem);
}

:is(body.page-id-2007, body.page-id-2008, body.page-id-2011, body.page-id-2012, body.page-id-2013, body.page-id-2014)
.tlt-place-intro p:not(.tlt-eyebrow) {
  max-width: 800px;
  margin-right: auto;
  margin-bottom: 0;
  margin-left: auto;
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
}

/* Highlights */

:is(body.page-id-2007, body.page-id-2008, body.page-id-2011, body.page-id-2012, body.page-id-2013, body.page-id-2014) .tlt-place-highlights {
  margin: 0;
  padding: 110px 40px;
  background: #fff;
}

:is(body.page-id-2007, body.page-id-2008, body.page-id-2011, body.page-id-2012, body.page-id-2013, body.page-id-2014)
.tlt-place-highlights > .wp-block-group__inner-container {
  width: min(100%, 1240px);
  max-width: none;
  margin: 0 auto;
  padding: 0;
}

:is(body.page-id-2007, body.page-id-2008, body.page-id-2011, body.page-id-2012, body.page-id-2013, body.page-id-2014)
.tlt-place-highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin: 0;
}

:is(body.page-id-2007, body.page-id-2008, body.page-id-2011, body.page-id-2012, body.page-id-2013, body.page-id-2014)
.tlt-place-highlight {
  min-width: 0;
  margin: 0;
  padding: 42px 38px;
  border: 1px solid rgba(6, 56, 48, 0.12);
  border-radius: 26px;
  background: var(--tlt-place-cream);
  box-shadow: 0 20px 46px rgba(6, 56, 48, 0.08);
}

:is(body.page-id-2007, body.page-id-2008, body.page-id-2011, body.page-id-2012, body.page-id-2013, body.page-id-2014)
.tlt-place-highlight h3 {
  margin-bottom: 20px;
  font-size: clamp(1.65rem, 2.2vw, 2.25rem);
}

:is(body.page-id-2007, body.page-id-2008, body.page-id-2011, body.page-id-2012, body.page-id-2013, body.page-id-2014)
.tlt-place-highlight p {
  margin-bottom: 0;
}

/* Roads section */

:is(body.page-id-2007, body.page-id-2008, body.page-id-2011, body.page-id-2012, body.page-id-2013, body.page-id-2014) .tlt-place-roads {
  margin: 0;
  padding: 120px 40px;
  background: var(--tlt-place-green);
}

:is(body.page-id-2007, body.page-id-2008, body.page-id-2011, body.page-id-2012, body.page-id-2013, body.page-id-2014)
.tlt-place-roads > .wp-block-group__inner-container {
  width: min(100%, 1240px);
  max-width: none;
  margin: 0 auto;
  padding: 0;
}

:is(body.page-id-2007, body.page-id-2008, body.page-id-2011, body.page-id-2012, body.page-id-2013, body.page-id-2014)
.tlt-place-roads .wp-block-columns {
  gap: clamp(50px, 7vw, 100px);
  margin: 0;
  align-items: center !important;
}

:is(body.page-id-2007, body.page-id-2008, body.page-id-2011, body.page-id-2012, body.page-id-2013, body.page-id-2014)
.tlt-place-roads figure {
  overflow: hidden;
  margin: 0;
  border-radius: 28px;
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.24);
}

:is(body.page-id-2007, body.page-id-2008, body.page-id-2011, body.page-id-2012, body.page-id-2013, body.page-id-2014)
.tlt-place-roads figure img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

:is(body.page-id-2007, body.page-id-2008, body.page-id-2011, body.page-id-2012, body.page-id-2013, body.page-id-2014)
.tlt-place-roads-copy :is(h2, p) {
  color: #fffaf1;
}

:is(body.page-id-2007, body.page-id-2008, body.page-id-2011, body.page-id-2012, body.page-id-2013, body.page-id-2014)
.tlt-place-roads-copy h2 {
  margin-bottom: 28px;
  font-size: clamp(2.8rem, 4.7vw, 5rem);
}

:is(body.page-id-2007, body.page-id-2008, body.page-id-2011, body.page-id-2012, body.page-id-2013, body.page-id-2014)
.tlt-place-roads-copy p:not(.tlt-eyebrow) {
  font-size: 1.08rem;
}

/* Character section */

:is(body.page-id-2007, body.page-id-2008, body.page-id-2011, body.page-id-2012, body.page-id-2013, body.page-id-2014) .tlt-place-character {
  margin: 0;
  padding: 120px 40px;
  background: var(--tlt-place-pale);
}

:is(body.page-id-2007, body.page-id-2008, body.page-id-2011, body.page-id-2012, body.page-id-2013, body.page-id-2014)
.tlt-place-character > .wp-block-group__inner-container {
  width: min(100%, 1240px);
  max-width: none;
  margin: 0 auto;
  padding: 0;
}

:is(body.page-id-2007, body.page-id-2008, body.page-id-2011, body.page-id-2012, body.page-id-2013, body.page-id-2014)
.tlt-place-character .wp-block-columns {
  gap: clamp(50px, 7vw, 100px);
  margin: 0;
  align-items: center !important;
}

:is(body.page-id-2007, body.page-id-2008, body.page-id-2011, body.page-id-2012, body.page-id-2013, body.page-id-2014)
.tlt-place-character figure {
  overflow: hidden;
  margin: 0;
  border-radius: 28px;
  box-shadow: 0 22px 54px rgba(6, 56, 48, 0.14);
}

:is(body.page-id-2007, body.page-id-2008, body.page-id-2011, body.page-id-2012, body.page-id-2013, body.page-id-2014)
.tlt-place-character figure img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

:is(body.page-id-2007, body.page-id-2008, body.page-id-2011, body.page-id-2012, body.page-id-2013, body.page-id-2014)
.tlt-place-character-copy h2 {
  margin-bottom: 28px;
  font-size: clamp(2.8rem, 4.7vw, 5rem);
}

:is(body.page-id-2007, body.page-id-2008, body.page-id-2011, body.page-id-2012, body.page-id-2013, body.page-id-2014)
.tlt-place-character-copy p:not(.tlt-eyebrow) {
  font-size: 1.08rem;
}

/* Final CTA */

:is(body.page-id-2007, body.page-id-2008, body.page-id-2011, body.page-id-2012, body.page-id-2013, body.page-id-2014) .tlt-place-cta {
  margin: 0;
  padding: 120px 40px;
  background: var(--tlt-place-orange);
  text-align: center;
}

:is(body.page-id-2007, body.page-id-2008, body.page-id-2011, body.page-id-2012, body.page-id-2013, body.page-id-2014)
.tlt-place-cta > .wp-block-group__inner-container {
  width: min(100%, 900px);
  max-width: none;
  margin: 0 auto;
  padding: 0;
}

:is(body.page-id-2007, body.page-id-2008, body.page-id-2011, body.page-id-2012, body.page-id-2013, body.page-id-2014)
.tlt-place-cta :is(h2, p) {
  color: #fffaf1;
}

:is(body.page-id-2007, body.page-id-2008, body.page-id-2011, body.page-id-2012, body.page-id-2013, body.page-id-2014)
.tlt-place-cta h2 {
  margin-bottom: 26px;
  font-size: clamp(3rem, 5vw, 5.2rem);
}

:is(body.page-id-2007, body.page-id-2008, body.page-id-2011, body.page-id-2012, body.page-id-2013, body.page-id-2014)
.tlt-place-cta p {
  max-width: 700px;
  margin-right: auto;
  margin-bottom: 34px;
  margin-left: auto;
  font-size: 1.15rem;
}

:is(body.page-id-2007, body.page-id-2008, body.page-id-2011, body.page-id-2012, body.page-id-2013, body.page-id-2014)
.tlt-place-cta .wp-block-buttons {
  justify-content: center;
}

:is(body.page-id-2007, body.page-id-2008, body.page-id-2011, body.page-id-2012, body.page-id-2013, body.page-id-2014)
.tlt-place-cta .wp-block-button__link {
  border-color: var(--tlt-place-green);
  background: var(--tlt-place-green);
}

:is(body.page-id-2007, body.page-id-2008, body.page-id-2011, body.page-id-2012, body.page-id-2013, body.page-id-2014)
.tlt-place-cta .is-style-outline .wp-block-button__link {
  border-color: #fffaf1;
  background: transparent;
  color: #fffaf1;
}

/* Tablet */

@media (max-width: 1024px) {
  :is(body.page-id-2007, body.page-id-2008, body.page-id-2011, body.page-id-2012, body.page-id-2013, body.page-id-2014)
  .tlt-place-highlight-grid {
    gap: 20px;
  }

  :is(body.page-id-2007, body.page-id-2008, body.page-id-2011, body.page-id-2012, body.page-id-2013, body.page-id-2014)
  .tlt-place-highlight {
    padding: 34px 28px;
  }
}

/* Mobile */

@media (max-width: 781px) {
  :is(body.page-id-2007, body.page-id-2008, body.page-id-2011, body.page-id-2012, body.page-id-2013, body.page-id-2014) .tlt-place-hero,
  :is(body.page-id-2007, body.page-id-2008, body.page-id-2011, body.page-id-2012, body.page-id-2013, body.page-id-2014)
  .tlt-place-hero > .wp-block-group__inner-container {
    min-height: 760px;
  }

  :is(body.page-id-2007, body.page-id-2008, body.page-id-2011, body.page-id-2012, body.page-id-2013, body.page-id-2014)
  .tlt-place-hero::after {
    background:
      linear-gradient(
        180deg,
        rgba(2, 31, 26, 0.22) 0%,
        rgba(2, 31, 26, 0.45) 30%,
        rgba(2, 31, 26, 0.92) 100%
      );
  }

  :is(body.page-id-2007, body.page-id-2008, body.page-id-2011, body.page-id-2012, body.page-id-2013, body.page-id-2014)
  .tlt-place-hero-image img {
    object-position: center;
  }

  :is(body.page-id-2007, body.page-id-2008, body.page-id-2011, body.page-id-2012, body.page-id-2013, body.page-id-2014)
  .tlt-place-hero-content {
    min-height: 760px;
    width: 100%;
    padding: 70px 28px 58px;
    justify-content: flex-end;
  }

  :is(body.page-id-2007, body.page-id-2008, body.page-id-2011, body.page-id-2012, body.page-id-2013, body.page-id-2014)
  .tlt-place-hero h1 {
    margin-bottom: 24px;
    font-size: clamp(3rem, 14vw, 4.25rem);
  }

  :is(body.page-id-2007, body.page-id-2008, body.page-id-2011, body.page-id-2012, body.page-id-2013, body.page-id-2014)
  .tlt-place-hero-content > .wp-block-group__inner-container > p:not(.tlt-eyebrow) {
    font-size: 1.03rem;
    line-height: 1.65;
  }

  :is(body.page-id-2007, body.page-id-2008, body.page-id-2011, body.page-id-2012, body.page-id-2013, body.page-id-2014)
  .tlt-place-page .wp-block-buttons,
  :is(body.page-id-2007, body.page-id-2008, body.page-id-2011, body.page-id-2012, body.page-id-2013, body.page-id-2014)
  .tlt-place-page .wp-block-button,
  :is(body.page-id-2007, body.page-id-2008, body.page-id-2011, body.page-id-2012, body.page-id-2013, body.page-id-2014)
  .tlt-place-page .wp-block-button__link {
    width: 100%;
  }

  :is(body.page-id-2007, body.page-id-2008, body.page-id-2011, body.page-id-2012, body.page-id-2013, body.page-id-2014)
  .tlt-place-page .wp-block-button__link {
    min-width: 0;
  }

  :is(body.page-id-2007, body.page-id-2008, body.page-id-2011, body.page-id-2012, body.page-id-2013, body.page-id-2014) .tlt-place-intro,
  :is(body.page-id-2007, body.page-id-2008, body.page-id-2011, body.page-id-2012, body.page-id-2013, body.page-id-2014) .tlt-place-highlights,
  :is(body.page-id-2007, body.page-id-2008, body.page-id-2011, body.page-id-2012, body.page-id-2013, body.page-id-2014) .tlt-place-roads,
  :is(body.page-id-2007, body.page-id-2008, body.page-id-2011, body.page-id-2012, body.page-id-2013, body.page-id-2014) .tlt-place-character,
  :is(body.page-id-2007, body.page-id-2008, body.page-id-2011, body.page-id-2012, body.page-id-2013, body.page-id-2014) .tlt-place-cta {
    padding: 76px 28px;
  }

  :is(body.page-id-2007, body.page-id-2008, body.page-id-2011, body.page-id-2012, body.page-id-2013, body.page-id-2014)
  .tlt-place-intro h2,
  :is(body.page-id-2007, body.page-id-2008, body.page-id-2011, body.page-id-2012, body.page-id-2013, body.page-id-2014)
  .tlt-place-roads-copy h2,
  :is(body.page-id-2007, body.page-id-2008, body.page-id-2011, body.page-id-2012, body.page-id-2013, body.page-id-2014)
  .tlt-place-character-copy h2,
  :is(body.page-id-2007, body.page-id-2008, body.page-id-2011, body.page-id-2012, body.page-id-2013, body.page-id-2014)
  .tlt-place-cta h2 {
    font-size: clamp(2.55rem, 11vw, 3.5rem);
  }

  :is(body.page-id-2007, body.page-id-2008, body.page-id-2011, body.page-id-2012, body.page-id-2013, body.page-id-2014)
  .tlt-place-highlight-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  :is(body.page-id-2007, body.page-id-2008, body.page-id-2011, body.page-id-2012, body.page-id-2013, body.page-id-2014)
  .tlt-place-highlight {
    width: 100%;
    padding: 34px 28px;
  }

  :is(body.page-id-2007, body.page-id-2008, body.page-id-2011, body.page-id-2012, body.page-id-2013, body.page-id-2014)
  .tlt-place-roads .wp-block-columns,
  :is(body.page-id-2007, body.page-id-2008, body.page-id-2011, body.page-id-2012, body.page-id-2013, body.page-id-2014)
  .tlt-place-character .wp-block-columns {
    gap: 46px;
  }

  :is(body.page-id-2007, body.page-id-2008, body.page-id-2011, body.page-id-2012, body.page-id-2013, body.page-id-2014)
  .tlt-place-roads figure,
  :is(body.page-id-2007, body.page-id-2008, body.page-id-2011, body.page-id-2012, body.page-id-2013, body.page-id-2014)
  .tlt-place-character figure {
    border-radius: 22px;
  }

  :is(body.page-id-2007, body.page-id-2008, body.page-id-2011, body.page-id-2012, body.page-id-2013, body.page-id-2014)
  .tlt-place-page .tlt-eyebrow {
    margin-bottom: 22px;
  }
}

@media (max-width: 420px) {
  :is(body.page-id-2007, body.page-id-2008, body.page-id-2011, body.page-id-2012, body.page-id-2013, body.page-id-2014)
  .tlt-place-hero-content {
    padding-right: 24px;
    padding-left: 24px;
  }

  :is(body.page-id-2007, body.page-id-2008, body.page-id-2011, body.page-id-2012, body.page-id-2013, body.page-id-2014) .tlt-place-intro,
  :is(body.page-id-2007, body.page-id-2008, body.page-id-2011, body.page-id-2012, body.page-id-2013, body.page-id-2014) .tlt-place-highlights,
  :is(body.page-id-2007, body.page-id-2008, body.page-id-2011, body.page-id-2012, body.page-id-2013, body.page-id-2014) .tlt-place-roads,
  :is(body.page-id-2007, body.page-id-2008, body.page-id-2011, body.page-id-2012, body.page-id-2013, body.page-id-2014) .tlt-place-character,
  :is(body.page-id-2007, body.page-id-2008, body.page-id-2011, body.page-id-2012, body.page-id-2013, body.page-id-2014) .tlt-place-cta {
    padding-right: 24px;
    padding-left: 24px;
  }
}

/* Turrialba destination corrections — version 0.6.1 */

/* Branded header on the new destination pages */

:is(body.page-id-2007, body.page-id-2008, body.page-id-2011, body.page-id-2012, body.page-id-2013, body.page-id-2014) .site-header,
:is(body.page-id-2007, body.page-id-2008, body.page-id-2011, body.page-id-2012, body.page-id-2013, body.page-id-2014) .site-main-header-wrap,
:is(body.page-id-2007, body.page-id-2008, body.page-id-2011, body.page-id-2012, body.page-id-2013, body.page-id-2014) .site-header-row-container-inner {
  background: #07382f !important;
}

:is(body.page-id-2007, body.page-id-2008, body.page-id-2011, body.page-id-2012, body.page-id-2013, body.page-id-2014)
.site-main-header-inner-wrap {
  min-height: 128px;
}

:is(body.page-id-2007, body.page-id-2008, body.page-id-2011, body.page-id-2012, body.page-id-2013, body.page-id-2014)
.site-header-row {
  grid-template-columns: minmax(0, 1fr) auto !important;
  column-gap: 20px;
}

:is(body.page-id-2007, body.page-id-2008, body.page-id-2011, body.page-id-2012, body.page-id-2013, body.page-id-2014)
.site-branding {
  min-width: 0;
}

:is(body.page-id-2007, body.page-id-2008, body.page-id-2011, body.page-id-2012, body.page-id-2013, body.page-id-2014)
.site-branding .site-title,
:is(body.page-id-2007, body.page-id-2008, body.page-id-2011, body.page-id-2012, body.page-id-2013, body.page-id-2014)
.site-branding .site-description {
  display: none !important;
}

:is(body.page-id-2007, body.page-id-2008, body.page-id-2011, body.page-id-2012, body.page-id-2013, body.page-id-2014)
.site-branding a.brand {
  display: block;
  width: fit-content;
}

:is(body.page-id-2007, body.page-id-2008, body.page-id-2011, body.page-id-2012, body.page-id-2013, body.page-id-2014)
.site-branding .custom-logo {
  display: block;
  width: auto !important;
  max-width: 300px !important;
  max-height: 112px !important;
  height: auto !important;
}

:is(body.page-id-2007, body.page-id-2008, body.page-id-2011, body.page-id-2012, body.page-id-2013, body.page-id-2014)
.mobile-toggle-open-container {
  justify-self: end;
}

:is(body.page-id-2007, body.page-id-2008, body.page-id-2011, body.page-id-2012, body.page-id-2013, body.page-id-2014)
.menu-toggle-open {
  color: #fffaf1 !important;
}

:is(body.page-id-2007, body.page-id-2008, body.page-id-2011, body.page-id-2012, body.page-id-2013, body.page-id-2014)
.menu-toggle-open .menu-toggle-icon {
  color: #fffaf1 !important;
}

/* Remove WordPress constrained-layout inset from the hero */

:is(body.page-id-2007, body.page-id-2008, body.page-id-2011, body.page-id-2012, body.page-id-2013, body.page-id-2014)
.tlt-place-hero,
:is(body.page-id-2007, body.page-id-2008, body.page-id-2011, body.page-id-2012, body.page-id-2013, body.page-id-2014)
.tlt-place-hero > .wp-block-group__inner-container {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

:is(body.page-id-2007, body.page-id-2008, body.page-id-2011, body.page-id-2012, body.page-id-2013, body.page-id-2014)
.tlt-place-hero .tlt-place-hero-image {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  max-width: none !important;
  height: 100% !important;
  margin: 0 !important;
}

@media (max-width: 781px) {
  :is(body.page-id-2007, body.page-id-2008, body.page-id-2011, body.page-id-2012, body.page-id-2013, body.page-id-2014)
  .site-main-header-inner-wrap {
    min-height: 128px;
    padding-right: 28px;
    padding-left: 28px;
  }

  :is(body.page-id-2007, body.page-id-2008, body.page-id-2011, body.page-id-2012, body.page-id-2013, body.page-id-2014)
  .site-branding .custom-logo {
    max-width: min(280px, 70vw) !important;
    max-height: 108px !important;
  }

  :is(body.page-id-2007, body.page-id-2008, body.page-id-2011, body.page-id-2012, body.page-id-2013, body.page-id-2014)
  .tlt-place-hero-content {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
  }
}

/* Turrialba outer-wrapper correction — version 0.6.2 */

:is(body.page-id-2007, body.page-id-2008, body.page-id-2011, body.page-id-2012, body.page-id-2013, body.page-id-2014)
.tlt-place-page,
:is(body.page-id-2007, body.page-id-2008, body.page-id-2011, body.page-id-2012, body.page-id-2013, body.page-id-2014)
.tlt-place-page > .wp-block-group__inner-container {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding-right: 0 !important;
  padding-left: 0 !important;
}

:is(body.page-id-2007, body.page-id-2008, body.page-id-2011, body.page-id-2012, body.page-id-2013, body.page-id-2014)
.tlt-place-page > .wp-block-group__inner-container > .wp-block-group {
  width: 100% !important;
  max-width: none !important;
  margin-right: 0 !important;
  margin-left: 0 !important;
}

/* Turrialba Kadence container reset — version 0.6.3 */

body.page-id-2007 .content-container,
body.page-id-2008 .content-container,
body.page-id-2013 .content-container,
body.page-id-2014 .content-container,
body.page-id-2011 .content-container,
body.page-id-2012 .content-container {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

body.page-id-2007 .content-wrap,
body.page-id-2008 .content-wrap,
body.page-id-2013 .content-wrap,
body.page-id-2014 .content-wrap,
body.page-id-2011 .content-wrap,
body.page-id-2012 .content-wrap,
body.page-id-2007 article.entry,
body.page-id-2008 article.entry,
body.page-id-2013 article.entry,
body.page-id-2014 article.entry,
body.page-id-2011 article.entry,
body.page-id-2012 article.entry,
body.page-id-2007 .content-bg,
body.page-id-2008 .content-bg,
body.page-id-2013 .content-bg,
body.page-id-2014 .content-bg,
body.page-id-2011 .content-bg,
body.page-id-2012 .content-bg,
body.page-id-2007 .entry-content-wrap,
body.page-id-2008 .entry-content-wrap,
body.page-id-2013 .entry-content-wrap,
body.page-id-2014 .entry-content-wrap,
body.page-id-2011 .entry-content-wrap,
body.page-id-2012 .entry-content-wrap,
body.page-id-2007 .entry-content,
body.page-id-2008 .entry-content,
body.page-id-2013 .entry-content,
body.page-id-2014 .entry-content,
body.page-id-2011 .entry-content,
body.page-id-2012 .entry-content {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
}

body.page-id-2007 #primary,
body.page-id-2008 #primary,
body.page-id-2013 #primary,
body.page-id-2014 #primary,
body.page-id-2011 #primary,
body.page-id-2012 #primary {
  float: none !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Shared redesigned-page foundation — version 0.7.0 */

body.tlt-redesign-page {
  overflow-x: hidden;
}

body.tlt-redesign-page .entry-hero {
  display: none !important;
}

body.tlt-redesign-page #primary,
body.tlt-redesign-page .content-area,
body.tlt-redesign-page .content-container,
body.tlt-redesign-page .site-main,
body.tlt-redesign-page .content-wrap,
body.tlt-redesign-page article.entry,
body.tlt-redesign-page .content-bg,
body.tlt-redesign-page .entry-content-wrap,
body.tlt-redesign-page .entry-content {
  float: none !important;
  display: block;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

body.tlt-redesign-page article.entry,
body.tlt-redesign-page .entry-content-wrap {
  background: transparent !important;
}

body.tlt-redesign-page
.entry-content > :is(.alignfull, .wp-block-group.alignfull) {
  width: 100% !important;
  max-width: none !important;
  margin-right: 0 !important;
  margin-left: 0 !important;
}

body.tlt-redesign-page
.entry-content > :is(.alignfull, .wp-block-group.alignfull)
> .wp-block-group__inner-container {
  width: 100%;
  max-width: none;
  margin-right: 0;
  margin-left: 0;
}

/* Turrialba highlight grid correction */

.tlt-place-highlight-grid {
  display: block;
}

.tlt-place-highlight-grid > .wp-block-group__inner-container {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 28px;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

.tlt-place-highlight-grid
> .wp-block-group__inner-container
> .tlt-place-highlight {
  width: 100%;
  height: 100%;
  max-width: none;
  margin: 0 !important;
}

@media (max-width: 1024px) {
  .tlt-place-highlight-grid > .wp-block-group__inner-container {
    gap: 20px;
  }
}

@media (max-width: 781px) {
  .tlt-place-highlight-grid > .wp-block-group__inner-container {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* Turrialba highlight grid outer-wrapper correction */
.tlt-place-highlight-grid {
    display: block !important;
    width: min(1180px, calc(100% - 48px)) !important;
    max-width: none !important;
    margin-right: auto !important;
    margin-left: auto !important;
}

.tlt-place-highlight-grid > .wp-block-group__inner-container {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    align-items: stretch !important;
    gap: 28px !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
}

.tlt-place-highlight-grid .tlt-place-highlight {
    width: 100% !important;
    min-width: 0 !important;
    height: 100% !important;
    margin: 0 !important;
}

@media (max-width: 781px) {
    .tlt-place-highlight-grid {
        width: calc(100% - 48px) !important;
    }

    .tlt-place-highlight-grid > .wp-block-group__inner-container {
        grid-template-columns: minmax(0, 1fr) !important;
        gap: 24px !important;
    }
}

/* FAQ accordion component — version 0.8.0 */

.tlt-faq-hero .tlt-place-hero-image img {
    object-position: center 48%;
}

.tlt-faq-section {
    box-sizing: border-box;
    width: 100%;
    margin: 0 !important;
    padding: 110px 32px 125px !important;
    background: #ffffff;
    color: #0d2c21;
}

.tlt-faq-section > .wp-block-group__inner-container {
    width: min(1040px, 100%);
    margin: 0 auto;
}

.tlt-faq-section > .wp-block-group__inner-container > .tlt-eyebrow {
    margin: 0 0 20px !important;
    text-align: center;
    color: #cf6028;
}

.tlt-faq-section h2 {
    max-width: 820px;
    margin: 0 auto 58px !important;
    text-align: center;
    color: #0d2c21;
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.04;
}

.tlt-faq-grid,
.tlt-faq-grid > .wp-block-group__inner-container {
    width: 100%;
    margin: 0 !important;
}

.tlt-faq-grid > .wp-block-group__inner-container {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    align-items: start;
}

.tlt-faq-item {
    box-sizing: border-box;
    margin: 0 !important;
    padding: 0 28px;
    overflow: hidden;
    background: #f8f2e8;
    border: 1px solid rgba(13, 44, 33, 0.12);
    border-radius: 24px;
    box-shadow: 0 18px 38px rgba(13, 44, 33, 0.08);
}

.tlt-faq-item summary {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 100px;
    margin: 0;
    padding: 25px 48px 25px 0;
    color: #0d2c21;
    font-size: 23px;
    font-weight: 700;
    line-height: 1.25;
    cursor: pointer;
    list-style: none;
}

.tlt-faq-item summary::-webkit-details-marker {
    display: none;
}

.tlt-faq-item summary::after {
    content: "+";
    position: absolute;
    top: 50%;
    right: 0;
    display: grid;
    width: 34px;
    height: 34px;
    transform: translateY(-50%);
    place-items: center;
    color: #ffffff;
    background: #cf6028;
    border-radius: 50%;
    font-size: 25px;
    font-weight: 500;
    line-height: 1;
}

.tlt-faq-item[open] summary::after {
    content: "−";
}

.tlt-faq-item[open] summary {
    border-bottom: 1px solid rgba(13, 44, 33, 0.12);
}

.tlt-faq-item > p {
    margin: 0 !important;
    padding: 24px 0 29px;
    color: #59675f;
    font-size: 18px;
    line-height: 1.75;
}

@media (max-width: 781px) {
    .tlt-faq-section {
        padding: 78px 24px 90px !important;
    }

    .tlt-faq-section h2 {
        margin-bottom: 40px !important;
        font-size: clamp(38px, 11vw, 52px);
    }

    .tlt-faq-grid > .wp-block-group__inner-container {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .tlt-faq-item {
        padding: 0 22px;
        border-radius: 20px;
    }

    .tlt-faq-item summary {
        min-height: 88px;
        padding: 21px 44px 21px 0;
        font-size: 20px;
    }

    .tlt-faq-item > p {
        padding: 21px 0 25px;
        font-size: 17px;
        line-height: 1.68;
    }
}

/* FAQ pages — version 0.8.0 */
.tlt-faq-section {
    background: #fff;
    padding: 110px 32px 125px !important;
}

.tlt-faq-section > .wp-block-group__inner-container {
    width: min(1040px, 100%);
    margin: 0 auto;
}

.tlt-faq-heading {
    max-width: 780px;
    margin: 0 auto 58px !important;
    text-align: center;
}

.tlt-faq-heading h2 {
    margin: 18px 0 22px !important;
    color: #0d2c21 !important;
    font-size: clamp(42px, 5vw, 68px) !important;
    line-height: 1.04 !important;
}

.tlt-faq-heading p:not(.tlt-eyebrow) {
    max-width: 680px;
    margin: 0 auto !important;
    color: #536b65 !important;
    font-size: 20px;
    line-height: 1.75;
}

.tlt-faq-category {
    margin: 64px 0 24px !important;
    color: #0d2c21 !important;
    font-size: clamp(28px, 3vw, 38px) !important;
}

.tlt-faq-grid {
    display: block !important;
    margin: 0 !important;
}

.tlt-faq-grid > .wp-block-group__inner-container {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.tlt-faq-item {
    align-self: start;
    margin: 0 !important;
    overflow: hidden;
    background: #f8f2e8;
    border: 1px solid rgba(13, 44, 33, 0.12);
    border-radius: 24px;
    box-shadow: 0 16px 35px rgba(13, 44, 33, 0.07);
}

.tlt-faq-item summary {
    position: relative;
    padding: 28px 66px 28px 30px;
    color: #0d2c21;
    font-size: 21px;
    font-weight: 700;
    line-height: 1.35;
    cursor: pointer;
    list-style: none;
}

.tlt-faq-item summary::-webkit-details-marker {
    display: none;
}

.tlt-faq-item summary::after {
    content: "+";
    position: absolute;
    top: 50%;
    right: 28px;
    transform: translateY(-50%);
    color: #d96125;
    font-size: 31px;
    font-weight: 400;
    line-height: 1;
}

.tlt-faq-item[open] summary::after {
    content: "−";
}

.tlt-faq-item > p {
    margin: 0 !important;
    padding: 0 30px 30px !important;
    color: #536b65 !important;
    font-size: 18px;
    line-height: 1.7;
}

.tlt-faq-item[open] {
    background: #fffaf2;
}

@media (max-width: 781px) {
    .tlt-faq-section {
        padding: 78px 24px 88px !important;
    }

    .tlt-faq-heading {
        margin-bottom: 42px !important;
        text-align: left;
    }

    .tlt-faq-heading h2 {
        font-size: clamp(38px, 12vw, 54px) !important;
    }

    .tlt-faq-heading p:not(.tlt-eyebrow) {
        font-size: 18px;
        line-height: 1.65;
    }

    .tlt-faq-category {
        margin-top: 48px !important;
        font-size: 30px !important;
    }

    .tlt-faq-grid > .wp-block-group__inner-container {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .tlt-faq-item {
        border-radius: 20px;
    }

    .tlt-faq-item summary {
        padding: 24px 58px 24px 24px;
        font-size: 19px;
    }

    .tlt-faq-item summary::after {
        right: 23px;
    }

    .tlt-faq-item > p {
        padding: 0 24px 26px !important;
        font-size: 17px;
    }
}

/* FAQ final contrast correction — version 0.8.1 */
.tlt-faq-item summary::after {
    display: grid !important;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #d96125 !important;
    color: #fff !important;
    font-size: 24px !important;
    line-height: 1 !important;
}

.tlt-faq-page .tlt-place-cta .is-style-outline .wp-block-button__link,
.tlt-faq-page .tlt-place-cta .is-style-outline .wp-block-button__link:visited,
.tlt-faq-page .tlt-place-cta .is-style-outline .wp-block-button__link:hover,
.tlt-faq-page .tlt-place-cta .is-style-outline .wp-block-button__link:focus {
    color: #fff !important;
}
