/*

TemplateMo 617 Pixel Forge
https://templatemo.com/tm-617-pixel-forge

*/

:root {
    --cyan: #00f0ff;
    --magenta: #ff2d6a;
    --purple: #a855f7;
    --deep-purple: #7c3aed;
    --dark-bg: #0a0a0f;
    --card-bg: rgba(255, 255, 255, 0.03);
    --card-border: rgba(255, 255, 255, 0.08);
    --text-main: #e8e8ed;
    --text-muted: #6b6b7a;
    --container-max: 1100px;
}

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

html {
    scroll-behavior: smooth;
    background: var(--dark-bg);
}

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

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    width: 100%;
}

/* Grain overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
    z-index: 9999;
}

/* Ambient background glow */
.ambient-glow {
    position: fixed;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.15;
    pointer-events: none;
    z-index: -1;
}

.glow-1 {
    top: -200px;
    right: -100px;
    background: #2dd4bf;
    opacity: 0.18;
}

.glow-2 {
    bottom: 20%;
    left: -200px;
    background: #ff7e5f;
    opacity: 0.2;
}

.glow-3 {
    bottom: -200px;
    right: 20%;
    background: #f6c177;
    opacity: 0.2;
}

/* Palm Tree Decorations */
.palm {
    position: absolute;
    top: 160px;
    width: clamp(160px, 22vw, 320px);
    height: auto;
    opacity: 0.32;
    pointer-events: none;
    z-index: 0;
    filter: drop-shadow(0 0 30px rgba(246, 193, 119, 0.35));
    transform-origin: bottom center;
}

.palm-left {
    left: -2%;
    transform: rotate(-6deg);
    animation: palm-sway 7s ease-in-out infinite;
}

.palm-right {
    right: -2%;
    transform: scaleX(-1) rotate(-6deg);
    animation: palm-sway-right 8s ease-in-out infinite;
}

@keyframes palm-sway {
    0%, 100% { transform: rotate(-6deg); }
    50% { transform: rotate(-2deg); }
}

@keyframes palm-sway-right {
    0%, 100% { transform: scaleX(-1) rotate(-6deg); }
    50% { transform: scaleX(-1) rotate(-2deg); }
}

@media (max-width: 768px) {
    .palm {
        opacity: 0.1;
        width: 130px;
    }
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 90px;
    padding: 0 4%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
    backdrop-filter: blur(20px);
    background: rgba(10, 10, 15, 0.7);
    border-bottom: 1px solid var(--card-border);
}

.nav-inner {
    max-width: var(--container-max);
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    height: 48px;
    flex-shrink: 0;
}

.logo img {
    display: block;
    width: 190px;
    height: 48px;
    object-fit: cover;
    object-position: center 22%;
}

.logo .logo-ksr {
    width: 165px;
    height: 42px;
    object-fit: cover;
    object-position: center;
}

.logo-divider {
    width: 1px;
    height: 60%;
    background: rgba(255, 255, 255, 0.25);
    flex-shrink: 0;
}

.nav-links {
    display: flex;
    gap: 1.8rem;
    list-style: none;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    white-space: nowrap;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s ease;
    padding: 0.5rem 0.8rem;
    border-radius: 4px;
    display: inline-block;
    transform: scale(1);
}

.nav-links a:hover {
    color: var(--text-main);
    background: rgba(255, 255, 255, 0.06);
    transform: scale(1.08);
}

.nav-cta {
    padding: 0.65rem 1.2rem;
    white-space: nowrap;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    font-family: 'Space Mono', monospace;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
}

.nav-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
}

.nav-cta:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-1px);
}

.nav-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.55rem 0.85rem;
    font-size: 0.72rem;
    text-decoration: none;
    letter-spacing: 0.2px;
}

.nav-phone svg {
    width: 15px;
    height: 15px;
    color: #e6a45f;
    flex-shrink: 0;
}

/* Floating WhatsApp button */
.wa-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 1000;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    animation: waPulse 2.4s infinite;
}

.wa-float svg {
    width: 32px;
    height: 32px;
}

.wa-float:hover {
    transform: scale(1.08);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.6);
}

@keyframes waPulse {
    0% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45), 0 0 0 16px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0); }
}

@media (max-width: 600px) {
    .wa-float {
        width: 52px;
        height: 52px;
        right: 16px;
        bottom: 16px;
    }
    .wa-float svg {
        width: 28px;
        height: 28px;
    }
}

/* Hero Section - Asymmetrical */
.hero {
    min-height: 100vh;
    padding: 10rem 4% 4rem;
    display: flex;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, rgba(246, 193, 119, 0.22) 0%, rgba(255, 126, 95, 0.12) 35%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
    max-width: var(--container-max);
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-content {
    padding-left: 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 0.75rem;
    font-family: 'Space Mono', monospace;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.hero-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--text-muted);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.hero h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3.5rem, 8vw, 7rem);
    line-height: 0.95;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.hero h1 span {
    white-space: nowrap;
}

.hero h1 .line-1 {
    display: block;
    color: var(--text-main);
}

.hero h1 .line-2 {
    display: block;
    background: linear-gradient(90deg, #c97b3c, #e6a45f, #f3cfa0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero h1 .line-3 {
    display: block;
    color: var(--text-main);
    opacity: 0.55;
    font-size: clamp(1.6rem, 5.2vw, 3.4rem);
    white-space: normal;
    letter-spacing: 1px;
    line-height: 1.1;
}

.hero-desc {
    color: var(--text-muted);
    font-size: 1.25rem;
    max-width: 450px;
    margin-bottom: 2.5rem;
    font-weight: 300;
    line-height: 1.7;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--card-border);
}

.stat {
    text-align: left;
}

.stat-value {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    color: var(--text-main);
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-family: 'Space Mono', monospace;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Generator Demo */
.hero-demo {
    position: relative;
    z-index: 1;
}

.demo-container {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 2rem;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    max-width: 640px;
    max-height: 640px;
}

.demo-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.demo-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.demo-dot:nth-child(1) { background: #ff5f57; }
.demo-dot:nth-child(2) { background: #ffbd2e; }
.demo-dot:nth-child(3) { background: #28c840; }

.prompt-area {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--card-border);
    border-radius: 6px;
    padding: 1.2rem;
    margin-bottom: 1rem;
}

.prompt-label {
    font-family: 'Space Mono', monospace;
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.prompt-input {
    width: 100%;
    background: transparent;
    border: none;
    color: var(--text-main);
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    resize: none;
    outline: none;
}

.prompt-input::placeholder {
    color: var(--text-muted);
}

.demo-controls {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.control-group {
    flex: 1;
    min-width: 120px;
}

.control-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-bottom: 0.4rem;
    display: block;
}

.control-select {
    width: 100%;
    padding: 0.6rem 1rem;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--card-border);
    border-radius: 6px;
    color: var(--text-main);
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    cursor: pointer;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b6b7a' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.control-select:focus {
    border-color: var(--text-main);
}

.control-select option {
    background: #1a1a22;
    color: var(--text-main);
    padding: 0.5rem;
}

.aspect-ratios {
    display: flex;
    gap: 0.5rem;
}

.aspect-btn {
    padding: 0.6rem 1rem;
    background: transparent;
    border: 1px solid var(--card-border);
    border-radius: 6px;
    color: var(--text-muted);
    font-family: 'Space Mono', monospace;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.aspect-btn:hover {
    border-color: rgba(255,255,255,0.2);
    color: var(--text-main);
}

.aspect-btn.active {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.25);
    color: var(--text-main);
}

.generate-btn {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: #fff;
    font-family: 'Space Mono', monospace;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
}

.generate-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
}

.generate-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-1px);
}

.generate-btn:active {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(0);
}

.generate-btn.loading {
    pointer-events: none;
}

.generate-btn .btn-text {
    transition: opacity 0.3s;
}

.generate-btn.loading .btn-text {
    opacity: 0;
}

.generate-btn .loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: white;
    border-radius: 50%;
    opacity: 0;
    animation: none;
}

.generate-btn.loading .loader {
    opacity: 1;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Generated Image Display */
.output-area {
    position: relative;
}

.output-placeholder {
    aspect-ratio: 1;
    background: rgba(0,0,0,0.3);
    border: 1px dashed var(--card-border);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.output-placeholder.has-image {
    border: none;
    background: none;
}

.output-placeholder svg {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
    opacity: 0.3;
}

.output-placeholder p {
    font-size: 0.85rem;
}

.output-slider {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.output-slider .slides {
    position: relative;
    aspect-ratio: 1;
    width: 100%;
}

.output-slider .slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.output-slider .slide.active {
    opacity: 1;
}

.slider-dots {
    position: absolute;
    top: 0.75rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 2;
}

.slider-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    padding: 0;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.4);
    transition: all 0.25s ease;
}

.slider-dots .dot.active {
    background: #f3cfa0;
    width: 22px;
    border-radius: 4px;
}

.output-slider.hidden {
    display: none;
}

.generated-image {
    width: 100%;
    border-radius: 8px;
    display: none;
    animation: fadeIn 0.4s ease;
}

.generated-image.visible {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.image-actions {
    display: none;
    gap: 0.5rem;
    margin-top: 1rem;
}

.image-actions.visible {
    display: flex;
}

.action-btn {
    flex: 1;
    padding: 0.7rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--card-border);
    border-radius: 6px;
    color: var(--text-muted);
    font-family: 'Space Mono', monospace;
    font-size: 0.7rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

.action-btn:hover {
    border-color: rgba(255,255,255,0.2);
    color: var(--text-main);
    background: rgba(255,255,255,0.05);
}

/* Floating decoration */
.floating-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    padding: 0.8rem 1.4rem;
    font-family: 'Space Mono', monospace;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    z-index: 10;
    color: var(--text-main);
}

.badge-1 {
    top: -20px;
    right: 40px;
    animation: float 4s ease-in-out infinite;
}

.badge-2 {
    bottom: 80px;
    left: -30px;
    animation: float 4s ease-in-out infinite 1s;
}

/* Gallery Popup */
.gallery-popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.gallery-popup.active {
    opacity: 1;
    visibility: visible;
}

.popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
}

.popup-content {
    position: relative;
    max-width: 800px;
    max-height: 90vh;
    width: 90%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s ease;
}

.gallery-popup.active .popup-content {
    transform: scale(1) translateY(0);
}

.popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.2s ease;
}

.popup-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.popup-image-container {
    width: 100%;
    max-height: 70vh;
    overflow: hidden;
}

.popup-image {
    width: 100%;
    height: auto;
    display: block;
}

.popup-info {
    padding: 1.5rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.popup-prompt {
    font-size: 1rem;
    color: var(--text-main);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-style: italic;
}

.popup-prompt::before {
    content: '"';
}

.popup-prompt::after {
    content: '"';
}

.popup-style {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    font-family: 'Space Mono', monospace;
    font-size: 0.75rem;
    color: var(--text-muted);
}

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

/* Gallery Section */
.gallery-section {
    padding: 6rem 4%;
    position: relative;
}

.gallery-inner {
    max-width: var(--container-max);
    margin: 0 auto;
}

.section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 3rem;
    gap: 2rem;
    text-align: center;
}

.section-header > div {
    text-align: center;
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1;
    letter-spacing: 2px;
    text-align: center;
}

.section-title span {
    background: linear-gradient(90deg, #c97b3c, #e6a45f, #f3cfa0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 500px;
    margin-top: 0.5rem;
    line-height: 1.7;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.filter-tabs {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-tab {
    padding: 0.6rem 1.2rem;
    background: transparent;
    border: 1px solid var(--card-border);
    border-radius: 4px;
    color: var(--text-muted);
    font-family: 'Space Mono', monospace;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-tab:hover {
    border-color: rgba(255,255,255,0.2);
    color: var(--text-main);
}

.filter-tab.active {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.25);
    color: var(--text-main);
}

/* Bento Gallery Grid */
.bento-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 200px);
    gap: 1.2rem;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s;
}

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

.item-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.2rem;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s;
    z-index: 2;
}

.gallery-item:hover .item-info {
    transform: translateY(0);
    opacity: 1;
}

.item-prompt {
    font-size: 0.8rem;
    color: var(--text-main);
    margin-bottom: 0.3rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.item-style {
    font-family: 'Space Mono', monospace;
    font-size: 0.65rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

/* Bento Layout Variations */
.gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item:nth-child(5) {
    grid-column: span 2;
}

.gallery-item:nth-child(8) {
    grid-column: span 2;
}

/* Features Section - Redesigned Human-Crafted */
.features-section {
    padding: 6rem 4%;
}

.features-inner {
    max-width: var(--container-max);
    margin: 0 auto;
}

.features-header {
    text-align: center;
    margin-bottom: 4rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.feature-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.2s ease;
}

.feature-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

/* Unique card accents - each card gets different treatment */
.feature-card:nth-child(1) {
    border-top: 2px solid #4a4a52;
}

.feature-card:nth-child(2)::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255,255,255,0.05), transparent);
}

.feature-card:nth-child(3) {
    border-left: 2px solid #4a4a52;
}

.feature-card:nth-child(4)::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 50%;
}

.feature-card:nth-child(5) {
    border-bottom: 2px solid #4a4a52;
}

.feature-card.highlight {
    grid-row: span 2;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-left: 3px solid #5a5a62;
}

.feature-card.highlight::before {
    content: '★';
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    opacity: 0.3;
}

/* Icon styling - varied, not uniform */
.feature-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
}

.feature-icon svg {
    width: 40px;
    height: 40px;
    stroke-width: 1.5;
}

/* Each icon gets subtle treatment */
.feature-card:nth-child(1) .feature-icon svg {
    color: var(--text-main);
    opacity: 0.8;
}

.feature-card:nth-child(2) .feature-icon svg {
    color: var(--text-muted);
}

.feature-card:nth-child(3) .feature-icon svg {
    color: var(--text-main);
    opacity: 0.8;
}

.feature-card:nth-child(4) .feature-icon svg {
    color: var(--text-muted);
}

.feature-card:nth-child(5) .feature-icon svg {
    color: var(--text-main);
    opacity: 0.8;
}

/* Decorative number for each card */
.feature-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: var(--text-main);
    opacity: 0.1;
    line-height: 1;
}

.feature-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 1px;
    margin-bottom: 0.8rem;
}

.feature-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
}

.feature-stat {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--card-border);
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.feature-stat-value {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: var(--text-main);
}

.feature-stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* How It Works */
.how-section {
    padding: 6rem 4%;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.01), transparent);
}

.how-inner {
    max-width: var(--container-max);
    margin: 0 auto;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: var(--container-max);
    margin: 3.5rem auto 0;
}

.why-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 2rem 1.8rem 1.6rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
    border: 1px solid var(--card-border);
    border-radius: 18px;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #c97b3c, #e6a45f, #f3cfa0);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.why-card:hover {
    transform: translateY(-6px);
    border-color: rgba(230, 164, 95, 0.4);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.why-card:hover::before { opacity: 1; }

.why-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.4rem;
}

.why-icon {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(230, 164, 95, 0.12);
    border: 1px solid rgba(230, 164, 95, 0.25);
    color: #e6a45f;
}

.why-icon svg { width: 26px; height: 26px; }

.why-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.6rem;
    line-height: 1;
    letter-spacing: 1px;
    background: linear-gradient(180deg, rgba(243, 207, 160, 0.55), rgba(201, 123, 60, 0.15));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.why-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    letter-spacing: 1px;
    margin-bottom: 0.7rem;
    color: var(--text-main);
}

.why-desc {
    color: var(--text-muted);
    font-size: 0.98rem;
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.why-card.expanded .why-desc {
    -webkit-line-clamp: unset;
    line-clamp: unset;
    overflow: visible;
}

.why-readmore {
    align-self: flex-start;
    margin-top: 0.9rem;
    padding: 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Space Mono', monospace;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #e6a45f;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: color 0.2s ease;
}

.why-readmore::after {
    content: '';
    width: 7px;
    height: 7px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.25s ease;
}

.why-card.expanded .why-readmore::after {
    transform: rotate(-135deg);
}

.why-readmore:hover { color: #f3cfa0; }

/* Pricing Section */
.pricing-section {
    padding: 6rem 4%;
}

.pricing-inner {
    max-width: var(--container-max);
    margin: 0 auto;
}

.pricing-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.pricing-toggle span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.pricing-toggle span.active {
    color: var(--text-main);
}

.toggle-switch {
    width: 50px;
    height: 26px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    position: relative;
    cursor: pointer;
}

.toggle-switch::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 18px;
    height: 18px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    transition: transform 0.3s;
}

.toggle-switch.yearly::after {
    transform: translateX(24px);
}

.save-badge {
    padding: 0.3rem 0.6rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    font-family: 'Space Mono', monospace;
    font-size: 0.7rem;
    color: var(--text-main);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.price-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 4px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.2s ease;
}

.price-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

.price-card.popular {
    border-color: #5a5a62;
    background: var(--card-bg);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.4rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-family: 'Space Mono', monospace;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.plan-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.plan-desc {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.plan-price {
    margin-bottom: 1.5rem;
}

.price-value {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    line-height: 1;
}

.price-period {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.price-yearly-total {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.3rem;
    height: 1.3em;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.price-yearly-total.visible {
    visibility: visible;
    opacity: 1;
}

.price-yearly-total span {
    color: var(--text-main);
    font-weight: 500;
}

.plan-features {
    list-style: none;
    margin-bottom: 2rem;
}

.plan-features li {
    padding: 0.6rem 0;
    font-size: 1rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.plan-features li::before {
    content: '✓';
    color: var(--text-main);
    font-weight: bold;
}

.plan-btn {
    width: 100%;
    padding: 1rem;
    background: transparent;
    border: 1px solid #4a4a52;
    border-radius: 6px;
    color: var(--text-main);
    font-family: 'Space Mono', monospace;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.plan-btn:hover {
    border-color: #6a6a72;
    background: rgba(255, 255, 255, 0.03);
}

.price-card.popular .plan-btn {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-weight: 700;
    position: relative;
    overflow: hidden;
}

.price-card.popular .plan-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
}

.price-card.popular .plan-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

/* FAQ Section */
.faq-section {
    padding: 6rem 4%;
    max-width: 800px;
    margin: 0 auto;
}

.faq-list {
    margin-top: 3rem;
}

.faq-item {
    border-bottom: 1px solid var(--card-border);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 0;
    background: transparent;
    border: none;
    text-align: left;
    color: var(--text-main);
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: '+';
    font-family: 'Space Mono', monospace;
    font-size: 1.5rem;
    color: var(--text-muted);
    transition: transform 0.3s;
}

.faq-item.open .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer p {
    padding-bottom: 1.5rem;
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
}

.faq-item.open .faq-answer {
    max-height: 200px;
}

/* CTA Section - Redesigned */
.cta-section {
    padding: 8rem 4%;
    position: relative;
    overflow: hidden;
}

.cta-section::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(246, 193, 119, 0.16) 0%, rgba(255, 126, 95, 0.08) 40%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.cta-box {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.cta-content {
    position: relative;
}

.cta-eyebrow {
    font-family: 'Space Mono', monospace;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.cta-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: 2px;
    line-height: 1;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, #c97b3c, #e6a45f, #f3cfa0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-title span {
    display: block;
    color: var(--text-muted);
    font-size: 0.5em;
    margin-top: 0.3em;
}

.cta-desc {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 540px;
    line-height: 1.75;
    margin-bottom: 1.1rem;
}

.cta-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin: 1.75rem 0 2rem;
}

.cta-fact {
    display: flex;
    flex-direction: column;
    padding: 0.7rem 1.1rem;
    border-radius: 14px;
    background: rgba(246, 193, 119, 0.08);
    border: 1px solid rgba(246, 193, 119, 0.22);
}

.cta-fact strong {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    letter-spacing: 1px;
    background: linear-gradient(90deg, #e6a45f, #f3cfa0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-fact span {
    font-family: 'Space Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* RERA badge */
.rera-badge {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.75rem;
    padding: 0.85rem 1.1rem;
    border: 1px solid rgba(246, 193, 119, 0.3);
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(201, 123, 60, 0.12), rgba(246, 193, 119, 0.06));
}

.rera-approved {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    background: linear-gradient(135deg, #c97b3c, #e6a45f);
    color: #1a120b;
    font-family: 'Space Mono', monospace;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    white-space: nowrap;
}

.rera-approved svg {
    width: 14px;
    height: 14px;
}

.rera-no {
    font-family: 'Space Mono', monospace;
    font-size: 0.78rem;
    letter-spacing: 0.5px;
    color: #f3cfa0;
    word-break: break-all;
}

.cta-btn-primary {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #c97b3c, #e6a45f);
    border: none;
    color: #1a120b;
    font-family: 'Space Mono', monospace;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
}

.cta-btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
}

.cta-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(230, 164, 95, 0.4);
}

.cta-btn-secondary {
    padding: 1rem 2rem;
    background: transparent;
    border: 1px solid #4a4a52;
    color: var(--text-main);
    font-family: 'Space Mono', monospace;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cta-btn-secondary:hover {
    border-color: #6a6a72;
    background: rgba(255, 255, 255, 0.03);
}

.cta-visual {
    position: relative;
    max-width: 400px;
    justify-self: end;
}

.cta-demo-card {
    background: linear-gradient(160deg, rgba(40, 30, 20, 0.55), rgba(20, 16, 12, 0.65));
    border: 1px solid rgba(246, 193, 119, 0.28);
    border-radius: 16px;
    padding: 1.5rem;
    position: relative;
    backdrop-filter: blur(14px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(201, 123, 60, 0.12);
}

.cta-demo-prompt {
    margin: 0 0 1.25rem;
    padding: 0.5rem 0 0.75rem 2.75rem;
    position: relative;
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.25rem, 2vw, 1.7rem);
    line-height: 1.2;
    letter-spacing: 0.5px;
    color: var(--text-main);
}

.cta-demo-prompt::before {
    content: '“';
    position: absolute;
    top: -0.35em;
    left: 0;
    font-family: Georgia, serif;
    font-size: 3.5rem;
    line-height: 1;
    background: linear-gradient(135deg, #c97b3c, #f3cfa0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-demo-prompt cite {
    display: block;
    margin-top: 0.75rem;
    font-family: 'Space Mono', monospace;
    font-style: normal;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #e6a45f;
}

.cta-demo-result {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

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

.cta-demo-meta {
    display: none;
}

.cta-demo-time {
    font-family: 'Space Mono', monospace;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.cta-demo-time span {
    color: var(--text-main);
}

.cta-demo-actions {
    display: flex;
    gap: 0.5rem;
}

.cta-demo-action {
    width: 28px;
    height: 28px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--card-border);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
}

.cta-users {
    position: absolute;
    bottom: -15px;
    left: 1rem;
    display: flex;
    align-items: center;
    background: var(--dark-bg);
    border: 1px solid var(--card-border);
    padding: 0.5rem 1rem;
    border-radius: 50px;
}

.cta-user-avatars {
    display: flex;
    margin-right: 0.8rem;
}

.cta-user-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-left: -8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.7);
}

.cta-user-avatar:first-child {
    margin-left: 0;
}

.cta-user-count {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.cta-user-count span {
    color: var(--text-main);
    font-weight: 600;
}

/* Footer */
footer {
    padding: 4rem 4% 2rem;
    border-top: 1px solid rgba(246, 193, 119, 0.18);
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, transparent, rgba(201, 123, 60, 0.06));
}

.footer-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.footer-palm {
    position: absolute;
    bottom: -30px;
    width: clamp(140px, 16vw, 240px);
    height: auto;
    opacity: 0.1;
    pointer-events: none;
    z-index: 0;
    filter: drop-shadow(0 0 24px rgba(246, 193, 119, 0.25));
}

.footer-palm-left {
    right: 2%;
    transform: scaleX(-1) rotate(-4deg);
}

.footer-bird {
    position: absolute;
    width: 46px;
    height: auto;
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
    animation: bird-float 6s ease-in-out infinite;
}

.footer-bird-1 {
    top: 18%;
    right: 14%;
}

.footer-bird-2 {
    top: 30%;
    right: 22%;
    width: 32px;
    opacity: 0.35;
    animation-delay: 1.5s;
}

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

.footer-logo {
    margin-bottom: 1rem;
}

.footer-logo img {
    height: 90px;
    width: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
    align-items: start;
}

.footer-brand .logo {
    margin-bottom: 1rem;
}

.footer-desc {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 300px;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all 0.3s;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--text-main);
}

.footer-subscribe {
    max-width: 400px;
    justify-self: end;
}

.footer-subscribe h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 1px;
    margin-bottom: 0.8rem;
}

.subscribe-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.2rem;
    line-height: 1.6;
}

.subscribe-form {
    display: flex;
    gap: 0.5rem;
}

.subscribe-input {
    flex: 1;
    padding: 0.9rem 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-main);
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    outline: none;
    transition: all 0.2s ease;
}

.subscribe-input::placeholder {
    color: var(--text-muted);
}

.subscribe-input:focus {
    border-color: rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.08);
}

.subscribe-btn {
    padding: 0.9rem 1.5rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: #fff;
    font-family: 'Space Mono', monospace;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
}

.subscribe-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
}

.subscribe-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
}

.footer-col h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 0.8rem;
}

.footer-col a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--card-border);
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.copyright a {
    color: var(--text-main);
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.copyright a:hover {
    opacity: 0.7;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
}

.footer-legal a:hover {
    color: var(--text-main);
}

/* Mobile Menu */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-main);
    transition: all 0.3s;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
    display: flex;
    position: fixed;
    top: 90px;
    left: 0;
    right: 0;
    height: calc(100vh - 90px);
    height: calc(100dvh - 90px);
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(20px);
    padding: 1.5rem 2rem;
    flex-direction: column;
    gap: 0;
    border-bottom: 1px solid var(--card-border);
    z-index: 99;
    overflow-y: auto;
    transform: translateX(-100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu.active {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
}

.mobile-menu a {
    color: var(--text-main);
    text-decoration: none;
    font-size: 1.1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--card-border);
    transform: translateX(-20px);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease, background 0.2s ease;
    margin: 0 -1rem;
    padding-left: 1rem;
    padding-right: 1rem;
}

.mobile-menu.active a {
    transform: translateX(0);
    opacity: 1;
}

.mobile-menu.active a:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active a:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.active a:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.active a:nth-child(4) { transition-delay: 0.25s; }

.mobile-menu a:hover {
    background: rgba(255, 255, 255, 0.04);
}

.mobile-menu .nav-cta {
    margin-top: 1.5rem;
    transform: translateX(-20px);
    opacity: 0;
    transition: transform 0.3s ease 0.3s, opacity 0.3s ease 0.3s;
}

.mobile-menu.active .nav-cta {
    transform: translateX(0);
    opacity: 1;
}

@media (min-width: 769px) {
    .mobile-menu {
        display: none !important;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-content {
        padding-left: 0;
        text-align: center;
    }

    .hero-desc {
        margin: 0 auto 2.5rem;
    }

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

    .bento-gallery {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .gallery-item:nth-child(1) {
        grid-column: span 2;
        grid-row: span 1;
    }

    .gallery-item:nth-child(5),
    .gallery-item:nth-child(8) {
        grid-column: span 1;
    }

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

    .feature-card.highlight {
        grid-row: span 1;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

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

@media (max-width: 768px) {
    nav {
        padding: 1rem 4%;
    }

    .nav-links, .nav-cta {
        display: none;
    }

    /* Keep a compact icon-only phone button in the mobile header */
    .nav-inner > .nav-phone {
        display: inline-flex;
        padding: 0.5rem;
        margin-left: auto;
        margin-right: 0.5rem;
    }

    .nav-inner > .nav-phone span {
        display: none;
    }

    .nav-inner > .nav-phone svg {
        width: 18px;
        height: 18px;
    }

    .mobile-menu .nav-cta {
        display: block;
    }

    .mobile-toggle {
        display: flex;
    }

    .logo {
        gap: 0.5rem;
        height: 38px;
        min-width: 0;
    }

    .logo img {
        width: 130px;
        height: 34px;
    }

    .logo .logo-ksr {
        width: 110px;
        height: 30px;
    }
}

@media (max-width: 380px) {
    .logo img {
        width: 108px;
        height: 30px;
    }

    .logo .logo-ksr {
        width: 88px;
        height: 26px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding-top: 8rem;
    }

    .hero h1 {
        font-size: clamp(2.6rem, 11vw, 4.5rem);
    }

    .floating-badge {
        display: none;
    }

    .section-header {
        flex-direction: column;
        align-items: center;
    }

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

    .gallery-item:nth-child(1) {
        grid-column: span 1;
    }

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

    .why-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-subscribe {
        justify-self: center;
        text-align: center;
    }

    .subscribe-form {
        flex-direction: column;
    }

    .subscribe-btn {
        width: 100%;
    }

    .social-links {
        justify-content: center;
    }

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

    .demo-controls {
        flex-direction: column;
    }

    .control-group {
        min-width: 100%;
    }

    .aspect-ratios {
        width: 100%;
    }

    .aspect-btn {
        flex: 1;
    }

    .cta-box {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .cta-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .cta-buttons {
        justify-content: center;
    }

    .cta-facts {
        justify-content: center;
    }

    .cta-visual {
        justify-self: center;
        max-width: 320px;
    }

    .cta-demo-prompt {
        padding: 0.75rem 0 0.5rem;
        text-align: center;
    }

    .cta-demo-prompt::before {
        position: static;
        display: block;
        margin-bottom: -0.5rem;
        line-height: 0.6;
    }

    .cta-users {
        left: 50%;
        transform: translateX(-50%);
    }
}

/* Slide-up Brochure Form */
.brochure-form {
    position: fixed;
    left: 50%;
    bottom: 1.5rem;
    transform: translateX(-50%) translateY(180%);
    width: min(920px, 92vw);
    background: rgba(20, 16, 12, 0.92);
    border: 1px solid rgba(246, 193, 119, 0.35);
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    z-index: 1000;
    backdrop-filter: blur(18px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(246, 193, 119, 0.12);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease, visibility 0.5s;
}

.brochure-form.visible {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    visibility: visible;
}

.brochure-close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--card-border);
    border-radius: 50%;
    color: var(--text-main);
    cursor: pointer;
    transition: all 0.25s ease;
}

.brochure-close:hover {
    background: rgba(255, 126, 95, 0.2);
    border-color: rgba(255, 126, 95, 0.5);
    transform: rotate(90deg);
}

.brochure-text {
    flex: 1 1 240px;
}

.brochure-text h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 1px;
    background: linear-gradient(90deg, #c97b3c, #e6a45f, #f3cfa0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brochure-text p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.15rem;
}

.brochure-fields {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 2 1 420px;
    flex-wrap: wrap;
}

.brochure-fields input {
    flex: 1 1 140px;
    padding: 0.7rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    color: var(--text-main);
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    outline: none;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.brochure-fields input::placeholder {
    color: var(--text-muted);
}

.brochure-fields input:focus {
    border-color: rgba(246, 193, 119, 0.6);
    background: rgba(255, 255, 255, 0.08);
}

.brochure-submit {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.4rem;
    background: linear-gradient(135deg, #c97b3c, #e6a45f);
    border: none;
    border-radius: 8px;
    color: #1a120b;
    font-family: 'Space Mono', monospace;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.brochure-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(230, 164, 95, 0.4);
}

@media (max-width: 768px) {
    .brochure-form {
        gap: 1rem;
        padding: 1.25rem 1rem;
    }

    .brochure-fields {
        flex: 1 1 100%;
    }

    .brochure-submit {
        flex: 1 1 100%;
        justify-content: center;
    }
}

/* HAVENA Project Highlights */
.highlights-section {
    padding: 4rem 0;
    position: relative;
}

.highlights-inner {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    align-items: stretch;
    max-width: 1300px;
    margin: 0 auto;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(246, 193, 119, 0.22);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.highlights-visual {
    position: relative;
    min-height: 420px;
}

.highlights-visual img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.highlights-stats {
    position: relative;
    overflow: hidden;
    background: linear-gradient(155deg, #1c140d 0%, #2a1d12 55%, #1a120b 100%);
    padding: 3rem 3rem 3.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem 1.5rem;
    align-content: center;
}

.hstat {
    position: relative;
    z-index: 1;
}

.hstat-value {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    line-height: 1;
    background: linear-gradient(90deg, #c97b3c, #e6a45f, #f3cfa0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hstat-label {
    display: block;
    margin-top: 0.35rem;
    font-family: 'Space Mono', monospace;
    font-size: 0.72rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-main);
}

.palm-corner {
    position: absolute;
    bottom: -20px;
    right: -10px;
    width: 130px;
    height: auto;
    opacity: 0.22;
    z-index: 0;
    pointer-events: none;
    transform: scaleX(-1);
    filter: drop-shadow(0 0 20px rgba(246, 193, 119, 0.3));
}

@media (max-width: 860px) {
    .highlights-inner {
        grid-template-columns: 1fr;
    }

    .highlights-visual {
        min-height: 300px;
    }
}

/* HAVENA Club Amenities */
.club-section {
    padding: 7rem 4%;
    position: relative;
    overflow: hidden;
}

.leaf-accent {
    position: absolute;
    width: clamp(160px, 18vw, 280px);
    height: auto;
    opacity: 0.12;
    pointer-events: none;
    z-index: 0;
    filter: drop-shadow(0 0 24px rgba(246, 193, 119, 0.3));
}

.leaf-top-right {
    top: 0;
    right: 0;
    transform: rotate(10deg);
}

.leaf-bottom-left {
    bottom: 0;
    left: 0;
    transform: scaleX(-1) rotate(10deg);
}

.club-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.club-visual {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(246, 193, 119, 0.2);
}

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

.club-visual-tag {
    position: absolute;
    bottom: 1.25rem;
    left: 1.25rem;
    padding: 0.5rem 1rem;
    background: rgba(20, 16, 12, 0.7);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(246, 193, 119, 0.35);
    border-radius: 50px;
    font-family: 'Space Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: #f3cfa0;
}

.club-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: 2px;
    line-height: 1;
    margin-bottom: 1rem;
}

.club-title span {
    background: linear-gradient(90deg, #c97b3c, #e6a45f, #f3cfa0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.club-subtitle {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 440px;
    margin-bottom: 2.5rem;
}

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

.amenity {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.6rem;
    padding: 1.25rem 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.amenity-more {
    font-family: inherit;
    cursor: pointer;
    color: inherit;
}

.amenity-extra {
    display: none;
}

.amenities-grid.expanded .amenity-extra {
    display: flex;
    animation: fadeIn 0.4s ease;
}

.amenity:hover {
    transform: translateY(-4px);
    border-color: rgba(246, 193, 119, 0.45);
    background: rgba(246, 193, 119, 0.06);
}

.amenity-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e6a45f;
}

.amenity-icon svg {
    width: 100%;
    height: 100%;
}

.amenity-label {
    font-size: 0.78rem;
    color: var(--text-main);
    line-height: 1.3;
}

/* HAVENA Habitat Plan */
.habitat-section {
    padding: 7rem 4%;
    position: relative;
    overflow: hidden;
}

.habitat-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.habitat-grid {
    position: relative;
    margin-top: 3rem;
    display: grid;
    grid-template-columns: 1.55fr 1fr;
    gap: 1.75rem;
    align-items: stretch;
}

.habitat-plan {
    position: relative;
    align-self: start;
    width: 100%;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(246, 193, 119, 0.25);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

.habitat-plan img {
    width: 100%;
    height: auto;
    display: block;
}

/* CSS Site Plan */
.siteplan {
    position: relative;
    padding: 1.5rem 1.5rem 1.5rem 3.25rem;
    background: linear-gradient(135deg, #f4ede1, #e6dac4);
}

.siteplan-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.1rem;
}

.siteplan-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.35rem;
    letter-spacing: 2px;
    color: #8a958c;
}

.siteplan-title b { color: #2f2316; font-weight: 400; }

.siteplan-north {
    font-family: 'Space Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 1px;
    color: #8a6a3c;
}

.siteplan-road {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 30px;
    background: repeating-linear-gradient(45deg, #d3c8b1, #d3c8b1 6px, #c4b89c 6px, #c4b89c 12px);
    border-right: 2px dashed #b3a585;
}

.siteplan-field {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: 10px;
    background:
        radial-gradient(circle at 10% 20%, rgba(110,160,90,0.35) 0 3px, transparent 4px) 0 0/22px 22px,
        linear-gradient(160deg, #cdd9b6, #bcca9e);
    border: 3px solid #9fb27c;
}

.sp-block {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 1fr;
    gap: 5px;
    padding: 1.4rem 0.5rem 0.5rem;
    grid-template-areas:
        "a1  .    .    a11"
        "a2  a14  a12  a10"
        "a3  a13  a6   a9"
        "a4  a5   a7   a8";
}

.sp-tag {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Space Mono', monospace;
    font-size: 0.6rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #5d4a2f;
}

.sp-courtyard {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    border-radius: 6px;
    background: linear-gradient(180deg, #8fb46a, #6f9a52);
}

.sp-courtyard span {
    writing-mode: vertical-rl;
    font-family: 'Space Mono', monospace;
    font-size: 0.58rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
}

.unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    border-radius: 4px;
    border: 1px solid #b6a583;
    background: #ded3ba;
    line-height: 1;
}

.unit b {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    color: #2f2316;
}

.unit span {
    font-family: 'Space Mono', monospace;
    font-size: 0.45rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #7c6a4c;
}

.unit small {
    font-family: 'Space Mono', monospace;
    font-size: 0.5rem;
    font-weight: 700;
    color: #9a7327;
}

.unit.u-west { background: #e3d9c2; }
.unit.u-east { background: #d2c1a0; }
.unit.u-mid { background: #d8ccae; }

.habitat-plan-tag {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    padding: 0.45rem 1rem;
    background: rgba(20, 16, 12, 0.82);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(246, 193, 119, 0.35);
    border-radius: 50px;
    font-family: 'Space Mono', monospace;
    font-size: 0.68rem;
    letter-spacing: 1.5px;
    color: #f3cfa0;
}

.habitat-legend {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: linear-gradient(160deg, rgba(42, 29, 18, 0.92), rgba(20, 16, 12, 0.95));
    border: 1px solid rgba(246, 193, 119, 0.3);
    border-radius: 18px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.55);
}

.legend-inner {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    padding: 1.75rem 2rem;
}

.legend-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 1.25rem;
    padding-bottom: 0.85rem;
    border-bottom: 1px solid rgba(246, 193, 119, 0.2);
}

.legend-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.7rem;
    letter-spacing: 2px;
    background: linear-gradient(90deg, #c97b3c, #e6a45f, #f3cfa0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.legend-count {
    font-family: 'Space Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.legend-grid {
    list-style: none;
    counter-reset: legend;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.55rem;
    padding: 0 0.4rem 0 0;
    margin: 0;
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    align-content: start;
}

.legend-grid::-webkit-scrollbar { width: 6px; }
.legend-grid::-webkit-scrollbar-thumb {
    background: rgba(246, 193, 119, 0.35);
    border-radius: 50px;
}

.legend-grid li {
    counter-increment: legend;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.45rem 0.55rem;
    border: 1px solid var(--card-border);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
    transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.legend-grid li:hover {
    border-color: rgba(246, 193, 119, 0.45);
    background: rgba(246, 193, 119, 0.06);
    transform: translateY(-2px);
}

.legend-ic {
    position: relative;
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    background: rgba(246, 193, 119, 0.1);
    border: 1px solid rgba(246, 193, 119, 0.2);
    color: #e6a45f;
}

.legend-ic svg { width: 18px; height: 18px; }

.legend-ic::before {
    content: counter(legend);
    position: absolute;
    top: -6px;
    left: -6px;
    min-width: 16px;
    height: 16px;
    padding: 0 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    background: linear-gradient(135deg, #c97b3c, #e6a45f);
    color: #1a120b;
    font-family: 'Space Mono', monospace;
    font-size: 0.55rem;
    font-weight: 700;
}

.legend-name {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.25;
}

@media (max-width: 900px) {
    .habitat-grid {
        padding: 0;
        grid-template-columns: 1fr;
    }

    .habitat-plan {
        width: 100%;
        transform: none;
    }

    .habitat-legend {
        position: static;
        transform: none;
        width: 100%;
        max-width: none;
        margin-top: 1.5rem;
        overflow: visible;
    }

    .legend-inner {
        position: static;
        inset: auto;
        padding: 1.5rem 1.25rem;
    }

    .legend-grid {
        max-height: none;
        overflow: visible;
    }
}

@media (max-width: 900px) {
    .club-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 640px) {
    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .legend-grid {
        grid-template-columns: 1fr;
        max-height: none;
    }
}

@media (max-width: 380px) {
    .amenities-grid {
        gap: 0.6rem;
    }

    .amenity {
        padding: 0.95rem 0.5rem;
    }
}

/* Explore Community Slider */
.community-section {
    padding: 7rem 4%;
    position: relative;
}

.community-inner {
    max-width: var(--container-max);
    margin: 0 auto;
}

.slider-nav {
    display: flex;
    gap: 0.75rem;
}

.slider-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(246, 193, 119, 0.35);
    background: rgba(255, 255, 255, 0.03);
    color: #f3cfa0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.slider-btn:hover {
    background: rgba(246, 193, 119, 0.12);
    border-color: rgba(246, 193, 119, 0.6);
    transform: translateY(-2px);
}

.community-slider {
    margin-top: 2.5rem;
    overflow: hidden;
}

.community-track {
    display: flex;
    gap: 1.5rem;
    scroll-behavior: smooth;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 1rem;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.community-track::-webkit-scrollbar {
    display: none;
}

.community-slide {
    position: relative;
    flex: 0 0 clamp(280px, 32%, 420px);
    aspect-ratio: 4 / 3;
    border-radius: 16px;
    overflow: hidden;
    scroll-snap-align: start;
    border: 1px solid rgba(246, 193, 119, 0.2);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.4);
}

.community-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.community-slide:hover img {
    transform: scale(1.06);
}

.slide-cap {
    position: absolute;
    left: 1rem;
    bottom: 1rem;
    padding: 0.45rem 1rem;
    background: rgba(20, 16, 12, 0.7);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(246, 193, 119, 0.3);
    border-radius: 50px;
    font-family: 'Space Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 1px;
    color: #f3cfa0;
}

/* The H That Breathes */
.breathes-section {
    padding: 4rem 4%;
}

.breathes-grid {
    max-width: var(--container-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--card-border);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.4);
}

.breathes-visual {
    position: relative;
    min-height: 420px;
}

.breathes-visual img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.breathes-panel {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    background:
        radial-gradient(120% 120% at 80% 0%, #f7f1e7, #ece2d2);
}

.breathes-leaf {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 240px;
    height: 240px;
    opacity: 0.9;
    transform: rotate(8deg);
}

.breathes-bird {
    position: absolute;
    right: 32px;
    bottom: 24px;
    width: 64px;
    height: 64px;
}

.breathes-text {
    position: relative;
    text-align: center;
    z-index: 1;
}

.breathes-script {
    font-family: 'Bebas Neue', sans-serif;
    font-style: italic;
    font-size: clamp(3.4rem, 9vw, 6rem);
    line-height: 0.85;
    color: #8a5a2b;
    pointer-events: none;
}

.breathes-head {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.4rem;
    margin-bottom: 0.4rem;
}

.bt-side {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.6rem);
    letter-spacing: 4px;
    color: #9a958c;
}

.breathes-main {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.8rem, 6vw, 4.6rem);
    letter-spacing: 3px;
    color: #1c1c1c;
    line-height: 0.9;
    margin-bottom: 0.8rem;
}

.breathes-sub {
    font-family: 'Outfit', sans-serif;
    font-style: italic;
    font-size: clamp(0.95rem, 1.6vw, 1.25rem);
    letter-spacing: 0.5px;
    color: #8a5a2b;
}

.breathes-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 1.1rem;
}

.breathes-tags span {
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #6b4a26;
    background: rgba(138, 90, 43, 0.12);
    border: 1px solid rgba(138, 90, 43, 0.25);
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
}

@media (max-width: 800px) {
    .breathes-grid {
        grid-template-columns: 1fr;
    }

    .breathes-visual {
        min-height: 260px;
    }

    .breathes-panel {
        padding: 2.75rem 1.25rem 2.75rem;
    }

    .breathes-text {
        width: 100%;
    }

    .breathes-head {
        gap: 1rem;
    }

    .breathes-bird {
        display: none;
    }

    .breathes-leaf {
        width: 150px;
        top: -18px;
        right: -18px;
    }
}

@media (max-width: 460px) {
    .breathes-panel {
        padding: 2.5rem 1rem 2.5rem;
    }

    .breathes-head {
        gap: 0.75rem;
    }

    .bt-side {
        letter-spacing: 2px;
    }

    .breathes-main {
        font-size: clamp(2.4rem, 11vw, 3.2rem);
        letter-spacing: 2px;
    }

    .breathes-leaf {
        width: 110px;
    }
}

/* Prime Location / Connectivity */
.location-section {
    padding: 7rem 4%;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.location-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('images/location-map.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.14;
    mix-blend-mode: luminosity;
    z-index: -2;
}

.location-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(10, 8, 6, 0.4) 0%, rgba(10, 8, 6, 0.85) 80%);
    z-index: -1;
}

.location-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.location-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
    align-items: start;
}

.location-map {
    position: sticky;
    top: 100px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(246, 193, 119, 0.25);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
    background: #14100c;
    padding: 8px;
}

.location-map-frame {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 440px;
    border: 0;
    border-radius: 14px;
    filter: grayscale(0.35) contrast(1.05) saturate(0.85);
    transition: filter 0.4s ease;
}

.location-map:hover .location-map-frame {
    filter: grayscale(0) contrast(1) saturate(1);
}

.location-map-overlay {
    position: absolute;
    left: 8px;
    right: 8px;
    bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    flex-wrap: wrap;
    padding: 0.85rem 1rem;
    border-radius: 0 0 14px 14px;
    background: linear-gradient(0deg, rgba(15, 11, 8, 0.92), rgba(15, 11, 8, 0));
    pointer-events: none;
}

.location-map-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 0.85rem;
    border-radius: 50px;
    background: rgba(20, 16, 12, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(246, 193, 119, 0.35);
    color: #f3cfa0;
    font-family: 'Space Mono', monospace;
    font-size: 0.72rem;
    letter-spacing: 0.5px;
}

.location-map-tag svg { width: 14px; height: 14px; color: #e6a45f; }

.location-map-btn {
    pointer-events: auto;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.55rem 1rem;
    border-radius: 50px;
    background: linear-gradient(90deg, #c97b3c, #e6a45f);
    color: #1a120b;
    font-family: 'Space Mono', monospace;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.location-map-btn svg { width: 14px; height: 14px; }

.location-map-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(230, 164, 95, 0.35);
}

/* Location tabs (connectivity panel) */
.loc-tabs {
    display: flex;
    flex-direction: column;
    background: linear-gradient(165deg, rgba(40, 30, 20, 0.5), rgba(18, 14, 10, 0.6));
    border: 1px solid var(--card-border);
    border-radius: 20px;
    overflow: hidden;
}

.loc-tabs-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 1rem;
    border-bottom: 1px solid var(--card-border);
}

.loc-tab {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 0.9rem;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--card-border);
    color: var(--text-muted);
    font-family: 'Space Mono', monospace;
    font-size: 0.78rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

.loc-tab svg { width: 16px; height: 16px; }

.loc-tab:hover {
    color: var(--text-main);
    border-color: rgba(246, 193, 119, 0.4);
}

.loc-tab.active {
    background: linear-gradient(90deg, #c97b3c, #e6a45f);
    border-color: transparent;
    color: #1a120b;
}

.loc-tab-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 18px;
    padding: 0 5px;
    border-radius: 50px;
    background: rgba(0, 0, 0, 0.18);
    font-size: 0.65rem;
}

.loc-tab.active .loc-tab-count {
    background: rgba(26, 18, 11, 0.25);
}

.loc-tabs-body {
    position: relative;
}

.loc-panel {
    list-style: none;
    margin: 0;
    padding: 0.5rem 1.25rem 1rem;
    max-height: 360px;
    overflow-y: auto;
    display: none;
    animation: locFade 0.3s ease;
}

.loc-panel.active { display: block; }

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

.loc-panel::-webkit-scrollbar { width: 6px; }
.loc-panel::-webkit-scrollbar-thumb {
    background: rgba(246, 193, 119, 0.35);
    border-radius: 50px;
}

.loc-panel li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.7rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.loc-panel li:last-child { border-bottom: none; }

.loc-name {
    color: var(--text-muted);
    font-size: 0.92rem;
}

.loc-pill {
    flex-shrink: 0;
    padding: 0.25rem 0.7rem;
    border-radius: 50px;
    background: rgba(246, 193, 119, 0.12);
    border: 1px solid rgba(246, 193, 119, 0.25);
    color: #f3cfa0;
    font-family: 'Space Mono', monospace;
    font-size: 0.72rem;
    white-space: nowrap;
}

/* Shared Accordion component */
.accordion {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.accordion-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem 1.25rem;
    margin-top: 3rem;
    align-items: start;
}

.acc-item {
    background: linear-gradient(160deg, rgba(40, 30, 20, 0.4), rgba(20, 16, 12, 0.5));
    border: 1px solid var(--card-border);
    border-radius: 14px;
    overflow: hidden;
    transition: border-color 0.25s ease;
    align-self: start;
}

.acc-item.open {
    border-color: rgba(246, 193, 119, 0.45);
}

.acc-head {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.05rem 1.25rem;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    color: var(--text-main);
}

.acc-head-left {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.acc-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(246, 193, 119, 0.1);
    border: 1px solid rgba(246, 193, 119, 0.2);
    color: #e6a45f;
}

.acc-icon svg { width: 21px; height: 21px; }

.acc-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.25rem;
    letter-spacing: 1px;
}

.acc-chevron {
    width: 9px;
    height: 9px;
    flex-shrink: 0;
    border-right: 2px solid #e6a45f;
    border-bottom: 2px solid #e6a45f;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
}

.acc-item.open .acc-chevron {
    transform: rotate(-135deg);
}

.acc-body {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s ease;
}

.acc-item.open .acc-body {
    grid-template-rows: 1fr;
}

.acc-body-inner {
    overflow: hidden;
}

.acc-list {
    list-style: none;
    padding: 0 1.25rem 1.1rem;
    margin: 0;
}

.acc-list li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
    padding: 0.55rem 0;
    font-size: 0.9rem;
    color: var(--text-muted);
    border-bottom: 1px dashed rgba(246, 193, 119, 0.14);
}

.acc-list li:last-child { border-bottom: none; }

.acc-time {
    font-family: 'Space Mono', monospace;
    font-size: 0.78rem;
    color: #e6a45f;
    white-space: nowrap;
}

.acc-spec-list {
    list-style: none;
    padding: 0 1.25rem 1.1rem;
    margin: 0;
}

.acc-spec-list li {
    position: relative;
    padding: 0.45rem 0 0.45rem 1.1rem;
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-muted);
}

.acc-spec-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.95rem;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #e6a45f;
}

.acc-spec-list strong {
    color: var(--text-main);
    font-weight: 600;
}

/* Specifications section */
.spec-section {
    padding: 7rem 4%;
}

.spec-inner {
    max-width: var(--container-max);
    margin: 0 auto;
}

@media (max-width: 900px) {
    .location-layout {
        grid-template-columns: 1fr;
    }

    .location-map {
        position: relative;
        top: 0;
    }

    .location-map-frame { min-height: 320px; }

    .accordion-2col {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .community-slide {
        flex: 0 0 82%;
    }
}

/* Contact / Enquiry */
.contact-section {
    padding: 7rem 4%;
    position: relative;
}

.contact-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
    background: linear-gradient(160deg, rgba(42, 29, 18, 0.55), rgba(20, 16, 12, 0.65));
    border: 1px solid rgba(246, 193, 119, 0.25);
    border-radius: 22px;
    padding: 3rem;
    backdrop-filter: blur(16px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.contact-info .section-title {
    text-align: left;
}

.contact-lead {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
    margin: 1rem 0 2rem;
}

.contact-meta {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-meta li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
    color: var(--text-main);
}

.contact-meta-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(246, 193, 119, 0.1);
    color: #e6a45f;
}

.contact-meta-icon svg {
    width: 20px;
    height: 20px;
}

.contact-meta a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-meta a:hover {
    color: #e6a45f;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.form-field label {
    font-family: 'Space Mono', monospace;
    font-size: 0.72rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.form-field input,
.form-field textarea {
    padding: 0.85rem 1rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--card-border);
    border-radius: 10px;
    color: var(--text-main);
    font-size: 0.9rem;
    font-family: inherit;
    transition: border-color 0.2s ease, background 0.2s ease;
}

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

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: rgba(246, 193, 119, 0.6);
    background: rgba(246, 193, 119, 0.05);
}

.brochure-download-btn {
    margin-top: 0.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 50px;
    background: linear-gradient(90deg, #c97b3c, #e6a45f);
    color: #1a120b;
    font-family: 'Space Mono', monospace;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.brochure-download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(201, 123, 60, 0.4);
}

.brochure-download-btn.success {
    background: linear-gradient(90deg, #4caf6e, #7bd99a);
}

@media (max-width: 768px) {
    .contact-inner {
        grid-template-columns: 1fr;
        padding: 2rem;
        gap: 2.5rem;
    }
}

/* Floor Plans Page */
.fp-hero {
    padding: 9rem 4% 3rem;
    text-align: center;
}

.fp-hero-inner {
    max-width: 760px;
    margin: 0 auto;
}

.fp-eyebrow {
    display: inline-block;
    font-family: 'Space Mono', monospace;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #e6a45f;
    margin-bottom: 1rem;
}

.fp-hero .section-subtitle {
    margin-left: auto;
    margin-right: auto;
}

.fp-section {
    padding: 3rem 4% 7rem;
}

.fp-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

/* Floor plan gallery */
.fp-group {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.fp-group-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    border-bottom: 1px solid rgba(246, 193, 119, 0.2);
    padding-bottom: 1rem;
}

.fp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.75rem;
}

.fp-item {
    margin: 0;
    display: flex;
    flex-direction: column;
    background: linear-gradient(160deg, rgba(40, 30, 20, 0.4), rgba(20, 16, 12, 0.55));
    border: 1px solid rgba(246, 193, 119, 0.2);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.fp-item:hover {
    transform: translateY(-4px);
    border-color: rgba(246, 193, 119, 0.5);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
}

.fp-item-img {
    position: relative;
    display: block;
    background: #f7f3ec;
    aspect-ratio: 4 / 3;
}

.fp-item-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    padding: 0.5rem;
}

.fp-item-cap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 1rem 1.15rem;
}

.fp-item-title {
    font-family: 'Space Mono', monospace;
    font-size: 0.82rem;
    letter-spacing: 0.5px;
    color: var(--text-main);
}

.fp-item-area {
    font-family: 'Space Mono', monospace;
    font-size: 0.75rem;
    color: #e6a45f;
    white-space: nowrap;
}

.fp-note {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 1rem;
}

.fp-note a {
    color: #e6a45f;
}

.fp-card {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 3rem;
    align-items: center;
    background: linear-gradient(160deg, rgba(40, 30, 20, 0.4), rgba(20, 16, 12, 0.55));
    border: 1px solid rgba(246, 193, 119, 0.2);
    border-radius: 22px;
    padding: 2.5rem;
}

.fp-card-reverse .fp-plan {
    order: 2;
}

.fp-plan {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #f7f3ec;
    border: 1px solid rgba(246, 193, 119, 0.25);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
    aspect-ratio: 4 / 3;
}

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

.fp-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    background: linear-gradient(90deg, #c97b3c, #e6a45f);
    color: #1a120b;
    font-family: 'Space Mono', monospace;
    font-size: 0.68rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.fp-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    border-bottom: 1px solid rgba(246, 193, 119, 0.2);
    padding-bottom: 1rem;
    margin-bottom: 1.25rem;
}

.fp-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.6rem;
    letter-spacing: 2px;
    background: linear-gradient(90deg, #c97b3c, #e6a45f, #f3cfa0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.fp-area {
    font-family: 'Space Mono', monospace;
    font-size: 0.9rem;
    color: #e6a45f;
}

.fp-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.fp-specs {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.9rem;
}

.fp-specs li {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 0.85rem;
    color: var(--text-main);
}

.fp-spec-icon {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    background: rgba(246, 193, 119, 0.1);
    color: #e6a45f;
}

.fp-spec-icon svg {
    width: 18px;
    height: 18px;
}

.fp-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding: 1.1rem 1.25rem;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    margin-bottom: 1.75rem;
}

.fp-meta div {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.fp-meta-label {
    font-family: 'Space Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.fp-meta-value {
    font-size: 0.95rem;
    color: var(--text-main);
    font-weight: 600;
}

@media (max-width: 860px) {
    .fp-card,
    .fp-card-reverse {
        grid-template-columns: 1fr;
        padding: 1.75rem;
        gap: 2rem;
    }

    .fp-card-reverse .fp-plan {
        order: 0;
    }
}

@media (max-width: 480px) {
    .fp-specs {
        grid-template-columns: 1fr;
    }
}

/* Footer credit */
.footer-credit {
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--card-border);
    text-align: center;
    font-family: 'Space Mono', monospace;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    color: var(--text-muted);
}

.footer-heart {
    color: #e0564f;
    font-size: 0.95rem;
}

/* Leadership Page */
.lead-hero {
    position: relative;
    padding: 9rem 4% 2rem;
    text-align: center;
    overflow: hidden;
}

.lead-hero .palm-left {
    position: absolute;
    top: 4rem;
    left: -40px;
    width: 150px;
    opacity: 0.18;
    transform: rotate(-12deg);
}

.lead-hero-inner {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.lead-hero-tag {
    font-family: 'Outfit', sans-serif;
    font-style: italic;
    font-size: clamp(1rem, 2vw, 1.4rem);
    color: #f3cfa0;
    margin-top: 0.75rem;
}

.lead-intro {
    padding: 1rem 4% 3rem;
}

.lead-intro-inner {
    max-width: 880px;
    margin: 0 auto;
}

.lead-intro-inner > p {
    color: var(--text-muted);
    font-size: 1.02rem;
    line-height: 1.85;
    margin-bottom: 1.2rem;
}

.lead-iso {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-top: 1.5rem;
    padding: 1.5rem;
    border-radius: 16px;
    background: linear-gradient(160deg, rgba(40, 30, 20, 0.5), rgba(20, 16, 12, 0.6));
    border: 1px solid rgba(246, 193, 119, 0.3);
}

.lead-iso-icon {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(246, 193, 119, 0.12);
    border: 1px solid rgba(246, 193, 119, 0.25);
    color: #e6a45f;
}

.lead-iso-icon svg { width: 24px; height: 24px; }

.lead-iso p {
    color: var(--text-muted);
    font-size: 0.98rem;
    line-height: 1.75;
    margin: 0;
}

.lead-iso strong { color: #f3cfa0; }

/* Founder spotlight */
.founder-section {
    padding: 2rem 4% 3rem;
}

.founder-spotlight {
    max-width: var(--container-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 0;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(246, 193, 119, 0.3);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.4);
}

.founder-aside {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
    padding: 2.5rem 1.75rem;
    background: linear-gradient(160deg, #2a1d12, #150f08);
    border-right: 1px solid rgba(246, 193, 119, 0.25);
}

.founder-avatar {
    width: 110px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #c97b3c, #f3cfa0);
    color: #1a120b;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.8rem;
    letter-spacing: 2px;
    box-shadow: 0 0 0 6px rgba(246, 193, 119, 0.12);
    margin-bottom: 0.75rem;
}

.founder-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.75rem;
    letter-spacing: 1px;
    color: var(--text-main);
    line-height: 1.05;
}

.founder-role {
    font-family: 'Space Mono', monospace;
    font-size: 0.72rem;
    letter-spacing: 0.5px;
    color: #e6a45f;
}

.founder-metrics {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
    width: 100%;
    justify-content: center;
}

.founder-metrics div {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    padding: 0.6rem 0.3rem;
    border-radius: 12px;
    background: rgba(246, 193, 119, 0.08);
    border: 1px solid rgba(246, 193, 119, 0.2);
}

.founder-metrics strong {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    color: #f3cfa0;
    letter-spacing: 1px;
}

.founder-metrics span {
    font-family: 'Space Mono', monospace;
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.founder-body {
    position: relative;
    padding: 2.5rem;
    background: linear-gradient(160deg, rgba(40, 30, 20, 0.4), rgba(20, 16, 12, 0.5));
}

.founder-quote-mark {
    position: absolute;
    top: 0.5rem;
    left: 1.5rem;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 6rem;
    line-height: 1;
    color: rgba(246, 193, 119, 0.18);
}

.founder-body p {
    position: relative;
    color: var(--text-muted);
    font-size: 0.96rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.founder-body p:last-child { margin-bottom: 0; }

/* Leadership timeline */
.lead-section {
    padding: 2rem 4% 7rem;
}

.lead-team-head {
    max-width: var(--container-max);
    margin: 0 auto 3rem;
    text-align: center;
}

.lead-timeline {
    max-width: 960px;
    margin: 0 auto;
    position: relative;
    padding-left: 0;
}

.lead-timeline::before {
    content: '';
    position: absolute;
    top: 8px;
    bottom: 8px;
    left: 27px;
    width: 2px;
    background: linear-gradient(180deg, rgba(246, 193, 119, 0.6), rgba(246, 193, 119, 0.05));
}

.tl-row {
    position: relative;
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 1.5rem;
    margin-bottom: 1.75rem;
}

.tl-row:last-child { margin-bottom: 0; }

.tl-marker {
    position: relative;
    z-index: 1;
}

.tl-avatar {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #c97b3c, #e6a45f);
    color: #1a120b;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    letter-spacing: 1px;
    box-shadow: 0 0 0 5px #14100c;
}

.tl-card {
    position: relative;
    background: linear-gradient(160deg, rgba(40, 30, 20, 0.45), rgba(20, 16, 12, 0.55));
    border: 1px solid var(--card-border);
    border-radius: 18px;
    padding: 1.5rem 1.75rem;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.tl-card::before {
    content: '';
    position: absolute;
    left: -9px;
    top: 22px;
    width: 16px;
    height: 16px;
    background: linear-gradient(135deg, rgba(40, 30, 20, 0.95), rgba(20, 16, 12, 0.95));
    border-left: 1px solid var(--card-border);
    border-bottom: 1px solid var(--card-border);
    transform: rotate(45deg);
}

.tl-card:hover {
    transform: translateX(4px);
    border-color: rgba(246, 193, 119, 0.4);
}

.tl-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.2rem;
}

.tl-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.45rem;
    letter-spacing: 1px;
    color: var(--text-main);
}

.tl-exp {
    flex-shrink: 0;
    padding: 0.3rem 0.75rem;
    border-radius: 50px;
    background: rgba(246, 193, 119, 0.12);
    border: 1px solid rgba(246, 193, 119, 0.25);
    color: #f3cfa0;
    font-family: 'Space Mono', monospace;
    font-size: 0.68rem;
    white-space: nowrap;
}

.tl-role {
    display: block;
    font-family: 'Space Mono', monospace;
    font-size: 0.72rem;
    letter-spacing: 0.5px;
    color: #e6a45f;
    margin-bottom: 0.9rem;
}

.tl-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 0.7rem;
}

.tl-card p:last-child { margin-bottom: 0; }

@media (max-width: 760px) {
    .founder-spotlight {
        grid-template-columns: 1fr;
    }

    .founder-aside {
        border-right: none;
        border-bottom: 1px solid rgba(246, 193, 119, 0.25);
    }

    .founder-body { padding: 2rem 1.5rem; }

    .tl-card-top {
        flex-wrap: wrap;
    }
}

/* Floor Plans access gate */
.fp-locked {
    display: none !important;
}

.fp-gate {
    padding: 2rem 4% 6rem;
    display: flex;
    justify-content: center;
}

.fp-gate-card {
    width: 100%;
    max-width: 480px;
    background: rgba(20, 16, 12, 0.6);
    border: 1px solid rgba(246, 193, 119, 0.25);
    border-radius: 18px;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(14px);
}

.fp-gate-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    letter-spacing: 1px;
    line-height: 1.05;
    margin-top: 0.25rem;
}

.fp-gate-sub {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.fp-gate-card .brochure-download-btn {
    margin-top: 0.5rem;
    justify-content: center;
}
