/* =========================================================
   SHRI SHIV KRISHNA DHAM
   PREMIUM HOTEL WEBSITE
   HEADER + HERO
   ========================================================= */


/* =========================================================
   ROOT COLORS
   ========================================================= */

:root {
    --sskd-brown: #8B5E3C;
    --sskd-caramel: #A87845;
    --sskd-gold: #C9A46C;
    --sskd-dark: #2B211C;
    --sskd-dark-deep: #15110F;
    --sskd-ivory: #F8F3EA;
    --sskd-beige: #D8D0C6;
    --sskd-white: #FFFFFF;
    --sskd-border: #EAE5DF;
}


/* =========================================================
   RESET
   ========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;

    background: #FFFFFF;

    color: var(--sskd-dark);

    font-family: 'DM Sans', sans-serif;

    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

button,
input,
textarea,
select {
    font-family: inherit;
}


/* =========================================================
   HEADER
   ========================================================= */

.sskd-header {
    width: 100%;

    position: relative;

    z-index: 999;

    background: #FFFFFF;

    border-bottom: 1px solid var(--sskd-border);

    transition: all 0.3s ease;
}


.sskd-header-inner {
    width: min(1380px, 92%);

    min-height: 88px;

    margin: 0 auto;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;
}


/* =========================================================
   LOGO
   ========================================================= */

.sskd-logo {
    display: flex;

    flex-direction: column;

    gap: 4px;

    min-width: 210px;
}


.sskd-logo-main {
    color: var(--sskd-dark);

    font-family: 'Playfair Display', serif;

    font-size: 24px;

    line-height: 1.1;

    font-weight: 500;

    letter-spacing: 0.1px;

    transition: color 0.3s ease;
}


.sskd-logo-sub {
    color: var(--sskd-caramel);

    font-size: 8px;

    font-weight: 600;

    letter-spacing: 3px;

    line-height: 1.2;
}


/* =========================================================
   NAVIGATION
   ========================================================= */

.sskd-navigation {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 38px;
}


.sskd-navigation a {
    position: relative;

    padding: 8px 0;

    color: var(--sskd-dark);

    font-size: 13px;

    font-weight: 500;

    letter-spacing: 0.2px;

    transition:
        color 0.3s ease;
}


/* Navigation underline */

.sskd-navigation a::after {
    content: "";

    position: absolute;

    left: 50%;

    bottom: 1px;

    width: 0;

    height: 1px;

    background: var(--sskd-caramel);

    transform: translateX(-50%);

    transition: width 0.3s ease;
}


.sskd-navigation a:hover,
.sskd-navigation a.active {
    color: var(--sskd-caramel);
}


.sskd-navigation a:hover::after,
.sskd-navigation a.active::after {
    width: 100%;
}


/* =========================================================
   HEADER CTA
   ========================================================= */

.sskd-header-btn {
    min-width: 135px;

    height: 44px;

    padding: 0 24px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    background: var(--sskd-brown);

    border: 1px solid var(--sskd-brown);

    color: #FFFFFF;

    font-size: 11px;

    font-weight: 600;

    letter-spacing: 0.8px;

    text-transform: uppercase;

    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}


.sskd-header-btn:hover {
    background: var(--sskd-caramel);

    border-color: var(--sskd-caramel);

    transform: translateY(-1px);
}


/* =========================================================
   MOBILE MENU BUTTON
   ========================================================= */

.sskd-menu-toggle {
    display: none;

    width: 42px;

    height: 42px;

    padding: 0;

    background: #FFFFFF;

    border: 1px solid #DDD6CE;

    cursor: pointer;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 5px;
}


.sskd-menu-toggle span {
    display: block;

    width: 19px;

    height: 1px;

    background: var(--sskd-dark);
}


/* =========================================================
   HERO
   ========================================================= */

.sskd-hero {
    width: 100%;

    height: 650px;

    position: relative;

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #2B211C 0%,
            #1C1714 55%,
            #15110F 100%
        );
}


/* =========================================================
   HERO CONTENT
   ========================================================= */

.sskd-hero-content {
    width: 100%;

    max-width: 900px;

    margin: 0 auto;

    padding: 40px 20px;

    position: relative;

    z-index: 2;

    text-align: center;
}


/* =========================================================
   HERO SMALL LABEL
   ========================================================= */

.sskd-hero-tag {
    display: block;

    margin-bottom: 22px;

    color: var(--sskd-gold);

    font-size: 11px;

    font-weight: 600;

    letter-spacing: 3px;

    text-transform: uppercase;
}


/* =========================================================
   HERO HEADING
   ========================================================= */

.sskd-hero-content h1 {
    max-width: 850px;

    margin: 0 auto 22px;

    color: var(--sskd-ivory);

    font-family: 'Playfair Display', serif;

    font-size: 68px;

    line-height: 1.08;

    font-weight: 400;

    letter-spacing: -0.5px;
}


/* =========================================================
   HERO DESCRIPTION
   ========================================================= */

.sskd-hero-content p {
    width: 100%;

    max-width: 620px;

    margin: 0 auto;

    color: var(--sskd-beige);

    font-size: 15px;

    line-height: 1.8;

    font-weight: 400;
}


/* =========================================================
   HERO BUTTONS
   ========================================================= */

.sskd-hero-actions {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 14px;

    margin-top: 32px;
}


.sskd-hero-actions a {
    width: 155px;

    height: 48px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    font-size: 11px;

    font-weight: 600;

    letter-spacing: 0.8px;

    text-transform: uppercase;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}


/* =========================================================
   HERO PRIMARY BUTTON
   ========================================================= */

.sskd-hero-primary {
    background: var(--sskd-caramel);

    border: 1px solid var(--sskd-caramel);

    color: #FFFFFF;
}


.sskd-hero-primary:hover {
    background: var(--sskd-gold);

    border-color: var(--sskd-gold);

    color: var(--sskd-dark);

    transform: translateY(-1px);
}


/* =========================================================
   HERO SECONDARY BUTTON
   ========================================================= */

.sskd-hero-secondary {
    background: transparent;

    border: 1px solid rgba(201, 164, 108, 0.7);

    color: var(--sskd-ivory);
}


.sskd-hero-secondary:hover {
    background: var(--sskd-ivory);

    border-color: var(--sskd-ivory);

    color: var(--sskd-dark);

    transform: translateY(-1px);
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1050px) {

    .sskd-header-inner {
        gap: 25px;
    }

    .sskd-navigation {
        gap: 25px;
    }

    .sskd-navigation a {
        font-size: 12px;
    }

    .sskd-header-btn {
        min-width: 120px;

        padding: 0 18px;
    }

    .sskd-hero-content h1 {
        font-size: 58px;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 768px) {

    /* Header */

    .sskd-header-inner {
        min-height: 76px;
    }

    .sskd-logo {
        min-width: auto;
    }

    .sskd-logo-main {
        font-size: 20px;
    }

    .sskd-logo-sub {
        font-size: 7px;

        letter-spacing: 2px;
    }

    .sskd-navigation {
        display: none;

        position: absolute;

        top: 76px;

        left: 0;

        width: 100%;

        padding: 15px 7% 25px;

        background: #FFFFFF;

        border-bottom: 1px solid var(--sskd-border);

        flex-direction: column;

        align-items: flex-start;

        gap: 0;
    }

    .sskd-navigation.mobile-open {
        display: flex;
    }

    .sskd-navigation a {
        width: 100%;

        padding: 14px 0;

        border-bottom: 1px solid #EEE9E4;

        font-size: 13px;
    }

    .sskd-navigation a::after {
        display: none;
    }

    .sskd-header-btn {
        display: none;
    }

    .sskd-menu-toggle {
        display: flex;
    }


    /* Hero */

    .sskd-hero {
        height: 580px;
    }

    .sskd-hero-content {
        width: 100%;

        padding: 30px 20px;
    }

    .sskd-hero-tag {
        margin-bottom: 18px;

        font-size: 9px;

        letter-spacing: 2px;
    }

    .sskd-hero-content h1 {
        font-size: 42px;

        line-height: 1.12;

        letter-spacing: 0;
    }

    .sskd-hero-content p {
        font-size: 14px;

        line-height: 1.7;
    }

    .sskd-hero-actions {
        flex-direction: column;

        gap: 10px;

        margin-top: 28px;
    }

    .sskd-hero-actions a {
        width: 175px;
    }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .sskd-header-inner {
        width: 90%;
    }

    .sskd-logo-main {
        font-size: 18px;
    }

    .sskd-logo-sub {
        font-size: 7px;

        letter-spacing: 1.7px;
    }

    .sskd-hero {
        height: 560px;
    }

    .sskd-hero-content h1 {
        font-size: 36px;
    }

    .sskd-hero-content p {
        font-size: 13px;
    }
}
/* =========================================================
   ABOUT SECTION
   ========================================================= */

.sskd-about {
    width: 100%;

    padding: 110px 0;

    background: #F8F3EA;
}


.sskd-about-container {
    width: min(1200px, 90%);

    margin: 0 auto;

    display: grid;

    grid-template-columns: 0.95fr 1.05fr;

    align-items: center;

    gap: 80px;
}


/* =========================================================
   IMAGE
   ========================================================= */

.sskd-about-image {
    width: 100%;

    height: 560px;

    overflow: hidden;
}


.sskd-about-image img {
    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.6s ease;
}


.sskd-about-image:hover img {
    transform: scale(1.03);
}


/* =========================================================
   CONTENT
   ========================================================= */

.sskd-about-content {
    max-width: 560px;
}


.sskd-about-label {
    display: block;

    margin-bottom: 18px;

    color: #A87845;

    font-size: 10px;

    font-weight: 600;

    letter-spacing: 2.8px;

    text-transform: uppercase;
}


.sskd-about-content h2 {
    margin: 0 0 24px;

    color: #2B211C;

    font-family: 'Playfair Display', serif;

    font-size: 48px;

    line-height: 1.15;

    font-weight: 400;
}


.sskd-about-content > p {
    margin: 0 0 16px;

    color: #5A4A40;

    font-size: 14px;

    line-height: 1.85;
}


/* =========================================================
   FEATURES
   ========================================================= */

.sskd-about-features {
    margin-top: 30px;

    display: flex;

    flex-direction: column;

    gap: 18px;
}


.sskd-about-feature {
    display: flex;

    align-items: flex-start;

    gap: 18px;

    padding-bottom: 18px;

    border-bottom: 1px solid rgba(43, 33, 28, 0.12);
}


.sskd-feature-number {
    flex-shrink: 0;

    color: #C9A46C;

    font-family: 'Playfair Display', serif;

    font-size: 16px;

    line-height: 1.4;
}


.sskd-about-feature h3 {
    margin: 0 0 4px;

    color: #2B211C;

    font-size: 14px;

    font-weight: 600;
}


.sskd-about-feature p {
    margin: 0;

    color: #6B5D54;

    font-size: 12px;

    line-height: 1.6;
}


/* =========================================================
   BUTTON
   ========================================================= */

.sskd-about-btn {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    width: 150px;

    height: 46px;

    margin-top: 30px;

    background: #8B5E3C;

    border: 1px solid #8B5E3C;

    color: #FFFFFF;

    font-size: 10px;

    font-weight: 600;

    letter-spacing: 0.8px;

    text-transform: uppercase;

    transition: all 0.3s ease;
}


.sskd-about-btn:hover {
    background: #A87845;

    border-color: #A87845;

    transform: translateY(-1px);
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

    .sskd-about {
        padding: 80px 0;
    }

    .sskd-about-container {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .sskd-about-image {
        height: 500px;
    }

    .sskd-about-content {
        max-width: 700px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .sskd-about {
        padding: 65px 0;
    }

    .sskd-about-container {
        width: 88%;

        gap: 38px;
    }

    .sskd-about-image {
        height: 400px;
    }

    .sskd-about-content h2 {
        font-size: 36px;
    }

    .sskd-about-content > p {
        font-size: 13px;

        line-height: 1.75;
    }

    .sskd-about-feature {
        gap: 14px;
    }

}
/* =========================================================
   ROOMS SECTION
   ========================================================= */

.sskd-rooms {
    width: 100%;

    padding: 110px 0;

    background: #FFFFFF;
}


.sskd-rooms-container {
    width: min(1200px, 90%);

    margin: 0 auto;
}


/* =========================================================
   SECTION HEADING
   ========================================================= */

.sskd-section-heading {
    max-width: 700px;

    margin: 0 auto 55px;

    text-align: center;
}


.sskd-section-label {
    display: block;

    margin-bottom: 16px;

    color: #A87845;

    font-size: 10px;

    font-weight: 600;

    letter-spacing: 2.8px;

    text-transform: uppercase;
}


.sskd-section-heading h2 {
    margin: 0 0 18px;

    color: #2B211C;

    font-family: 'Playfair Display', serif;

    font-size: 46px;

    line-height: 1.15;

    font-weight: 400;
}


.sskd-section-heading p {
    max-width: 580px;

    margin: 0 auto;

    color: #6B5D54;

    font-size: 14px;

    line-height: 1.8;
}


/* =========================================================
   ROOM GRID
   ========================================================= */

.sskd-rooms-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;
}


/* =========================================================
   ROOM CARD
   ========================================================= */

.sskd-room-card {
    background: #F8F3EA;

    overflow: hidden;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}


.sskd-room-card:hover {
    transform: translateY(-6px);

    box-shadow: 0 18px 45px rgba(43, 33, 28, 0.12);
}


/* =========================================================
   ROOM IMAGE
   ========================================================= */

.sskd-room-image {
    width: 100%;

    height: 310px;

    overflow: hidden;
}


.sskd-room-image img {
    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.6s ease;
}


.sskd-room-card:hover .sskd-room-image img {
    transform: scale(1.04);
}


/* =========================================================
   ROOM CONTENT
   ========================================================= */

.sskd-room-content {
    padding: 28px 27px 30px;
}


.sskd-room-number {
    display: block;

    margin-bottom: 10px;

    color: #A87845;

    font-size: 9px;

    font-weight: 600;

    letter-spacing: 2px;
}


.sskd-room-content h3 {
    margin: 0 0 12px;

    color: #2B211C;

    font-family: 'Playfair Display', serif;

    font-size: 27px;

    line-height: 1.2;

    font-weight: 500;
}


.sskd-room-content p {
    min-height: 66px;

    margin: 0 0 20px;

    color: #6B5D54;

    font-size: 13px;

    line-height: 1.7;
}


/* =========================================================
   ROOM LINK
   ========================================================= */

.sskd-room-content a {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    color: #8B5E3C;

    font-size: 10px;

    font-weight: 600;

    letter-spacing: 0.8px;

    text-transform: uppercase;
}


.sskd-room-content a span {
    font-size: 16px;

    line-height: 1;

    transition: transform 0.3s ease;
}


.sskd-room-content a:hover span {
    transform: translateX(4px);
}


/* =========================================================
   BOTTOM BUTTON
   ========================================================= */

.sskd-rooms-bottom {
    display: flex;

    justify-content: center;

    margin-top: 48px;
}


.sskd-rooms-btn {
    min-width: 170px;

    height: 47px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 0 25px;

    background: #8B5E3C;

    border: 1px solid #8B5E3C;

    color: #FFFFFF;

    font-size: 10px;

    font-weight: 600;

    letter-spacing: 0.8px;

    text-transform: uppercase;

    transition: all 0.3s ease;
}


.sskd-rooms-btn:hover {
    background: #A87845;

    border-color: #A87845;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

    .sskd-rooms {
        padding: 80px 0;
    }

    .sskd-rooms-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sskd-section-heading h2 {
        font-size: 40px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .sskd-rooms {
        padding: 65px 0;
    }

    .sskd-rooms-container {
        width: 88%;
    }

    .sskd-section-heading {
        margin-bottom: 38px;
    }

    .sskd-section-heading h2 {
        font-size: 35px;
    }

    .sskd-section-heading p {
        font-size: 13px;
    }

    .sskd-rooms-grid {
        grid-template-columns: 1fr;

        gap: 22px;
    }

    .sskd-room-image {
        height: 280px;
    }

}
/* =========================================================
   GALLERY SECTION
   ========================================================= */

.sskd-gallery {
    width: 100%;

    padding: 110px 0;

    background: #2B211C;
}


.sskd-gallery-container {
    width: min(1200px, 90%);

    margin: 0 auto;
}


/* =========================================================
   GALLERY HEADING
   ========================================================= */

.sskd-gallery-heading {
    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 30px;

    margin-bottom: 45px;
}


.sskd-gallery-label {
    display: block;

    margin-bottom: 14px;

    color: #C9A46C;

    font-size: 10px;

    font-weight: 600;

    letter-spacing: 2.8px;

    text-transform: uppercase;
}


.sskd-gallery-heading h2 {
    margin: 0;

    color: #F8F3EA;

    font-family: 'Playfair Display', serif;

    font-size: 46px;

    line-height: 1.15;

    font-weight: 400;
}


/* =========================================================
   GALLERY LINK
   ========================================================= */

.sskd-gallery-link {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding-bottom: 6px;

    border-bottom: 1px solid rgba(201, 164, 108, 0.6);

    color: #D8D0C6;

    font-size: 10px;

    font-weight: 600;

    letter-spacing: 0.8px;

    text-transform: uppercase;

    white-space: nowrap;

    transition: color 0.3s ease;
}


.sskd-gallery-link span {
    font-size: 16px;

    transition: transform 0.3s ease;
}


.sskd-gallery-link:hover {
    color: #C9A46C;
}


.sskd-gallery-link:hover span {
    transform: translateX(4px);
}


/* =========================================================
   GALLERY GRID
   ========================================================= */

.sskd-gallery-grid {
    display: grid;

    grid-template-columns: 1.35fr 0.8fr 0.8fr;

    grid-template-rows: 250px 250px;

    gap: 14px;
}


/* =========================================================
   GALLERY ITEM
   ========================================================= */

.sskd-gallery-item {
    display: block;

    position: relative;

    overflow: hidden;

    background: #211812;
}


.sskd-gallery-item img {
    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 0.6s ease,
        filter 0.6s ease;
}


.sskd-gallery-item::after {
    content: "";

    position: absolute;

    inset: 0;

    background: rgba(33, 24, 18, 0);

    transition: background 0.4s ease;
}


.sskd-gallery-item:hover img {
    transform: scale(1.05);

    filter: brightness(0.85);
}


.sskd-gallery-item:hover::after {
    background: rgba(33, 24, 18, 0.12);
}


/* =========================================================
   LARGE IMAGE
   ========================================================= */

.sskd-gallery-large {
    grid-row: span 2;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

    .sskd-gallery {
        padding: 80px 0;
    }

    .sskd-gallery-heading h2 {
        font-size: 40px;
    }

    .sskd-gallery-grid {
        grid-template-columns: 1fr 1fr;

        grid-template-rows: 260px 200px 200px;
    }

    .sskd-gallery-large {
        grid-row: span 2;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .sskd-gallery {
        padding: 65px 0;
    }

    .sskd-gallery-container {
        width: 88%;
    }

    .sskd-gallery-heading {
        display: block;

        margin-bottom: 30px;
    }

    .sskd-gallery-heading h2 {
        font-size: 35px;
    }

    .sskd-gallery-link {
        margin-top: 20px;
    }

    .sskd-gallery-grid {
        display: grid;

        grid-template-columns: 1fr;

        grid-template-rows: repeat(5, 230px);

        gap: 10px;
    }

    .sskd-gallery-large {
        grid-row: span 1;
    }

}
/* =========================================================
   LOCATION SECTION
   ========================================================= */

.sskd-location {
    width: 100%;

    padding: 110px 0;

    background: #F8F3EA;
}


.sskd-location-container {
    width: min(1200px, 90%);

    margin: 0 auto;

    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: stretch;

    gap: 70px;
}


/* =========================================================
   CONTENT
   ========================================================= */

.sskd-location-content {
    display: flex;

    flex-direction: column;

    justify-content: center;
}


.sskd-location-label {
    display: block;

    margin-bottom: 16px;

    color: #A87845;

    font-size: 10px;

    font-weight: 600;

    letter-spacing: 2.8px;

    text-transform: uppercase;
}


.sskd-location-content h2 {
    max-width: 540px;

    margin: 0 0 22px;

    color: #2B211C;

    font-family: 'Playfair Display', serif;

    font-size: 46px;

    line-height: 1.15;

    font-weight: 400;
}


.sskd-location-content > p {
    max-width: 540px;

    margin: 0;

    color: #6B5D54;

    font-size: 14px;

    line-height: 1.85;
}


/* =========================================================
   LOCATION POINTS
   ========================================================= */

.sskd-location-points {
    margin-top: 30px;

    display: flex;

    flex-direction: column;

    gap: 18px;
}


.sskd-location-point {
    display: flex;

    align-items: flex-start;

    gap: 16px;

    padding-bottom: 18px;

    border-bottom: 1px solid rgba(43, 33, 28, 0.12);
}


.sskd-location-icon {
    flex-shrink: 0;

    color: #C9A46C;

    font-family: 'Playfair Display', serif;

    font-size: 15px;
}


.sskd-location-point h3 {
    margin: 0 0 4px;

    color: #2B211C;

    font-size: 14px;

    font-weight: 600;
}


.sskd-location-point p {
    margin: 0;

    color: #6B5D54;

    font-size: 12px;

    line-height: 1.6;
}


/* =========================================================
   BUTTON
   ========================================================= */

.sskd-location-btn {
    width: 155px;

    height: 47px;

    margin-top: 30px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    background: #8B5E3C;

    border: 1px solid #8B5E3C;

    color: #FFFFFF;

    font-size: 10px;

    font-weight: 600;

    letter-spacing: 0.8px;

    text-transform: uppercase;

    transition: all 0.3s ease;
}


.sskd-location-btn:hover {
    background: #A87845;

    border-color: #A87845;
}


/* =========================================================
   MAP AREA
   ========================================================= */

.sskd-location-map {
    min-height: 540px;

    background:
        linear-gradient(
            135deg,
            #2B211C,
            #15110F
        );

    position: relative;

    overflow: hidden;
}


/* subtle map pattern */

.sskd-location-map::before {
    content: "";

    position: absolute;

    inset: 0;

    background-image:
        linear-gradient(
            45deg,
            rgba(201, 164, 108, 0.05) 25%,
            transparent 25%,
            transparent 75%,
            rgba(201, 164, 108, 0.05) 75%
        );

    background-size: 45px 45px;

    opacity: 0.35;
}


.sskd-map-placeholder {
    position: absolute;

    inset: 0;

    z-index: 2;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

    padding: 30px;
}


.sskd-map-icon {
    width: 58px;

    height: 58px;

    margin-bottom: 20px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 1px solid #C9A46C;

    border-radius: 50%;

    color: #C9A46C;

    font-size: 20px;
}


.sskd-map-placeholder h3 {
    margin: 0 0 8px;

    color: #F8F3EA;

    font-family: 'Playfair Display', serif;

    font-size: 28px;

    font-weight: 400;
}


.sskd-map-placeholder p {
    margin: 0 0 22px;

    color: #D8D0C6;

    font-size: 13px;
}


.sskd-map-placeholder a {
    color: #C9A46C;

    font-size: 10px;

    font-weight: 600;

    letter-spacing: 0.8px;

    text-transform: uppercase;

    transition: color 0.3s ease;
}


.sskd-map-placeholder a:hover {
    color: #F8F3EA;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

    .sskd-location {
        padding: 80px 0;
    }

    .sskd-location-container {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .sskd-location-map {
        min-height: 430px;
    }

    .sskd-location-content h2 {
        font-size: 40px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .sskd-location {
        padding: 65px 0;
    }

    .sskd-location-container {
        width: 88%;

        gap: 40px;
    }

    .sskd-location-content h2 {
        font-size: 35px;
    }

    .sskd-location-content > p {
        font-size: 13px;
    }

    .sskd-location-map {
        min-height: 360px;
    }

    .sskd-map-placeholder h3 {
        font-size: 24px;
    }

}
/* =========================================================
   BOOKING / CONTACT CTA
   ========================================================= */

.sskd-booking {
    width: 100%;

    padding: 95px 0;

    background:
        linear-gradient(
            135deg,
            #2B211C 0%,
            #1C1714 55%,
            #15110F 100%
        );
}


.sskd-booking-container {
    width: min(1050px, 90%);

    margin: 0 auto;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 50px;
}


/* =========================================================
   CONTENT
   ========================================================= */

.sskd-booking-content {
    max-width: 680px;
}


.sskd-booking-label {
    display: block;

    margin-bottom: 16px;

    color: #C9A46C;

    font-size: 10px;

    font-weight: 600;

    letter-spacing: 2.8px;

    text-transform: uppercase;
}


.sskd-booking-content h2 {
    margin: 0 0 18px;

    color: #F8F3EA;

    font-family: 'Playfair Display', serif;

    font-size: 46px;

    line-height: 1.15;

    font-weight: 400;
}


.sskd-booking-content p {
    max-width: 620px;

    margin: 0;

    color: #D8D0C6;

    font-size: 14px;

    line-height: 1.8;
}


/* =========================================================
   ACTIONS
   ========================================================= */

.sskd-booking-actions {
    flex-shrink: 0;

    display: flex;

    flex-direction: column;

    gap: 12px;
}


.sskd-booking-actions a {
    width: 155px;

    height: 48px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    font-size: 10px;

    font-weight: 600;

    letter-spacing: 0.8px;

    text-transform: uppercase;

    transition: all 0.3s ease;
}


/* Primary */

.sskd-booking-primary {
    background: #A87845;

    border: 1px solid #A87845;

    color: #FFFFFF;
}


.sskd-booking-primary:hover {
    background: #C9A46C;

    border-color: #C9A46C;

    color: #2B211C;
}


/* Secondary */

.sskd-booking-secondary {
    background: transparent;

    border: 1px solid rgba(201, 164, 108, 0.65);

    color: #F8F3EA;
}


.sskd-booking-secondary:hover {
    background: #F8F3EA;

    border-color: #F8F3EA;

    color: #2B211C;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

    .sskd-booking {
        padding: 80px 0;
    }

    .sskd-booking-container {
        flex-direction: column;

        align-items: flex-start;
    }

    .sskd-booking-content h2 {
        font-size: 40px;
    }

    .sskd-booking-actions {
        flex-direction: row;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .sskd-booking {
        padding: 65px 0;
    }

    .sskd-booking-container {
        width: 88%;

        gap: 30px;
    }

    .sskd-booking-content h2 {
        font-size: 35px;
    }

    .sskd-booking-content p {
        font-size: 13px;
    }

    .sskd-booking-actions {
        width: 100%;

        flex-direction: column;
    }

    .sskd-booking-actions a {
        width: 100%;
    }

}
/* =========================================================
   FOOTER
   ========================================================= */

.sskd-footer {
    width: 100%;

    background: #15110F;

    color: #FFFFFF;
}


/* =========================================================
   FOOTER MAIN
   ========================================================= */

.sskd-footer-container {
    width: min(1200px, 90%);

    margin: 0 auto;

    padding: 75px 0 65px;

    display: grid;

    grid-template-columns: 1.5fr 0.7fr 1fr;

    gap: 80px;
}


/* =========================================================
   BRAND
   ========================================================= */

.sskd-footer-logo {
    display: block;

    margin-bottom: 8px;

    color: #F8F3EA;

    font-family: 'Playfair Display', serif;

    font-size: 27px;

    font-weight: 400;

    line-height: 1.2;
}


.sskd-footer-sub {
    display: block;

    margin-bottom: 22px;

    color: #C9A46C;

    font-size: 8px;

    font-weight: 600;

    letter-spacing: 2.5px;
}


.sskd-footer-brand p {
    max-width: 380px;

    margin: 0;

    color: #AFA49B;

    font-size: 13px;

    line-height: 1.8;
}


/* =========================================================
   FOOTER HEADINGS
   ========================================================= */

.sskd-footer-links h3,
.sskd-footer-contact h3 {
    margin: 0 0 23px;

    color: #F8F3EA;

    font-size: 13px;

    font-weight: 600;

    letter-spacing: 0.5px;
}


/* =========================================================
   QUICK LINKS
   ========================================================= */

.sskd-footer-links {
    display: flex;

    flex-direction: column;

    align-items: flex-start;
}


.sskd-footer-links a {
    margin-bottom: 12px;

    color: #AFA49B;

    font-size: 12px;

    transition: color 0.3s ease;
}


.sskd-footer-links a:hover {
    color: #C9A46C;
}


/* =========================================================
   CONTACT
   ========================================================= */

.sskd-footer-contact p {
    margin: 0 0 17px;

    color: #AFA49B;

    font-size: 12px;

    line-height: 1.7;
}


.sskd-footer-contact strong {
    color: #D8D0C6;

    font-weight: 500;
}


.sskd-footer-contact a {
    color: #AFA49B;

    transition: color 0.3s ease;
}


.sskd-footer-contact a:hover {
    color: #C9A46C;
}


/* =========================================================
   FOOTER BOTTOM
   ========================================================= */

.sskd-footer-bottom {
    width: 100%;

    border-top: 1px solid rgba(255, 255, 255, 0.08);
}


.sskd-footer-bottom-inner {
    width: min(1200px, 90%);

    min-height: 65px;

    margin: 0 auto;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;
}


.sskd-footer-bottom p {
    margin: 0;

    color: #766D66;

    font-size: 10px;

    line-height: 1.5;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

    .sskd-footer-container {
        grid-template-columns: 1fr 1fr;

        gap: 50px;
    }

    .sskd-footer-brand {
        grid-column: span 2;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .sskd-footer-container {
        width: 88%;

        padding: 60px 0 45px;

        grid-template-columns: 1fr;

        gap: 40px;
    }

    .sskd-footer-brand {
        grid-column: auto;
    }

    .sskd-footer-logo {
        font-size: 24px;
    }

    .sskd-footer-bottom-inner {
        width: 88%;

        min-height: 80px;

        flex-direction: column;

        align-items: flex-start;

        justify-content: center;

        gap: 6px;
    }

}
/* =========================================================
   GUEST REVIEWS
   ========================================================= */

.sskd-reviews {
    width: 100%;

    padding: 105px 0;

    background: #FFFFFF;
}


.sskd-reviews-container {
    width: min(1200px, 90%);

    margin: 0 auto;
}


/* =========================================================
   HEADING
   ========================================================= */

.sskd-reviews-heading {
    max-width: 650px;

    margin: 0 auto 50px;

    text-align: center;
}


.sskd-reviews-label {
    display: block;

    margin-bottom: 15px;

    color: #A87845;

    font-size: 10px;

    font-weight: 600;

    letter-spacing: 2.8px;

    text-transform: uppercase;
}


.sskd-reviews-heading h2 {
    margin: 0 0 16px;

    color: #2B211C;

    font-family: 'Playfair Display', serif;

    font-size: 46px;

    line-height: 1.15;

    font-weight: 400;
}


.sskd-reviews-heading p {
    margin: 0;

    color: #6B5D54;

    font-size: 14px;

    line-height: 1.7;
}


/* =========================================================
   REVIEW GRID
   ========================================================= */

.sskd-reviews-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 24px;
}


/* =========================================================
   REVIEW CARD
   ========================================================= */

.sskd-review-card {
    min-height: 300px;

    padding: 32px 30px;

    background: #F8F3EA;

    border: 1px solid #EEE7DE;

    display: flex;

    flex-direction: column;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.sskd-review-card:hover {
    transform: translateY(-5px);

    box-shadow: 0 15px 35px rgba(43, 33, 28, 0.09);
}


/* =========================================================
   STARS
   ========================================================= */

.sskd-review-stars {
    margin-bottom: 20px;

    color: #C9A46C;

    font-size: 13px;

    letter-spacing: 3px;
}


/* =========================================================
   REVIEW TEXT
   ========================================================= */

.sskd-review-text {
    flex: 1;

    margin: 0;

    color: #51443C;

    font-family: 'Playfair Display', serif;

    font-size: 16px;

    line-height: 1.75;

    font-style: italic;
}


/* =========================================================
   AUTHOR
   ========================================================= */

.sskd-review-author {
    display: flex;

    align-items: center;

    gap: 12px;

    margin-top: 28px;

    padding-top: 20px;

    border-top: 1px solid rgba(43, 33, 28, 0.12);
}


.sskd-review-initial {
    width: 38px;

    height: 38px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #8B5E3C;

    color: #FFFFFF;

    font-family: 'Playfair Display', serif;

    font-size: 16px;
}


.sskd-review-author h3 {
    margin: 0 0 2px;

    color: #2B211C;

    font-size: 12px;

    font-weight: 600;
}


.sskd-review-author span {
    color: #8A7B70;

    font-size: 10px;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

    .sskd-reviews {
        padding: 80px 0;
    }

    .sskd-reviews-heading h2 {
        font-size: 40px;
    }

    .sskd-reviews-grid {
        grid-template-columns: 1fr 1fr;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .sskd-reviews {
        padding: 65px 0;
    }

    .sskd-reviews-container {
        width: 88%;
    }

    .sskd-reviews-heading {
        margin-bottom: 35px;
    }

    .sskd-reviews-heading h2 {
        font-size: 35px;
    }

    .sskd-reviews-heading p {
        font-size: 13px;
    }

    .sskd-reviews-grid {
        grid-template-columns: 1fr;

        gap: 18px;
    }

    .sskd-review-card {
        min-height: auto;

        padding: 28px 25px;
    }

}