/* Silver Rock Boutique Resort by MOKAWA — welcoming introduction and resort summary V1.13 */

/* INTRODUCTION: placed immediately after the hero */
.welcome-section {
    position: relative;
    overflow: hidden;
    padding: clamp(5rem, 8vw, 8.5rem) 5%;
    background:
        radial-gradient(circle at 8% 12%, rgba(201, 169, 97, .12), transparent 25rem),
        linear-gradient(180deg, #fffdf9 0%, #fbf6ef 100%);
}

.welcome-section::before {
    content: "";
    position: absolute;
    width: 32rem;
    height: 32rem;
    right: -18rem;
    bottom: -20rem;
    border: 1px solid rgba(139, 111, 71, .13);
    border-radius: 50%;
    box-shadow: 0 0 0 5rem rgba(201, 169, 97, .035), 0 0 0 10rem rgba(201, 169, 97, .025);
    pointer-events: none;
}

.welcome-shell {
    position: relative;
    z-index: 1;
    width: min(1280px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(380px, .98fr);
    gap: clamp(3.5rem, 7vw, 7rem);
    align-items: center;
}

.welcome-copy {
    max-width: 680px;
}

.welcome-eyebrow,
.summary-eyebrow {
    margin: 0 0 1rem;
    color: #a0783f;
    font-size: .76rem;
    font-weight: 600;
    letter-spacing: .27em;
    line-height: 1.4;
    text-transform: uppercase;
}

.welcome-title {
    margin: 0;
    color: #271a14;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 5.2vw, 5.6rem);
    font-weight: 400;
    letter-spacing: -.025em;
    line-height: .94;
}

.welcome-title span {
    display: block;
    margin-top: .25rem;
    color: #9a713b;
    font-size: .55em;
    font-weight: 500;
    letter-spacing: .055em;
}

.welcome-rule {
    width: 7.5rem;
    height: 1px;
    margin: 2rem 0 2.1rem;
    background: linear-gradient(90deg, #a98248 0 45%, rgba(169, 130, 72, .16) 45% 100%);
}

.welcome-lead {
    max-width: 640px;
    margin: 0 0 1.25rem;
    color: #3d3029;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.45rem, 2vw, 1.9rem);
    font-weight: 500;
    line-height: 1.45;
}

.welcome-text {
    max-width: 650px;
    margin: 0 0 1rem;
    color: #6b5d54;
    font-size: .98rem;
    line-height: 1.9;
}

.welcome-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .9rem;
    margin-top: 2.1rem;
}

.welcome-actions a {
    min-height: 3.2rem;
    padding: .9rem 1.45rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .75rem;
    font-size: .76rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-decoration: none;
    text-transform: uppercase;
    transition: transform .25s ease, background .25s ease, border-color .25s ease, color .25s ease, box-shadow .25s ease;
}

.welcome-primary {
    background: #2c1f18;
    color: #fff;
    box-shadow: 0 13px 28px rgba(44, 31, 24, .14);
}

.welcome-primary:hover {
    transform: translateY(-2px);
    background: #a0783f;
    color: #fff;
}

.welcome-secondary {
    border: 1px solid rgba(44, 31, 24, .24);
    background: rgba(255, 255, 255, .48);
    color: #2c1f18;
}

.welcome-secondary:hover {
    transform: translateY(-2px);
    border-color: #a0783f;
    color: #8f6532;
}

.welcome-managed {
    margin-top: 2.25rem;
    padding-top: 1.65rem;
    border-top: 1px solid rgba(63, 47, 37, .12);
    display: flex;
    align-items: center;
    gap: .9rem;
}

.welcome-managed-mark {
    width: 2.7rem;
    height: 2.7rem;
    border: 1px solid rgba(160, 120, 63, .25);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #a0783f;
    background: rgba(255, 255, 255, .58);
}

.welcome-managed span:last-child {
    display: flex;
    flex-direction: column;
    gap: .18rem;
}

.welcome-managed small {
    color: #8a7b71;
    font-size: .7rem;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.welcome-managed strong {
    color: #3b2d25;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.08rem;
    font-weight: 600;
}

.welcome-visual {
    position: relative;
    min-height: 630px;
    padding: 0 0 2.5rem 2rem;
}

.welcome-image-frame {
    position: absolute;
    inset: 0 0 2.5rem 2rem;
    overflow: hidden;
    border-radius: 16rem 16rem 1.8rem 1.8rem;
    background: #e9e0d4;
    box-shadow: 0 32px 75px rgba(73, 51, 34, .18);
}

.welcome-image-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(31, 22, 16, .28) 100%);
    pointer-events: none;
}

.welcome-image-frame img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: 54% center;
    transition: transform 1.1s cubic-bezier(.2,.7,.2,1);
}

.welcome-visual:hover .welcome-image-frame img {
    transform: scale(1.025);
}

.welcome-location-card,
.welcome-quote-card {
    position: absolute;
    z-index: 2;
    background: rgba(255, 253, 249, .94);
    border: 1px solid rgba(89, 65, 43, .12);
    box-shadow: 0 22px 55px rgba(64, 44, 28, .17);
    backdrop-filter: blur(12px);
}

.welcome-location-card {
    top: 13%;
    left: 0;
    min-width: 13.5rem;
    padding: 1rem 1.15rem;
    border-radius: .9rem;
    display: flex;
    align-items: center;
    gap: .85rem;
}

.welcome-location-card i {
    width: 2.35rem;
    height: 2.35rem;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #a98248;
    color: #fff;
}

.welcome-location-card span {
    display: flex;
    flex-direction: column;
    gap: .12rem;
}

.welcome-location-card small {
    color: #8a7c72;
    font-size: .67rem;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.welcome-location-card strong {
    color: #30231c;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.13rem;
}

.welcome-quote-card {
    right: -1.6rem;
    bottom: 0;
    width: min(18rem, 72%);
    padding: 1.45rem 1.55rem 1.4rem 2rem;
    border-radius: 1.15rem;
}

.welcome-quote-mark {
    position: absolute;
    top: -.65rem;
    left: .8rem;
    color: #c9a961;
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    line-height: 1;
}

.welcome-quote-card p {
    margin: 0;
    color: #46362d;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.3;
}

/* SUMMARY: a lighter, more editorial replacement for the previous statistics boxes */
.stats-section.resort-summary {
    position: relative;
    padding: clamp(4.6rem, 7vw, 7rem) 5%;
    background: #eee4d7;
}

.stats-section.resort-summary::before {
    display: none;
}

.summary-shell {
    width: min(1320px, 100%);
    margin: 0 auto;
}

.summary-header {
    margin-bottom: 2.7rem;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, .65fr);
    gap: 3rem;
    align-items: end;
}

.summary-header h2 {
    max-width: 780px;
    margin: 0;
    color: #2a1d16;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.65rem, 4vw, 4.3rem);
    font-weight: 400;
    letter-spacing: -.02em;
    line-height: 1;
}

.summary-header > p {
    margin: 0 0 .25rem;
    padding-left: 1.5rem;
    border-left: 1px solid rgba(70, 50, 36, .22);
    color: #6a5d54;
    font-size: .92rem;
    line-height: 1.75;
}

.stats-grid.summary-grid {
    width: 100%;
    max-width: none;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.stat-card.summary-card {
    min-height: 360px;
    padding: 1.55rem 1.5rem 1.45rem;
    border: 1px solid rgba(89, 65, 43, .13);
    border-radius: 1rem;
    background: rgba(255, 253, 249, .82);
    box-shadow: none;
    text-align: left;
    display: flex;
    flex-direction: column;
    transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease, background .3s ease;
}

.stat-card.summary-card:hover {
    transform: translateY(-6px);
    border-color: rgba(160, 120, 63, .42);
    background: #fffdf9;
    box-shadow: 0 24px 50px rgba(65, 45, 29, .12);
}

.summary-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.stat-icon.summary-icon {
    width: 3.25rem;
    height: 3.25rem;
    margin: 0;
    border: 1px solid rgba(160, 120, 63, .26);
    border-radius: 50%;
    background: transparent;
    color: #9a713b;
    font-size: 1.05rem;
}

.summary-index {
    color: rgba(85, 63, 47, .35);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    letter-spacing: .08em;
}

.summary-value {
    margin: 2.3rem 0 .15rem;
    display: flex;
    align-items: baseline;
    gap: .55rem;
}

.summary-card .stat-num {
    color: #2b1e17;
    font-size: clamp(3.3rem, 4.5vw, 4.8rem);
    font-weight: 500;
    letter-spacing: -.04em;
}

.summary-unit {
    color: #a0783f;
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.summary-card .stat-lbl {
    margin: 0 0 .75rem;
    color: #30231c;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.45rem;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1.15;
    text-transform: none;
}

.summary-card > p {
    margin: 0 0 1.35rem;
    color: #75685e;
    font-size: .84rem;
    line-height: 1.7;
}

.summary-card > a {
    width: max-content;
    margin-top: auto;
    color: #8f6532;
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-decoration: none;
    text-transform: uppercase;
}

.summary-card > a i {
    margin-left: .35rem;
    transition: transform .2s ease;
}

.summary-card > a:hover i {
    transform: translateX(4px);
}

.award-bar.summary-award {
    max-width: none;
    margin: 1rem 0 0;
    padding: 1.25rem 1.55rem;
    border: 1px solid rgba(117, 83, 44, .18);
    border-radius: 1rem;
    background: linear-gradient(105deg, #6f4f2f 0%, #947044 48%, #b08a53 100%);
    box-shadow: 0 18px 38px rgba(83, 57, 34, .18);
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1rem;
    align-items: center;
    color: #fff;
    text-align: left;
}

.summary-award-icon {
    width: 3.25rem;
    height: 3.25rem;
    border: 1px solid rgba(255,255,255,.28);
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(255,255,255,.08);
    font-size: 1.25rem;
}

.summary-award-copy {
    display: flex;
    flex-direction: column;
    gap: .2rem;
}

.summary-award-copy small {
    color: rgba(255,255,255,.72);
    font-size: .65rem;
    font-weight: 500;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.summary-award-copy strong {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.25rem, 2vw, 1.65rem);
    font-weight: 600;
    line-height: 1.15;
}

.summary-award-year {
    color: rgba(255,255,255,.22);
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.6rem, 5vw, 4.6rem);
    font-weight: 600;
    letter-spacing: -.04em;
    line-height: .8;
}

@media (max-width: 1100px) {
    .welcome-shell {
        grid-template-columns: minmax(0, 1fr) minmax(330px, .78fr);
        gap: 3rem;
    }

    .welcome-visual {
        min-height: 560px;
    }

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

    .stat-card.summary-card {
        min-height: 330px;
    }
}

@media (max-width: 820px) {
    .welcome-section,
    .stats-section.resort-summary {
        padding-left: 6%;
        padding-right: 6%;
    }

    .welcome-shell,
    .summary-header {
        grid-template-columns: 1fr;
    }

    .welcome-copy {
        max-width: none;
    }

    .welcome-visual {
        width: min(620px, 100%);
        min-height: 570px;
        margin: 0 auto;
    }

    .summary-header {
        gap: 1.25rem;
        align-items: start;
    }

    .summary-header > p {
        padding: 0 0 0 1rem;
    }
}

@media (max-width: 600px) {
    .welcome-section {
        padding-top: 4.5rem;
        padding-bottom: 5rem;
    }

    .welcome-title {
        font-size: clamp(2.65rem, 12vw, 3.9rem);
    }

    .welcome-actions {
        flex-direction: column;
    }

    .welcome-actions a {
        width: 100%;
    }

    .welcome-visual {
        min-height: 470px;
        padding-left: .75rem;
    }

    .welcome-image-frame {
        left: .75rem;
        border-radius: 9rem 9rem 1.25rem 1.25rem;
    }

    .welcome-location-card {
        top: 9%;
        min-width: 12.4rem;
        padding: .8rem .9rem;
    }

    .welcome-quote-card {
        right: -.35rem;
        width: 76%;
        padding: 1.25rem 1.15rem 1.1rem 1.6rem;
    }

    .welcome-quote-card p {
        font-size: 1.12rem;
    }

    .stats-grid.summary-grid {
        grid-template-columns: 1fr;
    }

    .stat-card.summary-card {
        min-height: 310px;
    }

    .award-bar.summary-award {
        grid-template-columns: auto 1fr;
    }

    .summary-award-year {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .welcome-image-frame img,
    .summary-card,
    .welcome-actions a {
        transition: none !important;
    }
}
