/* ============================================
   Palm Springs / Palm Desert Poolside Guesthouse
   Fresh & Airy — Midnight Blue + Mint Palette
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
    --color-midnight: #0a1628;
    --color-midnight-light: #132240;
    --color-midnight-mid: #1a2d4a;
    --color-mint: #5fbfbf;
    --color-mint-light: #7ecdc d;
    --color-mint-pale: #e0f4f4;
    --color-mint-faint: #f0fafa;
    --color-sand: #f5f0e8;
    --color-sand-light: #faf7f2;
    --color-cream: #fefdfb;
    --color-text: #1a1a2e;
    --color-text-light: #4a4a5a;
    --color-text-muted: #7a7a8a;
    --color-white: #ffffff;
    --color-border: #e8e4dc;
    --color-accent-warm: #d4a574;

    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Lato', 'Segoe UI', sans-serif;

    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;
    --space-3xl: 8rem;

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    --shadow-sm: 0 1px 3px rgba(10, 22, 40, 0.06);
    --shadow-md: 0 4px 20px rgba(10, 22, 40, 0.08);
    --shadow-lg: 0 8px 40px rgba(10, 22, 40, 0.12);
    --shadow-xl: 0 16px 60px rgba(10, 22, 40, 0.15);

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset & Base --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-cream);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* --- Skip Link --- */
.skip-link {
    position: absolute;
    top: -100%;
    left: var(--space-sm);
    background: var(--color-midnight);
    color: var(--color-white);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    z-index: 10000;
    font-weight: 500;
    transition: top var(--transition);
}

.skip-link:focus {
    top: var(--space-sm);
}

/* --- Container --- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* --- Typography --- */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-midnight);
}

.section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-mint);
    margin-bottom: var(--space-sm);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: var(--space-md);
    line-height: 1.15;
}

.section-title em {
    font-style: italic;
    color: var(--color-mint);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-light);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

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

.lead {
    font-size: 1.125rem;
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: var(--space-md);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    padding: 0.875rem 2rem;
    border-radius: var(--radius-xl);
    transition: all var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--color-mint);
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(95, 191, 191, 0.35);
}

.btn-primary:hover {
    background: var(--color-mint-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(95, 191, 191, 0.45);
}

.btn-outline {
    background: transparent;
    color: var(--color-mint);
    border: 2px solid var(--color-mint);
}

.btn-outline:hover {
    background: var(--color-mint);
    color: var(--color-white);
}

.btn-outline-light {
    background: transparent;
    color: var(--color-white);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-outline-light:hover {
    background: var(--color-white);
    color: var(--color-midnight);
    border-color: var(--color-white);
}

.btn-small {
    padding: 0.625rem 1.5rem;
    font-size: 0.875rem;
}

.btn-full {
    width: 100%;
}

/* --- Header --- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(254, 253, 251, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: all var(--transition);
}

.site-header.scrolled {
    background: rgba(254, 253, 251, 0.97);
    border-bottom-color: var(--color-border);
    box-shadow: var(--shadow-sm);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

/* --- Logo --- */
.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.logo-icon {
    color: var(--color-mint);
    flex-shrink: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-line1 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-midnight);
}

.logo-line2 {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

/* --- Navigation --- */
.main-nav ul {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.main-nav a {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--color-text-light);
    transition: color var(--transition);
    position: relative;
}

.main-nav a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-mint);
    transition: width var(--transition);
}

.main-nav a:not(.btn):hover {
    color: var(--color-midnight);
}

.main-nav a:not(.btn):hover::after {
    width: 100%;
}

/* --- Mobile Nav Toggle --- */
.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    transition: background var(--transition);
}

.nav-toggle:hover {
    background: var(--color-sand);
}

.hamburger {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--color-midnight);
    position: relative;
    transition: all var(--transition);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 22px;
    height: 2px;
    background: var(--color-midnight);
    transition: all var(--transition);
}

.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }

.nav-toggle[aria-expanded="true"] .hamburger {
    background: transparent;
}

.nav-toggle[aria-expanded="true"] .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .hamburger::after {
    top: 0;
    transform: rotate(-45deg);
}

/* --- Hero --- */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--color-midnight);
}

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

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10, 22, 40, 0.82) 0%,
        rgba(10, 22, 40, 0.65) 50%,
        rgba(10, 22, 40, 0.50) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: var(--space-3xl) 0;
    max-width: 780px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--color-mint-light);
    background: rgba(95, 191, 191, 0.15);
    border: 1px solid rgba(95, 191, 191, 0.3);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-xl);
    margin-bottom: var(--space-lg);
}

.hero-headline {
    font-size: clamp(2.5rem, 5.5vw, 4.25rem);
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.1;
    margin-bottom: var(--space-md);
}

.headline-accent {
    color: var(--color-mint-light);
    font-style: italic;
}

.hero-subhead {
    font-size: clamp(1.0625rem, 1.5vw, 1.25rem);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
    max-width: 600px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-lg);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
    font-weight: 500;
}

.trust-item svg {
    color: var(--color-mint-light);
}

.hero-scroll {
    position: absolute;
    bottom: var(--space-lg);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    z-index: 1;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.5; transform: scaleY(0.7); }
}

/* --- About --- */
.about {
    padding: var(--space-3xl) 0;
    background: var(--color-cream);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.about-images {
    position: relative;
}

.about-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-img-main img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.about-img-secondary {
    position: absolute;
    bottom: -40px;
    right: -30px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 4px solid var(--color-cream);
}

.about-img-secondary img {
    width: 260px;
    height: 190px;
    object-fit: cover;
}

.about-accent-box {
    position: absolute;
    top: -20px;
    right: 40px;
    background: var(--color-mint);
    color: var(--color-white);
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.about-accent-box .accent-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.about-accent-box .accent-label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 500;
    opacity: 0.9;
    margin-top: 4px;
}

.about-content {
    padding: var(--space-md) 0;
}

.about-content .section-title {
    margin-bottom: var(--space-md);
}

.about-content p {
    color: var(--color-text-light);
    margin-bottom: var(--space-sm);
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-weight: 500;
    color: var(--color-text);
}

.feature-icon {
    color: var(--color-mint);
    flex-shrink: 0;
}

/* --- Amenities --- */
.amenities {
    padding: var(--space-3xl) 0;
    background: var(--color-sand-light);
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

.amenity-card {
    background: var(--color-white);
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    transition: all var(--transition);
}

.amenity-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-mint);
}

.amenity-icon {
    color: var(--color-mint);
    margin-bottom: var(--space-sm);
}

.amenity-card h3 {
    font-size: 1.125rem;
    margin-bottom: var(--space-xs);
    color: var(--color-midnight);
}

.amenity-card p {
    font-size: 0.9375rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

/* --- Experience --- */
.experience {
    padding: var(--space-3xl) 0;
    background: var(--color-cream);
}

.experience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: start;
}

.exp-item {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: var(--space-md);
    padding: var(--space-md) 0;
    border-bottom: 1px solid var(--color-border);
}

.exp-item:first-child {
    padding-top: 0;
}

.exp-item:last-child {
    border-bottom: none;
}

.exp-number {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-mint-pale);
    line-height: 1;
    align-self: start;
    margin-top: 4px;
}

.exp-text h4 {
    font-size: 1.0625rem;
    margin-bottom: 4px;
    color: var(--color-midnight);
}

.exp-text p {
    font-size: 0.9375rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

.experience-images {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.exp-img-row img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.exp-img-accent {
    background: var(--color-midnight);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    box-shadow: var(--shadow-lg);
}

.accent-quote {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.accent-quote svg {
    color: var(--color-mint);
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.accent-quote blockquote {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-style: italic;
    color: var(--color-white);
    line-height: 1.6;
}

/* --- Location --- */
.location {
    padding: var(--space-3xl) 0;
    background: var(--color-sand-light);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: start;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin: var(--space-lg) 0;
}

.loc-detail {
    display: flex;
    gap: var(--space-sm);
    align-items: flex-start;
}

.loc-icon {
    color: var(--color-mint);
    flex-shrink: 0;
    margin-top: 2px;
}

.loc-detail strong {
    display: block;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-midnight);
    margin-bottom: 2px;
}

.loc-detail span,
.loc-detail a {
    font-size: 0.9375rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

.loc-detail a:hover {
    color: var(--color-mint);
}

.nearby {
    margin-top: var(--space-lg);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--color-border);
}

.nearby h4 {
    font-size: 1rem;
    margin-bottom: var(--space-sm);
    color: var(--color-midnight);
}

.nearby ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.nearby li {
    position: relative;
    padding-left: var(--space-md);
    font-size: 0.9375rem;
    color: var(--color-text-light);
}

.nearby li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 6px;
    height: 6px;
    background: var(--color-mint);
    border-radius: 50%;
}

.location-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    min-height: 480px;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    min-height: 480px;
}

/* --- CTA / Contact --- */
.cta {
    padding: var(--space-3xl) 0;
    background: var(--color-cream);
}

.cta-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: start;
}

.cta-text {
    font-size: 1.0625rem;
    color: var(--color-text-light);
    line-height: 1.7;
    margin-top: var(--space-sm);
}

.cta-form-wrapper {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-border);
}

.cta-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    color: var(--color-midnight);
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: var(--font-body);
    font-size: 0.9375rem;
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-sm);
    background: var(--color-sand-light);
    color: var(--color-text);
    transition: all var(--transition);
    outline: none;
    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--color-mint);
    background: var(--color-white);
    box-shadow: 0 0 0 3px rgba(95, 191, 191, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--color-text-muted);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-note {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
    text-align: center;
    margin-top: var(--space-xs);
}

/* --- Form Success --- */
.form-success {
    text-align: center;
    padding: var(--space-xl) var(--space-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
}

.form-success .success-icon {
    color: var(--color-mint);
}

.form-success h3 {
    font-size: 1.5rem;
    color: var(--color-midnight);
}

.form-success p {
    color: var(--color-text-light);
    font-size: 0.9375rem;
}

.form-success .btn {
    margin-top: var(--space-sm);
}

/* --- Footer --- */
.site-footer {
    background: var(--color-midnight);
    color: rgba(255, 255, 255, 0.7);
    padding: var(--space-2xl) 0 var(--space-lg);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: var(--space-xl);
    padding-bottom: var(--space-xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo-light .logo-line1 {
    color: var(--color-white);
}

.logo-light .logo-line2 {
    color: rgba(255, 255, 255, 0.5);
}

.footer-brand p {
    margin-top: var(--space-sm);
    font-size: 0.9375rem;
    line-height: 1.7;
    max-width: 300px;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-white);
    margin-bottom: var(--space-md);
    font-family: var(--font-body);
}

.footer-links ul,
.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-links a {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--color-mint-light);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    font-size: 0.875rem;
    line-height: 1.6;
}

.footer-contact svg {
    color: var(--color-mint);
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition);
}

.footer-contact a:hover {
    color: var(--color-mint-light);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-sm);
    padding-top: var(--space-lg);
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.4);
}

/* --- Scroll Reveal (progressive enhancement) --- */
@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(24px);
        transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .reveal.revealed {
        opacity: 1;
        transform: translateY(0);
    }

    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .about-grid,
    .experience-grid,
    .location-grid,
    .cta-inner {
        grid-template-columns: 1fr;
    }

    .about-images {
        max-width: 560px;
    }

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

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

@media (max-width: 768px) {
    :root {
        --space-3xl: 5rem;
    }

    .nav-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(254, 253, 251, 0.98);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        padding: var(--space-lg);
        border-bottom: 1px solid var(--color-border);
        box-shadow: var(--shadow-lg);
        transform: translateY(-120%);
        opacity: 0;
        transition: all var(--transition);
        pointer-events: none;
    }

    .main-nav.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .main-nav ul {
        flex-direction: column;
        gap: var(--space-sm);
    }

    .main-nav a {
        display: block;
        padding: var(--space-sm) 0;
        font-size: 1.0625rem;
    }

    .main-nav a:not(.btn)::after {
        display: none;
    }

    .hero-content {
        padding: var(--space-2xl) 0;
    }

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

    .hero-actions .btn {
        width: 100%;
        text-align: center;
    }

    .hero-trust {
        gap: var(--space-sm);
    }

    .about-img-secondary {
        right: 0;
        bottom: -30px;
    }

    .about-img-secondary img {
        width: 200px;
        height: 150px;
    }

    .about-accent-box {
        right: 20px;
        top: -15px;
    }

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

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

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .hero-scroll {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-sm);
    }

    .hero-headline {
        font-size: clamp(2rem, 8vw, 2.75rem);
    }

    .about-img-main img {
        height: 300px;
    }

    .about-img-secondary {
        display: none;
    }
}
