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

:root {
    --bg-primary: #fffdf8;
    --bg-secondary: #f7f1e4;
    --surface: rgba(255, 255, 255, 0.88);
    --surface-strong: #ffffff;
    --gold: #c9a13b;
    --gold-dark: #9f7d26;
    --gold-soft: #efe0b3;
    --text-primary: #241b0c;
    --text-secondary: #655741;
    --border: rgba(201, 161, 59, 0.18);
    --shadow-lg: 0 24px 70px rgba(64, 45, 8, 0.10);
    --shadow-md: 0 14px 40px rgba(64, 45, 8, 0.08);
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --container: 1240px;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-primary);
    background:
        radial-gradient(circle at top left, rgba(201, 161, 59, 0.10), transparent 30%),
        radial-gradient(circle at top right, rgba(201, 161, 59, 0.08), transparent 25%),
        linear-gradient(180deg, #fffdf8 0%, #fbf7ef 100%);
    overflow-x: hidden;
}

main,
section,
nav,
footer,
div,
article,
aside {
    min-width: 0;
}

body.menu-open {
    overflow: hidden;
}

img,
video {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
}

.container {
    width: min(var(--container), calc(100% - 32px));
    margin: 0 auto;
}

.section {
    padding: 5.5rem 0;
}

.section-muted {
    background: linear-gradient(180deg, rgba(201, 161, 59, 0.08), rgba(201, 161, 59, 0.02));
}

.section-header {
    max-width: 700px;
    margin: 0 auto 2.75rem;
    text-align: center;
}

.section-subtitle,
.hero-subtitle,
.logo-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold-dark);
}

.section-subtitle::before,
.hero-subtitle::before {
    content: '';
    width: 34px;
    height: 1px;
    background: currentColor;
    opacity: 0.7;
}

.section-title,
.page-header h1,
.hero-title,
.about-content h2,
.project-hero h1 {
    font-family: 'Playfair Display', serif;
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.section-title {
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    margin-top: 0.9rem;
    margin-bottom: 0.9rem;
}

.section-description,
.hero-description,
.about-content p,
.service-card p,
.testimonial-text,
.contact-detail-text p,
.timeline-content p,
.project-info-grid p,
.footer-tagline,
.mobile-menu-copy {
    color: var(--text-secondary);
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    min-height: 50px;
    padding: 0.9rem 1.45rem;
    border-radius: 999px;
    border: 1px solid transparent;
    text-decoration: none;
    font-size: 0.96rem;
    font-weight: 600;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, #e5c86f 0%, var(--gold) 100%);
    color: #23190b;
    box-shadow: 0 16px 36px rgba(201, 161, 59, 0.26);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 42px rgba(201, 161, 59, 0.33);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.76);
    color: var(--text-primary);
    border-color: var(--border);
    box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    border-color: rgba(201, 161, 59, 0.34);
}

.surface-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(10px);
}

.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: padding 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.navbar.scrolled {
    padding: 0.6rem 0;
    background: rgba(255, 253, 248, 0.84);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(201, 161, 59, 0.12);
    box-shadow: 0 10px 30px rgba(64, 45, 8, 0.08);
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 0.7rem 1rem 0.7rem 1.3rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(201, 161, 59, 0.14);
    box-shadow: var(--shadow-md);
    min-width: 0;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    text-decoration: none;
    min-width: 0;
}

.logo-img {
    width: 74px;
    height: 74px;
    object-fit: contain;
}

.logo-copy {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    min-width: 0;
}

.logo-kicker {
    letter-spacing: 0.14em;
}

.logo-kicker::before {
    display: none;
}

.logo-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-primary);
    white-space: nowrap;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.35rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 600;
    transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-primary);
}

.nav-cta.active {
    color: #23190b;
}

.hamburger {
    display: none;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.74);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: var(--text-primary);
}

.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(36, 27, 12, 0.28);
    backdrop-filter: blur(12px);
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu-panel {
    width: min(420px, 100%);
    max-height: calc(100dvh - 32px);
    overflow: auto;
    padding: 1.5rem;
    border-radius: 28px;
    background: #fffdf8;
    border: 1px solid rgba(201, 161, 59, 0.18);
    box-shadow: var(--shadow-lg);
}

.mobile-menu-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.9rem;
}

.mobile-menu-close {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: white;
    font-size: 1.3rem;
    cursor: pointer;
}

.mobile-menu-copy {
    margin-bottom: 1.4rem;
}

.mobile-nav-links {
    list-style: none;
    display: grid;
    gap: 0.9rem;
}

.mobile-nav-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0.9rem 1rem;
    border-radius: 18px;
    text-decoration: none;
    background: rgba(201, 161, 59, 0.08);
    border: 1px solid rgba(201, 161, 59, 0.12);
}

.hero {
    padding: 1.4rem 0 3.6rem;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.8rem;
}

.hero-main-media,
.image-card img,
.gallery-card img,
.project-gallery img,
.portfolio-item img,
.page-header-photo,
.contact-showcase img,
.service-media img {
    border-radius: 28px;
}

.hero-main-media {
    position: relative;
    min-height: min(82vh, 900px);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero-luxury-frame {
    position: relative;
    padding: 14px;
    border-radius: 42px;
    background:
        linear-gradient(135deg, rgba(255, 248, 222, 0.98), rgba(243, 229, 188, 0.74)),
        linear-gradient(180deg, rgba(255, 255, 255, 0.4), rgba(201, 161, 59, 0.08));
    border: 1px solid rgba(201, 161, 59, 0.22);
    box-shadow:
        0 30px 80px rgba(64, 45, 8, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.hero-luxury-frame::before {
    content: '';
    position: absolute;
    inset: 18px;
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.36);
    pointer-events: none;
    z-index: 2;
}

.hero-slideshow {
    isolation: isolate;
    border-radius: 32px;
    background: #f4ede0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.06);
    transition: opacity 1s ease, transform 1.8s ease;
    pointer-events: none;
}

.hero-slide.is-active {
    opacity: 1;
    transform: scale(1);
}

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

.hero-slide-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    top: auto;
    right: auto;
    z-index: 4;
    display: inline-flex;
    background: rgba(255, 253, 248, 0.88);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 24px rgba(36, 27, 12, 0.15);
}

.hero-main-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(36, 27, 12, 0.04), rgba(36, 27, 12, 0.18)),
        radial-gradient(circle at top left, rgba(255, 242, 206, 0.18), transparent 34%),
        radial-gradient(circle at top right, rgba(201, 161, 59, 0.12), transparent 28%);
    pointer-events: none;
}

.hero-main-media::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(115deg, transparent 28%, rgba(255, 255, 255, 0.2) 42%, transparent 58%);
    transform: translateX(-140%);
    animation: heroLuxurySweep 7s ease-in-out infinite;
    pointer-events: none;
}

@keyframes heroLuxurySweep {
    0%,
    18% {
        transform: translateX(-140%);
    }
    48%,
    100% {
        transform: translateX(140%);
    }
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.stat-item {
    padding: 1.35rem;
    text-align: center;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.7rem;
    color: var(--gold-dark);
}

.stat-label {
    color: var(--text-secondary);
    text-transform: uppercase;
    font-size: 0.84rem;
    letter-spacing: 0.16em;
}

.split-layout,
.about-grid,
.contact-grid,
.project-info-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.8rem;
    align-items: center;
}

.image-stack {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.image-card {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    box-shadow: var(--shadow-md);
}

.image-card img {
    width: 100%;
    height: 100%;
    min-height: 240px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.image-card:hover img,
.portfolio-item:hover img,
.gallery-card:hover img,
.page-header-photo:hover {
    transform: scale(1.03);
}

.image-card--tall {
    grid-row: span 2;
}

.service-lead {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service-points {
    list-style: none;
    display: grid;
    gap: 0.75rem;
}

.service-points li {
    padding-left: 1.2rem;
    position: relative;
    color: var(--text-secondary);
}

.service-points li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.75rem;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.2rem;
}

.service-card,
.testimonial-card,
.timeline-content,
.contact-form,
.contact-panel,
.project-info-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 26px;
    box-shadow: var(--shadow-md);
}

.service-card {
    overflow: hidden;
}

.service-media {
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.service-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.service-card:hover .service-media img {
    transform: scale(1.05);
}

.service-body {
    padding: 1.35rem;
}

.service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: rgba(201, 161, 59, 0.12);
    color: var(--gold-dark);
    margin-bottom: 1rem;
}

.service-icon svg {
    width: 26px;
    height: 26px;
    fill: currentColor;
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.45rem;
    margin-bottom: 0.55rem;
}

.gallery-mosaic,
.project-gallery {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 26px;
    box-shadow: var(--shadow-md);
}

.gallery-card img,
.project-gallery img {
    width: 100%;
    height: 100%;
    min-height: 220px;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.gallery-card--wide {
    grid-column: span 2;
}

.gallery-card--tall {
    grid-row: span 2;
}

.video-showcase {
    overflow: hidden;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.video-card {
    overflow: hidden;
    padding: 0.5rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
}

.video-card video {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 18px;
    background: #efe6d3;
}

.portfolio-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.filter-btn {
    min-height: 46px;
    padding: 0.8rem 1.15rem;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.82);
    color: var(--text-secondary);
    font-weight: 600;
    cursor: pointer;
}

.filter-btn.active,
.filter-btn:hover {
    color: var(--text-primary);
    border-color: rgba(201, 161, 59, 0.34);
    background: rgba(201, 161, 59, 0.14);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.2rem;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    min-height: 380px;
    border-radius: 28px;
    box-shadow: var(--shadow-md);
}

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

.portfolio-overlay {
    position: absolute;
    inset: auto 0 0 0;
    padding: 1.5rem;
    color: #fff7eb;
    background: linear-gradient(180deg, transparent, rgba(36, 27, 12, 0.88));
}

.portfolio-category {
    display: inline-block;
    margin-bottom: 0.45rem;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #f4df9f;
}

.portfolio-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 0.55rem;
}

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

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

.timeline::before,
.timeline-dot {
    display: none;
}

.timeline-item {
    padding: 0;
    margin: 0;
}

.timeline-content {
    height: 100%;
    padding: 1.45rem;
}

.timeline-content h3 {
    color: var(--gold-dark);
    margin-bottom: 0.55rem;
    font-size: 1.1rem;
}

.testimonials-section .swiper {
    overflow: visible;
}

.testimonial-card {
    height: 100%;
    padding: 1.6rem;
}

.testimonial-quote {
    font-size: 3.4rem;
    line-height: 1;
    color: var(--gold-soft);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.2rem;
}

.testimonial-author img {
    width: 62px;
    height: 62px;
    object-fit: cover;
    border-radius: 50%;
}

.testimonial-info h4 {
    font-size: 1rem;
    margin-bottom: 0.15rem;
}

.testimonial-info span {
    color: var(--text-secondary);
}

.testimonial-rating {
    color: var(--gold-dark);
    margin-top: 0.4rem;
}

.page-header {
    padding: 2.1rem 0 1.2rem;
}

.page-header-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 430px);
    gap: 1.5rem;
    align-items: stretch;
    padding: 1.3rem;
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(201, 161, 59, 0.18);
    box-shadow: var(--shadow-md);
}

.page-header-copy {
    padding: 1rem 0.7rem;
}

.page-header h1 {
    font-size: clamp(2.4rem, 4vw, 4.1rem);
    margin-bottom: 0.7rem;
}

.page-header p {
    color: var(--text-secondary);
    max-width: 520px;
}

.page-header-media {
    position: relative;
    min-height: 260px;
    overflow: hidden;
    border-radius: 28px;
}

.page-header-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-bottom: 0.8rem;
    color: var(--text-secondary);
}

.breadcrumb a {
    text-decoration: none;
}

.breadcrumb span {
    color: var(--gold-dark);
    font-weight: 600;
}

.contact-info,
.contact-form {
    padding: 1.6rem;
}

.contact-panel {
    padding: 1.5rem;
}

.contact-showcase {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    min-height: 100%;
}

.contact-showcase img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-detail {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.15rem;
}

.contact-detail-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: rgba(201, 161, 59, 0.12);
    color: var(--gold-dark);
}

.contact-detail-icon svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.contact-detail-text h4 {
    margin-bottom: 0.25rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.4rem;
    font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.95rem 1rem;
    border-radius: 16px;
    border: 1px solid rgba(201, 161, 59, 0.18);
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-primary);
    font: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: rgba(201, 161, 59, 0.42);
    box-shadow: 0 0 0 4px rgba(201, 161, 59, 0.12);
}

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

.footer {
    padding: 3.5rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 1.5rem;
    padding: 1.6rem;
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(201, 161, 59, 0.18);
    box-shadow: var(--shadow-md);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
}

.footer-logo-img {
    width: 68px;
    height: 68px;
    object-fit: contain;
}

.footer-title {
    margin-bottom: 0.9rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
}

.footer-links,
.footer-contact {
    list-style: none;
    display: grid;
    gap: 0.65rem;
}

.footer-links a,
.footer-contact a {
    text-decoration: none;
    color: var(--text-secondary);
}

.footer-links a:hover,
.footer-contact a:hover,
.footer-bottom-links a:hover {
    color: var(--text-primary);
}

.footer-contact li {
    display: flex;
    gap: 0.7rem;
    align-items: flex-start;
}

.footer-contact svg {
    margin-top: 0.15rem;
    color: var(--gold-dark);
    flex-shrink: 0;
}

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

.social-link {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.9);
    text-decoration: none;
}

.social-link:hover {
    background: rgba(201, 161, 59, 0.14);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1rem;
    color: var(--text-secondary);
    font-size: 0.92rem;
}

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

.footer-bottom-links a {
    text-decoration: none;
    color: var(--text-secondary);
}

.quote-modal {
    position: fixed;
    inset: 0;
    z-index: 1400;
    display: none;
}

.quote-modal.is-open {
    display: block;
}

.quote-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(36, 27, 12, 0.38);
    backdrop-filter: blur(8px);
}

.quote-modal-dialog {
    position: absolute;
    inset: 50% auto auto 50%;
    transform: translate(-50%, -50%);
    width: min(560px, calc(100% - 24px));
    max-height: calc(100dvh - 24px);
    overflow: auto;
    padding: 1.5rem;
    border-radius: 28px;
    background: #fffdf8;
    border: 1px solid rgba(201, 161, 59, 0.2);
    box-shadow: var(--shadow-lg);
}

.quote-modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 0.25rem;
}

.quote-modal-subtitle {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.quote-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: white;
    cursor: pointer;
    font-size: 1.2rem;
}

.floating-actions {
    position: fixed;
    right: 18px;
    bottom: 18px;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    z-index: 1300;
}

.floating-action {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(201, 161, 59, 0.18);
    box-shadow: var(--shadow-md);
}

.floating-action--quote,
.floating-action--call {
    background: linear-gradient(135deg, #ecd68d 0%, var(--gold) 100%);
}

.floating-action--whatsapp,
.floating-action--instagram,
.floating-action--facebook {
    background: white;
}

.project-hero {
    padding: 2rem 0;
}

.project-hero-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
    gap: 1.5rem;
    align-items: stretch;
}

.project-hero-media {
    position: relative;
    overflow: hidden;
    border-radius: 32px;
    min-height: 520px;
    box-shadow: var(--shadow-lg);
}

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

.project-hero-overlay {
    padding: 1.8rem;
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(201, 161, 59, 0.18);
    box-shadow: var(--shadow-md);
}

.project-meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.4rem;
}

.project-meta-item {
    padding: 1rem;
    border-radius: 20px;
    background: rgba(201, 161, 59, 0.08);
}

.project-meta-item span {
    display: block;
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 0.35rem;
}

.project-content {
    padding: 1.5rem 0 4rem;
}

.project-info-grid {
    align-items: stretch;
}

.project-info-grid > div {
    padding: 1.5rem;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(201, 161, 59, 0.18);
    box-shadow: var(--shadow-md);
}

.project-gallery img {
    aspect-ratio: 4 / 3;
}

.project-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    box-shadow: var(--shadow-md);
}

.project-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.media-label {
    position: absolute;
    left: 18px;
    bottom: 18px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    max-width: calc(100% - 36px);
    padding: 0.65rem 0.95rem;
    border-radius: 999px;
    background: rgba(255, 253, 248, 0.86);
    color: var(--text-primary);
    border: 1px solid rgba(201, 161, 59, 0.22);
    box-shadow: var(--shadow-md);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

.reveal,
.reveal-left,
.reveal-right,
.reveal-scale,
.stagger-children > * {
    will-change: transform, opacity;
}

input,
textarea,
select,
button {
    font-size: 16px;
}

/* Structural Design & Floor Plans Section */
.structural-design-section {
    background: linear-gradient(180deg, var(--bg-primary) 0%, rgba(201, 161, 59, 0.05) 50%, var(--bg-primary) 100%);
    position: relative;
}

.floorplan-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.floorplan-card {
    background: var(--surface-strong);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    display: flex;
    flex-direction: column;
}

.floorplan-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(201, 161, 59, 0.4);
}

.floorplan-image-wrapper {
    position: relative;
    width: 100%;
    min-height: 460px;
    height: auto;
    background: #ffffff;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    cursor: pointer;
}

.floorplan-image-wrapper img {
    width: 100%;
    height: auto;
    max-height: 580px;
    object-fit: contain;
    padding: 0;
    transition: transform 0.4s ease;
    border-radius: var(--radius-md);
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.floorplan-card:hover .floorplan-image-wrapper img {
    transform: scale(1.03);
}

.floorplan-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--gold-dark);
    color: #ffffff;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 2;
}

.floorplan-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.floorplan-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.45rem;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    line-height: 1.25;
}

.floorplan-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.floorplan-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.floorplan-features li {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.9rem;
    color: var(--text-primary);
    font-weight: 500;
}

.floorplan-features li svg {
    color: var(--gold-dark);
    flex-shrink: 0;
}

.structural-highlights-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.4rem 2rem;
    background: var(--surface-strong);
    border: 1px solid var(--border);
    border-radius: 999px;
    box-shadow: var(--shadow-md);
}

.highlight-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text-primary);
    padding: 0.4rem 1rem;
}

.highlight-icon {
    font-size: 1.15rem;
}

/* Floorplan Lightbox Modal */
.floorplan-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.floorplan-modal.active {
    opacity: 1;
    visibility: visible;
}

.floorplan-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(12, 9, 4, 0.92);
    backdrop-filter: blur(12px);
}

.floorplan-modal-dialog {
    position: relative;
    z-index: 2;
    max-width: 94vw;
    max-height: 92vh;
    width: 1150px;
    background: #ffffff;
    border-radius: var(--radius-xl);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    animation: modalZoomIn 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalZoomIn {
    from {
        opacity: 0;
        transform: scale(0.92);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.floorplan-modal-close {
    position: absolute;
    top: 18px;
    right: 22px;
    z-index: 10;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(36, 27, 12, 0.85);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 1.6rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.25s ease;
}

.floorplan-modal-close:hover {
    background: var(--gold-dark);
    transform: scale(1.1);
}

.floorplan-modal-body {
    flex: 1;
    overflow: auto;
    padding: 2.2rem;
    background: #faf8f5;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 350px;
    max-height: calc(88vh - 110px);
}

.floorplan-modal-body img {
    max-width: 100%;
    height: auto;
    max-height: 76vh;
    object-fit: contain;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    background: #ffffff;
}

.floorplan-modal-caption {
    padding: 1.25rem 2rem;
    background: var(--bg-primary);
    border-top: 1px solid var(--border);
}

.floorplan-modal-caption h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    color: var(--text-primary);
    margin-bottom: 0.35rem;
}

.floorplan-modal-caption p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    margin: 0;
}

@media (max-width: 768px) {
    .floorplan-grid {
        grid-template-columns: 1fr;
    }
    .floorplan-image-wrapper {
        min-height: 320px;
        padding: 1rem;
    }
    .structural-highlights-bar {
        border-radius: var(--radius-lg);
        flex-direction: column;
        align-items: flex-start;
    }
    .floorplan-modal-dialog {
        max-width: 96vw;
    }
    .floorplan-modal-body {
        padding: 1rem;
    }
}


