.navbar-brand img,
.footer-about img,
.cms-login-logo {
    object-fit: contain;
}

:root {
    --cranberry-blue: #58a5eb;
    --cranberry-blue-deep: #1d70bb;
    --cranberry-blue-soft: #eff7ff;
    --cranberry-blue-line: #cfe8ff;
    --cranberry-warm: #fb7f6a;
    --cranberry-warm-deep: #e66b55;
    --cranberry-navy: #102840;
    --cranberry-navy-2: #17395a;
    --cranberry-navy-3: #0a1b2e;
    --cranberry-white-soft: rgba(255, 255, 255, .78);
    --cranberry-ink: #1f3147;
    --cranberry-muted: #6c7b8d;
}

.cranberry-site-header {
    position: relative;
    z-index: 2000;
    background: #fff;
    font-family: rubik, sans-serif;
}

.cranberry-site-header .header_menu {
    background: #fff;
}

.cranberry-site-header .header_menu.fixed-top {
    box-shadow: 0 18px 45px rgba(88, 165, 235, .18);
}

.cranberry-flight-nav {
    padding: 16px 0 0;
}

.cranberry-nav-board {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: end;
    gap: 18px;
}

.cranberry-brand-tab {
    align-self: stretch;
    display: flex;
    min-height: 86px;
    width: 235px;
    align-items: center;
    padding: 14px 24px 18px;
    background: #fff;
    border: 1px solid var(--cranberry-blue-line);
    border-bottom: 0;
    border-radius: 28px 28px 0 0;
    box-shadow: 0 -10px 35px rgba(88, 165, 235, .14);
}

.cranberry-brand-tab img {
    display: block;
    width: 188px;
    max-height: 58px;
    object-fit: contain;
}

.cranberry-route-tabs {
    min-width: 0;
    padding: 0 8px;
    border-bottom: 1px solid var(--cranberry-blue-line);
}

.cranberry-route-tabs .navbar-nav {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: end;
    justify-content: center;
    gap: 0;
    float: none;
    margin: 0;
}

.cranberry-route-tabs li {
    display: block;
    background: transparent !important;
}

.cranberry-route-tab {
    position: relative;
    display: flex !important;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    padding: 0 16px !important;
    color: var(--cranberry-ink) !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
    background: var(--cranberry-blue-soft) !important;
    border: 1px solid var(--cranberry-blue-line) !important;
    border-bottom: 0 !important;
    border-radius: 18px 18px 0 0;
    margin-left: -1px;
}

.cranberry-route-tab:before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 8px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--cranberry-blue);
    transform: translateX(-50%);
    opacity: .25;
}

.cranberry-route-tab:hover,
.cranberry-route-tab:focus,
.cranberry-route-tab.is-home {
    z-index: 2;
    background: #fff !important;
    color: var(--cranberry-blue-deep) !important;
    box-shadow: 0 -8px 24px rgba(88, 165, 235, .16);
}

.cranberry-route-tab:hover:before,
.cranberry-route-tab:focus:before,
.cranberry-route-tab.is-home:before {
    opacity: 1;
}

.cranberry-action-tabs {
    display: flex;
    align-items: end;
    gap: 8px;
}

.cranberry-contact-tab,
.cranberry-primary-tab,
.cranberry-footer-button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    border-radius: 18px 18px 0 0;
    font-family: poppins, sans-serif;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
}

.cranberry-contact-tab {
    gap: 8px;
    padding: 0 14px;
    background: #fff;
    border: 1px solid var(--cranberry-blue-line);
    border-bottom: 0;
    color: var(--cranberry-blue-deep);
}

.cranberry-primary-tab,
.cranberry-footer-button {
    padding: 0 20px;
    background: var(--cranberry-blue);
    border: 1px solid var(--cranberry-blue);
    color: #fff !important;
    box-shadow: 0 -10px 26px rgba(88, 165, 235, .26);
}

.cranberry-primary-tab:hover,
.cranberry-primary-tab:focus,
.cranberry-footer-button:hover,
.cranberry-footer-button:focus {
    background: var(--cranberry-blue-deep);
    border-color: var(--cranberry-blue-deep);
    color: #fff !important;
}

.cranberry-mobile-menu {
    display: none;
    position: relative;
}

.cranberry-mobile-menu summary {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0 16px;
    background: var(--cranberry-blue-soft);
    border: 1px solid var(--cranberry-blue-line);
    border-radius: 16px 16px 0 0;
    color: var(--cranberry-blue-deep);
    cursor: pointer;
    font-family: poppins, sans-serif;
    font-size: 13px;
    font-weight: 700;
    list-style: none;
}

.cranberry-mobile-menu summary::-webkit-details-marker {
    display: none;
}

.cranberry-mobile-menu-panel {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: min(330px, calc(100vw - 30px));
    max-height: calc(100vh - 125px);
    overflow-y: auto;
    padding: 10px;
    background: #fff;
    border: 1px solid var(--cranberry-blue-line);
    border-radius: 0 0 22px 22px;
    box-shadow: 0 22px 52px rgba(88, 165, 235, .22);
    z-index: 1000;
}

.cranberry-mobile-menu-panel a {
    display: block;
    padding: 13px 14px;
    border-bottom: 1px solid var(--cranberry-blue-line);
    color: var(--cranberry-ink);
    font-weight: 600;
}

.cranberry-mobile-menu-panel a:last-child {
    border-bottom: 0;
}

.cranberry-mobile-menu-panel .cranberry-mobile-menu-cta {
    margin-top: 8px;
    background: var(--cranberry-blue);
    color: #fff !important;
    text-align: center;
}

.cranberry-site-footer {
    position: relative;
    overflow: hidden;
    background: #fff !important;
    color: var(--cranberry-ink);
    background-image: none !important;
    background-attachment: scroll;
}

.cranberry-footer-route {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    height: 16px;
    background: var(--cranberry-blue-soft);
}

.cranberry-footer-route span {
    border-right: 1px solid #fff;
    background: linear-gradient(90deg, transparent 0, transparent calc(100% - 20px), var(--cranberry-blue) calc(100% - 20px), var(--cranberry-blue) calc(100% - 14px), transparent calc(100% - 14px));
}

.cranberry-footer-main {
    padding: 70px 0 26px;
    background: linear-gradient(180deg, #fff 0%, var(--cranberry-blue-soft) 100%);
}

.cranberry-footer-shell {
    display: grid;
    grid-template-columns: minmax(230px, .75fr) minmax(360px, 1.3fr) minmax(220px, .65fr);
    gap: 24px;
    align-items: stretch;
}

.cranberry-footer-brand,
.cranberry-footer-ticket,
.cranberry-footer-tab {
    background: #fff;
    border: 1px solid var(--cranberry-blue-line);
    box-shadow: 0 18px 46px rgba(88, 165, 235, .14);
}

.cranberry-footer-brand {
    padding: 28px;
    border-radius: 30px 30px 8px 8px;
}

.cranberry-footer-brand img {
    width: 220px;
    max-height: 62px;
    object-fit: contain;
}

.cranberry-footer-brand p {
    margin: 18px 0 22px;
    color: var(--cranberry-muted);
}

.cranberry-footer-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
    gap: 0;
}

.cranberry-footer-tab {
    padding: 26px 22px;
    border-radius: 28px 28px 8px 8px;
    margin-left: -1px;
}

.cranberry-footer-tab h4,
.cranberry-footer-ticket span {
    margin: 0 0 18px;
    color: var(--cranberry-blue-deep);
    font-family: poppins, sans-serif;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .4px;
    text-transform: uppercase;
}

.cranberry-footer-tab h4:after {
    display: none;
}

.cranberry-footer-tab li {
    display: block;
    margin-bottom: 11px;
}

.cranberry-footer-tab a,
.cranberry-footer-tab p,
.cranberry-footer-social span {
    color: var(--cranberry-muted) !important;
    font-size: 14px;
    line-height: 1.45;
}

.cranberry-footer-tab a:hover,
.cranberry-footer-tab a:focus {
    color: var(--cranberry-blue-deep) !important;
}

.cranberry-footer-contact a,
.cranberry-footer-contact p,
.cranberry-footer-social a {
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 9px;
    align-items: start;
    margin: 0 0 11px;
}

.cranberry-footer-contact i,
.cranberry-footer-social i {
    margin-top: 3px;
    color: var(--cranberry-blue);
}

.cranberry-footer-social li {
    margin-bottom: 10px;
}

.cranberry-footer-ticket {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 28px;
    border-radius: 30px 30px 8px 8px;
    background: var(--cranberry-blue);
    color: #fff;
}

.cranberry-footer-ticket span,
.cranberry-footer-ticket a {
    color: #fff !important;
}

.cranberry-footer-ticket strong {
    display: block;
    margin: 22px 0;
    color: #fff;
    font-family: poppins, sans-serif;
    font-size: 26px;
    line-height: 1.2;
}

.cranberry-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 34px;
    padding-top: 18px;
    border-top: 1px solid var(--cranberry-blue-line);
}

.cranberry-footer-bottom p,
.cranberry-footer-bottom a {
    margin: 0;
    color: var(--cranberry-muted);
    font-size: 13px;
}

.cranberry-footer-bottom a:hover,
.cranberry-footer-bottom a:focus {
    color: var(--cranberry-blue-deep);
}

.trend-image img,
.about-image img,
.video-button img,
.testimonial-item1 img {
    object-fit: cover;
    width: 100%;
}

.testimonial-item1 .author-info img {
    width: 80px;
    border-radius: 50%;
}

.cranberry-testimonials {
    position: relative;
    overflow: hidden;
    padding: 92px 0 78px;
    scroll-margin-top: 98px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .98) 0%, rgba(247, 251, 255, .96) 50%, #fff 100%),
        linear-gradient(rgba(88, 165, 235, .08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(88, 165, 235, .08) 1px, transparent 1px);
    background-size: auto, 76px 76px, 76px 76px;
}

.cranberry-testimonials:before,
.cranberry-testimonials:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    z-index: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(88, 165, 235, .36), transparent);
}

.cranberry-testimonials:before {
    top: 0;
}

.cranberry-testimonials:after {
    bottom: 0;
}

.cranberry-testimonials > .container {
    position: relative;
    z-index: 2;
}

.cranberry-testimonial-editorial {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr) 96px;
    align-items: center;
    gap: 26px;
    margin-bottom: 34px;
    padding: 0 0 28px;
    border-bottom: 1px solid rgba(207, 232, 255, .86);
}

.cranberry-testimonial-rail {
    justify-self: start;
    padding: 14px 10px;
    border-left: 3px solid var(--cranberry-warm);
    color: var(--cranberry-blue-deep);
    font-family: poppins, sans-serif;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}

.cranberry-testimonial-heading {
    max-width: none;
    text-align: left;
}

.cranberry-testimonial-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--cranberry-blue-deep);
    font-family: poppins, sans-serif;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0;
}

.cranberry-testimonial-kicker:before {
    content: "";
    width: 36px;
    height: 1px;
    background: var(--cranberry-warm);
}

.cranberry-testimonial-heading h2 {
    position: relative;
    display: block;
    margin: 0;
    color: var(--cranberry-navy);
    font-size: 40px;
    line-height: 1.16;
    letter-spacing: 0;
    white-space: nowrap;
}

.cranberry-testimonial-heading h2:after {
    content: "";
    position: absolute;
    left: 0;
    right: 4px;
    bottom: 4px;
    z-index: -1;
    height: 10px;
    background: rgba(88, 165, 235, .16);
}

.cranberry-testimonial-heading h2 span {
    color: var(--cranberry-blue-deep);
}

.cranberry-testimonial-mark {
    justify-self: end;
    display: grid;
    width: 86px;
    height: 86px;
    place-items: center;
    border: 1px dashed rgba(88, 165, 235, .58);
    border-radius: 50%;
    background: rgba(255, 255, 255, .78);
    color: var(--cranberry-blue-deep);
    box-shadow: inset 0 0 0 8px rgba(239, 247, 255, .88);
}

.cranberry-testimonial-mark span,
.cranberry-testimonial-mark strong {
    display: block;
    line-height: 1;
}

.cranberry-testimonial-mark span {
    align-self: end;
    font-size: 11px;
    font-weight: 800;
}

.cranberry-testimonial-mark strong {
    align-self: start;
    color: var(--cranberry-navy);
    font-size: 28px;
}

.cranberry-review-accessible-list {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

.cranberry-testimonial-marquee {
    position: relative;
    z-index: 2;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    overflow: hidden;
    padding: 10px 0 46px;
}

.cranberry-testimonial-marquee:before,
.cranberry-testimonial-marquee:after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 4;
    width: 140px;
    pointer-events: none;
}

.cranberry-testimonial-marquee:before {
    left: 0;
    background: linear-gradient(90deg, #f7fbff 0%, rgba(247, 251, 255, 0) 100%);
}

.cranberry-testimonial-marquee:after {
    right: 0;
    background: linear-gradient(270deg, #f7fbff 0%, rgba(247, 251, 255, 0) 100%);
}

.cranberry-testimonial-lane {
    width: max-content;
    transform-origin: center;
}

.cranberry-testimonial-lane-1 {
    transform: rotate(-.7deg);
}

.cranberry-testimonial-lane-2 {
    margin-top: 24px;
    transform: rotate(.7deg);
}

.cranberry-testimonial-track {
    display: flex;
    width: max-content;
    gap: 22px;
    padding-left: 22px;
    animation: cranberryReviewMarquee 54s linear infinite;
    will-change: transform;
}

.cranberry-testimonial-lane-2 .cranberry-testimonial-track {
    animation-direction: reverse;
    animation-duration: 62s;
}

.cranberry-testimonial-marquee:hover .cranberry-testimonial-track {
    animation-play-state: paused;
}

.cranberry-review-card {
    --review-offset: 0px;
    --review-tilt: 0deg;
    position: relative;
    display: flex;
    flex: 0 0 auto;
    width: clamp(370px, 33vw, 474px);
    min-height: 246px;
    overflow: hidden;
    border: 1px solid rgba(207, 232, 255, .95);
    border-radius: 8px;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 18px 42px rgba(16, 40, 64, .09);
    color: var(--cranberry-ink);
    transform: translateY(var(--review-offset)) rotate(var(--review-tilt));
    transition: transform .38s ease, border-color .38s ease, box-shadow .38s ease, background .38s ease;
}

.cranberry-review-card:nth-child(3n + 2) {
    --review-offset: 14px;
    --review-tilt: .45deg;
}

.cranberry-review-card:nth-child(4n + 3) {
    --review-offset: -6px;
    --review-tilt: -.35deg;
}

.cranberry-review-card:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--cranberry-blue), var(--cranberry-warm), var(--cranberry-blue));
    transform: scaleX(.24);
    transform-origin: left;
    transition: transform .38s ease;
}

.cranberry-review-card:after {
    content: "";
    position: absolute;
    top: 20px;
    bottom: 20px;
    left: 82px;
    width: 1px;
    background: repeating-linear-gradient(180deg, rgba(88, 165, 235, .5) 0 5px, transparent 5px 12px);
}

.cranberry-review-ribbon {
    position: relative;
    display: flex;
    width: 82px;
    flex: 0 0 82px;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 24px 12px 22px;
    background: linear-gradient(180deg, var(--cranberry-blue-soft), #fff);
    color: var(--cranberry-blue-deep);
    text-align: center;
}

.cranberry-review-ribbon:before,
.cranberry-review-ribbon:after {
    content: "";
    position: absolute;
    right: -10px;
    z-index: 2;
    width: 20px;
    height: 20px;
    border: 1px solid rgba(207, 232, 255, .95);
    border-radius: 50%;
    background: #f7fbff;
}

.cranberry-review-ribbon:before {
    top: -10px;
}

.cranberry-review-ribbon:after {
    bottom: -10px;
}

.cranberry-review-ribbon span {
    font-family: poppins, sans-serif;
    font-size: 11px;
    font-weight: 800;
    line-height: 1.25;
    text-transform: uppercase;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}

.cranberry-review-ribbon strong {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 50%;
    background: var(--cranberry-navy);
    color: #fff;
    font-size: 14px;
    line-height: 1;
}

.cranberry-review-body {
    display: flex;
    min-width: 0;
    flex: 1 1 auto;
    flex-direction: column;
    justify-content: space-between;
    gap: 16px;
    padding: 26px 26px 22px;
}

.cranberry-review-meta,
.cranberry-review-author,
.cranberry-review-route {
    display: flex;
    align-items: center;
    gap: 14px;
}

.cranberry-review-meta {
    justify-content: space-between;
}

.cranberry-review-stars {
    display: inline-flex;
    gap: 3px;
    color: var(--cranberry-warm);
    font-size: 12px;
    line-height: 1;
}

.cranberry-review-quote-icon {
    display: inline-flex;
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(88, 165, 235, .24);
    border-radius: 50%;
    background: var(--cranberry-blue-soft);
    color: var(--cranberry-blue-deep);
    font-size: 14px;
    transition: transform .35s ease, background .35s ease, color .35s ease;
}

.cranberry-review-card p {
    margin: 0;
    color: var(--cranberry-ink);
    font-size: 15px;
    line-height: 1.68;
}

.cranberry-review-route span {
    display: block;
    height: 1px;
    flex: 1 1 auto;
    background: linear-gradient(90deg, rgba(88, 165, 235, .18), rgba(251, 127, 106, .68), rgba(88, 165, 235, .18));
}

.cranberry-review-route i {
    color: var(--cranberry-warm);
    font-size: 13px;
    transform: rotate(10deg);
    transition: transform .35s ease;
}

.cranberry-review-author {
    justify-content: flex-start;
}

.cranberry-review-author img {
    width: 50px;
    height: 50px;
    flex: 0 0 50px;
    border: 3px solid #fff;
    border-radius: 50%;
    box-shadow: 0 12px 24px rgba(88, 165, 235, .22);
    object-fit: cover;
    transition: transform .35s ease, box-shadow .35s ease;
}

.cranberry-review-author h3 {
    margin: 0 0 2px;
    color: var(--cranberry-navy);
    font-family: poppins, sans-serif;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: 0;
}

.cranberry-review-author span {
    display: block;
    color: var(--cranberry-muted);
    font-size: 12px;
    line-height: 1.4;
}

.cranberry-review-card:hover,
.cranberry-review-card:focus-within {
    border-color: rgba(88, 165, 235, .58);
    background: #fff;
    box-shadow: 0 26px 62px rgba(16, 40, 64, .16);
    transform: translateY(calc(var(--review-offset) - 11px)) rotate(0deg);
}

.cranberry-review-card:hover:before,
.cranberry-review-card:focus-within:before {
    transform: scaleX(1);
}

.cranberry-review-card:hover .cranberry-review-quote-icon,
.cranberry-review-card:focus-within .cranberry-review-quote-icon {
    background: var(--cranberry-blue);
    color: #fff;
    transform: translateY(-2px) rotate(-8deg);
}

.cranberry-review-card:hover .cranberry-review-route i,
.cranberry-review-card:focus-within .cranberry-review-route i {
    transform: translateX(6px) rotate(10deg);
}

.cranberry-review-card:hover .cranberry-review-author img,
.cranberry-review-card:focus-within .cranberry-review-author img {
    box-shadow: 0 16px 30px rgba(88, 165, 235, .3);
    transform: scale(1.06);
}

.cranberry-review-cta {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 4px;
    overflow: hidden;
    padding: 24px 26px;
    border: 1px solid rgba(88, 165, 235, .18);
    border-radius: 8px;
    background: var(--cranberry-navy);
    box-shadow: 0 22px 48px rgba(16, 40, 64, .14);
}

.cranberry-review-cta:before {
    content: "";
    position: absolute;
    left: 26px;
    right: 26px;
    top: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--cranberry-warm), var(--cranberry-blue), transparent);
}

.cranberry-review-cta h3 {
    position: relative;
    margin: 0;
    color: #fff;
    font-size: 21px;
    line-height: 1.35;
    letter-spacing: 0;
}

.cranberry-review-cta a {
    position: relative;
    display: inline-flex;
    min-height: 48px;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 19px;
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 8px;
    background: #fff;
    color: var(--cranberry-blue-deep);
    font-family: poppins, sans-serif;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0;
}

.cranberry-review-cta a i {
    font-size: 12px;
    transition: transform .28s ease;
}

.cranberry-review-cta a:hover,
.cranberry-review-cta a:focus {
    background: var(--cranberry-warm);
    border-color: var(--cranberry-warm);
    color: #fff;
    transform: translateY(-2px);
}

.cranberry-review-cta a:hover i,
.cranberry-review-cta a:focus i {
    transform: translateX(3px);
}

.cranberry-review-cta a:focus-visible {
    outline: 3px solid var(--cranberry-warm);
    outline-offset: 4px;
}

@keyframes cranberryReviewMarquee {
    from {
        transform: translate3d(0, 0, 0);
    }
    to {
        transform: translate3d(-50%, 0, 0);
    }
}

@media (max-width: 991px) {
    .cranberry-testimonials {
        padding: 76px 0 64px;
    }

    .cranberry-testimonial-editorial {
        grid-template-columns: 62px minmax(0, 1fr) 74px;
        gap: 18px;
    }

    .cranberry-testimonial-heading h2 {
        font-size: 32px;
        white-space: normal;
    }

    .cranberry-testimonial-mark {
        width: 70px;
        height: 70px;
        box-shadow: inset 0 0 0 7px rgba(239, 247, 255, .88);
    }

    .cranberry-testimonial-mark strong {
        font-size: 22px;
    }

    .cranberry-testimonial-marquee:before,
    .cranberry-testimonial-marquee:after {
        width: 80px;
    }

    .cranberry-review-card {
        width: 380px;
    }
}

@media (max-width: 767px) {
    .cranberry-testimonials {
        padding: 62px 0 52px;
    }

    .cranberry-testimonial-editorial {
        display: block;
        margin-bottom: 24px;
        padding-bottom: 22px;
        text-align: center;
    }

    .cranberry-testimonial-rail,
    .cranberry-testimonial-mark {
        display: none;
    }

    .cranberry-testimonial-heading {
        max-width: 100%;
        text-align: center;
    }

    .cranberry-testimonial-kicker {
        justify-content: center;
    }

    .cranberry-testimonial-heading h2 {
        font-size: 27px;
    }

    .cranberry-testimonial-heading h2:after {
        height: 7px;
        bottom: 3px;
    }

    .cranberry-testimonial-marquee {
        padding-bottom: 28px;
    }

    .cranberry-testimonial-marquee:before,
    .cranberry-testimonial-marquee:after {
        width: 34px;
    }

    .cranberry-testimonial-lane {
        transform: none;
    }

    .cranberry-testimonial-lane-2 {
        display: none;
    }

    .cranberry-testimonial-track {
        gap: 14px;
        padding-left: 36px;
        animation-duration: 92s;
    }

    .cranberry-review-card {
        width: calc(100vw - 62px);
        min-height: 276px;
        transform: none;
    }

    .cranberry-review-card:nth-child(3n + 2),
    .cranberry-review-card:nth-child(4n + 3) {
        --review-offset: 0px;
        --review-tilt: 0deg;
    }

    .cranberry-review-ribbon {
        width: 58px;
        flex-basis: 58px;
        padding: 20px 8px;
    }

    .cranberry-review-card:after {
        left: 58px;
    }

    .cranberry-review-ribbon strong {
        width: 34px;
        height: 34px;
        font-size: 13px;
    }

    .cranberry-review-body {
        gap: 14px;
        padding: 22px 20px 20px;
    }

    .cranberry-review-card p {
        font-size: 14px;
        line-height: 1.66;
    }

    .cranberry-review-cta {
        flex-direction: column;
        align-items: stretch;
        padding: 22px 20px 20px;
        text-align: center;
    }

    .cranberry-review-cta h3 {
        font-size: 18px;
    }

    .cranberry-review-cta a {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .cranberry-testimonial-track {
        animation: none;
        transform: none;
    }

    .cranberry-review-card,
    .cranberry-review-card:before,
    .cranberry-review-quote-icon,
    .cranberry-review-route i,
    .cranberry-review-author img,
    .cranberry-review-cta a,
    .cranberry-review-cta a i {
        transition: none;
    }
}

.cranberry-testimonials {
    padding: 86px 0 72px;
    background: linear-gradient(180deg, #fff 0%, #f8fcff 54%, #fff 100%);
}

.cranberry-testimonial-editorial {
    display: block;
    max-width: 920px;
    margin: 0 auto 34px;
    padding: 0 0 22px;
    border-bottom: 1px solid rgba(207, 232, 255, .82);
    text-align: center;
}

.cranberry-testimonial-rail,
.cranberry-testimonial-mark {
    display: none;
}

.cranberry-testimonial-heading {
    max-width: none;
    text-align: center;
}

.cranberry-testimonial-kicker {
    justify-content: center;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--cranberry-blue-deep);
}

.cranberry-testimonial-kicker:after {
    content: "";
    width: 36px;
    height: 1px;
    background: var(--cranberry-warm);
}

.cranberry-testimonial-heading h2 {
    display: block;
    color: var(--cranberry-navy);
    font-size: 40px;
    line-height: 1.16;
    white-space: normal;
}

.cranberry-testimonial-heading h2:after {
    display: none;
}

.cranberry-testimonial-heading h2 span {
    color: var(--cranberry-blue-deep);
}

.cranberry-testimonial-marquee {
    padding: 4px 0 34px;
}

.cranberry-testimonial-marquee:before,
.cranberry-testimonial-marquee:after {
    width: 118px;
}

.cranberry-testimonial-lane,
.cranberry-testimonial-lane-1,
.cranberry-testimonial-lane-2 {
    width: max-content;
    transform: none;
}

.cranberry-testimonial-lane-2 {
    margin-top: 18px;
}

.cranberry-testimonial-track {
    gap: 18px;
    padding-left: 18px;
    animation-duration: 64s;
}

.cranberry-testimonial-lane-2 .cranberry-testimonial-track {
    padding-left: 170px;
    animation-duration: 72s;
}

.cranberry-review-card,
.cranberry-review-card:nth-child(3n + 2),
.cranberry-review-card:nth-child(4n + 3) {
    --review-offset: 0px;
    --review-tilt: 0deg;
    display: flex;
    width: clamp(330px, 31vw, 442px);
    min-height: 220px;
    flex-direction: column;
    justify-content: space-between;
    padding: 25px;
    border-color: rgba(207, 232, 255, .92);
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 16px 38px rgba(16, 40, 64, .075);
    transform: none;
}

.cranberry-review-card:before {
    left: 25px;
    right: 25px;
    height: 2px;
    background: linear-gradient(90deg, var(--cranberry-blue), var(--cranberry-warm));
    transform: none;
}

.cranberry-review-card:after {
    display: none;
}

.cranberry-review-card p {
    position: relative;
    margin: 0;
    color: var(--cranberry-ink);
    font-size: 15px;
    line-height: 1.72;
}

.cranberry-review-card p:before {
    content: "\201C";
    margin-right: 6px;
    color: rgba(88, 165, 235, .55);
    font-size: 34px;
    line-height: 0;
    vertical-align: -12px;
}

.cranberry-review-author {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid rgba(207, 232, 255, .78);
}

.cranberry-review-author img {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
}

.cranberry-review-stars {
    color: var(--cranberry-warm);
    font-size: 11px;
}

.cranberry-review-stars i {
    color: var(--cranberry-warm) !important;
}

.cranberry-review-card:hover,
.cranberry-review-card:focus-within {
    border-color: rgba(88, 165, 235, .52);
    box-shadow: 0 23px 54px rgba(16, 40, 64, .13);
    transform: translateY(-6px);
}

.cranberry-review-card:hover .cranberry-review-author img,
.cranberry-review-card:focus-within .cranberry-review-author img {
    transform: scale(1.04);
}

.cranberry-review-cta {
    margin-top: 0;
    padding: 22px 24px;
}

@media (max-width: 991px) {
    .cranberry-testimonial-heading h2 {
        font-size: 32px;
    }

    .cranberry-review-card {
        width: 360px;
    }
}

@media (max-width: 767px) {
    .cranberry-testimonials {
        padding: 60px 0 50px;
    }

    .cranberry-testimonial-editorial {
        margin-bottom: 24px;
        padding-bottom: 18px;
    }

    .cranberry-testimonial-heading h2 {
        font-size: 27px;
    }

    .cranberry-testimonial-lane-2 {
        display: none;
    }

    .cranberry-testimonial-track {
        gap: 14px;
        padding-left: 24px;
        animation-duration: 82s;
    }

    .cranberry-review-card {
        width: calc(100vw - 56px);
        min-height: 250px;
        padding: 22px;
    }

    .cranberry-review-author {
        grid-template-columns: auto minmax(0, 1fr);
    }

    .cranberry-review-stars {
        grid-column: 2;
    }
}

.cranberry-about-atelier {
    position: relative;
    overflow: hidden;
    padding: 84px 0 78px;
    background: linear-gradient(180deg, #fff 0%, #f8fcff 54%, #fff 100%);
}

.cranberry-about-atelier:before,
.cranberry-about-atelier:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(88, 165, 235, .38), transparent);
}

.cranberry-about-atelier:before {
    top: 0;
}

.cranberry-about-atelier:after {
    bottom: 0;
}

.cranberry-about-atelier > .container {
    width: calc(100% - 70px);
    max-width: none;
}

.cranberry-about-grid {
    display: grid;
    grid-template-columns: minmax(0, .86fr) minmax(390px, 1.14fr);
    gap: 58px;
    align-items: start;
}

.cranberry-about-heading,
.cranberry-about-copy {
    position: relative;
    z-index: 2;
    animation: cranberryAboutRise .78s ease both;
}

.cranberry-about-heading {
    max-width: 1120px;
    margin: 0 0 42px;
}

.cranberry-about-kicker {
    display: inline-flex;
    margin-bottom: 14px;
    color: var(--cranberry-blue-deep);
    font-family: poppins, sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .4px;
    line-height: 1.2;
    text-transform: uppercase;
}

.cranberry-about-heading h2 {
    max-width: 1160px;
    margin: 0;
    color: var(--cranberry-navy);
    font-size: 43px;
    line-height: 1.12;
}

.cranberry-about-heading h2 span {
    display: block;
    white-space: nowrap;
}

.cranberry-about-lede {
    max-width: 620px;
    margin: 20px 0 0;
    color: var(--cranberry-muted);
    font-size: 17px;
    line-height: 1.78;
}

.cranberry-about-steps {
    display: grid;
    gap: 0;
    max-width: 650px;
    margin: 32px 0 0;
    border-top: 1px solid rgba(207, 232, 255, .95);
}

.cranberry-about-steps p {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 18px;
    margin: 0;
    padding: 18px 0;
    border-bottom: 1px solid rgba(207, 232, 255, .95);
    color: var(--cranberry-ink);
    font-size: 15px;
    line-height: 1.65;
    transition: color .25s ease, transform .25s ease;
}

.cranberry-about-steps p:hover {
    color: var(--cranberry-blue-deep);
    transform: translateX(7px);
}

.cranberry-about-steps span {
    color: var(--cranberry-warm);
    font-family: poppins, sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .4px;
}

.cranberry-about-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin-top: 32px;
}

.cranberry-about-primary,
.cranberry-about-link {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-family: poppins, sans-serif;
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, background .25s ease, color .25s ease;
}

.cranberry-about-primary {
    gap: 9px;
    padding: 0 22px;
    background: linear-gradient(135deg, var(--cranberry-blue) 0%, var(--cranberry-blue-deep) 100%);
    border: 1px solid var(--cranberry-blue);
    color: #fff !important;
    box-shadow: 0 18px 35px rgba(88, 165, 235, .26);
}

.cranberry-about-primary:hover,
.cranberry-about-primary:focus {
    background: linear-gradient(135deg, var(--cranberry-blue-deep) 0%, var(--cranberry-navy-2) 100%);
    color: #fff !important;
    transform: translateY(-3px);
    box-shadow: 0 24px 44px rgba(29, 112, 187, .28);
}

.cranberry-about-link {
    padding: 0 18px;
    background: #fff;
    border: 1px solid var(--cranberry-blue-line);
    color: var(--cranberry-blue-deep) !important;
}

.cranberry-about-link:hover,
.cranberry-about-link:focus {
    border-color: var(--cranberry-blue);
    color: var(--cranberry-navy) !important;
    transform: translateY(-3px);
}

.cranberry-about-visual {
    position: relative;
    min-height: 520px;
    isolation: isolate;
    animation: cranberryAboutFloatIn .9s ease .12s both;
}

.cranberry-about-photo {
    position: absolute;
    overflow: hidden;
    margin: 0;
    background: var(--cranberry-blue-soft);
    border: 1px solid rgba(255, 255, 255, .72);
    border-radius: 8px;
    box-shadow: 0 26px 70px rgba(16, 40, 64, .16);
    transition: transform .55s ease, box-shadow .55s ease, filter .55s ease;
}

.cranberry-about-photo:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(16, 40, 64, .02) 12%, rgba(16, 40, 64, .34) 100%);
    opacity: .42;
    transition: opacity .45s ease;
}

.cranberry-about-photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.03);
    transition: transform .75s ease, filter .75s ease;
}

.cranberry-about-photo-main {
    top: 0;
    right: 36px;
    width: min(480px, 76%);
    height: 430px;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 64px), calc(100% - 64px) 100%, 0 100%);
}

.cranberry-about-photo-side {
    left: 2px;
    bottom: 22px;
    z-index: 2;
    width: min(265px, 45%);
    height: 330px;
    clip-path: polygon(0 42px, 42px 0, 100% 0, 100% 100%, 0 100%);
}

.cranberry-about-visual:hover .cranberry-about-photo-main,
.cranberry-about-visual:focus-within .cranberry-about-photo-main {
    box-shadow: 0 34px 80px rgba(16, 40, 64, .21);
    transform: translate3d(-10px, -8px, 0) rotate(-1.2deg);
}

.cranberry-about-visual:hover .cranberry-about-photo-side,
.cranberry-about-visual:focus-within .cranberry-about-photo-side {
    box-shadow: 0 30px 70px rgba(16, 40, 64, .2);
    transform: translate3d(12px, -10px, 0) rotate(1.4deg);
}

.cranberry-about-visual:hover .cranberry-about-photo img,
.cranberry-about-visual:focus-within .cranberry-about-photo img {
    filter: saturate(1.08) contrast(1.04);
    transform: scale(1.1);
}

.cranberry-about-visual:hover .cranberry-about-photo:after,
.cranberry-about-visual:focus-within .cranberry-about-photo:after {
    opacity: .25;
}

.cranberry-about-note {
    position: absolute;
    right: 0;
    bottom: 132px;
    z-index: 4;
    min-width: 242px;
    padding: 18px 20px;
    background: rgba(255, 255, 255, .94);
    border: 1px solid var(--cranberry-blue-line);
    border-left: 4px solid var(--cranberry-warm);
    border-radius: 8px;
    box-shadow: 0 18px 42px rgba(16, 40, 64, .12);
    backdrop-filter: blur(12px);
}

.cranberry-about-note span {
    display: block;
    color: var(--cranberry-muted);
    font-family: poppins, sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .4px;
    line-height: 1;
    text-transform: uppercase;
}

.cranberry-about-note strong {
    display: block;
    margin-top: 8px;
    color: var(--cranberry-navy);
    font-size: 16px;
    line-height: 1.35;
}

.cranberry-route-line {
    position: absolute;
    inset: 44px 44px 70px 96px;
    z-index: -1;
    border: 1px solid rgba(88, 165, 235, .25);
    border-radius: 8px;
    transform: rotate(-6deg);
}

.cranberry-route-line:before,
.cranberry-route-line:after,
.cranberry-route-line span {
    content: "";
    position: absolute;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: var(--cranberry-blue);
    box-shadow: 0 0 0 8px rgba(88, 165, 235, .12);
    animation: cranberryRoutePulse 2.8s ease-in-out infinite;
}

.cranberry-route-line:before {
    top: -7px;
    left: 18%;
}

.cranberry-route-line:after {
    right: 17%;
    bottom: -7px;
    animation-delay: .7s;
}

.cranberry-route-line span:nth-child(1) {
    top: 30%;
    right: -7px;
    animation-delay: 1.1s;
}

.cranberry-route-line span:nth-child(2) {
    left: -7px;
    bottom: 24%;
    background: var(--cranberry-warm);
    box-shadow: 0 0 0 8px rgba(251, 127, 106, .13);
    animation-delay: 1.5s;
}

.cranberry-route-line span:nth-child(3) {
    display: none;
}

@keyframes cranberryAboutRise {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes cranberryAboutFloatIn {
    from {
        opacity: 0;
        transform: translateY(28px) scale(.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes cranberryRoutePulse {
    0%,
    100% {
        transform: scale(.82);
        opacity: .56;
    }
    50% {
        transform: scale(1);
        opacity: 1;
    }
}

@media (max-width: 1199px) {
    .cranberry-about-grid {
        grid-template-columns: minmax(0, .95fr) minmax(360px, 1.05fr);
        gap: 38px;
    }

    .cranberry-about-heading h2 {
        font-size: 42px;
    }

    .cranberry-about-visual {
        min-height: 500px;
    }
}

@media (max-width: 991px) {
    .cranberry-about-atelier {
        padding: 76px 0;
    }

    .cranberry-about-grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .cranberry-about-heading,
    .cranberry-about-heading h2,
    .cranberry-about-lede {
        max-width: none;
    }

    .cranberry-about-heading h2 {
        font-size: 38px;
    }

    .cranberry-about-heading h2 span {
        white-space: normal;
    }

    .cranberry-about-visual {
        width: min(680px, 100%);
        min-height: 540px;
        margin: 0 auto;
    }
}

@media (max-width: 767px) {
    .cranberry-about-atelier {
        padding: 62px 0;
    }

    .cranberry-about-atelier > .container {
        width: calc(100% - 30px);
    }

    .cranberry-about-heading {
        margin-bottom: 30px;
    }

    .cranberry-about-heading h2 {
        font-size: 31px;
    }

    .cranberry-about-lede {
        font-size: 16px;
    }

    .cranberry-about-steps p {
        grid-template-columns: 38px minmax(0, 1fr);
        gap: 12px;
        font-size: 14px;
    }

    .cranberry-about-visual {
        min-height: 470px;
    }

    .cranberry-about-photo-main {
        top: 42px;
        right: 0;
        width: 82%;
        height: 345px;
    }

    .cranberry-about-photo-side {
        bottom: 30px;
        width: 47%;
        height: 250px;
    }

    .cranberry-about-note {
        right: 8px;
        bottom: 52px;
        min-width: 210px;
        padding: 15px 16px;
    }
}

@media (max-width: 480px) {
    .cranberry-about-heading h2 {
        font-size: 28px;
    }

    .cranberry-about-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .cranberry-about-primary,
    .cranberry-about-link {
        width: 100%;
    }

    .cranberry-about-visual {
        min-height: 420px;
    }

    .cranberry-about-photo-main {
        width: 88%;
        height: 305px;
    }

    .cranberry-about-photo-side {
        width: 52%;
        height: 210px;
    }

    .cranberry-about-note {
        right: 0;
        bottom: 34px;
        min-width: min(220px, 70%);
    }
}

.cranberry-goal {
    position: relative;
    overflow: hidden;
    padding: 92px 0;
    background: #fff;
    isolation: isolate;
}

.cranberry-goal,
.cranberry-goal * {
    box-sizing: border-box;
}

.cranberry-goal > .container {
    width: calc(100% - 96px);
    max-width: none;
}

.cranberry-goal a {
    text-decoration: none;
}

.cranberry-goal:before,
.cranberry-goal:after {
    content: "";
    position: absolute;
    right: 0;
    left: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(88, 165, 235, .42), transparent);
    z-index: 1;
}

.cranberry-goal:before {
    top: 0;
}

.cranberry-goal:after {
    bottom: 0;
}

.cranberry-goal-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(90deg, #fff 0%, rgba(248, 252, 255, .96) 44%, rgba(239, 247, 255, .72) 100%),
        url(../images/bg/bg6.jpg) center right / cover no-repeat;
}

.cranberry-goal-bg:before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(88, 165, 235, .09) 1px, transparent 1px),
        linear-gradient(0deg, rgba(88, 165, 235, .07) 1px, transparent 1px);
    background-size: 92px 92px;
    opacity: .46;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 56%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 56%, transparent 100%);
}

.cranberry-goal-bg:after {
    content: "";
    position: absolute;
    top: 11%;
    right: -4%;
    width: 46%;
    height: 78%;
    background: rgba(88, 165, 235, .09);
    clip-path: polygon(18% 0, 100% 0, 82% 100%, 0 100%);
}

.cranberry-goal-shell {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, .93fr) minmax(430px, 1.07fr);
    gap: 64px;
    align-items: center;
}

.cranberry-goal-copy {
    max-width: 610px;
    animation: cranberryGoalCopyIn .82s ease both;
}

.cranberry-goal-kicker {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
    color: var(--cranberry-blue-deep);
    font-family: poppins, sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1;
    text-transform: uppercase;
}

.cranberry-goal-kicker:before {
    content: "";
    width: 46px;
    height: 1px;
    background: var(--cranberry-blue);
}

.cranberry-goal h2 {
    margin: 0;
    color: var(--cranberry-navy);
    font-size: 48px;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1.08;
    text-wrap: balance;
}

.cranberry-goal h2:after {
    content: "";
    display: block;
    width: 86px;
    height: 3px;
    margin-top: 24px;
    background: linear-gradient(90deg, var(--cranberry-warm), var(--cranberry-blue));
    transform: scaleX(.52);
    transform-origin: left;
    animation: cranberryGoalRule 1.1s cubic-bezier(.16, 1, .3, 1) .38s both;
}

.cranberry-goal h2 span {
    display: block;
    white-space: nowrap;
}

.cranberry-goal-copy p {
    max-width: 560px;
    margin: 24px 0 0;
    color: var(--cranberry-muted);
    font-size: 17px;
    line-height: 1.78;
}

.cranberry-goal-promises {
    display: grid;
    margin-top: 34px;
    border-top: 1px solid rgba(207, 232, 255, .95);
}

.cranberry-goal-promises span {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 15px;
    align-items: center;
    min-height: 58px;
    border-bottom: 1px solid rgba(207, 232, 255, .95);
    color: var(--cranberry-ink);
    font-family: poppins, sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.35;
    transition: color .25s ease, transform .25s ease;
}

.cranberry-goal-promises span:hover {
    color: var(--cranberry-blue-deep);
    transform: translateX(8px);
}

.cranberry-goal-promises strong {
    color: var(--cranberry-warm);
    font-size: 12px;
    font-weight: 800;
}

.cranberry-goal-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
    margin-top: 34px;
}

.cranberry-goal-primary,
.cranberry-goal-secondary {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-family: poppins, sans-serif;
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, background .25s ease, color .25s ease;
}

.cranberry-goal-primary {
    gap: 12px;
    padding: 0 10px 0 22px;
    background: var(--cranberry-navy);
    border: 1px solid var(--cranberry-navy);
    color: #fff !important;
    box-shadow: 0 18px 38px rgba(16, 40, 64, .18);
}

.cranberry-goal-primary i {
    display: inline-flex;
    width: 32px;
    height: 32px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: var(--cranberry-blue);
    color: #fff;
    font-size: 12px;
    transition: transform .28s ease, background .28s ease;
}

.cranberry-goal-primary:hover,
.cranberry-goal-primary:focus {
    background: var(--cranberry-blue-deep);
    border-color: var(--cranberry-blue-deep);
    color: #fff !important;
    transform: translateY(-3px);
    box-shadow: 0 24px 48px rgba(29, 112, 187, .22);
}

.cranberry-goal-primary:hover i,
.cranberry-goal-primary:focus i {
    background: var(--cranberry-warm);
    transform: translateX(4px);
}

.cranberry-goal-secondary {
    padding: 0 18px;
    background: rgba(255, 255, 255, .72);
    border: 1px solid var(--cranberry-blue-line);
    color: var(--cranberry-blue-deep) !important;
}

.cranberry-goal-secondary:hover,
.cranberry-goal-secondary:focus {
    border-color: var(--cranberry-blue);
    background: #fff;
    color: var(--cranberry-navy) !important;
    transform: translateY(-3px);
}

.cranberry-goal-visual {
    position: relative;
    min-height: 560px;
    perspective: 1300px;
    animation: cranberryGoalVisualIn .9s cubic-bezier(.16, 1, .3, 1) .08s both;
}

.cranberry-goal-photo {
    position: absolute;
    inset: 36px 0 26px 42px;
    overflow: hidden;
    margin: 0;
    background: var(--cranberry-blue-soft);
    border: 1px solid rgba(255, 255, 255, .78);
    border-radius: 8px;
    box-shadow: 0 30px 80px rgba(16, 40, 64, .18);
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 74px), calc(100% - 74px) 100%, 0 100%);
    transition: transform .7s cubic-bezier(.16, 1, .3, 1), box-shadow .7s ease, filter .7s ease;
}

.cranberry-goal-photo:before,
.cranberry-goal-photo:after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

.cranberry-goal-photo:before {
    background: linear-gradient(180deg, transparent 44%, rgba(10, 27, 46, .48) 100%);
    opacity: .72;
    transition: opacity .45s ease;
}

.cranberry-goal-photo:after {
    width: 24%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .26), transparent);
    transform: translateX(-130%) skewX(-16deg);
    opacity: .8;
}

.cranberry-goal-photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.04);
    transition: transform .9s cubic-bezier(.16, 1, .3, 1), filter .7s ease;
}

.cranberry-goal-route {
    position: absolute;
    inset: 96px 38px 110px 84px;
    z-index: 4;
    pointer-events: none;
}

.cranberry-goal-route:before,
.cranberry-goal-route:after {
    content: "";
    position: absolute;
    background: repeating-linear-gradient(90deg, rgba(255, 255, 255, .84) 0 12px, rgba(255, 255, 255, 0) 12px 22px);
    filter: drop-shadow(0 6px 10px rgba(16, 40, 64, .22));
    opacity: .82;
    transform-origin: left;
    animation: cranberryGoalTrace 2.8s ease-in-out infinite;
}

.cranberry-goal-route:before {
    left: 8%;
    top: 34%;
    width: 72%;
    height: 2px;
    transform: rotate(-8deg);
}

.cranberry-goal-route:after {
    left: 56%;
    top: 35%;
    width: 34%;
    height: 2px;
    transform: rotate(58deg);
    animation-delay: .35s;
}

.cranberry-goal-route span {
    position: absolute;
    width: 13px;
    height: 13px;
    border: 2px solid #fff;
    border-radius: 50%;
    background: var(--cranberry-blue);
    box-shadow: 0 0 0 8px rgba(88, 165, 235, .2), 0 10px 20px rgba(16, 40, 64, .22);
    animation: cranberryGoalPulse 2.7s ease-in-out infinite;
}

.cranberry-goal-route span:nth-child(1) {
    top: 30%;
    left: 6%;
}

.cranberry-goal-route span:nth-child(2) {
    top: 18%;
    left: 78%;
    background: var(--cranberry-warm);
    box-shadow: 0 0 0 8px rgba(251, 127, 106, .2), 0 10px 20px rgba(16, 40, 64, .2);
    animation-delay: .45s;
}

.cranberry-goal-route span:nth-child(3) {
    right: 5%;
    bottom: 16%;
    animation-delay: .9s;
}

.cranberry-goal-tag {
    position: absolute;
    right: 0;
    bottom: 72px;
    z-index: 5;
    width: 270px;
    padding: 18px 20px;
    background: rgba(255, 255, 255, .94);
    border: 1px solid var(--cranberry-blue-line);
    border-left: 4px solid var(--cranberry-warm);
    border-radius: 8px;
    box-shadow: 0 24px 54px rgba(16, 40, 64, .15);
    backdrop-filter: blur(14px);
    transition: transform .4s ease, box-shadow .4s ease, border-color .4s ease;
}

.cranberry-goal-tag span {
    display: block;
    color: var(--cranberry-blue-deep);
    font-family: poppins, sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1;
    text-transform: uppercase;
}

.cranberry-goal-tag strong {
    display: block;
    margin-top: 8px;
    color: var(--cranberry-navy);
    font-size: 16px;
    line-height: 1.35;
}

.cranberry-goal-visual:hover .cranberry-goal-photo,
.cranberry-goal-visual:focus-within .cranberry-goal-photo {
    box-shadow: 0 36px 92px rgba(16, 40, 64, .22);
    transform: rotateY(-4deg) rotateX(2deg) translate3d(-8px, -6px, 0);
}

.cranberry-goal-visual:hover .cranberry-goal-photo img,
.cranberry-goal-visual:focus-within .cranberry-goal-photo img {
    filter: saturate(1.09) contrast(1.04);
    transform: scale(1.1);
}

.cranberry-goal-visual:hover .cranberry-goal-photo:before,
.cranberry-goal-visual:focus-within .cranberry-goal-photo:before {
    opacity: .48;
}

.cranberry-goal-visual:hover .cranberry-goal-photo:after,
.cranberry-goal-visual:focus-within .cranberry-goal-photo:after {
    animation: cranberryGoalShine 1.05s ease;
}

.cranberry-goal-visual:hover .cranberry-goal-tag,
.cranberry-goal-visual:focus-within .cranberry-goal-tag {
    border-color: rgba(88, 165, 235, .62);
    box-shadow: 0 30px 64px rgba(16, 40, 64, .18);
    transform: translateY(-8px);
}

@keyframes cranberryGoalCopyIn {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes cranberryGoalVisualIn {
    from {
        opacity: 0;
        transform: translateY(34px) scale(.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes cranberryGoalRule {
    to {
        transform: scaleX(1);
    }
}

@keyframes cranberryGoalTrace {
    0%,
    100% {
        opacity: .44;
        clip-path: inset(0 74% 0 0);
    }
    48%,
    70% {
        opacity: .92;
        clip-path: inset(0 0 0 0);
    }
}

@keyframes cranberryGoalPulse {
    0%,
    100% {
        transform: scale(.88);
    }
    50% {
        transform: scale(1.08);
    }
}

@keyframes cranberryGoalShine {
    from {
        transform: translateX(-130%) skewX(-16deg);
    }
    to {
        transform: translateX(520%) skewX(-16deg);
    }
}

@supports (animation-timeline: view()) {
    .cranberry-goal-bg:before {
        animation: cranberryGoalGridFade linear both;
        animation-timeline: view();
        animation-range: entry 12% cover 58%;
    }
}

@keyframes cranberryGoalGridFade {
    from {
        opacity: .12;
        transform: translateY(24px);
    }
    to {
        opacity: .46;
        transform: translateY(0);
    }
}

@media (max-width: 1199px) {
    .cranberry-goal-shell {
        grid-template-columns: minmax(0, .95fr) minmax(380px, 1.05fr);
        gap: 42px;
    }

    .cranberry-goal h2 {
        font-size: 42px;
    }

    .cranberry-goal-visual {
        min-height: 520px;
    }
}

@media (max-width: 991px) {
    .cranberry-goal {
        padding: 76px 0;
    }

    .cranberry-goal-shell {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .cranberry-goal-copy {
        max-width: none;
    }

    .cranberry-goal h2 {
        max-width: 720px;
        font-size: 38px;
    }

    .cranberry-goal-visual {
        width: min(700px, 100%);
        min-height: 540px;
        margin: 0 auto;
    }
}

@media (max-width: 767px) {
    .cranberry-goal {
        padding: 64px 0;
    }

    .cranberry-goal > .container {
        width: calc(100% - 30px);
    }

    .cranberry-goal-bg:after {
        width: 80%;
        right: -28%;
    }

    .cranberry-goal h2 {
        font-size: 31px;
    }

    .cranberry-goal-copy p {
        font-size: 16px;
    }

    .cranberry-goal-promises span {
        grid-template-columns: 36px minmax(0, 1fr);
        min-height: 54px;
        font-size: 13px;
    }

    .cranberry-goal-actions {
        align-items: stretch;
        flex-direction: column;
        max-width: 280px;
    }

    .cranberry-goal-primary,
    .cranberry-goal-secondary {
        width: 100%;
    }

    .cranberry-goal-visual {
        min-height: 470px;
    }

    .cranberry-goal-photo {
        inset: 52px 0 46px 0;
    }

    .cranberry-goal-route {
        inset: 112px 24px 118px 28px;
    }

    .cranberry-goal-tag {
        right: 12px;
        bottom: 46px;
        width: min(265px, 76%);
        padding: 15px 16px;
    }
}

@media (max-width: 480px) {
    .cranberry-goal h2 {
        font-size: 25px;
    }

    .cranberry-goal-visual {
        min-height: 410px;
    }

    .cranberry-goal-photo {
        inset: 48px 0 36px;
        clip-path: polygon(0 0, 100% 0, 100% calc(100% - 44px), calc(100% - 44px) 100%, 0 100%);
    }

    .cranberry-goal-tag {
        bottom: 24px;
        width: min(245px, 86%);
    }

    .cranberry-goal-tag strong {
        font-size: 14px;
    }
}

@media (max-width: 360px) {
    .cranberry-goal h2 {
        font-size: 22px;
    }
}

.cranberry-enquiry {
    padding: 80px 0;
}

.cranberry-enquiry-form {
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

.cranberry-enquiry-form .form-control {
    height: 50px;
    border-radius: 4px;
}

.cranberry-enquiry-form textarea.form-control {
    height: auto;
}

.cranberry-hp-field {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.cranberry-floating-contact {
    position: fixed;
    right: 24px;
    bottom: 92px;
    z-index: 1150;
}

.cranberry-package-detail-body .cranberry-floating-contact,
.cranberry-destination-detail-body .cranberry-floating-contact {
    bottom: 24px;
}

.cranberry-package-detail-body .cranberry-floating-trigger,
.cranberry-destination-detail-body .cranberry-floating-trigger {
    min-width: 58px;
    width: 58px;
    padding: 0;
}

.cranberry-package-detail-body .cranberry-floating-trigger-text,
.cranberry-destination-detail-body .cranberry-floating-trigger-text {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
}

.cranberry-floating-contact summary {
    list-style: none;
}

.cranberry-floating-contact summary::-webkit-details-marker {
    display: none;
}

.cranberry-floating-trigger {
    display: inline-flex;
    min-width: 148px;
    min-height: 58px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 18px;
    border: 1px solid rgba(255, 255, 255, .34);
    border-radius: 999px;
    background: linear-gradient(135deg, var(--cranberry-blue) 0%, var(--cranberry-blue-deep) 100%);
    color: #fff;
    cursor: pointer;
    font-family: poppins, sans-serif;
    font-size: 14px;
    font-weight: 800;
    box-shadow: 0 18px 44px rgba(16, 40, 64, .28);
    transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}

.cranberry-floating-trigger:hover,
.cranberry-floating-trigger:focus {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 24px 54px rgba(16, 40, 64, .34);
}

.cranberry-floating-trigger-icon {
    position: relative;
    display: inline-flex;
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, .18);
}

.cranberry-floating-trigger-icon i {
    position: absolute;
    transition: opacity .2s ease, transform .2s ease;
}

.cranberry-floating-trigger-icon .fa-times {
    opacity: 0;
    transform: rotate(-90deg) scale(.7);
}

.cranberry-floating-contact[open] .cranberry-floating-trigger {
    background: linear-gradient(135deg, var(--cranberry-blue-deep) 0%, #102840 100%);
}

.cranberry-floating-contact[open] .cranberry-floating-trigger-icon .fa-comments {
    opacity: 0;
    transform: rotate(90deg) scale(.7);
}

.cranberry-floating-contact[open] .cranberry-floating-trigger-icon .fa-times {
    opacity: 1;
    transform: rotate(0) scale(1);
}

.cranberry-floating-actions {
    position: absolute;
    right: 0;
    bottom: calc(100% + 12px);
    display: grid;
    grid-template-columns: repeat(2, 48px);
    gap: 10px;
    justify-items: end;
    pointer-events: none;
}

.cranberry-floating-action {
    position: relative;
    display: inline-flex;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid rgba(207, 232, 255, .95);
    border-radius: 50%;
    background: #fff;
    color: var(--cranberry-ink);
    font-family: poppins, sans-serif;
    font-size: 13px;
    font-weight: 800;
    box-shadow: 0 16px 40px rgba(16, 40, 64, .18);
    opacity: 0;
    transform: translateY(14px) scale(.92);
    transition: opacity .24s ease, transform .24s ease, box-shadow .2s ease, color .2s ease, background .2s ease;
    transition-delay: 0ms;
}

.cranberry-floating-action span {
    position: absolute;
    top: 50%;
    right: calc(100% + 10px);
    padding: 7px 10px;
    border-radius: 999px;
    background: #102840;
    color: #fff;
    font-size: 12px;
    line-height: 1;
    white-space: nowrap;
    box-shadow: 0 12px 28px rgba(16, 40, 64, .22);
    opacity: 0;
    pointer-events: none;
    transform: translate(8px, -50%);
    transition: opacity .2s ease, transform .2s ease;
}

.cranberry-floating-action i {
    display: inline-flex;
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--cranberry-blue-soft);
    color: var(--cranberry-blue-deep);
    font-size: 15px;
    transition: transform .2s ease, background .2s ease, color .2s ease;
}

.cranberry-floating-contact[open] .cranberry-floating-action {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
    transition-delay: calc(var(--action-index) * 45ms);
}

.cranberry-floating-action:hover,
.cranberry-floating-action:focus {
    color: var(--cranberry-blue-deep);
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 22px 50px rgba(16, 40, 64, .24);
}

.cranberry-floating-action:hover span,
.cranberry-floating-action:focus span {
    opacity: 1;
    transform: translate(0, -50%);
}

.cranberry-floating-action:hover i,
.cranberry-floating-action:focus i {
    transform: scale(1.08) rotate(-6deg);
}

.cranberry-floating-action.is-whatsapp i {
    background: #25d366;
    color: #fff;
}

.cranberry-floating-action.is-phone i {
    background: #102840;
    color: #fff;
}

.cranberry-floating-action.is-email i {
    background: var(--cranberry-blue);
    color: #fff;
}

.cranberry-floating-action.is-facebook i {
    background: #1877f2;
    color: #fff;
}

.cranberry-floating-action.is-instagram i {
    background: linear-gradient(135deg, #f58529, #dd2a7b 48%, #8134af);
    color: #fff;
}

.cranberry-floating-action.is-twitter i,
.cranberry-floating-action.is-x i {
    background: #111;
    color: #fff;
}

.cranberry-floating-action.is-youtube i {
    background: #ff0033;
    color: #fff;
}

.cranberry-featured-packages {
    position: relative;
    z-index: 120;
    overflow: hidden;
    padding: 78px 0 76px;
    background:
        linear-gradient(180deg, #fff 0%, #f7fbff 48%, #fff 100%),
        radial-gradient(circle at 8% 12%, rgba(88, 165, 235, .12), transparent 32%);
}

.cranberry-featured-packages:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--cranberry-blue-line), transparent);
}

.cranberry-featured-packages > .container {
    width: calc(100% - 70px);
    max-width: none;
}

.cranberry-packages-heading {
    width: min(680px, 100%);
    margin: 0 auto 34px;
    text-align: center;
}

.cranberry-packages-heading span,
.cranberry-small-label,
.cranberry-price-block span {
    font-family: poppins, sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .4px;
    text-transform: uppercase;
}

.cranberry-packages-heading span {
    display: inline-flex;
    margin-bottom: 10px;
    color: var(--cranberry-blue-deep);
}

.cranberry-packages-heading h2 {
    margin: 0;
    color: var(--cranberry-navy);
    font-size: 38px;
    line-height: 1.18;
}

.cranberry-packages-heading p {
    margin: 14px auto 0;
    color: var(--cranberry-muted);
    font-size: 16px;
    line-height: 1.7;
}

.cranberry-category-section {
    padding-top: 44px;
    border-top: 1px solid rgba(207, 232, 255, .95);
}

.cranberry-category-section.is-first {
    padding-top: 0;
    border-top: 0;
}

.cranberry-category-section + .cranberry-category-section {
    margin-top: 54px;
}

.cranberry-category-heading {
    position: relative;
    display: flex;
    max-width: 900px;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 0 auto 30px;
    padding: 0 70px;
    text-align: center;
}

.cranberry-category-heading:before,
.cranberry-category-heading:after {
    content: "";
    position: absolute;
    top: 18px;
    width: min(16vw, 150px);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(88, 165, 235, .7));
}

.cranberry-category-heading:before {
    right: calc(100% - 80px);
}

.cranberry-category-heading:after {
    left: calc(100% - 80px);
    background: linear-gradient(90deg, rgba(88, 165, 235, .7), transparent);
}

.cranberry-category-heading > div {
    max-width: 700px;
}

.cranberry-category-heading h3 {
    margin: 0;
    color: var(--cranberry-navy);
    font-size: 30px;
    line-height: 1.2;
}

.cranberry-category-heading p {
    margin: 8px 0 0;
    color: var(--cranberry-muted);
    font-size: 14px;
    line-height: 1.65;
}

.cranberry-package-grid {
    display: grid;
    width: 100%;
    margin: 0 auto;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.cranberry-package-card {
    position: relative;
    display: flex;
    min-width: 0;
    flex-direction: column;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(207, 232, 255, .95);
    border-radius: 8px;
    box-shadow: 0 16px 38px rgba(16, 40, 64, .075);
    transform: translateY(20px);
    opacity: 0;
    animation: cranberryPackageRise .7s ease forwards;
    animation-delay: calc(var(--package-delay) * 90ms);
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.cranberry-package-card:hover,
.cranberry-package-card:focus-within {
    border-color: rgba(88, 165, 235, .6);
    box-shadow: 0 24px 50px rgba(16, 40, 64, .12);
    transform: translateY(-6px);
}

.cranberry-package-image {
    position: relative;
    display: block;
    height: clamp(220px, 15vw, 310px);
    overflow: hidden;
    background: var(--cranberry-blue-soft);
}

.cranberry-package-image:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(16, 40, 64, .02) 0%, rgba(16, 40, 64, .38) 100%);
    opacity: .82;
    transition: opacity .28s ease;
}

.cranberry-package-card:hover .cranberry-package-image:after,
.cranberry-package-card:focus-within .cranberry-package-image:after {
    opacity: .58;
}

.cranberry-package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.01);
    transition: transform .55s ease, filter .55s ease;
}

.cranberry-package-card:hover .cranberry-package-image img,
.cranberry-package-card:focus-within .cranberry-package-image img {
    filter: saturate(1.06) contrast(1.03);
    transform: scale(1.07);
}

.cranberry-discount-badge,
.cranberry-duration-pill {
    position: absolute;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    border-radius: 4px;
    font-family: poppins, sans-serif;
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
}

.cranberry-discount-badge {
    top: 13px;
    left: 13px;
    min-height: 30px;
    padding: 0 11px;
    background: #fff;
    color: var(--cranberry-blue-deep);
    box-shadow: 0 12px 26px rgba(16, 40, 64, .16);
}

.cranberry-duration-pill {
    right: 13px;
    bottom: 13px;
    gap: 7px;
    min-height: 30px;
    padding: 0 11px;
    background: rgba(16, 40, 64, .9);
    color: #fff;
    backdrop-filter: blur(8px);
}

.cranberry-package-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 16px;
}

.cranberry-package-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 9px;
}

.cranberry-rating {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    color: #f4b63f;
    font-size: 12px;
    white-space: nowrap;
}

.cranberry-rating strong {
    margin-left: 6px;
    color: var(--cranberry-ink);
    font-family: poppins, sans-serif;
    font-size: 12px;
}

.cranberry-small-label {
    color: var(--cranberry-muted);
}

.cranberry-package-body h3 {
    margin: 0 0 8px;
    font-size: 18px;
    line-height: 1.28;
}

.cranberry-package-body h3 a {
    color: var(--cranberry-navy);
}

.cranberry-package-body h3 a:hover,
.cranberry-package-body h3 a:focus {
    color: var(--cranberry-blue-deep);
}

.cranberry-package-body p {
    display: -webkit-box;
    min-height: 58px;
    margin: 0 0 13px;
    overflow: hidden;
    color: var(--cranberry-muted);
    font-size: 12.5px;
    line-height: 1.54;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.cranberry-itinerary-icons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: auto;
    padding: 12px 0;
    border-top: 1px solid rgba(207, 232, 255, .85);
    border-bottom: 1px solid rgba(207, 232, 255, .85);
}

.cranberry-itinerary-icons span {
    display: inline-flex;
    min-height: 38px;
    align-items: center;
    justify-content: center;
    background: var(--cranberry-blue-soft);
    border: 1px solid rgba(207, 232, 255, .92);
    border-radius: 8px;
    color: var(--cranberry-blue);
    font-size: 15px;
    transition: transform .22s ease, background-color .22s ease, color .22s ease, border-color .22s ease;
}

.cranberry-package-card:hover .cranberry-itinerary-icons span,
.cranberry-package-card:focus-within .cranberry-itinerary-icons span {
    background: #fff;
    border-color: rgba(88, 165, 235, .58);
    color: var(--cranberry-blue-deep);
    transform: translateY(-2px);
}

.cranberry-package-footer {
    display: grid;
    grid-template-columns: 1fr;
    gap: 11px;
    align-items: stretch;
    padding-top: 13px;
}

.cranberry-price-block span {
    display: block;
    margin-bottom: 0;
    color: var(--cranberry-muted);
    flex: 0 0 auto;
    font-size: 11px;
}

.cranberry-price-block {
    display: flex;
    min-height: 52px;
    align-items: center;
    justify-content: space-between;
    gap: 9px;
    padding: 11px 13px;
    background: #f4f8ff;
    border: 1px solid rgba(207, 232, 255, .98);
    border-radius: 8px;
}

.cranberry-price-values {
    display: inline-flex;
    align-items: baseline;
    justify-content: flex-end;
    gap: 8px;
    min-width: 0;
    white-space: nowrap;
}

.cranberry-price-values del {
    color: var(--cranberry-warm-deep);
    font-family: poppins, sans-serif;
    font-size: 13px;
    font-weight: 800;
    text-decoration-thickness: 2px;
}

.cranberry-price-values strong {
    display: inline-block;
    color: var(--cranberry-navy);
    font-family: poppins, sans-serif;
    font-size: 19px;
    line-height: 1.1;
}

.cranberry-package-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.cranberry-whatsapp-cta,
.cranberry-phone-cta,
.cranberry-detail-cta {
    display: inline-flex;
    min-height: 40px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 8px;
    font-family: poppins, sans-serif;
    font-size: 11.5px;
    font-weight: 800;
    line-height: 1.1;
    text-align: center;
    transition: transform .22s ease, box-shadow .22s ease, background-color .22s ease, border-color .22s ease, color .22s ease;
}

.cranberry-whatsapp-cta,
.cranberry-phone-cta {
    min-width: 0;
    padding: 0 10px;
    white-space: nowrap;
}

.cranberry-detail-cta {
    grid-column: 1 / -1;
    min-height: 44px;
    background: #fff;
    border: 1px solid rgba(88, 165, 235, .55);
    color: var(--cranberry-blue-deep) !important;
    font-size: 12.5px;
}

.cranberry-whatsapp-cta {
    background: var(--cranberry-blue-deep);
    border: 1px solid var(--cranberry-blue-deep);
    color: #fff !important;
    box-shadow: 0 10px 20px rgba(29, 112, 187, .22);
}

.cranberry-phone-cta {
    background: var(--cranberry-warm);
    border: 1px solid var(--cranberry-warm);
    color: #fff !important;
}

.cranberry-phone-cta-icon {
    display: block;
    flex: 0 0 auto;
}

.cranberry-phone-cta-text {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cranberry-whatsapp-cta:hover,
.cranberry-whatsapp-cta:focus,
.cranberry-phone-cta:hover,
.cranberry-phone-cta:focus,
.cranberry-detail-cta:hover,
.cranberry-detail-cta:focus {
    color: #fff !important;
    transform: translateY(-2px);
}

.cranberry-detail-cta:hover,
.cranberry-detail-cta:focus {
    background: var(--cranberry-navy);
    border-color: var(--cranberry-navy);
    box-shadow: 0 12px 24px rgba(16, 40, 64, .16);
}

.cranberry-whatsapp-cta:hover,
.cranberry-whatsapp-cta:focus {
    background: var(--cranberry-blue);
    border-color: var(--cranberry-blue);
}

.cranberry-phone-cta:hover,
.cranberry-phone-cta:focus {
    background: var(--cranberry-warm-deep);
    border-color: var(--cranberry-warm-deep);
    box-shadow: 0 12px 24px rgba(251, 127, 106, .22);
}

.cranberry-packages-note {
    display: flex;
    width: min(560px, 100%);
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin: 34px auto 0;
    padding: 14px 18px;
    color: var(--cranberry-muted);
    font-size: 14px;
}

.cranberry-packages-note span {
    color: var(--cranberry-ink);
    font-weight: 700;
}

.cranberry-packages-note a {
    color: var(--cranberry-blue-deep);
    font-weight: 800;
}

@keyframes cranberryPackageRise {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .cranberry-package-card,
    .cranberry-package-image img,
    .cranberry-whatsapp-cta,
    .cranberry-phone-cta,
    .cranberry-detail-cta,
    .cranberry-floating-trigger,
    .cranberry-floating-trigger-icon i,
    .cranberry-floating-action,
    .cranberry-floating-action i {
        animation: none;
        transition: none;
    }

    .cranberry-package-card {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 767px) {
    .section-title.w-50 {
        width: 100% !important;
    }

    .cranberry-enquiry-form {
        padding: 22px;
    }

    .cranberry-floating-contact {
        right: 18px;
        bottom: 78px;
    }

    .cranberry-floating-trigger {
        min-width: 58px;
        width: 58px;
        padding: 0;
    }

    .cranberry-floating-trigger-text {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0 0 0 0);
    }

    .cranberry-floating-action span {
        max-width: 120px;
    }
}

@media (max-width: 1199px) {
    .cranberry-package-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .cranberry-featured-packages {
        padding: 62px 0 58px;
    }

    .cranberry-featured-packages > .container {
        width: calc(100% - 30px);
    }

    .cranberry-packages-heading {
        margin-bottom: 30px;
        text-align: left;
    }

    .cranberry-packages-heading h2 {
        font-size: 30px;
    }

    .cranberry-category-section {
        padding-top: 34px;
    }

    .cranberry-category-section + .cranberry-category-section {
        margin-top: 38px;
    }

    .cranberry-category-heading {
        align-items: center;
        flex-direction: column;
        gap: 13px;
        margin-bottom: 20px;
        padding: 0;
    }

    .cranberry-category-heading:before,
    .cranberry-category-heading:after {
        display: none;
    }

    .cranberry-category-heading h3 {
        font-size: 23px;
    }

    .cranberry-package-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .cranberry-package-image {
        height: 228px;
    }

    .cranberry-package-body {
        padding: 18px;
    }

    .cranberry-package-footer {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .cranberry-price-block {
        width: 100%;
    }

    .cranberry-packages-note {
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
        padding-right: 0;
        padding-left: 0;
    }
}

@media (max-width: 420px) {
    .cranberry-package-topline {
        align-items: flex-start;
        flex-direction: column;
        gap: 7px;
    }

    .cranberry-duration-pill {
        right: 12px;
        bottom: 12px;
    }

    .cranberry-discount-badge {
        top: 12px;
        left: 12px;
    }

    .cranberry-package-actions {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cranberry-whatsapp-cta,
    .cranberry-phone-cta {
        gap: 6px;
        padding: 0 8px;
        font-size: 10.5px;
    }

    .cranberry-phone-cta-icon {
        width: 14px;
        height: 17px;
    }

    .cranberry-price-block {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .cranberry-price-values {
        justify-content: flex-start;
    }
}

@media (max-width: 1240px) {
    .cranberry-nav-board {
        grid-template-columns: auto 1fr;
    }

    .cranberry-action-tabs {
        grid-column: 1 / -1;
        justify-content: flex-end;
        border-bottom: 1px solid var(--cranberry-blue-line);
    }

    .cranberry-route-tab {
        padding-right: 16px !important;
        padding-left: 16px !important;
    }

    .cranberry-footer-shell {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1100px) {
    .cranberry-flight-nav {
        padding-top: 10px;
    }

    .cranberry-nav-board {
        grid-template-columns: auto auto;
        align-items: end;
    }

    .cranberry-route-tabs,
    .cranberry-action-tabs,
    .cranberry-site-header .slicknav_menu {
        display: none !important;
    }

    .cranberry-brand-tab {
        min-height: 74px;
        width: 220px;
        padding: 12px 18px 16px;
        border-radius: 22px 22px 0 0;
    }

    .cranberry-brand-tab img {
        width: 178px;
    }

    .cranberry-mobile-menu {
        display: block;
        justify-self: end;
    }

    .cranberry-footer-main {
        padding-top: 48px;
    }

    .cranberry-footer-tabs {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .cranberry-footer-tab {
        margin-left: 0;
    }

    .cranberry-footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 767px) {
    .cranberry-flight-nav .container {
        padding-right: 15px;
        padding-left: 15px;
    }

    .cranberry-nav-board {
        gap: 10px;
    }

    .cranberry-brand-tab {
        width: 190px;
    }

    .cranberry-brand-tab img {
        width: 158px;
    }

    .cranberry-mobile-menu summary span {
        display: none;
    }

    .cranberry-mobile-menu summary {
        min-width: 48px;
        padding: 0 14px;
    }

    .cranberry-footer-brand,
    .cranberry-footer-ticket,
    .cranberry-footer-tab {
        border-radius: 22px 22px 8px 8px;
    }

    .cranberry-footer-brand,
    .cranberry-footer-ticket {
        padding: 22px;
    }

    .cranberry-footer-brand img {
        width: 185px;
    }

    .cranberry-footer-ticket strong {
        font-size: 22px;
    }
}

/* Luxury master header and footer */
.cranberry-site-header {
    background: #fff;
    border-bottom: 1px solid rgba(88, 165, 235, .18);
    font-family: rubik, sans-serif;
}

.cranberry-topbar {
    background: #f6fbff;
    border-bottom: 1px solid rgba(88, 165, 235, .18);
}

.cranberry-topbar-inner {
    display: flex;
    min-height: 42px;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.cranberry-topbar-contact {
    display: flex;
    align-items: center;
    gap: 22px;
    min-width: 0;
}

.cranberry-topbar-contact a,
.cranberry-topbar-contact span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--cranberry-ink);
    font-size: 13px;
    line-height: 1.2;
    white-space: nowrap;
}

.cranberry-topbar-contact i,
.cranberry-topbar-contact .cranberry-topbar-call-icon,
.cranberry-topbar-social i {
    color: var(--cranberry-blue);
}

.cranberry-topbar-contact i,
.cranberry-topbar-contact .cranberry-topbar-call-icon {
    display: inline-flex;
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.cranberry-topbar-contact .cranberry-topbar-call-icon {
    fill: none;
    stroke: currentColor;
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.cranberry-topbar-social {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cranberry-topbar-social li {
    display: block;
}

.cranberry-topbar-social a {
    display: inline-flex;
    width: 28px;
    height: 28px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(88, 165, 235, .24);
    border-radius: 50%;
    background: #fff;
    color: var(--cranberry-blue-deep);
    font-size: 12px;
}

.cranberry-topbar-social a:hover,
.cranberry-topbar-social a:focus {
    background: var(--cranberry-blue);
    color: #fff;
}

.cranberry-luxury-nav {
    padding: 0;
    background: #fff;
}

.cranberry-nav-inner {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    min-height: 92px;
    align-items: center;
    gap: 30px;
}

.cranberry-brand {
    display: inline-flex;
    align-items: center;
}

.cranberry-brand img {
    display: block;
    width: 218px;
    max-height: 60px;
    object-fit: contain;
}

.cranberry-nav-links .navbar-nav {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 4px;
    float: none;
    margin: 0;
}

.cranberry-nav-links li {
    display: block;
    background: transparent !important;
}

.cranberry-nav-links a {
    position: relative;
    display: inline-flex !important;
    align-items: center;
    padding: 14px 13px !important;
    background: transparent !important;
    color: var(--cranberry-ink) !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    letter-spacing: .1px !important;
    line-height: 1 !important;
    text-transform: none !important;
}

.cranberry-nav-links a:after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 5px;
    width: 0;
    height: 2px;
    border-radius: 999px;
    background: var(--cranberry-blue);
    transform: translateX(-50%);
    transition: width .22s ease;
}

.cranberry-nav-links a:hover,
.cranberry-nav-links a:focus {
    color: var(--cranberry-blue-deep) !important;
}

.cranberry-nav-links a:hover:after,
.cranberry-nav-links a:focus:after {
    width: 26px;
}

.cranberry-header-cta,
.cranberry-footer-button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    border: 1px solid var(--cranberry-blue);
    border-radius: 999px;
    background: var(--cranberry-blue);
    color: #fff !important;
    font-family: poppins, sans-serif;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
    box-shadow: 0 14px 32px rgba(88, 165, 235, .24);
}

.cranberry-header-cta:hover,
.cranberry-header-cta:focus,
.cranberry-footer-button:hover,
.cranberry-footer-button:focus {
    background: var(--cranberry-blue-deep);
    border-color: var(--cranberry-blue-deep);
    color: #fff !important;
}

.cranberry-mobile-menu {
    display: none;
    position: relative;
}

.cranberry-mobile-menu summary {
    display: inline-flex;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(88, 165, 235, .28);
    border-radius: 50%;
    background: #fff;
    color: var(--cranberry-blue-deep);
    cursor: pointer;
    list-style: none;
}

.cranberry-mobile-menu summary::-webkit-details-marker {
    display: none;
}

.cranberry-mobile-menu-panel {
    position: absolute;
    top: calc(100% + 14px);
    right: 0;
    width: min(330px, calc(100vw - 30px));
    padding: 12px;
    border: 1px solid rgba(88, 165, 235, .22);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 24px 60px rgba(31, 49, 71, .16);
    z-index: 1000;
}

.cranberry-mobile-menu-panel a {
    display: block;
    padding: 12px 13px;
    border-radius: 10px;
    color: var(--cranberry-ink);
    font-weight: 600;
}

.cranberry-mobile-menu-panel a:hover,
.cranberry-mobile-menu-panel a:focus,
.cranberry-mobile-menu-panel .cranberry-mobile-menu-cta {
    background: var(--cranberry-blue-soft);
    color: var(--cranberry-blue-deep) !important;
}

.cranberry-mobile-menu-panel .cranberry-mobile-menu-cta {
    margin-top: 8px;
    text-align: center;
}

.cranberry-site-footer {
    overflow: hidden;
    background: #102840 !important;
    color: #fff;
    background-image: none !important;
    background-attachment: scroll;
}

.cranberry-footer-main {
    padding: 78px 0 28px;
    background: linear-gradient(135deg, #102840 0%, #17395a 55%, #102840 100%);
}

.cranberry-footer-shell {
    display: grid;
    grid-template-columns: minmax(260px, .85fr) minmax(320px, 1.1fr) minmax(330px, .95fr);
    gap: 34px;
    align-items: stretch;
}

.cranberry-footer-brand,
.cranberry-footer-editorial,
.cranberry-footer-columns {
    border: 1px solid rgba(255, 255, 255, .14);
    background: rgba(255, 255, 255, .06);
    backdrop-filter: blur(10px);
}

.cranberry-footer-brand {
    padding: 30px;
    border-radius: 4px;
}

.cranberry-footer-brand img {
    width: 225px;
    max-height: 64px;
    object-fit: contain;
}

.cranberry-footer-brand p {
    margin: 22px 0;
    color: rgba(255, 255, 255, .75);
    line-height: 1.75;
}

.cranberry-footer-social-row {
    display: flex;
    gap: 10px;
}

.cranberry-footer-social-row a {
    display: inline-flex;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 50%;
    color: #fff;
}

.cranberry-footer-social-row a:hover,
.cranberry-footer-social-row a:focus {
    background: #fff;
    color: var(--cranberry-blue-deep);
}

.cranberry-footer-editorial {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 34px;
    border-radius: 4px;
}

.cranberry-footer-editorial span {
    color: var(--cranberry-blue);
    font-family: poppins, sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.cranberry-footer-editorial h2 {
    margin: 20px 0 26px;
    color: #fff;
    font-size: 30px;
    line-height: 1.28;
}

.cranberry-footer-columns {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 28px;
    padding: 30px;
    border-radius: 4px;
}

.cranberry-footer-column h4 {
    margin: 0 0 18px;
    padding: 0;
    color: #fff;
    font-size: 15px;
}

.cranberry-footer-column h4:after {
    display: none;
}

.cranberry-footer-column a,
.cranberry-footer-column p {
    display: block;
    margin: 0 0 12px;
    color: rgba(255, 255, 255, .74) !important;
    font-size: 14px;
    line-height: 1.5;
}

.cranberry-footer-contact a,
.cranberry-footer-contact p {
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 10px;
    align-items: start;
}

.cranberry-footer-contact i {
    margin-top: 3px;
    color: var(--cranberry-blue);
}

.cranberry-footer-column a:hover,
.cranberry-footer-column a:focus {
    color: #fff !important;
}

.cranberry-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 38px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, .13);
}

.cranberry-footer-bottom p,
.cranberry-footer-bottom a {
    margin: 0;
    color: rgba(255, 255, 255, .64);
    font-size: 13px;
}

.cranberry-footer-bottom a:hover,
.cranberry-footer-bottom a:focus {
    color: #fff;
}

@media (max-width: 1199px) {
    .cranberry-nav-inner {
        gap: 18px;
    }

    .cranberry-brand img {
        width: 190px;
    }

    .cranberry-nav-links a {
        padding-right: 9px !important;
        padding-left: 9px !important;
        font-size: 13px !important;
    }

    .cranberry-footer-shell {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 991px) {
    .cranberry-topbar {
        display: none;
    }

    .cranberry-nav-inner {
        grid-template-columns: auto auto;
        min-height: 78px;
        justify-content: space-between;
    }

    .cranberry-nav-links,
    .cranberry-header-cta,
    .cranberry-site-header .slicknav_menu {
        display: none !important;
    }

    .cranberry-mobile-menu {
        display: block;
    }

    .cranberry-footer-columns {
        grid-template-columns: 1fr;
    }

    .cranberry-footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 767px) {
    .cranberry-brand img {
        width: 172px;
    }

    .cranberry-footer-main {
        padding-top: 54px;
    }

    .cranberry-footer-brand,
    .cranberry-footer-editorial,
    .cranberry-footer-columns {
        padding: 24px;
    }

    .cranberry-footer-editorial h2 {
        font-size: 24px;
    }
}

/* Senior visual polish for the public header and footer */
.cranberry-site-header {
    position: relative;
    z-index: 2000;
    background: #fff;
    border-bottom: 1px solid rgba(31, 49, 71, .08);
    box-shadow: 0 10px 34px rgba(31, 49, 71, .06);
    font-family: rubik, sans-serif;
}

.cranberry-site-header a {
    text-decoration: none;
}

.lb-nav a.lb-prev,
.lb-nav a.lb-next,
.lb-data .lb-close,
.imgs-grid-modal .modal-close,
.imgs-grid-modal .modal-inner .modal-control .arrow.left,
.imgs-grid-modal .modal-inner .modal-control .arrow.right {
    background-image: none !important;
}

.cranberry-topbar {
    background: linear-gradient(90deg, var(--cranberry-navy-3) 0%, var(--cranberry-navy) 46%, var(--cranberry-navy-2) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    color: #fff;
}

.cranberry-topbar-inner {
    display: flex;
    min-height: 44px;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.cranberry-topbar-contact {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 20px;
}

.cranberry-topbar-contact a,
.cranberry-topbar-contact span {
    display: inline-flex;
    min-width: 0;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, .86);
    font-size: 13px;
    line-height: 1.2;
    white-space: nowrap;
}

.cranberry-topbar-contact a:hover,
.cranberry-topbar-contact a:focus {
    color: #fff;
}

.cranberry-topbar-contact i,
.cranberry-topbar-contact .cranberry-topbar-call-icon,
.cranberry-topbar-social i {
    color: var(--cranberry-blue);
}

.cranberry-topbar-social {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
}

.cranberry-topbar-social li {
    display: block;
    margin: 0;
}

.cranberry-topbar-social a {
    display: inline-flex;
    width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    color: #fff;
    font-size: 12px;
}

.cranberry-topbar-social a:hover,
.cranberry-topbar-social a:focus {
    border-color: var(--cranberry-blue);
    background: var(--cranberry-blue);
    color: #fff;
}

.cranberry-site-header .header_menu {
    background: rgba(255, 255, 255, .96);
    transition: box-shadow .2s ease, transform .2s ease, top .2s ease;
}

.cranberry-site-header .header_menu.fixed-top {
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 18px 48px rgba(31, 49, 71, .14);
    backdrop-filter: blur(16px);
}

.main_header_area .header_menu.hide {
    top: -132px;
}

.cranberry-luxury-nav {
    padding: 0;
    background: transparent;
}

.cranberry-luxury-nav > .container {
    display: block;
    width: 100%;
    max-width: none;
    padding-right: clamp(18px, 4vw, 56px);
    padding-left: clamp(18px, 4vw, 56px);
}

.cranberry-nav-inner {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    width: 100%;
    min-height: 88px;
    align-items: center;
    gap: 28px;
}

.cranberry-brand {
    display: inline-flex;
    align-items: center;
    justify-self: start;
    padding: 9px 0;
}

.cranberry-brand img {
    display: block;
    width: 228px;
    max-height: 62px;
    object-fit: contain;
}

.cranberry-nav-links .navbar-nav {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 6px;
    float: none;
    margin: 0;
}

.cranberry-nav-links {
    justify-self: center;
}

.cranberry-nav-links li {
    display: block;
    background: transparent !important;
}

.header_menu .navbar.navbar-default .cranberry-nav-links .nav.navbar-nav li a,
.header_menu .navbar.navbar-default .cranberry-nav-links .nav.navbar-nav li summary {
    position: relative;
    display: inline-flex !important;
    min-height: 42px;
    align-items: center;
    padding: 0 14px !important;
    border: 1px solid transparent !important;
    border-radius: 999px;
    background: transparent !important;
    color: var(--cranberry-ink) !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    letter-spacing: 0 !important;
    line-height: 1 !important;
    text-transform: none !important;
}

.header_menu .navbar.navbar-default .cranberry-nav-links .nav.navbar-nav li a:after,
.header_menu .navbar.navbar-default .cranberry-nav-links .nav.navbar-nav li summary:after {
    content: "";
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 7px;
    display: block !important;
    height: 2px;
    border-radius: 999px;
    background: var(--cranberry-blue);
    opacity: 0;
    transform: scaleX(.35);
    transform-origin: center;
    transition: opacity .2s ease, transform .2s ease;
}

.header_menu .navbar.navbar-default .cranberry-nav-links .nav.navbar-nav li a:hover,
.header_menu .navbar.navbar-default .cranberry-nav-links .nav.navbar-nav li a:focus,
.header_menu .navbar.navbar-default .cranberry-nav-links .nav.navbar-nav li a.is-active,
.header_menu .navbar.navbar-default .cranberry-nav-links .nav.navbar-nav li summary:hover,
.header_menu .navbar.navbar-default .cranberry-nav-links .nav.navbar-nav li summary:focus,
.header_menu .navbar.navbar-default .cranberry-nav-links .nav.navbar-nav li summary.is-active {
    border-color: rgba(88, 165, 235, .2) !important;
    background: var(--cranberry-blue-soft) !important;
    color: var(--cranberry-blue-deep) !important;
}

.header_menu .navbar.navbar-default .cranberry-nav-links .nav.navbar-nav li a:hover:after,
.header_menu .navbar.navbar-default .cranberry-nav-links .nav.navbar-nav li a:focus:after,
.header_menu .navbar.navbar-default .cranberry-nav-links .nav.navbar-nav li a.is-active:after,
.header_menu .navbar.navbar-default .cranberry-nav-links .nav.navbar-nav li summary:hover:after,
.header_menu .navbar.navbar-default .cranberry-nav-links .nav.navbar-nav li summary:focus:after,
.header_menu .navbar.navbar-default .cranberry-nav-links .nav.navbar-nav li summary.is-active:after {
    opacity: 1;
    transform: scaleX(1);
}

.cranberry-header-cta,
.cranberry-footer-button {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 8px 10px 8px 18px;
    border: 1px solid rgba(88, 165, 235, .85);
    border-radius: 999px;
    background: linear-gradient(135deg, var(--cranberry-blue) 0%, var(--cranberry-blue-deep) 100%);
    color: #fff !important;
    font-family: poppins, sans-serif;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1;
    white-space: nowrap;
    box-shadow: 0 16px 34px rgba(29, 112, 187, .24);
}

.cranberry-header-cta {
    justify-self: end;
}

.cranberry-header-cta i,
.cranberry-footer-button i {
    display: inline-flex;
    width: 32px;
    height: 32px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, .18);
    color: #fff;
    font-size: 12px;
}

.cranberry-header-cta:hover,
.cranberry-header-cta:focus,
.cranberry-footer-button:hover,
.cranberry-footer-button:focus {
    border-color: #fff;
    background: linear-gradient(135deg, var(--cranberry-blue-deep) 0%, var(--cranberry-navy-2) 100%);
    color: #fff !important;
    transform: translateY(-1px);
}

.cranberry-mobile-menu {
    display: none;
    position: relative;
}

.cranberry-mobile-menu summary {
    display: inline-flex;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(88, 165, 235, .28);
    border-radius: 50%;
    background: var(--cranberry-blue-soft);
    color: var(--cranberry-blue-deep);
    cursor: pointer;
    list-style: none;
}

.cranberry-mobile-menu summary::-webkit-details-marker {
    display: none;
}

.cranberry-mobile-menu-panel {
    position: absolute;
    top: calc(100% + 14px);
    right: 0;
    width: min(340px, calc(100vw - 30px));
    padding: 12px;
    border: 1px solid rgba(88, 165, 235, .22);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 24px 60px rgba(31, 49, 71, .18);
    z-index: 1000;
}

.cranberry-mobile-menu-panel a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 13px;
    border-radius: 6px;
    color: var(--cranberry-ink);
    font-weight: 700;
}

.cranberry-mobile-menu-panel .cranberry-mobile-menu-heading {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 13px;
    border-radius: 6px;
    color: var(--cranberry-ink);
    font-weight: 800;
}

.cranberry-mobile-menu-panel .cranberry-mobile-menu-heading.is-active {
    background: var(--cranberry-blue-soft);
    color: var(--cranberry-blue-deep);
}

.cranberry-mobile-menu-panel a:hover,
.cranberry-mobile-menu-panel a:focus {
    background: var(--cranberry-blue-soft);
    color: var(--cranberry-blue-deep) !important;
}

.cranberry-mobile-menu-panel .cranberry-mobile-menu-cta {
    justify-content: center;
    margin-top: 8px;
    background: var(--cranberry-blue-soft);
    color: var(--cranberry-blue-deep) !important;
}

.cranberry-site-footer {
    position: relative;
    overflow: hidden;
    background: var(--cranberry-navy) !important;
    color: #fff;
    background-image: none !important;
    background-attachment: scroll;
}

.cranberry-footer-main {
    position: relative;
    padding: 76px 0 28px;
    background: var(--cranberry-navy);
}

.cranberry-footer-main:before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(10, 27, 46, .96) 0%, rgba(16, 40, 64, .92) 48%, rgba(23, 57, 90, .9) 100%),
        url("../images/bg/bg3.jpg") center / cover no-repeat;
}

.cranberry-footer-main:after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
    background-size: 96px 96px;
    opacity: .34;
}

.cranberry-footer-main > .container {
    position: relative;
    z-index: 1;
}

.cranberry-footer-cta-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 28px;
    margin-bottom: 44px;
    padding: 34px 36px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-left: 4px solid var(--cranberry-blue);
    border-radius: 8px;
    background: rgba(10, 27, 46, .56);
    box-shadow: 0 22px 60px rgba(0, 0, 0, .18);
    backdrop-filter: blur(12px);
}

.cranberry-footer-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--cranberry-blue);
    font-family: poppins, sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1;
    text-transform: uppercase;
}

.cranberry-footer-kicker i {
    color: #fff;
}

.cranberry-footer-cta-panel h2 {
    max-width: 760px;
    margin: 14px 0 0;
    color: #fff !important;
    font-size: 34px;
    line-height: 1.22;
}

.cranberry-footer-shell {
    display: grid;
    grid-template-columns: minmax(280px, 1.1fr) minmax(180px, .55fr) minmax(340px, 1.15fr);
    gap: 48px;
    align-items: start;
}

.cranberry-footer-brand,
.cranberry-footer-column,
.cranberry-footer-contact {
    border: 0;
    background: transparent;
    box-shadow: none;
}

.cranberry-footer-brand {
    padding: 0;
    border-radius: 0;
}

.cranberry-footer-brand img {
    width: 238px;
    max-height: 66px;
    object-fit: contain;
}

.cranberry-footer-brand p {
    max-width: 420px;
    margin: 22px 0 24px;
    color: var(--cranberry-white-soft);
    line-height: 1.75;
}

.cranberry-footer-social-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.cranberry-footer-social-row a {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    color: #fff;
}

.cranberry-footer-social-row a:hover,
.cranberry-footer-social-row a:focus {
    border-color: var(--cranberry-blue);
    background: var(--cranberry-blue);
    color: #fff;
    transform: translateY(-2px);
}

.cranberry-footer-column h4 {
    position: relative;
    margin: 0 0 20px;
    padding: 0 0 13px;
    color: #fff;
    font-size: 16px;
    line-height: 1.2;
}

.cranberry-footer-column h4:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    display: block;
    width: 42px;
    height: 2px;
    border-radius: 999px;
    background: var(--cranberry-blue);
}

.cranberry-footer-nav a {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    padding: 7px 0;
    color: var(--cranberry-white-soft) !important;
    font-size: 15px;
    line-height: 1.45;
}

.cranberry-footer-nav a:before {
    content: "";
    width: 14px;
    height: 2px;
    border-radius: 999px;
    background: rgba(88, 165, 235, .58);
    transition: width .2s ease, background .2s ease;
}

.cranberry-footer-nav a:hover,
.cranberry-footer-nav a:focus {
    color: #fff !important;
}

.cranberry-footer-nav a:hover:before,
.cranberry-footer-nav a:focus:before {
    width: 22px;
    background: var(--cranberry-blue);
}

.cranberry-footer-contact-list {
    display: grid;
    gap: 0;
    border-top: 1px solid rgba(255, 255, 255, .13);
}

.cranberry-footer-contact .cranberry-footer-contact-item {
    display: grid !important;
    grid-template-columns: 44px minmax(0, 1fr) !important;
    gap: 14px !important;
    align-items: center;
    margin: 0 !important;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .13);
    color: #fff !important;
}

.cranberry-footer-contact-icon {
    display: inline-flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(88, 165, 235, .24);
    border-radius: 50%;
    background: rgba(88, 165, 235, .12);
    color: var(--cranberry-blue);
}

.cranberry-footer-contact-item i {
    margin: 0;
    color: var(--cranberry-blue);
}

.cranberry-footer-contact-copy {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 4px;
}

.cranberry-footer-contact-copy strong,
.cranberry-footer-contact-item strong {
    display: block;
    min-width: 0;
    color: #fff;
    font-family: poppins, sans-serif;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1.25;
}

.cranberry-footer-contact-copy small,
.cranberry-footer-contact-item small {
    display: block;
    margin-top: 0;
    color: var(--cranberry-white-soft);
    font-family: rubik, sans-serif;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.45;
    overflow-wrap: anywhere;
}

a.cranberry-footer-contact-item:hover small,
a.cranberry-footer-contact-item:focus small {
    color: #fff;
}

.cranberry-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 48px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, .14);
}

.cranberry-footer-bottom p,
.cranberry-footer-bottom a {
    margin: 0;
    color: rgba(255, 255, 255, .66);
    font-size: 13px;
}

.cranberry-footer-bottom a:hover,
.cranberry-footer-bottom a:focus {
    color: #fff;
}

@media (max-width: 1199px) {
    .cranberry-nav-inner {
        gap: 18px;
    }

    .cranberry-brand img {
        width: 200px;
    }

    .header_menu .navbar.navbar-default .cranberry-nav-links .nav.navbar-nav li a {
        padding-right: 10px !important;
        padding-left: 10px !important;
        font-size: 13px !important;
    }

    .cranberry-footer-shell {
        grid-template-columns: minmax(260px, 1fr) minmax(170px, .55fr) minmax(300px, 1fr);
        gap: 32px;
    }
}

@media (max-width: 991px) {
    .cranberry-topbar {
        display: none;
    }

    .cranberry-nav-inner {
        grid-template-columns: auto auto;
        min-height: 78px;
        justify-content: space-between;
    }

    .cranberry-nav-links,
    .cranberry-header-cta,
    .cranberry-site-header .slicknav_menu {
        display: none !important;
    }

    .cranberry-mobile-menu {
        display: block;
    }

    .cranberry-footer-cta-panel {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .cranberry-footer-shell {
        grid-template-columns: 1fr 1fr;
    }

    .cranberry-footer-contact {
        grid-column: 1 / -1;
    }

    .cranberry-footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 767px) {
    .cranberry-nav-inner {
        min-height: 74px;
    }

    .cranberry-brand img {
        width: 170px;
    }

    .cranberry-mobile-menu-panel {
        right: -4px;
    }

    .cranberry-footer-main {
        padding: 54px 0 24px;
    }

    .cranberry-footer-cta-panel {
        margin-bottom: 34px;
        padding: 24px;
    }

    .cranberry-footer-cta-panel h2 {
        font-size: 24px;
    }

    .cranberry-footer-shell {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .cranberry-footer-contact {
        grid-column: auto;
    }

    .cranberry-footer-brand img {
        width: 198px;
    }

    .cranberry-footer-contact .cranberry-footer-contact-item {
        gap: 12px !important;
    }

    .cranberry-footer-contact-item small {
        font-size: 13px;
    }
}

/* Editorial home slider */
.cranberry-hero {
    position: relative;
    overflow: hidden;
    padding: 0;
    background: var(--cranberry-navy-3);
    color: #fff;
}

.cranberry-hero,
.cranberry-hero * {
    box-sizing: border-box;
}

.cranberry-hero a {
    text-decoration: none;
}

.cranberry-hero-swiper {
    width: 100%;
    height: 690px;
    min-height: 600px;
    max-height: calc(100vh - 120px);
    background: var(--cranberry-navy-3);
}

.cranberry-hero-slide {
    position: relative;
    overflow: hidden;
    background: var(--cranberry-navy-3);
}

.cranberry-hero-image,
.cranberry-hero-tint,
.cranberry-hero-grain {
    position: absolute;
    inset: 0;
}

.cranberry-hero-image {
    background-position: center;
    background-size: cover;
    opacity: .92;
    transform: scale(1.1);
    transition: transform 7200ms cubic-bezier(.16, 1, .3, 1), opacity 900ms ease;
    will-change: transform;
}

.swiper-slide-active .cranberry-hero-image {
    opacity: 1;
    transform: scale(1.02);
}

.cranberry-hero-tint {
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(10, 27, 46, .92) 0%, rgba(16, 40, 64, .68) 42%, rgba(16, 40, 64, .16) 72%, rgba(10, 27, 46, .28) 100%),
        linear-gradient(180deg, rgba(10, 27, 46, .1) 0%, rgba(10, 27, 46, .72) 100%);
}

.cranberry-hero-grain {
    z-index: 2;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, .06) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
    background-size: 88px 88px;
    -webkit-mask-image: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, .7) 44%, transparent 82%);
    mask-image: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, .7) 44%, transparent 82%);
    opacity: .35;
}

.cranberry-hero-frame {
    position: relative;
    z-index: 4;
    display: grid;
    grid-template-columns: minmax(0, 690px) minmax(260px, 360px);
    align-items: center;
    justify-content: space-between;
    gap: 56px;
    height: 100%;
    padding-top: 34px;
    padding-bottom: 110px;
}

.cranberry-hero-copy {
    max-width: 690px;
}

.cranberry-hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, .82);
    font-family: poppins, sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 600ms ease 140ms, transform 600ms ease 140ms;
}

.cranberry-hero-kicker span {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(88, 165, 235, .58);
    border-radius: 50%;
    background: rgba(88, 165, 235, .14);
    color: #fff;
    font-size: 13px;
}

.cranberry-hero h1 {
    max-width: 720px;
    margin: 0;
    color: #fff !important;
    font-size: 66px;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1.02;
    opacity: 0;
    text-wrap: balance;
    transform: translateY(24px);
    transition: opacity 700ms ease 220ms, transform 700ms ease 220ms;
}

.cranberry-hero h1:after {
    content: "";
    display: block;
    width: 78px;
    height: 3px;
    margin-top: 24px;
    border-radius: 999px;
    background: var(--cranberry-blue);
    transform: scaleX(.35);
    transform-origin: left;
    transition: transform 700ms cubic-bezier(.16, 1, .3, 1) 420ms;
}

.cranberry-hero p {
    max-width: 560px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, .8);
    font-size: 18px;
    line-height: 1.75;
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 700ms ease 320ms, transform 700ms ease 320ms;
}

.swiper-slide-active .cranberry-hero-kicker,
.swiper-slide-active .cranberry-hero-copy h1,
.swiper-slide-active .cranberry-hero-copy p {
    opacity: 1;
    transform: translateY(0);
}

.swiper-slide-active .cranberry-hero-copy h1:after {
    transform: scaleX(1);
}

.cranberry-hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    margin-top: 34px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 700ms ease 420ms, transform 700ms ease 420ms;
}

.swiper-slide-active .cranberry-hero-actions {
    opacity: 1;
    transform: translateY(0);
}

.cranberry-hero-cta,
.cranberry-hero-link {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-family: poppins, sans-serif;
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
    transition: transform .24s ease, border-color .24s ease, background .24s ease, color .24s ease, box-shadow .24s ease;
}

.cranberry-hero-cta {
    gap: 12px;
    padding: 8px 10px 8px 22px;
    border: 1px solid rgba(88, 165, 235, .9);
    background: linear-gradient(135deg, var(--cranberry-blue) 0%, var(--cranberry-blue-deep) 100%);
    color: #fff !important;
    box-shadow: 0 22px 48px rgba(29, 112, 187, .28);
}

.cranberry-hero-cta i {
    display: inline-flex;
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, .18);
    color: #fff;
    font-size: 12px;
    transition: transform .24s ease, background .24s ease;
}

.cranberry-hero-cta:hover,
.cranberry-hero-cta:focus {
    border-color: #fff;
    background: linear-gradient(135deg, var(--cranberry-blue-deep) 0%, var(--cranberry-navy-2) 100%);
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 26px 58px rgba(29, 112, 187, .34);
}

.cranberry-hero-cta:hover i,
.cranberry-hero-cta:focus i {
    background: rgba(255, 255, 255, .24);
    transform: translateX(3px);
}

.cranberry-hero-link {
    padding: 0 20px;
    border: 1px solid rgba(255, 255, 255, .24);
    background: rgba(255, 255, 255, .08);
    color: #fff !important;
    backdrop-filter: blur(14px);
}

.cranberry-hero-link:hover,
.cranberry-hero-link:focus {
    border-color: rgba(255, 255, 255, .72);
    background: rgba(255, 255, 255, .14);
    color: #fff !important;
    transform: translateY(-2px);
}

.cranberry-hero-signature {
    align-self: end;
    max-width: 360px;
    margin-bottom: 18px;
    padding: 24px 26px 24px 24px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-left: 3px solid var(--cranberry-blue);
    border-radius: 8px;
    background: rgba(10, 27, 46, .38);
    box-shadow: 0 24px 70px rgba(0, 0, 0, .18);
    backdrop-filter: blur(16px);
    opacity: 0;
    transform: translateX(26px);
    transition: opacity 700ms ease 500ms, transform 700ms ease 500ms, background .24s ease, border-color .24s ease;
}

.swiper-slide-active .cranberry-hero-signature {
    opacity: 1;
    transform: translateX(0);
}

.cranberry-hero-signature:hover {
    border-color: rgba(88, 165, 235, .62);
    background: rgba(16, 40, 64, .56);
}

.cranberry-hero-signature span {
    display: block;
    margin-bottom: 10px;
    color: var(--cranberry-blue);
    font-family: poppins, sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1;
    text-transform: uppercase;
}

.cranberry-hero-signature strong {
    display: block;
    color: #fff;
    font-family: poppins, sans-serif;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.32;
}

.cranberry-hero-controls {
    position: absolute;
    right: 0;
    bottom: 34px;
    left: 0;
    z-index: 8;
    display: grid;
    grid-template-columns: auto minmax(120px, 1fr) auto auto;
    align-items: center;
    gap: 22px;
}

.cranberry-hero-count {
    display: inline-flex;
    align-items: baseline;
    gap: 9px;
    min-width: 82px;
    color: rgba(255, 255, 255, .52);
    font-family: poppins, sans-serif;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1;
}

.cranberry-hero-count span:first-child {
    color: #fff;
    font-size: 28px;
}

.cranberry-hero-count span + span:before {
    content: "/";
    margin-right: 9px;
    color: rgba(255, 255, 255, .32);
}

.cranberry-hero-progress {
    position: relative;
    height: 2px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255, 255, 255, .22);
}

.cranberry-hero-progress-bar {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: var(--cranberry-blue);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 600ms cubic-bezier(.16, 1, .3, 1);
}

.cranberry-hero-pagination {
    position: relative !important;
    bottom: auto !important;
    left: auto !important;
    display: flex;
    width: auto !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: left;
}

.cranberry-hero .swiper-pagination-bullet {
    display: inline-flex;
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    margin: 0 !important;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    color: rgba(255, 255, 255, .72);
    font-family: poppins, sans-serif;
    font-size: 11px;
    font-weight: 800;
    opacity: 1;
    transition: border-color .22s ease, background .22s ease, color .22s ease, transform .22s ease;
}

.cranberry-hero .swiper-pagination-bullet:hover,
.cranberry-hero .swiper-pagination-bullet:focus {
    border-color: rgba(255, 255, 255, .72);
    color: #fff;
    transform: translateY(-1px);
}

.cranberry-hero .swiper-pagination-bullet-active {
    border-color: var(--cranberry-blue);
    background: var(--cranberry-blue);
    color: #fff;
}

.cranberry-hero-arrows {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cranberry-hero-arrow {
    display: inline-flex;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    color: #fff;
    cursor: pointer;
    transition: transform .22s ease, border-color .22s ease, background .22s ease;
}

.cranberry-hero-arrow:hover,
.cranberry-hero-arrow:focus {
    border-color: var(--cranberry-blue);
    background: var(--cranberry-blue);
    color: #fff;
    transform: translateY(-2px);
}

.cranberry-hero-arrow:focus,
.cranberry-hero .swiper-pagination-bullet:focus,
.cranberry-hero a:focus {
    outline: 2px solid rgba(255, 255, 255, .72);
    outline-offset: 4px;
}

.cranberry-hero-single .cranberry-hero-pagination,
.cranberry-hero-single .cranberry-hero-arrows {
    display: none;
}

@media (max-width: 1199px) {
    .cranberry-hero-swiper {
        height: 640px;
        min-height: 580px;
    }

    .cranberry-hero-frame {
        grid-template-columns: minmax(0, 620px) minmax(230px, 310px);
        gap: 34px;
    }

    .cranberry-hero h1 {
        font-size: 56px;
    }

    .cranberry-hero-signature strong {
        font-size: 19px;
    }
}

@media (max-width: 991px) {
    .cranberry-hero-swiper {
        height: 610px;
        min-height: 560px;
        max-height: none;
    }

    .cranberry-hero-tint {
        background:
            linear-gradient(90deg, rgba(10, 27, 46, .9) 0%, rgba(16, 40, 64, .68) 52%, rgba(10, 27, 46, .34) 100%),
            linear-gradient(180deg, rgba(10, 27, 46, .08) 0%, rgba(10, 27, 46, .78) 100%);
    }

    .cranberry-hero-frame {
        display: flex;
        align-items: center;
        padding-bottom: 122px;
    }

    .cranberry-hero-copy {
        max-width: 620px;
    }

    .cranberry-hero h1 {
        font-size: 46px;
    }

    .cranberry-hero p {
        font-size: 16px;
    }

    .cranberry-hero-signature {
        display: none;
    }

    .cranberry-hero-controls {
        grid-template-columns: auto minmax(100px, 1fr) auto;
        gap: 16px;
    }

    .cranberry-hero-pagination {
        display: none;
    }
}

@media (max-width: 767px) {
    .cranberry-hero-swiper {
        height: calc(100vh - 118px);
        min-height: 520px;
        max-height: 640px;
    }

    .cranberry-hero-image {
        background-position: center top;
    }

    .cranberry-hero-grain {
        background-size: 62px 62px;
        opacity: .24;
    }

    .cranberry-hero-frame {
        align-items: flex-end;
        padding-top: 38px;
        padding-bottom: 112px;
    }

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

    .cranberry-hero-kicker {
        margin-bottom: 14px;
        font-size: 11px;
    }

    .cranberry-hero-kicker span {
        width: 36px;
        height: 36px;
        font-size: 12px;
    }

    .cranberry-hero h1 {
        font-size: 37px;
        line-height: 1.08;
    }

    .cranberry-hero h1:after {
        width: 58px;
        margin-top: 18px;
    }

    .cranberry-hero p {
        margin-top: 18px;
        font-size: 15px;
        line-height: 1.65;
    }

    .cranberry-hero-actions {
        gap: 12px;
        margin-top: 24px;
    }

    .cranberry-hero-cta,
    .cranberry-hero-link {
        min-height: 48px;
        font-size: 12px;
    }

    .cranberry-hero-cta {
        padding-left: 18px;
    }

    .cranberry-hero-link {
        padding: 0 16px;
    }

    .cranberry-hero-controls {
        bottom: 24px;
        grid-template-columns: auto minmax(80px, 1fr) auto;
    }

    .cranberry-hero-count {
        min-width: 68px;
    }

    .cranberry-hero-count span:first-child {
        font-size: 22px;
    }

    .cranberry-hero-arrow {
        width: 42px;
        height: 42px;
    }
}

@media (max-width: 480px) {
    .cranberry-hero-swiper {
        min-height: 560px;
    }

    .cranberry-hero h1 {
        font-size: 32px;
    }

    .cranberry-hero p {
        max-width: 100%;
    }

    .cranberry-hero-actions {
        align-items: stretch;
        flex-direction: column;
        max-width: 260px;
    }

    .cranberry-hero-cta,
    .cranberry-hero-link {
        width: 100%;
    }

    .cranberry-hero-arrows {
        gap: 8px;
    }

    .cranberry-hero-arrow {
        width: 40px;
        height: 40px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .cranberry-hero-image,
    .cranberry-hero-kicker,
    .cranberry-hero h1,
    .cranberry-hero h1:after,
    .cranberry-hero p,
    .cranberry-hero-actions,
    .cranberry-hero-signature,
    .cranberry-hero-progress-bar,
    .cranberry-hero-cta,
    .cranberry-hero-link,
    .cranberry-hero-arrow,
    .cranberry-hero .swiper-pagination-bullet,
    .cranberry-about-heading,
    .cranberry-about-copy,
    .cranberry-about-visual,
    .cranberry-about-photo,
    .cranberry-about-photo img,
    .cranberry-about-steps p,
    .cranberry-about-primary,
    .cranberry-about-link {
        transition: none;
        animation: none;
    }
}

/* Destination studio */
.cranberry-destination-studio {
    position: relative;
    overflow: hidden;
    padding: 94px 0 100px;
    background:
        linear-gradient(180deg, #fff 0%, #f7fbff 52%, #fff 100%),
        radial-gradient(circle at 8% 18%, rgba(88, 165, 235, .12), transparent 30%);
    isolation: isolate;
}

.cranberry-destination-studio > .container {
    width: 100%;
    max-width: none;
    padding-right: clamp(18px, 4vw, 56px);
    padding-left: clamp(18px, 4vw, 56px);
}

.cranberry-destination-studio:before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(90deg, rgba(88, 165, 235, .12) 1px, transparent 1px) 0 0 / 88px 100%,
        linear-gradient(180deg, rgba(207, 232, 255, .55) 1px, transparent 1px) 0 0 / 100% 88px;
    mask-image: linear-gradient(180deg, transparent 0%, #000 16%, #000 84%, transparent 100%);
    opacity: .34;
}

.cranberry-destination-studio:after {
    content: "";
    position: absolute;
    right: max(-120px, -8vw);
    bottom: -180px;
    z-index: -1;
    width: 430px;
    height: 430px;
    border: 1px solid rgba(88, 165, 235, .22);
    border-radius: 50%;
    box-shadow: inset 0 0 0 44px rgba(239, 247, 255, .7);
}

.cranberry-destination-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
    gap: 44px;
    align-items: end;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(207, 232, 255, .95);
}

.cranberry-destination-kicker {
    display: inline-flex;
    margin-bottom: 12px;
    color: var(--cranberry-blue-deep);
    font-family: poppins, sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .4px;
    line-height: 1.2;
    text-transform: uppercase;
}

.cranberry-destination-head h2 {
    max-width: 760px;
    margin: 0;
    color: var(--cranberry-navy);
    font-size: clamp(34px, 4.7vw, 58px);
    line-height: 1.04;
}

.cranberry-destination-head h2 span {
    color: var(--cranberry-blue-deep);
}

.cranberry-destination-head p {
    margin: 0;
    padding-left: 18px;
    border-left: 3px solid var(--cranberry-warm);
    color: var(--cranberry-muted);
    font-size: 16px;
    line-height: 1.72;
}

.cranberry-destination-stage {
    position: relative;
    margin-top: 34px;
}

.cranberry-destination-category-section {
    position: relative;
    z-index: 1;
}

.cranberry-destination-map {
    position: absolute;
    inset: 30px -2% auto -2%;
    z-index: 0;
    width: 104%;
    height: min(440px, 92%);
    overflow: visible;
    pointer-events: none;
}

.cranberry-destination-map path {
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.cranberry-destination-map-base {
    stroke: rgba(29, 112, 187, .16);
    stroke-width: 3;
}

.cranberry-destination-map-trace {
    stroke: rgba(88, 165, 235, .44);
    stroke-dasharray: 14 18;
    stroke-width: 2;
    animation: cranberryDestinationTrace 15s linear infinite;
}

.cranberry-destination-map-spark {
    stroke: var(--cranberry-warm);
    stroke-dasharray: 34 420;
    stroke-width: 4;
    filter: drop-shadow(0 0 10px rgba(251, 127, 106, .52));
    animation: cranberryDestinationSpark 6.8s cubic-bezier(.62, 0, .38, 1) infinite;
}

.cranberry-destination-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: 318px;
    gap: 18px;
}

.cranberry-destination-card {
    position: relative;
    display: block;
    min-height: 0;
    overflow: hidden;
    background: var(--cranberry-navy);
    border: 1px solid rgba(255, 255, 255, .72);
    border-radius: 8px;
    box-shadow: 0 22px 58px rgba(16, 40, 64, .12);
    clip-path: polygon(0 0, calc(100% - 28px) 0, 100% 28px, 100% 100%, 0 100%);
    color: #fff;
    opacity: 0;
    transform: translateY(22px) rotate(.4deg);
    animation: cranberryDestinationRise .74s cubic-bezier(.2, .78, .24, 1) forwards;
    animation-delay: calc(var(--destination-delay) * 95ms);
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
    isolation: isolate;
}

.cranberry-destination-card:nth-child(n) {
    grid-column: auto;
    grid-row: auto;
}

.cranberry-destination-card:before {
    content: "";
    position: absolute;
    top: -35%;
    bottom: -35%;
    left: -90px;
    z-index: 3;
    width: 46px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .5), transparent);
    opacity: 0;
    pointer-events: none;
    transform: rotate(18deg);
}

.cranberry-destination-card:after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(10, 27, 46, .03) 0%, rgba(10, 27, 46, .72) 100%),
        linear-gradient(45deg, rgba(88, 165, 235, .12), transparent 48%, rgba(251, 127, 106, .2));
    pointer-events: none;
    transition: opacity .35s ease;
}

.cranberry-destination-photo-link {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: block;
}

.cranberry-destination-photo-link.is-placeholder {
    background:
        radial-gradient(circle at 25% 18%, rgba(88, 165, 235, .38), transparent 34%),
        linear-gradient(145deg, #173956, #0a1f33);
}

.cranberry-destination-photo-placeholder {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: rgba(255, 255, 255, .28);
    font-size: 72px;
}

.cranberry-destination-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.03);
    transition: transform .65s ease, filter .65s ease;
}

.cranberry-destination-number,
.cranberry-destination-copy,
.cranberry-destination-action {
    position: absolute;
    z-index: 2;
}

.cranberry-destination-number {
    top: 16px;
    left: 16px;
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 50%;
    background: rgba(255, 255, 255, .14);
    color: #fff;
    font-family: poppins, sans-serif;
    font-size: 12px;
    font-weight: 800;
    backdrop-filter: blur(10px);
}

.cranberry-destination-copy {
    right: 14px;
    bottom: 14px;
    left: 14px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px;
    align-items: center;
    padding: 10px 12px 11px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 8px;
    background: rgba(16, 40, 64, .64);
    box-shadow: 0 18px 38px rgba(10, 27, 46, .18);
    backdrop-filter: blur(14px);
    transform: translateY(8px);
    transition: transform .35s ease, background-color .35s ease, border-color .35s ease;
}

.cranberry-destination-text {
    display: grid;
    min-width: 0;
    gap: 3px;
}

.cranberry-destination-text span {
    color: rgba(255, 255, 255, .72);
    font-family: poppins, sans-serif;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .8px;
    line-height: 1;
    text-transform: uppercase;
}

.cranberry-destination-text strong {
    color: #fff;
    font-family: poppins, sans-serif;
    font-size: clamp(18px, 1.45vw, 23px);
    line-height: 1.12;
}

.cranberry-destination-text em {
    max-width: 92%;
    overflow: hidden;
    color: rgba(255, 255, 255, .78);
    font-size: 12px;
    font-style: normal;
    line-height: 1.32;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.cranberry-destination-whatsapp {
    display: inline-flex;
    min-height: 38px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 13px;
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 999px;
    background: #25d366;
    color: #fff !important;
    font-family: poppins, sans-serif;
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
    box-shadow: 0 12px 24px rgba(37, 211, 102, .18);
    transition: transform .25s ease, background-color .25s ease, box-shadow .25s ease;
}

.cranberry-destination-whatsapp i {
    font-size: 13px;
}

.cranberry-destination-whatsapp:hover,
.cranberry-destination-whatsapp:focus {
    background: #1fb457;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(37, 211, 102, .24);
}

.cranberry-destination-action {
    top: 16px;
    right: 16px;
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    gap: 10px;
    padding: 0 8px 0 15px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 999px;
    background: rgba(255, 255, 255, .13);
    color: #fff;
    font-family: poppins, sans-serif;
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
    backdrop-filter: blur(10px);
    transform: translateY(0);
    opacity: 1;
    transition: transform .3s ease, background-color .3s ease, border-color .3s ease, color .3s ease, box-shadow .3s ease;
}

.cranberry-destination-action i {
    display: inline-flex;
    width: 28px;
    height: 28px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff;
    color: var(--cranberry-blue-deep);
    font-size: 11px;
    transition: transform .3s ease;
}

.cranberry-destination-card:hover,
.cranberry-destination-card:focus-within {
    color: #fff;
    border-color: rgba(88, 165, 235, .62);
    box-shadow: 0 30px 72px rgba(16, 40, 64, .2);
    transform: translateY(-7px);
}

.cranberry-destination-card:hover:before,
.cranberry-destination-card:focus-within:before {
    animation: cranberryDestinationScan .82s ease;
}

.cranberry-destination-card:hover:after,
.cranberry-destination-card:focus-within:after {
    opacity: .78;
}

.cranberry-destination-card:hover img,
.cranberry-destination-card:focus-within img {
    filter: saturate(1.08) contrast(1.04);
    transform: scale(1.1);
}

.cranberry-destination-card:hover .cranberry-destination-copy,
.cranberry-destination-card:focus-within .cranberry-destination-copy {
    border-color: rgba(255, 255, 255, .3);
    background: rgba(16, 40, 64, .74);
    transform: translateY(0);
}

.cranberry-destination-action:hover,
.cranberry-destination-action:focus {
    border-color: #fff;
    background: #fff;
    color: var(--cranberry-blue-deep);
    box-shadow: 0 14px 30px rgba(16, 40, 64, .2);
    transform: translateY(-2px);
}

.cranberry-destination-action:hover i,
.cranberry-destination-action:focus i {
    transform: translateX(3px) rotate(-18deg);
}

.cranberry-destination-photo-link:focus-visible,
.cranberry-destination-action:focus-visible,
.cranberry-destination-whatsapp:focus-visible {
    outline: 3px solid var(--cranberry-warm);
    outline-offset: 4px;
}

.cranberry-destination-footer {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 22px;
    padding-top: 20px;
    border-top: 1px solid rgba(207, 232, 255, .95);
}

.cranberry-destination-footer span {
    color: var(--cranberry-muted);
    font-family: poppins, sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .4px;
    text-transform: uppercase;
}

.cranberry-destination-footer a {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 18px;
    border: 1px solid rgba(88, 165, 235, .36);
    border-radius: 999px;
    background: #fff;
    color: var(--cranberry-blue-deep);
    font-family: poppins, sans-serif;
    font-size: 13px;
    font-weight: 800;
    box-shadow: 0 14px 32px rgba(88, 165, 235, .12);
}

.cranberry-destination-footer a:hover,
.cranberry-destination-footer a:focus {
    border-color: var(--cranberry-blue);
    background: var(--cranberry-blue);
    color: #fff;
    transform: translateY(-2px);
}

@keyframes cranberryDestinationRise {
    to {
        opacity: 1;
        transform: translateY(0) rotate(0deg);
    }
}

@keyframes cranberryDestinationTrace {
    to {
        stroke-dashoffset: -320;
    }
}

@keyframes cranberryDestinationSpark {
    0% {
        stroke-dashoffset: 520;
        opacity: 0;
    }
    12%,
    78% {
        opacity: 1;
    }
    100% {
        stroke-dashoffset: -520;
        opacity: 0;
    }
}

@keyframes cranberryDestinationScan {
    0% {
        left: -90px;
        opacity: 0;
    }
    18% {
        opacity: .72;
    }
    100% {
        left: calc(100% + 90px);
        opacity: 0;
    }
}

@media (max-width: 1199px) {
    .cranberry-destination-grid {
        grid-auto-rows: 292px;
    }

    .cranberry-destination-text strong {
        font-size: 21px;
    }
}

@media (max-width: 991px) {
    .cranberry-destination-studio {
        padding: 76px 0 82px;
    }

    .cranberry-destination-head {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .cranberry-destination-head p {
        max-width: 680px;
    }

    .cranberry-destination-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: 292px;
    }

    .cranberry-destination-card:nth-child(n) {
        grid-column: auto;
        grid-row: auto;
    }
}

@media (max-width: 767px) {
    .cranberry-destination-studio {
        padding: 62px 0 66px;
    }

    .cranberry-destination-studio > .container {
        padding-right: 15px;
        padding-left: 15px;
    }

    .cranberry-destination-studio:before {
        background-size: 64px 100%, 100% 64px;
    }

    .cranberry-destination-head h2 {
        font-size: 32px;
    }

    .cranberry-destination-head p {
        padding-left: 14px;
        font-size: 15px;
    }

    .cranberry-destination-map {
        display: none;
    }

    .cranberry-destination-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
        gap: 18px;
    }

    .cranberry-destination-card:nth-child(n) {
        grid-column: auto;
        grid-row: auto;
        min-height: 300px;
    }

    .cranberry-destination-action {
        width: 42px;
        padding: 0;
        gap: 0;
        overflow: hidden;
        color: transparent;
        font-size: 0;
        opacity: 1;
        transform: none;
    }

    .cranberry-destination-action i {
        width: 32px;
        height: 32px;
        color: var(--cranberry-blue-deep);
        font-size: 11px;
    }

    .cranberry-destination-copy {
        transform: none;
    }

    .cranberry-destination-footer {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 430px) {
    .cranberry-destination-card:nth-child(n) {
        min-height: 282px;
    }

    .cranberry-destination-number,
    .cranberry-destination-action {
        top: 12px;
    }

    .cranberry-destination-number {
        left: 12px;
    }

    .cranberry-destination-action {
        right: 12px;
        max-width: calc(100% - 78px);
        white-space: nowrap;
    }

    .cranberry-destination-copy {
        right: 12px;
        bottom: 12px;
        left: 12px;
        gap: 10px;
    }

    .cranberry-destination-text strong {
        font-size: 20px;
    }

    .cranberry-destination-whatsapp {
        width: 38px;
        min-height: 34px;
        margin-right: 18px;
        padding: 0;
        gap: 0;
        overflow: hidden;
        font-size: 0;
    }

    .cranberry-destination-whatsapp span {
        display: none;
    }

    .cranberry-destination-whatsapp i {
        font-size: 14px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .cranberry-destination-map-trace,
    .cranberry-destination-map-spark,
    .cranberry-destination-card,
    .cranberry-destination-card:before,
    .cranberry-destination-card:after,
    .cranberry-destination-card img,
    .cranberry-destination-copy,
    .cranberry-destination-whatsapp,
    .cranberry-destination-action,
    .cranberry-destination-action i,
    .cranberry-destination-footer a {
        transition: none;
        animation: none;
    }

    .cranberry-destination-card {
        opacity: 1;
        transform: none;
    }
}

/* FAQ */
.cranberry-faq-section {
    position: relative;
    overflow: hidden;
    padding: 64px 0 70px;
    scroll-margin-top: 98px;
    background: linear-gradient(180deg, #fff 0%, #f8fcff 100%);
}

.cranberry-faq-section,
.cranberry-faq-section * {
    box-sizing: border-box;
}

.cranberry-faq-section:before,
.cranberry-faq-section:after {
    display: none;
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(88, 165, 235, .36), transparent);
}

.cranberry-faq-section:before {
    top: 0;
}

.cranberry-faq-section:after {
    bottom: 0;
}

.cranberry-faq-section > .container {
    width: 100%;
    max-width: none;
    padding-right: clamp(20px, 3vw, 36px);
    padding-left: clamp(20px, 3vw, 36px);
}

.cranberry-faq-layout {
    display: block;
    max-width: 980px;
    margin: 0 auto;
}

.cranberry-faq-body .cranberry-faq-section > .container {
    padding-right: clamp(24px, 4vw, 56px);
    padding-left: clamp(24px, 4vw, 56px);
}

.cranberry-faq-body .cranberry-faq-layout {
    width: 100%;
    max-width: none;
}

.cranberry-faq-title {
    margin: 0 0 24px;
    color: var(--cranberry-navy);
    font-size: clamp(24px, 2.4vw, 30px);
    line-height: 1.18;
    text-align: center;
}

.cranberry-faq-intro {
    position: relative;
    max-width: 1040px;
    margin: 0 auto 48px;
    padding-top: 0;
    text-align: center;
}

.cranberry-faq-kicker {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
    margin-bottom: 14px;
    color: var(--cranberry-blue-deep);
    font-family: poppins, sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .4px;
    line-height: 1;
    text-transform: uppercase;
}

.cranberry-faq-kicker:before,
.cranberry-faq-kicker:after {
    content: "";
    width: 34px;
    height: 1px;
    background: var(--cranberry-warm);
}

.cranberry-faq-intro h2 {
    max-width: 860px;
    margin: 0 auto;
    color: var(--cranberry-navy);
    font-size: clamp(38px, 5vw, 64px);
    line-height: 1.08;
    letter-spacing: 0;
}

.cranberry-faq-intro p {
    max-width: 780px;
    margin: 22px auto 0;
    color: var(--cranberry-muted);
    font-size: 18px;
    line-height: 1.78;
}

.cranberry-faq-contact {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    max-width: 420px;
    margin: 30px auto 0;
    padding: 18px 0;
    border-top: 1px solid rgba(207, 232, 255, .95);
    border-bottom: 1px solid rgba(207, 232, 255, .95);
}

.cranberry-faq-contact-icon {
    display: inline-flex;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(88, 165, 235, .25);
    border-radius: 50%;
    background: #fff;
    color: var(--cranberry-blue-deep);
    box-shadow: 0 12px 28px rgba(88, 165, 235, .14);
}

.cranberry-faq-contact strong {
    display: block;
    margin-bottom: 4px;
    color: var(--cranberry-navy);
    font-family: poppins, sans-serif;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.25;
}

.cranberry-faq-contact a {
    color: var(--cranberry-muted);
    font-size: 14px;
    line-height: 1.35;
}

.cranberry-faq-contact a:hover,
.cranberry-faq-contact a:focus {
    color: var(--cranberry-blue-deep);
}

.cranberry-faq-cta {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 24px auto 0;
    padding: 8px 10px 8px 20px;
    border: 1px solid rgba(88, 165, 235, .86);
    border-radius: 999px;
    background: linear-gradient(135deg, var(--cranberry-blue) 0%, var(--cranberry-blue-deep) 100%);
    color: #fff !important;
    font-family: poppins, sans-serif;
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    box-shadow: 0 16px 34px rgba(29, 112, 187, .22);
    transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease, background .24s ease;
}

.cranberry-faq-cta i {
    display: inline-flex;
    width: 32px;
    height: 32px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, .18);
    color: #fff;
    font-size: 12px;
    transition: transform .24s ease;
}

.cranberry-faq-cta:hover,
.cranberry-faq-cta:focus {
    border-color: #fff;
    background: linear-gradient(135deg, var(--cranberry-blue-deep) 0%, var(--cranberry-navy-2) 100%);
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 22px 46px rgba(29, 112, 187, .28);
}

.cranberry-faq-cta:hover i,
.cranberry-faq-cta:focus i {
    transform: translateX(3px);
}

.cranberry-faq-list {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 6fr) minmax(0, 6fr);
    gap: clamp(14px, 2vw, 22px);
    align-items: start;
}

.cranberry-faq-column {
    display: grid;
    gap: 12px;
    align-content: start;
    min-width: 0;
}

.cranberry-faq-item {
    --faq-accent: var(--cranberry-blue);
    position: relative;
    overflow: hidden;
    min-height: 0;
    border: 0;
    border-radius: 8px;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 10px 28px rgba(16, 40, 64, .06);
    isolation: isolate;
    transition: box-shadow .24s ease, transform .24s ease, background .24s ease;
}

.cranberry-faq-item:nth-child(even) {
    --faq-accent: var(--cranberry-warm);
}

.cranberry-faq-item:before {
    display: none;
}

.cranberry-faq-item:after {
    display: none;
}

.cranberry-faq-item h3 {
    margin: 0;
}

.cranberry-faq-trigger {
    appearance: none;
    display: grid;
    width: 100%;
    min-height: 66px;
    grid-template-columns: 40px minmax(0, 1fr) 30px;
    gap: 12px;
    align-items: center;
    padding: 15px 18px;
    border: 0;
    background: transparent;
    cursor: pointer;
    text-align: left;
}

.cranberry-faq-trigger:focus,
.cranberry-faq-trigger:focus-visible {
    outline: none;
    box-shadow: none;
}

.cranberry-faq-trigger::-moz-focus-inner {
    border: 0;
}

.cranberry-faq-index {
    position: relative;
    display: inline-flex;
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 50%;
    background: rgba(88, 165, 235, .12);
    color: var(--cranberry-blue-deep);
    font-family: poppins, sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .5px;
    line-height: 1;
    box-shadow: none;
    transition: background .24s ease, color .24s ease, transform .24s ease;
}

.cranberry-faq-index:before {
    display: none;
}

.cranberry-faq-question {
    color: var(--cranberry-navy);
    font-family: poppins, sans-serif;
    font-size: 15.5px;
    font-weight: 700;
    line-height: 1.42;
    transition: color .24s ease, transform .24s ease;
}

.cranberry-faq-toggle {
    position: relative;
    display: inline-flex;
    width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
    justify-self: end;
    border: 0;
    border-radius: 50%;
    background: var(--cranberry-blue-soft);
    box-shadow: none;
    transition: transform .32s cubic-bezier(.16, 1, .3, 1), background .24s ease, box-shadow .24s ease;
}

.cranberry-faq-toggle:before,
.cranberry-faq-toggle:after {
    content: "";
    position: absolute;
    width: 10px;
    height: 2px;
    border-radius: 999px;
    background: var(--cranberry-blue-deep);
    transition: background .24s ease;
}

.cranberry-faq-toggle:after {
    transform: rotate(90deg);
}

.cranberry-faq-panel {
    display: grid;
    grid-template-rows: 0fr;
    opacity: 0;
    transform: translateY(-6px);
    transition: grid-template-rows .36s cubic-bezier(.16, 1, .3, 1), opacity .24s ease, transform .3s ease;
}

.cranberry-faq-panel-inner {
    position: relative;
    min-height: 0;
    margin: 0 18px;
    padding: 0 0 18px 0;
    overflow: hidden;
    border-left: 0;
}

.cranberry-faq-panel-inner:before {
    display: none;
}

.cranberry-faq-panel p {
    max-width: none;
    margin: 0;
    color: var(--cranberry-muted);
    font-size: 14px;
    line-height: 1.65;
}

.cranberry-faq-item:hover {
    background: #fff;
    box-shadow: 0 14px 34px rgba(16, 40, 64, .09);
    transform: translateY(-1px);
}

.cranberry-faq-item:hover:before {
    display: none;
}

.cranberry-faq-item.is-open:after {
    display: none;
}

.cranberry-faq-trigger:hover .cranberry-faq-question {
    color: var(--cranberry-blue-deep);
}

.cranberry-faq-trigger:hover .cranberry-faq-index {
    background: var(--cranberry-blue);
    color: #fff;
    transform: translateY(-1px);
}

.cranberry-faq-trigger:hover .cranberry-faq-index:before {
    border-color: rgba(251, 127, 106, .5);
    transform: rotate(14deg);
}

.cranberry-faq-trigger:hover .cranberry-faq-toggle {
    background: var(--cranberry-blue);
    box-shadow: none;
    transform: rotate(45deg);
}

.cranberry-faq-trigger:hover .cranberry-faq-toggle:before,
.cranberry-faq-trigger:hover .cranberry-faq-toggle:after {
    background: #fff;
}

.cranberry-faq-cta:focus-visible,
.cranberry-faq-contact a:focus-visible {
    outline: 3px solid rgba(88, 165, 235, .34);
    outline-offset: 4px;
}

.cranberry-faq-trigger:focus-visible .cranberry-faq-toggle {
    box-shadow: none;
}

.cranberry-faq-item.is-open .cranberry-faq-panel {
    grid-template-rows: 1fr;
    opacity: 1;
    transform: translateY(0);
}

.cranberry-faq-item.is-open .cranberry-faq-panel p {
    animation: cranberryFaqAnswer .42s ease .08s both;
}

.cranberry-faq-item.is-opening {
    animation: cranberryFaqOpen .52s cubic-bezier(.16, 1, .3, 1) both;
}

.cranberry-faq-item.is-closing {
    animation: cranberryFaqClose .42s ease both;
}

.cranberry-faq-item.is-opening .cranberry-faq-panel-inner {
    animation: cranberryFaqPanelIn .44s cubic-bezier(.16, 1, .3, 1) .06s both;
}

.cranberry-faq-item.is-closing .cranberry-faq-panel-inner {
    animation: cranberryFaqPanelOut .3s ease both;
}

@keyframes cranberryFaqAnswer {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes cranberryFaqOpen {
    0% {
        transform: translateY(0) scale(.992);
    }
    52% {
        transform: translateY(-4px) scale(1.004);
    }
    100% {
        transform: translateY(-2px) scale(1);
    }
}

@keyframes cranberryFaqClose {
    0% {
        transform: translateY(-2px) scale(1);
    }
    100% {
        transform: translateY(0) scale(.995);
    }
}

@keyframes cranberryFaqPanelIn {
    from {
        opacity: 0;
        transform: translateY(-10px) translateX(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0) translateX(0);
    }
}

@keyframes cranberryFaqPanelOut {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-8px);
    }
}

@media (max-width: 991px) {
    .cranberry-faq-section {
        padding: 56px 0 62px;
    }

    .cranberry-faq-layout {
        display: block;
    }

    .cranberry-faq-intro {
        position: static;
        max-width: 720px;
        margin-bottom: 40px;
        padding-top: 0;
    }

    .cranberry-faq-intro h2 {
        max-width: 680px;
        font-size: 34px;
    }

    .cranberry-faq-intro p {
        max-width: 680px;
        font-size: 16px;
    }

    .cranberry-faq-list {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

@media (max-width: 767px) {
    .cranberry-faq-section {
        padding: 50px 0 56px;
    }

    .cranberry-faq-section > .container {
        width: 100%;
        padding-right: 20px;
        padding-left: 20px;
    }

    .cranberry-faq-intro h2 {
        font-size: 29px;
    }

    .cranberry-faq-contact {
        max-width: none;
    }

    .cranberry-faq-trigger {
        min-height: 62px;
        grid-template-columns: 36px minmax(0, 1fr) 28px;
        gap: 10px;
        padding: 14px 14px;
    }

    .cranberry-faq-question {
        font-size: 15px;
    }

    .cranberry-faq-index {
        width: 30px;
        height: 30px;
        font-size: 11px;
    }

    .cranberry-faq-index:before {
        inset: -5px;
    }

    .cranberry-faq-toggle {
        width: 28px;
        height: 28px;
    }

    .cranberry-faq-panel-inner {
        margin-right: 14px;
        margin-left: 14px;
        padding: 0 0 16px 0;
    }
}

@media (max-width: 430px) {
    .cranberry-faq-trigger {
        grid-template-columns: 34px minmax(0, 1fr) 28px;
    }

    .cranberry-faq-index {
        grid-column: auto;
    }

    .cranberry-faq-panel-inner {
        margin-left: 14px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .cranberry-faq-item,
    .cranberry-faq-item:before,
    .cranberry-faq-item:after,
    .cranberry-faq-question,
    .cranberry-faq-index,
    .cranberry-faq-index:before,
    .cranberry-faq-toggle,
    .cranberry-faq-toggle:before,
    .cranberry-faq-toggle:after,
    .cranberry-faq-panel,
    .cranberry-faq-panel-inner,
    .cranberry-faq-panel p,
    .cranberry-faq-cta,
    .cranberry-faq-cta i {
        transition: none;
        animation: none;
    }
}

/* About page */
.cranberry-about-page-body {
    background: #fff;
}

.cranberry-about-page {
    overflow: hidden;
    background: #fff;
    color: var(--cranberry-ink);
    font-family: rubik, sans-serif;
}

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

.cranberry-about-page a {
    text-decoration: none;
}

.cranberry-about-page-hero {
    position: relative;
    isolation: isolate;
    display: flex;
    min-height: 620px;
    align-items: center;
    overflow: hidden;
    padding: 104px 0 126px;
    background: var(--cranberry-navy-3);
    color: #fff;
}

.cranberry-about-page-hero:before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background-image: linear-gradient(90deg, rgba(10, 27, 46, .9) 0%, rgba(16, 40, 64, .76) 47%, rgba(16, 40, 64, .24) 100%), var(--about-hero-image);
    background-position: center;
    background-size: cover;
    transform: scale(1.04);
}

.cranberry-about-page-hero:after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background-image: linear-gradient(115deg, transparent 0%, rgba(88, 165, 235, .18) 42%, transparent 58%), linear-gradient(180deg, rgba(10, 27, 46, .12), rgba(10, 27, 46, .74));
    background-size: 220% 100%, 100% 100%;
    animation: cranberryContactLightPass 10s ease-in-out infinite;
}

.cranberry-about-page-hero-inner,
.cranberry-about-page-proof-inner,
.cranberry-about-page-story-inner,
.cranberry-about-page-values-inner,
.cranberry-about-page-process-inner,
.cranberry-about-page-cta-inner {
    width: calc(100% - 56px);
    max-width: 1220px;
    margin: 0 auto;
}

.cranberry-about-page-kicker {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 18px;
    color: var(--cranberry-blue);
    font-family: poppins, sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1;
    text-transform: uppercase;
}

.cranberry-about-page-kicker:before {
    content: "";
    display: block;
    width: 42px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
}

.cranberry-about-page-hero h1 {
    max-width: 780px;
    margin: 0;
    color: #fff;
    font-size: 68px;
    line-height: 1;
    letter-spacing: 0;
    overflow-wrap: break-word;
}

.cranberry-about-page-hero p:not(.cranberry-about-page-kicker) {
    max-width: 640px;
    margin: 26px 0 0;
    color: rgba(255, 255, 255, .8);
    font-size: 18px;
    line-height: 1.82;
}

.cranberry-about-page-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 36px;
}

.cranberry-about-page-primary,
.cranberry-about-page-secondary {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 999px;
    font-family: poppins, sans-serif;
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, background .25s ease, color .25s ease;
}

.cranberry-about-page-primary {
    padding: 0 24px;
    border: 1px solid var(--cranberry-blue);
    background: var(--cranberry-blue);
    color: #fff !important;
    box-shadow: 0 18px 38px rgba(88, 165, 235, .3);
}

.cranberry-about-page-secondary {
    padding: 0 24px 0 14px;
    border: 1px solid rgba(255, 255, 255, .34);
    background: rgba(255, 255, 255, .1);
    color: #fff !important;
    backdrop-filter: blur(12px);
}

.cranberry-about-page-secondary .cranberry-call-icon {
    display: inline-flex;
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, .14);
    color: #fff;
    font-size: 13px;
    line-height: 1;
    transform: none;
    transition: background .25s ease, transform .25s ease;
}

.cranberry-about-page-secondary .cranberry-call-icon:before {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    background: currentColor;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1C10.61 21 3 13.39 3 4c0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.24.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1C10.61 21 3 13.39 3 4c0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.24.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.cranberry-about-page-primary:hover,
.cranberry-about-page-primary:focus,
.cranberry-about-page-secondary:hover,
.cranberry-about-page-secondary:focus {
    color: #fff !important;
    transform: translateY(-2px);
}

.cranberry-about-page-secondary:hover,
.cranberry-about-page-secondary:focus {
    border-color: var(--cranberry-warm);
    background: var(--cranberry-warm);
    box-shadow: 0 18px 38px rgba(251, 127, 106, .26);
}

.cranberry-about-page-secondary:hover .cranberry-call-icon,
.cranberry-about-page-secondary:focus .cranberry-call-icon {
    background: rgba(255, 255, 255, .2);
    transform: scale(1.04);
}

.cranberry-about-page-proof {
    position: relative;
    z-index: 3;
    margin-top: -58px;
}

.cranberry-about-page-proof-inner {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    padding: 18px;
    border: 1px solid rgba(88, 165, 235, .24);
    border-radius: 8px;
    background: rgba(255, 255, 255, .9);
    box-shadow: 0 24px 64px rgba(31, 49, 71, .1);
    backdrop-filter: blur(10px);
}

.cranberry-about-page-proof-card {
    position: relative;
    display: grid;
    min-height: 176px;
    align-content: center;
    gap: 10px;
    overflow: hidden;
    padding: 24px;
    border: 1px solid rgba(88, 165, 235, .22);
    border-radius: 8px;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 22px 48px rgba(31, 49, 71, .12);
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease, background .28s ease;
}

.cranberry-about-page-proof-card:before {
    content: "";
    position: absolute;
    right: 24px;
    bottom: 18px;
    left: 24px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(88, 165, 235, .16), var(--cranberry-blue), rgba(251, 127, 106, .62));
    opacity: .65;
    transform: scaleX(.18);
    transform-origin: left;
    transition: transform .28s ease, opacity .28s ease;
}

.cranberry-about-page-proof-card:hover {
    border-color: rgba(88, 165, 235, .48);
    background: linear-gradient(135deg, #fff 0%, #f4faff 100%);
    box-shadow: 0 30px 64px rgba(31, 49, 71, .16);
    transform: translateY(-8px);
}

.cranberry-about-page-proof-card:hover:before {
    opacity: 1;
    transform: scaleX(1);
}

.cranberry-about-page-proof-icon {
    display: inline-flex;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    margin-bottom: 6px;
    border: 1px solid rgba(88, 165, 235, .24);
    border-radius: 50%;
    background: var(--cranberry-blue-soft);
    color: var(--cranberry-blue-deep);
    font-size: 18px;
    line-height: 1;
    transition: transform .28s ease, background .28s ease, border-color .28s ease, color .28s ease;
}

.cranberry-about-page-proof-card:hover .cranberry-about-page-proof-icon {
    border-color: var(--cranberry-blue);
    background: var(--cranberry-blue);
    color: #fff;
    transform: translateY(-3px) rotate(-6deg);
}

.cranberry-about-page-proof strong {
    color: var(--cranberry-navy);
    font-family: poppins, sans-serif;
    font-size: 30px;
    line-height: 1;
    transition: color .28s ease, transform .28s ease;
}

.cranberry-about-page-proof-card:hover strong {
    color: var(--cranberry-blue-deep);
    transform: translateY(-2px);
}

.cranberry-about-page-proof span {
    color: var(--cranberry-muted);
    font-size: 14px;
    line-height: 1.45;
    transition: color .28s ease;
}

.cranberry-about-page-proof-card:hover span {
    color: var(--cranberry-ink);
}

.cranberry-about-page-story {
    padding: 104px 0;
    background: linear-gradient(180deg, #fff 0%, #f7fbff 100%);
}

.cranberry-about-page-story-inner {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(390px, 1.1fr);
    gap: 58px;
    align-items: center;
}

.cranberry-about-page-story-copy h2,
.cranberry-about-page-values-heading h2,
.cranberry-about-page-process h2,
.cranberry-about-page-cta h2 {
    max-width: 720px;
    margin: 0;
    color: var(--cranberry-navy);
    font-size: 42px;
    line-height: 1.14;
    letter-spacing: 0;
}

.cranberry-about-page-story-copy p:not(.cranberry-about-page-kicker),
.cranberry-about-page-process p,
.cranberry-about-page-cta p {
    max-width: 650px;
    margin: 22px 0 0;
    color: var(--cranberry-muted);
    font-size: 16px;
    line-height: 1.78;
}

.cranberry-about-page-text-link {
    display: inline-flex;
    margin-top: 28px;
    align-items: center;
    color: var(--cranberry-blue-deep) !important;
    font-family: poppins, sans-serif;
    font-size: 13px;
    font-weight: 800;
}

.cranberry-about-page-text-link:after {
    content: "\f061";
    margin-left: 10px;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    transition: transform .2s ease;
}

.cranberry-about-page-text-link:hover:after,
.cranberry-about-page-text-link:focus:after {
    transform: translateX(4px);
}

.cranberry-about-page-story-media {
    position: relative;
    min-height: 540px;
    isolation: isolate;
    animation: cranberryAboutFloatIn .9s ease .12s both;
}

.cranberry-about-page-photo-main,
.cranberry-about-page-photo-side {
    position: absolute;
    overflow: hidden;
    margin: 0;
    border: 1px solid rgba(255, 255, 255, .76);
    border-radius: 8px;
    background: var(--cranberry-blue-soft);
    box-shadow: 0 26px 70px rgba(16, 40, 64, .16);
    transition: transform .55s ease, box-shadow .55s ease, filter .55s ease;
}

.cranberry-about-page-photo-main:after,
.cranberry-about-page-photo-side:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(16, 40, 64, .02) 12%, rgba(16, 40, 64, .34) 100%);
    opacity: .42;
    transition: opacity .45s ease;
}

.cranberry-about-page-photo-main img,
.cranberry-about-page-photo-side img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.03);
    transition: transform .75s ease, filter .75s ease;
}

.cranberry-about-page-photo-main {
    top: 0;
    right: 28px;
    width: min(500px, 78%);
    height: 430px;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 64px), calc(100% - 64px) 100%, 0 100%);
}

.cranberry-about-page-photo-side {
    left: 0;
    bottom: 20px;
    z-index: 2;
    width: min(282px, 46%);
    height: 330px;
    clip-path: polygon(0 42px, 42px 0, 100% 0, 100% 100%, 0 100%);
}

.cranberry-about-page-story-media:hover .cranberry-about-page-photo-main,
.cranberry-about-page-story-media:focus-within .cranberry-about-page-photo-main {
    box-shadow: 0 34px 80px rgba(16, 40, 64, .21);
    transform: translate3d(-10px, -8px, 0) rotate(-1.2deg);
}

.cranberry-about-page-story-media:hover .cranberry-about-page-photo-side,
.cranberry-about-page-story-media:focus-within .cranberry-about-page-photo-side {
    box-shadow: 0 30px 70px rgba(16, 40, 64, .2);
    transform: translate3d(12px, -10px, 0) rotate(1.4deg);
}

.cranberry-about-page-story-media:hover .cranberry-about-page-photo-main img,
.cranberry-about-page-story-media:focus-within .cranberry-about-page-photo-main img,
.cranberry-about-page-story-media:hover .cranberry-about-page-photo-side img,
.cranberry-about-page-story-media:focus-within .cranberry-about-page-photo-side img {
    filter: saturate(1.08) contrast(1.04);
    transform: scale(1.1);
}

.cranberry-about-page-story-media:hover .cranberry-about-page-photo-main:after,
.cranberry-about-page-story-media:focus-within .cranberry-about-page-photo-main:after,
.cranberry-about-page-story-media:hover .cranberry-about-page-photo-side:after,
.cranberry-about-page-story-media:focus-within .cranberry-about-page-photo-side:after {
    opacity: .25;
}

.cranberry-about-page-route-note {
    position: absolute;
    right: 0;
    bottom: 128px;
    z-index: 4;
    max-width: 286px;
    padding: 18px 20px;
    border: 1px solid var(--cranberry-blue-line);
    border-left: 4px solid var(--cranberry-warm);
    border-radius: 8px;
    background: rgba(255, 255, 255, .95);
    box-shadow: 0 18px 42px rgba(16, 40, 64, .12);
    backdrop-filter: blur(12px);
}

.cranberry-about-page-route-note span {
    display: block;
    color: var(--cranberry-muted);
    font-family: poppins, sans-serif;
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
}

.cranberry-about-page-route-note strong {
    display: block;
    margin-top: 8px;
    color: var(--cranberry-navy);
    font-size: 16px;
    line-height: 1.35;
}

.cranberry-about-page-route-line {
    inset: 42px 44px 74px 96px;
}

.cranberry-about-page-values {
    padding: 96px 0;
    background: #fff;
}

.cranberry-about-page-values-inner {
    display: grid;
    gap: 34px;
}

.cranberry-about-page-value-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.cranberry-about-page-value-grid article {
    display: grid;
    min-height: 286px;
    align-content: start;
    gap: 16px;
    padding: 30px;
    border: 1px solid rgba(88, 165, 235, .2);
    border-radius: 8px;
    background: linear-gradient(180deg, #fff 0%, #f8fcff 100%);
    box-shadow: 0 18px 44px rgba(31, 49, 71, .08);
}

.cranberry-about-page-value-grid i {
    display: inline-flex;
    width: 52px;
    height: 52px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--cranberry-blue-soft);
    color: var(--cranberry-blue-deep);
    font-size: 18px;
}

.cranberry-about-page-value-grid h3 {
    margin: 0;
    color: var(--cranberry-navy);
    font-size: 22px;
    line-height: 1.22;
}

.cranberry-about-page-value-grid p {
    margin: 0;
    color: var(--cranberry-muted);
    font-size: 15px;
    line-height: 1.7;
}

.cranberry-about-page-process {
    padding: 96px 0;
    background: linear-gradient(180deg, #f7fbff 0%, #fff 100%);
}

.cranberry-about-page-process-inner {
    display: grid;
    grid-template-columns: minmax(280px, .72fr) minmax(0, 1fr);
    gap: 52px;
    align-items: start;
}

.cranberry-about-page-process ol {
    display: grid;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid rgba(31, 49, 71, .12);
}

.cranberry-about-page-process li {
    display: grid;
    min-height: 122px;
    grid-template-columns: 68px minmax(130px, .34fr) minmax(0, 1fr);
    gap: 20px;
    align-items: center;
    border-bottom: 1px solid rgba(31, 49, 71, .12);
}

.cranberry-about-page-process span {
    color: var(--cranberry-warm);
    font-family: poppins, sans-serif;
    font-size: 13px;
    font-weight: 800;
}

.cranberry-about-page-process strong {
    color: var(--cranberry-navy);
    font-size: 20px;
    line-height: 1.2;
}

.cranberry-about-page-process small {
    color: var(--cranberry-muted);
    font-size: 15px;
    line-height: 1.7;
}

.cranberry-about-page-cta {
    padding: 0 0 96px;
    background: #fff;
}

.cranberry-about-page-cta-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: center;
    padding: 36px;
    border: 1px solid rgba(88, 165, 235, .22);
    border-radius: 8px;
    background: linear-gradient(135deg, var(--cranberry-navy) 0%, #1b466a 58%, #2f6b77 100%);
    box-shadow: 0 24px 60px rgba(31, 49, 71, .14);
}

.cranberry-about-page-cta h2,
.cranberry-about-page-cta p {
    color: #fff;
}

.cranberry-about-page-cta p {
    color: rgba(255, 255, 255, .76);
}

@media (max-width: 1199px) {
    .cranberry-about-page-hero h1 {
        font-size: 58px;
    }

    .cranberry-about-page-proof-inner,
    .cranberry-about-page-value-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cranberry-about-page-story-inner,
    .cranberry-about-page-process-inner {
        grid-template-columns: 1fr;
    }

    .cranberry-about-page-story-media {
        width: min(720px, 100%);
        margin: 0 auto;
    }
}

@media (max-width: 767px) {
    .cranberry-about-page-hero {
        min-height: 560px;
        padding: 72px 0 108px;
    }

    .cranberry-about-page-hero-inner,
    .cranberry-about-page-proof-inner,
    .cranberry-about-page-story-inner,
    .cranberry-about-page-values-inner,
    .cranberry-about-page-process-inner,
    .cranberry-about-page-cta-inner {
        width: calc(100% - 32px);
    }

    .cranberry-about-page-hero h1 {
        font-size: 38px;
        line-height: 1.08;
    }

    .cranberry-about-page-hero p:not(.cranberry-about-page-kicker) {
        max-width: 100%;
        font-size: 16px;
        line-height: 1.7;
        overflow-wrap: break-word;
    }

    .cranberry-about-page-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .cranberry-about-page-primary,
    .cranberry-about-page-secondary {
        width: 100%;
    }

    .cranberry-about-page-proof-inner,
    .cranberry-about-page-value-grid {
        grid-template-columns: 1fr;
    }

    .cranberry-about-page-proof {
        margin-top: -46px;
    }

    .cranberry-about-page-story,
    .cranberry-about-page-values,
    .cranberry-about-page-process {
        padding: 72px 0;
    }

    .cranberry-about-page-story-copy h2,
    .cranberry-about-page-values-heading h2,
    .cranberry-about-page-process h2,
    .cranberry-about-page-cta h2 {
        font-size: 30px;
    }

    .cranberry-about-page-story-media {
        min-height: 460px;
    }

    .cranberry-about-page-photo-main {
        top: 34px;
        right: 0;
        width: 84%;
        height: 340px;
    }

    .cranberry-about-page-photo-side {
        bottom: 28px;
        width: 49%;
        height: 240px;
    }

    .cranberry-about-page-route-note {
        right: 8px;
        bottom: 54px;
        max-width: min(260px, 72%);
        padding: 15px 16px;
    }

    .cranberry-about-page-process li {
        min-height: 0;
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 22px 0;
    }

    .cranberry-about-page-cta {
        padding-bottom: 72px;
    }

    .cranberry-about-page-cta-inner {
        grid-template-columns: 1fr;
        padding: 26px;
    }
}

@media (max-width: 480px) {
    .cranberry-about-page-story-media {
        min-height: 410px;
    }

    .cranberry-about-page-photo-main {
        width: 88%;
        height: 300px;
    }

    .cranberry-about-page-photo-side {
        width: 54%;
        height: 200px;
    }

    .cranberry-about-page-route-note {
        right: 0;
        bottom: 28px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .cranberry-about-page-hero:after,
    .cranberry-about-page-primary,
    .cranberry-about-page-secondary,
    .cranberry-about-page-text-link:after,
    .cranberry-about-page-story-media,
    .cranberry-about-page-photo-main,
    .cranberry-about-page-photo-main:after,
    .cranberry-about-page-photo-main img,
    .cranberry-about-page-photo-side,
    .cranberry-about-page-photo-side:after,
    .cranberry-about-page-photo-side img,
    .cranberry-about-page-route-line:before,
    .cranberry-about-page-route-line:after,
    .cranberry-about-page-route-line span {
        animation: none;
        transition: none;
    }
}

/* Contact page */
.cranberry-contact-body {
    background: #fff;
}

.cranberry-contact-page {
    overflow: hidden;
    background: #fff;
    color: var(--cranberry-ink);
    font-family: rubik, sans-serif;
}

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

.cranberry-contact-page a {
    text-decoration: none;
}

.cranberry-contact-hero {
    position: relative;
    isolation: isolate;
    display: flex;
    min-height: 640px;
    align-items: center;
    overflow: hidden;
    padding: 104px 0 126px;
    background: var(--cranberry-navy-3);
    color: #fff;
}

.cranberry-contact-hero:before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -3;
    background-image: linear-gradient(90deg, rgba(10, 27, 46, .86) 0%, rgba(16, 40, 64, .74) 46%, rgba(16, 40, 64, .18) 100%), var(--contact-hero-image);
    background-position: center;
    background-size: cover;
    transform: scale(1.04);
    animation: cranberryContactImageDrift 22s ease-in-out infinite alternate;
}

.cranberry-contact-hero:after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background-image: linear-gradient(115deg, transparent 0%, rgba(88, 165, 235, .2) 40%, transparent 54%), linear-gradient(180deg, rgba(10, 27, 46, .18), rgba(10, 27, 46, .72));
    background-size: 220% 100%, 100% 100%;
    animation: cranberryContactLightPass 10s ease-in-out infinite;
}

.cranberry-contact-hero-inner {
    position: relative;
    z-index: 2;
    width: calc(100% - 56px);
    max-width: 1180px;
    margin: 0 auto;
}

.cranberry-contact-kicker,
.cranberry-contact-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 18px;
    color: var(--cranberry-blue);
    font-family: poppins, sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1;
    text-transform: uppercase;
}

.cranberry-contact-kicker:before,
.cranberry-contact-eyebrow:before {
    content: "";
    display: block;
    width: 42px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
}

.cranberry-contact-hero h1 {
    max-width: 760px;
    margin: 0;
    color: #fff;
    font-size: 72px;
    line-height: .98;
    letter-spacing: 0;
    overflow-wrap: break-word;
}

.cranberry-contact-hero-copy {
    max-width: 610px;
    margin: 26px 0 0;
    color: rgba(255, 255, 255, .78);
    font-size: 18px;
    line-height: 1.82;
}

.cranberry-contact-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 36px;
}

.cranberry-contact-primary-link,
.cranberry-contact-ghost-link,
.cranberry-contact-submit {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 999px;
    font-family: poppins, sans-serif;
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
}

.cranberry-contact-primary-link {
    padding: 0 24px;
    border: 1px solid var(--cranberry-blue);
    background: var(--cranberry-blue);
    color: #fff !important;
    box-shadow: 0 18px 38px rgba(88, 165, 235, .3);
}

.cranberry-contact-primary-link .cranberry-contact-call-icon {
    display: inline-flex;
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    align-items: center;
    justify-content: center;
    color: currentColor;
    line-height: 1;
}

.cranberry-contact-primary-link .cranberry-contact-call-icon svg {
    display: block;
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.cranberry-contact-ghost-link {
    padding: 0 22px;
    border: 1px solid rgba(255, 255, 255, .26);
    background: rgba(255, 255, 255, .08);
    color: #fff !important;
    backdrop-filter: blur(12px);
}

.cranberry-contact-primary-link:hover,
.cranberry-contact-primary-link:focus,
.cranberry-contact-ghost-link:hover,
.cranberry-contact-ghost-link:focus {
    transform: translateY(-2px);
}

.cranberry-contact-signal {
    position: relative;
    z-index: 4;
    display: grid;
    width: calc(100% - 56px);
    max-width: 1280px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin: -58px auto 0;
}

.cranberry-contact-channel {
    position: relative;
    display: grid;
    min-height: 118px;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    overflow: hidden;
    padding: 20px;
    border: 1px solid rgba(88, 165, 235, .22);
    border-radius: 8px;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 22px 48px rgba(31, 49, 71, .12);
}

.cranberry-contact-channel:after {
    content: "";
    position: absolute;
    right: 18px;
    bottom: 14px;
    left: 82px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(88, 165, 235, .1), var(--cranberry-blue), rgba(251, 127, 106, .55));
    transform: scaleX(.18);
    transform-origin: left;
    transition: transform .26s ease;
}

.cranberry-contact-channel:hover:after,
.cranberry-contact-channel:focus:after {
    transform: scaleX(1);
}

.cranberry-contact-channel-icon {
    display: inline-flex;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--cranberry-blue-soft);
    color: var(--cranberry-blue-deep);
}

.cranberry-contact-phone-svg {
    display: block;
    width: 20px;
    height: 20px;
    fill: currentColor;
    line-height: 1;
}

.cranberry-contact-channel-icon .cranberry-contact-phone-svg {
    width: 22px;
    height: 22px;
}

.cranberry-contact-channel-copy {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 6px;
}

.cranberry-contact-channel-copy small {
    color: var(--cranberry-muted);
    font-family: poppins, sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1;
    text-transform: uppercase;
}

.cranberry-contact-channel-copy strong {
    min-width: 0;
    color: var(--cranberry-ink);
    font-size: 15px;
    line-height: 1.35;
    overflow-wrap: anywhere;
}

a.cranberry-contact-channel:hover strong,
a.cranberry-contact-channel:focus strong {
    color: var(--cranberry-blue-deep);
}

.cranberry-contact-workbench {
    position: relative;
    padding: 104px 0;
    background: linear-gradient(180deg, #fff 0%, #f6fbff 100%);
}

.cranberry-contact-workbench:before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: linear-gradient(rgba(88, 165, 235, .08) 1px, transparent 1px), linear-gradient(90deg, rgba(88, 165, 235, .08) 1px, transparent 1px);
    background-position: center;
    background-size: 54px 54px;
    mask-image: linear-gradient(180deg, transparent 0%, #000 28%, #000 70%, transparent 100%);
}

.cranberry-contact-workbench-inner {
    position: relative;
    z-index: 1;
    display: grid;
    width: calc(100% - 56px);
    max-width: 1220px;
    grid-template-columns: minmax(0, 1.05fr) minmax(340px, .72fr);
    gap: 28px;
    margin: 0 auto;
    align-items: start;
}

.cranberry-contact-form-panel,
.cranberry-contact-route-panel,
.cranberry-contact-map-shell {
    border: 1px solid rgba(88, 165, 235, .2);
    border-radius: 8px;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 24px 60px rgba(31, 49, 71, .1);
}

.cranberry-contact-form-panel {
    padding: 42px;
}

.cranberry-contact-form-panel h2,
.cranberry-contact-ritual-intro h2,
.cranberry-contact-map-shell h2 {
    max-width: 620px;
    margin: 0;
    color: var(--cranberry-navy);
    font-size: 38px;
    line-height: 1.16;
    letter-spacing: 0;
}

.cranberry-contact-form {
    display: grid;
    gap: 18px;
    margin-top: 30px;
}

.cranberry-contact-two {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.cranberry-contact-form label {
    display: grid;
    gap: 8px;
    margin: 0;
}

.cranberry-contact-form label span {
    color: var(--cranberry-ink);
    font-family: poppins, sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1;
    text-transform: uppercase;
}

.cranberry-contact-form input,
.cranberry-contact-form textarea {
    width: 100%;
    border: 1px solid rgba(31, 49, 71, .14);
    border-radius: 8px;
    background: #fff;
    color: var(--cranberry-ink);
    font: 500 15px/1.5 rubik, sans-serif;
    outline: 0;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.cranberry-contact-form input {
    min-height: 54px;
    padding: 0 16px;
}

.cranberry-contact-form textarea {
    min-height: 158px;
    resize: vertical;
    padding: 15px 16px;
}

.cranberry-contact-form input:focus,
.cranberry-contact-form textarea:focus {
    border-color: var(--cranberry-blue);
    box-shadow: 0 0 0 4px rgba(88, 165, 235, .14);
    transform: translateY(-1px);
}

.cranberry-contact-captcha {
    display: grid;
    grid-template-columns: minmax(180px, .42fr) minmax(0, 1fr);
    gap: 18px;
    align-items: end;
}

.cranberry-contact-captcha-card {
    display: grid;
    min-height: 74px;
    align-content: center;
    gap: 7px;
    padding: 14px 18px;
    border: 1px solid rgba(88, 165, 235, .24);
    border-radius: 8px;
    background: linear-gradient(135deg, var(--cranberry-blue-soft) 0%, #fff 100%);
}

.cranberry-contact-captcha-card small {
    color: var(--cranberry-muted);
    font-family: poppins, sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1;
    text-transform: uppercase;
}

.cranberry-contact-captcha-card strong {
    color: var(--cranberry-navy);
    font-family: poppins, sans-serif;
    font-size: 24px;
    line-height: 1;
}

.cranberry-contact-submit {
    width: fit-content;
    min-width: 188px;
    margin-top: 4px;
    padding: 0 24px;
    border: 0;
    background: linear-gradient(135deg, var(--cranberry-blue) 0%, var(--cranberry-blue-deep) 100%);
    color: #fff;
    cursor: pointer;
    box-shadow: 0 18px 38px rgba(88, 165, 235, .28);
}

.cranberry-contact-submit:hover,
.cranberry-contact-submit:focus {
    transform: translateY(-2px);
}

.cranberry-contact-route-panel {
    position: sticky;
    top: 112px;
    overflow: hidden;
    padding: 0;
    background: var(--cranberry-navy);
    color: #fff;
}

.cranberry-contact-details-panel {
    padding: 16px 0;
}

.cranberry-contact-route-panel:before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(135deg, rgba(88, 165, 235, .18), transparent 32%), linear-gradient(rgba(255, 255, 255, .06) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .06) 1px, transparent 1px);
    background-size: auto, 34px 34px, 34px 34px;
    pointer-events: none;
}

.cranberry-contact-route-head,
.cranberry-contact-desk-list,
.cranberry-contact-socials {
    position: relative;
    z-index: 1;
}

.cranberry-contact-route-head {
    display: grid;
    gap: 8px;
    padding: 28px 30px 0;
}

.cranberry-contact-route-head span {
    color: var(--cranberry-blue);
    font-family: poppins, sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1;
    text-transform: uppercase;
}

.cranberry-contact-route-head strong {
    color: #fff;
    font-size: 28px;
    line-height: 1.18;
}

.cranberry-contact-route-map {
    position: relative;
    z-index: 1;
    height: 276px;
    margin: 8px 0 0;
}

.cranberry-contact-route-map svg {
    display: block;
    width: 100%;
    height: 100%;
}

.route-grid {
    fill: none;
    stroke: rgba(255, 255, 255, .26);
    stroke-linecap: round;
    stroke-width: 2;
}

.route-grid-live {
    stroke: var(--cranberry-blue);
    stroke-width: 4;
    stroke-dasharray: 26 20;
    animation: cranberryContactRouteRun 6s linear infinite;
}

.route-pulse {
    fill: #fff;
    stroke: var(--cranberry-warm);
    stroke-width: 4;
    transform-origin: center;
    animation: cranberryContactNodePulse 2.4s ease-in-out infinite;
}

.pulse-two {
    animation-delay: .35s;
}

.pulse-three {
    animation-delay: .7s;
}

.cranberry-contact-desk-list {
    display: grid;
    margin: 0;
    border-top: 0;
}

.cranberry-contact-desk-item {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    grid-template-rows: auto auto;
    column-gap: 16px;
    row-gap: 7px;
    align-items: center;
    padding: 18px 30px;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.cranberry-contact-desk-list dt {
    display: contents;
}

.cranberry-contact-desk-label {
    grid-column: 2;
    grid-row: 1;
    color: rgba(255, 255, 255, .58);
    font-family: poppins, sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1;
    text-transform: uppercase;
}

.cranberry-contact-desk-icon {
    display: inline-flex;
    grid-column: 1;
    grid-row: 1 / 3;
    width: 48px;
    height: 48px;
    align-items: center;
    align-self: center;
    justify-content: center;
    border: 1px solid rgba(88, 165, 235, .28);
    border-radius: 50%;
    background: rgba(88, 165, 235, .13);
    color: var(--cranberry-blue);
    font-size: 15px;
}

.cranberry-contact-desk-list dd {
    grid-column: 2;
    grid-row: 2;
    margin: 0;
    color: #fff;
    font-size: 15px;
    line-height: 1.4;
    overflow-wrap: anywhere;
}

.cranberry-contact-desk-list a {
    color: #fff;
}

.cranberry-contact-desk-list a:hover,
.cranberry-contact-desk-list a:focus {
    color: var(--cranberry-blue);
}

.cranberry-contact-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 24px 30px 30px;
}

.cranberry-contact-socials a {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    color: #fff;
}

.cranberry-contact-socials a:hover,
.cranberry-contact-socials a:focus {
    border-color: var(--cranberry-blue);
    background: var(--cranberry-blue);
    color: #fff;
    transform: translateY(-2px);
}

.cranberry-contact-ritual {
    padding: 92px 0;
    background: #fff;
}

.cranberry-contact-ritual-inner {
    display: grid;
    width: calc(100% - 56px);
    max-width: 1220px;
    grid-template-columns: minmax(280px, .72fr) minmax(0, 1fr);
    gap: 48px;
    margin: 0 auto;
    align-items: start;
}

.cranberry-contact-steps {
    display: grid;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid rgba(31, 49, 71, .12);
}

.cranberry-contact-steps li {
    display: grid;
    min-height: 132px;
    grid-template-columns: 78px minmax(170px, .42fr) minmax(0, 1fr);
    gap: 22px;
    align-items: center;
    border-bottom: 1px solid rgba(31, 49, 71, .12);
}

.cranberry-contact-steps span {
    color: var(--cranberry-blue);
    font-family: poppins, sans-serif;
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
}

.cranberry-contact-steps strong {
    color: var(--cranberry-navy);
    font-size: 20px;
    line-height: 1.2;
}

.cranberry-contact-steps small {
    color: var(--cranberry-muted);
    font-size: 15px;
    line-height: 1.7;
}

.cranberry-contact-map-section {
    padding: 0 0 96px;
    background: #fff;
}

.cranberry-contact-map-shell {
    display: grid;
    width: calc(100% - 56px);
    max-width: 1220px;
    grid-template-columns: minmax(280px, .46fr) minmax(0, 1fr);
    gap: 28px;
    margin: 0 auto;
    padding: 28px;
    align-items: center;
}

.cranberry-contact-map-shell p {
    margin: 18px 0 0;
    color: var(--cranberry-muted);
    line-height: 1.7;
}

.cranberry-contact-map-frame {
    overflow: hidden;
    min-height: 360px;
    border-radius: 8px;
    background: var(--cranberry-blue-soft);
}

.cranberry-contact-map-frame iframe {
    display: block;
    width: 100% !important;
    min-height: 360px;
    border: 0;
}

.cranberry-contact-page.has-reveal [data-contact-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s ease, transform .7s ease;
    transition-delay: var(--contact-delay, 0ms);
}

.cranberry-contact-page.has-reveal [data-contact-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes cranberryContactImageDrift {
    0% {
        transform: scale(1.04) translate3d(0, 0, 0);
    }

    100% {
        transform: scale(1.1) translate3d(18px, -10px, 0);
    }
}

@keyframes cranberryContactLightPass {
    0%,
    38% {
        background-position: -120% 0, center;
    }

    72%,
    100% {
        background-position: 120% 0, center;
    }
}

@keyframes cranberryContactRouteRun {
    to {
        stroke-dashoffset: -220;
    }
}

@keyframes cranberryContactNodePulse {
    0%,
    100% {
        transform: scale(1);
        opacity: .72;
    }

    50% {
        transform: scale(1.45);
        opacity: 1;
    }
}

@media (max-width: 1199px) {
    .cranberry-contact-hero h1 {
        font-size: 58px;
    }

    .cranberry-contact-signal {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cranberry-contact-workbench-inner,
    .cranberry-contact-ritual-inner,
    .cranberry-contact-map-shell {
        grid-template-columns: 1fr;
    }

    .cranberry-contact-route-panel {
        position: relative;
        top: auto;
    }
}

@media (max-width: 767px) {
    .cranberry-contact-hero {
        min-height: 560px;
        padding: 72px 0 108px;
    }

    .cranberry-contact-hero-inner,
    .cranberry-contact-signal,
    .cranberry-contact-workbench-inner,
    .cranberry-contact-ritual-inner,
    .cranberry-contact-map-shell {
        width: calc(100% - 32px);
    }

    .cranberry-contact-hero h1 {
        font-size: 38px;
        line-height: 1.08;
    }

    .cranberry-contact-hero-copy {
        max-width: 100%;
        font-size: 16px;
        line-height: 1.7;
        overflow-wrap: break-word;
    }

    .cranberry-contact-hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .cranberry-contact-primary-link,
    .cranberry-contact-ghost-link {
        width: 100%;
    }

    .cranberry-contact-signal {
        grid-template-columns: 1fr;
        margin-top: -46px;
    }

    .cranberry-contact-workbench {
        padding: 72px 0;
    }

    .cranberry-contact-form-panel {
        padding: 26px;
    }

    .cranberry-contact-form-panel h2,
    .cranberry-contact-ritual-intro h2,
    .cranberry-contact-map-shell h2 {
        font-size: 28px;
    }

    .cranberry-contact-two {
        grid-template-columns: 1fr;
    }

    .cranberry-contact-captcha {
        grid-template-columns: 1fr;
    }

    .cranberry-contact-submit {
        width: 100%;
    }

    .cranberry-contact-route-map {
        height: 220px;
    }

    .cranberry-contact-ritual {
        padding: 68px 0;
    }

    .cranberry-contact-steps li {
        min-height: 0;
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 22px 0;
    }

    .cranberry-contact-map-shell {
        padding: 20px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .cranberry-contact-hero:before,
    .cranberry-contact-hero:after,
    .route-grid-live,
    .route-pulse,
    .cranberry-contact-primary-link,
    .cranberry-contact-ghost-link,
    .cranberry-contact-submit,
    .cranberry-contact-channel:after,
    .cranberry-contact-page.has-reveal [data-contact-reveal] {
        transition: none;
        animation: none;
    }
}

.cranberry-nav-dropdown {
    position: relative;
}

.cranberry-nav-dropdown-control {
    display: block;
}

.cranberry-nav-dropdown-control summary {
    list-style: none;
    cursor: pointer;
}

.cranberry-nav-dropdown-control summary::-webkit-details-marker {
    display: none;
}

.header_menu .navbar.navbar-default .cranberry-nav-links .nav.navbar-nav li.cranberry-nav-dropdown > a,
.header_menu .navbar.navbar-default .cranberry-nav-links .nav.navbar-nav li.cranberry-nav-dropdown summary {
    position: relative;
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    padding: 0 14px !important;
    gap: 6px;
    color: var(--cranberry-ink);
    font-family: poppins, sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
}

.cranberry-nav-submenu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1100;
    width: 224px;
    margin: 0;
    padding: 10px;
    list-style: none;
    background: #fff;
    border: 1px solid rgba(88, 165, 235, .24);
    border-radius: 8px;
    box-shadow: 0 24px 54px rgba(31, 49, 71, .16);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(0);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}

.header_menu .navbar.navbar-default .cranberry-nav-links .nav.navbar-nav li.cranberry-nav-dropdown > .cranberry-nav-submenu {
    width: 224px !important;
    min-width: 224px;
}

.cranberry-nav-dropdown:hover:after,
.cranberry-nav-dropdown:focus-within:after,
.cranberry-nav-dropdown.is-open:after {
    content: "";
    position: absolute;
    top: calc(100% - 2px);
    left: -10px;
    width: calc(100% + 244px);
    height: 18px;
    z-index: 1099;
}

.cranberry-nav-dropdown-control[open] .cranberry-nav-submenu,
.cranberry-nav-dropdown-control:hover .cranberry-nav-submenu,
.cranberry-nav-dropdown-control:focus-within .cranberry-nav-submenu,
.cranberry-nav-dropdown > a[aria-expanded="true"] + .cranberry-nav-submenu,
.cranberry-nav-dropdown.is-open .cranberry-nav-submenu {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto;
    transform: translateY(0);
}

.main_header_area .header_menu.hide:has(.cranberry-nav-dropdown.is-open) {
    top: 0 !important;
    animation-name: none !important;
}

.cranberry-nav-submenu li {
    display: block;
}

.header_menu .navbar.navbar-default .cranberry-nav-links .nav.navbar-nav li.cranberry-nav-dropdown .cranberry-nav-submenu li {
    display: block !important;
    width: 100%;
    margin: 0;
    border-bottom: 0;
}

.cranberry-nav-submenu-title {
    padding: 4px 12px 8px;
    color: var(--cranberry-muted);
    font-family: poppins, sans-serif;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .4px;
    line-height: 1.2;
    text-transform: uppercase;
}

.header_menu .navbar.navbar-default .cranberry-nav-links .nav.navbar-nav li.cranberry-nav-dropdown .cranberry-nav-submenu a {
    display: flex !important;
    width: 100%;
    min-height: 40px;
    align-items: center;
    justify-content: flex-start;
    gap: 9px;
    padding: 0 12px !important;
    border-radius: 6px;
    color: var(--cranberry-ink) !important;
    font-size: 13px !important;
    line-height: 1.2 !important;
}

.header_menu .navbar.navbar-default .cranberry-nav-links .nav.navbar-nav li.cranberry-nav-dropdown .cranberry-nav-submenu a:after {
    display: none !important;
}

.header_menu .navbar.navbar-default .cranberry-nav-links .nav.navbar-nav li.cranberry-nav-dropdown .cranberry-nav-submenu a:hover,
.header_menu .navbar.navbar-default .cranberry-nav-links .nav.navbar-nav li.cranberry-nav-dropdown .cranberry-nav-submenu a:focus,
.header_menu .navbar.navbar-default .cranberry-nav-links .nav.navbar-nav li.cranberry-nav-dropdown .cranberry-nav-submenu a.is-active {
    background: var(--cranberry-blue-soft) !important;
    color: var(--cranberry-blue-deep) !important;
}

.cranberry-mobile-package-links {
    margin: -2px 0 6px 12px;
    padding-left: 10px;
    border-left: 2px solid rgba(88, 165, 235, .24);
}

.cranberry-mobile-package-links span {
    display: block;
    padding: 4px 12px 5px;
    color: var(--cranberry-muted);
    font-family: poppins, sans-serif;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .4px;
    line-height: 1.2;
    text-transform: uppercase;
}

.cranberry-mobile-menu-panel .cranberry-mobile-package-links a {
    padding: 9px 12px;
    color: var(--cranberry-muted);
    font-size: 13px;
}

.cranberry-mobile-menu-panel .cranberry-mobile-package-links a:hover,
.cranberry-mobile-menu-panel .cranberry-mobile-package-links a:focus,
.cranberry-mobile-menu-panel .cranberry-mobile-package-links a.is-active {
    background: var(--cranberry-blue-soft);
    color: var(--cranberry-blue-deep) !important;
}

.cranberry-package-hero,
.cranberry-itinerary-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 94px 0 72px;
    background: var(--cranberry-navy);
    color: #fff;
    cursor: zoom-in;
}

.cranberry-package-hero.is-zoomed,
.cranberry-itinerary-hero.is-zoomed {
    cursor: zoom-out;
}

.cranberry-package-hero:before,
.cranberry-itinerary-hero:before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: var(--package-hero-image, var(--itinerary-hero-image)) center / cover no-repeat;
    pointer-events: none;
    transform: scale(1);
    transform-origin: center;
    transition: transform .72s ease, filter .72s ease;
    will-change: transform;
}

.cranberry-itinerary-hero:before {
    background-image: var(--itinerary-hero-image);
}

.cranberry-package-hero:hover:before,
.cranberry-itinerary-hero:hover:before {
    filter: saturate(1.06) contrast(1.04);
    transform: scale(1.05);
}

.cranberry-package-hero.is-zoomed:before,
.cranberry-itinerary-hero.is-zoomed:before {
    filter: saturate(1.1) contrast(1.06);
    transform: scale(1.16);
}

.cranberry-package-hero:after,
.cranberry-itinerary-hero:after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(10, 27, 46, .9) 0%, rgba(16, 40, 64, .76) 50%, rgba(16, 40, 64, .34) 100%),
        linear-gradient(90deg, rgba(255, 255, 255, .06) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
    background-size: auto, 92px 92px, 92px 92px;
    pointer-events: none;
}

.cranberry-itinerary-hero:after {
    background:
        linear-gradient(90deg, rgba(10, 27, 46, .92) 0%, rgba(16, 40, 64, .8) 52%, rgba(16, 40, 64, .4) 100%),
        linear-gradient(90deg, rgba(255, 255, 255, .06) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
    background-size: auto, 92px 92px, 92px 92px;
}

.cranberry-package-hero a,
.cranberry-itinerary-hero a {
    cursor: pointer;
}

.cranberry-package-hero > .container,
.cranberry-itinerary-hero > .container {
    position: relative;
    z-index: 2;
}

.cranberry-package-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 34px;
    color: rgba(255, 255, 255, .72);
    font-family: poppins, sans-serif;
    font-size: 13px;
    font-weight: 700;
}

.cranberry-package-breadcrumb a,
.cranberry-package-breadcrumb span {
    display: inline-flex;
    align-items: center;
    line-height: 1.2;
}

.cranberry-package-breadcrumb a {
    color: #fff;
}

.cranberry-package-breadcrumb a:after {
    content: "/";
    margin-left: 10px;
    color: rgba(255, 255, 255, .46);
}

.cranberry-package-hero-copy,
.cranberry-itinerary-hero-copy {
    max-width: 760px;
}

.cranberry-package-hero-copy p,
.cranberry-itinerary-hero-copy p,
.cranberry-itinerary-heading span {
    margin: 0 0 12px;
    color: var(--cranberry-blue);
    font-family: poppins, sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1.2;
    text-transform: uppercase;
}

.cranberry-package-hero-copy h1,
.cranberry-itinerary-hero-copy h1 {
    max-width: 820px;
    margin: 0;
    color: #fff;
    font-size: 52px;
    line-height: 1.1;
}

.cranberry-package-hero-copy span,
.cranberry-itinerary-hero-copy span {
    display: block;
    max-width: 720px;
    margin-top: 18px;
    color: rgba(255, 255, 255, .82);
    font-size: 17px;
    line-height: 1.72;
}

.cranberry-package-hero-facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    max-width: 900px;
    margin-top: 36px;
}

.cranberry-package-hero-facts span {
    position: relative;
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 8px;
    background: rgba(255, 255, 255, .09);
    color: #fff;
    font-family: poppins, sans-serif;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.35;
    backdrop-filter: blur(10px);
    transform: translateY(0);
    transition: transform .24s ease, background-color .24s ease, border-color .24s ease, box-shadow .24s ease, color .24s ease;
}

.cranberry-package-hero-facts span:before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(88, 165, 235, .22), rgba(255, 255, 255, .08));
    opacity: 0;
    pointer-events: none;
    transition: opacity .24s ease;
}

.cranberry-package-hero-facts span:hover,
.cranberry-package-hero-facts span:focus-within {
    border-color: rgba(88, 165, 235, .7);
    background: rgba(255, 255, 255, .15);
    box-shadow: 0 18px 42px rgba(10, 27, 46, .28);
    transform: translateY(-5px);
}

.cranberry-package-hero-facts span:hover:before,
.cranberry-package-hero-facts span:focus-within:before {
    opacity: 1;
}

.cranberry-package-hero-facts i,
.cranberry-itinerary-actions i,
.cranberry-itinerary-back i,
.cranberry-itinerary-help i {
    color: var(--cranberry-blue);
}

.cranberry-package-hero-facts i {
    display: inline-flex;
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    font-size: 18px;
    line-height: 1;
    transition: color .24s ease, transform .24s ease;
}

.cranberry-package-hero-facts .fa-phone {
    font-size: 22px;
}

.cranberry-package-hero-facts span:hover i,
.cranberry-package-hero-facts span:focus-within i {
    color: #fff;
    transform: scale(1.16);
}

.cranberry-package-hero-facts span > * {
    position: relative;
    z-index: 1;
}

i.fa-whatsapp:before {
    content: "";
    display: inline-block;
    width: 1em;
    height: 1em;
    background: currentColor;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M19.1 4.9A9.8 9.8 0 0 0 3.5 16.5L2 22l5.6-1.5A9.8 9.8 0 1 0 19.1 4.9Zm-7 .9c.2 0 .5 0 .7.5l.9 2c.1.3.1.5-.1.8l-.5.6c-.2.2-.3.5-.1.8.5 1 1.3 1.9 2.4 2.6.3.2.6.2.8-.1l.7-.8c.2-.3.5-.3.8-.2l1.9.9c.4.2.5.4.5.6-.1.8-.5 1.5-1.1 1.9-.6.4-1.6.5-2.7.1-3.3-1-5.9-3.5-6.9-6.8-.3-1.1-.2-2.1.3-2.7.5-.7 1.4-1.2 2.4-1.2Z'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M19.1 4.9A9.8 9.8 0 0 0 3.5 16.5L2 22l5.6-1.5A9.8 9.8 0 1 0 19.1 4.9Zm-7 .9c.2 0 .5 0 .7.5l.9 2c.1.3.1.5-.1.8l-.5.6c-.2.2-.3.5-.1.8.5 1 1.3 1.9 2.4 2.6.3.2.6.2.8-.1l.7-.8c.2-.3.5-.3.8-.2l1.9.9c.4.2.5.4.5.6-.1.8-.5 1.5-1.1 1.9-.6.4-1.6.5-2.7.1-3.3-1-5.9-3.5-6.9-6.8-.3-1.1-.2-2.1.3-2.7.5-.7 1.4-1.2 2.4-1.2Z'/%3E%3C/svg%3E") center / contain no-repeat;
    vertical-align: -.12em;
}

.cranberry-package-empty,
.cranberry-destination-empty,
.cranberry-itinerary-empty {
    padding: 30px;
    border: 1px solid rgba(207, 232, 255, .92);
    border-radius: 8px;
    background: #fff;
    color: var(--cranberry-muted);
    text-align: center;
}

.cranberry-itinerary-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 390px;
    gap: 44px;
    align-items: end;
}

.cranberry-itinerary-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.cranberry-itinerary-actions a,
.cranberry-itinerary-help-action {
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 0 24px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 10px;
    background: rgba(255, 255, 255, .12);
    color: #fff !important;
    font-family: poppins, sans-serif;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.1;
    text-align: center;
    white-space: nowrap;
    transition: transform .22s ease, box-shadow .22s ease, background-color .22s ease, border-color .22s ease;
}

.cranberry-itinerary-actions a:first-child,
.cranberry-itinerary-help-action {
    border-color: var(--cranberry-blue);
    background: var(--cranberry-blue);
    box-shadow: 0 16px 30px rgba(88, 165, 235, .24);
}

.cranberry-itinerary-actions a:not(:first-child) {
    background: rgba(10, 27, 46, .24);
    backdrop-filter: blur(10px);
}

.cranberry-itinerary-actions a:hover,
.cranberry-itinerary-actions a:focus,
.cranberry-itinerary-help-action:hover,
.cranberry-itinerary-help-action:focus {
    border-color: var(--cranberry-blue-deep);
    background: var(--cranberry-blue-deep);
    color: #fff !important;
    box-shadow: 0 18px 34px rgba(16, 40, 64, .24);
    transform: translateY(-2px);
}

.cranberry-itinerary-summary {
    display: grid;
    gap: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 8px;
    background: rgba(10, 27, 46, .58);
    box-shadow: 0 24px 60px rgba(0, 0, 0, .2);
    backdrop-filter: blur(12px);
}

.cranberry-itinerary-summary div {
    padding: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.cranberry-itinerary-summary div:last-child {
    border-bottom: 0;
}

.cranberry-itinerary-summary small {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 7px;
    color: rgba(255, 255, 255, .62);
    font-family: poppins, sans-serif;
    font-size: 11px;
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
}

.cranberry-itinerary-summary small i {
    display: inline-flex;
    width: 24px;
    height: 24px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(88, 165, 235, .4);
    border-radius: 50%;
    background: rgba(88, 165, 235, .15);
    color: var(--cranberry-blue);
    font-size: 11px;
    line-height: 1;
}

.cranberry-itinerary-summary strong {
    display: block;
    color: #fff;
    font-family: poppins, sans-serif;
    font-size: 15px;
    line-height: 1.45;
}

.cranberry-itinerary-content {
    padding: 74px 0;
    background: #f7fbff;
}

.cranberry-itinerary-back {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 24px;
    color: var(--cranberry-blue-deep);
    font-family: poppins, sans-serif;
    font-size: 13px;
    font-weight: 800;
}

.cranberry-itinerary-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 28px;
    align-items: start;
}

.cranberry-itinerary-main,
.cranberry-itinerary-panel {
    border: 1px solid rgba(207, 232, 255, .95);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 16px 38px rgba(16, 40, 64, .07);
}

.cranberry-itinerary-main {
    padding: 34px;
}

.cranberry-itinerary-heading {
    margin-bottom: 28px;
}

.cranberry-itinerary-heading h2 {
    margin: 0;
    color: var(--cranberry-navy);
    font-size: 34px;
    line-height: 1.18;
}

.cranberry-itinerary-heading p {
    margin: 10px 0 0;
    color: var(--cranberry-muted);
    font-size: 15px;
    line-height: 1.6;
}

.cranberry-itinerary-timeline {
    position: relative;
    display: grid;
    gap: 18px;
}

.cranberry-itinerary-day {
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 22px;
    align-items: start;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(207, 232, 255, .86);
}

.cranberry-itinerary-day:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.cranberry-itinerary-day-marker {
    display: inline-flex;
    align-self: start;
    justify-self: start;
    height: 40px;
    min-height: 40px;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    border-radius: 8px;
    background: var(--cranberry-blue-soft);
    color: var(--cranberry-blue-deep);
    font-family: poppins, sans-serif;
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
}

.cranberry-itinerary-day-copy h3 {
    margin: 0 0 9px;
    color: var(--cranberry-navy);
    font-size: 20px;
    line-height: 1.28;
}

.cranberry-itinerary-day-copy p {
    margin: 0 0 10px;
    color: var(--cranberry-muted);
    font-size: 15px;
    line-height: 1.72;
}

.cranberry-itinerary-day-copy p:last-child {
    margin-bottom: 0;
}

.cranberry-itinerary-aside {
    display: grid;
    gap: 16px;
}

.cranberry-itinerary-panel {
    padding: 24px;
}

.cranberry-itinerary-panel h3 {
    margin: 0 0 16px;
    color: var(--cranberry-navy);
    font-size: 20px;
    line-height: 1.25;
}

.cranberry-itinerary-panel ul {
    display: grid;
    gap: 11px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.cranberry-itinerary-panel li {
    position: relative;
    padding-left: 22px;
    color: var(--cranberry-muted);
    font-size: 14px;
    line-height: 1.55;
}

.cranberry-itinerary-panel li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--cranberry-blue);
}

.cranberry-itinerary-help {
    background: var(--cranberry-navy);
    color: #fff;
}

.cranberry-itinerary-help h3 {
    color: #fff;
}

.cranberry-itinerary-help p {
    margin: 0 0 18px;
    color: rgba(255, 255, 255, .78);
    font-size: 14px;
    line-height: 1.65;
}

.cranberry-itinerary-contact-list {
    display: grid;
    gap: 10px;
    margin: 0 0 18px;
}

.cranberry-itinerary-contact-item {
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    min-height: 56px;
    padding: 9px 11px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 8px;
    background: rgba(255, 255, 255, .08);
    color: #fff !important;
    transition: background-color .22s ease, border-color .22s ease, transform .22s ease;
}

.cranberry-itinerary-contact-item:hover,
.cranberry-itinerary-contact-item:focus {
    border-color: rgba(88, 165, 235, .7);
    background: rgba(255, 255, 255, .13);
    color: #fff !important;
    transform: translateY(-1px);
}

.cranberry-itinerary-contact-item i {
    display: inline-flex;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, .12);
    color: #fff;
}

.cranberry-itinerary-contact-item small,
.cranberry-itinerary-contact-item strong {
    display: block;
}

.cranberry-itinerary-contact-item small {
    margin-bottom: 3px;
    color: rgba(255, 255, 255, .64);
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
}

.cranberry-itinerary-contact-item strong {
    color: #fff;
    font-size: 13px;
    line-height: 1.35;
    overflow-wrap: anywhere;
}

.cranberry-itinerary-help-action {
    width: 100%;
}

.cranberry-itinerary-actions a i {
    display: inline-flex;
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, .16);
    color: #fff !important;
    font-size: 14px;
    line-height: 1;
}

.cranberry-itinerary-actions a:first-child i,
.cranberry-itinerary-help-action i {
    color: #fff;
}

@media (max-width: 1199px) {
    .cranberry-itinerary-hero-grid,
    .cranberry-itinerary-layout {
        grid-template-columns: 1fr;
    }

    .cranberry-itinerary-summary {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cranberry-itinerary-summary div:nth-child(2) {
        border-right: 0;
    }

    .cranberry-itinerary-summary div {
        border-right: 1px solid rgba(255, 255, 255, .12);
    }
}

@media (max-width: 991px) {
    .cranberry-nav-submenu {
        display: none;
    }

    .cranberry-package-hero,
    .cranberry-itinerary-hero {
        padding: 76px 0 58px;
    }

    .cranberry-package-hero-copy h1,
    .cranberry-itinerary-hero-copy h1 {
        font-size: 40px;
    }

    .cranberry-package-hero-facts,
    .cranberry-itinerary-summary {
        grid-template-columns: 1fr;
    }

    .cranberry-itinerary-summary div {
        border-right: 0;
    }
}

@media (max-width: 767px) {
    .cranberry-package-breadcrumb {
        margin-bottom: 24px;
    }

    .cranberry-package-hero-copy h1,
    .cranberry-itinerary-hero-copy h1 {
        font-size: 34px;
    }

    .cranberry-package-hero-copy span,
    .cranberry-itinerary-hero-copy span {
        font-size: 15px;
    }

    .cranberry-itinerary-content {
        padding: 56px 0;
    }

    .cranberry-itinerary-main {
        padding: 24px;
    }

    .cranberry-itinerary-heading h2 {
        font-size: 28px;
    }

    .cranberry-itinerary-day {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .cranberry-itinerary-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .cranberry-itinerary-actions a {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .cranberry-nav-submenu,
    .cranberry-itinerary-actions a,
    .cranberry-itinerary-contact-item,
    .cranberry-itinerary-help-action {
        transition: none;
    }
}

/* Reviews page */
.cranberry-reviews-body {
    background: #fff;
}

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

.cranberry-reviews-page a {
    text-decoration: none;
}

.cranberry-reviews-hero {
    position: relative;
    overflow: hidden;
    min-height: 570px;
    padding: 118px 0 132px;
    background: var(--cranberry-navy);
    color: #fff;
}

.cranberry-reviews-hero:before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(90deg, rgba(10, 27, 46, .9) 0%, rgba(16, 40, 64, .76) 48%, rgba(16, 40, 64, .25) 100%), var(--reviews-hero-image);
    background-position: center;
    background-size: cover;
}

.cranberry-reviews-hero:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 120px;
    background: linear-gradient(180deg, transparent 0%, rgba(10, 27, 46, .42) 100%);
    pointer-events: none;
}

.cranberry-reviews-hero-inner,
.cranberry-reviews-summary-inner,
.cranberry-reviews-list-inner,
.cranberry-reviews-cta-inner {
    width: min(1140px, calc(100% - 36px));
    margin: 0 auto;
}

.cranberry-reviews-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin-left: max(18px, calc((100vw - 1140px) / 2));
}

.cranberry-reviews-kicker {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 16px;
    color: var(--cranberry-warm);
    font-family: poppins, sans-serif;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.cranberry-reviews-kicker:before {
    content: "";
    width: 38px;
    height: 1px;
    background: currentColor;
}

.cranberry-reviews-hero h1 {
    margin: 0;
    color: #fff;
    font-size: 64px;
    line-height: 1.04;
    letter-spacing: 0;
}

.cranberry-reviews-hero h1 span {
    color: var(--cranberry-blue);
}

.cranberry-reviews-hero p:not(.cranberry-reviews-kicker) {
    max-width: 610px;
    margin: 22px 0 0;
    color: rgba(255, 255, 255, .86);
    font-size: 18px;
    line-height: 1.75;
}

.cranberry-reviews-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.cranberry-reviews-primary,
.cranberry-reviews-secondary {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 22px;
    border-radius: 8px;
    font-family: poppins, sans-serif;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0;
    transition: transform .3s ease, background .3s ease, border-color .3s ease, color .3s ease, box-shadow .3s ease;
}

.cranberry-reviews-primary {
    border: 1px solid var(--cranberry-warm);
    background: var(--cranberry-warm);
    color: #fff;
    box-shadow: 0 18px 34px rgba(251, 127, 106, .26);
}

.cranberry-reviews-secondary {
    border: 1px solid rgba(255, 255, 255, .36);
    background: rgba(255, 255, 255, .1);
    color: #fff;
}

.cranberry-reviews-primary:hover,
.cranberry-reviews-primary:focus {
    background: var(--cranberry-blue);
    border-color: var(--cranberry-blue);
    color: #fff;
    transform: translateY(-2px);
}

.cranberry-reviews-secondary:hover,
.cranberry-reviews-secondary:focus {
    background: #fff;
    border-color: #fff;
    color: var(--cranberry-blue-deep);
    transform: translateY(-2px);
}

.cranberry-reviews-summary {
    position: relative;
    z-index: 3;
    margin-top: -54px;
}

.cranberry-reviews-summary-inner {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.cranberry-reviews-summary-inner div {
    position: relative;
    min-height: 128px;
    overflow: hidden;
    padding: 28px 28px 26px 98px;
    border: 1px solid rgba(207, 232, 255, .9);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 22px 52px rgba(16, 40, 64, .12);
    transition: transform .32s ease, border-color .32s ease, box-shadow .32s ease, background .32s ease;
}

.cranberry-reviews-summary-inner div:before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    background: linear-gradient(180deg, var(--cranberry-blue), var(--cranberry-warm));
    transform: scaleY(.24);
    transform-origin: top;
    transition: transform .32s ease;
}

.cranberry-reviews-summary-icon {
    position: absolute;
    left: 28px;
    top: 30px;
    display: inline-flex;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(88, 165, 235, .24);
    border-radius: 8px;
    background: var(--cranberry-blue-soft);
    color: var(--cranberry-blue-deep);
    font-size: 20px;
    transition: transform .32s ease, background .32s ease, border-color .32s ease, color .32s ease;
}

.cranberry-reviews-summary-inner strong {
    display: block;
    color: var(--cranberry-navy);
    font-size: 36px;
    line-height: 1;
    transition: color .32s ease;
}

.cranberry-reviews-summary-label {
    display: block;
    margin-top: 10px;
    color: var(--cranberry-muted);
    font-size: 14px;
    line-height: 1.45;
    transition: color .32s ease;
}

.cranberry-reviews-summary-inner div:hover,
.cranberry-reviews-summary-inner div:focus-within {
    border-color: rgba(88, 165, 235, .55);
    background: linear-gradient(180deg, #fff 0%, #f8fcff 100%);
    box-shadow: 0 28px 62px rgba(16, 40, 64, .18);
    transform: translateY(-7px);
}

.cranberry-reviews-summary-inner div:hover:before,
.cranberry-reviews-summary-inner div:focus-within:before {
    transform: scaleY(1);
}

.cranberry-reviews-summary-inner div:hover .cranberry-reviews-summary-icon,
.cranberry-reviews-summary-inner div:focus-within .cranberry-reviews-summary-icon {
    border-color: var(--cranberry-blue);
    background: var(--cranberry-blue);
    color: #fff;
    transform: translateY(-3px) rotate(-4deg);
}

.cranberry-reviews-summary-inner div:hover strong,
.cranberry-reviews-summary-inner div:focus-within strong {
    color: var(--cranberry-blue-deep);
}

.cranberry-reviews-summary-inner div:hover .cranberry-reviews-summary-label,
.cranberry-reviews-summary-inner div:focus-within .cranberry-reviews-summary-label {
    color: var(--cranberry-ink);
}

.cranberry-reviews-list {
    position: relative;
    overflow: hidden;
    padding: 86px 0 94px;
    background:
        linear-gradient(180deg, #fff 0%, #f8fcff 56%, #fff 100%),
        linear-gradient(rgba(88, 165, 235, .07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(88, 165, 235, .07) 1px, transparent 1px);
    background-size: auto, 76px 76px, 76px 76px;
}

.cranberry-reviews-list-heading {
    max-width: 760px;
    margin: 0 auto 34px;
    text-align: center;
}

.cranberry-reviews-list-heading .cranberry-reviews-kicker {
    justify-content: center;
}

.cranberry-reviews-list-heading .cranberry-reviews-kicker:after {
    content: "";
    width: 38px;
    height: 1px;
    background: currentColor;
}

.cranberry-reviews-list-heading h2 {
    margin: 0;
    color: var(--cranberry-navy);
    font-size: 40px;
    line-height: 1.16;
    letter-spacing: 0;
}

.cranberry-reviews-list-heading p:not(.cranberry-reviews-kicker) {
    margin: 16px auto 0;
    color: var(--cranberry-muted);
    font-size: 16px;
    line-height: 1.72;
}

.cranberry-reviews-page-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.cranberry-reviews-page-grid .cranberry-review-card,
.cranberry-reviews-page-grid .cranberry-review-card:nth-child(3n + 2),
.cranberry-reviews-page-grid .cranberry-review-card:nth-child(4n + 3) {
    display: flex;
    width: auto;
    min-height: 100%;
    flex-direction: column;
    justify-content: space-between;
    padding: 28px;
    transform: none;
}

.cranberry-reviews-page-grid .cranberry-review-card:hover,
.cranberry-reviews-page-grid .cranberry-review-card:focus-within {
    transform: translateY(-6px);
}

.cranberry-reviews-page-grid .cranberry-review-author {
    grid-template-columns: auto minmax(0, 1fr);
}

.cranberry-reviews-page-grid .cranberry-review-stars {
    grid-column: 2;
}

.cranberry-reviews-empty {
    margin: 0;
    padding: 26px;
    border: 1px solid rgba(207, 232, 255, .9);
    border-radius: 8px;
    background: #fff;
    color: var(--cranberry-muted);
    text-align: center;
}

.cranberry-reviews-cta {
    padding: 76px 0;
    background: var(--cranberry-navy);
}

.cranberry-reviews-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.cranberry-reviews-cta h2 {
    margin: 0;
    color: #fff;
    font-size: 38px;
    line-height: 1.18;
    letter-spacing: 0;
}

.cranberry-reviews-cta p:not(.cranberry-reviews-kicker) {
    max-width: 660px;
    margin: 14px 0 0;
    color: rgba(255, 255, 255, .75);
    font-size: 16px;
    line-height: 1.7;
}

.cranberry-reviews-cta .cranberry-reviews-primary {
    flex: 0 0 auto;
}

@media (max-width: 991px) {
    .cranberry-reviews-hero {
        min-height: 500px;
        padding: 94px 0 118px;
    }

    .cranberry-reviews-hero h1 {
        font-size: 46px;
    }

    .cranberry-reviews-page-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cranberry-reviews-cta-inner {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 767px) {
    .cranberry-reviews-hero {
        min-height: auto;
        padding: 76px 0 104px;
    }

    .cranberry-reviews-hero-inner,
    .cranberry-reviews-summary-inner,
    .cranberry-reviews-list-inner,
    .cranberry-reviews-cta-inner {
        width: min(100% - 28px, 1140px);
    }

    .cranberry-reviews-hero-inner {
        margin-left: auto;
    }

    .cranberry-reviews-hero h1 {
        font-size: 36px;
    }

    .cranberry-reviews-hero p:not(.cranberry-reviews-kicker) {
        font-size: 16px;
    }

    .cranberry-reviews-hero-actions,
    .cranberry-reviews-primary,
    .cranberry-reviews-secondary {
        width: 100%;
    }

    .cranberry-reviews-summary {
        margin-top: -38px;
    }

    .cranberry-reviews-summary-inner,
    .cranberry-reviews-page-grid {
        grid-template-columns: 1fr;
    }

    .cranberry-reviews-summary-inner div {
        min-height: auto;
        padding: 24px 22px 24px 88px;
    }

    .cranberry-reviews-summary-icon {
        left: 22px;
        top: 24px;
        width: 46px;
        height: 46px;
    }

    .cranberry-reviews-list {
        padding: 62px 0 68px;
    }

    .cranberry-reviews-list-heading h2,
    .cranberry-reviews-cta h2 {
        font-size: 30px;
    }

    .cranberry-reviews-page-grid .cranberry-review-card,
    .cranberry-reviews-page-grid .cranberry-review-card:nth-child(3n + 2),
    .cranberry-reviews-page-grid .cranberry-review-card:nth-child(4n + 3) {
        padding: 22px;
    }

    .cranberry-reviews-cta {
        padding: 58px 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .cranberry-reviews-primary,
    .cranberry-reviews-secondary,
    .cranberry-reviews-page-grid .cranberry-review-card,
    .cranberry-reviews-summary-inner div,
    .cranberry-reviews-summary-inner div:before,
    .cranberry-reviews-summary-icon,
    .cranberry-reviews-summary-inner strong,
    .cranberry-reviews-summary-label {
        transition: none;
    }
}
.cranberry-dynamic-loader {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    width: min(480px, 88vw) !important;
    height: 360px !important;
    background: none !important;
}

.cranberry-loader-logo-wrap {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 220px;
    min-height: 190px;
    animation: cranberry-loader-float 2.4s ease-in-out infinite;
}

.cranberry-loader-logo-wrap::before {
    position: absolute;
    inset: 18%;
    content: "";
    border-radius: 50%;
    background: rgba(198, 31, 69, .2);
    filter: blur(30px);
    animation: cranberry-loader-glow 2.4s ease-in-out infinite;
}

.cranberry-loader-logo-wrap img {
    position: relative;
    display: block;
    width: auto;
    max-width: min(360px, 78vw);
    max-height: 180px;
    object-fit: contain;
    filter: drop-shadow(0 12px 22px rgba(31, 18, 22, .16));
}

.cranberry-loader-orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 250px;
    height: 250px;
    transform: translate(-50%, -58%);
    pointer-events: none;
}

.cranberry-loader-orbit span {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(198, 31, 69, .14);
    border-top-color: rgba(198, 31, 69, .65);
    border-radius: 50%;
    animation: cranberry-loader-spin 4s linear infinite;
}

.cranberry-loader-orbit span:last-child {
    inset: 18px;
    border-color: rgba(218, 166, 57, .12);
    border-bottom-color: rgba(218, 166, 57, .72);
    animation-direction: reverse;
    animation-duration: 3s;
}

.cranberry-loader-progress {
    position: relative;
    z-index: 2;
    width: 190px;
    height: 3px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(198, 31, 69, .12);
}

.cranberry-loader-progress span {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(90deg, transparent, #c61f45, #daa639, transparent);
    transform: translateX(-100%);
    animation: cranberry-loader-progress 1.6s ease-in-out infinite;
}

.cranberry-loader-label {
    position: relative;
    z-index: 2;
    color: #74656a;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    animation: cranberry-loader-label 1.8s ease-in-out infinite;
}

@keyframes cranberry-loader-spin {
    to { transform: rotate(360deg); }
}

@keyframes cranberry-loader-float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-8px) scale(1.025); }
}

@keyframes cranberry-loader-glow {
    0%, 100% { opacity: .45; transform: scale(.9); }
    50% { opacity: .85; transform: scale(1.12); }
}

@keyframes cranberry-loader-progress {
    0% { transform: translateX(-100%); }
    55%, 100% { transform: translateX(100%); }
}

@keyframes cranberry-loader-label {
    0%, 100% { opacity: .48; }
    50% { opacity: 1; }
}

@media (max-width: 575.98px) {
    .cranberry-dynamic-loader {
        height: 300px !important;
    }

    .cranberry-loader-orbit {
        width: 210px;
        height: 210px;
    }

    .cranberry-loader-logo-wrap img {
        max-width: 68vw;
        max-height: 150px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .cranberry-loader-logo-wrap,
    .cranberry-loader-logo-wrap::before,
    .cranberry-loader-orbit span,
    .cranberry-loader-progress span,
    .cranberry-loader-label {
        animation: none;
    }
}
