@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
    --trip-ink: #182c2a;
    --trip-ink-soft: #53605d;
    --trip-green: #1d5148;
    --trip-green-dark: #123c35;
    --trip-saffron: #dc7d3f;
    --trip-saffron-dark: #bf612b;
    --trip-cream: #fbf7ef;
    --trip-cream-deep: #f4ecdd;
    --trip-white: #fff;
    --trip-line: #e7ded0;
    --trip-shadow: 0 20px 55px rgba(32, 45, 39, .10);
}

.trip-page,
.trip-page * {
    box-sizing: border-box;
}

.trip-page {
    background: var(--trip-cream);
    color: var(--trip-ink);
    font-family: "Poppins", sans-serif;
    overflow: hidden;
}

.trip-page h1,
.trip-page h2,
.trip-page h3,
.trip-page p {
    margin-top: 0;
}

.trip-page h1,
.trip-page h2,
.trip-page h3 {
    color: var(--trip-ink);
    font-family: "Lora", serif;
    letter-spacing: -.03em;
}

.trip-page a {
    color: inherit;
}

.trip-shell {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
}

.trip-eyebrow,
.trip-section-kicker {
    color: var(--trip-saffron-dark);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .18em;
    line-height: 1.3;
    text-transform: uppercase;
}

.trip-eyebrow > span {
    background: var(--trip-saffron);
    border-radius: 50%;
    height: 6px;
    width: 6px;
}

.trip-button {
    border: 0;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 52px;
    padding: 0 25px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .015em;
    text-decoration: none !important;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.trip-button:hover {
    transform: translateY(-2px);
}

.trip-button svg,
.trip-card-foot svg {
    fill: none;
    height: 18px;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
    width: 18px;
}

.trip-button-primary {
    background: var(--trip-saffron);
    box-shadow: 0 12px 28px rgba(206, 105, 48, .25);
    color: var(--trip-white) !important;
}

.trip-button-primary:hover {
    background: var(--trip-saffron-dark);
    box-shadow: 0 16px 34px rgba(206, 105, 48, .35);
}

/* Listing hero */
.trip-hero-listing {
    background:
        radial-gradient(circle at 9% 15%, rgba(255, 255, 255, .06) 0 1px, transparent 2px),
        linear-gradient(135deg, #113b35 0%, #1d5148 70%, #265d51 100%);
    color: var(--trip-white);
    min-height: 650px;
    position: relative;
}

.trip-hero-pattern {
    background-image:
        linear-gradient(30deg, transparent 49%, rgba(255, 255, 255, .025) 50%, transparent 51%),
        linear-gradient(150deg, transparent 49%, rgba(255, 255, 255, .025) 50%, transparent 51%);
    background-size: 54px 94px;
    inset: 0;
    opacity: .6;
    pointer-events: none;
    position: absolute;
}

.trip-hero-inner {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    min-height: 620px;
    align-items: center;
    gap: 60px;
    padding: 70px 0 90px;
    position: relative;
    z-index: 2;
}

.trip-hero-copy {
    max-width: 650px;
}

.trip-hero-copy .trip-eyebrow {
    color: #efb285;
    margin-bottom: 23px;
}

.trip-hero-copy h1 {
    color: var(--trip-white);
    font-size: clamp(44px, 5.25vw, 76px);
    font-weight: 400;
    line-height: 1.07;
    margin-bottom: 24px;
}

.trip-hero-copy h1 em {
    color: #efb285;
    font-weight: 400;
}

.trip-hero-copy > p {
    color: rgba(255, 255, 255, .72);
    font-size: 16px;
    line-height: 1.85;
    margin-bottom: 34px;
    max-width: 610px;
}

.trip-hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 23px;
}

.trip-text-link {
    color: var(--trip-white) !important;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none !important;
}

.trip-call-icon {
    align-items: center;
    background: rgba(255, 255, 255, .11);
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 50%;
    display: inline-flex;
    height: 38px;
    justify-content: center;
    width: 38px;
}

.trip-hero-visual {
    min-height: 490px;
    position: relative;
}

.trip-arch {
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 220px 220px 18px 18px;
    box-shadow: 0 32px 70px rgba(0, 0, 0, .25);
    height: 490px;
    overflow: hidden;
    position: absolute;
    right: 8%;
    top: 0;
    width: min(390px, 84%);
}

.trip-arch::before {
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 230px 230px 22px 22px;
    content: "";
    inset: -12px;
    pointer-events: none;
    position: absolute;
    z-index: 2;
}

.trip-arch img {
    height: 100%;
    object-fit: cover;
    transform: scale(1.035);
    width: 100%;
}

.trip-arch-shade {
    background: linear-gradient(to top, rgba(9, 34, 30, .55), transparent 60%);
    inset: 0;
    position: absolute;
}

.trip-floating-card {
    align-items: center;
    backdrop-filter: blur(14px);
    background: rgba(255, 255, 255, .94);
    border: 1px solid rgba(255, 255, 255, .7);
    border-radius: 14px;
    bottom: 28px;
    box-shadow: 0 18px 40px rgba(3, 28, 24, .25);
    color: var(--trip-ink);
    display: flex;
    gap: 13px;
    left: -5px;
    padding: 14px 18px;
    position: absolute;
    z-index: 3;
}

.trip-floating-symbol {
    align-items: center;
    background: #f8e7d8;
    border-radius: 50%;
    color: var(--trip-saffron-dark);
    display: flex;
    font-family: serif;
    font-size: 21px;
    height: 43px;
    justify-content: center;
    width: 43px;
}

.trip-floating-card div {
    display: flex;
    flex-direction: column;
}

.trip-floating-card strong {
    font-family: "Lora", serif;
    font-size: 20px;
    line-height: 1;
}

.trip-floating-card small {
    color: var(--trip-ink-soft);
    font-size: 10px;
    margin-top: 4px;
}

.trip-hero-wave {
    background: var(--trip-cream);
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
    bottom: -1px;
    height: 46px;
    left: -5%;
    position: absolute;
    width: 110%;
}

/* Listing intro */
.trip-intro {
    align-items: end;
    display: grid;
    gap: 40px;
    grid-template-columns: .85fr 1.15fr;
    padding: 90px 0 70px;
    position: relative;
}

.trip-intro h2,
.trip-section-head h2,
.trip-cta h2 {
    font-size: clamp(31px, 3.2vw, 45px);
    font-weight: 400;
    line-height: 1.16;
    margin: 11px 0 0;
}

.trip-intro > p {
    color: var(--trip-ink-soft);
    font-size: 15px;
    line-height: 1.85;
    margin: 0;
    max-width: 630px;
}

.trip-values {
    border-top: 1px solid var(--trip-line);
    display: flex;
    grid-column: 1 / -1;
    justify-content: space-between;
    margin-top: 10px;
    padding-top: 25px;
}

.trip-values span {
    color: var(--trip-green);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.trip-values i {
    color: var(--trip-saffron);
    font-style: normal;
    margin-right: 8px;
}

/* Cards */
.trip-journeys {
    background: #fffdf9;
    border-bottom: 1px solid #eee5d8;
    border-top: 1px solid #eee5d8;
    padding: 82px 0 100px;
}

.trip-section-head {
    align-items: end;
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 40px;
}

.trip-section-head h2 {
    margin-top: 10px;
}

.trip-filters {
    background: var(--trip-cream-deep);
    border-radius: 999px;
    display: flex;
    padding: 5px;
}

.trip-filters button {
    background: transparent;
    border: 0;
    border-radius: 999px;
    color: #68716d;
    cursor: pointer;
    font-family: inherit;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .04em;
    padding: 10px 17px;
    text-transform: uppercase;
}

.trip-filters button.is-active {
    background: var(--trip-white);
    box-shadow: 0 4px 15px rgba(40, 48, 45, .08);
    color: var(--trip-green);
}

.trip-card-grid {
    display: grid;
    gap: 26px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.trip-card {
    background: var(--trip-white);
    border: 1px solid #e9e1d6;
    border-radius: 17px;
    box-shadow: 0 7px 24px rgba(32, 45, 39, .055);
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease;
}

.trip-card[hidden] {
    display: none;
}

.trip-card:hover {
    box-shadow: var(--trip-shadow);
    transform: translateY(-6px);
}

.trip-card-image {
    display: block;
    height: 238px;
    overflow: hidden;
    position: relative;
}

.trip-card-image::after {
    background: linear-gradient(to top, rgba(11, 31, 28, .3), transparent 55%);
    content: "";
    inset: 0;
    position: absolute;
}

.trip-card-image img {
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
    width: 100%;
}

.trip-card:hover .trip-card-image img {
    transform: scale(1.045);
}

.trip-status,
.trip-duration {
    position: absolute;
    z-index: 2;
}

.trip-status {
    align-items: center;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, .92);
    border-radius: 999px;
    color: var(--trip-green);
    display: inline-flex;
    font-size: 10px;
    font-weight: 700;
    gap: 7px;
    left: 15px;
    letter-spacing: .09em;
    padding: 8px 11px;
    text-transform: uppercase;
    top: 15px;
}

.trip-status i {
    background: #3f9c75;
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(63, 156, 117, .15);
    height: 6px;
    width: 6px;
}

.trip-status.is-past i {
    background: #89928e;
    box-shadow: 0 0 0 3px rgba(137, 146, 142, .15);
}

.trip-duration {
    background: rgba(20, 47, 42, .84);
    border-radius: 7px;
    bottom: 13px;
    color: var(--trip-white);
    font-size: 10px;
    font-weight: 600;
    padding: 7px 10px;
    right: 13px;
}

.trip-card-body {
    flex: 1;
    padding: 23px 23px 18px;
}

.trip-card-date {
    align-items: center;
    color: var(--trip-saffron-dark);
    display: flex;
    font-size: 10px;
    font-weight: 700;
    gap: 7px;
    letter-spacing: .05em;
    margin-bottom: 11px;
    text-transform: uppercase;
}

.trip-card-date svg {
    fill: none;
    height: 15px;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.6;
    width: 15px;
}

.trip-card h3 {
    font-size: 23px;
    font-weight: 500;
    line-height: 1.24;
    margin-bottom: 10px;
}

.trip-card h3 a {
    text-decoration: none;
}

.trip-card-body > p {
    color: #68716d;
    font-size: 12px;
    line-height: 1.75;
    margin-bottom: 16px;
}

.trip-place-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.trip-place-chips span {
    background: var(--trip-cream);
    border: 1px solid #eee4d8;
    border-radius: 999px;
    color: #52625d;
    font-size: 9px;
    font-weight: 600;
    padding: 6px 9px;
}

.trip-card-foot {
    align-items: center;
    border-top: 1px solid #eee7dc;
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin: 0 23px;
    padding: 17px 0 20px;
}

.trip-card-foot > div {
    display: flex;
    flex-direction: column;
}

.trip-card-foot small {
    color: #8b918e;
    font-size: 8px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.trip-card-foot strong {
    color: var(--trip-green);
    font-family: "Lora", serif;
    font-size: 17px;
    margin-top: 2px;
}

.trip-card-foot > a {
    align-items: center;
    color: var(--trip-saffron-dark);
    display: flex;
    font-size: 11px;
    font-weight: 700;
    gap: 6px;
    text-decoration: none;
}

.trip-card-foot > a svg {
    height: 15px;
    width: 15px;
}

.trip-empty-state,
.trip-no-filter-results {
    background: var(--trip-white);
    border: 1px dashed #d9cdbd;
    border-radius: 18px;
    color: var(--trip-ink-soft);
    padding: 55px 25px;
    text-align: center;
}

.trip-empty-state span {
    color: var(--trip-saffron);
    font-family: serif;
    font-size: 42px;
}

.trip-empty-state h3 {
    font-size: 27px;
    margin: 12px 0;
}

.trip-empty-state p {
    margin: 0 auto 25px;
    max-width: 560px;
}

.trip-cta {
    background: var(--trip-green);
    color: var(--trip-white);
    overflow: hidden;
    position: relative;
}

.trip-cta::before {
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 50%;
    content: "";
    height: 430px;
    position: absolute;
    right: -110px;
    top: -190px;
    width: 430px;
}

.trip-cta-inner {
    align-items: center;
    display: flex;
    justify-content: space-between;
    gap: 35px;
    min-height: 230px;
    padding: 45px 0;
    position: relative;
}

.trip-cta .trip-section-kicker {
    color: #efb285;
}

.trip-cta h2 {
    color: var(--trip-white);
    font-size: clamp(29px, 3vw, 42px);
    margin-top: 9px;
}

.trip-button-light {
    background: var(--trip-white);
    color: var(--trip-green) !important;
    flex: 0 0 auto;
}

/* Detail hero */
.trip-detail-hero {
    background-image: var(--trip-hero-image);
    background-position: center;
    background-size: cover;
    color: var(--trip-white);
    min-height: 520px;
    position: relative;
}

.trip-detail-overlay {
    background:
        linear-gradient(90deg, rgba(10, 38, 34, .93) 0%, rgba(10, 38, 34, .68) 47%, rgba(10, 38, 34, .25) 100%),
        linear-gradient(0deg, rgba(11, 31, 28, .38), transparent 60%);
    inset: 0;
    position: absolute;
}

.trip-detail-hero-inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 520px;
    padding: 70px 0;
    position: relative;
    z-index: 1;
}

.trip-breadcrumb {
    align-items: center;
    color: rgba(255, 255, 255, .65);
    display: flex;
    flex-wrap: wrap;
    font-size: 10px;
    gap: 9px;
    letter-spacing: .05em;
    margin-bottom: 48px;
    text-transform: uppercase;
}

.trip-breadcrumb a {
    color: rgba(255, 255, 255, .72);
    text-decoration: none;
}

.trip-detail-hero .trip-status {
    align-self: flex-start;
    left: auto;
    margin-bottom: 17px;
    position: relative;
    top: auto;
}

.trip-detail-hero h1 {
    color: var(--trip-white);
    font-size: clamp(43px, 5.8vw, 74px);
    font-weight: 400;
    line-height: 1.06;
    margin-bottom: 18px;
    max-width: 780px;
}

.trip-detail-hero-inner > p {
    color: rgba(255, 255, 255, .75);
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 25px;
    max-width: 730px;
}

.trip-hero-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 11px 26px;
}

.trip-hero-facts span {
    align-items: center;
    color: rgba(255, 255, 255, .9);
    display: flex;
    font-size: 11px;
    gap: 8px;
}

.trip-hero-facts svg {
    fill: none;
    height: 17px;
    stroke: #efb285;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.5;
    width: 17px;
}

/* Detail content */
.trip-detail-main {
    background: #fffdf9;
    padding: 75px 0 100px;
}

.trip-detail-grid {
    align-items: start;
    display: grid;
    gap: 70px;
    grid-template-columns: minmax(0, 1fr) 315px;
}

.trip-detail-content {
    min-width: 0;
}

.trip-content-section {
    border-bottom: 1px solid var(--trip-line);
    padding: 0 0 70px;
    scroll-margin-top: 25px;
}

.trip-content-section + .trip-content-section {
    padding-top: 70px;
}

.trip-content-section h2 {
    font-size: clamp(31px, 3.3vw, 43px);
    font-weight: 400;
    line-height: 1.18;
    margin: 10px 0 23px;
}

.trip-rich-text {
    color: #53605d;
    font-size: 14px;
    line-height: 1.9;
}

.trip-rich-text p {
    margin-bottom: 15px;
}

.trip-rich-text ul {
    padding-left: 22px;
}

.trip-inclusions {
    display: grid;
    gap: 13px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 32px;
}

.trip-inclusions > div {
    background: var(--trip-cream);
    border: 1px solid #ede3d7;
    border-radius: 12px;
    display: grid;
    grid-template-columns: 38px 1fr;
    padding: 18px 14px;
}

.trip-inclusions span {
    align-items: center;
    background: #f4ddc8;
    border-radius: 50%;
    color: var(--trip-saffron-dark);
    display: flex;
    grid-row: 1 / 3;
    height: 30px;
    justify-content: center;
    margin-right: 8px;
    width: 30px;
}

.trip-inclusions strong {
    font-size: 10px;
    line-height: 1.3;
}

.trip-inclusions small {
    color: #7a817e;
    font-size: 8px;
    line-height: 1.45;
    margin-top: 4px;
}

.trip-section-heading-row {
    align-items: end;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.trip-section-heading-row > span {
    color: #8a918e;
    font-size: 9px;
    letter-spacing: .08em;
    margin-bottom: 26px;
    text-transform: uppercase;
}

.trip-gallery {
    display: grid;
    gap: 10px;
    grid-template-columns: 1.4fr .7fr .7fr;
    grid-template-rows: 170px 170px;
}

.trip-gallery-item {
    background: #ddd;
    border: 0;
    border-radius: 10px;
    cursor: zoom-in;
    overflow: hidden;
    padding: 0;
    position: relative;
}

.trip-gallery-item-1 {
    grid-row: 1 / 3;
}

.trip-gallery-item img {
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
    width: 100%;
}

.trip-gallery-item:hover img {
    transform: scale(1.04);
}

.trip-gallery-item::after {
    background: linear-gradient(to top, rgba(9, 34, 30, .58), transparent 55%);
    content: "";
    inset: 0;
    position: absolute;
}

.trip-gallery-item span,
.trip-gallery-item b {
    bottom: 12px;
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-size: 9px;
    font-weight: 600;
    left: 13px;
    position: absolute;
    z-index: 1;
}

.trip-gallery-item b {
    align-items: center;
    background: rgba(20, 47, 42, .8);
    border-radius: 999px;
    display: flex;
    inset: auto 10px 10px auto;
    padding: 6px 9px;
}

.trip-destination-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.trip-destination-card {
    background: var(--trip-white);
    border: 1px solid var(--trip-line);
    border-radius: 12px;
    overflow: hidden;
}

.trip-destination-card img {
    height: 170px;
    object-fit: cover;
    width: 100%;
}

.trip-destination-card div {
    padding: 18px;
}

.trip-destination-card h3 {
    font-size: 19px;
    margin-bottom: 7px;
}

.trip-destination-card p {
    color: #69716e;
    font-size: 10px;
    line-height: 1.65;
    margin: 0;
}

.trip-simple-places {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.trip-simple-places span {
    align-items: center;
    background: var(--trip-white);
    border: 1px solid var(--trip-line);
    border-radius: 999px;
    display: flex;
    font-size: 11px;
    font-weight: 600;
    gap: 8px;
    padding: 10px 14px;
}

.trip-simple-places i {
    color: var(--trip-saffron);
    font-style: normal;
}

.trip-timeline {
    margin-top: 4px;
}

.trip-day {
    border-bottom: 1px solid var(--trip-line);
}

.trip-day:first-child {
    border-top: 1px solid var(--trip-line);
}

.trip-day summary {
    align-items: center;
    cursor: pointer;
    display: grid;
    gap: 17px;
    grid-template-columns: 45px 1fr 24px;
    list-style: none;
    padding: 18px 0;
}

.trip-day summary::-webkit-details-marker {
    display: none;
}

.trip-day-number {
    align-items: center;
    background: var(--trip-cream-deep);
    border-radius: 50%;
    color: var(--trip-saffron-dark);
    display: flex;
    font-family: "Lora", serif;
    font-size: 15px;
    height: 42px;
    justify-content: center;
    width: 42px;
}

.trip-day summary div {
    display: flex;
    flex-direction: column;
}

.trip-day summary small {
    color: var(--trip-saffron-dark);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .08em;
    margin-bottom: 4px;
    text-transform: uppercase;
}

.trip-day summary strong {
    color: var(--trip-ink);
    font-family: "Lora", serif;
    font-size: 17px;
    font-weight: 500;
}

.trip-day summary i {
    border-bottom: 1.5px solid var(--trip-green);
    border-right: 1.5px solid var(--trip-green);
    height: 8px;
    transform: rotate(45deg);
    transition: transform .2s ease;
    width: 8px;
}

.trip-day[open] summary i {
    transform: rotate(225deg);
}

.trip-day-content {
    display: grid;
    gap: 18px;
    grid-template-columns: auto 1fr;
    padding: 0 0 22px 62px;
}

.trip-day-content img {
    border-radius: 8px;
    height: 90px;
    object-fit: cover;
    width: 125px;
}

.trip-day-content p {
    color: #636d69;
    font-size: 11px;
    line-height: 1.75;
    margin: 0;
}

.trip-itinerary-pending {
    align-items: center;
    background: var(--trip-cream);
    border: 1px dashed #d8cbbb;
    border-radius: 13px;
    display: flex;
    gap: 18px;
    padding: 23px;
}

.trip-itinerary-pending > span {
    align-items: center;
    background: #f4ddc8;
    border-radius: 50%;
    color: var(--trip-saffron-dark);
    display: flex;
    flex: 0 0 auto;
    height: 44px;
    justify-content: center;
    width: 44px;
}

.trip-itinerary-pending h3 {
    font-size: 18px;
    margin: 0 0 4px;
}

.trip-itinerary-pending p {
    color: #68716d;
    font-size: 10px;
    line-height: 1.65;
    margin: 0;
}

/* Booking card */
.trip-booking-card {
    background: var(--trip-white);
    border: 1px solid #e7ded0;
    border-radius: 16px;
    box-shadow: var(--trip-shadow);
    padding: 26px;
    position: sticky;
    top: 22px;
}

.trip-booking-label {
    color: #7b8380;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.trip-booking-price {
    color: var(--trip-green);
    font-family: "Lora", serif;
    font-size: 35px;
    line-height: 1.2;
    margin-top: 6px;
}

.trip-booking-price small {
    font-size: 19px;
    vertical-align: 8px;
}

.trip-booking-price b {
    font-size: 25px;
    font-weight: 500;
}

.trip-booking-divider {
    border-top: 1px solid var(--trip-line);
    margin: 20px 0;
}

.trip-booking-card dl {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 0 0 22px;
}

.trip-booking-card dl > div {
    align-items: center;
    display: flex;
    justify-content: space-between;
    gap: 14px;
}

.trip-booking-card dt {
    align-items: center;
    color: #7a817e;
    display: flex;
    font-size: 9px;
    font-weight: 500;
    gap: 7px;
}

.trip-booking-card dt span {
    color: var(--trip-saffron);
    font-size: 13px;
    width: 14px;
}

.trip-booking-card dd {
    color: var(--trip-ink);
    font-size: 9px;
    font-weight: 700;
    margin: 0;
    text-align: right;
}

.trip-booking-card > .trip-button {
    width: 100%;
}

.trip-external-link {
    color: var(--trip-green) !important;
    display: block;
    font-size: 9px;
    font-weight: 700;
    margin-top: 13px;
    text-align: center;
    text-decoration: none !important;
}

.trip-booking-help {
    align-items: center;
    background: var(--trip-cream);
    border-radius: 10px;
    display: flex;
    gap: 10px;
    margin-top: 20px;
    padding: 12px;
}

.trip-booking-help > span {
    align-items: center;
    border: 1px solid #d5c8b7;
    border-radius: 50%;
    color: var(--trip-saffron-dark);
    display: flex;
    font-family: serif;
    height: 30px;
    justify-content: center;
    width: 30px;
}

.trip-booking-help div {
    display: flex;
    flex-direction: column;
}

.trip-booking-help small {
    color: #858c89;
    font-size: 7px;
}

.trip-booking-help a {
    color: var(--trip-green);
    font-size: 9px;
    font-weight: 700;
    text-decoration: none;
}

.trip-mobile-booking {
    display: none;
}

/* Enquiry */
.trip-enquiry-section {
    border-bottom: 0;
    display: grid;
    gap: 35px;
    grid-template-columns: .8fr 1.2fr;
    padding-bottom: 0;
}

.trip-enquiry-intro > p {
    color: #67706d;
    font-size: 11px;
    line-height: 1.8;
}

.trip-contact-person {
    align-items: center;
    display: flex;
    gap: 11px;
    margin-top: 22px;
}

.trip-contact-person > span {
    align-items: center;
    background: var(--trip-green);
    border-radius: 50%;
    color: var(--trip-white);
    display: flex;
    font-size: 9px;
    font-weight: 700;
    height: 38px;
    justify-content: center;
    width: 38px;
}

.trip-contact-person div {
    display: flex;
    flex-direction: column;
}

.trip-contact-person small {
    color: #8b918e;
    font-size: 8px;
}

.trip-contact-person a {
    color: var(--trip-green);
    font-size: 11px;
    font-weight: 700;
    text-decoration: none;
}

.trip-form-card {
    background: var(--trip-white);
    border: 1px solid var(--trip-line);
    border-radius: 14px;
    box-shadow: 0 14px 38px rgba(32, 45, 39, .07);
    padding: 26px;
}

.trip-form-row {
    display: grid;
    gap: 12px;
    grid-template-columns: 1fr 1fr;
}

.trip-field {
    display: block;
    margin-bottom: 14px;
}

.trip-field > span {
    color: #3c4b47;
    display: block;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .04em;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.trip-field > span b {
    color: var(--trip-saffron-dark);
}

.trip-field input,
.trip-field textarea {
    background: #fdfbf7;
    border: 1px solid #e4dbce;
    border-radius: 8px;
    color: var(--trip-ink);
    font-family: inherit;
    font-size: 11px;
    margin: 0;
    outline: 0;
    padding: 11px 12px;
    resize: vertical;
    width: 100%;
}

.trip-field input {
    height: 42px;
}

.trip-field input:focus,
.trip-field textarea:focus {
    background: var(--trip-white);
    border-color: var(--trip-saffron);
    box-shadow: 0 0 0 3px rgba(220, 125, 63, .1);
}

.trip-field small {
    color: #b54435;
    display: block;
    font-size: 8px;
    margin-top: 4px;
}

.trip-submit {
    width: 100%;
}

.trip-privacy-note {
    color: #909693;
    font-size: 7px;
    line-height: 1.5;
    margin: 10px 0 0 !important;
    text-align: center;
}

.trip-honeypot {
    left: -10000px;
    position: absolute;
}

.trip-form-error {
    background: #fff0ed;
    border: 1px solid #f0c4bd;
    border-radius: 8px;
    color: #9c3529;
    font-size: 10px;
    margin-bottom: 15px;
    padding: 10px 12px;
}

.trip-form-success {
    padding: 25px 10px;
    text-align: center;
}

.trip-form-success > span {
    align-items: center;
    background: #e4f3e9;
    border-radius: 50%;
    color: #2c7958;
    display: flex;
    font-size: 20px;
    height: 52px;
    justify-content: center;
    margin: 0 auto 14px;
    width: 52px;
}

.trip-form-success h3 {
    font-size: 23px;
    margin-bottom: 8px;
}

.trip-form-success p {
    color: #67706d;
    font-size: 10px;
    line-height: 1.7;
}

.trip-form-success a {
    color: var(--trip-saffron-dark);
    font-size: 10px;
    font-weight: 700;
}

/* Gallery lightbox */
.trip-lightbox[hidden] {
    display: none;
}

.trip-lightbox {
    align-items: center;
    background: rgba(6, 22, 19, .96);
    display: flex;
    inset: 0;
    justify-content: center;
    padding: 55px 80px;
    position: fixed;
    z-index: 100000;
}

.trip-lightbox figure {
    margin: 0;
    max-height: 90vh;
    max-width: 1100px;
    text-align: center;
}

.trip-lightbox img {
    border-radius: 8px;
    max-height: calc(90vh - 45px);
    max-width: 100%;
    object-fit: contain;
}

.trip-lightbox figcaption {
    color: rgba(255, 255, 255, .8);
    font-size: 11px;
    margin-top: 10px;
}

.trip-lightbox button {
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    font-size: 30px;
    height: 46px;
    line-height: 1;
    position: absolute;
    width: 46px;
}

.trip-lightbox-close {
    right: 25px;
    top: 25px;
}

.trip-lightbox-prev {
    left: 25px;
    top: calc(50% - 23px);
}

.trip-lightbox-next {
    right: 25px;
    top: calc(50% - 23px);
}

.trip-no-scroll {
    overflow: hidden !important;
}

@media (max-width: 1024px) {
    .trip-hero-inner {
        gap: 30px;
        grid-template-columns: 1.1fr .9fr;
    }

    .trip-arch {
        right: 0;
    }

    .trip-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .trip-detail-grid {
        gap: 35px;
        grid-template-columns: minmax(0, 1fr) 285px;
    }

    .trip-gallery {
        grid-template-rows: 145px 145px;
    }

    .trip-enquiry-section {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .trip-shell {
        width: min(100% - 34px, 580px);
    }

    .trip-hero-listing {
        min-height: 0;
    }

    .trip-hero-inner {
        display: flex;
        flex-direction: column;
        gap: 50px;
        min-height: 0;
        padding: 70px 0 95px;
    }

    .trip-hero-copy {
        max-width: 100%;
    }

    .trip-hero-copy h1 {
        font-size: clamp(42px, 12vw, 60px);
    }

    .trip-hero-copy > p {
        font-size: 14px;
        line-height: 1.75;
    }

    .trip-hero-actions {
        align-items: flex-start;
        flex-direction: column;
    }

    .trip-hero-visual {
        min-height: 410px;
        width: 100%;
    }

    .trip-arch {
        height: 400px;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        width: min(330px, 88%);
    }

    .trip-floating-card {
        bottom: 4px;
        left: 0;
    }

    .trip-hero-wave {
        height: 30px;
    }

    .trip-intro {
        align-items: start;
        display: flex;
        flex-direction: column;
        gap: 20px;
        padding: 65px 0 55px;
    }

    .trip-values {
        gap: 14px;
        justify-content: flex-start;
        overflow-x: auto;
        width: 100%;
    }

    .trip-values span {
        flex: 0 0 auto;
        font-size: 10px;
    }

    .trip-journeys {
        padding: 62px 0 75px;
    }

    .trip-section-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .trip-filters {
        max-width: 100%;
        overflow-x: auto;
    }

    .trip-card-grid {
        grid-template-columns: 1fr;
    }

    .trip-card-image {
        height: 225px;
    }

    .trip-cta-inner {
        align-items: flex-start;
        flex-direction: column;
        padding: 55px 0;
    }

    .trip-detail-hero,
    .trip-detail-hero-inner {
        min-height: 500px;
    }

    .trip-detail-overlay {
        background: linear-gradient(90deg, rgba(10, 38, 34, .92), rgba(10, 38, 34, .48));
    }

    .trip-breadcrumb {
        margin-bottom: 35px;
    }

    .trip-detail-hero h1 {
        font-size: clamp(40px, 12vw, 60px);
    }

    .trip-detail-main {
        padding: 42px 0 75px;
    }

    .trip-detail-grid {
        display: block;
    }

    .trip-booking-card {
        display: none;
    }

    .trip-mobile-booking {
        display: block;
        margin-bottom: 38px;
    }

    .trip-mobile-booking .trip-button {
        width: 100%;
    }

    .trip-content-section {
        padding-bottom: 52px;
    }

    .trip-content-section + .trip-content-section {
        padding-top: 52px;
    }

    .trip-inclusions {
        grid-template-columns: 1fr;
    }

    .trip-gallery {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 220px 120px 120px;
    }

    .trip-gallery-item-1 {
        grid-column: 1 / -1;
        grid-row: auto;
    }

    .trip-gallery-item-5 {
        display: none;
    }

    .trip-destination-grid {
        grid-template-columns: 1fr;
    }

    .trip-day-content {
        display: block;
        padding-left: 0;
    }

    .trip-day-content img {
        height: 150px;
        margin-bottom: 12px;
        width: 100%;
    }

    .trip-enquiry-section {
        display: block;
    }

    .trip-form-card {
        margin-top: 28px;
        padding: 20px;
    }

    .trip-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .trip-lightbox {
        padding: 60px 16px;
    }

    .trip-lightbox-prev,
    .trip-lightbox-next {
        bottom: 18px;
        top: auto;
    }

    .trip-lightbox-prev {
        left: calc(50% - 55px);
    }

    .trip-lightbox-next {
        right: calc(50% - 55px);
    }
}

@media (max-width: 390px) {
    .trip-shell {
        width: calc(100% - 28px);
    }

    .trip-button {
        padding-left: 20px;
        padding-right: 20px;
    }

    .trip-hero-copy h1,
    .trip-detail-hero h1 {
        font-size: 39px;
    }

    .trip-card-body {
        padding-left: 18px;
        padding-right: 18px;
    }

    .trip-card-foot {
        margin-left: 18px;
        margin-right: 18px;
    }

    .trip-gallery {
        grid-template-rows: 190px 110px;
    }

    .trip-gallery-item-4,
    .trip-gallery-item-5 {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .trip-page *,
    .trip-page *::before,
    .trip-page *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }
}

body.home #desktop-nav-wrapper .dropdown-menu,
body.home #desktop-nav-wrapper .sub-dropdown-menu {
    background: #fffdf7 !important;
    z-index: 999 !important;
}

body.home #desktop-nav-wrapper .dropdown-menu a,
body.home #desktop-nav-wrapper .sub-dropdown-menu a,
body.home #mobile-menu-sheet a,
body.home #mobile-menu-sheet p {
    color: #182c2a !important;
}

/* Premium trip detail experience */
.trip-detail {
    --trip-display: "DM Serif Display", Georgia, serif;
    --trip-body: "Manrope", "Inter", sans-serif;
    background: #f9f5ec;
    font-family: var(--trip-body);
}

.trip-detail h1,
.trip-detail h2,
.trip-detail h3 {
    font-family: var(--trip-display);
    font-weight: 400;
}

.trip-detail [id] {
    scroll-margin-top: 105px;
}

.trip-detail-hero {
    background-position: center 42%;
    min-height: 690px;
    isolation: isolate;
}

.trip-detail-overlay {
    background:
        linear-gradient(90deg, rgba(8, 31, 28, .96) 0%, rgba(9, 39, 35, .86) 39%, rgba(9, 36, 32, .45) 68%, rgba(9, 31, 28, .2) 100%),
        linear-gradient(0deg, rgba(8, 29, 26, .62), transparent 52%);
}

.trip-detail-pattern {
    background-image:
        radial-gradient(circle at center, rgba(255, 255, 255, .13) 0 1px, transparent 1.5px),
        linear-gradient(45deg, transparent 48%, rgba(255, 255, 255, .035) 49%, rgba(255, 255, 255, .035) 51%, transparent 52%);
    background-size: 25px 25px, 80px 80px;
    inset: 0;
    mask-image: linear-gradient(90deg, #000, transparent 72%);
    opacity: .4;
    pointer-events: none;
    position: absolute;
}

.trip-detail-hero-inner {
    min-height: 690px;
    padding-bottom: 125px;
    padding-top: 72px;
}

.trip-detail-hero-copy {
    max-width: 790px;
}

.trip-breadcrumb {
    font-size: 11px;
    font-weight: 700;
    gap: 12px;
    letter-spacing: .08em;
    margin-bottom: 58px;
}

.trip-breadcrumb a {
    transition: color .2s ease;
}

.trip-breadcrumb a:hover {
    color: #fff;
}

.trip-hero-kicker {
    align-items: center;
    color: #f0c29e;
    display: flex;
    font-size: 12px;
    font-weight: 700;
    gap: 10px;
    letter-spacing: .13em;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.trip-hero-kicker span {
    align-items: center;
    border: 1px solid rgba(240, 194, 158, .55);
    border-radius: 50%;
    display: inline-flex;
    font-family: Georgia, serif;
    font-size: 14px;
    height: 29px;
    justify-content: center;
    width: 29px;
}

.trip-detail-hero .trip-status {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, .11);
    border: 1px solid rgba(255, 255, 255, .2);
    color: #fff;
    font-size: 11px;
    letter-spacing: .08em;
    margin-bottom: 16px;
    padding: 8px 13px;
}

.trip-detail-hero h1 {
    font-size: clamp(58px, 6vw, 88px);
    letter-spacing: -.035em;
    line-height: .98;
    margin-bottom: 22px;
    max-width: 850px;
    text-wrap: balance;
}

.trip-detail-hero-copy > p {
    color: rgba(255, 255, 255, .79);
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 32px;
    max-width: 720px;
}

.trip-detail-hero .trip-hero-actions {
    gap: 28px;
}

.trip-detail-hero .trip-button {
    min-height: 57px;
    padding: 0 27px;
}

.trip-hero-call {
    align-items: center;
    color: #fff !important;
    display: grid;
    gap: 0 11px;
    grid-template-columns: 43px 1fr;
    text-decoration: none !important;
}

.trip-hero-call > span {
    align-items: center;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 50%;
    display: flex;
    grid-row: 1 / 3;
    height: 43px;
    justify-content: center;
    width: 43px;
}

.trip-hero-call small {
    color: rgba(255, 255, 255, .62);
    font-size: 10px;
}

.trip-hero-call strong {
    font-size: 13px;
}

.trip-detail-curve {
    background: #f9f5ec;
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
    bottom: -1px;
    height: 42px;
    left: -4%;
    position: absolute;
    width: 108%;
}

.trip-detail-main {
    background:
        radial-gradient(circle at 4% 20%, rgba(218, 164, 105, .09), transparent 24%),
        #f9f5ec;
    padding: 0 0 110px;
}

.trip-summary-ribbon {
    align-items: stretch;
    background: #fff;
    border: 1px solid rgba(223, 210, 192, .9);
    border-radius: 20px;
    box-shadow: 0 24px 65px rgba(24, 44, 42, .12);
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
    margin-top: -62px;
    min-height: 124px;
    overflow: hidden;
    position: relative;
    z-index: 3;
}

.trip-summary-ribbon > div {
    align-items: center;
    display: flex;
    gap: 14px;
    padding: 27px 24px;
    position: relative;
}

.trip-summary-ribbon > div + div::before {
    background: #ece3d6;
    content: "";
    height: 45px;
    left: 0;
    position: absolute;
    top: calc(50% - 22px);
    width: 1px;
}

.trip-summary-icon {
    align-items: center;
    background: #f7eadc;
    border-radius: 50%;
    color: var(--trip-saffron-dark);
    display: flex;
    flex: 0 0 auto;
    height: 44px;
    justify-content: center;
    width: 44px;
}

.trip-summary-ribbon p {
    display: flex;
    flex-direction: column;
    margin: 0;
}

.trip-summary-ribbon small {
    color: #8a8f8c;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .08em;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.trip-summary-ribbon strong {
    color: #1b3632;
    font-size: 12px;
    line-height: 1.45;
}

.trip-summary-ribbon > a {
    align-items: center;
    background: var(--trip-green);
    color: #fff !important;
    display: flex;
    font-size: 12px;
    font-weight: 800;
    gap: 12px;
    justify-content: center;
    min-width: 190px;
    padding: 25px;
    text-decoration: none !important;
    transition: background .2s ease;
}

.trip-summary-ribbon > a:hover {
    background: var(--trip-green-dark);
}

.trip-page-nav {
    align-items: center;
    border-bottom: 1px solid #e3d9ca;
    display: flex;
    gap: 28px;
    margin-bottom: 75px;
    padding: 30px 0 23px;
}

.trip-page-nav span {
    color: #8b8b85;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .12em;
    margin-right: auto;
    text-transform: uppercase;
}

.trip-page-nav a {
    color: #41504c;
    font-size: 12px;
    font-weight: 700;
    position: relative;
    text-decoration: none;
}

.trip-page-nav a::after {
    background: var(--trip-saffron);
    bottom: -24px;
    content: "";
    height: 2px;
    left: 0;
    position: absolute;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .2s ease;
    width: 100%;
}

.trip-page-nav a:hover::after {
    transform: scaleX(1);
}

.trip-detail-grid {
    gap: 72px;
    grid-template-columns: minmax(0, 1fr) 350px;
}

.trip-content-section {
    border-bottom-color: #e3d9ca;
    padding-bottom: 84px;
    position: relative;
}

.trip-content-section + .trip-content-section {
    padding-top: 84px;
}

.trip-section-number {
    color: rgba(29, 81, 72, .1);
    font-family: var(--trip-display);
    font-size: 80px;
    line-height: 1;
    position: absolute;
    right: 0;
    top: -10px;
}

.trip-content-section + .trip-content-section .trip-section-number {
    top: 72px;
}

.trip-detail .trip-section-kicker {
    font-size: 11px;
    letter-spacing: .2em;
}

.trip-content-section h2 {
    font-size: clamp(42px, 4.1vw, 58px);
    letter-spacing: -.025em;
    line-height: 1.06;
    margin: 12px 0 26px;
    max-width: 720px;
    text-wrap: balance;
}

.trip-section-heading > p,
.trip-section-lead {
    color: #6b746f;
    font-size: 14px;
    line-height: 1.8;
    margin: -10px 0 28px;
    max-width: 690px;
}

.trip-rich-text {
    color: #495752;
    font-size: 15px;
    line-height: 1.9;
}

.trip-rich-text p {
    margin-bottom: 18px;
}

.trip-rich-text strong {
    color: var(--trip-ink);
}

.trip-inclusions {
    gap: 15px;
    margin-top: 38px;
}

.trip-inclusions > div {
    background: rgba(255, 255, 255, .68);
    border: 1px solid #e3d8c8;
    border-radius: 16px;
    grid-template-columns: 48px 1fr;
    min-height: 126px;
    padding: 22px 16px;
    transition: background .2s ease, box-shadow .2s ease, transform .2s ease;
}

.trip-inclusions > div:hover {
    background: #fff;
    box-shadow: 0 14px 35px rgba(33, 53, 47, .08);
    transform: translateY(-3px);
}

.trip-inclusions span {
    height: 38px;
    margin-right: 10px;
    width: 38px;
}

.trip-inclusions strong {
    font-size: 12px;
    line-height: 1.45;
}

.trip-inclusions small {
    font-size: 10px;
    line-height: 1.55;
    margin-top: 5px;
}

.trip-visual-story {
    align-items: center;
    display: grid;
    gap: 0;
    grid-template-columns: 1.1fr .9fr;
}

.trip-visual-story-image {
    border-radius: 210px 210px 18px 18px;
    box-shadow: 0 24px 55px rgba(26, 49, 43, .15);
    height: 500px;
    overflow: hidden;
    position: relative;
}

.trip-visual-story-image::after {
    background: linear-gradient(to top, rgba(12, 45, 39, .35), transparent 45%);
    content: "";
    inset: 0;
    position: absolute;
}

.trip-visual-story-image img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.trip-visual-story-copy {
    background: var(--trip-green);
    border-radius: 0 18px 18px 0;
    color: #fff;
    margin-left: -1px;
    padding: 55px 45px;
}

.trip-visual-story-copy .trip-section-kicker {
    color: #efb285;
}

.trip-visual-story-copy h2 {
    color: #fff;
    font-size: clamp(34px, 3.1vw, 48px);
    margin-bottom: 22px;
}

.trip-visual-story-copy p {
    color: rgba(255, 255, 255, .72);
    font-size: 13px;
    line-height: 1.8;
}

.trip-visual-story-copy a {
    color: #fff;
    display: inline-flex;
    font-size: 11px;
    font-weight: 800;
    gap: 9px;
    margin-top: 12px;
    text-decoration: none;
}

.trip-gallery {
    gap: 13px;
    grid-template-rows: 205px 205px;
}

.trip-gallery-item {
    border-radius: 16px;
}

.trip-gallery-item span,
.trip-gallery-item b {
    bottom: 16px;
    font-size: 11px;
    left: 16px;
}

.trip-destination-grid {
    gap: 20px;
}

.trip-destination-card {
    border-radius: 18px;
    box-shadow: 0 12px 36px rgba(32, 45, 39, .05);
    transition: box-shadow .25s ease, transform .25s ease;
}

.trip-destination-card:hover {
    box-shadow: 0 20px 44px rgba(32, 45, 39, .11);
    transform: translateY(-4px);
}

.trip-destination-card img {
    height: 230px;
}

.trip-destination-card div {
    padding: 24px;
}

.trip-destination-card h3 {
    font-size: 26px;
}

.trip-destination-card p {
    font-size: 12px;
    line-height: 1.75;
}

.trip-simple-places span {
    font-size: 12px;
    padding: 12px 17px;
}

.trip-timeline {
    margin-top: 30px;
    position: relative;
}

.trip-timeline::before {
    background: #e3d6c5;
    bottom: 35px;
    content: "";
    left: 28px;
    position: absolute;
    top: 35px;
    width: 1px;
}

.trip-day,
.trip-day:first-child {
    border: 0;
    margin-bottom: 14px;
    position: relative;
}

.trip-day summary {
    background: rgba(255, 255, 255, .72);
    border: 1px solid #e3d9ca;
    border-radius: 16px;
    gap: 20px;
    grid-template-columns: 56px 1fr 30px;
    min-height: 94px;
    padding: 18px 22px 18px 0;
    transition: background .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.trip-day[open] summary {
    background: #fff;
    border-color: #d8c7b1;
    border-radius: 16px 16px 0 0;
    box-shadow: 0 12px 32px rgba(33, 53, 47, .07);
}

.trip-day-number {
    background: var(--trip-saffron);
    border: 5px solid #f9f5ec;
    color: #fff;
    font-family: var(--trip-body);
    font-size: 12px;
    font-weight: 800;
    height: 56px;
    margin-left: 0;
    position: relative;
    width: 56px;
    z-index: 2;
}

.trip-day summary small {
    font-size: 9px;
    letter-spacing: .13em;
    margin-bottom: 6px;
}

.trip-day summary strong {
    font-family: var(--trip-display);
    font-size: 22px;
}

.trip-day-content {
    background: #fff;
    border: 1px solid #d8c7b1;
    border-radius: 0 0 16px 16px;
    border-top: 0;
    gap: 23px;
    grid-template-columns: 180px 1fr;
    padding: 22px 25px 25px 76px;
}

.trip-day-content img {
    border-radius: 12px;
    height: 120px;
    width: 180px;
}

.trip-day-content p {
    font-size: 13px;
    line-height: 1.8;
}

.trip-itinerary-pending {
    align-items: flex-start;
    background:
        linear-gradient(120deg, rgba(255, 255, 255, .96), rgba(255, 249, 240, .93)),
        #fff;
    border: 1px solid #ddcfbc;
    border-radius: 20px;
    box-shadow: 0 18px 45px rgba(33, 53, 47, .07);
    gap: 22px;
    margin-top: 31px;
    overflow: hidden;
    padding: 31px;
    position: relative;
}

.trip-itinerary-pending::after {
    border: 1px solid rgba(220, 125, 63, .17);
    border-radius: 50%;
    content: "";
    height: 180px;
    position: absolute;
    right: -60px;
    top: -80px;
    width: 180px;
}

.trip-itinerary-pending > span {
    background: var(--trip-green);
    color: #fff;
    height: 52px;
    width: 52px;
}

.trip-itinerary-pending small {
    color: var(--trip-saffron-dark);
    display: block;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .13em;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.trip-itinerary-pending h3 {
    font-size: 27px;
    margin-bottom: 8px;
}

.trip-itinerary-pending p {
    font-size: 12px;
    line-height: 1.75;
    max-width: 580px;
}

.trip-itinerary-pending a {
    color: var(--trip-green);
    display: inline-flex;
    font-size: 10px;
    font-weight: 800;
    gap: 7px;
    margin-top: 8px;
    text-decoration: none;
}

.trip-booking-card {
    border: 1px solid #ded2c2;
    border-radius: 22px;
    box-shadow: 0 24px 60px rgba(28, 48, 42, .12);
    overflow: hidden;
    padding: 0 28px 28px;
    top: 25px;
}

.trip-booking-top {
    align-items: center;
    background: var(--trip-green);
    display: flex;
    gap: 12px;
    margin: 0 -28px 27px;
    padding: 18px 28px;
}

.trip-booking-om {
    align-items: center;
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 50%;
    color: #f2c59f;
    display: flex;
    font-family: Georgia, serif;
    height: 40px;
    justify-content: center;
    width: 40px;
}

.trip-booking-top div {
    display: flex;
    flex-direction: column;
}

.trip-booking-top small {
    color: rgba(255, 255, 255, .62);
    font-size: 8px;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.trip-booking-top strong {
    color: #fff;
    font-family: var(--trip-display);
    font-size: 18px;
    font-weight: 400;
}

.trip-booking-label {
    font-size: 9px;
}

.trip-booking-price {
    font-family: var(--trip-display);
    font-size: 43px;
    margin-top: 8px;
}

.trip-booking-price b {
    font-size: 31px;
}

.trip-booking-card dl {
    gap: 17px;
}

.trip-booking-card dt,
.trip-booking-card dd {
    font-size: 10px;
}

.trip-booking-card dt span {
    font-size: 15px;
}

.trip-booking-card > .trip-button {
    min-height: 55px;
}

.trip-external-link {
    font-size: 10px;
}

.trip-booking-help {
    border: 1px solid #eee3d5;
    border-radius: 13px;
    margin-top: 22px;
    padding: 14px;
}

.trip-booking-help small {
    font-size: 8px;
}

.trip-booking-help a {
    font-size: 10px;
}

.trip-enquiry-section {
    background: var(--trip-green);
    border-radius: 26px;
    color: #fff;
    gap: 38px;
    grid-template-columns: .9fr 1.1fr;
    margin-top: 84px;
    padding: 52px !important;
}

.trip-enquiry-section .trip-section-kicker {
    color: #efb285;
}

.trip-enquiry-section h2 {
    color: #fff;
    font-size: clamp(38px, 4vw, 52px);
    margin-bottom: 20px;
}

.trip-enquiry-intro > p {
    color: rgba(255, 255, 255, .7);
    font-size: 13px;
    line-height: 1.8;
}

.trip-enquiry-benefits {
    display: flex;
    flex-direction: column;
    gap: 11px;
    list-style: none;
    margin: 26px 0;
    padding: 0;
}

.trip-enquiry-benefits li {
    align-items: center;
    color: rgba(255, 255, 255, .84);
    display: flex;
    font-size: 11px;
    gap: 9px;
}

.trip-enquiry-benefits i {
    align-items: center;
    background: rgba(239, 178, 133, .14);
    border-radius: 50%;
    color: #efb285;
    display: flex;
    font-size: 7px;
    height: 20px;
    justify-content: center;
    width: 20px;
}

.trip-contact-person {
    border-top: 1px solid rgba(255, 255, 255, .13);
    margin-top: 27px;
    padding-top: 24px;
}

.trip-contact-person > span {
    background: #efb285;
    color: var(--trip-green);
    height: 45px;
    width: 45px;
}

.trip-contact-person small {
    color: rgba(255, 255, 255, .58);
    font-size: 9px;
}

.trip-contact-person a {
    color: #fff;
    font-size: 13px;
}

.trip-form-card {
    border: 0;
    border-radius: 20px;
    box-shadow: 0 24px 50px rgba(7, 27, 24, .2);
    padding: 30px;
}

.trip-form-heading {
    border-bottom: 1px solid #e8dfd3;
    display: flex;
    flex-direction: column;
    margin-bottom: 23px;
    padding-bottom: 18px;
}

.trip-form-heading span {
    color: var(--trip-ink);
    font-family: var(--trip-display);
    font-size: 25px;
}

.trip-form-heading strong {
    color: #818884;
    font-size: 9px;
    font-weight: 600;
    margin-top: 3px;
}

.trip-field {
    margin-bottom: 17px;
}

.trip-field > span {
    font-size: 9px;
    margin-bottom: 8px;
}

.trip-field input,
.trip-field textarea {
    background: #fcfaf6;
    border-radius: 10px;
    font-size: 12px;
    padding: 13px 14px;
}

.trip-field input {
    height: 47px;
}

.trip-field textarea {
    min-height: 105px;
}

.trip-field small {
    font-size: 9px;
}

.trip-privacy-note {
    font-size: 8px;
    margin-top: 13px !important;
}

.trip-form-error {
    font-size: 11px;
}

.trip-form-success h3 {
    font-size: 28px;
}

.trip-form-success p,
.trip-form-success a {
    font-size: 11px;
}

@media (max-width: 1100px) {
    .trip-summary-ribbon {
        grid-template-columns: repeat(3, 1fr);
    }

    .trip-summary-ribbon > a {
        grid-column: 1 / -1;
        min-height: 58px;
        padding: 15px;
    }

    .trip-detail-grid {
        gap: 38px;
        grid-template-columns: minmax(0, 1fr) 310px;
    }

    .trip-enquiry-section {
        grid-template-columns: 1fr;
        padding: 42px !important;
    }
}

@media (max-width: 767px) {
    .trip-detail-hero,
    .trip-detail-hero-inner {
        min-height: 650px;
    }

    .trip-detail-hero {
        background-position: 58% center;
    }

    .trip-detail-overlay {
        background:
            linear-gradient(0deg, rgba(7, 29, 26, .97) 4%, rgba(7, 31, 27, .83) 65%, rgba(7, 31, 27, .53) 100%);
    }

    .trip-detail-hero-inner {
        justify-content: flex-end;
        padding-bottom: 85px;
        padding-top: 90px;
    }

    .trip-breadcrumb {
        margin-bottom: auto;
        max-width: 100%;
        overflow: hidden;
        padding-top: 10px;
        white-space: nowrap;
    }

    .trip-breadcrumb span:last-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .trip-hero-kicker {
        font-size: 9px;
        letter-spacing: .1em;
    }

    .trip-detail-hero h1 {
        font-size: clamp(47px, 13.5vw, 67px);
        line-height: 1;
        margin-bottom: 18px;
    }

    .trip-detail-hero-copy > p {
        display: -webkit-box;
        font-size: 13px;
        line-height: 1.65;
        margin-bottom: 24px;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
        overflow: hidden;
    }

    .trip-detail-hero .trip-hero-actions {
        align-items: stretch;
        flex-direction: column;
        gap: 18px;
    }

    .trip-detail-hero .trip-button {
        width: 100%;
    }

    .trip-hero-call {
        align-self: flex-start;
    }

    .trip-detail-curve {
        height: 23px;
    }

    .trip-summary-ribbon {
        grid-template-columns: 1fr;
        margin-top: -34px;
    }

    .trip-summary-ribbon > div {
        padding: 20px 21px;
    }

    .trip-summary-ribbon > div + div::before {
        height: 1px;
        left: 21px;
        right: 21px;
        top: 0;
        width: auto;
    }

    .trip-summary-ribbon > a {
        grid-column: auto;
    }

    .trip-page-nav {
        gap: 22px;
        margin-bottom: 54px;
        overflow-x: auto;
        padding: 25px 0 20px;
        scrollbar-width: none;
    }

    .trip-page-nav::-webkit-scrollbar {
        display: none;
    }

    .trip-page-nav span {
        display: none;
    }

    .trip-page-nav a {
        flex: 0 0 auto;
        font-size: 11px;
    }

    .trip-page-nav a::after {
        bottom: -20px;
    }

    .trip-mobile-booking {
        display: none;
    }

    .trip-content-section,
    .trip-content-section + .trip-content-section {
        padding-bottom: 64px;
        padding-top: 0;
    }

    .trip-content-section + .trip-content-section {
        padding-top: 64px;
    }

    .trip-section-number,
    .trip-content-section + .trip-content-section .trip-section-number {
        font-size: 58px;
        top: 0;
    }

    .trip-content-section + .trip-content-section .trip-section-number {
        top: 55px;
    }

    .trip-content-section h2 {
        font-size: clamp(38px, 11vw, 51px);
        padding-right: 25px;
    }

    .trip-section-heading > p,
    .trip-section-lead,
    .trip-rich-text {
        font-size: 13px;
    }

    .trip-inclusions {
        gap: 12px;
    }

    .trip-inclusions > div {
        min-height: 0;
    }

    .trip-visual-story {
        display: block;
    }

    .trip-visual-story-image {
        border-radius: 150px 150px 15px 15px;
        height: 420px;
    }

    .trip-visual-story-copy {
        border-radius: 0 0 16px 16px;
        margin: -2px 0 0;
        padding: 35px 25px;
    }

    .trip-visual-story-copy h2 {
        font-size: 37px;
        padding: 0;
    }

    .trip-gallery {
        gap: 9px;
        grid-template-rows: 240px 130px 130px;
    }

    .trip-destination-card img {
        height: 220px;
    }

    .trip-day summary {
        gap: 13px;
        grid-template-columns: 50px 1fr 22px;
        padding-right: 15px;
    }

    .trip-day-number {
        height: 50px;
        width: 50px;
    }

    .trip-day summary strong {
        font-size: 19px;
    }

    .trip-day-content {
        padding: 18px;
    }

    .trip-day-content img {
        height: 180px;
        width: 100%;
    }

    .trip-itinerary-pending {
        display: block;
        padding: 25px;
    }

    .trip-itinerary-pending > span {
        margin-bottom: 18px;
    }

    .trip-itinerary-pending h3 {
        font-size: 25px;
    }

    .trip-enquiry-section {
        border-radius: 22px;
        margin: 64px -8px 0;
        padding: 32px 20px !important;
    }

    .trip-enquiry-section h2 {
        font-size: 40px;
        padding-right: 0;
    }

    .trip-form-card {
        padding: 22px 18px;
    }
}

@media (max-width: 390px) {
    .trip-detail-hero h1 {
        font-size: 45px;
    }

    .trip-detail-hero .trip-button {
        font-size: 11px;
    }

    .trip-summary-ribbon strong {
        font-size: 11px;
    }

    .trip-content-section h2 {
        font-size: 36px;
    }

    .trip-visual-story-image {
        height: 360px;
    }
}
