/* Equal-height tour / service / destination cards */
.swiper-slide:has(.umurage-equal-card) {
    height: auto !important;
    display: flex;
}

.umurage-card-grid > [class*="col-"] {
    display: flex;
}

.tour-box.umurage-equal-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.tour-box.umurage-equal-card .tour-box_img {
    flex-shrink: 0;
    overflow: hidden;
}

.tour-box.umurage-equal-card .tour-box_img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.tour-box.umurage-equal-card .tour-content {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.tour-box.umurage-equal-card .tour-rating {
    flex: 1;
}

.tour-box.umurage-equal-card .tour-rating p {
    margin-bottom: 0;
}

.tour-box.umurage-equal-card .tour-action {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.tour-box.umurage-equal-card .tour-action-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
}

.tour-box.umurage-equal-card .tour-meta {
    display: block;
    font-size: 0.9rem;
    color: #666;
}

/* Full-width immersive hero (home) */
:root {
    --umurage-header-height: 148px;
}

.umurage-hero-full {
    position: relative;
    width: 100%;
    max-width: none;
    min-height: calc(100dvh - var(--umurage-header-height));
    margin: 0;
    overflow: hidden;
}

.umurage-hero-full__slider,
.umurage-hero-full .th-hero-wrapper,
.umurage-hero-full .hero-slider-1,
.umurage-hero-full .swiper,
.umurage-hero-full .swiper-wrapper,
.umurage-hero-full .swiper-slide,
.umurage-hero-full .hero-inner {
    width: 100%;
    min-height: calc(100dvh - var(--umurage-header-height));
}

.umurage-hero-full .hero-inner {
    position: relative;
    display: flex;
    align-items: center;
}

.umurage-hero-full .th-hero-bg,
.umurage-hero-full__bg {
    background-size: cover !important;
    background-position: center center !important;
}

.umurage-hero-full .swiper-slide-active .umurage-hero-full__bg {
    animation: umurageKenBurns 22s ease-in-out infinite alternate;
    transform-origin: center center;
    will-change: transform;
}

@keyframes umurageKenBurns {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.1);
    }
}

.umurage-hero-full .hero-1 .th-hero-bg:before {
    background:
        linear-gradient(115deg, rgba(10, 71, 38, 0.72) 0%, rgba(10, 71, 38, 0.2) 42%, rgba(0, 0, 0, 0.15) 100%),
        linear-gradient(to top, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.15) 45%, transparent 100%);
    mix-blend-mode: normal;
}

.umurage-hero-full .hero-style1 {
    max-width: 760px;
    padding: clamp(4rem, 10vh, 7rem) 0 clamp(5rem, 12vh, 8rem);
}

.umurage-hero-full .hero-title {
    text-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
}

.umurage-hero-full__curve {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: clamp(48px, 8vw, 88px);
    background: #fff;
    clip-path: ellipse(82% 100% at 50% 100%);
    z-index: 4;
    pointer-events: none;
}

/* Inner-page banner (breadcrumb / caption image) */
.breadcumb-wrapper {
    width: 100%;
    max-width: none;
    height: auto;
    min-height: min(72vh, 680px);
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover !important;
    background-position: center center !important;
    background-attachment: scroll;
}

.breadcumb-wrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, rgba(10, 71, 38, 0.65) 0%, rgba(10, 71, 38, 0.15) 50%, rgba(0, 0, 0, 0.35) 100%),
        linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%);
    z-index: 1;
}

.breadcumb-wrapper::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: clamp(40px, 6vw, 72px);
    background: #fff;
    clip-path: ellipse(84% 100% at 50% 100%);
    z-index: 2;
    pointer-events: none;
}

.breadcumb-wrapper .container {
    position: relative;
    z-index: 3;
    padding: clamp(5rem, 12vh, 8rem) 1rem clamp(4rem, 10vh, 6rem);
}

.breadcumb-title {
    text-shadow: 0 6px 28px rgba(0, 0, 0, 0.45);
    font-size: clamp(2rem, 5vw, 3.75rem);
    line-height: 1.1;
}

.breadcumb-menu a,
.breadcumb-menu li,
.breadcumb-menu span {
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

@media (max-width: 991px) {
    :root {
        --umurage-header-height: 120px;
    }

    .umurage-hero-full .hero-style1 {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 767px) {
    :root {
        --umurage-header-height: 96px;
    }

    .breadcumb-wrapper {
        min-height: min(58vh, 520px);
    }
}

/* Site-wide search — page strip below hero / breadcrumb */
.umurage-page-search {
    position: relative;
    z-index: 5;
    margin-top: -1.5rem;
    background: #f4faf6;
    border-bottom: 1px solid rgba(10, 71, 38, 0.1);
    padding: 1.75rem 0 1.25rem;
}

.umurage-page-search__inner {
    position: relative;
    max-width: 640px;
    margin: 0 auto;
}

.umurage-page-search__label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #0a4726;
    margin-bottom: 0.5rem;
}

.umurage-page-search .site-search-input {
    width: 100%;
    border: 1px solid rgba(10, 71, 38, 0.2);
    border-radius: 999px;
    padding: 0.75rem 1rem 0.75rem 2.5rem;
    font-size: 1rem;
    background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%230a4726' viewBox='0 0 16 16'%3E%3Cpath d='M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398h-.001l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85zm-5.242 1.156a5 5 0 1 1 0-10 5 5 0 0 1 0 10z'/%3E%3C/svg%3E") no-repeat 1rem center;
    box-shadow: 0 4px 16px rgba(10, 71, 38, 0.06);
}

.umurage-page-search .site-search-input:focus {
    outline: none;
    border-color: #0a4726;
    box-shadow: 0 0 0 3px rgba(10, 71, 38, 0.12);
}

.site-search-dropdown {
    position: absolute;
    top: calc(100% + 0.35rem);
    left: 0;
    right: 0;
    z-index: 1200;
    background: #fff;
    border: 1px solid rgba(10, 71, 38, 0.15);
    border-radius: 0.75rem;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    max-height: 320px;
    overflow-y: auto;
}

.site-search-item {
    display: block;
    padding: 0.75rem 1rem;
    color: #222;
    text-decoration: none;
    border-bottom: 1px solid #f0f0f0;
}

.site-search-item:last-child {
    border-bottom: 0;
}

.site-search-item:hover {
    background: #f4faf6;
    color: #0a4726;
}

.site-search-type {
    display: block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #0a4726;
    margin-bottom: 0.15rem;
    font-weight: 600;
}

.site-search-empty {
    padding: 1rem;
    color: #666;
    text-align: center;
}

.footer-plan-trip .th-btn {
    margin-top: 0.5rem;
}

/* Partner accommodation browse cards (tour request modal) */
.partner-acc-browse-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid rgba(10, 71, 38, 0.12);
    border-radius: 0.75rem;
    overflow: hidden;
    background: #fff;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.partner-acc-browse-card:hover {
    box-shadow: 0 8px 24px rgba(10, 71, 38, 0.12);
    transform: translateY(-2px);
}

.partner-acc-browse-card__image {
    width: 100%;
    height: 140px;
    object-fit: cover;
    display: block;
    background: #f0f4f2;
}

.partner-acc-browse-card__image--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0a4726;
    font-size: 0.85rem;
}

.partner-acc-browse-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 0.85rem;
}

.partner-acc-browse-card__title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #0a4726;
    margin-bottom: 0.35rem;
    line-height: 1.3;
}

.partner-acc-browse-card__price {
    color: #0a4726;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.partner-acc-browse-card__actions {
    margin-top: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.partner-acc-browse-card__actions .btn {
    flex: 1 1 auto;
    font-size: 0.8rem;
}

.accommodation-map iframe {
    width: 100%;
    min-height: 320px;
    border: 0;
    display: block;
}

/* Partners / brand logos strip */
.umurage-partners.brand-area {
    padding-top: clamp(2.25rem, 4.5vw, 3.5rem);
    padding-bottom: clamp(2.25rem, 4.5vw, 3.5rem);
}

.umurage-partners .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
}

.umurage-partners .brand-box {
    width: 150px;
    height: 88px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.umurage-partners .brand-box a {
    position: relative;
    display: block;
    width: 130px;
    height: 72px;
}

.umurage-partners .umurage-partner-logo {
    max-height: 72px;
    max-width: 130px;
    width: auto;
    height: auto;
    object-fit: contain;
    top: 50%;
    left: 50%;
    right: auto;
    transform: translate(-50%, -50%);
}

.umurage-partners .brand-box img.original {
    transform: translate(-50%, -50%);
}

.umurage-partners .brand-box img.gray {
    transform: translate(-50%, calc(-50% - 100%));
}

.umurage-partners .brand-box:hover a img.gray {
    transform: translate(-50%, -50%);
}

.umurage-partners .brand-box:hover a img.original {
    transform: translate(-50%, calc(-50% + 100%));
}
