:root {
    --color-primary: #d84e2a;
    --color-primary-dark: #b83d1d;
    --color-secondary: #0f2d46;
    --color-accent: #f5a623;
    --color-text: #1a2433;
    --color-text-soft: #5f6d7b;
    --color-surface: #ffffff;
    --color-surface-alt: #f7f8fb;
    --color-border: #d9e0ea;
    --color-success: #0a8a4b;
    --shadow-sm: 0 12px 24px rgba(18, 34, 54, 0.08);
    --shadow-lg: 0 28px 60px rgba(18, 34, 54, 0.12);
    --radius-lg: 36px;
    --container: 1240px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Aptos, "Trebuchet MS", sans-serif;
    color: var(--color-text);
    background:
        radial-gradient(circle at top left, rgba(245, 166, 35, 0.12), transparent 28%),
        linear-gradient(180deg, #fff8f2 0%, #ffffff 24%, #f7f8fb 100%);
    line-height: 1.6;
}

body.single-product {
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

.container {
    width: min(var(--container), calc(100% - 32px));
    margin: 0 auto;
}

.content-shell {
    display: grid;
    gap: 28px;
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--color-primary);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.section-eyebrow::before {
    content: "";
    width: 28px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(217, 224, 234, 0.9);
}

.site-header__topbar {
    background: var(--color-secondary);
    color: #fef7ef;
    font-size: 0.94rem;
}

.site-header__topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 10px 0;
}

.site-header__topbar-inner p {
    margin: 0;
}

.site-header__topbar-inner a {
    font-weight: 700;
}

.header-inner {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 32px;
    padding: 16px 0;
}

.site-brand {
    display: inline-flex;
    flex-direction: column;
    gap: 2px;
    color: var(--color-secondary);
}

.site-brand strong {
    font-size: 1.5rem;
    line-height: 1;
}

.site-brand__eyebrow {
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-primary);
}

.site-header__brand {
    display: flex;
    align-items: center;
}

.site-header__logo {
    display: inline-flex;
    align-items: center;
}

.site-header__logo img,
.custom-logo-link img {
    max-height: 60px;
    width: auto;
    height: auto;
}

.main-nav ul,
.site-footer .menu {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav {
    justify-self: end;
}

.main-nav a,
.header-action-link,
.site-footer a {
    font-weight: 600;
    color: var(--color-secondary);
}

.main-nav a {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    font-size: 0.98rem;
    letter-spacing: 0.01em;
    transition: color 0.2s ease;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 2px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--color-primary), rgba(216, 78, 42, 0.2));
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.2s ease;
}

.header-action-link:hover,
.main-nav a:hover,
.site-footer a:hover {
    color: var(--color-primary);
}

.main-nav a:hover::after,
.main-nav .current-menu-item > a::after,
.main-nav .current_page_item > a::after,
.main-nav .current-menu-ancestor > a::after {
    transform: scaleX(1);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    border: 0;
    background: transparent;
    justify-self: end;
    transition: background 0.2s ease, box-shadow 0.2s ease;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-secondary);
    border-radius: 999px;
    transition: transform 0.2s ease, opacity 0.2s ease, background 0.2s ease;
}

.menu-toggle.is-active {
    background: var(--color-secondary);
    box-shadow: 0 16px 28px rgba(15, 45, 70, 0.18);
}

.menu-toggle.is-active span {
    background: #fff;
}

.menu-toggle.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.site-header.is-menu-open {
    border-bottom-color: transparent;
}

.site-header.is-menu-open::after {
    content: "";
    position: fixed;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(7, 20, 32, 0.08), rgba(7, 20, 32, 0.46)),
        radial-gradient(circle at top right, rgba(245, 166, 35, 0.1), transparent 30%);
    backdrop-filter: blur(10px);
    z-index: 48;
}

body.has-mobile-menu-open {
    overflow: hidden;
}

.home-page {
    overflow: clip;
}

.home-hero {
    position: relative;
    padding: 52px 0 42px;
    overflow: clip;
}

.home-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.9fr);
    gap: 28px;
    align-items: stretch;
}

.home-hero__inner {
    position: relative;
    z-index: 1;
    display: grid;
}

.home-hero__content {
    position: relative;
    z-index: 1;
    padding: 54px;
    border-radius: var(--radius-lg);
    background:
        linear-gradient(140deg, rgba(15, 45, 70, 0.96), rgba(20, 66, 100, 0.92)),
        linear-gradient(180deg, rgba(216, 78, 42, 0.18), rgba(245, 166, 35, 0.18));
    color: #fff;
    box-shadow: var(--shadow-lg);
}

.home-hero__content h1 {
    margin: 18px 0;
    font-size: clamp(2.5rem, 5vw, 4.7rem);
    line-height: 0.95;
    letter-spacing: -0.04em;
}

.home-hero__subtitle {
    margin: 0 0 18px;
    font-size: clamp(1.2rem, 2vw, 1.7rem);
    line-height: 1.14;
    letter-spacing: -0.03em;
}

.home-hero__content p {
    max-width: 620px;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.86);
}

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

.home-hero__action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 24px;
    border-radius: 999px;
    font-weight: 800;
}

.home-hero__action--secondary {
    border: 1px solid rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.08);
    color: inherit;
}

.hero-search {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    margin-top: 28px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 24px;
}

.hero-search input {
    min-height: 56px;
    padding: 0 18px;
    border: 0;
    border-radius: 18px;
}

button,
input[type="submit"],
.button,
.tour-card__cta {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    min-height: 52px;
    padding: 0 22px;
    border: 0;
    border-radius: 18px;
    background: var(--color-primary);
    color: #fff;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}

button:hover,
input[type="submit"]:hover,
.button:hover,
.tour-card__cta:hover {
    background: var(--color-primary-dark);
    transform: translateY(-1px);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    list-style: none;
    margin: 32px 0 0;
    padding: 0;
}

.hero-stats li {
    display: grid;
    gap: 10px;
    padding: 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.1);
}

.hero-stat__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.14);
}

.hero-stat__icon img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.hero-stats strong {
    display: block;
    font-size: 1.4rem;
    margin-bottom: 6px;
}

.hero-stats span {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.94rem;
}

.home-hero__panel {
    position: relative;
    display: grid;
    min-height: 100%;
}

.home-hero__panel-media {
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    background-size: cover;
    background-position: center;
    filter: saturate(1.02);
}

.home-hero__panel::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, rgba(12, 34, 53, 0.1), rgba(12, 34, 53, 0.55));
}

.home-hero--full {
    --hero-overlay-opacity: 0.45;
    min-height: 78vh;
    display: grid;
    align-items: end;
    margin-bottom: 8px;
    color: #fff;
}

.home-hero--full .home-hero__inner {
    min-height: inherit;
    align-items: end;
}

.home-hero__backdrop,
.home-hero__fallback-image {
    position: absolute;
    inset: 0;
}

.home-hero--full-image .home-hero__backdrop {
    background-image:
        linear-gradient(180deg, rgba(9, 23, 35, calc(var(--hero-overlay-opacity) * 0.5)), rgba(9, 23, 35, var(--hero-overlay-opacity))),
        var(--hero-image-desktop);
    background-size: cover;
    background-position: var(--hero-focal-point, center center);
}

.home-hero--full-video .home-hero__backdrop::after,
.home-hero--full-image .home-hero__backdrop::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6, 18, 28, 0.14), rgba(6, 18, 28, 0.24));
}

.home-hero__video,
.home-hero__fallback-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-hero--full .home-hero__content {
    max-width: 900px;
    margin: 0 0 18px;
    background: rgba(7, 22, 33, 0.34);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(12px);
}

.home-hero--full-image .home-hero__content,
.home-hero--full-video .home-hero__content {
    max-width: 860px;
    margin: 0;
    padding: 0 0 28px;
    background: transparent;
    border: 0;
    box-shadow: none;
    backdrop-filter: none;
    color: #fff;
}

.home-hero--full-image .home-hero__content h1,
.home-hero--full-image .home-hero__subtitle,
.home-hero--full-video .home-hero__content h1,
.home-hero--full-video .home-hero__subtitle {
    color: #fff;
}

.home-hero--full-image .home-hero__content p,
.home-hero--full-video .home-hero__content p {
    max-width: 760px;
    color: rgba(255, 255, 255, 0.88);
}

.home-hero--full-image .home-hero__inner {
    display: flex;
    align-items: end;
    min-height: inherit;
    padding-top: 48px;
    padding-bottom: 42px;
}

.home-hero--full-image .home-hero__content {
    width: min(860px, 100%);
    padding: 0;
    background: none !important;
    border: 0 !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
}

.home-hero--full-image .section-eyebrow,
.home-hero--full-image .home-hero__content h1,
.home-hero--full-image .home-hero__subtitle,
.home-hero--full-image .home-hero__content p {
    color: #fff !important;
    text-shadow: 0 10px 30px rgba(6, 18, 28, 0.28);
}

.home-hero--full-image .section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(8, 23, 36, 0.28);
    backdrop-filter: blur(10px);
}

.home-hero--full-image .section-eyebrow::before {
    background: currentColor;
    opacity: 0.75;
}

.home-hero--full-image .home-hero__content h1 {
    max-width: 14ch;
    margin: 22px 0 18px;
    font-size: clamp(3.2rem, 7vw, 6rem);
    line-height: 0.92;
}

.home-hero--full-image .home-hero__subtitle {
    max-width: min(100%, 760px);
    margin: 0 0 18px;
    font-size: clamp(1.3rem, 2.2vw, 1.9rem);
    line-height: 1.08;
}

.home-hero--full-image .home-hero__content p {
    max-width: 62ch;
    margin: 0;
    font-size: 1.08rem;
    line-height: 1.72;
}

.home-hero--full-image .home-hero__actions {
    margin-top: 30px;
}

.home-hero--full-image .home-hero__action--primary {
    box-shadow: 0 20px 40px rgba(231, 73, 15, 0.26);
}

.home-hero--full-image .home-hero__action--secondary {
    border-color: rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.home-hero--full-image .hero-stats {
    margin-top: 32px;
}

.home-hero--full-image.home-hero--theme-normal .home-hero__backdrop,
.home-hero--full-image.home-hero--theme-dark .home-hero__backdrop {
    background-image:
        linear-gradient(180deg, rgba(9, 23, 35, calc(var(--hero-overlay-opacity) * 0.48)), rgba(9, 23, 35, calc(var(--hero-overlay-opacity) + 0.08))),
        var(--hero-image-desktop);
}

.home-hero--full-image.home-hero--theme-normal .home-hero__backdrop::after {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(8, 22, 34, 0.18)),
        linear-gradient(90deg, rgba(7, 20, 31, 0.18), transparent 46%);
}

.home-hero--full-image.home-hero--theme-dark .home-hero__backdrop::after {
    background:
        linear-gradient(180deg, rgba(4, 14, 24, 0.06), rgba(4, 14, 24, 0.28)),
        linear-gradient(90deg, rgba(4, 14, 24, 0.34), transparent 52%);
}

.home-hero--full-image.home-hero--theme-light .home-hero__backdrop {
    background-image:
        linear-gradient(180deg, rgba(236, 242, 247, 0.12), rgba(236, 242, 247, 0.18)),
        var(--hero-image-desktop);
}

.home-hero--full-image.home-hero--theme-light .home-hero__backdrop::after {
    background:
        linear-gradient(180deg, rgba(248, 251, 254, 0.08), rgba(248, 251, 254, 0.16)),
        linear-gradient(90deg, rgba(248, 251, 254, 0.18), transparent 56%);
}

.home-hero--full-image.home-hero--theme-light .home-hero__content {
    padding: 34px 38px 38px;
    border: 1px solid rgba(255, 255, 255, 0.24) !important;
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.52), rgba(255, 255, 255, 0.34)) !important;
    box-shadow: 0 20px 50px rgba(7, 20, 31, 0.16) !important;
    backdrop-filter: blur(18px) saturate(1.06) !important;
    -webkit-backdrop-filter: blur(18px) saturate(1.06) !important;
}

.home-hero--full-image.home-hero--theme-light .section-eyebrow,
.home-hero--full-image.home-hero--theme-light .home-hero__content h1,
.home-hero--full-image.home-hero--theme-light .home-hero__subtitle,
.home-hero--full-image.home-hero--theme-light .home-hero__content p {
    color: var(--color-secondary) !important;
    text-shadow: none;
}

.home-hero--full-image.home-hero--theme-light .section-eyebrow {
    background: rgba(255, 255, 255, 0.62);
}

.home-hero--full-image.home-hero--theme-light .section-eyebrow::before {
    opacity: 0.9;
}

.home-hero--full-image.home-hero--theme-light .home-hero__action--secondary {
    border-color: rgba(15, 45, 70, 0.12);
    background: rgba(255, 255, 255, 0.46);
    color: var(--color-secondary);
}

.home-hero--full-image.home-hero--theme-light .hero-stats li {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.28);
}

.home-hero--full-image.home-hero--theme-light .hero-stat__icon {
    background: rgba(255, 255, 255, 0.46);
}

.home-hero--full-image.home-hero--theme-light .hero-stats strong {
    color: var(--color-secondary);
}

.home-hero--full-image.home-hero--theme-light .hero-stats span {
    color: rgba(20, 48, 71, 0.76);
}

.home-hero--full-image.home-hero--theme-sand .home-hero__backdrop {
    background-image:
        linear-gradient(180deg, rgba(89, 51, 23, calc(var(--hero-overlay-opacity) * 0.28)), rgba(89, 51, 23, calc(var(--hero-overlay-opacity) * 0.42))),
        var(--hero-image-desktop);
}

.home-hero--full-image.home-hero--theme-sand .home-hero__backdrop::after {
    background:
        linear-gradient(180deg, rgba(255, 219, 176, 0.08), rgba(92, 55, 24, 0.16)),
        linear-gradient(90deg, rgba(88, 49, 17, 0.22), transparent 56%);
}

.home-hero--full-image.home-hero--theme-sand .section-eyebrow,
.home-hero--full-image.home-hero--theme-sand .home-hero__content h1,
.home-hero--full-image.home-hero--theme-sand .home-hero__subtitle,
.home-hero--full-image.home-hero--theme-sand .home-hero__content p {
    color: #fff8f1 !important;
    text-shadow: 0 10px 30px rgba(65, 37, 18, 0.24);
}

.home-hero--full-image.home-hero--theme-sand .section-eyebrow {
    background: rgba(107, 67, 34, 0.28);
}

.home-hero--full-image.home-hero--theme-sand .home-hero__action--primary {
    background: #f59e38;
    box-shadow: 0 22px 42px rgba(245, 158, 56, 0.28);
}

.home-hero--full-image.home-hero--theme-sand .hero-stats li {
    background: rgba(255, 244, 234, 0.12);
    border-color: rgba(255, 221, 188, 0.18);
}

.home-hero--full-image.home-hero--theme-ocean .home-hero__backdrop {
    background-image:
        linear-gradient(180deg, rgba(11, 57, 76, calc(var(--hero-overlay-opacity) * 0.42)), rgba(7, 40, 58, calc(var(--hero-overlay-opacity) * 0.68))),
        var(--hero-image-desktop);
}

.home-hero--full-image.home-hero--theme-ocean .home-hero__backdrop::after {
    background:
        linear-gradient(180deg, rgba(73, 188, 201, 0.06), rgba(7, 35, 52, 0.18)),
        linear-gradient(90deg, rgba(7, 40, 58, 0.24), transparent 54%);
}

.home-hero--full-image.home-hero--theme-ocean .section-eyebrow {
    background: rgba(8, 52, 70, 0.34);
}

.home-hero--full-image.home-hero--theme-ocean .home-hero__action--primary {
    background: #1f8aa8;
    box-shadow: 0 22px 42px rgba(31, 138, 168, 0.28);
}

.home-hero--full-image.home-hero--theme-ocean .hero-stats li {
    background: rgba(15, 72, 95, 0.22);
    border-color: rgba(104, 210, 223, 0.18);
}

.home-hero--full-image .hero-stats li,
.home-hero--full-video .hero-stats li {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
}

.home-hero--full .home-hero__content p,
.home-hero--full .hero-stats span,
.home-hero--minimal .hero-stats span {
    color: rgba(255, 255, 255, 0.84);
}

.home-hero--minimal {
    padding: 56px 0 34px;
}

.home-hero--minimal .home-hero__inner {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.68fr);
    gap: 28px;
    align-items: stretch;
}

.home-hero--minimal .home-hero__content {
    background:
        radial-gradient(circle at top right, rgba(216, 78, 42, 0.1), transparent 34%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 249, 252, 0.98));
    color: var(--color-secondary);
}

.home-hero--minimal .home-hero__content p {
    color: var(--color-text-soft);
}

.home-hero__quote-card {
    position: relative;
    overflow: hidden;
    min-height: 100%;
    padding: 34px;
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, rgba(15, 45, 70, 0.96), rgba(24, 67, 99, 0.92));
    color: #fff;
    box-shadow: var(--shadow-lg);
}

.home-hero__quote-texture {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.2;
}

.home-hero__quote-card blockquote {
    position: relative;
    z-index: 1;
    margin: 0;
    font-size: clamp(1.4rem, 2vw, 2rem);
    line-height: 1.22;
    letter-spacing: -0.03em;
}

.home-hero--theme-light .home-hero__content {
    color: var(--color-secondary);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(248, 250, 253, 0.96)),
        rgba(255, 255, 255, 0.98);
}

.home-hero--full-image.home-hero--theme-light .home-hero__content,
.home-hero--full-video.home-hero--theme-light .home-hero__content,
.home-hero--full-image.home-hero--theme-sand .home-hero__content,
.home-hero--full-video.home-hero--theme-sand .home-hero__content,
.home-hero--full-image.home-hero--theme-ocean .home-hero__content,
.home-hero--full-video.home-hero--theme-ocean .home-hero__content,
.home-hero--full-image.home-hero--theme-dark .home-hero__content,
.home-hero--full-video.home-hero--theme-dark .home-hero__content {
    background: transparent;
    color: #fff;
}

.home-hero--theme-light .home-hero__content p,
.home-hero--theme-light .hero-stats span,
.home-hero--theme-sand .home-hero__content p {
    color: var(--color-text-soft);
}

.home-hero--theme-light .home-hero__action--secondary,
.home-hero--theme-sand .home-hero__action--secondary {
    border-color: rgba(15, 45, 70, 0.12);
    background: rgba(15, 45, 70, 0.04);
    color: var(--color-secondary);
}

.home-hero--theme-sand .home-hero__content {
    color: var(--color-secondary);
    background:
        radial-gradient(circle at top right, rgba(245, 166, 35, 0.18), transparent 30%),
        linear-gradient(180deg, rgba(255, 248, 242, 0.98), rgba(255, 255, 255, 0.98));
}

.home-hero--theme-ocean .home-hero__content {
    background:
        radial-gradient(circle at top right, rgba(44, 160, 173, 0.18), transparent 30%),
        linear-gradient(140deg, rgba(11, 44, 72, 0.96), rgba(22, 81, 107, 0.94));
}

.home-hero--theme-dark .home-hero__action--secondary,
.home-hero--theme-ocean .home-hero__action--secondary,
.home-hero--full .home-hero__action--secondary {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
}

.home-hero--width-narrow .home-hero__content {
    max-width: 680px;
}

.home-hero--width-medium .home-hero__content {
    max-width: 820px;
}

.home-hero--width-wide .home-hero__content {
    max-width: 980px;
}

.home-hero--align-center .home-hero__content {
    margin-inline: auto;
    text-align: center;
}

.home-hero--align-center .home-hero__content p {
    margin-inline: auto;
}

.home-hero--align-center .home-hero__subtitle {
    margin-inline: auto;
}

.home-hero--align-center .home-hero__actions {
    justify-content: center;
}

.home-hero--align-right .home-hero__content {
    margin-left: auto;
    text-align: right;
}

.home-hero--align-right .home-hero__content p {
    margin-left: auto;
}

.home-hero--align-right .home-hero__actions {
    justify-content: flex-end;
}

.home-hero--height-medium {
    min-height: 560px;
}

.home-hero--height-large {
    min-height: 700px;
}

.home-hero--height-screen {
    min-height: calc(100vh - 94px);
}

.home-hero-card,
.archive-hero__content,
.archive-hero__card,
.single-tour__gallery-main,
.single-tour__summary-card,
.single-tour__section,
.related.products,
.trust-strip article,
.empty-state-card,
.shop-sidebar__panel,
.shop-widget,
.generic-card,
.generic-entry,
.generic-archive__header,
.shop-toolbar,
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(217, 224, 234, 0.8);
    box-shadow: var(--shadow-sm);
}

.home-hero-card {
    height: 100%;
    padding: 34px;
    border-radius: var(--radius-lg);
}

.home-hero-card h2 {
    margin: 18px 0 16px;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    line-height: 1.05;
    color: var(--color-secondary);
}

.hero-feature-list,
.shop-sidebar__list,
.site-footer__list,
.tour-feature-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.hero-feature-list li,
.shop-sidebar__list li,
.site-footer__list li,
.tour-feature-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 14px;
    color: var(--color-text-soft);
}

.hero-feature-list li::before,
.shop-sidebar__list li::before,
.site-footer__list li::before,
.tour-feature-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(180deg, var(--color-accent), var(--color-primary));
}

.home-section {
    padding: 30px 0 18px;
}

.home-bridge {
    position: relative;
    z-index: 2;
    margin-top: -52px;
    padding: 0 0 10px;
}

.home-bridge__strip {
    position: relative;
    padding: 20px;
    border: 1px solid rgba(221, 228, 237, 0.82);
    border-radius: 30px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(249, 252, 255, 0.94)),
        rgba(255, 255, 255, 0.95);
    box-shadow: 0 26px 60px rgba(17, 42, 64, 0.12);
    backdrop-filter: blur(14px);
}

.home-bridge__strip::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background:
        radial-gradient(circle at top left, rgba(245, 158, 11, 0.14), transparent 24%),
        radial-gradient(circle at top right, rgba(15, 45, 70, 0.08), transparent 28%);
    pointer-events: none;
}

.home-bridge__strip article {
    position: relative;
    min-height: 100%;
    padding: 28px 24px 24px;
    border: 1px solid rgba(223, 229, 236, 0.84);
    background: rgba(255, 255, 255, 0.68);
    box-shadow: 0 14px 32px rgba(18, 38, 57, 0.06);
}

.home-bridge__kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-primary);
}

.home-bridge__kicker::before {
    content: "";
    width: 18px;
    height: 1px;
    background: currentColor;
}

.home-bridge--theme-normal .home-bridge__strip,
.home-bridge--theme-dark .home-bridge__strip {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 250, 253, 0.92)),
        rgba(255, 255, 255, 0.94);
}

.home-bridge--theme-light .home-bridge__strip {
    border-color: rgba(255, 255, 255, 0.28);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.52), rgba(255, 255, 255, 0.34)),
        rgba(255, 255, 255, 0.36);
    box-shadow: 0 26px 58px rgba(16, 34, 52, 0.12);
    backdrop-filter: blur(18px) saturate(1.05);
}

.home-bridge--theme-light .home-bridge__strip article {
    border-color: rgba(255, 255, 255, 0.42);
    background: rgba(255, 255, 255, 0.42);
}

.home-bridge--theme-dark .home-bridge__strip {
    border-color: rgba(29, 58, 82, 0.18);
    background:
        linear-gradient(180deg, rgba(250, 252, 255, 0.94), rgba(245, 249, 253, 0.92)),
        rgba(255, 255, 255, 0.94);
}

.home-bridge--theme-dark .home-bridge__strip::before {
    background:
        radial-gradient(circle at top left, rgba(15, 45, 70, 0.12), transparent 24%),
        radial-gradient(circle at top right, rgba(7, 20, 31, 0.08), transparent 28%);
}

.home-bridge--theme-sand .home-bridge__strip {
    border-color: rgba(231, 209, 186, 0.8);
    background:
        linear-gradient(180deg, rgba(255, 249, 243, 0.95), rgba(255, 245, 236, 0.93)),
        rgba(255, 248, 241, 0.95);
}

.home-bridge--theme-sand .home-bridge__strip::before {
    background:
        radial-gradient(circle at top left, rgba(245, 166, 35, 0.18), transparent 26%),
        radial-gradient(circle at top right, rgba(122, 74, 34, 0.08), transparent 28%);
}

.home-bridge--theme-sand .home-bridge__strip article {
    border-color: rgba(232, 214, 195, 0.88);
    background: rgba(255, 252, 248, 0.78);
}

.home-bridge--theme-ocean .home-bridge__strip {
    border-color: rgba(159, 208, 221, 0.28);
    background:
        linear-gradient(180deg, rgba(240, 249, 252, 0.94), rgba(233, 246, 251, 0.92)),
        rgba(240, 249, 252, 0.94);
}

.home-bridge--theme-ocean .home-bridge__strip::before {
    background:
        radial-gradient(circle at top left, rgba(55, 171, 191, 0.14), transparent 24%),
        radial-gradient(circle at top right, rgba(15, 71, 89, 0.08), transparent 28%);
}

.home-bridge--theme-ocean .home-bridge__strip article {
    border-color: rgba(190, 226, 234, 0.86);
    background: rgba(247, 253, 255, 0.72);
}

.home-section--soft {
    padding: 42px 0;
}

.home-section--about {
    position: relative;
    margin-top: 12px;
    padding: 64px 0;
    overflow: clip;
}

.home-section--about::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(245, 166, 35, 0.16), transparent 26%),
        radial-gradient(circle at bottom right, rgba(15, 45, 70, 0.16), transparent 28%),
        linear-gradient(180deg, #f8f2ea 0%, #f5efe6 100%);
}

.home-section--about .container {
    position: relative;
    z-index: 1;
}

.home-about {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.85fr);
    gap: 28px;
    align-items: stretch;
}

.home-about__content,
.home-about__media {
    border: 1px solid rgba(217, 224, 234, 0.82);
    border-radius: 32px;
    box-shadow: 0 24px 42px rgba(18, 34, 54, 0.08);
}

.home-about__content {
    padding: 40px 42px;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.home-about__content h2 {
    margin: 12px 0 16px;
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1;
    letter-spacing: -0.04em;
    color: var(--color-secondary);
}

.home-about__text,
.home-reviews__intro p {
    max-width: 58ch;
    margin: 0;
    color: var(--color-text-soft);
}

.home-about__highlights {
    display: grid;
    gap: 14px;
    margin-top: 24px;
}

.home-about__highlight {
    display: flex;
    gap: 14px;
    align-items: start;
    padding: 16px 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.54);
    border: 1px solid rgba(226, 214, 199, 0.94);
    box-shadow: 0 14px 28px rgba(102, 76, 48, 0.06);
}

.home-about__highlight-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    border-radius: 16px;
    background: rgba(216, 78, 42, 0.08);
}

.home-about__highlight-icon img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.home-about__highlight strong {
    display: block;
    margin-bottom: 6px;
    color: var(--color-secondary);
}

.home-about__highlight p {
    margin: 0;
    color: var(--color-text-soft);
}

.home-about__cta {
    margin-top: 24px;
}

.home-about__media {
    overflow: hidden;
    min-height: 100%;
    border-color: rgba(226, 214, 199, 0.92);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.7)),
        rgba(255, 255, 255, 0.82);
    box-shadow: 0 28px 48px rgba(102, 76, 48, 0.12);
}

.home-about__media img,
.home-about__media-placeholder {
    width: 100%;
    height: 100%;
    min-height: 460px;
    object-fit: cover;
}

.home-about__media-placeholder {
    background: linear-gradient(140deg, #ffc56d, #f07a44 45%, #1d557d 100%);
}

.home-section--reviews {
    padding-top: 54px;
    padding-bottom: 72px;
}

.home-reviews-shortcode,
.home-reviews-shortcode iframe,
.home-reviews-shortcode .ti-widget,
.home-reviews-shortcode .ti-widget-container {
    width: 100% !important;
}

.home-reviews-shortcode {
    background: transparent;
}

.home-reviews__intro--plain {
    margin: 0 0 32px;
}

.home-reviews__intro--plain .section-eyebrow {
    color: var(--color-primary);
}

.home-reviews__intro--plain .section-eyebrow::before {
    background: linear-gradient(90deg, rgba(216, 78, 42, 0.92), rgba(216, 78, 42, 0.24));
}

.home-reviews__intro--plain h2 {
    margin: 16px 0 18px;
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1;
    letter-spacing: -0.04em;
    color: var(--color-secondary);
}

.home-reviews__intro--plain p {
    max-width: 70ch;
    margin: 0;
    color: var(--color-text-soft);
    font-size: 1.02rem;
    line-height: 1.8;
}

.home-reviews__placeholder {
    display: grid;
    place-items: center;
    min-height: 280px;
    padding: 24px;
    border: 1px dashed rgba(217, 224, 234, 0.9);
    border-radius: 24px;
    color: var(--color-text-soft);
    text-align: center;
}

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

.section-heading h2,
.archive-hero h1,
.single-tour h2,
.generic-entry__title,
.generic-archive__header h1 {
    margin: 10px 0 0;
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1;
    letter-spacing: -0.04em;
    color: var(--color-secondary);
}

.section-heading a {
    color: var(--color-primary);
    font-weight: 800;
}

.category-grid,
.tour-products-grid,
ul.products,
.trust-strip,
.generic-archive__grid,
.single-tour__detail-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.category-carousel {
    position: relative;
    overflow: hidden;
    padding: 0 18px;
}

.category-grid--carousel {
    display: flex;
    gap: 22px;
    align-items: start;
    padding: 8px 0 22px;
    overflow: visible;
    background: transparent;
    touch-action: pan-y;
    will-change: transform;
}

.category-grid--carousel > * {
    min-width: 0;
    flex: 0 0 calc((100% - 44px) / 3);
}

.category-carousel__arrow {
    position: absolute;
    top: 50%;
    z-index: 4;
    width: 56px;
    min-width: 56px;
    height: 56px;
    padding: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.96);
    color: var(--color-secondary);
    border: 1px solid rgba(217, 224, 234, 0.92);
    box-shadow: 0 18px 30px rgba(18, 34, 54, 0.12);
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
    transform: translateY(-50%);
    transition: transform 0.18s ease, color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.category-carousel__arrow:hover {
    background: #fff;
    color: var(--color-primary);
    box-shadow: 0 20px 32px rgba(18, 34, 54, 0.14);
    transform: translateY(calc(-50% - 1px));
}

.category-carousel__arrow--prev {
    left: 0;
}

.category-carousel__arrow--next {
    right: 0;
}

.home-section__cta {
    display: flex;
    justify-content: center;
    margin-top: 44px;
}

.category-grid--destinations {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

ul.products,
.woocommerce ul.products,
.woocommerce-page ul.products {
    margin: 0;
    padding: 0;
    list-style: none;
}

.category-card,
.tour-card {
    overflow: hidden;
    border-radius: 30px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(249, 250, 252, 0.98));
    border: 1px solid rgba(217, 224, 234, 0.82);
    box-shadow: 0 22px 38px rgba(18, 34, 54, 0.08);
}

.category-grid--carousel .category-card {
    box-shadow: 0 12px 24px rgba(18, 34, 54, 0.05);
}

.tour-card {
    display: flex;
    flex-direction: column;
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.tour-card:hover {
    transform: translateY(-4px);
    border-color: rgba(216, 78, 42, 0.2);
    box-shadow: 0 30px 48px rgba(18, 34, 54, 0.12);
}

.category-card__media,
.tour-card__media {
    display: block;
    min-height: 190px;
    background:
        linear-gradient(180deg, rgba(16, 46, 72, 0.1), rgba(16, 46, 72, 0.5)),
        linear-gradient(135deg, #ffc56d, #f07a44 50%, #1d557d 100%);
    background-size: cover;
    background-position: center;
}

.tour-card__media {
    position: relative;
    aspect-ratio: 1.32 / 1;
    overflow: hidden;
    border-radius: 30px 30px 0 0;
}

.tour-card__media::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 42%;
    background: linear-gradient(180deg, transparent, rgba(15, 45, 70, 0.24));
    pointer-events: none;
}

.shop-content .tour-card__media::after {
    display: none;
}

.related.products .tour-card__media::after {
    display: none;
}

.shop-content .tour-card__media {
    aspect-ratio: auto;
    height: 250px;
    min-height: 0;
    background: none;
}

.related.products .tour-card__media {
    aspect-ratio: auto;
    height: 250px;
    min-height: 0;
    background: none;
}

.shop-content .tour-card__media img,
.shop-content .tour-card__placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related.products .tour-card__media img,
.related.products .tour-card__placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.shop-content .tour-card__media-cover {
    display: block;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.related.products .tour-card__media-cover {
    display: block;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.tour-card__media img,
.tour-card__placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.tour-card:hover .tour-card__media img {
    transform: scale(1.05);
}

.shop-content .tour-card__price {
    display: grid;
    grid-template-columns: auto auto;
    grid-template-areas:
        "label old"
        "current current";
    align-items: end;
    justify-content: start;
    column-gap: 8px;
    row-gap: 4px;
}

.shop-content .tour-card__price-label {
    grid-area: label;
}

.shop-content .tour-card__price-value {
    display: contents;
}

.shop-content .tour-card__price-value del {
    grid-area: old;
    white-space: nowrap;
}

.shop-content .tour-card__price-value strong {
    grid-area: current;
}

.category-card__body,
.tour-card__content {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    gap: 16px;
    padding: 22px 24px 24px;
}

.category-card__body strong {
    font-size: 1.22rem;
    color: var(--color-secondary);
}

.category-card__body small,
.trust-strip p,
.site-footer__copy,
.generic-card p,
.empty-state-card p,
.archive-hero__description,
.archive-hero__content p,
.tour-card__excerpt,
.single-tour__excerpt,
.single-tour__content,
.generic-entry__content {
    color: var(--color-text-soft);
}

.tour-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tour-card__media .tour-badges {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    max-width: calc(100% - 28px);
}

.tour-badge {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(15, 45, 70, 0.88);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 800;
    box-shadow: 0 10px 18px rgba(15, 45, 70, 0.22);
    letter-spacing: 0.04em;
}

.tour-card__media .tour-badge:first-child {
    background: linear-gradient(180deg, rgba(15, 45, 70, 0.94), rgba(26, 64, 94, 0.94));
}

.tour-card__eyebrow,
.single-tour__location {
    color: var(--color-primary);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.tour-card__title {
    margin: 0;
    font-size: 1.72rem;
    line-height: 1.04;
    letter-spacing: -0.04em;
    min-height: 3.6rem;
}

.woocommerce ul.products li.product .tour-card__title,
.woocommerce-page ul.products li.product .tour-card__title {
    font-size: 1.72rem;
    line-height: 1.04;
    letter-spacing: -0.04em;
}

.tour-card__title a {
    color: var(--color-secondary);
}

.tour-card__rating,
.single-tour__rating {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    color: var(--color-text-soft);
}

.tour-card__rating strong,
.single-tour__rating strong {
    color: var(--color-secondary);
    font-size: 1.05rem;
}

.star-rating {
    color: var(--color-accent);
}

.tour-meta-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.tour-meta-list li {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 14px;
    border-radius: 999px;
    background: var(--color-surface-alt);
    border: 1px solid var(--color-border);
    color: var(--color-secondary);
    font-size: 0.9rem;
    font-weight: 700;
}

.tour-card__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid rgba(217, 224, 234, 0.75);
}

.tour-card__price,
.single-tour__price-box {
    display: grid;
    gap: 4px;
}

.tour-card__price {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1 1 auto;
    justify-content: center;
    min-height: 0;
}

.tour-card__price-label,
.single-tour__price-label {
    color: var(--color-text-soft);
    font-size: 0.9rem;
}

.tour-card__price-value,
.single-tour__price .price {
    color: var(--color-secondary);
    font-size: 1.45rem;
    font-weight: 900;
}

.tour-card__price-value {
    display: flex;
    align-items: baseline;
    gap: 8px;
    min-height: 0;
    padding-top: 0;
    font-size: 1.72rem;
    letter-spacing: -0.025em;
    font-weight: 900;
    line-height: 1;
    color: var(--color-secondary);
}

.tour-card__price-value del {
    position: static;
    color: rgba(95, 109, 123, 0.7);
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1.1;
    white-space: nowrap;
}

.tour-card__price-value strong {
    display: inline-flex;
    font-size: 1.72rem;
    font-weight: 900;
    line-height: 1;
    color: var(--color-secondary);
}

.tour-card__cta {
    min-width: 144px;
    min-height: 56px;
    align-self: center;
    flex: 0 0 auto;
    border-radius: 999px;
    background: linear-gradient(180deg, #eb6437, #d84e2a);
    box-shadow: 0 16px 26px rgba(216, 78, 42, 0.2);
    font-size: 0.95rem;
    letter-spacing: 0.01em;
}

.single-tour__summary-card {
    padding: 30px;
    border-radius: 32px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 249, 252, 0.96)),
        rgba(255, 255, 255, 0.98);
    box-shadow: 0 26px 48px rgba(18, 34, 54, 0.12);
}

.single-tour__price-box {
    position: relative;
    gap: 10px;
    margin: 24px 0 12px;
    padding: 22px 24px 20px;
    border-radius: 26px;
    background:
        radial-gradient(circle at top right, rgba(216, 78, 42, 0.08), transparent 26%),
        linear-gradient(180deg, rgba(248, 250, 253, 0.98), rgba(255, 255, 255, 1));
    border: 1px solid rgba(210, 220, 232, 0.95);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.72),
        0 16px 28px rgba(18, 34, 54, 0.06);
}

.single-tour__price-box::after {
    content: "";
    width: 52px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--color-primary), rgba(216, 78, 42, 0.18));
}

.single-tour__price-label {
    color: var(--color-text-soft);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.single-tour__price .price {
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 10px;
    font-size: clamp(2.7rem, 3.8vw, 3.4rem);
    line-height: 0.92;
    font-weight: 900;
    letter-spacing: -0.045em;
    color: var(--color-secondary);
    text-wrap: balance;
}

.single-tour__price .price > * {
    line-height: 1;
}

.single-tour__price .price .woocommerce-Price-amount,
.single-tour__price .price bdi {
    font: inherit;
    line-height: inherit;
    color: inherit;
}

.single-tour__price .price del {
    display: inline-flex;
    align-items: flex-end;
    margin-right: 6px;
    color: rgba(95, 109, 123, 0.65);
    font-size: 0.44em;
    font-weight: 700;
}

.single-tour__price .price ins {
    display: inline-flex;
    align-items: flex-end;
    text-decoration: none;
}

.single-tour__price-note {
    color: var(--color-text-soft);
    font-size: 0.88rem;
}

.trust-strip article,
.empty-state-card,
.shop-sidebar__panel,
.shop-widget,
.generic-card,
.generic-entry,
.generic-archive__header,
.shop-toolbar,
.woocommerce-message,
.woocommerce-info,
.woocommerce-error,
.archive-hero__content,
.archive-hero__card,
.single-tour__gallery-main,
.single-tour__summary-card,
.single-tour__section {
    padding: 24px;
    border-radius: 24px;
}

.trust-strip strong,
.shop-widget__title,
.shop-sidebar__panel h2,
.site-footer h2 {
    display: block;
    margin: 0 0 14px;
    color: var(--color-secondary);
}

.archive-hero__inner,
.shop-archive__layout,
.single-tour__hero,
.home-hero__grid,
.site-footer__grid {
    display: grid;
    gap: 28px;
}

.related.products {
    margin-top: 38px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.related.products > h2 {
    margin: 0 0 24px;
    font-size: clamp(2rem, 3vw, 2.8rem);
    line-height: 1;
    letter-spacing: -0.04em;
    color: var(--color-secondary);
}

.single-product .related.products ul.products {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.single-product .related.products ul.products li.product {
    width: auto !important;
    float: none !important;
    margin: 0 !important;
}


.archive-hero__inner {
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
}

.archive-hero__panel {
    display: flex;
    align-items: end;
    min-height: 280px;
    padding: 24px;
    border-radius: 32px;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(15, 45, 70, 0.25), rgba(15, 45, 70, 0.88)),
        linear-gradient(140deg, #ffc56d, #f07a44 45%, #1d557d 100%);
    background-size: cover;
    background-position: center;
}

.shop-archive__layout {
    grid-template-columns: minmax(240px, 0.32fr) minmax(0, 1fr);
}

.shop-sidebar__sticky,
.generic-page__inner,
.generic-archive__inner,
.single-tour__body {
    display: grid;
    gap: 22px;
}

.shop-sidebar__sticky,
.single-tour__summary {
    position: static;
}

.single-tour__summary {
    display: block;
}

.shop-sidebar__links,
.site-footer__list,
.shop-sidebar__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.shop-sidebar__links li + li {
    margin-top: 10px;
}

.woocommerce-breadcrumb {
    margin-bottom: 16px;
    color: var(--color-text-soft);
    font-size: 0.92rem;
}

.woocommerce-breadcrumb a {
    color: var(--color-secondary);
    font-weight: 700;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
    width: auto;
    float: none;
    margin: 0;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after,
.woocommerce-page ul.products::before,
.woocommerce-page ul.products::after {
    display: none;
}

.shop-toolbar .woocommerce-ordering {
    margin: 0;
}

.shop-toolbar .woocommerce-ordering select,
.woocommerce .quantity .qty {
    min-height: 46px;
    padding: 0 14px;
    border: 1px solid var(--color-border);
    border-radius: 14px;
    background: #fff;
}

.shop-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
}

.single-tour {
    display: block;
}

.single-tour__mobile-intro,
.single-tour__mobile-booking-cta {
    display: none;
}

.single-tour__breadcrumbs {
    margin: 8px 0 6px;
}

.single-tour__hero {
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.62fr);
    align-items: start;
}

.single-tour__primary {
    display: grid;
    gap: 22px;
    min-width: 0;
}

.single-tour__summary,
.single-tour__gallery,
.single-tour__body,
.single-tour__summary-card,
.single-tour__gallery-main {
    min-width: 0;
}

.single-tour__gallery-main {
    overflow: hidden;
    padding: 0;
    aspect-ratio: 16 / 11;
    width: 100%;
    max-width: 100%;
}

.single-tour__image {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
    object-position: center;
}

.single-tour__image--placeholder {
    background: linear-gradient(140deg, #ffc56d, #f07a44 45%, #1d557d 100%);
}

.single-tour__thumbnails-carousel {
    position: relative;
    margin-top: 14px;
}

.single-tour__thumbnails-viewport {
    overflow-x: auto;
    overflow-y: hidden;
    width: 100%;
    scrollbar-width: none;
    -ms-overflow-style: none;
    touch-action: pan-x;
}

.single-tour__thumbnails-viewport::-webkit-scrollbar {
    display: none;
}

.single-tour__thumbnails {
    display: flex;
    flex-wrap: nowrap;
    gap: 12px;
    width: max-content;
    max-width: none;
    padding: 0 54px;
    scroll-behavior: smooth;
}

.single-tour__thumb-arrow {
    position: absolute;
    top: 50%;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid rgba(18, 34, 54, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.96);
    color: var(--color-secondary);
    box-shadow: 0 12px 24px rgba(18, 34, 54, 0.1);
    transform: translateY(-50%);
}

.single-tour__thumb-arrow span {
    font-size: 2rem;
    line-height: 1;
    transform: translateY(-1px);
}

.single-tour__thumb-arrow--prev {
    left: 0;
}

.single-tour__thumb-arrow--next {
    right: 0;
}

.single-tour__info-strip {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-top: 24px;
    padding: 18px;
    border-radius: 28px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(247, 249, 252, 0.96)),
        rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(217, 224, 234, 0.72);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.78),
        0 20px 34px rgba(18, 34, 54, 0.07);
}

.single-tour__info-strip::before {
    content: "";
    position: absolute;
    top: -12px;
    left: 22px;
    width: 72px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(216, 78, 42, 0.95), rgba(245, 166, 35, 0.3));
}

.single-tour__info-strip-head {
    grid-column: 1 / -1;
    margin-bottom: 2px;
}

.single-tour__info-strip-head .section-eyebrow {
    color: var(--color-secondary);
}

.single-tour__info-strip-head .section-eyebrow::before {
    background: linear-gradient(90deg, var(--color-primary), rgba(216, 78, 42, 0.24));
}

.single-tour__info-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(217, 224, 234, 0.9);
    box-shadow: 0 14px 26px rgba(18, 34, 54, 0.06);
}

.single-tour__info-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(216, 78, 42, 0.12), rgba(245, 166, 35, 0.14));
    color: var(--color-primary);
}

.single-tour__info-icon svg {
    width: 20px;
    height: 20px;
}

.single-tour__info-copy {
    display: grid;
    gap: 2px;
}

.single-tour__info-copy small {
    color: var(--color-text-soft);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.single-tour__info-copy strong {
    color: var(--color-secondary);
    font-size: 0.98rem;
    line-height: 1.2;
}

.single-tour__thumb {
    flex: 0 0 132px;
    min-width: 132px;
    overflow: hidden;
    padding: 0;
    border: 2px solid transparent;
    border-radius: 18px;
    background: transparent;
}

.single-tour__thumb.is-active {
    border-color: var(--color-primary);
}

.single-tour__thumb img {
    width: 100%;
    height: 92px;
    object-fit: cover;
    object-position: center;
    image-rendering: auto;
}

.single-tour__summary-card h1 {
    margin: 12px 0 16px;
    font-size: clamp(2rem, 3vw, 3.2rem);
    line-height: 0.98;
    color: var(--color-secondary);
}

.single-tour__summary-card .tour-badges {
    margin-bottom: 12px;
}

.single-tour__summary-card .single-tour__location {
    display: block;
    margin-bottom: 12px;
}

.single-tour__excerpt {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(217, 224, 234, 0.75);
}

.single-tour__trust-panel {
    margin-top: 20px;
    width: 100%;
    max-width: 100%;
    padding: 22px 24px 24px;
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(15, 45, 70, 0.99), rgba(14, 55, 86, 0.96));
    border: 1px solid rgba(23, 67, 99, 0.92);
    box-shadow: 0 24px 42px rgba(15, 45, 70, 0.18);
}

.single-tour__trust-panel-head {
    display: grid;
    gap: 10px;
    margin-bottom: 18px;
}

.single-tour__trust-panel-head .section-eyebrow {
    color: rgba(255, 255, 255, 0.76);
}

.single-tour__trust-panel-head .section-eyebrow::before {
    background: linear-gradient(90deg, var(--color-accent), rgba(245, 166, 35, 0.22));
}

.single-tour__trust-panel h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(1.35rem, 2vw, 1.8rem);
    line-height: 1.05;
}

.single-tour__trust-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 14px;
}

.single-tour__trust-list li {
    position: relative;
    padding-left: 28px;
    color: rgba(255, 255, 255, 0.94);
    font-size: 1rem;
    line-height: 1.55;
}

.single-tour__trust-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: linear-gradient(180deg, var(--color-accent), var(--color-primary));
}

.single-tour__trust-panel-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 54px;
    margin-top: 22px;
    padding: 0 22px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 249, 252, 0.92));
    color: var(--color-secondary);
    font-weight: 900;
    box-shadow: 0 14px 28px rgba(8, 24, 38, 0.18);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.single-tour__trust-panel-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 34px rgba(8, 24, 38, 0.2);
}

.single-tour__cart form.cart {
    display: block;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
}

.single-tour__cart .quantity {
    display: flex;
}

.single-tour__cart .quantity .qty {
    min-width: 56px;
    min-height: 56px;
    border-radius: 18px;
}

.single-tour__cart .single_add_to_cart_button {
    min-height: 56px;
    padding: 0 28px;
    border-radius: 24px;
    box-shadow: 0 16px 28px rgba(216, 78, 42, 0.18);
}

.single-tour__cart .yith-wcbk-form-section-price {
    display: none;
}

.single-tour__cart .yith-wcbk-booking-form {
    display: grid;
    gap: 13px;
    padding: 20px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(252, 252, 253, 1), rgba(246, 248, 251, 0.98));
    border: 1px solid rgba(217, 224, 234, 0.88);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.single-tour__cart .yith-wcbk-form-section {
    display: grid;
    gap: 8px;
}

.single-tour__cart .yith-wcbk-booking-form > .single_add_to_cart_button {
    order: 30;
    width: 100%;
    justify-content: center;
    min-height: 62px;
    margin-top: 4px;
    border-radius: 24px;
    font-size: 1rem;
    font-weight: 900;
    box-shadow: 0 18px 30px rgba(216, 78, 42, 0.2);
}

.single-tour__cart .yith-wcbk-booking-form__label {
    color: var(--color-secondary);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.single-tour__cart .yith-wcbk-form-section__content input,
.single-tour__cart .yith-wcbk-form-section__content select,
.single-tour__cart .yith-wcbk-form-section__content .yith-wcbk-month-picker-value,
.single-tour__cart .yith-wcbk-form-section__content .yith-wcbk-selector__head,
.single-tour__cart .yith-wcbk-form-section__content .yith-wcbk-select-list__field {
    width: 100%;
    min-height: 58px;
    padding: 0 18px;
    border: 1px solid rgba(210, 219, 230, 0.95);
    border-radius: 18px;
    background: #fff;
    color: var(--color-secondary);
    box-shadow: 0 12px 22px rgba(18, 34, 54, 0.04);
}

.single-tour__cart .yith-wcbk-booking-duration__label {
    display: inline-flex;
    align-items: center;
    min-height: 52px;
    padding: 0 16px;
    border-radius: 18px;
    background: rgba(15, 45, 70, 0.05);
    color: var(--color-secondary);
    font-weight: 700;
}

.single-tour__cart .yith-wcbk-booking-form-message {
    margin-top: 8px;
}

.single-tour__booking-total {
    display: grid;
    gap: 6px;
    margin: 0;
    padding: 16px 18px;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(15, 45, 70, 0.98), rgba(29, 85, 125, 0.94));
    color: #fff;
    box-shadow: 0 18px 34px rgba(15, 45, 70, 0.2);
}

.single-tour__cart .single-tour__booking-total {
    order: 25;
    margin-top: 2px;
}

.single-tour__booking-total span {
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.76);
}

.single-tour__booking-total-value {
    font-size: clamp(2.05rem, 3.2vw, 2.6rem);
    line-height: 1;
}

.single-tour__body {
    padding-top: 20px;
    padding-bottom: 20px;
}

.single-tour__price-box {
    gap: 0;
}

.single-tour__price-box .price {
    margin-top: 2px;
}

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

.single-tour__section--details {
    display: grid;
    gap: 28px;
    padding: 28px;
    background:
        radial-gradient(circle at top right, rgba(245, 166, 35, 0.08), transparent 26%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 249, 252, 0.96));
}

.single-tour__section--details > .single-tour__section-header {
    margin-bottom: -4px;
}

.single-tour__section--details > .single-tour__section-header h2 {
    margin-bottom: 0;
}

.single-tour__detail-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.single-tour__detail-card {
    padding: 22px 22px 20px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 250, 253, 0.92));
    border: 1px solid rgba(217, 224, 234, 0.84);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.68);
}

.single-tour__detail-card--full {
    padding: 24px;
}

.single-tour__detail-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.single-tour__detail-head h2 {
    margin: 0;
    font-size: clamp(1.55rem, 2.2vw, 2.2rem);
    line-height: 1.04;
    letter-spacing: -0.04em;
}

.single-tour__detail-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(255, 244, 234, 0.96), rgba(255, 236, 222, 0.92));
    color: var(--color-primary);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
    flex: 0 0 auto;
}

.single-tour__detail-icon svg {
    width: 22px;
    height: 22px;
}

.single-tour__section--details .tour-feature-list li:last-child {
    margin-bottom: 0;
}

.single-tour__section--details .single-tour__content > *:last-child {
    margin-bottom: 0;
}

.generic-page,
.generic-archive {
    padding: 34px 0 54px;
}

.about-page,
.error-page {
    padding: 28px 0 64px;
}

.about-hero,
.error-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: 28px;
    align-items: stretch;
}

.about-hero__content,
.about-hero__media,
.about-story__copy,
.about-story__visual,
.about-quote__card,
.about-cta__card,
.error-hero__content,
.error-hero__media {
    border: 1px solid rgba(217, 224, 234, 0.84);
    border-radius: 32px;
    box-shadow: 0 24px 42px rgba(18, 34, 54, 0.08);
}

.about-hero__content,
.error-hero__content {
    padding: 36px 38px;
    background:
        radial-gradient(circle at top right, rgba(245, 166, 35, 0.12), transparent 26%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 250, 252, 0.96));
}

.about-hero__content h1,
.error-hero__content h1 {
    margin: 14px 0 16px;
    font-size: clamp(2.8rem, 5vw, 5.4rem);
    line-height: 0.94;
    letter-spacing: -0.06em;
    color: var(--color-secondary);
}

.about-hero__subtitle {
    max-width: 18ch;
    margin: 0 0 18px;
    font-size: clamp(1.3rem, 2vw, 2rem);
    line-height: 1.06;
    letter-spacing: -0.03em;
    color: var(--color-secondary);
}

.about-hero__text,
.about-story__text,
.about-cta__copy p,
.error-hero__content p {
    color: var(--color-text-soft);
}

.about-hero__stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    list-style: none;
    margin: 28px 0 0;
    padding: 0;
}

.about-hero__stats li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(217, 224, 234, 0.84);
}

.about-hero__stat-icon,
.about-value-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(216, 78, 42, 0.12), rgba(245, 166, 35, 0.16));
    flex: 0 0 auto;
}

.about-hero__stat-icon img,
.about-value-card__icon img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.about-hero__stats strong {
    display: block;
    color: var(--color-secondary);
    font-size: 1.2rem;
    line-height: 1;
}

.about-hero__stats span {
    color: var(--color-text-soft);
    font-size: 0.88rem;
}

.about-hero__media,
.about-story__visual,
.error-hero__media {
    overflow: hidden;
    background:
        linear-gradient(140deg, rgba(255, 197, 109, 0.94), rgba(240, 122, 68, 0.84) 48%, rgba(29, 85, 125, 0.88) 100%);
}

.about-hero__media img,
.about-story__visual img,
.error-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-hero__placeholder,
.about-story__visual-placeholder,
.error-hero__placeholder {
    min-height: 100%;
}

.about-story {
    padding: 26px 0 10px;
}

.about-story__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.98fr) minmax(320px, 0.92fr);
    gap: 28px;
    align-items: stretch;
}

.about-story__copy {
    padding: 34px 36px;
    background:
        radial-gradient(circle at top left, rgba(245, 166, 35, 0.08), transparent 24%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 253, 0.96));
}

.about-story__copy h2,
.about-values__header h2,
.about-cta__copy h2 {
    margin: 14px 0 16px;
    font-size: clamp(2rem, 3.4vw, 3.4rem);
    line-height: 0.98;
    letter-spacing: -0.05em;
    color: var(--color-secondary);
}

.about-values {
    padding: 22px 0 12px;
}

.about-values__header {
    margin-bottom: 24px;
}

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

.about-value-card {
    padding: 24px;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 253, 0.96));
    border: 1px solid rgba(217, 224, 234, 0.84);
    box-shadow: 0 20px 34px rgba(18, 34, 54, 0.07);
}

.about-value-card h3 {
    margin: 18px 0 10px;
    font-size: 1.42rem;
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: var(--color-secondary);
}

.about-value-card p {
    margin: 0;
    color: var(--color-text-soft);
}

.about-quote {
    padding: 20px 0 12px;
}

.about-quote__card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(240px, 0.74fr);
    overflow: hidden;
    background: linear-gradient(135deg, rgba(15, 45, 70, 0.98), rgba(24, 81, 108, 0.94));
    border-color: rgba(22, 64, 93, 0.94);
}

.about-quote__content {
    padding: 36px 38px;
    color: #fff;
}

.about-quote__content blockquote {
    margin: 0;
    font-size: clamp(1.5rem, 2.2vw, 2.4rem);
    line-height: 1.15;
    letter-spacing: -0.04em;
}

.about-quote__content cite {
    display: block;
    margin-top: 18px;
    font-style: normal;
    color: rgba(255, 255, 255, 0.72);
}

.about-quote__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-cta {
    padding: 18px 0 0;
}

.about-cta__card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 30px 34px;
    background:
        radial-gradient(circle at top right, rgba(245, 166, 35, 0.12), transparent 22%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 253, 0.96));
}

.about-cta__button {
    flex: 0 0 auto;
}

.error-hero {
    min-height: 560px;
}

.error-hero__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.error-hero__code {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    min-height: 42px;
    margin: 18px 0 8px;
    padding: 0 18px;
    border-radius: 999px;
    background: rgba(216, 78, 42, 0.08);
    color: var(--color-primary);
    font-size: 0.86rem;
    font-weight: 800;
    letter-spacing: 0.18em;
}

.error-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.button--ghost {
    background: rgba(15, 45, 70, 0.06);
    color: var(--color-secondary);
    box-shadow: none;
}

.site-main--woocommerce,
.shop-archive {
    padding: 34px 0 54px;
}

.single-product .site-main--woocommerce {
    padding-top: 16px;
}

.single-product .site-main--woocommerce .content-shell {
    gap: 10px;
}

.site-footer {
    position: relative;
    margin-top: 40px;
    overflow: clip;
    color: #f6f7fa;
    background: linear-gradient(180deg, #10293d 0%, #081b2a 100%);
}

.site-footer__backdrop {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.14;
    filter: saturate(0.94);
}

.site-footer__shell {
    position: relative;
    z-index: 1;
    padding-top: 58px;
    padding-bottom: 24px;
}

.site-footer__brandbar {
    margin-bottom: 26px;
}

.site-footer__top {
    display: grid;
    grid-template-columns: minmax(260px, 1.2fr) repeat(calc(var(--footer-top-columns) - 1), minmax(0, 1fr));
    gap: 42px;
    align-items: start;
}

.site-footer__column--brand {
    display: grid;
    gap: 0;
}

.site-footer__logo {
    position: relative;
    display: inline-flex;
    width: fit-content;
}

.site-footer__logo img {
    display: block;
    max-width: 240px;
    max-height: 78px;
    width: auto;
    height: auto;
}

.site-footer__logo::after {
    content: "";
    position: absolute;
    top: 50%;
    left: calc(100% + 18px);
    width: 92px;
    height: 1px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.08));
    transform: translateY(-50%);
}

.site-footer__action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 24px;
    border-radius: 999px;
    font-weight: 800;
}

.site-footer__column h3,
.site-footer__column h4,
.site-footer__contact h3,
.site-footer__contact h4 {
    margin: 0 0 18px;
    color: #fff;
}

.site-footer__contact {
    margin-top: 0;
}

.site-footer__column h3,
.site-footer__contact h3,
.site-footer__social h3 {
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.site-footer__links,
.site-footer__meta {
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-footer__links li + li,
.site-footer__meta li + li {
    margin-top: 14px;
}

.site-footer__links li {
    position: relative;
    padding-left: 18px;
}

.site-footer__links li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.82em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.56);
}

.site-footer__links a,
.site-footer__bottom a,
.site-footer__social-links a,
.site-footer__meta a {
    color: rgba(246, 247, 250, 0.78);
    font-weight: 300;
    letter-spacing: 0.01em;
    transition: color 0.2s ease, transform 0.2s ease;
}

.site-footer__links a.is-highlight {
    color: #fff;
}

.site-footer__links a:hover,
.site-footer__meta a:hover,
.site-footer__bottom a:hover {
    color: #fff;
    transform: translateX(2px);
}

.site-footer__meta strong {
    display: block;
    margin-bottom: 5px;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(246, 247, 250, 0.54);
}

.site-footer__meta span,
.site-footer__hours p,
.site-footer__social p {
    color: rgba(246, 247, 250, 0.72);
    font-weight: 300;
}

.site-footer__middle {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    margin-top: 42px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer__hours {
    margin-top: 18px;
}

.site-footer__support-note {
    margin-top: 8px;
}

.site-footer__social {
    display: grid;
    align-content: start;
    gap: 16px;
    justify-items: center;
    text-align: center;
}

.site-footer__social-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.site-footer__social-links a,
.site-footer__legal a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.site-footer__social-links a:hover,
.site-footer__legal a:hover {
    transform: translateY(-1px);
}

.site-footer__bottom {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: center;
    margin-top: 32px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(246, 247, 250, 0.68);
    font-size: 0.94rem;
}

.site-footer__bottom p {
    margin: 0;
}

.site-footer__legal {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.site-footer--theme-light {
    color: var(--color-secondary);
    background: linear-gradient(180deg, #f7fafc 0%, #edf4f8 100%);
}

.site-footer--theme-light .site-footer__brand {
    box-shadow: none;
}

.site-footer--theme-light .site-footer__column h3,
.site-footer--theme-light .site-footer__column h4,
.site-footer--theme-light .site-footer__contact h3,
.site-footer--theme-light .site-footer__contact h4,
.site-footer--theme-light .site-footer__links a,
.site-footer--theme-light .site-footer__bottom a,
.site-footer--theme-light .site-footer__social-links a,
.site-footer--theme-light .site-footer__meta a,
.site-footer--theme-light .site-footer__contact h3 {
    color: var(--color-secondary);
}

.site-footer--theme-light .site-footer__meta span,
.site-footer--theme-light .site-footer__hours p,
.site-footer--theme-light .site-footer__social p,
.site-footer--theme-light .site-footer__bottom {
    color: rgba(20, 48, 71, 0.74);
}

.site-footer--theme-light .site-footer__links li::before {
    background: rgba(20, 48, 71, 0.55);
}

.site-footer--theme-light .site-footer__meta strong {
    color: rgba(20, 48, 71, 0.56);
}

.site-footer--theme-light .site-footer__social-links a,
.site-footer--theme-light .site-footer__legal a {
    border-color: rgba(210, 221, 232, 0.92);
    background: rgba(244, 248, 252, 0.82);
}

.site-footer--theme-sand {
    background: linear-gradient(180deg, #fff8f2 0%, #f8ecde 100%);
    color: #4b2c16;
}

.site-footer--theme-sand .site-footer__column h3,
.site-footer--theme-sand .site-footer__column h4,
.site-footer--theme-sand .site-footer__contact h3,
.site-footer--theme-sand .site-footer__contact h4,
.site-footer--theme-sand .site-footer__links a,
.site-footer--theme-sand .site-footer__bottom a,
.site-footer--theme-sand .site-footer__social-links a,
.site-footer--theme-sand .site-footer__meta a,
.site-footer--theme-sand .site-footer__contact h3 {
    color: #4b2c16;
}

.site-footer--theme-sand .site-footer__meta span,
.site-footer--theme-sand .site-footer__hours p,
.site-footer--theme-sand .site-footer__social p,
.site-footer--theme-sand .site-footer__bottom {
    color: rgba(75, 44, 22, 0.76);
}

.site-footer--theme-sand .site-footer__links li::before {
    background: rgba(75, 44, 22, 0.55);
}

.site-footer--theme-sand .site-footer__social-links a,
.site-footer--theme-sand .site-footer__legal a {
    border-color: rgba(236, 214, 191, 0.92);
    background: rgba(255, 248, 239, 0.8);
}

.site-footer--theme-ocean {
    background: linear-gradient(180deg, #0f3c4e 0%, #082634 100%);
}

.site-footer--theme-ocean .site-footer__action {
    background: #1f8aa8;
}

.site-footer--theme-minimal {
    background: linear-gradient(180deg, #111f2b 0%, #0a1620 100%);
}

.site-footer--layout-minimal .site-footer__top {
    grid-template-columns: 1fr;
}

.site-footer--layout-stacked .site-footer__top {
    grid-template-columns: 1fr;
}

.site-footer--layout-minimal .site-footer__top,
.site-footer--layout-stacked .site-footer__top {
    gap: 26px;
}

.site-footer--layout-minimal .site-footer__middle,
.site-footer--layout-stacked .site-footer__middle {
    grid-template-columns: 1fr;
}

.woocommerce nav.woocommerce-pagination ul {
    display: flex;
    justify-content: center;
    gap: 10px;
    border: 0;
    margin-top: 28px;
}

.woocommerce nav.woocommerce-pagination ul li {
    border: 0;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
    min-width: 44px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    border: 1px solid var(--color-border);
    background: #fff;
    color: var(--color-secondary);
    font-weight: 800;
}

.woocommerce nav.woocommerce-pagination ul li span.current {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

@media (max-width: 1120px) {
    .home-hero__grid,
    .archive-hero__inner,
    .single-tour__hero,
    .shop-archive__layout,
    .site-footer__grid {
        grid-template-columns: 1fr;
    }

    .about-hero,
    .about-story__grid,
    .about-quote__card,
    .error-hero {
        grid-template-columns: 1fr;
    }

    .home-hero--minimal .home-hero__inner {
        grid-template-columns: 1fr;
    }

    .single-tour__summary,
    .shop-sidebar__sticky {
        position: static;
    }

    .single-tour__trust-panel {
        position: static;
    }

    .category-grid,
    .tour-products-grid,
    ul.products,
    .trust-strip,
    .home-about,
    .about-values__grid,
    .generic-archive__grid,
    .single-tour__detail-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1121px) {
    .single-tour__summary {
        display: flex;
        flex-direction: column;
        gap: 20px;
        align-self: stretch;
        min-height: 100%;
    }

    .single-tour__trust-panel {
        position: sticky;
        top: 140px;
    }
}

@media (max-width: 980px) {
    html,
    body.single-product {
        overflow-x: hidden;
    }

    body.single-product .site-header,
    body.single-product .site-main--woocommerce,
    body.single-product .site-footer,
    body.single-product .container,
    body.single-product .content-shell,
    body.single-product .single-tour {
        max-width: 100vw;
        overflow-x: clip;
    }

    .single-tour__hero,
    .single-tour__primary,
    .single-tour__gallery,
    .single-tour__gallery-main,
    .single-tour__thumbnails,
    .single-tour__body,
    .single-tour__summary {
        min-width: 0;
        max-width: 100%;
    }

    body.single-product {
        padding-bottom: 92px;
    }

    .single-tour__mobile-intro {
        display: grid;
        gap: 10px;
        margin: 0 0 18px;
    }

    .single-tour__mobile-intro .tour-badges {
        margin-bottom: 0;
    }

    .single-tour__mobile-title {
        margin: 0;
        font-size: clamp(2.15rem, 8vw, 3rem);
        line-height: 0.96;
        letter-spacing: -0.05em;
        color: var(--color-secondary);
    }

    .single-tour__mobile-intro .single-tour__rating {
        gap: 8px;
    }

    .single-tour__summary-card h1 {
        display: none;
    }

    .single-tour__mobile-booking-cta {
        position: fixed;
        left: 16px;
        right: 16px;
        bottom: 16px;
        z-index: 45;
        display: inline-flex;
        visibility: visible;
        opacity: 1;
        align-items: center;
        justify-content: center;
        min-height: 58px;
        padding: 0 24px;
        border-radius: 999px;
        background: linear-gradient(180deg, #eb6437, #d84e2a);
        color: #fff;
        font-size: 1rem;
        font-weight: 900;
        letter-spacing: 0.01em;
        box-shadow: 0 18px 34px rgba(216, 78, 42, 0.24);
        transition: opacity 0.2s ease, transform 0.2s ease;
    }

    .single-tour__mobile-booking-cta.is-hidden {
        opacity: 0;
        pointer-events: none;
        transform: translateY(14px);
    }

    .home-section .section-eyebrow {
        margin-top: 12px;
    }

    .woocommerce ul.products li.product,
    .woocommerce-page ul.products li.product,
    .shop-content ul.products li.product,
    .related.products ul.products li.product {
        width: 100% !important;
        margin: 0 !important;
    }

    .woocommerce ul.products li.product .tour-card,
    .woocommerce-page ul.products li.product .tour-card,
    .shop-content ul.products li.product .tour-card,
    .related.products ul.products li.product .tour-card {
        width: 100%;
    }

    .single-product .related.products ul.products {
        display: grid !important;
        grid-template-columns: 1fr;
    }

    .category-carousel {
        overflow: visible;
        padding: 0;
    }

    .site-footer__logo::after {
        display: none;
    }

    .category-grid--carousel {
        display: flex;
        overflow: visible;
    }

    .category-grid--carousel > * {
        flex-basis: 100%;
    }

    .category-carousel__arrow {
        display: inline-flex;
        width: 48px;
        min-width: 48px;
        height: 48px;
        font-size: 1.22rem;
    }

    .category-carousel__arrow--prev {
        left: -10px;
    }

    .category-carousel__arrow--next {
        right: -10px;
    }

    .site-footer__top {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .site-footer__brandbar {
        margin-bottom: 22px;
    }

    .site-footer__logo::after {
        width: 64px;
    }

    .home-bridge {
        margin-top: -18px;
        padding-bottom: 8px;
    }

    .home-bridge__strip {
        padding: 14px;
        border-radius: 24px;
    }

    .home-bridge__strip article {
        padding: 20px 18px 18px;
    }

    .site-header__topbar {
        display: none;
    }

    .header-inner {
        grid-template-columns: minmax(0, 1fr) auto;
        position: relative;
        z-index: 52;
        gap: 16px;
        min-width: 0;
    }

    .site-header__brand,
    .site-header__logo {
        min-width: 0;
        max-width: 100%;
    }

    .site-header__logo img,
    .custom-logo-link img {
        display: block;
        width: auto;
        height: auto;
        max-width: min(220px, calc(100vw - 124px));
        max-height: 52px;
    }

    .menu-toggle {
        display: inline-flex;
        justify-self: end;
        align-items: center;
        justify-content: center;
        width: 52px;
        height: 52px;
        padding: 0;
        border-radius: 18px;
        background: rgba(15, 45, 70, 0.06);
        position: relative;
        z-index: 62;
    }

    .main-nav {
        position: fixed;
        top: 96px;
        left: 16px;
        right: 16px;
        display: none;
        padding: 18px;
        border-radius: 30px;
        background:
            radial-gradient(circle at top right, rgba(245, 166, 35, 0.18), transparent 30%),
            radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.04), transparent 26%),
            linear-gradient(180deg, rgba(12, 34, 53, 0.97), rgba(8, 26, 41, 0.96));
        border: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.08),
            0 34px 80px rgba(7, 20, 32, 0.34);
        backdrop-filter: blur(18px);
        max-height: calc(100vh - 124px);
        overflow-y: auto;
        z-index: 61;
    }

    .main-nav.is-open {
        display: block;
        animation: mobile-menu-reveal 0.28s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .main-nav ul {
        flex-direction: column;
        gap: 10px;
    }

    .main-nav a {
        min-height: 58px;
        padding: 0 18px;
        border-radius: 18px;
        color: rgba(255, 255, 255, 0.94);
        font-size: 1.04rem;
        font-weight: 700;
        letter-spacing: 0.02em;
    }

    .main-nav a::after {
        display: none;
    }

    .main-nav a:hover,
    .main-nav .current-menu-item > a,
    .main-nav .current_page_item > a,
    .main-nav .current-menu-ancestor > a {
        color: #fff;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.04));
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
    }

    .header-actions {
        display: none;
    }

    .home-hero__content,
    .home-hero-card,
    .archive-hero__content,
    .single-tour__summary-card,
    .generic-entry,
    .generic-archive__header {
        padding: 24px;
    }

    .home-hero {
        padding: 28px 0 26px;
    }

    .home-hero--full,
    .home-hero--height-medium,
    .home-hero--height-large,
    .home-hero--height-screen {
        min-height: auto;
    }

    .home-hero--full-image .home-hero__backdrop {
        background-image:
            linear-gradient(180deg, rgba(9, 23, 35, calc(var(--hero-overlay-opacity) * 0.5)), rgba(9, 23, 35, var(--hero-overlay-opacity))),
            var(--hero-image-mobile, var(--hero-image-desktop));
    }

    .home-hero--full .home-hero__content {
        margin-bottom: 0;
    }

    .home-hero--full-image .home-hero__inner {
        padding-top: 28px;
        padding-bottom: 28px;
    }

    .home-hero--full-image .section-eyebrow {
        padding: 8px 14px;
    }

    .hero-stats,
    .category-grid,
    .tour-products-grid,
    ul.products,
    .trust-strip,
    .home-about,
    .about-values__grid,
    .generic-archive__grid,
    .single-tour__detail-grid {
        grid-template-columns: 1fr;
    }

    .hero-search,
    .shop-toolbar,
    .site-footer__bottom,
    .section-heading {
        flex-direction: column;
        align-items: stretch;
    }

    .tour-card__footer {
        flex-direction: row;
        align-items: center;
    }

    .tour-card__cta {
        min-width: 132px;
        padding-inline: 18px;
    }

    .home-hero__actions {
        flex-direction: column;
    }

    .home-hero__action,
    .home-hero__action--secondary {
        width: 100%;
    }

    .single-tour__thumbnails {
        padding: 0 44px;
    }

    .single-tour__thumb-arrow {
        width: 38px;
        height: 38px;
    }

    .single-tour__thumb-arrow span {
        font-size: 1.7rem;
    }

    .single-tour__thumb {
        flex-basis: 112px;
        min-width: 112px;
    }

    .single-tour__info-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        padding: 16px;
    }

    .home-about__content {
        padding: 24px;
    }

    .about-hero__content,
    .about-story__copy,
    .about-quote__content,
    .about-cta__card,
    .error-hero__content {
        padding: 24px;
    }

    .about-hero__stats {
        grid-template-columns: 1fr;
    }

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

    .home-about__media img,
    .home-about__media-placeholder {
        min-height: 280px;
    }

    .about-hero__media,
    .about-story__visual,
    .error-hero__media {
        min-height: 320px;
    }
}

@keyframes mobile-menu-reveal {
    from {
        opacity: 0;
        transform: translateY(-12px) scale(0.985);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}
