/*
 * MARS HOTEL BLACKPOOL
 * Website Design System
 * Low Cost Digital
 */

:root {
    --mars-charcoal: #343434;
    --mars-charcoal-deep: #262626;
    --mars-green: #92a86f;
    --mars-green-dark: #748c52;
    --mars-pale-green: #eef2e7;
    --mars-off-white: #fafaf7;
    --mars-white: #ffffff;
    --mars-text: #444444;
    --mars-muted: #707070;
    --mars-border: #dfe4d8;
    --mars-container: 1240px;
    --mars-radius: 6px;
}


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

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--mars-white);
    color: var(--mars-text);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 17px;
    line-height: 1.65;
}

body.mars-menu-open {
    overflow: hidden;
}

.mars-site {
    width: 100%;
    overflow: hidden;
}

.mars-container {
    width: min(var(--mars-container), calc(100% - 64px));
    margin-inline: auto;
}

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

.mars-site a {
    text-decoration: none;
}

.mars-site h1,
.mars-site h2,
.mars-site h3,
.mars-site p {
    margin-top: 0;
}

.mars-section {
    padding: 110px 0;
}


/* =========================================================
   TYPOGRAPHY
   ========================================================= */

.mars-kicker,
.mars-eyebrow {
    color: var(--mars-green-dark);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 2.4px;
    text-transform: uppercase;
}

.mars-kicker-light {
    color: #cbd8b9;
}

.mars-section-heading {
    max-width: 730px;
    margin: 0 auto 55px;
    text-align: center;
}

.mars-section-heading h2,
.mars-welcome-content h2,
.mars-why-heading h2,
.mars-location-heading h2,
.mars-faq-intro h2,
.mars-feature-content h2,
.mars-final-cta h2 {
    color: var(--mars-charcoal);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(38px, 4vw, 54px);
    font-weight: 400;
    line-height: 1.12;
    letter-spacing: -0.8px;
}

.mars-section-heading > p:last-child {
    max-width: 650px;
    margin: 0 auto;
    color: var(--mars-muted);
}


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

.mars-header {
    position: relative;
    z-index: 1000;
    background: var(--mars-white);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.mars-header-inner {
    min-height: 104px;
    display: flex;
    align-items: center;
    gap: 28px;
}

.mars-logo {
    flex: 0 0 auto;
}

.mars-logo img {
    width: 205px;
    max-height: 88px;
    object-fit: contain;
}

.mars-navigation {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 26px;
}

.mars-navigation a {
    position: relative;
    padding: 37px 0 33px;
    color: var(--mars-charcoal);
    font-size: 15px;
    font-weight: 600;
}

.mars-navigation a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 25px;
    width: 0;
    height: 2px;
    background: var(--mars-green-dark);
    transform: translateX(-50%);
    transition: width 0.2s ease;
}

.mars-navigation a:hover,
.mars-navigation a.is-active {
    color: var(--mars-green-dark);
}

.mars-navigation a:hover::after,
.mars-navigation a.is-active::after {
    width: 100%;
}

.mars-header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.mars-header-phone {
    display: flex;
    flex-direction: column;
    color: var(--mars-charcoal);
    line-height: 1.15;
}

.mars-header-phone span {
    margin-bottom: 4px;
    color: var(--mars-muted);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.mars-header-phone strong {
    font-size: 16px;
}


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

.mars-button {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 27px;
    border: 2px solid transparent;
    border-radius: 3px;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    transition: 0.2s ease;
}

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

.mars-button-primary,
.mars-button-header {
    color: var(--mars-white);
    background: var(--mars-green-dark);
    border-color: var(--mars-green-dark);
}

.mars-button-primary:hover,
.mars-button-header:hover {
    color: var(--mars-white);
    background: var(--mars-charcoal);
    border-color: var(--mars-charcoal);
}

.mars-button-outline {
    color: var(--mars-white);
    background: rgba(255,255,255,0.04);
    border-color: rgba(255,255,255,0.8);
}

.mars-button-outline:hover {
    color: var(--mars-charcoal);
    background: var(--mars-white);
}

.mars-button-dark {
    color: var(--mars-white);
    background: var(--mars-charcoal);
    border-color: var(--mars-charcoal);
}

.mars-button-dark:hover {
    background: var(--mars-green-dark);
    border-color: var(--mars-green-dark);
}

.mars-button-light {
    color: var(--mars-charcoal);
    background: var(--mars-white);
    border-color: var(--mars-white);
}

.mars-button-light:hover {
    color: var(--mars-white);
    background: var(--mars-green);
    border-color: var(--mars-green);
}


/* =========================================================
   MOBILE MENU
   ========================================================= */

.mars-menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    padding: 10px;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.mars-menu-toggle span {
    width: 26px;
    height: 2px;
    display: block;
    margin: 5px auto;
    background: var(--mars-charcoal);
}


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

.mars-hero {
    position: relative;
    min-height: 735px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center 28%;
}

.mars-hero-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(8,12,10,0.72) 0%,
            rgba(8,12,10,0.66) 23%,
            rgba(8,12,10,0.44) 43%,
            rgba(8,12,10,0.20) 65%,
            rgba(8,12,10,0.10) 100%
        );
}

.mars-hero-inner {
    position: relative;
    z-index: 2;
}

.mars-hero-content {
    width: min(630px, 100%);
    margin-left: 14px;
    padding: 86px 0 150px;
}

.mars-eyebrow {
    margin-bottom: 18px !important;
    color: #d9e4c6;
}

.mars-hero h1 {
    margin-bottom: 24px;
    color: var(--mars-white);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(50px, 5vw, 70px);
    font-weight: 400;
    line-height: 1.02;
    letter-spacing: -1.3px;
}

.mars-hero-copy {
    max-width: 600px;
    margin-bottom: 31px !important;
    color: rgba(255,255,255,0.94);
    font-size: 19px;
    line-height: 1.65;
}

.mars-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.mars-hero-meta {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 24px;
    color: rgba(255,255,255,0.88);
    font-size: 13px;
    font-weight: 600;
}

.mars-hero-meta span {
    position: relative;
}

.mars-hero-meta span:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -14px;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--mars-green);
}


/* =========================================================
   QUICK INFORMATION
   ========================================================= */

.mars-quick-info {
    position: relative;
    z-index: 20;
    margin-top: -30px;
}

.mars-quick-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--mars-white);
    border-radius: var(--mars-radius);
    box-shadow: 0 18px 50px rgba(0,0,0,0.13);
    overflow: hidden;
}

.mars-quick-card {
    min-height: 112px;
    display: flex;
    align-items: center;
    gap: 17px;
    padding: 25px;
    border-right: 1px solid var(--mars-border);
}

.mars-quick-card:last-child {
    border-right: 0;
}

.mars-quick-icon {
    flex: 0 0 47px;
    width: 47px;
    height: 47px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--mars-green-dark);
    background: var(--mars-pale-green);
}

.mars-quick-icon svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.mars-quick-card > div:last-child {
    display: flex;
    flex-direction: column;
}

.mars-quick-card span {
    margin-bottom: 3px;
    color: var(--mars-muted);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.mars-quick-card strong {
    color: var(--mars-charcoal);
    font-size: 15px;
    line-height: 1.35;
}


/* =========================================================
   WELCOME
   ========================================================= */

.mars-welcome {
    padding-top: 135px;
    background: var(--mars-white);
}

.mars-welcome-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: center;
}

.mars-welcome-image {
    position: relative;
    padding: 0 35px 35px 0;
}

.mars-photo-panel {
    min-height: 570px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 22px 55px rgba(0,0,0,0.12);
}

.mars-welcome-image::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 70%;
    height: 68%;
    z-index: -1;
    background: var(--mars-pale-green);
}

.mars-photo-accent {
    position: absolute;
    left: -25px;
    bottom: 80px;
    min-width: 205px;
    padding: 22px 27px;
    display: flex;
    flex-direction: column;
    color: var(--mars-white);
    background: var(--mars-charcoal);
}

.mars-photo-accent strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 23px;
    font-weight: 400;
}

.mars-photo-accent span {
    color: rgba(255,255,255,0.72);
    font-size: 13px;
}

.mars-welcome-content .mars-kicker {
    margin-bottom: 15px;
}

.mars-welcome-content h2 {
    margin-bottom: 27px;
}

.mars-welcome-content > p:not(.mars-kicker) {
    margin-bottom: 20px;
    color: var(--mars-muted);
}

.mars-mini-features {
    margin: 34px 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--mars-border);
    border-bottom: 1px solid var(--mars-border);
}

.mars-mini-features div {
    padding: 20px 18px 20px 0;
}

.mars-mini-features strong,
.mars-mini-features span {
    display: block;
}

.mars-mini-features strong {
    margin-bottom: 3px;
    color: var(--mars-charcoal);
    font-size: 14px;
}

.mars-mini-features span {
    color: var(--mars-muted);
    font-size: 12px;
    line-height: 1.4;
}

.mars-text-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--mars-green-dark);
    font-size: 15px;
    font-weight: 700;
}

.mars-text-link span {
    transition: transform 0.2s ease;
}

.mars-text-link:hover span {
    transform: translateX(4px);
}


/* =========================================================
   ROOMS
   ========================================================= */

.mars-rooms-preview {
    background: var(--mars-off-white);
}

.mars-room-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.mars-room-card {
    overflow: hidden;
    background: var(--mars-white);
    border: 1px solid var(--mars-border);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.mars-room-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

.mars-room-image {
    min-height: 240px;
}

.mars-room-placeholder,
.mars-feature-placeholder {
    display: grid;
    place-items: center;
    color: #7d896f;
    background:
        linear-gradient(
            135deg,
            #e7ecdf,
            #f7f8f4
        );
}

.mars-room-placeholder span,
.mars-feature-placeholder span {
    padding: 8px 13px;
    border: 1px solid rgba(116,140,82,0.35);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.mars-room-content {
    padding: 27px;
}

.mars-room-label {
    display: block;
    margin-bottom: 8px;
    color: var(--mars-green-dark);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.mars-room-content h3 {
    margin-bottom: 12px;
    color: var(--mars-charcoal);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 25px;
    font-weight: 400;
}

.mars-room-content p {
    min-height: 78px;
    margin-bottom: 17px;
    color: var(--mars-muted);
    font-size: 14px;
    line-height: 1.6;
}

.mars-room-content a {
    color: var(--mars-green-dark);
    font-size: 13px;
    font-weight: 700;
}

.mars-section-action {
    margin-top: 45px;
    text-align: center;
}


/* =========================================================
   WHY MARS
   ========================================================= */

.mars-why {
    padding: 105px 0;
    color: var(--mars-white);
    background: var(--mars-charcoal);
}

.mars-why-inner {
    display: grid;
    grid-template-columns: 0.75fr 1.5fr;
    gap: 85px;
}

.mars-why-heading h2 {
    margin-bottom: 0;
    color: var(--mars-white);
}

.mars-why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.mars-why-item {
    padding: 0 35px 35px 0;
    margin-bottom: 34px;
    border-bottom: 1px solid rgba(255,255,255,0.12);
}

.mars-why-item:nth-child(even) {
    padding-left: 35px;
    padding-right: 0;
    border-left: 1px solid rgba(255,255,255,0.12);
}

.mars-why-item > span {
    display: block;
    margin-bottom: 15px;
    color: var(--mars-green);
    font-family: Georgia, serif;
    font-size: 18px;
}

.mars-why-item h3 {
    margin-bottom: 8px;
    color: var(--mars-white);
    font-size: 18px;
}

.mars-why-item p {
    margin-bottom: 0;
    color: rgba(255,255,255,0.66);
    font-size: 14px;
}


/* =========================================================
   REVIEWS
   ========================================================= */

.mars-reviews {
    background: var(--mars-white);
}

.mars-review-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.mars-review-card {
    padding: 38px;
    border: 1px solid var(--mars-border);
    background: var(--mars-off-white);
}

.mars-review-stars {
    margin-bottom: 24px;
    color: var(--mars-green-dark);
    letter-spacing: 3px;
}

.mars-review-card blockquote {
    min-height: 100px;
    margin: 0 0 30px;
    color: var(--mars-charcoal);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 21px;
    line-height: 1.45;
}

.mars-review-author {
    display: flex;
    flex-direction: column;
}

.mars-review-author strong {
    color: var(--mars-charcoal);
    font-size: 13px;
}

.mars-review-author span {
    color: var(--mars-muted);
    font-size: 12px;
}


/* =========================================================
   RESTAURANT / FUNCTIONS
   ========================================================= */

.mars-feature {
    min-height: 630px;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.mars-feature-image {
    min-height: 630px;
}

.mars-feature-content {
    display: grid;
    place-items: center;
    padding: 80px;
    background: var(--mars-pale-green);
}

.mars-feature-content > div {
    width: min(520px, 100%);
}

.mars-feature-content h2 {
    margin-bottom: 25px;
}

.mars-feature-content p:not(.mars-kicker) {
    margin-bottom: 19px;
    color: var(--mars-muted);
}

.mars-feature-content .mars-button {
    margin-top: 15px;
}

.mars-feature-reverse .mars-feature-content {
    background: var(--mars-off-white);
}


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

.mars-location {
    background: var(--mars-pale-green);
}

.mars-location-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 90px;
    align-items: center;
}

.mars-location-heading h2 {
    margin-bottom: 25px;
}

.mars-location-heading > p:not(.mars-kicker) {
    margin-bottom: 28px;
    color: var(--mars-muted);
}

.mars-location-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    background: var(--mars-white);
}

.mars-location-list div {
    min-height: 110px;
    padding: 27px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 1px solid var(--mars-border);
    border-bottom: 1px solid var(--mars-border);
}

.mars-location-list span {
    margin-bottom: 4px;
    color: var(--mars-green-dark);
    font-size: 11px;
    font-weight: 700;
}

.mars-location-list strong {
    color: var(--mars-charcoal);
    font-size: 15px;
}


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

.mars-faq {
    background: var(--mars-white);
}

.mars-faq-grid {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    gap: 90px;
}

.mars-faq-intro > p:not(.mars-kicker) {
    color: var(--mars-muted);
}

.mars-faq-list {
    border-top: 1px solid var(--mars-border);
}

.mars-faq-list details {
    border-bottom: 1px solid var(--mars-border);
}

.mars-faq-list summary {
    position: relative;
    padding: 22px 45px 22px 0;
    color: var(--mars-charcoal);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    list-style: none;
}

.mars-faq-list summary::-webkit-details-marker {
    display: none;
}

.mars-faq-list summary::after {
    content: "+";
    position: absolute;
    right: 4px;
    top: 18px;
    color: var(--mars-green-dark);
    font-size: 24px;
    font-weight: 300;
}

.mars-faq-list details[open] summary::after {
    content: "−";
}

.mars-faq-list details p {
    padding: 0 50px 23px 0;
    margin-bottom: 0;
    color: var(--mars-muted);
    font-size: 14px;
}


/* =========================================================
   FINAL CTA
   ========================================================= */

.mars-final-cta {
    padding: 85px 0;
    color: var(--mars-white);
    background: var(--mars-green-dark);
}

.mars-final-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 70px;
}

.mars-final-cta h2 {
    margin-bottom: 12px;
    color: var(--mars-white);
}

.mars-final-cta p:not(.mars-kicker) {
    margin-bottom: 0;
    color: rgba(255,255,255,0.78);
}

.mars-final-actions {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 28px;
}

.mars-final-phone {
    display: flex;
    flex-direction: column;
    color: var(--mars-white);
}

.mars-final-phone span {
    color: rgba(255,255,255,0.68);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mars-final-phone strong {
    font-size: 20px;
}


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

.mars-footer {
    color: rgba(255,255,255,0.72);
    background: var(--mars-charcoal-deep);
}

.mars-footer-grid {
    padding-top: 75px;
    padding-bottom: 65px;
    display: grid;
    grid-template-columns: 1.6fr 0.8fr 0.8fr 1fr;
    gap: 65px;
}

.mars-footer-brand img {
    width: 170px;
    margin-bottom: 24px;
}

.mars-footer-brand p {
    max-width: 300px;
    margin-bottom: 0;
    font-size: 14px;
}

.mars-footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.mars-footer-column h3 {
    margin-bottom: 18px;
    color: var(--mars-white);
    font-size: 14px;
}

.mars-footer-column a,
.mars-footer-column span {
    margin-bottom: 9px;
    color: rgba(255,255,255,0.67);
    font-size: 13px;
}

.mars-footer-column a:hover {
    color: var(--mars-green);
}

.mars-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.10);
}

.mars-footer-bottom .mars-container {
    min-height: 65px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-size: 11px;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1100px) {

    .mars-container {
        width: min(var(--mars-container), calc(100% - 40px));
    }

    .mars-logo img {
        width: 168px;
    }

    .mars-navigation {
        gap: 16px;
    }

    .mars-navigation a {
        font-size: 13px;
    }

    .mars-header-phone {
        display: none;
    }

    .mars-room-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mars-welcome-grid,
    .mars-location-grid {
        gap: 55px;
    }

}


/* =========================================================
   SMALL TABLET
   ========================================================= */

@media (max-width: 900px) {

    .mars-section {
        padding: 80px 0;
    }

    .mars-menu-toggle {
        display: block;
        margin-left: auto;
    }

    .mars-header-actions {
        margin-left: 0;
    }

    .mars-header-phone {
        display: none;
    }

    .mars-navigation {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 8px 24px 22px;
        background: var(--mars-white);
        border-top: 1px solid var(--mars-border);
        box-shadow: 0 15px 30px rgba(0,0,0,0.10);
    }

    .mars-navigation.is-open {
        display: flex;
    }

    .mars-navigation a {
        padding: 15px 0;
        border-bottom: 1px solid var(--mars-border);
        font-size: 16px;
    }

    .mars-navigation a::after {
        display: none;
    }

    .mars-hero {
        min-height: 650px;
        background-position: 55% center;
    }

    .mars-hero-content {
        margin-left: 0;
    }

    .mars-quick-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mars-quick-card:nth-child(2) {
        border-right: 0;
    }

    .mars-quick-card:nth-child(-n+2) {
        border-bottom: 1px solid var(--mars-border);
    }

    .mars-welcome-grid,
    .mars-why-inner,
    .mars-location-grid,
    .mars-faq-grid {
        grid-template-columns: 1fr;
    }

    .mars-welcome-grid {
        gap: 65px;
    }

    .mars-photo-accent {
        left: 20px;
    }

    .mars-why-inner {
        gap: 55px;
    }

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

    .mars-feature-image {
        min-height: 450px;
    }

    .mars-feature-content {
        min-height: 480px;
        padding: 65px 40px;
    }

    .mars-feature-reverse .mars-feature-content {
        order: 2;
    }

    .mars-feature-reverse .mars-feature-image {
        order: 1;
    }

    .mars-final-cta-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .mars-footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    body {
        font-size: 16px;
    }

    .mars-container {
        width: calc(100% - 28px);
    }

    .mars-header-inner {
        min-height: 75px;
    }

    .mars-logo img {
        width: 132px;
    }

    .mars-button-header {
        display: none;
    }

    .mars-hero {
        min-height: 650px;
        align-items: flex-end;
        background-position: 58% center;
    }

    .mars-hero-shade {
        background:
            linear-gradient(
                180deg,
                rgba(20,20,20,0.08) 0%,
                rgba(20,20,20,0.38) 40%,
                rgba(20,20,20,0.92) 100%
            );
    }

    .mars-hero-content {
        width: 100%;
        margin-left: 0;
        padding: 190px 0 105px;
    }

    .mars-hero h1 {
        font-size: 43px;
        line-height: 1.04;
    }

    .mars-hero-copy {
        font-size: 16px;
    }

    .mars-hero-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .mars-button {
        width: 100%;
    }

    .mars-hero-meta {
        display: none;
    }

    .mars-quick-info {
        margin-top: -45px;
    }

    .mars-quick-info-grid {
        grid-template-columns: 1fr;
    }

    .mars-quick-card {
        min-height: 88px;
        border-right: 0;
        border-bottom: 1px solid var(--mars-border);
    }

    .mars-quick-card:last-child {
        border-bottom: 0;
    }

    .mars-welcome {
        padding-top: 95px;
    }

    .mars-welcome-image {
        padding: 0;
    }

    .mars-photo-panel {
        min-height: 390px;
    }

    .mars-welcome-image::after {
        display: none;
    }

    .mars-photo-accent {
        left: 15px;
        bottom: 15px;
    }

    .mars-welcome-content h2,
    .mars-section-heading h2,
    .mars-location-heading h2,
    .mars-faq-intro h2,
    .mars-feature-content h2,
    .mars-final-cta h2 {
        font-size: 35px;
    }

    .mars-mini-features {
        grid-template-columns: 1fr;
    }

    .mars-mini-features div {
        border-bottom: 1px solid var(--mars-border);
    }

    .mars-mini-features div:last-child {
        border-bottom: 0;
    }

    .mars-room-grid,
    .mars-review-grid,
    .mars-why-grid,
    .mars-location-list {
        grid-template-columns: 1fr;
    }

    .mars-room-image {
        min-height: 260px;
    }

    .mars-why {
        padding: 75px 0;
    }

    .mars-why-item,
    .mars-why-item:nth-child(even) {
        padding: 0 0 28px;
        border-left: 0;
    }

    .mars-feature-image {
        min-height: 340px;
    }

    .mars-feature-content {
        min-height: auto;
        padding: 60px 25px;
    }

    .mars-final-cta {
        padding: 65px 0;
    }

    .mars-final-actions {
        width: 100%;
        align-items: stretch;
        flex-direction: column;
    }

    .mars-footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .mars-footer-bottom .mars-container {
        padding: 18px 0;
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
    }

}