/* ========================================
   Hopkins SPI Beachfront Condo
   Styles — Emerald Green & Cream
   ======================================== */

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

:root {
    --emerald-900: #064e3b;
    --emerald-800: #065f46;
    --emerald-700: #047857;
    --emerald-600: #059669;
    --emerald-500: #10b981;
    --emerald-400: #34d399;
    --cream-50: #fefdf8;
    --cream-100: #fdf8f0;
    --cream-200: #f9f0e0;
    --cream-300: #f0e6cc;
    --sand: #e8dcc8;
    --sand-light: #f5efe5;
    --text-dark: #1a1a1a;
    --text-mid: #3d3d3d;
    --text-light: #6b6b6b;
    --white: #ffffff;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
    --shadow-xl: 0 16px 48px rgba(0,0,0,0.15);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--cream-50);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Decorative blobs */
.blob {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.12;
    pointer-events: none;
    z-index: 0;
}

.blob-1 {
    width: 600px;
    height: 600px;
    background: var(--emerald-500);
    top: -200px;
    right: -150px;
}

.blob-2 {
    width: 400px;
    height: 400px;
    background: var(--emerald-400);
    bottom: 20%;
    left: -100px;
}

.blob-3 {
    width: 300px;
    height: 300px;
    background: var(--sand);
    top: 50%;
    right: 10%;
}

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

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

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
    font-weight: 700;
}

.text-emerald {
    color: var(--emerald-700);
}

.text-gradient {
    background: linear-gradient(135deg, var(--emerald-600), var(--emerald-400));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-cream {
    color: var(--cream-200);
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-xl);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    white-space: nowrap;
}

.btn-primary {
    background: var(--emerald-700);
    color: var(--white);
    border-color: var(--emerald-700);
}

.btn-primary:hover {
    background: var(--emerald-800);
    border-color: var(--emerald-800);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(4, 120, 87, 0.35);
}

.btn-secondary {
    background: var(--white);
    color: var(--emerald-800);
    border-color: var(--emerald-200, var(--cream-200));
}

.btn-secondary:hover {
    border-color: var(--emerald-600);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-cream {
    background: var(--cream-100);
    color: var(--emerald-800);
    border-color: var(--cream-100);
}

.btn-cream:hover {
    background: var(--cream-200);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

.btn-outline-cream:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ---------- Section Labels ---------- */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--emerald-700);
    margin-bottom: 16px;
}

.label-line {
    display: inline-block;
    width: 32px;
    height: 2px;
    background: var(--emerald-500);
    border-radius: 2px;
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--text-dark);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ---------- Navigation ---------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(254, 253, 248, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 1px 0 rgba(0,0,0,0.06);
    padding: 10px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--text-dark);
}

.nav-logo-icon {
    width: 36px;
    height: 36px;
    background: var(--emerald-700);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.nav-logo-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
}

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

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-mid);
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--emerald-600);
    transition: var(--transition);
    border-radius: 2px;
}

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

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

.nav-link--cta {
    background: var(--emerald-700);
    color: var(--white) !important;
    padding: 10px 22px;
    border-radius: var(--radius-xl);
    font-weight: 600;
}

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

.nav-link--cta:hover {
    background: var(--emerald-800);
    transform: translateY(-1px);
}

/* Hamburger */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    position: relative;
    transition: var(--transition);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    transition: var(--transition);
}

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

.nav-toggle.active .hamburger {
    background: transparent;
}

.nav-toggle.active .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.nav-toggle.active .hamburger::after {
    top: 0;
    transform: rotate(-45deg);
}

/* Mobile overlay */
.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 998;
    opacity: 0;
    transition: var(--transition);
}

.mobile-overlay.active {
    opacity: 1;
}

/* ---------- Hero ---------- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--cream-50) 0%, var(--cream-100) 50%, var(--sand-light) 100%);
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(16, 185, 129, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.hero-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(4, 120, 87, 0.08);
    border: 1px solid rgba(4, 120, 87, 0.15);
    padding: 8px 16px;
    border-radius: var(--radius-xl);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--emerald-700);
    margin-bottom: 24px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--emerald-500);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.3); }
}

.hero-title {
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    color: var(--text-dark);
    line-height: 1.15;
    margin-bottom: 24px;
    font-weight: 700;
}

.hero-title em {
    font-style: italic;
    font-weight: 600;
}

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

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 48px;
}

/* Floating Stat Cards */
.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    padding: 14px 18px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.04);
}

.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.stat-card--1 { animation: float1 4s ease-in-out infinite; }
.stat-card--2 { animation: float2 4s ease-in-out infinite 0.5s; }
.stat-card--3 { animation: float3 4s ease-in-out infinite 1s; }

@keyframes float1 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-6px) rotate(-1deg); }
}

@keyframes float2 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-4px) rotate(1deg); }
}

@keyframes float3 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-5px) rotate(-0.5deg); }
}

.stat-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-card--1 .stat-icon { background: rgba(16, 185, 129, 0.1); color: var(--emerald-600); }
.stat-card--2 .stat-icon { background: rgba(52, 211, 153, 0.1); color: var(--emerald-500); }
.stat-card--3 .stat-icon { background: rgba(232, 220, 200, 0.6); color: var(--emerald-700); }

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

.stat-number {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-dark);
    line-height: 1.2;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-light);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 600px;
}

.hero-image-stack {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-img {
    position: absolute;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

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

.hero-img--main {
    width: 340px;
    height: 480px;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    z-index: 2;
}

.hero-img--main .hero-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(6, 78, 59, 0.3) 100%);
}

.hero-img--accent {
    width: 240px;
    height: 180px;
    z-index: 3;
    border: 4px solid var(--white);
}

.hero-img--top {
    top: 20px;
    right: 0;
}

.hero-img--bottom {
    bottom: 40px;
    left: 0;
}

/* Geometric shapes */
.geo-shape {
    position: absolute;
    pointer-events: none;
    z-index: 1;
}

.geo-circle {
    width: 120px;
    height: 120px;
    border: 3px solid rgba(16, 185, 129, 0.2);
    border-radius: 50%;
    top: -10px;
    left: 40px;
}

.geo-dots {
    width: 60px;
    height: 60px;
    background-image: radial-gradient(circle, var(--emerald-400) 1.5px, transparent 1.5px);
    background-size: 10px 10px;
    opacity: 0.4;
    bottom: 80px;
    right: 60px;
}

.geo-stripe {
    width: 80px;
    height: 4px;
    background: repeating-linear-gradient(90deg, var(--emerald-400) 0px, var(--emerald-400) 8px, transparent 8px, transparent 16px);
    bottom: 20px;
    right: 30px;
    transform: rotate(-30deg);
}

/* ---------- About Section ---------- */
.about {
    padding: 120px 0;
    position: relative;
    z-index: 1;
    background: var(--white);
}

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

.about-content {
    max-width: 500px;
}

.about-text {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 16px;
}

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

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-mid);
}

.feature-check {
    width: 22px;
    height: 22px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--emerald-600);
    flex-shrink: 0;
}

.about-image-wrapper {
    position: relative;
    height: 600px;
}

.about-img-main {
    position: absolute;
    width: 340px;
    height: 440px;
    top: 0;
    right: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.about-img-accent {
    position: absolute;
    width: 260px;
    height: 185px;
    bottom: 40px;
    left: 0;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--white);
}

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

.about-accent-block {
    position: absolute;
    bottom: 0;
    right: 40px;
    background: var(--emerald-800);
    color: var(--white);
    padding: 24px 28px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    z-index: 2;
}

.accent-block-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.accent-number {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.accent-label {
    font-size: 0.8rem;
    opacity: 0.8;
    line-height: 1.4;
}

/* ---------- Amenities Section ---------- */
.amenities {
    padding: 120px 0 0;
    position: relative;
    z-index: 1;
    background: var(--cream-50);
}

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

.amenity-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.04);
    position: relative;
    overflow: hidden;
}

.amenity-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--emerald-500), var(--emerald-400));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

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

.amenity-card:hover::before {
    transform: scaleX(1);
}

.amenity-icon-wrap {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.08), rgba(16, 185, 129, 0.04));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--emerald-700);
    margin-bottom: 20px;
    transition: var(--transition);
}

.amenity-card:hover .amenity-icon-wrap {
    background: var(--emerald-700);
    color: var(--white);
}

.amenity-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

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

.amenity-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--emerald-700);
    background: rgba(16, 185, 129, 0.08);
    padding: 4px 10px;
    border-radius: var(--radius-xl);
}

/* Decorative stripe */
.amenities-stripe {
    display: flex;
    height: 8px;
    margin-top: 0;
}

.stripe-segment {
    flex: 1;
}

.stripe-emerald { background: var(--emerald-600); }
.stripe-cream { background: var(--cream-200); }

/* ---------- Gallery Section ---------- */
.gallery {
    padding: 120px 0;
    position: relative;
    z-index: 1;
    background: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto;
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(6, 78, 59, 0.7) 100%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-caption {
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
}

.gallery-item--large {
    grid-column: span 7;
    grid-row: span 2;
    min-height: 500px;
}

.gallery-item--wide {
    grid-column: span 7;
    min-height: 240px;
}

.gallery-item:not(.gallery-item--large):not(.gallery-item--wide) {
    min-height: 240px;
}

/* ---------- Location Section ---------- */
.location {
    padding: 120px 0;
    position: relative;
    z-index: 1;
    background: var(--cream-50);
}

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

.location-text {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 36px;
}

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

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

.detail-icon {
    width: 48px;
    height: 48px;
    background: rgba(16, 185, 129, 0.08);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--emerald-700);
    flex-shrink: 0;
}

.detail-label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-light);
    margin-bottom: 2px;
}

.detail-value {
    display: block;
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.6;
}

.detail-value a {
    color: var(--emerald-700);
    transition: var(--transition);
}

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

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

.map-wrapper {
    position: relative;
    padding-bottom: 83.33%;
    height: 0;
}

.map-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ---------- CTA Section ---------- */
.cta {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--emerald-900) 0%, var(--emerald-700) 60%, var(--emerald-600) 100%);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 10% 90%, rgba(52, 211, 153, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 90% 10%, rgba(254, 253, 248, 0.06) 0%, transparent 40%);
    pointer-events: none;
}

.cta-content {
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 8px 16px;
    border-radius: var(--radius-xl);
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
    margin-bottom: 24px;
}

.cta-title {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
}

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

.cta-text {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.8;
    margin-bottom: 40px;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.cta-shape {
    position: absolute;
    pointer-events: none;
}

.cta-circle-1 {
    width: 300px;
    height: 300px;
    border: 2px solid rgba(255,255,255,0.06);
    border-radius: 50%;
    top: -80px;
    right: -80px;
}

.cta-circle-2 {
    width: 180px;
    height: 180px;
    border: 2px solid rgba(255,255,255,0.05);
    border-radius: 50%;
    bottom: -40px;
    left: 5%;
}

.cta-triangle {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 40px 40px;
    border-color: transparent transparent rgba(255,255,255,0.05) transparent;
    bottom: 15%;
    right: 8%;
    transform: rotate(30deg);
}

/* ---------- Contact Section ---------- */
.contact {
    padding: 120px 0;
    position: relative;
    z-index: 1;
    background: var(--white);
}

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

.contact-text {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 36px;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: var(--cream-50);
    border-radius: var(--radius-md);
    transition: var(--transition);
    border: 1px solid transparent;
}

.contact-card:hover {
    border-color: rgba(16, 185, 129, 0.2);
    transform: translateX(4px);
}

.contact-card-icon {
    width: 48px;
    height: 48px;
    background: rgba(16, 185, 129, 0.08);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--emerald-700);
    flex-shrink: 0;
}

.contact-card-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-light);
    margin-bottom: 2px;
}

.contact-card-value {
    display: block;
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 500;
}

.contact-card a.contact-card-value {
    color: var(--emerald-700);
}

.contact-card a.contact-card-value:hover {
    color: var(--emerald-500);
}

/* Form */
.contact-form-wrapper {
    max-width: 100%;
}

.form-card {
    background: var(--cream-50);
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 1px solid rgba(0,0,0,0.04);
}

.form-title {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 28px;
}

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

.form-label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-mid);
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid var(--cream-200);
    border-radius: var(--radius-sm);
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    color: var(--text-dark);
    background: var(--white);
    transition: var(--transition);
    outline: none;
}

.form-input:focus {
    border-color: var(--emerald-500);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.form-input::placeholder {
    color: var(--text-light);
}

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

/* Success message */
.form-success {
    display: none;
    text-align: center;
    padding: 40px 20px;
}

.form-success.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.success-icon {
    width: 72px;
    height: 72px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--emerald-600);
}

.success-title {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.success-text {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ---------- Footer ---------- */
.footer {
    background: var(--emerald-900);
    color: var(--white);
    padding: 80px 0 0;
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 60px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-logo-icon {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.12);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-desc {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    max-width: 280px;
}

.footer-heading {
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.4);
    margin-bottom: 20px;
}

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

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

.footer-links a:hover {
    color: var(--emerald-400);
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-copyright,
.footer-address {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.4);
}

/* ---------- Scroll Animations ---------- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
    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; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .hero-grid {
        gap: 40px;
    }
    
    .hero-visual {
        height: 480px;
    }
    
    .hero-img--main {
        width: 280px;
        height: 400px;
    }
    
    .hero-img--accent {
        width: 200px;
        height: 150px;
    }
    
    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-item--large {
        grid-column: span 12;
        min-height: 360px;
    }
    
    .gallery-item--wide {
        grid-column: span 6;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 900px) {
    .about-grid,
    .location-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .about-image-wrapper {
        height: 450px;
        order: -1;
    }
    
    .about-img-main {
        width: 260px;
        height: 340px;
    }
    
    .about-img-accent {
        width: 200px;
        height: 145px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--cream-50);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 24px;
        box-shadow: var(--shadow-xl);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .mobile-overlay {
        display: block;
    }
    
    .nav-toggle {
        display: block;
    }
    
    .nav-link {
        font-size: 1.1rem;
    }
    
    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .hero-visual {
        height: 380px;
        order: -1;
    }
    
    .hero-img--main {
        width: 220px;
        height: 300px;
        right: 50%;
        transform: translateX(50%) translateY(-50%);
    }
    
    .hero-img--accent {
        width: 160px;
        height: 120px;
    }
    
    .hero-img--top {
        top: 0;
        right: 10px;
    }
    
    .hero-img--bottom {
        bottom: 20px;
        left: 10px;
    }
    
    .hero-stats {
        gap: 8px;
    }
    
    .stat-card {
        padding: 10px 14px;
    }
    
    .stat-icon {
        width: 34px;
        height: 34px;
    }
    
    .amenities-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item--large,
    .gallery-item--wide {
        grid-column: span 1;
        min-height: 240px;
    }
    
    .gallery-item:not(.gallery-item--large):not(.gallery-item--wide) {
        min-height: 200px;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .form-card {
        padding: 28px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.9rem;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .about-image-wrapper {
        height: 360px;
    }
    
    .about-img-main {
        width: 200px;
        height: 270px;
    }
    
    .about-img-accent {
        width: 160px;
        height: 115px;
    }
    
    .about-accent-block {
        right: 20px;
        padding: 18px 20px;
    }
    
    .accent-number {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .cta-title {
        font-size: 1.6rem;
    }
}
