/* =========================================================
   SHENDERA
   Main Website Styles
   Shop • Book • Discover
========================================================= */

:root {
    --rose: #d96f83;
    --rose-dark: #b84f66;
    --rose-soft: #f9e8eb;

    --peach: #f4c5ad;
    --cream: #fffaf5;
    --white: #ffffff;

    --navy: #24354b;
    --text: #4f4b4b;
    --muted: #777171;

    --border: #eadfd9;

    --shadow-soft:
        0 14px 35px rgba(72, 53, 53, 0.09);

    --shadow-card:
        0 18px 45px rgba(72, 53, 53, 0.12);

    --radius-small: 12px;
    --radius-medium: 22px;
    --radius-large: 34px;

    --max-width: 1180px;
}


/* =========================================================
   RESET
========================================================= */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family:
        Inter,
        "Segoe UI",
        Arial,
        sans-serif;

    background: var(--cream);
    color: var(--text);
    line-height: 1.6;
}

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

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

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button {
    font: inherit;
}


/* =========================================================
   SHARED
========================================================= */

.section-heading {
    width: min(760px, 100%);
    margin: 0 auto 46px;
    text-align: center;
}

.section-heading h2 {
    margin-bottom: 14px;

    color: var(--navy);

    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.1;
}

.section-heading>p:last-child {
    color: var(--muted);
    font-size: 1.03rem;
}

.eyebrow {
    margin-bottom: 12px;

    color: var(--rose-dark);

    font-size: 0.77rem;
    font-weight: 800;
    letter-spacing: 0.15em;
}


/* =========================================================
   BUTTONS
========================================================= */

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 48px;
    padding: 12px 22px;

    border: 1px solid transparent;
    border-radius: 999px;

    cursor: pointer;

    font-weight: 700;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-primary {
    background: var(--rose);
    color: var(--white);

    box-shadow:
        0 10px 24px rgba(217, 111, 131, 0.25);
}

.button-primary:hover {
    background: var(--rose-dark);
}

.button-secondary {
    border-color: var(--rose);
    background: var(--white);
    color: var(--rose-dark);
}

.button-secondary:hover {
    background: var(--rose-soft);
}

.text-link {
    color: var(--rose-dark);
    font-weight: 700;
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;

    border-bottom: 1px solid rgba(234, 223, 217, 0.8);

    background:
        rgba(255, 250, 245, 0.94);

    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;

    width: min(var(--max-width), calc(100% - 40px));
    min-height: 82px;
    margin: 0 auto;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-logo {
    width: 52px;
    height: 52px;

    border: 3px solid var(--white);
    border-radius: 50%;

    object-fit: cover;

    box-shadow: var(--shadow-soft);
}

.brand-copy {
    display: flex;
    flex-direction: column;
}

.brand-name {
    color: var(--navy);

    font-size: 1.35rem;
    font-weight: 800;
    line-height: 1.1;
}

.brand-tagline {
    margin-top: 4px;

    color: var(--rose-dark);

    font-size: 0.75rem;
    font-weight: 700;
}

.main-navigation {
    display: flex;
    align-items: center;
    gap: 24px;

    color: var(--navy);

    font-size: 0.92rem;
    font-weight: 700;
}

.main-navigation a {
    transition: color 0.2s ease;
}

.main-navigation a:hover {
    color: var(--rose);
}


/* =========================================================
   HERO
========================================================= */

.hero {
    padding: 74px 20px 86px;

    background:
        radial-gradient(circle at 10% 20%,
            rgba(244, 197, 173, 0.35),
            transparent 28%),
        radial-gradient(circle at 90% 80%,
            rgba(217, 111, 131, 0.14),
            transparent 30%),
        var(--cream);
}

.hero-container {
    display: grid;
    grid-template-columns:
        minmax(0, 0.9fr) minmax(0, 1.1fr);

    align-items: center;
    gap: 54px;

    width: min(var(--max-width), 100%);
    margin: 0 auto;
}

.hero-copy h1 {
    margin-bottom: 22px;

    color: var(--navy);

    font-size: clamp(2.7rem, 6vw, 5.2rem);
    line-height: 0.98;
    letter-spacing: -0.045em;
}

.hero-copy h1 span {
    display: block;

    margin-top: 8px;

    color: var(--rose);
}

.hero-description {
    max-width: 610px;

    color: var(--muted);

    font-size: 1.08rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;

    margin-top: 30px;
}

.hero-note {
    max-width: 580px;
    margin-top: 18px;

    color: var(--muted);

    font-size: 0.82rem;
}

.hero-image {
    position: relative;

    overflow: hidden;

    border: 8px solid rgba(255, 255, 255, 0.9);
    border-radius: var(--radius-large);

    background: var(--white);

    box-shadow: var(--shadow-card);
}

.hero-image img {
    width: 100%;
    height: auto;

    object-fit: contain;
}


/* =========================================================
   GETAWAYS
========================================================= */

.getaways {
    padding: 92px 20px;

    background: var(--white);
}

.getaway-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;

    width: min(var(--max-width), 100%);
    margin: 0 auto;
}

.getaway-card {
    overflow: hidden;

    border: 1px solid var(--border);
    border-radius: var(--radius-medium);

    background: var(--cream);

    box-shadow: var(--shadow-soft);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.getaway-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card);
}

.getaway-placeholder {
    display: grid;
    place-items: center;

    min-height: 250px;

    background:
        linear-gradient(135deg,
            var(--rose-soft),
            #f8dccb);
}

.getaway-placeholder span {
    font-size: 4.5rem;
}

.getaway-card-content {
    padding: 30px;
}

.getaway-label {
    display: inline-block;

    margin-bottom: 10px;

    color: var(--rose-dark);

    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.getaway-card h3 {
    margin-bottom: 12px;

    color: var(--navy);

    font-size: 1.7rem;
}

.getaway-card p {
    color: var(--muted);
}

.card-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;

    margin-top: 24px;
}


/* =========================================================
   LOCATION
========================================================= */

.location {
    padding: 92px 20px;

    background: var(--rose-soft);
}

.map-placeholder {
    width: min(900px, 100%);
    margin: 0 auto;
    padding: 60px 30px;

    border: 2px dashed rgba(184, 79, 102, 0.28);
    border-radius: var(--radius-medium);

    background: rgba(255, 255, 255, 0.72);

    text-align: center;
}

.map-placeholder>span {
    display: block;

    margin-bottom: 12px;

    font-size: 3rem;
}

.map-placeholder h3 {
    margin-bottom: 8px;

    color: var(--navy);

    font-size: 1.4rem;
}

.map-placeholder p {
    color: var(--muted);
}


/* =========================================================
   FAQ
========================================================= */

.faq {
    padding: 92px 20px;

    background: var(--white);
}

.faq-list {
    display: grid;
    gap: 14px;

    width: min(820px, 100%);
    margin: 0 auto;
}

.faq-list details {
    overflow: hidden;

    border: 1px solid var(--border);
    border-radius: var(--radius-small);

    background: var(--cream);
}

.faq-list summary {
    padding: 20px 22px;

    color: var(--navy);

    cursor: pointer;

    font-weight: 750;
}

.faq-list details p {
    padding: 0 22px 22px;

    color: var(--muted);
}


/* =========================================================
   CONTACT
========================================================= */

.contact {
    padding: 92px 20px;

    background:
        linear-gradient(135deg,
            #fff4ee,
            var(--rose-soft));
}

.contact-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;

    width: min(1000px, 100%);
    margin: 0 auto;
    padding: 46px;

    border: 1px solid rgba(217, 111, 131, 0.18);
    border-radius: var(--radius-large);

    background: var(--white);

    box-shadow: var(--shadow-card);
}

.contact-card h2 {
    margin-bottom: 10px;

    color: var(--navy);

    font-size: clamp(2rem, 4vw, 3rem);
}

.contact-card>div:first-child {
    max-width: 570px;
}

.contact-card p:not(.eyebrow) {
    color: var(--muted);
}

.contact-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;

    min-width: 210px;
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    padding: 44px 20px;

    background: var(--navy);
    color: var(--white);

    text-align: center;
}

.footer-logo {
    width: 68px;
    height: 68px;

    margin: 0 auto 14px;

    border: 3px solid rgba(255, 255, 255, 0.85);
    border-radius: 50%;

    object-fit: cover;
}

.footer-small {
    margin-top: 6px;

    color: rgba(255, 255, 255, 0.7);

    font-size: 0.82rem;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 900px) {

    .main-navigation {
        display: none;
    }

    .hero-container {
        grid-template-columns: 1fr;
    }

    .hero-copy {
        text-align: center;
    }

    .hero-description,
    .hero-note {
        margin-right: auto;
        margin-left: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .getaway-grid {
        grid-template-columns: 1fr;
    }

    .contact-card {
        flex-direction: column;
        align-items: stretch;

        text-align: center;
    }

    .contact-actions {
        width: min(320px, 100%);
        margin: 0 auto;
    }

}


@media (max-width: 600px) {

    .header-container {
        width: min(100% - 28px, var(--max-width));
        min-height: 72px;
    }

    .brand-logo {
        width: 46px;
        height: 46px;
    }

    .brand-name {
        font-size: 1.15rem;
    }

    .brand-tagline {
        font-size: 0.68rem;
    }

    .hero {
        padding: 52px 18px 64px;
    }

    .hero-copy h1 {
        font-size: clamp(2.4rem, 13vw, 3.6rem);
    }

    .getaways,
    .location,
    .faq,
    .contact {
        padding: 68px 18px;
    }

    .getaway-card-content {
        padding: 24px;
    }

    .contact-card {
        padding: 30px 22px;
    }

    .hero-actions .button,
    .card-actions .button {
        width: 100%;
    }

    .card-actions {
        justify-content: center;
    }

}

/* =========================================================
   SHENDERA — ONE PAGE GETAWAY SECTIONS
========================================================= */

.property-section {
    padding: 92px 20px;
}

.property-section-lv {
    background: var(--white);
}

.property-section-twin {
    background:
        linear-gradient(135deg,
            #fff8f3,
            var(--rose-soft));
}


/* =========================================================
   PROPERTY HIGHLIGHTS
========================================================= */

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

    width: min(1000px, 100%);
    margin: 0 auto 64px;
}

.property-highlight {
    display: flex;
    flex-direction: column;
    align-items: center;

    padding: 24px 18px;

    border: 1px solid var(--border);
    border-radius: var(--radius-medium);

    background: var(--cream);

    text-align: center;

    box-shadow: var(--shadow-soft);
}

.property-highlight span {
    margin-bottom: 8px;

    font-size: 2rem;
}

.property-highlight strong {
    color: var(--navy);
}

.property-highlight small {
    margin-top: 4px;

    color: var(--muted);
}


/* =========================================================
   PROPERTY SUBHEADINGS
========================================================= */

.property-subheading {
    width: min(760px, 100%);
    margin: 0 auto 34px;

    text-align: center;
}

.property-subheading h3 {
    margin-bottom: 10px;

    color: var(--navy);

    font-size: clamp(1.8rem, 4vw, 2.5rem);
}

.property-subheading>p:last-child {
    color: var(--muted);
}


/* =========================================================
   PACKAGE GRID
========================================================= */

.package-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;

    width: min(var(--max-width), 100%);
    margin: 0 auto 80px;
}

.package-card {
    display: flex;
    flex-direction: column;

    padding: 28px;

    border: 1px solid var(--border);
    border-radius: var(--radius-medium);

    background: var(--cream);

    box-shadow: var(--shadow-soft);

    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease;
}

.package-card:hover {
    transform: translateY(-5px);

    box-shadow: var(--shadow-card);
}

.package-card h3 {
    margin-bottom: 10px;

    color: var(--navy);

    font-size: 1.45rem;
    line-height: 1.2;
}

.package-card>p {
    color: var(--muted);
}

.package-card ul {
    display: grid;
    gap: 7px;

    margin: 0 0 22px;
    padding-left: 20px;

    color: var(--muted);

    font-size: 0.9rem;
}

.package-card .button {
    width: 100%;
    margin-top: auto;
}

.package-price {
    margin: 20px 0 14px;

    color: var(--rose-dark);

    font-size: 1.65rem;
    font-weight: 850;
}

.package-price small {
    color: var(--muted);

    font-size: 0.78rem;
    font-weight: 600;
}


/* =========================================================
   FEATURE GRID
========================================================= */

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;

    width: min(1050px, 100%);
    margin: 0 auto 74px;
}

.feature-grid article {
    padding: 26px;

    border: 1px solid rgba(217, 111, 131, 0.15);
    border-radius: var(--radius-medium);

    background: var(--cream);
}

.feature-grid span {
    display: block;

    margin-bottom: 10px;

    font-size: 2rem;
}

.feature-grid h4 {
    margin-bottom: 6px;

    color: var(--navy);

    font-size: 1.08rem;
}

.feature-grid p {
    color: var(--muted);

    font-size: 0.9rem;
}


/* =========================================================
   PROPERTY NOTES
========================================================= */

.property-notes {
    width: min(860px, 100%);
    margin: 0 auto 64px;
}

.property-notes>h3 {
    margin-bottom: 22px;

    color: var(--navy);

    text-align: center;

    font-size: 1.7rem;
}


/* =========================================================
   ALBUM CALLOUT
========================================================= */

.album-callout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;

    width: min(960px, 100%);
    margin: 0 auto;
    padding: 34px;

    border: 1px solid var(--border);
    border-radius: var(--radius-medium);

    background: var(--white);

    box-shadow: var(--shadow-soft);
}

.album-callout h3 {
    margin-bottom: 6px;

    color: var(--navy);

    font-size: 1.4rem;
}

.album-callout p:not(.eyebrow) {
    color: var(--muted);
}

.album-callout button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}


/* =========================================================
   TWIN ISLANDS PLACEHOLDER
========================================================= */

.property-coming-soon {
    width: min(760px, 100%);
    margin: 0 auto 48px;
    padding: 46px 30px;

    border: 1px solid rgba(217, 111, 131, 0.18);
    border-radius: var(--radius-large);

    background: var(--white);

    text-align: center;

    box-shadow: var(--shadow-card);
}

.property-coming-soon>span {
    display: block;

    margin-bottom: 12px;

    font-size: 3.4rem;
}

.property-coming-soon h3 {
    margin-bottom: 10px;

    color: var(--navy);

    font-size: 1.6rem;
}

.property-coming-soon p {
    max-width: 600px;
    margin: 0 auto 24px;

    color: var(--muted);
}


/* =========================================================
   SELECTED INQUIRY
========================================================= */

.selected-inquiry {
    margin-top: 16px;
    padding: 12px 14px;

    border-radius: 12px;

    background: var(--rose-soft);

    color: var(--rose-dark) !important;

    font-size: 0.88rem;
    font-weight: 700;
}


/* =========================================================
   RESPONSIVE — ONE PAGE SECTIONS
========================================================= */

@media (max-width: 1000px) {

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

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

}


@media (max-width: 900px) {

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

    .album-callout {
        flex-direction: column;

        text-align: center;
    }

}


@media (max-width: 650px) {

    .property-section {
        padding: 68px 18px;
    }

    .package-grid {
        grid-template-columns: 1fr;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .property-highlights {
        grid-template-columns: 1fr 1fr;
    }

}


@media (max-width: 420px) {

    .property-highlights {
        grid-template-columns: 1fr;
    }

}

/* =========================================================
   TWIN ISLANDS EXPERIENCE GALLERY
========================================================= */

.twin-gallery-heading {
    max-width: 780px;
    margin: 70px auto 36px;
    text-align: center;
}

.twin-gallery-heading .eyebrow {
    margin-bottom: 10px;
}

.twin-gallery-heading h3 {
    margin: 0 0 14px;
    font-size: clamp(1.8rem, 3vw, 2.7rem);
    line-height: 1.15;
    color: #24364b;
}

.twin-gallery-heading>p:last-child {
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
    color: #6f6865;
}


/* Gallery layout */

.twin-gallery {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}


/* Individual destination card */

.twin-gallery-card {
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(36, 54, 75, 0.1);
    border-radius: 22px;
    box-shadow: 0 16px 40px rgba(36, 54, 75, 0.09);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.twin-gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 48px rgba(36, 54, 75, 0.14);
}


/* Gallery photos */

.twin-gallery-card img {
    display: block;
    width: 100%;
    height: 360px;
    object-fit: cover;
    background: #f3eee9;
}


/* Text beneath each photo */

.twin-gallery-copy {
    padding: 25px 27px 29px;
}

.getaway-label {
    display: block;
    margin-bottom: 9px;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #c64059;
}

.twin-gallery-copy h4 {
    margin: 0 0 10px;
    font-size: 1.3rem;
    line-height: 1.25;
    color: #24364b;
}

.twin-gallery-copy p {
    margin: 0;
    line-height: 1.7;
    color: #6f6865;
}


/* Final scenic image gets special emphasis */

.twin-gallery-featured {
    grid-column: auto;
    display: block;
}

.twin-gallery-featured img {
    width: 100%;
    height: 360px;
    object-fit: cover;
}

.twin-gallery-featured .twin-gallery-copy {
    padding: 25px 27px 29px;
}

.twin-gallery-featured .twin-gallery-copy h4 {
    font-size: 1.3rem;
}


/* Tablet */

@media (max-width: 900px) {

    .twin-gallery {
        grid-template-columns: 1fr;
    }

    .twin-gallery-featured {
        grid-column: auto;
        display: block;
    }

    .twin-gallery-featured img {
        height: 360px;
        min-height: 0;
    }

}


/* Mobile */

@media (max-width: 600px) {

    .twin-gallery-heading {
        margin-top: 50px;
        padding: 0 20px;
    }

    .twin-gallery {
        width: min(100% - 28px, 1180px);
        gap: 20px;
    }

    .twin-gallery-card {
        border-radius: 17px;
    }

    .twin-gallery-card img,
    .twin-gallery-featured img {
        height: 250px;
    }

    .twin-gallery-copy,
    .twin-gallery-featured .twin-gallery-copy {
        padding: 21px;
    }

}

/* =====================================================
   LV BEACH CAMP FEATURE IMAGE
===================================================== */

.lv-feature-image {
    position: relative;
    max-width: 1240px;
    height: 430px;
    margin: 32px auto 40px;
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(23, 43, 66, 0.12);
}

.lv-feature-image>img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.lv-feature-overlay {
    position: absolute;
    left: 32px;
    bottom: 32px;
    width: min(560px, calc(100% - 64px));
    padding: 26px 30px;

    background: rgba(255, 250, 247, 0.94);
    border-radius: 20px;
    box-shadow: 0 12px 32px rgba(23, 43, 66, 0.14);
}

.lv-feature-overlay .getaway-label {
    display: block;
    margin-bottom: 10px;
}

.lv-feature-overlay h3 {
    margin: 0 0 8px;
    color: #17304d;
    font-size: 1.7rem;
}

.lv-feature-overlay p {
    margin: 0;
    line-height: 1.7;
}


/* MOBILE */

@media (max-width: 768px) {

    .lv-feature-image {
        height: 500px;
        margin: 24px 18px 32px;
        border-radius: 20px;
    }

    .lv-feature-overlay {
        left: 18px;
        right: 18px;
        bottom: 18px;
        width: auto;
        padding: 20px;
    }

    .lv-feature-overlay h3 {
        font-size: 1.4rem;
    }
}

/* =====================================================
   LV BEACH CAMP PACKAGE IMAGES
===================================================== */

.package-card-image {
    width: 100%;
    height: 220px;
    margin-bottom: 24px;
    overflow: hidden;
    border-radius: 18px;
}

.package-card-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* =====================================================
   SHENDERA SHARED LOCATION MAP
===================================================== */

.location-map-card {
    max-width: 1240px;
    margin: 40px auto 0;
    overflow: hidden;
    background: #ffffff;
    border-radius: 28px;
    box-shadow: 0 18px 45px rgba(24, 42, 66, 0.08);
}

.location-map-card iframe {
    display: block;
    width: 100%;
    height: 500px;
    border: 0;
}

.location-map-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 32px 38px;
}

.location-map-content>div {
    max-width: 700px;
}

.location-map-content h3 {
    margin: 10px 0 10px;
}

.location-map-content p {
    margin: 0;
    line-height: 1.7;
}

.location-map-content .button {
    flex-shrink: 0;
}

@media (max-width: 768px) {

    .location-map-card iframe {
        height: 380px;
    }

    .location-map-content {
        flex-direction: column;
        align-items: flex-start;
        padding: 26px 24px;
    }

    .location-map-content .button {
        width: 100%;
        text-align: center;
    }
}

/* =========================================================
   SHENDERA INQUIRY FORM
========================================================= */

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

    width: min(620px, 100%);
}

.inquiry-field {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.inquiry-field-full {
    grid-column: 1 / -1;
}

.inquiry-field label {
    color: var(--navy);

    font-size: 0.9rem;
    font-weight: 750;
}

.inquiry-field input,
.inquiry-field select,
.inquiry-field textarea {
    width: 100%;
    padding: 13px 14px;

    border: 1px solid var(--border);
    border-radius: 12px;

    background: var(--white);
    color: var(--navy);

    font: inherit;
}

.inquiry-field textarea {
    min-height: 110px;
    resize: vertical;
}

.inquiry-field input:focus,
.inquiry-field select:focus,
.inquiry-field textarea:focus {
    border-color: var(--rose);
    outline: 3px solid rgba(217, 111, 131, 0.14);
}

.inquiry-form-note {
    grid-column: 1 / -1;

    color: var(--muted);

    font-size: 0.88rem;
    line-height: 1.6;
}

.inquiry-form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;

    grid-column: 1 / -1;
}

@media (max-width: 650px) {

    .inquiry-form {
        grid-template-columns: 1fr;
    }

    .inquiry-field-full,
    .inquiry-form-note,
    .inquiry-form-actions {
        grid-column: auto;
    }

    .inquiry-form-actions .button {
        width: 100%;
    }

}

/* =========================================================
   SHENDERA INQUIRY FORM
========================================================= */

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

    width: min(620px, 100%);
}

.inquiry-field {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.inquiry-field-full {
    grid-column: 1 / -1;
}

.inquiry-field label {
    color: var(--navy);

    font-size: 0.9rem;
    font-weight: 750;
}

.inquiry-field input,
.inquiry-field select,
.inquiry-field textarea {
    width: 100%;
    padding: 13px 14px;

    border: 1px solid var(--border);
    border-radius: 12px;

    background: var(--white);
    color: var(--navy);

    font: inherit;
}

.inquiry-field textarea {
    min-height: 110px;
    resize: vertical;
}

.inquiry-field input:focus,
.inquiry-field select:focus,
.inquiry-field textarea:focus {
    border-color: var(--rose);
    outline: 3px solid rgba(217, 111, 131, 0.14);
}

.inquiry-form-note {
    grid-column: 1 / -1;

    color: var(--muted);

    font-size: 0.88rem;
    line-height: 1.6;
}

.inquiry-form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;

    grid-column: 1 / -1;
}

@media (max-width: 650px) {

    .inquiry-form {
        grid-template-columns: 1fr;
    }

    .inquiry-field-full,
    .inquiry-form-note,
    .inquiry-form-actions {
        grid-column: auto;
    }

    .inquiry-form-actions .button {
        width: 100%;
    }

}

/* =========================================================
   SHENDERA INQUIRY FORM
========================================================= */

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

    width: min(620px, 100%);
}

.inquiry-field {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.inquiry-field-full {
    grid-column: 1 / -1;
}

.inquiry-field label {
    color: var(--navy);

    font-size: 0.9rem;
    font-weight: 750;
}

.inquiry-field input,
.inquiry-field select,
.inquiry-field textarea {
    width: 100%;
    padding: 13px 14px;

    border: 1px solid var(--border);
    border-radius: 12px;

    background: var(--white);
    color: var(--navy);

    font: inherit;
}

.inquiry-field textarea {
    min-height: 110px;
    resize: vertical;
}

.inquiry-field input:focus,
.inquiry-field select:focus,
.inquiry-field textarea:focus {
    border-color: var(--rose);
    outline: 3px solid rgba(217, 111, 131, 0.14);
}

.inquiry-form-note {
    grid-column: 1 / -1;

    color: var(--muted);

    font-size: 0.88rem;
    line-height: 1.6;
}

.inquiry-form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;

    grid-column: 1 / -1;
}

.contact-card.inquiry-card {
    flex-direction: column;
    align-items: stretch;
}

.contact-card.inquiry-card>div:first-child {
    max-width: 760px;
}

.contact-card.inquiry-card .inquiry-form {
    width: 100%;
}

@media (max-width: 650px) {

    .inquiry-form {
        grid-template-columns: 1fr;
    }

    .inquiry-field-full,
    .inquiry-form-note,
    .inquiry-form-actions {
        grid-column: auto;
    }

    .inquiry-form-actions .button {
        width: 100%;
    }

}

/* =========================================================
   SHENDERA LATEST UPDATES
========================================================= */

.updates {
    padding: 92px 20px;

    background: var(--white);
}

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

    width: min(1180px, 100%);
    margin: 42px auto 0;
}

.update-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;

    border: 1px solid var(--border);
    border-radius: var(--radius-medium);

    background: var(--white);

    box-shadow: var(--shadow-soft);
}

.update-card-image {
    width: 100%;
    aspect-ratio: 16 / 10;

    object-fit: cover;
}

.update-card-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: flex-start;

    padding: 25px;
}

.update-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;

    margin-bottom: 12px;

    color: var(--rose);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.update-card h3 {
    margin-bottom: 10px;

    color: var(--navy);

    font-size: 1.35rem;
    line-height: 1.3;
}

.update-card-content>p {
    margin-bottom: 22px;

    color: var(--muted);
    line-height: 1.7;
}

.update-card .button {
    margin-top: auto;
}

@media (max-width: 900px) {

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

}

@media (max-width: 650px) {

    .updates {
        padding: 68px 18px;
    }

    .updates-grid {
        grid-template-columns: 1fr;
    }

}

/* =========================================================
   Unified Inbox — Contact Redirect Actions
   ========================================================= */

.inbox-contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 12px 0 22px;
    padding: 16px;
    background: #f4f9fc;
    border: 1px solid #d7e5ee;
    border-radius: 14px;
}

.inbox-contact-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 16px;
    color: #ffffff;
    background: #057eb8;
    border: 1px solid #057eb8;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 6px 16px rgba(5, 126, 184, 0.18);
    transition:
        transform 160ms ease,
        background-color 160ms ease,
        border-color 160ms ease,
        box-shadow 160ms ease;
}

.inbox-contact-action:hover {
    color: #ffffff;
    background: #046a9b;
    border-color: #046a9b;
    box-shadow: 0 8px 20px rgba(5, 126, 184, 0.26);
    transform: translateY(-2px);
}

.inbox-contact-action:focus-visible {
    outline: 3px solid rgba(5, 126, 184, 0.28);
    outline-offset: 3px;
}

@media (max-width: 700px) {
    .inbox-contact-actions {
        flex-direction: column;
    }

    .inbox-contact-action {
        width: 100%;
    }
}