/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
    --plum-deep: #3D1F2E;
    --plum: #7B3F5B;
    --plum-light: #A8607A;
    --plum-muted: #D4A0B5;
    --plum-pale: #F2E0E8;
    --plum-ghost: #FDF5F8;
    --amber: #C8943E;
    --amber-light: #D4A85C;
    --amber-pale: #FDF3E2;
    --cream: #FDF9F4;
    --cream-dark: #F7F0E6;
    --warm-white: #FFFCF8;
    --charcoal: #2A2226;
    --charcoal-light: #4A3F44;
    --text: #3D2E34;
    --text-light: #7A656D;
    --text-muted: #A89098;
    --white: #FFFFFF;
    --border: rgba(123, 63, 91, 0.12);
    --border-light: rgba(123, 63, 91, 0.06);
    --shadow-sm: 0 1px 3px rgba(61, 31, 46, 0.06);
    --shadow-md: 0 4px 20px rgba(61, 31, 46, 0.08);
    --shadow-lg: 0 8px 40px rgba(61, 31, 46, 0.12);
    --shadow-xl: 0 16px 60px rgba(61, 31, 46, 0.16);
    --font-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    --font-sans: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
    --duration: 0.6s;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    font-weight: 400;
    color: var(--text);
    background-color: var(--warm-white);
    line-height: 1.7;
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

ul {
    list-style: none;
}

/* ===== UTILITY ===== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

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

/* ===== SECTION EYEBROW ===== */
.section-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 16px;
}

/* ===== SECTION TITLE ===== */
.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 400;
    line-height: 1.2;
    color: var(--charcoal);
    margin-bottom: 24px;
}

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

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 560px;
    line-height: 1.8;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 14px 32px;
    border-radius: 2px;
    transition: all 0.4s var(--ease-out);
    white-space: nowrap;
}

.btn--primary {
    background: var(--plum);
    color: var(--white);
    border: 2px solid var(--plum);
}

.btn--primary:hover {
    background: var(--plum-deep);
    border-color: var(--plum-deep);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

.btn--outline:hover {
    background: var(--plum);
    color: var(--white);
    transform: translateY(-2px);
}

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

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

.btn--sm {
    padding: 10px 24px;
    font-size: 0.75rem;
}

.btn--lg {
    padding: 18px 40px;
    font-size: 0.875rem;
}

.btn--full {
    width: 100%;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(253, 249, 244, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: all 0.4s var(--ease-out);
}

.header.scrolled {
    background: rgba(253, 249, 244, 0.97);
    border-bottom-color: var(--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: 10px;
    color: var(--charcoal);
    transition: color 0.3s ease;
}

.logo:hover {
    color: var(--plum);
}

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

.logo--light:hover {
    color: var(--amber-light);
}

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

.logo--light .logo-icon {
    color: var(--amber-light);
}

.logo-text {
    font-family: var(--font-serif);
    font-size: 1.375rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.logo-dot {
    font-weight: 300;
    color: var(--plum);
}

.logo--light .logo-dot {
    color: var(--amber-light);
}

/* ===== NAVIGATION ===== */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 1001;
}

.nav-toggle-line {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--charcoal);
    transition: all 0.3s var(--ease-out);
    transform-origin: center;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-link {
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--charcoal-light);
    position: relative;
    padding: 4px 0;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--plum);
    transition: width 0.3s var(--ease-out);
}

.nav-link:hover {
    color: var(--plum);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link--cta {
    background: var(--plum);
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: 2px;
    letter-spacing: 0.08em;
}

.nav-link--cta::after {
    display: none;
}

.nav-link--cta:hover {
    background: var(--plum-deep);
    color: var(--white) !important;
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 80px;
    background: var(--cream);
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 40px 0 80px;
    flex: 1;
}

.hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 24px;
}

.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 400;
    line-height: 1.1;
    color: var(--charcoal);
    margin-bottom: 24px;
}

.hero-headline em {
    font-style: italic;
    color: var(--plum);
}

.hero-subtext {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
}

.hero-stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--plum);
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 6px;
}

.hero-stat-divider {
    width: 1px;
    height: 48px;
    background: var(--border);
}

/* HERO IMAGE */
.hero-image {
    position: relative;
    height: 700px;
}

.hero-image-main {
    position: relative;
    height: 100%;
    border-radius: 4px;
    overflow: hidden;
}

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

.hero-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(61, 31, 46, 0.2) 100%);
    border-radius: 4px;
}

.hero-image-accent {
    position: absolute;
    bottom: -30px;
    left: -40px;
    width: 220px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 4px solid var(--cream);
}

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

.hero-scroll {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    padding: 24px;
    color: var(--text-muted);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

/* ===== ABOUT ===== */
.about {
    padding: 120px 0;
    background: var(--warm-white);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image-col {
    position: relative;
}

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

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

.about-image-detail {
    position: absolute;
    bottom: -40px;
    right: -30px;
    width: 55%;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 4px solid var(--warm-white);
}

.about-image-detail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-content {
    padding: 20px 0;
}

.about-text {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 20px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 40px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

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

.feature-text {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--charcoal);
    line-height: 1.4;
}

/* ===== RESIDENCES ===== */
.residences {
    padding: 120px 0;
    background: var(--cream);
}

.residences .section-header {
    margin-bottom: 64px;
}

.residences .section-subtitle {
    margin: 0 auto;
}

.residences-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.residence-card {
    background: var(--white);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.5s var(--ease-out);
}

.residence-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.residence-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.residence-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out);
}

.residence-card:hover .residence-image img {
    transform: scale(1.05);
}

.residence-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--amber);
    color: var(--white);
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 2px;
}

.residence-info {
    padding: 32px;
}

.residence-name {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 12px;
}

.residence-desc {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 24px;
}

.residence-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

.residence-features li {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text);
}

.residence-features svg {
    color: var(--plum);
    flex-shrink: 0;
}

.residence-info .btn {
    width: 100%;
}

/* ===== AMENITIES ===== */
.amenities {
    padding: 120px 0;
    background: var(--warm-white);
}

.amenities-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 64px;
}

.amenities-image {
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.amenities-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.amenity-card {
    padding: 36px 28px;
    background: var(--cream);
    border-radius: 4px;
    border: 1px solid var(--border-light);
    transition: all 0.4s var(--ease-out);
}

.amenity-card:hover {
    background: var(--white);
    border-color: var(--plum-muted);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.amenity-icon {
    color: var(--plum);
    margin-bottom: 20px;
}

.amenity-name {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 10px;
}

.amenity-desc {
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ===== LOCATION ===== */
.location {
    padding: 120px 0;
    background: var(--cream);
}

.location-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.location-text {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 40px;
}

.location-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 40px;
}

.location-highlight {
    padding: 24px;
    background: var(--white);
    border-radius: 4px;
    border: 1px solid var(--border-light);
}

.highlight-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 600;
    color: var(--plum);
    line-height: 1;
    margin-bottom: 6px;
}

.highlight-label {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-light);
    letter-spacing: 0.02em;
}

.location-address {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 24px;
    background: var(--plum);
    border-radius: 4px;
    color: var(--white);
}

.location-address svg {
    color: var(--amber-light);
    flex-shrink: 0;
    margin-top: 2px;
}

.location-address address {
    font-style: normal;
    font-size: 0.9375rem;
    line-height: 1.7;
}

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

.map-placeholder {
    position: relative;
    height: 560px;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    background: var(--white);
    padding: 24px 32px;
    border-radius: 4px;
    box-shadow: var(--shadow-xl);
}

.map-overlay svg {
    color: var(--plum);
    margin: 0 auto 12px;
}

.map-overlay p {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 4px;
}

.map-overlay span {
    font-size: 0.8125rem;
    color: var(--text-light);
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: 120px 0;
    background: var(--plum-deep);
}

.testimonials .section-eyebrow {
    color: var(--amber-light);
}

.testimonials .section-title {
    color: var(--white);
    margin-bottom: 64px;
}

.testimonials .section-title em {
    color: var(--amber-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    padding: 40px 32px;
    transition: all 0.4s var(--ease-out);
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

.testimonial-quote {
    color: var(--amber-light);
    margin-bottom: 24px;
    opacity: 0.7;
}

.testimonial-text {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-style: italic;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 28px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--white);
}

.author-location {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 2px;
}

/* ===== CTA ===== */
.cta {
    padding: 120px 0;
    background: var(--cream);
}

.cta-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: center;
}

.cta-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    line-height: 1.2;
    color: var(--charcoal);
    margin-bottom: 20px;
}

.cta-title em {
    font-style: italic;
    color: var(--plum);
}

.cta-text {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    max-width: 480px;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* ===== CONTACT ===== */
.contact {
    padding: 120px 0;
    background: var(--warm-white);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-text {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

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

.detail-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.detail-value {
    font-size: 1rem;
    color: var(--charcoal);
    line-height: 1.6;
}

.detail-value a:hover {
    color: var(--plum);
}

/* ===== CONTACT FORM ===== */
.contact-form-wrapper {
    background: var(--cream);
    border-radius: 4px;
    padding: 48px;
    border: 1px solid var(--border);
}

.form-title {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 32px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 8px;
    letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    color: var(--charcoal);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 2px;
    outline: none;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--plum);
    box-shadow: 0 0 0 3px rgba(123, 63, 91, 0.1);
}

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

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

/* Form Success */
.form-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
}

.success-icon {
    color: var(--plum);
    margin-bottom: 20px;
}

.form-success h4 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 10px;
}

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

/* ===== FOOTER ===== */
.footer {
    background: var(--charcoal);
    color: var(--white);
    padding: 80px 0 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-tagline {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    margin-top: 16px;
    max-width: 300px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-col h5 {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--amber-light);
    margin-bottom: 20px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col a,
.footer-col span {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.35);
}

/* ===== ANIMATIONS ===== */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-container {
        gap: 40px;
    }

    .hero-image {
        height: 560px;
    }

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

    .residences-grid .residence-card:last-child {
        grid-column: span 2;
        max-width: 50%;
        margin: 0 auto;
    }

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

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

    .testimonials-grid .testimonial-card:last-child {
        grid-column: span 2;
        max-width: 50%;
        margin: 0 auto;
    }
}

@media (max-width: 900px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 48px;
        padding-bottom: 40px;
    }

    .hero-image {
        height: 480px;
        order: -1;
        max-width: 560px;
        margin: 0 auto;
        width: 100%;
    }

    .hero-image-accent {
        left: auto;
        right: -20px;
        bottom: -20px;
        width: 180px;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-image-col {
        max-width: 560px;
    }

    .amenities-header {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .amenities-image {
        max-width: 480px;
    }

    .location-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .location-map {
        max-width: 560px;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .contact-form-wrapper {
        padding: 32px;
    }

    .cta-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .cta-actions {
        align-items: center;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--cream);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 28px;
        box-shadow: var(--shadow-xl);
        transition: right 0.4s var(--ease-out);
        z-index: 1000;
    }

    .nav-menu.open {
        right: 0;
    }

    .nav-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.4);
        z-index: 999;
    }

    .nav-overlay.active {
        display: block;
    }

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

    .hero-stats {
        gap: 20px;
    }

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

    .residences-grid .residence-card:last-child {
        grid-column: span 1;
        max-width: 100%;
    }

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

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

    .testimonials-grid .testimonial-card:last-child {
        grid-column: span 1;
        max-width: 100%;
    }

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

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

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

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

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

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

    .hero-stats {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .hero-stat-divider {
        width: 48px;
        height: 1px;
    }

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

    .about-image-detail {
        right: -10px;
        bottom: -20px;
    }

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

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

    .contact-form-wrapper {
        padding: 24px;
    }

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