.khs-section {
    width: 100%;
    margin: 0 auto;
    padding: 56px 0;
}

.khs-section h2 {
    margin: 0 0 24px;
    color: #1f2933;
    font-size: 34px;
    line-height: 1.2;
    font-weight: 700;
}

.khs-content {
    color: #3d4652;
    font-size: 17px;
    line-height: 1.75;
}

.khs-content p:last-child,
.khs-location p:last-child {
    margin-bottom: 0;
}

.khs-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 12px 22px;
    border: 1px solid #a57a39;
    color: #fff;
    background: #a57a39;
    font-size: 14px;
    line-height: 1;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    transition: 0.2s ease;
}

.khs-btn:hover {
    color: #fff;
    background: #856025;
    border-color: #856025;
}

.khs-btn-outline {
    color: #1f2933;
    background: transparent;
    border-color: #c8c0b4;
}

.khs-btn-outline:hover {
    color: #fff;
    background: #1f2933;
    border-color: #1f2933;
}

.khs-hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 640px;
    padding: 40px 7vw;
    background: var(--pine-deep, #141210);
    color: #fff;
    overflow: hidden;
}

.khs-hero-slides {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.khs-hero-slide {
    position: absolute;
    inset: 0;
    background: center/cover no-repeat;
    opacity: 0;
    transform: scale(1);
    transition: opacity 1.4s ease-in-out;
    animation: khsHeroKenBurns 12s ease-in-out infinite alternate;
}

.khs-hero-slide.is-active {
    opacity: 1;
    z-index: 1;
}

@keyframes khsHeroKenBurns {
    from { transform: scale(1); }
    to { transform: scale(1.08); }
}

.khs-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        90deg,
        rgba(20, 18, 16, 0.94) 0%,
        rgba(20, 18, 16, 0.72) 32%,
        rgba(20, 18, 16, 0.28) 62%,
        rgba(20, 18, 16, 0.05) 85%
    );
}

.khs-hero-content {
    position: relative;
    z-index: 2;
    max-width: 620px;
}

.khs-hero-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    margin: 0 0 22px;
    font-size: 13px;
    letter-spacing: 0.02em;
    color: rgba(250, 246, 236, 0.7);
}

.khs-hero-breadcrumb a {
    color: rgba(250, 246, 236, 0.85);
    text-decoration: none;
}

.khs-hero-breadcrumb a:hover {
    color: var(--brass-light, #c7a874);
}

.khs-hero-breadcrumb .is-current {
    color: var(--brass-light, #c7a874);
}

.khs-hero h1 {
    margin: 0 0 14px;
    color: #fff;
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 500;
    font-size: clamp(38px, 5.2vw, 62px);
    line-height: 1.08;
}

.khs-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 18px;
    color: var(--brass-light, #c7a874);
    font-size: 18px;
}

.khs-hero-tagline {
    max-width: 520px;
    margin: 0 0 26px;
    color: rgba(250, 246, 236, 0.88);
    font-size: 18px;
    line-height: 1.6;
}

.khs-hero-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    list-style: none;
    margin: 0 0 30px;
    padding: 0;
}

.khs-hero-amenities li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(250, 246, 236, 0.85);
}

.khs-hero-amenities img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(78%) sepia(28%) saturate(482%) hue-rotate(357deg) brightness(96%) contrast(92%);
}

.khs-hero-cta {
    margin-top: 4px;
}

.khs-hero-arrow {
    position: absolute;
    top: 50%;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    width: 56px;
    height: 56px;
    margin: 0;
    padding: 0;
    appearance: none;
    -webkit-appearance: none;
    border: 1.5px solid rgba(255, 255, 255, 0.85) !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.08) !important;
    color: #fff !important;
    font: inherit;
    line-height: 1;
    cursor: pointer;
    outline: none;
    box-shadow: none !important;
    transform: translateY(-50%);
    backdrop-filter: blur(2px);
    transition: background 0.2s ease, transform 0.2s ease;
}

.khs-hero-arrow:hover,
.khs-hero-arrow:focus,
.khs-hero-arrow:focus-visible {
    background: rgba(255, 255, 255, 0.22) !important;
    border-color: rgba(255, 255, 255, 0.85) !important;
    outline: none;
    box-shadow: none !important;
    transform: translateY(-50%) scale(1.05);
}

.khs-hero-arrow svg {
    display: block;
    pointer-events: none;
}

.khs-hero-arrow-prev {
    left: 28px;
}

.khs-hero-arrow-next {
    right: 28px;
}

.khs-hero-dots {
    position: absolute;
    right: 32px;
    bottom: 28px;
    z-index: 3;
    display: flex;
    gap: 10px;
}

.khs-hero-dot {
    box-sizing: border-box;
    width: 9px;
    height: 9px;
    margin: 0;
    padding: 0;
    appearance: none;
    -webkit-appearance: none;
    border: 1px solid rgba(250, 246, 236, 0.7) !important;
    border-radius: 50% !important;
    background: transparent !important;
    outline: none;
    box-shadow: none !important;
    cursor: pointer;
    transition: background 0.2s ease, width 0.2s ease;
}

.khs-hero-dot.is-active {
    width: 22px;
    border-radius: 5px !important;
    background: var(--brass-light, #c7a874) !important;
    border-color: var(--brass-light, #c7a874) !important;
}

.khs-booking-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    background: linear-gradient(180deg, rgba(20, 18, 16, 0.55), rgba(20, 18, 16, 0.82));
    backdrop-filter: blur(6px);
}

.khs-booking-field {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1 1 0;
    min-height: 88px;
    padding: 16px 28px;
    border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.khs-booking-label {
    margin-bottom: 8px;
    color: rgba(250, 246, 236, 0.62);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.khs-booking-value {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
}

a.khs-booking-value:hover {
    color: var(--brass-light, #c7a874);
}

.khs-booking-dates,
.khs-booking-guests {
    flex-wrap: wrap;
}

.khs-date-input,
.khs-number-input {
    box-sizing: border-box;
    border: none !important;
    background: transparent !important;
    color: #fff !important;
    font: inherit;
    font-size: 16px;
    font-weight: 500;
    padding: 0;
    outline: none;
    box-shadow: none !important;
    appearance: none;
    -webkit-appearance: none;
    color-scheme: dark;
}

.khs-date-input {
    width: 108px;
}

.khs-number-input {
    width: 28px;
    text-align: center;
}

.khs-booking-dash {
    color: rgba(255, 255, 255, 0.5);
}

.khs-text-input {
    box-sizing: border-box;
    width: 100%;
    max-width: 170px;
    border: none !important;
    background: transparent !important;
    color: #fff !important;
    font: inherit;
    font-size: 16px;
    font-weight: 500;
    padding: 0;
    outline: none;
    box-shadow: none !important;
    appearance: none;
    -webkit-appearance: none;
}

.khs-text-input::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.khs-booking-status {
    display: none;
    flex-basis: 100%;
    padding: 10px 28px;
    background: rgba(154, 122, 68, 0.18);
    color: #fff;
    font-size: 14px;
}

.khs-booking-status.is-visible {
    display: block;
}

.khs-booking-status.is-error {
    background: rgba(178, 58, 58, 0.25);
}

.khs-booking-icon {
    flex: none;
    color: var(--brass-light, #c7a874);
}

.khs-booking-cta {
    display: flex;
    align-items: stretch;
}

.khs-booking-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    min-height: 88px;
    border: none;
    border-radius: 0;
    background: var(--brass-light, #c7a874);
    color: var(--pine-deep, #141210);
    font-size: 14px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.khs-booking-btn:hover {
    background: var(--brass, #9c7a44);
    color: #fff;
}

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

.khs-room-card,
.khs-attraction-card {
    background: #fff;
    border: 1px solid #e7e0d6;
}

.khs-room-card img,
.khs-attraction-card img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.khs-room-card-body,
.khs-attraction-card div {
    padding: 22px;
}

.khs-room-card h3,
.khs-attraction-card h3 {
    margin: 0 0 14px;
    color: #1f2933;
    font-size: 22px;
    line-height: 1.25;
}

.khs-room-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}

.khs-room-meta span,
.khs-attraction-card span {
    display: inline-flex;
    padding: 7px 10px;
    background: #f5f1eb;
    color: #51483f;
    font-size: 13px;
}

.khs-room-price {
    margin-bottom: 18px;
    color: #6a6259;
}

.khs-room-price strong {
    color: #1f2933;
    font-size: 20px;
}

.khs-room-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.khs-amenity-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.khs-amenity {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 76px;
    padding: 16px;
    background: #faf8f5;
    border: 1px solid #eee6dc;
    color: #1f2933;
    font-weight: 600;
}

.khs-amenity img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.khs-info-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.khs-info-grid div {
    min-height: 110px;
    padding: 20px;
    background: #faf8f5;
    border: 1px solid #eee6dc;
}

.khs-info-grid span {
    display: block;
    margin-bottom: 8px;
    color: #7a7168;
    font-size: 12px;
    text-transform: uppercase;
}

.khs-info-grid strong,
.khs-info-grid a {
    display: block;
    color: #1f2933;
    font-size: 16px;
    line-height: 1.5;
    text-decoration: none;
}

.khs-location iframe {
    display: block;
    width: 100%;
    min-height: 420px;
    border: 0;
}

.khs-attraction-card p {
    margin: 14px 0 0;
    color: #4d5661;
    line-height: 1.65;
}

.khs-faq-list {
    display: grid;
    gap: 12px;
}

.khs-faq details {
    border: 1px solid #e7e0d6;
    background: #fff;
}

.khs-faq summary {
    cursor: pointer;
    padding: 18px 20px;
    color: #1f2933;
    font-size: 17px;
    font-weight: 700;
}

.khs-faq details > div {
    padding: 0 20px 20px;
    color: #4d5661;
    line-height: 1.7;
}

.khs-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.khs-gallery-grid img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

@media (max-width: 1024px) {
    .khs-booking-bar {
        flex-wrap: wrap;
    }

    .khs-booking-field {
        flex: 1 1 50%;
    }

    .khs-booking-cta {
        flex: 1 1 100%;
    }

    .khs-room-grid,
    .khs-attraction-grid,
    .khs-info-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .khs-amenity-grid,
    .khs-gallery-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .khs-section {
        padding: 42px 0;
    }

    .khs-section h2 {
        font-size: 28px;
    }

    .khs-hero {
        min-height: 560px;
        padding: 40px 24px;
    }

    .khs-hero h1 {
        font-size: 34px;
    }

    .khs-hero-tagline {
        font-size: 16px;
    }

    .khs-hero-amenities {
        gap: 14px 18px;
    }

    .khs-hero-arrow {
        display: none;
    }

    .khs-hero-dots {
        right: 20px;
        bottom: 20px;
    }

    .khs-room-grid,
    .khs-attraction-grid,
    .khs-amenity-grid,
    .khs-info-grid,
    .khs-gallery-grid {
        grid-template-columns: 1fr;
    }

    .khs-booking-field {
        flex: 1 1 100%;
        min-height: 60px;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    }

    .khs-booking-btn {
        min-height: 56px;
    }
}
