:root {
    --ws-brown: #4f2d24;
    --ws-brown-dark: #2f1a15;
    --ws-gold: #d6a85f;
    --ws-gold-dark: #b88940;
    --ws-ivory: #fffaf4;
    --ws-sand: #eadfd3;
    --ws-white: #ffffff;
    --ws-text: #312724;
    --ws-muted: #70635f;
    --ws-border: rgba(79, 45, 36, 0.14);
    --ws-shadow: 0 18px 50px rgba(47, 26, 21, 0.12);
    --ws-shell: 1180px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--ws-white);
    color: var(--ws-text);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.65;
}

body,
button,
input,
textarea,
select {
    font-size: 16px;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
}

h1,
h2,
h3 {
    margin-top: 0;
    color: var(--ws-brown);
    font-family: Georgia, "Times New Roman", serif;
    line-height: 1.12;
}

h1 {
    font-size: clamp(42px, 7vw, 78px);
}

h2 {
    font-size: clamp(34px, 5vw, 55px);
}

h3 {
    font-size: 26px;
}

.ws-shell {
    width: min(calc(100% - 40px), var(--ws-shell));
    margin-inline: auto;
}

.ws-skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 9999;
    padding: 10px 15px;
    transform: translateY(-150%);
    background: var(--ws-gold);
    color: var(--ws-brown-dark);
    font-weight: 700;
}

.ws-skip-link:focus {
    transform: translateY(0);
}

.ws-header {
    position: relative;
    z-index: 100;
    background: var(--ws-white);
    border-bottom: 1px solid var(--ws-border);
}

.ws-header__inner {
    min-height: 86px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.ws-brand__text {
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

.ws-brand__name {
    color: var(--ws-brown);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 29px;
    font-weight: 700;
    line-height: 1;
}

.ws-brand__tagline {
    margin-top: 7px;
    color: var(--ws-muted);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.custom-logo {
    width: auto;
    max-height: 72px;
}

.ws-header__navigation {
    display: flex;
    align-items: center;
    gap: 24px;
}

.ws-primary-nav__list,
.ws-footer-menu {
    margin: 0;
    padding: 0;
    list-style: none;
}

.ws-primary-nav__list {
    display: flex;
    align-items: center;
    gap: 23px;
}

.ws-primary-nav a {
    color: var(--ws-brown-dark);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.ws-primary-nav a:hover,
.ws-primary-nav .current-menu-item > a {
    color: var(--ws-gold-dark);
}

.ws-header__booking {
    padding: 12px 18px;
    background: var(--ws-brown);
    color: var(--ws-white);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 999px;
}

.ws-menu-toggle {
    display: none;
}

.ws-hero {
    position: relative;
    min-height: 680px;
    display: grid;
    align-items: center;
    overflow: hidden;
    background:
        radial-gradient(circle at 76% 18%, rgba(214, 168, 95, 0.25), transparent 28%),
        linear-gradient(135deg, #4f2d24, #2f1a15);
}

.ws-hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(47, 26, 21, 0.85),
            rgba(47, 26, 21, 0.45),
            rgba(47, 26, 21, 0.2)
        );
}

.ws-hero__content {
    position: relative;
    z-index: 2;
    padding-block: 110px;
}

.ws-hero h1 {
    max-width: 790px;
    margin-bottom: 24px;
    color: var(--ws-white);
}

.ws-eyebrow {
    margin: 0 0 15px;
    color: var(--ws-gold);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.ws-hero__lead {
    max-width: 650px;
    margin: 0;
    color: rgba(255, 250, 244, 0.86);
    font-size: clamp(18px, 2.4vw, 22px);
}

.ws-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.ws-button {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    padding: 13px 23px;
    border: 2px solid transparent;
    border-radius: 999px;
    font-weight: 800;
    text-decoration: none;
}

.ws-button--gold {
    background: var(--ws-gold);
    color: var(--ws-brown-dark);
}

.ws-button--gold:hover {
    background: var(--ws-ivory);
}

.ws-button--outline {
    border-color: rgba(255, 255, 255, 0.72);
    color: var(--ws-white);
}

.ws-button--outline:hover {
    background: var(--ws-white);
    color: var(--ws-brown);
}

.ws-section {
    padding-block: 100px;
}

.ws-section-heading {
    max-width: 760px;
    margin-bottom: 48px;
}

.ws-section-heading h2 {
    margin-bottom: 20px;
}

.ws-section-heading > p:last-child {
    color: var(--ws-muted);
    font-size: 18px;
}

.ws-service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.ws-service-card {
    position: relative;
    padding: 38px;
    background: var(--ws-ivory);
    border: 1px solid var(--ws-border);
    border-radius: 20px;
    box-shadow: var(--ws-shadow);
}

.ws-service-card__number {
    display: block;
    margin-bottom: 26px;
    color: var(--ws-gold-dark);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.ws-service-card p {
    color: var(--ws-muted);
}

.ws-service-card a {
    color: var(--ws-brown);
    font-weight: 800;
    text-decoration: none;
}

.ws-cta {
    padding-block: 72px;
    background: var(--ws-brown);
}

.ws-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.ws-cta h2 {
    max-width: 720px;
    margin: 0;
    color: var(--ws-white);
}

.ws-page-hero {
    padding-block: 90px;
    background: var(--ws-brown);
}

.ws-page-hero h1 {
    margin: 0;
    color: var(--ws-white);
}

.ws-page-content {
    min-height: 420px;
    padding-block: 80px;
}

.ws-prose {
    max-width: 900px;
}

.ws-prose p,
.ws-prose li {
    color: var(--ws-muted);
}

.ws-footer {
    background: var(--ws-brown-dark);
    color: rgba(255, 250, 244, 0.78);
}

.ws-footer__grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 60px;
    padding-block: 75px;
}

.ws-footer h2,
.ws-footer h3 {
    color: var(--ws-white);
}

.ws-footer h2 {
    font-size: 34px;
}

.ws-footer h3 {
    font-size: 20px;
}

.ws-footer-menu li + li {
    margin-top: 9px;
}

.ws-footer-menu a {
    text-decoration: none;
}

.ws-footer-menu a:hover {
    color: var(--ws-gold);
}

.ws-footer__bottom {
    padding-block: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
}

.ws-footer__bottom p {
    margin: 0;
}

@media (max-width: 1080px) {
    .ws-menu-toggle {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 10px 15px;
        background: transparent;
        color: var(--ws-brown);
        border: 1px solid var(--ws-border);
        border-radius: 999px;
        font-weight: 700;
        cursor: pointer;
    }

    .ws-menu-toggle__icon,
    .ws-menu-toggle__icon::before,
    .ws-menu-toggle__icon::after {
        width: 18px;
        height: 2px;
        display: block;
        background: currentColor;
    }

    .ws-menu-toggle__icon {
        position: relative;
    }

    .ws-menu-toggle__icon::before,
    .ws-menu-toggle__icon::after {
        position: absolute;
        left: 0;
        content: "";
    }

    .ws-menu-toggle__icon::before {
        top: -6px;
    }

    .ws-menu-toggle__icon::after {
        top: 6px;
    }

    .ws-header__navigation {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        display: none;
        padding: 24px 20px 30px;
        background: var(--ws-white);
        border-top: 1px solid var(--ws-border);
        box-shadow: var(--ws-shadow);
    }

    .ws-header__navigation.is-open {
        display: block;
    }

    .ws-primary-nav__list {
        align-items: stretch;
        flex-direction: column;
        gap: 0;
    }

    .ws-primary-nav li {
        border-bottom: 1px solid var(--ws-border);
    }

    .ws-primary-nav a {
        display: block;
        padding-block: 13px;
    }

    .ws-header__booking {
        display: inline-flex;
        margin-top: 22px;
    }
}

@media (max-width: 820px) {
    .ws-hero {
        min-height: 610px;
    }

    .ws-service-grid,
    .ws-footer__grid {
        grid-template-columns: 1fr;
    }

    .ws-cta__inner {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 560px) {
    .ws-shell {
        width: min(calc(100% - 28px), var(--ws-shell));
    }

    .ws-brand__name {
        font-size: 24px;
    }

    .ws-brand__tagline {
        display: none;
    }

    .ws-hero__content {
        padding-block: 80px;
    }

    .ws-section,
    .ws-page-content {
        padding-block: 65px;
    }

    .ws-service-card {
        padding: 30px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}

/* =========================================================
   WS HEADER POLISH V2
   ========================================================= */

.ws-header__inner {
    min-height: 80px;
}

.ws-brand {
    flex: 0 0 auto;
}

.ws-brand__name {
    font-size: 27px;
}

.ws-header__navigation {
    gap: 18px;
}

.ws-primary-nav__list {
    gap: 18px;
}

.ws-primary-nav li {
    position: relative;
}

.ws-primary-nav a {
    display: block;
    white-space: nowrap;
}

.ws-header__booking {
    min-width: 108px;
    white-space: nowrap;
    text-align: center;
}

.ws-primary-nav .sub-menu {
    position: absolute;
    top: calc(100% + 18px);
    left: 50%;
    z-index: 150;
    width: 220px;
    margin: 0;
    padding: 10px;
    list-style: none;
    background: var(--ws-white);
    border: 1px solid var(--ws-border);
    border-radius: 14px;
    box-shadow: var(--ws-shadow);
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 8px);
    transition:
        opacity 180ms ease,
        visibility 180ms ease,
        transform 180ms ease;
}

.ws-primary-nav .sub-menu::before {
    position: absolute;
    right: 0;
    bottom: 100%;
    left: 0;
    height: 20px;
    content: "";
}

.ws-primary-nav .sub-menu li {
    width: 100%;
}

.ws-primary-nav .sub-menu a {
    padding: 11px 13px;
    border-radius: 9px;
    color: var(--ws-brown-dark);
    font-size: 14px;
}

.ws-primary-nav .sub-menu a:hover,
.ws-primary-nav .sub-menu a:focus {
    background: var(--ws-ivory);
    color: var(--ws-gold-dark);
}

.ws-primary-nav li:hover > .sub-menu,
.ws-primary-nav li:focus-within > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

.ws-hero {
    min-height: 610px;
}

.ws-hero__content {
    padding-block: 92px;
}

.ws-hero h1 {
    max-width: 720px;
    font-size: clamp(46px, 5.6vw, 72px);
}

@media (max-width: 1080px) {
    .ws-primary-nav .sub-menu {
        position: static;
        width: auto;
        margin: 0 0 8px 16px;
        padding: 0 0 0 15px;
        background: transparent;
        border: 0;
        border-left: 2px solid var(--ws-sand);
        border-radius: 0;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        transition: none;
    }

    .ws-primary-nav .sub-menu::before {
        display: none;
    }

    .ws-primary-nav .sub-menu li {
        border-bottom: 0;
    }

    .ws-primary-nav .sub-menu a {
        padding-block: 9px;
    }
}

@media (max-width: 560px) {
    .ws-header__inner {
        min-height: 72px;
    }

    .ws-brand__name {
        font-size: 23px;
    }

    .ws-hero {
        min-height: 540px;
    }
}

/* =========================================================
   WS HOME EXPERIENCE V1
   ========================================================= */

.ws-home-hero {
    position: relative;
    min-height: 650px;
    overflow: hidden;
    background: var(--ws-brown-dark);
}

.ws-home-hero__slides {
    position: relative;
    min-height: 650px;
}

.ws-home-hero__slide {
    position: absolute;
    inset: 0;
    display: grid;
    align-items: center;
    min-height: 650px;
    background-image:
        linear-gradient(
            90deg,
            rgba(35, 18, 14, 0.88) 0%,
            rgba(47, 26, 21, 0.62) 53%,
            rgba(47, 26, 21, 0.26) 100%
        ),
        var(--ws-hero-image);
    background-position: center;
    background-size: cover;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.025);
    transition:
        opacity 700ms ease,
        visibility 700ms ease,
        transform 700ms ease;
}

.ws-home-hero__slide--1 {
    --ws-hero-image:
        radial-gradient(circle at 80% 25%, #b98659, transparent 30%),
        linear-gradient(135deg, #633c2e, #2f1a15);
}

.ws-home-hero__slide--2 {
    --ws-hero-image:
        radial-gradient(circle at 72% 30%, #9e7a55, transparent 28%),
        linear-gradient(135deg, #5a3529, #24130f);
}

.ws-home-hero__slide--3 {
    --ws-hero-image:
        radial-gradient(circle at 75% 20%, #c29a66, transparent 26%),
        linear-gradient(135deg, #6d4435, #301a15);
}

.ws-home-hero__slide.is-active {
    z-index: 2;
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.ws-home-hero__shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.06),
            rgba(0, 0, 0, 0.18)
        );
}

.ws-home-hero__content {
    position: relative;
    z-index: 3;
    padding-block: 105px;
}

.ws-home-hero h1 {
    max-width: 820px;
    margin-bottom: 24px;
    color: var(--ws-white);
    font-size: clamp(48px, 6.3vw, 82px);
}

.ws-home-hero__lead {
    max-width: 660px;
    margin: 0;
    color: rgba(255, 250, 244, 0.88);
    font-size: clamp(18px, 2.3vw, 22px);
}

.ws-home-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.ws-home-hero__arrow {
    position: absolute;
    top: 50%;
    z-index: 5;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    transform: translateY(-50%);
    background: rgba(255, 250, 244, 0.12);
    color: var(--ws-white);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 50%;
    font-size: 22px;
    cursor: pointer;
    backdrop-filter: blur(8px);
}

.ws-home-hero__arrow:hover,
.ws-home-hero__arrow:focus {
    background: var(--ws-gold);
    color: var(--ws-brown-dark);
}

.ws-home-hero__arrow--previous {
    left: 24px;
}

.ws-home-hero__arrow--next {
    right: 24px;
}

.ws-home-hero__dots {
    position: absolute;
    bottom: 28px;
    left: 50%;
    z-index: 5;
    display: flex;
    gap: 9px;
    transform: translateX(-50%);
}

.ws-home-hero__dot {
    width: 10px;
    height: 10px;
    padding: 0;
    background: rgba(255, 255, 255, 0.45);
    border: 0;
    border-radius: 50%;
    cursor: pointer;
}

.ws-home-hero__dot.is-active {
    width: 28px;
    background: var(--ws-gold);
    border-radius: 999px;
}

.ws-home-intro {
    background: var(--ws-white);
}

.ws-home-intro__grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: clamp(45px, 8vw, 110px);
}

.ws-home-intro h2 {
    margin-bottom: 0;
}

.ws-home-intro__copy {
    color: var(--ws-muted);
    font-size: 18px;
}

.ws-home-intro__copy p:first-child {
    margin-top: 0;
}

.ws-text-link {
    display: inline-flex;
    align-items: center;
    margin-top: 10px;
    color: var(--ws-brown);
    font-weight: 800;
    text-decoration: none;
}

.ws-text-link::after {
    margin-left: 9px;
    content: "→";
}

.ws-home-collection {
    padding-block: 95px;
}

.ws-home-collection--safaris {
    background: var(--ws-ivory);
}

.ws-home-collection--excursions {
    background: var(--ws-white);
}

.ws-home-section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 38px;
}

.ws-home-section-heading > div:first-child {
    max-width: 760px;
}

.ws-home-section-heading h2 {
    margin-bottom: 17px;
}

.ws-home-section-heading p:last-child {
    margin-bottom: 0;
    color: var(--ws-muted);
    font-size: 18px;
}

.ws-carousel {
    overflow: hidden;
}

.ws-carousel__track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 72px) / 4);
    gap: 24px;
    overflow-x: auto;
    padding: 5px 3px 24px;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.ws-carousel__track::-webkit-scrollbar {
    display: none;
}

.ws-experience-card {
    display: flex;
    min-width: 0;
    flex-direction: column;
    overflow: hidden;
    background: var(--ws-white);
    border: 1px solid var(--ws-border);
    border-radius: 20px;
    box-shadow: 0 15px 38px rgba(47, 26, 21, 0.09);
    scroll-snap-align: start;
}

.ws-experience-card__image {
    aspect-ratio: 4 / 3;
}

.ws-placeholder-image {
    display: grid;
    place-items: center;
    background:
        linear-gradient(
            145deg,
            rgba(79, 45, 36, 0.5),
            rgba(47, 26, 21, 0.94)
        );
    color: rgba(255, 250, 244, 0.78);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.ws-placeholder-image--safari-2,
.ws-placeholder-image--excursion-3 {
    background:
        linear-gradient(
            145deg,
            rgba(173, 125, 79, 0.72),
            rgba(66, 35, 27, 0.96)
        );
}

.ws-placeholder-image--safari-3,
.ws-placeholder-image--excursion-5 {
    background:
        linear-gradient(
            145deg,
            rgba(115, 89, 61, 0.72),
            rgba(41, 27, 22, 0.96)
        );
}

.ws-placeholder-image--safari-4,
.ws-placeholder-image--excursion-2 {
    background:
        linear-gradient(
            145deg,
            rgba(188, 151, 96, 0.7),
            rgba(72, 42, 31, 0.96)
        );
}

.ws-placeholder-image--safari-5,
.ws-placeholder-image--excursion-6 {
    background:
        linear-gradient(
            145deg,
            rgba(106, 61, 45, 0.75),
            rgba(38, 20, 16, 0.97)
        );
}

.ws-experience-card__content {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 25px;
}

.ws-experience-card__meta {
    margin: 0 0 11px;
    color: var(--ws-gold-dark);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.ws-experience-card h3 {
    margin-bottom: 14px;
    font-size: 25px;
}

.ws-experience-card__content > p:not(.ws-experience-card__meta) {
    margin-top: 0;
    color: var(--ws-muted);
    font-size: 15px;
}

.ws-experience-card a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    color: var(--ws-brown);
    font-weight: 800;
    text-decoration: none;
}

.ws-experience-card a:hover {
    color: var(--ws-gold-dark);
}

.ws-carousel-controls {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.ws-carousel-controls button {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    background: var(--ws-white);
    color: var(--ws-brown);
    border: 1px solid var(--ws-border);
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
}

.ws-carousel-controls button:hover,
.ws-carousel-controls button:focus {
    background: var(--ws-brown);
    color: var(--ws-white);
}

.ws-carousel-controls button:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.ws-home-collection__footer {
    display: flex;
    justify-content: center;
    margin-top: 28px;
}

.ws-button--brown {
    background: var(--ws-brown);
    color: var(--ws-white);
}

.ws-button--brown:hover {
    background: var(--ws-brown-dark);
}

.ws-home-partnership {
    padding-block: 95px;
    background: var(--ws-brown);
}

.ws-home-partnership__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: clamp(45px, 8vw, 105px);
}

.ws-home-partnership__visual {
    min-height: 430px;
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle at 70% 25%, rgba(214, 168, 95, 0.42), transparent 27%),
        linear-gradient(145deg, #6f4635, #2f1a15);
    color: rgba(255, 250, 244, 0.72);
    border-radius: 24px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.ws-home-partnership__content h2 {
    color: var(--ws-white);
}

.ws-home-partnership__content > p:not(.ws-eyebrow) {
    margin-bottom: 30px;
    color: rgba(255, 250, 244, 0.8);
    font-size: 18px;
}

.ws-home-story {
    padding-block: 100px;
    background: var(--ws-sand);
}

.ws-home-story__grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    align-items: center;
    gap: clamp(45px, 8vw, 110px);
}

.ws-home-story__image {
    min-height: 510px;
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle at 70% 30%, rgba(214, 168, 95, 0.5), transparent 28%),
        linear-gradient(145deg, #8d6250, #4f2d24);
    color: rgba(255, 250, 244, 0.76);
    border-radius: 24px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.ws-home-story blockquote {
    margin: 26px 0;
    color: var(--ws-brown);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(26px, 3.4vw, 40px);
    font-style: italic;
    line-height: 1.35;
}

.ws-home-story__note {
    color: var(--ws-muted);
}

.ws-home-reviews {
    padding-block: 95px;
    background: var(--ws-white);
}

.ws-home-reviews__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.ws-home-reviews__grid article {
    padding: 32px;
    background: var(--ws-ivory);
    border: 1px solid var(--ws-border);
    border-radius: 18px;
}

.ws-home-reviews__grid h3 {
    margin-bottom: 13px;
    font-size: 24px;
}

.ws-home-reviews__grid p {
    margin-bottom: 0;
    color: var(--ws-muted);
}

@media (max-width: 1100px) {
    .ws-carousel__track {
        grid-auto-columns: calc((100% - 48px) / 3);
    }
}

@media (max-width: 850px) {
    .ws-home-hero,
    .ws-home-hero__slides,
    .ws-home-hero__slide {
        min-height: 610px;
    }

    .ws-home-intro__grid,
    .ws-home-partnership__grid,
    .ws-home-story__grid {
        grid-template-columns: 1fr;
    }

    .ws-carousel__track {
        grid-auto-columns: calc((100% - 24px) / 2);
    }

    .ws-home-reviews__grid {
        grid-template-columns: 1fr;
    }

    .ws-home-section-heading {
        align-items: flex-start;
    }

    .ws-home-partnership__visual,
    .ws-home-story__image {
        min-height: 380px;
    }
}

@media (max-width: 590px) {
    .ws-home-hero,
    .ws-home-hero__slides,
    .ws-home-hero__slide {
        min-height: 570px;
    }

    .ws-home-hero__content {
        padding-block: 80px 105px;
    }

    .ws-home-hero__arrow {
        display: none;
    }

    .ws-home-section-heading {
        flex-direction: column;
        gap: 22px;
    }

    .ws-carousel__track {
        grid-auto-columns: 88%;
    }

    .ws-home-collection,
    .ws-home-partnership,
    .ws-home-story,
    .ws-home-reviews {
        padding-block: 70px;
    }
}

/* =========================================================
   WS REAL HOME IMAGES V1
   ========================================================= */

.ws-experience-card__image {
    position: relative;
    overflow: hidden;
    background: var(--ws-sand);
}

.ws-experience-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 500ms ease;
}

.ws-experience-card:hover .ws-experience-card__image img {
    transform: scale(1.045);
}

.ws-home-partnership__visual {
    display: block;
    min-height: 430px;
    overflow: hidden;
    background: var(--ws-brown-dark);
}

.ws-home-partnership__visual img {
    width: 100%;
    height: 430px;
    object-fit: cover;
    object-position: center;
}

@media (max-width: 850px) {
    .ws-home-partnership__visual,
    .ws-home-partnership__visual img {
        min-height: 380px;
        height: 380px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ws-experience-card__image img {
        transition: none;
    }

    .ws-experience-card:hover .ws-experience-card__image img {
        transform: none;
    }
}

/* =========================================================
   WS GOOGLE REVIEWS V2
   ========================================================= */

.ws-google-reviews {
    padding-block: 95px;
    overflow: hidden;
    background:
        linear-gradient(
            180deg,
            var(--ws-ivory),
            var(--ws-white)
        );
}

.ws-google-reviews__heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 45px;
    margin-bottom: 42px;
}

.ws-google-reviews__heading > div:first-child {
    max-width: 760px;
}

.ws-google-reviews__heading h2 {
    margin-bottom: 17px;
}

.ws-google-reviews__heading p:last-child {
    margin-bottom: 0;
    color: var(--ws-muted);
    font-size: 18px;
}

.ws-google-reviews__label {
    display: inline-flex;
    flex-shrink: 0;
    align-items: center;
    gap: 9px;
    padding: 12px 18px;
    background: var(--ws-white);
    color: var(--ws-brown);
    border: 1px solid var(--ws-border);
    border-radius: 999px;
    box-shadow: 0 8px 24px rgba(47, 26, 21, 0.08);
    font-size: 14px;
    font-weight: 800;
    white-space: nowrap;
}

.ws-google-reviews__label span:first-child {
    color: var(--ws-gold-dark);
    font-size: 19px;
}

.ws-google-reviews__widget {
    min-height: 180px;
}

.ws-google-reviews__widget > * {
    max-width: 100%;
}

.ws-google-reviews__widget img {
    max-width: 100%;
}

@media (max-width: 760px) {
    .ws-google-reviews {
        padding-block: 70px;
    }

    .ws-google-reviews__heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 23px;
    }
}

/* =========================================================
   WS ABOUT AND TEAM PAGES V1
   ========================================================= */

.ws-inner-hero {
    position: relative;
    min-height: 520px;
    display: grid;
    align-items: end;
    overflow: hidden;
    background-color: var(--ws-brown-dark);
    background-position: center;
    background-size: cover;
}

.ws-about-hero {
    background-image:
        linear-gradient(
            90deg,
            rgba(38, 20, 16, 0.9),
            rgba(47, 26, 21, 0.56),
            rgba(47, 26, 21, 0.2)
        ),
        url("https://watamusafaris.com/wp-content/uploads/2026/07/Image15.jpg");
}

.ws-team-hero {
    background-image:
        linear-gradient(
            90deg,
            rgba(38, 20, 16, 0.9),
            rgba(47, 26, 21, 0.58),
            rgba(47, 26, 21, 0.24)
        ),
        url("https://watamusafaris.com/wp-content/uploads/2026/07/Image13.jpg");
}

.ws-inner-hero__shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.03),
            rgba(0, 0, 0, 0.25)
        );
}

.ws-inner-hero__content {
    position: relative;
    z-index: 2;
    padding-block: 115px 75px;
}

.ws-inner-hero h1 {
    max-width: 850px;
    margin-bottom: 20px;
    color: var(--ws-white);
}

.ws-inner-hero__content > p:last-child {
    max-width: 670px;
    margin-bottom: 0;
    color: rgba(255, 250, 244, 0.87);
    font-size: clamp(18px, 2.3vw, 22px);
}

.ws-about-intro,
.ws-team-intro {
    padding-block: 100px;
    background: var(--ws-white);
}

.ws-about-intro__grid,
.ws-team-intro__grid {
    display: grid;
    grid-template-columns: 0.88fr 1.12fr;
    gap: clamp(45px, 8vw, 110px);
}

.ws-about-intro__heading h2,
.ws-team-intro h2 {
    margin-bottom: 0;
}

.ws-about-intro__copy,
.ws-team-intro__grid > div:last-child {
    color: var(--ws-muted);
    font-size: 18px;
}

.ws-about-intro__copy p:first-child,
.ws-team-intro__grid > div:last-child p:first-child {
    margin-top: 0;
}

.ws-about-experience {
    padding-block: 100px;
    background: var(--ws-ivory);
}

.ws-about-experience__grid,
.ws-about-partnership__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: clamp(45px, 8vw, 105px);
}

.ws-about-experience__image,
.ws-about-partnership__image {
    overflow: hidden;
    border-radius: 24px;
    box-shadow: var(--ws-shadow);
}

.ws-about-experience__image img,
.ws-about-partnership__image img {
    width: 100%;
    height: 480px;
    object-fit: cover;
}

.ws-about-experience__content > p:not(.ws-eyebrow),
.ws-about-partnership__content > p:not(.ws-eyebrow) {
    color: var(--ws-muted);
    font-size: 18px;
}

.ws-about-experience__content .ws-button,
.ws-about-partnership__content .ws-button {
    margin-top: 15px;
}

.ws-about-services {
    padding-block: 100px;
    background: var(--ws-white);
}

.ws-about-services__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.ws-about-services__grid article {
    padding: 32px;
    background: var(--ws-ivory);
    border: 1px solid var(--ws-border);
    border-radius: 20px;
}

.ws-about-services__grid article > span {
    display: block;
    margin-bottom: 28px;
    color: var(--ws-gold-dark);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.ws-about-services__grid h3 {
    font-size: 24px;
}

.ws-about-services__grid p {
    margin-bottom: 0;
    color: var(--ws-muted);
}

.ws-about-partnership {
    padding-block: 100px;
    background: var(--ws-brown);
}

.ws-about-partnership__content h2 {
    color: var(--ws-white);
}

.ws-about-partnership__content > p:not(.ws-eyebrow) {
    color: rgba(255, 250, 244, 0.82);
}

.ws-about-values {
    padding-block: 100px;
    background: var(--ws-sand);
}

.ws-about-values__heading {
    max-width: 730px;
    margin-bottom: 45px;
}

.ws-about-values__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.ws-about-values__grid article {
    padding: 30px;
    background: rgba(255, 250, 244, 0.72);
    border: 1px solid rgba(79, 45, 36, 0.12);
    border-radius: 18px;
}

.ws-about-values__grid h3 {
    font-size: 23px;
}

.ws-about-values__grid p {
    margin-bottom: 0;
    color: var(--ws-muted);
}

.ws-about-why {
    padding-block: 100px;
    background: var(--ws-white);
}

.ws-about-why__grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: clamp(45px, 8vw, 105px);
}

.ws-about-why__list {
    border-top: 1px solid var(--ws-border);
}

.ws-about-why__list > div {
    display: grid;
    grid-template-columns: 0.65fr 1.35fr;
    gap: 28px;
    padding-block: 24px;
    border-bottom: 1px solid var(--ws-border);
}

.ws-about-why__list strong {
    color: var(--ws-brown);
}

.ws-about-why__list span {
    color: var(--ws-muted);
}

.ws-team-members {
    padding-block: 95px;
    background: var(--ws-ivory);
}

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

.ws-team-card {
    overflow: hidden;
    background: var(--ws-white);
    border: 1px solid var(--ws-border);
    border-radius: 20px;
    box-shadow: 0 14px 36px rgba(47, 26, 21, 0.08);
}

.ws-team-card__photo {
    aspect-ratio: 4 / 3;
    display: grid;
    place-items: center;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 70% 25%,
            rgba(214, 168, 95, 0.38),
            transparent 30%
        ),
        linear-gradient(
            145deg,
            var(--ws-brown),
            var(--ws-brown-dark)
        );
}

.ws-team-card__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.ws-team-card__photo > span {
    color: var(--ws-gold);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 54px;
    font-weight: 700;
}

.ws-team-card__content {
    padding: 28px;
}

.ws-team-card__role {
    margin: 0 0 10px;
    color: var(--ws-gold-dark);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.ws-team-card h2 {
    margin-bottom: 14px;
    font-size: 27px;
}

.ws-team-card__content > p:last-child {
    margin-bottom: 0;
    color: var(--ws-muted);
}

.ws-team-groups {
    padding-block: 100px;
    background: var(--ws-white);
}

.ws-team-groups__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.ws-team-groups__grid article {
    padding: 34px;
    background: var(--ws-ivory);
    border: 1px solid var(--ws-border);
    border-radius: 18px;
}

.ws-team-groups__grid h3 {
    margin-bottom: 14px;
}

.ws-team-groups__grid p {
    margin-bottom: 0;
    color: var(--ws-muted);
}

@media (max-width: 1050px) {
    .ws-about-services__grid,
    .ws-about-values__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ws-team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 780px) {
    .ws-inner-hero {
        min-height: 460px;
    }

    .ws-about-intro__grid,
    .ws-team-intro__grid,
    .ws-about-experience__grid,
    .ws-about-partnership__grid,
    .ws-about-why__grid {
        grid-template-columns: 1fr;
    }

    .ws-about-partnership__image {
        order: -1;
    }

    .ws-team-groups__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 590px) {
    .ws-about-intro,
    .ws-team-intro,
    .ws-about-experience,
    .ws-about-services,
    .ws-about-partnership,
    .ws-about-values,
    .ws-about-why,
    .ws-team-members,
    .ws-team-groups {
        padding-block: 70px;
    }

    .ws-about-services__grid,
    .ws-about-values__grid,
    .ws-team-grid {
        grid-template-columns: 1fr;
    }

    .ws-about-experience__image img,
    .ws-about-partnership__image img {
        height: 350px;
    }

    .ws-about-why__list > div {
        grid-template-columns: 1fr;
        gap: 8px;
    }
}

/* =========================================================
   WS TEAM PROFILE IMAGES V2
   ========================================================= */

.ws-team-card__photo {
    aspect-ratio: 4 / 5;
    background:
        radial-gradient(
            circle at 70% 25%,
            rgba(214, 168, 95, 0.38),
            transparent 30%
        ),
        linear-gradient(
            145deg,
            var(--ws-brown),
            var(--ws-brown-dark)
        );
}

.ws-team-card__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 450ms ease;
}

.ws-team-card:hover .ws-team-card__photo img {
    transform: scale(1.025);
}

.ws-team-card__content {
    min-height: 235px;
}

@media (prefers-reduced-motion: reduce) {
    .ws-team-card__photo img {
        transition: none;
    }

    .ws-team-card:hover .ws-team-card__photo img {
        transform: none;
    }
}

/* =========================================================
   WS OUR TEAM SINGLE PAGE V2
   ========================================================= */

.wsot-page {
    --wsot-bg: #fffdf8;
    --wsot-soft: #fbf5ea;
    --wsot-card: #fffaf0;
    --wsot-card-two: #f7f0e2;
    --wsot-border: rgba(184, 151, 52, 0.28);
    --wsot-gold: #d6ad22;
    --wsot-orange: #f28c22;
    --wsot-heading: #4b4b55;
    --wsot-text: #3f3f46;
    --wsot-muted: #70717a;
    --wsot-shadow: 0 18px 45px rgba(80, 60, 25, 0.09);

    overflow: hidden;
    background:
        radial-gradient(
            circle at top left,
            rgba(242, 140, 34, 0.08),
            transparent 34%
        ),
        radial-gradient(
            circle at top right,
            rgba(214, 173, 34, 0.09),
            transparent 32%
        ),
        linear-gradient(
            180deg,
            var(--wsot-bg) 0%,
            var(--wsot-soft) 48%,
            var(--wsot-card-two) 100%
        );
    color: var(--wsot-text);
    font-family: Arial, Helvetica, sans-serif;
}

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

.wsot-container {
    width: min(calc(100% - 44px), 1120px);
    margin-inline: auto;
}

.wsot-kicker {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 18px;
    padding: 8px 16px;
    background: rgba(214, 173, 34, 0.16);
    color: #82710f;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.wsot-hero {
    padding: 78px 0 56px;
}

.wsot-hero-card {
    display: grid;
    grid-template-columns: 1.22fr 0.78fr;
    align-items: center;
    gap: 34px;
    padding: 46px 38px;
    background:
        radial-gradient(
            circle at top right,
            rgba(255, 255, 255, 0.55),
            transparent 38%
        ),
        linear-gradient(135deg, #fffaf0 0%, #f6eddb 100%);
    border: 1px solid var(--wsot-border);
    border-radius: 34px;
    box-shadow: var(--wsot-shadow);
}

.wsot-hero h1 {
    max-width: 720px;
    margin: 0 0 18px;
    color: var(--wsot-heading);
    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(38px, 5vw, 62px);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.045em;
}

.wsot-hero h1 span {
    color: #9d8516;
}

.wsot-hero p {
    max-width: 760px;
    margin: 0;
    color: var(--wsot-muted);
    font-size: 16.5px;
    line-height: 1.85;
}

.wsot-hero-points {
    display: grid;
    gap: 12px;
}

.wsot-hero-point,
.wsot-leader-point {
    padding: 15px 16px;
    background: rgba(255, 255, 255, 0.68);
    color: #665f4a;
    border: 1px solid rgba(184, 151, 52, 0.18);
    border-radius: 18px;
    font-size: 14px;
    font-weight: 800;
}

.wsot-section-intro {
    margin-bottom: 34px;
}

.wsot-section-intro h2 {
    margin: 0 0 12px;
    color: var(--wsot-heading);
    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(30px, 4vw, 46px);
    font-weight: 900;
    line-height: 1.12;
    letter-spacing: -0.04em;
}

.wsot-section-intro p {
    max-width: 820px;
    margin: 0;
    color: var(--wsot-muted);
    font-size: 16px;
    line-height: 1.78;
}

.wsot-leader-section {
    padding: 18px 0 74px;
}

.wsot-leader-card {
    display: grid;
    grid-template-columns: 420px 1fr;
    align-items: center;
    gap: 38px;
    padding: 30px;
    background:
        radial-gradient(
            circle at top right,
            rgba(255, 255, 255, 0.55),
            transparent 38%
        ),
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.88),
            rgba(247, 240, 226, 0.96)
        );
    border: 1px solid var(--wsot-border);
    border-radius: 34px;
    box-shadow: var(--wsot-shadow);
}

.wsot-leader-image {
    overflow: hidden;
    background: #fff8ea;
    border-radius: 26px;
    box-shadow: 0 14px 35px rgba(80, 60, 25, 0.1);
}

.wsot-leader-image img,
.wsot-image-box img {
    display: block;
    width: 100%;
    height: auto;
}

.wsot-leader-content h2 {
    margin: 0 0 8px;
    color: var(--wsot-heading);
    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.045em;
}

.wsot-leader-role {
    margin-bottom: 18px;
    color: #7b7357;
    font-size: 18px;
    font-weight: 850;
}

.wsot-leader-content > p {
    margin: 0 0 24px;
    color: var(--wsot-muted);
    font-size: 16px;
    line-height: 1.82;
}

.wsot-leader-points {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.wsot-leader-point {
    padding: 14px 16px;
    color: #5f5b50;
    font-weight: 750;
    line-height: 1.45;
}

.wsot-members-section {
    padding: 72px 0;
}

.wsot-members-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.wsot-member-card {
    display: flex;
    overflow: hidden;
    flex-direction: column;
    background: linear-gradient(180deg, #fffdf8 0%, #f6eddb 100%);
    border: 1px solid var(--wsot-border);
    border-radius: 26px;
    box-shadow: var(--wsot-shadow);
}

.wsot-member-card:nth-child(2n) {
    background: linear-gradient(180deg, #fffaf0 0%, #f2e4cb 100%);
}

.wsot-member-card:nth-child(3n) {
    background: linear-gradient(180deg, #fffdf8 0%, #f7f0e2 100%);
}

.wsot-image-box {
    overflow: hidden;
    background:
        radial-gradient(
            circle at top,
            rgba(255, 255, 255, 0.85),
            transparent 42%
        ),
        linear-gradient(180deg, #fffaf0 0%, #f3e4c7 100%);
    border-bottom: 1px solid rgba(184, 151, 52, 0.16);
    border-radius: 24px 24px 0 0;
}

.wsot-placeholder-img {
    min-height: 310px;
    display: grid;
    place-items: center;
    background:
        radial-gradient(
            circle at top,
            rgba(214, 173, 34, 0.2),
            transparent 42%
        ),
        linear-gradient(145deg, #fffaf0, #ead8b6);
    color: #7d7b83;
    font-size: 54px;
    font-weight: 900;
    letter-spacing: -0.05em;
}

.wsot-member-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 22px 22px 24px;
}

.wsot-member-role {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 14px;
    padding: 8px 14px;
    background: rgba(214, 173, 34, 0.14);
    color: #7a6b26;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
}

.wsot-member-body h3 {
    margin: 0 0 10px;
    color: #4f4f58;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 22px;
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -0.025em;
}

.wsot-member-body p {
    margin: 0 0 16px;
    color: var(--wsot-muted);
    font-size: 14.5px;
    line-height: 1.72;
}

.wsot-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
}

.wsot-tags span {
    display: inline-flex;
    padding: 7px 11px;
    background: rgba(255, 255, 255, 0.7);
    color: #6d6040;
    border: 1px solid rgba(184, 151, 52, 0.18);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
}

.wsot-support-section,
.wsot-cta-section {
    background:
        radial-gradient(
            circle at top left,
            rgba(242, 140, 34, 0.08),
            transparent 34%
        ),
        radial-gradient(
            circle at bottom right,
            rgba(214, 173, 34, 0.1),
            transparent 36%
        ),
        linear-gradient(180deg, #fffdf8 0%, #fbf3e4 100%);
}

.wsot-support-section {
    padding: 76px 0;
}

.wsot-support-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.wsot-support-card {
    position: relative;
    min-height: 300px;
    overflow: hidden;
    padding: 30px 24px 28px;
    background:
        radial-gradient(
            circle at top right,
            rgba(255, 255, 255, 0.65),
            transparent 42%
        ),
        linear-gradient(180deg, #fffaf0 0%, #f4ead8 100%);
    border: 1px solid var(--wsot-border);
    border-radius: 30px;
    box-shadow: var(--wsot-shadow);
}

.wsot-support-card::before {
    position: absolute;
    top: 0;
    right: 24px;
    left: 24px;
    height: 5px;
    background: linear-gradient(
        90deg,
        var(--wsot-gold),
        var(--wsot-orange),
        #a56a30
    );
    border-radius: 0 0 999px 999px;
    content: "";
}

.wsot-support-icon {
    width: 58px;
    height: 58px;
    margin-bottom: 18px;
    display: grid;
    place-items: center;
    background: linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.86),
        rgba(243, 223, 154, 0.55)
    );
    border: 1px solid rgba(184, 151, 52, 0.22);
    border-radius: 19px;
    box-shadow: 0 10px 22px rgba(80, 60, 25, 0.08);
    font-size: 27px;
}

.wsot-support-card h3 {
    margin: 0 0 12px;
    color: #4f4f58;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 21px;
    font-weight: 900;
    line-height: 1.16;
}

.wsot-support-card p {
    margin: 0 0 18px;
    color: #74747c;
    font-size: 14.5px;
    line-height: 1.75;
}

.wsot-cta-section {
    padding: 76px 0 90px;
}

.wsot-cta-card {
    padding: 46px 38px;
    background:
        radial-gradient(
            circle at top right,
            rgba(255, 255, 255, 0.58),
            transparent 38%
        ),
        linear-gradient(135deg, #fffaf0 0%, #f4ead8 100%);
    border: 1px solid var(--wsot-border);
    border-radius: 34px;
    box-shadow: var(--wsot-shadow);
}

.wsot-cta-card h2 {
    max-width: 820px;
    margin: 0 0 14px;
    color: var(--wsot-heading);
    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.wsot-cta-card p {
    max-width: 860px;
    margin: 0;
    color: var(--wsot-muted);
    font-size: 16.5px;
    line-height: 1.78;
}

.wsot-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 26px;
}

.wsot-btn {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 850;
    text-decoration: none;
}

.wsot-btn-primary {
    background: linear-gradient(135deg, #efc85a, var(--wsot-orange));
    color: #5f4724;
}

.wsot-btn-secondary {
    background: rgba(255, 255, 255, 0.74);
    color: #6f633f;
    border: 1px solid rgba(184, 151, 52, 0.24);
}

@media (max-width: 1040px) {
    .wsot-hero-card,
    .wsot-leader-card {
        grid-template-columns: 1fr;
    }

    .wsot-leader-image {
        max-width: 420px;
    }

    .wsot-members-grid,
    .wsot-support-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .wsot-container {
        width: min(calc(100% - 28px), 1120px);
    }

    .wsot-hero {
        padding: 54px 0 44px;
    }

    .wsot-hero-card,
    .wsot-leader-card,
    .wsot-cta-card {
        padding: 28px 22px;
    }

    .wsot-members-grid,
    .wsot-support-grid,
    .wsot-leader-points {
        grid-template-columns: 1fr;
    }

    .wsot-members-section,
    .wsot-support-section,
    .wsot-cta-section {
        padding: 54px 0;
    }

    .wsot-support-card {
        min-height: auto;
    }

    .wsot-placeholder-img {
        min-height: 280px;
    }
}

/* =========================================================
   WS SAFARI PACKAGES V1
   ========================================================= */

.wsp-page {
    --wsp-brown: #4f2d24;
    --wsp-brown-dark: #2f1a15;
    --wsp-gold: #d6a85f;
    --wsp-gold-dark: #a87831;
    --wsp-ivory: #fffaf4;
    --wsp-sand: #eadfd3;
    --wsp-white: #ffffff;
    --wsp-text: #403a38;
    --wsp-muted: #716865;
    --wsp-border: rgba(79, 45, 36, 0.14);
    --wsp-shadow: 0 22px 55px rgba(47, 26, 21, 0.1);

    overflow: hidden;
    background: var(--wsp-ivory);
    color: var(--wsp-text);
}

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

.wsp-shell {
    width: min(calc(100% - 44px), 1160px);
    margin-inline: auto;
}

.wsp-kicker {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 16px;
    padding: 8px 14px;
    background: rgba(214, 168, 95, 0.18);
    color: var(--wsp-gold-dark);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.wsp-button {
    min-height: 49px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 21px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.2;
    text-decoration: none;
    transition:
        transform 180ms ease,
        background-color 180ms ease,
        border-color 180ms ease;
}

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

.wsp-button--primary {
    background: var(--wsp-brown);
    color: var(--wsp-white);
}

.wsp-button--secondary {
    background: var(--wsp-white);
    color: var(--wsp-brown);
    border-color: var(--wsp-border);
}

.wsp-button--light {
    background: rgba(255, 255, 255, 0.88);
    color: var(--wsp-brown);
}

.wsp-listing-hero {
    padding: 76px 0;
    background:
        radial-gradient(
            circle at top right,
            rgba(214, 168, 95, 0.19),
            transparent 38%
        ),
        linear-gradient(135deg, #fffaf4 0%, #f1e5d8 100%);
}

.wsp-listing-hero .wsp-shell {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    align-items: center;
    gap: clamp(42px, 7vw, 90px);
}

.wsp-listing-hero__content h1 {
    max-width: 720px;
    margin: 0 0 20px;
    color: var(--wsp-brown-dark);
    font-size: clamp(42px, 5.8vw, 72px);
    line-height: 1.02;
    letter-spacing: -0.045em;
}

.wsp-listing-hero__content > p {
    max-width: 690px;
    margin: 0;
    color: var(--wsp-muted);
    font-size: 18px;
    line-height: 1.8;
}

.wsp-listing-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.wsp-listing-hero__image {
    overflow: hidden;
    border-radius: 30px;
    box-shadow: var(--wsp-shadow);
}

.wsp-listing-hero__image img {
    width: 100%;
    height: 530px;
    display: block;
    object-fit: cover;
}

.wsp-listing {
    padding: 95px 0;
    background: var(--wsp-white);
}

.wsp-section-heading {
    max-width: 810px;
    margin-bottom: 42px;
}

.wsp-section-heading h2 {
    margin: 0 0 14px;
    color: var(--wsp-brown-dark);
    font-size: clamp(32px, 4.2vw, 50px);
    line-height: 1.08;
    letter-spacing: -0.035em;
}

.wsp-section-heading > p {
    margin: 0;
    color: var(--wsp-muted);
    font-size: 17px;
    line-height: 1.75;
}

.wsp-package-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
}

.wsp-package-card {
    overflow: hidden;
    background: var(--wsp-ivory);
    border: 1px solid var(--wsp-border);
    border-radius: 26px;
    box-shadow: var(--wsp-shadow);
}

.wsp-package-card__image {
    position: relative;
    display: block;
    overflow: hidden;
}

.wsp-package-card__image img {
    width: 100%;
    height: 340px;
    display: block;
    object-fit: cover;
    transition: transform 420ms ease;
}

.wsp-package-card:hover .wsp-package-card__image img {
    transform: scale(1.035);
}

.wsp-package-card__duration {
    position: absolute;
    right: 18px;
    bottom: 18px;
    padding: 9px 13px;
    background: rgba(47, 26, 21, 0.9);
    color: var(--wsp-white);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
}

.wsp-package-card__body {
    padding: 29px;
}

.wsp-package-card__route {
    margin: 0 0 9px;
    color: var(--wsp-gold-dark);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.wsp-package-card h2 {
    margin: 0 0 13px;
    font-size: 29px;
    line-height: 1.15;
}

.wsp-package-card h2 a {
    color: var(--wsp-brown-dark);
    text-decoration: none;
}

.wsp-package-card__excerpt {
    margin: 0;
    color: var(--wsp-muted);
    line-height: 1.72;
}

.wsp-package-card__highlights {
    margin: 21px 0 0;
    padding: 0;
    display: grid;
    gap: 9px;
    list-style: none;
}

.wsp-package-card__highlights li {
    position: relative;
    padding-left: 24px;
    color: var(--wsp-text);
    font-size: 14px;
}

.wsp-package-card__highlights li::before {
    position: absolute;
    top: 0;
    left: 0;
    color: var(--wsp-gold-dark);
    font-weight: 900;
    content: "✓";
}

.wsp-package-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 26px;
}

.wsp-custom {
    padding: 85px 0;
    background:
        radial-gradient(
            circle at top right,
            rgba(214, 168, 95, 0.18),
            transparent 34%
        ),
        var(--wsp-sand);
}

.wsp-custom__card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 42px;
    background: rgba(255, 250, 244, 0.88);
    border: 1px solid var(--wsp-border);
    border-radius: 28px;
    box-shadow: var(--wsp-shadow);
}

.wsp-custom__card h2 {
    margin: 0 0 12px;
    color: var(--wsp-brown-dark);
    font-size: clamp(30px, 4vw, 45px);
}

.wsp-custom__card p {
    max-width: 700px;
    margin: 0;
    color: var(--wsp-muted);
    line-height: 1.72;
}

.wsp-detail-hero {
    position: relative;
    min-height: 690px;
    display: grid;
    align-items: end;
    overflow: hidden;
    background: var(--wsp-brown-dark);
}

.wsp-detail-hero__image,
.wsp-detail-hero__overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.wsp-detail-hero__image {
    object-fit: cover;
}

.wsp-detail-hero__overlay {
    background:
        linear-gradient(
            90deg,
            rgba(36, 18, 14, 0.92) 0%,
            rgba(47, 26, 21, 0.67) 52%,
            rgba(47, 26, 21, 0.2) 100%
        ),
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.04),
            rgba(0, 0, 0, 0.38)
        );
}

.wsp-detail-hero__content {
    position: relative;
    z-index: 2;
    padding-block: 150px 80px;
}

.wsp-detail-hero h1 {
    max-width: 850px;
    margin: 0 0 15px;
    color: var(--wsp-white);
    font-size: clamp(46px, 7vw, 80px);
    line-height: 0.98;
    letter-spacing: -0.045em;
}

.wsp-detail-hero__route {
    margin: 0 0 16px;
    color: var(--wsp-gold);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.wsp-detail-hero__summary {
    max-width: 720px;
    margin: 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 18px;
    line-height: 1.72;
}

.wsp-detail-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.wsp-overview {
    padding: 95px 0;
    background: var(--wsp-white);
}

.wsp-overview__grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: start;
    gap: clamp(45px, 8vw, 100px);
}

.wsp-overview h2 {
    margin: 0 0 18px;
    color: var(--wsp-brown-dark);
    font-size: clamp(34px, 4.5vw, 52px);
}

.wsp-overview p {
    margin: 0;
    color: var(--wsp-muted);
    font-size: 18px;
    line-height: 1.82;
}

.wsp-facts {
    overflow: hidden;
    background: var(--wsp-ivory);
    border: 1px solid var(--wsp-border);
    border-radius: 23px;
}

.wsp-facts > div {
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    gap: 20px;
    padding: 22px 24px;
    border-bottom: 1px solid var(--wsp-border);
}

.wsp-facts > div:last-child {
    border-bottom: 0;
}

.wsp-facts span {
    color: var(--wsp-muted);
    font-size: 13px;
    font-weight: 700;
}

.wsp-facts strong {
    color: var(--wsp-brown);
}

.wsp-highlights {
    padding: 90px 0;
    background: var(--wsp-sand);
}

.wsp-highlight-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.wsp-highlight-grid article {
    padding: 28px;
    background: rgba(255, 250, 244, 0.82);
    border: 1px solid var(--wsp-border);
    border-radius: 20px;
}

.wsp-highlight-grid article > span {
    display: block;
    margin-bottom: 30px;
    color: var(--wsp-gold-dark);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.wsp-highlight-grid p {
    margin: 0;
    color: var(--wsp-brown-dark);
    font-size: 17px;
    font-weight: 700;
    line-height: 1.5;
}

.wsp-itinerary {
    padding: 95px 0;
    background: var(--wsp-white);
}

.wsp-itinerary-list {
    display: grid;
    gap: 18px;
}

.wsp-itinerary-day {
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 28px;
    padding: 27px;
    background: var(--wsp-ivory);
    border: 1px solid var(--wsp-border);
    border-radius: 21px;
}

.wsp-itinerary-day__label {
    color: var(--wsp-gold-dark);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.wsp-itinerary-day h3 {
    margin: 0 0 10px;
    color: var(--wsp-brown-dark);
    font-size: 24px;
}

.wsp-itinerary-day p {
    margin: 0;
    color: var(--wsp-muted);
    line-height: 1.75;
}

.wsp-details {
    padding: 90px 0;
    background:
        linear-gradient(
            180deg,
            #f2e7dc 0%,
            var(--wsp-ivory) 100%
        );
}

.wsp-details__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.wsp-details-card {
    padding: 30px;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid var(--wsp-border);
    border-radius: 22px;
    box-shadow: var(--wsp-shadow);
}

.wsp-details-card h2 {
    margin: 0 0 20px;
    color: var(--wsp-brown-dark);
    font-size: 25px;
}

.wsp-details-card ul {
    margin: 0;
    padding-left: 20px;
    color: var(--wsp-muted);
}

.wsp-details-card li + li {
    margin-top: 11px;
}

.wsp-final-cta {
    padding: 90px 0;
    background: var(--wsp-brown-dark);
}

.wsp-final-cta__card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 42px;
}

.wsp-final-cta h2 {
    margin: 0 0 11px;
    color: var(--wsp-white);
    font-size: clamp(32px, 4vw, 48px);
}

.wsp-final-cta p {
    max-width: 720px;
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
    line-height: 1.75;
}

.wsp-final-cta__actions {
    min-width: 235px;
    display: grid;
    gap: 11px;
}

.wsp-not-found {
    min-height: 600px;
    display: grid;
    align-items: center;
    padding: 100px 0;
}

@media (max-width: 980px) {
    .wsp-listing-hero .wsp-shell,
    .wsp-overview__grid {
        grid-template-columns: 1fr;
    }

    .wsp-listing-hero__image img {
        height: 440px;
    }

    .wsp-highlight-grid,
    .wsp-details__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .wsp-final-cta__card {
        align-items: flex-start;
        flex-direction: column;
    }

    .wsp-final-cta__actions {
        min-width: 0;
        display: flex;
        flex-wrap: wrap;
    }
}

@media (max-width: 720px) {
    .wsp-shell {
        width: min(calc(100% - 28px), 1160px);
    }

    .wsp-listing-hero,
    .wsp-listing,
    .wsp-custom,
    .wsp-overview,
    .wsp-highlights,
    .wsp-itinerary,
    .wsp-details,
    .wsp-final-cta {
        padding-block: 65px;
    }

    .wsp-package-grid,
    .wsp-highlight-grid,
    .wsp-details__grid {
        grid-template-columns: 1fr;
    }

    .wsp-listing-hero__image img,
    .wsp-package-card__image img {
        height: 310px;
    }

    .wsp-custom__card {
        align-items: flex-start;
        flex-direction: column;
        padding: 28px;
    }

    .wsp-detail-hero {
        min-height: 630px;
    }

    .wsp-detail-hero__content {
        padding-block: 120px 62px;
    }

    .wsp-itinerary-day {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .wsp-facts > div {
        grid-template-columns: 1fr;
        gap: 7px;
    }

    .wsp-package-card__actions,
    .wsp-detail-hero__actions,
    .wsp-final-cta__actions {
        flex-direction: column;
    }

    .wsp-package-card__actions .wsp-button,
    .wsp-detail-hero__actions .wsp-button,
    .wsp-final-cta__actions .wsp-button {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .wsp-button,
    .wsp-package-card__image img {
        transition: none;
    }

    .wsp-button:hover,
    .wsp-package-card:hover .wsp-package-card__image img {
        transform: none;
    }
}

/* =========================================================
   WS SAFARI BOOKING FORM V1
   ========================================================= */

.wsb-page {
    --wsb-brown: #4f2d24;
    --wsb-brown-dark: #2f1a15;
    --wsb-gold: #d6a85f;
    --wsb-gold-dark: #a87831;
    --wsb-ivory: #fffaf4;
    --wsb-sand: #eadfd3;
    --wsb-white: #ffffff;
    --wsb-text: #403a38;
    --wsb-muted: #716865;
    --wsb-border: rgba(79, 45, 36, 0.16);
    --wsb-shadow: 0 22px 55px rgba(47, 26, 21, 0.1);

    overflow: hidden;
    background: var(--wsb-ivory);
    color: var(--wsb-text);
}

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

.wsb-shell {
    width: min(calc(100% - 44px), 1160px);
    margin-inline: auto;
}

.wsb-kicker {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 15px;
    padding: 8px 14px;
    background: rgba(214, 168, 95, 0.19);
    color: var(--wsb-gold-dark);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.wsb-hero {
    padding: 76px 0;
    background:
        radial-gradient(
            circle at top right,
            rgba(214, 168, 95, 0.2),
            transparent 38%
        ),
        linear-gradient(135deg, #fffaf4 0%, #f0e2d5 100%);
}

.wsb-hero .wsb-shell {
    display: grid;
    grid-template-columns: 1fr 0.82fr;
    align-items: center;
    gap: clamp(42px, 7vw, 88px);
}

.wsb-hero h1 {
    max-width: 720px;
    margin: 0 0 19px;
    color: var(--wsb-brown-dark);
    font-size: clamp(42px, 5.8vw, 70px);
    line-height: 1.02;
    letter-spacing: -0.045em;
}

.wsb-hero__content > p {
    max-width: 680px;
    margin: 0;
    color: var(--wsb-muted);
    font-size: 18px;
    line-height: 1.8;
}

.wsb-hero__facts {
    display: grid;
    gap: 12px;
    margin-top: 29px;
}

.wsb-hero__facts > div {
    padding: 15px 17px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid var(--wsb-border);
    border-radius: 16px;
}

.wsb-hero__facts strong,
.wsb-hero__facts span {
    display: block;
}

.wsb-hero__facts strong {
    margin-bottom: 4px;
    color: var(--wsb-brown);
    font-size: 14px;
}

.wsb-hero__facts span {
    color: var(--wsb-muted);
    font-size: 13px;
}

.wsb-hero__image {
    overflow: hidden;
    border-radius: 30px;
    box-shadow: var(--wsb-shadow);
}

.wsb-hero__image img {
    width: 100%;
    height: 530px;
    display: block;
    object-fit: cover;
}

.wsb-form-section {
    padding: 95px 0;
    background: var(--wsb-white);
}

.wsb-form-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 310px;
    align-items: start;
    gap: 34px;
}

.wsb-form-card,
.wsb-sidebar-card {
    background: var(--wsb-ivory);
    border: 1px solid var(--wsb-border);
    border-radius: 25px;
    box-shadow: var(--wsb-shadow);
}

.wsb-form-card {
    padding: clamp(25px, 5vw, 48px);
}

.wsb-form-heading {
    margin-bottom: 35px;
}

.wsb-form-heading h2,
.wsb-notice h2 {
    margin: 0 0 12px;
    color: var(--wsb-brown-dark);
}

.wsb-form-heading h2 {
    font-size: clamp(32px, 4vw, 47px);
}

.wsb-form-heading p {
    max-width: 720px;
    margin: 0;
    color: var(--wsb-muted);
    line-height: 1.72;
}

.wsb-notice {
    margin-bottom: 24px;
    padding: 23px;
    border-radius: 19px;
}

.wsb-notice p,
.wsb-notice ul {
    margin-bottom: 0;
}

.wsb-notice--success {
    background: #eef8ee;
    border: 1px solid #afd1ae;
}

.wsb-notice--error {
    background: #fff2ef;
    border: 1px solid #e2aaa1;
}

.wsb-fieldset {
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    border: 0;
}

.wsb-fieldset + .wsb-fieldset {
    margin-top: 42px;
    padding-top: 38px;
    border-top: 1px solid var(--wsb-border);
}

.wsb-fieldset legend {
    width: 100%;
    margin-bottom: 24px;
    color: var(--wsb-brown-dark);
    font-size: 24px;
    font-weight: 800;
}

.wsb-field {
    min-width: 0;
}

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

.wsb-field label {
    display: block;
    margin-bottom: 8px;
    color: var(--wsb-brown-dark);
    font-size: 14px;
    font-weight: 800;
}

.wsb-field label > span[aria-hidden="true"] {
    color: #a8402c;
}

.wsb-field input:not([type="checkbox"]),
.wsb-field select,
.wsb-field textarea {
    width: 100%;
    min-height: 52px;
    padding: 13px 15px;
    background: var(--wsb-white);
    color: var(--wsb-text);
    border: 1px solid var(--wsb-border);
    border-radius: 13px;
    font: inherit;
}

.wsb-field textarea {
    min-height: 145px;
    resize: vertical;
}

.wsb-field input:focus,
.wsb-field select:focus,
.wsb-field textarea:focus {
    border-color: var(--wsb-gold-dark);
    box-shadow: 0 0 0 3px rgba(214, 168, 95, 0.2);
    outline: 0;
}

.wsb-field small {
    display: block;
    margin-top: 7px;
    color: var(--wsb-muted);
    font-size: 12px;
}

.wsb-field--checkbox,
.wsb-field--consent {
    display: flex;
    align-items: center;
}

.wsb-field--checkbox label,
.wsb-field--consent label {
    margin: 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}

.wsb-field--checkbox input,
.wsb-field--consent input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    flex: 0 0 auto;
}

.wsb-field--checkbox span,
.wsb-field--consent span {
    color: var(--wsb-text);
    font-weight: 600;
    line-height: 1.5;
}

.wsb-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.wsb-submit {
    margin-top: 38px;
}

.wsb-submit__button {
    min-height: 54px;
    padding: 14px 25px;
    background: var(--wsb-brown);
    color: var(--wsb-white);
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 800;
}

.wsb-submit__button:hover {
    background: var(--wsb-brown-dark);
}

.wsb-submit p {
    margin: 13px 0 0;
    color: var(--wsb-muted);
    font-size: 13px;
}

.wsb-sidebar {
    position: sticky;
    top: 110px;
    display: grid;
    gap: 20px;
}

.wsb-sidebar-card {
    padding: 25px;
}

.wsb-sidebar-card h2 {
    margin: 0 0 11px;
    color: var(--wsb-brown-dark);
    font-size: 24px;
}

.wsb-sidebar-card p {
    color: var(--wsb-muted);
    line-height: 1.7;
}

.wsb-sidebar-card ol {
    margin: 0;
    padding-left: 22px;
    color: var(--wsb-muted);
}

.wsb-sidebar-card li + li {
    margin-top: 14px;
}

.wsb-sidebar-link {
    display: inline-flex;
    margin-top: 6px;
    color: var(--wsb-brown);
    font-weight: 800;
}

@media (max-width: 950px) {
    .wsb-hero .wsb-shell,
    .wsb-form-layout {
        grid-template-columns: 1fr;
    }

    .wsb-hero__image img {
        height: 440px;
    }

    .wsb-sidebar {
        position: static;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 680px) {
    .wsb-shell {
        width: min(calc(100% - 28px), 1160px);
    }

    .wsb-hero,
    .wsb-form-section {
        padding-block: 65px;
    }

    .wsb-hero__image img {
        height: 310px;
    }

    .wsb-fieldset,
    .wsb-sidebar {
        grid-template-columns: 1fr;
    }

    .wsb-form-card {
        padding: 25px 19px;
    }

    .wsb-field--full {
        grid-column: auto;
    }

    .wsb-submit__button {
        width: 100%;
    }
}

/* =========================================================
   WS BOOKING RECAPTCHA WIDGET V1
   ========================================================= */

.wsb-recaptcha {
    margin-top: 38px;
    padding-top: 34px;
    border-top: 1px solid var(--wsb-border);
}

.wsb-recaptcha__label {
    margin: 0 0 12px;
    color: var(--wsb-brown-dark);
    font-size: 14px;
    font-weight: 800;
}

.wsb-recaptcha__label span {
    color: #a8402c;
}

.wsb-recaptcha__widget {
    min-height: 78px;
}

.wsb-recaptcha__help {
    margin: 8px 0 0;
    color: var(--wsb-muted);
    font-size: 12px;
    line-height: 1.55;
}

@media (max-width: 360px) {
    .wsb-recaptcha__widget {
        width: 252px;
        height: 66px;
        min-height: 66px;
        overflow: hidden;
    }

    .wsb-recaptcha__widget .g-recaptcha {
        width: 304px;
        transform: scale(0.82);
        transform-origin: top left;
    }
}

/* =========================================================
   WS DAY TRIPS DESIGN V1
   ========================================================= */

.ws-day-trips {
    background: #fff;
    color: #2e2925;
}

.ws-day-trips__shell {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
}

.ws-day-trips__hero {
    position: relative;
    min-height: 510px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        linear-gradient(
            120deg,
            rgba(29, 69, 70, 0.94),
            rgba(79, 45, 36, 0.82)
        ),
        radial-gradient(
            circle at 82% 18%,
            rgba(219, 176, 79, 0.7),
            transparent 28%
        );
}

.ws-day-trips__hero::before,
.ws-day-trips__hero::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.ws-day-trips__hero::before {
    width: 420px;
    height: 420px;
    right: -100px;
    top: -130px;
}

.ws-day-trips__hero::after {
    width: 270px;
    height: 270px;
    right: 170px;
    bottom: -170px;
}

.ws-day-trips__hero-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(10, 29, 30, 0.28),
            transparent 70%
        );
}

.ws-day-trips__hero-content {
    position: relative;
    z-index: 2;
    padding-block: 100px;
    color: #fff;
}

.ws-day-trips__eyebrow,
.ws-day-trips__section-label {
    margin: 0 0 12px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.ws-day-trips__eyebrow {
    color: #f0c96d;
}

.ws-day-trips__hero h1 {
    max-width: 760px;
    margin: 0;
    color: #fff;
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    line-height: 0.98;
    letter-spacing: -0.045em;
}

.ws-day-trips__hero-copy {
    max-width: 650px;
    margin: 25px 0 31px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.12rem;
    line-height: 1.75;
}

.ws-day-trips__hero-button,
.ws-day-trips__cta-button,
.ws-day-trip-card__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 13px 22px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 800;
    transition:
        transform 180ms ease,
        box-shadow 180ms ease,
        background-color 180ms ease;
}

.ws-day-trips__hero-button {
    background: #f0c96d;
    color: #3d271f;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.ws-day-trips__hero-button:hover,
.ws-day-trips__hero-button:focus-visible,
.ws-day-trips__cta-button:hover,
.ws-day-trips__cta-button:focus-visible,
.ws-day-trip-card__button:hover,
.ws-day-trip-card__button:focus-visible {
    transform: translateY(-2px);
}

.ws-day-trips__intro {
    padding-block: 88px;
    background: #fff;
}

.ws-day-trips__intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 70px;
    align-items: start;
}

.ws-day-trips__section-label {
    color: #a46f25;
}

.ws-day-trips__intro h2,
.ws-day-trips__section-heading h2,
.ws-day-trips__cta h2 {
    margin: 0;
    color: #4f2d24;
    font-size: clamp(2rem, 4vw, 3.25rem);
    line-height: 1.12;
    letter-spacing: -0.035em;
}

.ws-day-trips__intro-copy {
    color: #665d56;
    font-size: 1.02rem;
    line-height: 1.85;
}

.ws-day-trips__intro-copy p {
    margin: 0 0 18px;
}

.ws-day-trips__collection {
    padding-block: 92px;
    background: #f7f3ee;
}

.ws-day-trips__section-heading {
    max-width: 720px;
    margin: 0 auto 45px;
    text-align: center;
}

.ws-day-trips__section-heading > p:last-child {
    margin: 17px 0 0;
    color: #71665e;
    line-height: 1.7;
}

.ws-day-trips__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.ws-day-trip-card {
    display: flex;
    min-width: 0;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(79, 45, 36, 0.11);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 17px 42px rgba(67, 46, 35, 0.08);
}

.ws-day-trip-card__visual {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background-position: center;
    background-size: cover;
}

.ws-day-trip-card__visual::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(13, 22, 22, 0.08),
            rgba(13, 22, 22, 0.48)
        );
}

.ws-day-trip-card__visual::after {
    content: "";
    position: absolute;
    width: 160px;
    height: 160px;
    right: -40px;
    bottom: -95px;
    border: 22px solid rgba(255, 255, 255, 0.16);
    border-radius: 50%;
}

.ws-day-trip-card__visual--marine {
    background-color: #1d777e;
    background-image:
        linear-gradient(145deg, #0f6974, #54b9bd);
}

.ws-day-trip-card__visual--mangrove {
    background-color: #44694e;
    background-image:
        linear-gradient(145deg, #274d3e, #82a766);
}

.ws-day-trip-card__visual--heritage {
    background-color: #866344;
    background-image:
        linear-gradient(145deg, #624733, #c49a65);
}

.ws-day-trip-card__visual--forest {
    background-color: #315d40;
    background-image:
        linear-gradient(145deg, #234632, #6c965d);
}

.ws-day-trip-card__visual--marafa {
    background-color: #a25f3d;
    background-image:
        linear-gradient(145deg, #7f3d2b, #df9b56);
}

.ws-day-trip-card__visual--island {
    background-color: #277884;
    background-image:
        linear-gradient(145deg, #225c70, #74c7bd);
}

.ws-day-trip-card__type,
.ws-day-trip-card__duration {
    position: absolute;
    z-index: 2;
    top: 17px;
    padding: 7px 11px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.ws-day-trip-card__type {
    left: 17px;
    background: #f0c96d;
    color: #4f2d24;
}

.ws-day-trip-card__duration {
    right: 17px;
    background: rgba(24, 25, 23, 0.64);
    color: #fff;
    backdrop-filter: blur(7px);
}

.ws-day-trip-card__content {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 25px;
}

.ws-day-trip-card h3 {
    margin: 0;
    color: #4f2d24;
    font-size: 1.4rem;
    line-height: 1.26;
}

.ws-day-trip-card__summary {
    margin: 15px 0;
    color: #6b625b;
    line-height: 1.68;
}

.ws-day-trip-card__highlights {
    display: grid;
    gap: 8px;
    margin: 0 0 23px;
    padding: 0;
    list-style: none;
    color: #514942;
    font-size: 0.92rem;
}

.ws-day-trip-card__highlights li {
    position: relative;
    padding-left: 22px;
}

.ws-day-trip-card__highlights li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #a46f25;
    font-weight: 900;
}

.ws-day-trip-card__button {
    width: 100%;
    margin-top: auto;
    border: 1px solid #4f2d24;
    background: #4f2d24;
    color: #fff;
}

.ws-day-trips__why {
    padding-block: 92px;
    background: #fff;
}

.ws-day-trips__why-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.ws-day-trips__why-grid article {
    padding: 31px;
    border: 1px solid rgba(79, 45, 36, 0.12);
    border-radius: 20px;
    background: #fff;
}

.ws-day-trips__why-grid span {
    display: inline-block;
    margin-bottom: 23px;
    color: #b27a29;
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 0.14em;
}

.ws-day-trips__why-grid h3 {
    margin: 0 0 12px;
    color: #4f2d24;
    font-size: 1.28rem;
}

.ws-day-trips__why-grid p {
    margin: 0;
    color: #6c635c;
    line-height: 1.72;
}

.ws-day-trips__cta {
    padding-block: 75px;
    background: #4f2d24;
    color: #fff;
}

.ws-day-trips__cta-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 45px;
    align-items: center;
}

.ws-day-trips__cta .ws-day-trips__section-label {
    color: #f0c96d;
}

.ws-day-trips__cta h2 {
    color: #fff;
}

.ws-day-trips__cta p:last-child {
    max-width: 710px;
    margin: 15px 0 0;
    color: rgba(255, 255, 255, 0.76);
    line-height: 1.7;
}

.ws-day-trips__cta-button {
    white-space: nowrap;
    background: #f0c96d;
    color: #40271f;
}

@media (max-width: 980px) {
    .ws-day-trips__grid,
    .ws-day-trips__why-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ws-day-trips__intro-grid {
        gap: 40px;
    }
}

@media (max-width: 720px) {
    .ws-day-trips__shell {
        width: min(100% - 28px, 1180px);
    }

    .ws-day-trips__hero {
        min-height: 470px;
    }

    .ws-day-trips__hero-content {
        padding-block: 80px;
    }

    .ws-day-trips__intro,
    .ws-day-trips__collection,
    .ws-day-trips__why {
        padding-block: 65px;
    }

    .ws-day-trips__intro-grid,
    .ws-day-trips__grid,
    .ws-day-trips__why-grid,
    .ws-day-trips__cta-inner {
        grid-template-columns: 1fr;
    }

    .ws-day-trips__intro-grid {
        gap: 25px;
    }

    .ws-day-trips__cta-inner {
        gap: 30px;
    }

    .ws-day-trips__cta-button {
        width: 100%;
    }
}
