/* ============================================
   ASCENTA — Main Stylesheet
   ============================================ */

/* ── Gotham Fonts ── */
@font-face {
    font-family: 'Gotham';
    src: url('../fonts/GothamBook.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Gotham';
    src: url('../fonts/GothamBold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

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

:root {
    --clr-dark:    #1e1e1e;
    --clr-darker:  #151515;
    --clr-mid:     #2d2d2d;
    --clr-card:    #3a3a3a;
    --clr-light:   #f5f4f0;
    --clr-white:   #ffffff;
    --clr-gold:    #c9a96e;
    --clr-gold-lt: #d4b88a;
    --clr-text:    #b0aea8;
    --font-serif:  'Gotham', 'Montserrat', sans-serif;
    --font-sans:   'Gotham', 'Montserrat', sans-serif;
    --nav-h:       72px;
    --ease:        cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

body {
    font-family: var(--font-sans);
    background: var(--clr-dark);
    color: var(--clr-text);
    overflow-x: hidden;
    line-height: 1.7;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container       { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
.container-wide  { max-width: 1300px; margin: 0 auto; padding: 0 2rem; }

/* ---------- Buttons ---------- */
.btn-outline {
    display: inline-block;
    padding: 0.8rem 2.4rem;
    border: 1px solid var(--clr-dark);
    color: var(--clr-dark);
    font-family: var(--font-sans);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    font-weight: 500;
    transition: all 0.3s var(--ease);
    margin-top: 1.5rem;
}
.btn-outline:hover {
    background: var(--clr-dark);
    color: var(--clr-white);
}

.btn-glass {
    display: inline-block;
    padding: 0.6rem 1.6rem;
    border: 1px solid rgba(255,255,255,0.5);
    color: var(--clr-white);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    font-weight: 500;
    transition: all 0.3s var(--ease);
    backdrop-filter: blur(4px);
    margin-top: 0.8rem;
}
.btn-glass:hover { background: rgba(255,255,255,0.2); }

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: var(--clr-white);
    font-family: var(--font-sans);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    margin-top: 0.5rem;
}
.btn-submit:hover {
    background: var(--clr-gold);
    border-color: var(--clr-gold);
    color: var(--clr-dark);
}

/* ---------- Section Titles ---------- */
.section-title {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.35em;
    color: var(--clr-text);
    margin-bottom: 3rem;
}
.section-title.centered { text-align: center; }
.section-title.light { color: rgba(255,255,255,0.6); }

/* ============================================
   NAVIGATION
   ============================================ */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    height: var(--nav-h);
    background: rgba(20, 20, 20, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: background 0.4s var(--ease);
}

.site-header.scrolled {
    background: rgba(15, 15, 15, 0.97);
}

.site-header.nav-hidden {
    transform: translateY(-100%);
    transition: transform 0.4s var(--ease), background 0.4s var(--ease);
}

.site-header {
    transition: transform 0.4s var(--ease), background 0.4s var(--ease);
}

.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 3rem;
}

.nav-logo a {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}
.logo-mark {
    height: 36px;
    width: auto;
    max-height: 100%;
}
.logo-text {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    color: var(--clr-white);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    margin-left: auto;
}

.nav-menu > li { position: relative; }

.nav-menu > li > a {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    color: rgba(255,255,255,0.7);
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}
.nav-menu > li > a:hover { color: var(--clr-white); }

.arrow { font-size: 0.5rem; opacity: 0.6; }

/* Dropdown */
.has-dropdown .dropdown {
    position: absolute;
    top: calc(100% + 1rem);
    left: -1rem;
    background: rgba(20,20,20,0.97);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 0.8rem 0;
    min-width: 160px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.3s var(--ease);
}
.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown li a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.4rem;
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.6);
    transition: all 0.2s;
}
.dropdown li a:hover {
    color: var(--clr-gold);
    padding-left: 1.8rem;
}

/* "Soon" badge in dropdown */
.nav-cs-badge {
    display: inline-block;
    font-size: 0.5rem;
    letter-spacing: 0.12em;
    padding: 0.15rem 0.45rem;
    border: 1px solid rgba(201,169,110,0.5);
    color: var(--clr-gold);
    border-radius: 2px;
    line-height: 1.4;
    flex-shrink: 0;
}

.btn-book {
    padding: 0.6rem 1.6rem;
    background: var(--clr-gold);
    color: var(--clr-darker);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    transition: all 0.3s var(--ease);
    white-space: nowrap;
}
.btn-book:hover {
    background: var(--clr-gold-lt);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    margin-left: auto;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--clr-white);
    transition: all 0.3s;
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* ── HERO SLIDESHOW ─────────────────────────── */
.hero-slideshow {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    background: #0d0d0d;
}

/* Full-screen dim bg — blurred, visible outside the record circle */
.hero-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    filter: brightness(0.22) blur(4px);
    transform: scale(1.05); /* compensate blur edge */
    z-index: 0;
    transition: opacity 1s ease;
}

/* Full-screen slides — no clip, full image always visible */
.hero-slide {
    position: absolute;
    inset: 0;
    display: block;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #0d0d0d;
    opacity: 0;
    will-change: opacity, mask-image;
    z-index: 1;
    cursor: pointer;
}

/* Decorative record ring — dark band with 0.5px hairline borders on each edge */
.hero-record-ring {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: radial-gradient(
        circle at 50% 50%,
        transparent            37.9%,
        rgba(255,255,255,0.18) 37.9%,
        rgba(255,255,255,0.18) 38.1%,
        rgba(0, 0, 0, 0.30)   38.1%,
        rgba(0, 0, 0, 0.30)   61.9%,
        rgba(255,255,255,0.18) 61.9%,
        rgba(255,255,255,0.18) 62.1%,
        transparent            62.1%
    );
}

/* Dark gradient overlay — covers full screen, sits above everything */
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.10) 0%,
        rgba(0,0,0,0.22) 50%,
        rgba(0,0,0,0.60) 100%
    );
    pointer-events: none;
}


/* Dot navigation */
.hero-dots {
    position: absolute;
    bottom: 2.2rem;
    right: 2.5rem;
    z-index: 3;
    display: flex;
    gap: 0.55rem;
    align-items: center;
}
.hero-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.35);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.3s, transform 0.3s;
}
.hero-dot.active {
    background: rgba(255,255,255,0.9);
    transform: scale(1.5);
}

/* ── HERO BRAND MARK (top-left, always visible) ── */
.hero-brand {
    position: absolute;
    top: calc(var(--nav-h) + 1.8rem);
    left: 2.5rem;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    opacity: 0;
    transform: translateY(-12px);
}
.hero-brand-name {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    letter-spacing: 0.35em;
    color: rgba(255,255,255,0.85);
    font-weight: 500;
}

/* ── DYNAMIC SLIDE TEXT (true centre of hero) ── */
.hero-text-panel {
    position: absolute;
    inset: 0;
    z-index: 5;
    pointer-events: none;
    text-align: center;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    opacity: 0;
}

.hero-slide-title {
    font-family: var(--font-sans);
    font-size: clamp(2.4rem, 7vw, 6.5rem);
    font-weight: 300;
    letter-spacing: 0.45em;
    color: var(--clr-white);
    line-height: 1;
    /* text-shadow for legibility over any image */
    text-shadow: 0 2px 40px rgba(0,0,0,0.4);
    /* Slide text transition */
    transition: opacity 0.45s ease, transform 0.45s ease;
}

.hero-slide-sub {
    font-family: var(--font-serif);
    font-size: clamp(0.9rem, 2vw, 1.3rem);
    font-weight: 300;
    font-style: italic;
    color: rgba(255,255,255,0.75);
    letter-spacing: 0.12em;
    transition: opacity 0.45s ease, transform 0.45s ease;
}

/* State classes for text swap animation */
.hero-slide-title.text-exit,
.hero-slide-sub.text-exit {
    opacity: 0;
    transform: translateY(-16px);
}
.hero-slide-title.text-enter,
.hero-slide-sub.text-enter {
    opacity: 0;
    transform: translateY(16px);
}

.hero-line {
    width: 0;
    height: 1px;
    background: rgba(255,255,255,0.4);
    margin-top: 0.4rem;
}

.hero-scroll-hint {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    animation: scrollHintFade 1s ease 2.5s forwards;
}
.hero-scroll-hint span {
    font-size: 0.55rem;
    letter-spacing: 0.25em;
    color: rgba(255,255,255,0.5);
}
.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
    animation: scrollLinePulse 2s ease-in-out infinite;
}
@keyframes scrollHintFade { to { opacity: 1; } }
@keyframes scrollLinePulse {
    0%, 100% { transform: scaleY(1); opacity: 0.5; }
    50% { transform: scaleY(1.2); opacity: 1; }
}

/* ============================================
   ABOUT INTRO
   ============================================ */
.about-intro {
    background: var(--clr-light);
    padding: 6rem 0;
    text-align: center;
}
.about-logo-mark { margin-bottom: 2rem; }
.about-text {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    line-height: 1.9;
    color: #555;
    max-width: 680px;
    margin: 0 auto;
    font-weight: 300;
}

/* ============================================
   ABOUT FEATURES
   ============================================ */
.about-features {
    background: var(--clr-mid);
    padding: 7rem 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 5rem;
    align-items: center;
}

.about-text-col {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.about-text-col p {
    font-size: 0.85rem;
    line-height: 1.9;
    color: rgba(255,255,255,0.6);
    font-weight: 300;
}

.about-img-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 0.8rem;
    height: 420px;
}

.about-img-placeholder {
    background: var(--clr-card);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    /* Replace background with actual image:
       background-image: url('...');
       background-size: cover;
       background-position: center; */
}
.about-img-placeholder span {
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.25);
    text-transform: uppercase;
}
.img-tall { grid-row: span 2; }
.about-img-right {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}
.img-half { flex: 1; }

/* ============================================
   PROJECTS
   ============================================ */
.projects {
    background: var(--clr-darker);
    padding: 7rem 0;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.project-card {
    position: relative;
    height: 560px;
    overflow: hidden;
    cursor: pointer;
}

/* Real background image */
.project-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.7s var(--ease);
    will-change: transform;
}
.project-card:hover .project-img {
    transform: scale(1.07);
}

/* Always-visible bottom name bar */
.project-label-bar {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 1.8rem;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
    transition: opacity 0.4s var(--ease);
}
.project-label-name {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    font-weight: 500;
    color: rgba(255,255,255,0.9);
}
.project-label-status {
    font-size: 0.55rem;
    letter-spacing: 0.2em;
    color: var(--clr-gold);
    border: 1px solid rgba(201,169,110,0.5);
    padding: 0.2rem 0.6rem;
}
.project-card:hover .project-label-bar {
    opacity: 0;
}

/* Glass overlay — hidden by default, reveals on hover */
.project-glass-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.5rem;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    opacity: 0;
    transition: opacity 0.45s var(--ease);
}
.project-card:hover .project-glass-overlay {
    opacity: 1;
}

.project-info {
    text-align: center;
    transform: translateY(18px);
    transition: transform 0.45s var(--ease);
}
.project-card:hover .project-info {
    transform: translateY(0);
}

.project-info-label {
    font-size: 0.58rem;
    letter-spacing: 0.2em;
    color: var(--clr-gold);
    margin-bottom: 0.8rem;
    text-transform: uppercase;
}
.project-info-name {
    font-family: var(--font-sans);
    font-size: clamp(1.6rem, 3vw, 2.6rem);
    font-weight: 300;
    letter-spacing: 0.2em;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.1;
}
.project-info-desc {
    font-size: 0.75rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.65);
    max-width: 280px;
    margin: 0 auto 1.8rem;
}

.btn-glass {
    display: inline-block;
    padding: 0.65rem 1.8rem;
    border: 1px solid rgba(255,255,255,0.5);
    color: var(--clr-white);
    font-size: 0.6rem;
    letter-spacing: 0.25em;
    font-weight: 500;
    transition: all 0.3s var(--ease);
    backdrop-filter: blur(4px);
}
.btn-glass:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.8);
}

/* ============================================
   WHY ASCENTA
   ============================================ */
.why-ascenta {
    background: #2a2a2a;
    padding: 6rem 0 7rem;
    text-align: center;
    overflow: hidden;
}

.why-title {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    letter-spacing: 0.4em;
    font-weight: 400;
    color: rgba(255,255,255,0.45);
    margin-bottom: 4.5rem;
}

/* ── Three right-pointing chevron arrows ── */
.why-arrows {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 4.5rem;
    /* negative margin creates overlap between arrows */
}

.why-arrow {
    width: 300px;
    height: 300px;
    margin-left: -48px;   /* overlap amount */
    flex-shrink: 0;
    /* Right-pointing arrow / chevron shape */
    clip-path: polygon(0% 0%, 72% 0%, 100% 50%, 72% 100%, 0% 100%, 28% 50%);
    overflow: hidden;
    transition: transform 0.5s var(--ease);
}
.why-arrow:first-child {
    margin-left: 0;
    z-index: 1;
}
.why-arrow:nth-child(2) { z-index: 2; }
.why-arrow:nth-child(3) { z-index: 3; }

.why-arrow:hover { transform: scale(1.04); }

.why-arrow-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    /* Each arrow shows a different horizontal slice of the same image */
    background-size: 340% auto;  /* wider than 100% so each arrow crops a different piece */
    transition: transform 0.6s var(--ease);
}
.why-arrow:hover .why-arrow-img { transform: scale(1.06); }

.why-text {
    max-width: 540px;
    margin: 0 auto;
    padding: 0 2rem;
}
.why-text p {
    font-size: 0.8rem;
    line-height: 2;
    color: rgba(255,255,255,0.45);
    font-weight: 300;
    letter-spacing: 0.02em;
}

@media (max-width: 768px) {
    .why-arrows { flex-direction: column; gap: 1rem; }
    .why-arrow  { margin-left: 0; width: 240px; height: 240px; }
}

/* ============================================
   TESTIMONIALS
   ============================================ */
/* ── TESTIMONIALS ── */
.testimonials {
    position: relative;
    padding: 6rem 0 7rem;
    overflow: hidden;
    background-size: cover;
    background-position: center 40%;
    background-repeat: no-repeat;
}

.testimonials-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.45);
    z-index: 0;
}

.testimonials-inner {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2.5rem;
}

.testimonials-heading {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    letter-spacing: 0.45em;
    font-weight: 400;
    color: rgba(255,255,255,0.75);
    text-align: center;
    margin-bottom: 4rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr 1.6fr;
    gap: 1.5rem;
    align-items: stretch;
}

/* Shared glass style for all cards */
.t-glass {
    background: rgba(160, 145, 130, 0.28);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 18px;
    padding: 2.4rem 2rem;
    transition: background 0.4s var(--ease), transform 0.3s var(--ease);
}
.t-glass:hover {
    background: rgba(170, 155, 140, 0.35);
    transform: translateY(-4px);
}

/* Label card (left) */
.testimonial-label-card {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.t-reviews-label {
    font-size: 0.58rem;
    letter-spacing: 0.28em;
    color: rgba(255,255,255,0.5);
    font-weight: 500;
    margin-bottom: 1.2rem;
}
.t-headline {
    font-family: var(--font-serif);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 300;
    color: #fff;
    line-height: 1.25;
}

/* Testimonial cards */
.t-quote {
    font-family: Georgia, serif;
    font-size: 2rem;
    color: rgba(255,255,255,0.6);
    line-height: 1;
    margin-bottom: 1.2rem;
    letter-spacing: -0.05em;
}
.t-body {
    font-size: 0.78rem;
    line-height: 1.85;
    color: rgba(255,255,255,0.78);
    font-weight: 300;
    margin-bottom: 1.5rem;
}
.t-divider {
    width: 40px;
    height: 1px;
    background: rgba(255,255,255,0.35);
    margin-bottom: 1.2rem;
}
.t-cite {
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.75);
    font-style: normal;
    font-weight: 400;
    line-height: 1.6;
}
.t-role {
    font-size: 0.62rem;
    color: rgba(255,255,255,0.45);
    letter-spacing: 0.1em;
}

@media (max-width: 900px) {
    .testimonials-grid { grid-template-columns: 1fr 1fr; }
    .testimonial-label-card { grid-column: span 2; }
}
@media (max-width: 600px) {
    .testimonials-grid { grid-template-columns: 1fr; }
    .testimonial-label-card { grid-column: auto; }
}

/* ============================================
   CONTACT
   ============================================ */
/* ── Contact section — map background + floating form ── */
/* ── Contact: full-bleed map + centred form card ── */
/* ---- Contact section ---- */
.contact {
    position: relative;
    height: 680px;
    overflow: hidden;
    background: #1a1a1a;
}

/* Map fills entire section */
.contact-map-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.contact-map-bg iframe {
    width: 100%; height: 100%;
    display: block;
    border: 0;
}

/* Bottom-left: CONTACT US title + links */
.contact-map-info {
    position: absolute;
    bottom: 2.5rem;
    left: 2.8rem;
    z-index: 3;
}
.contact-section-title {
    font-family: var(--font-sans);
    font-size: 1.6rem;
    font-weight: 300;
    letter-spacing: 0.3em;
    color: rgba(255,255,255,0.85);
    margin: 0 0 0.9rem;
}
.contact-map-links {
    display: flex;
    gap: 2rem;
}
.contact-map-link {
    font-family: var(--font-sans);
    font-size: 0.58rem;
    letter-spacing: 0.22em;
    color: rgba(255,255,255,0.45);
    cursor: pointer;
    transition: color 0.2s;
    text-transform: uppercase;
}
.contact-map-link:hover { color: rgba(255,255,255,0.85); }

/* Right: form card — glass effect, curved bottom-left corner */
.contact-form-col {
    position: absolute;
    top: 0;
    right: 0;
    width: 380px;
    height: 100%;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px) saturate(160%);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
    border-left: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 0 0 0 28px;
    display: flex;
    flex-direction: column;
    padding: 3rem 2.8rem 2rem;
    z-index: 2;
    box-sizing: border-box;
    overflow-y: auto;
}

/* Form fields — underline style */
.contact-minimal-form {
    display: flex;
    flex-direction: column;
    flex: 1;
}
.cmf-field {
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding: 1rem 0 0.6rem;
    margin-bottom: 0.2rem;
}
.cmf-label {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.58rem;
    letter-spacing: 0.25em;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
    font-weight: 500;
}
.cmf-field input,
.cmf-field textarea {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    color: #ffffff;
    font-family: var(--font-sans);
    font-size: 0.82rem;
    font-weight: 300;
    padding: 0;
    resize: none;
    caret-color: #fff;
    letter-spacing: 0.06em;
}
.cmf-field textarea { min-height: 52px; }
.cmf-field input::placeholder,
.cmf-field textarea::placeholder { color: rgba(255,255,255,0.25); }
.cmf-field input:focus,
.cmf-field textarea:focus { outline: none; }

.cmf-submit {
    width: 100%;
    margin-top: 2rem;
    padding: 0.9rem;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #ffffff;
    font-family: var(--font-sans);
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    cursor: pointer;
    transition: all 0.3s;
    backdrop-filter: blur(4px);
}
.cmf-submit:hover    { background: rgba(255,255,255,0.22); border-color: rgba(255,255,255,0.6); }
.cmf-submit:disabled { opacity: 0.4; cursor: not-allowed; }

.cmf-msg {
    margin-top: 0.9rem;
    font-size: 0.7rem;
    color: rgba(255,255,255,0.55);
    letter-spacing: 0.05em;
    text-align: center;
}

/* Social icons */
.contact-socials {
    display: flex;
    gap: 1.2rem;
    margin-top: auto;
    padding-top: 1.4rem;
}
.contact-socials a {
    color: rgba(255,255,255,0.4);
    transition: color 0.2s;
    line-height: 0;
}
.contact-socials a:hover { color: rgba(255,255,255,0.9); }

@media (max-width: 768px) {
    .contact { height: auto; min-height: unset; }
    .contact-map-bg { position: relative; height: 300px; }
    .contact-map-bg iframe { height: 300px; }
    .contact-map-info { position: relative; bottom: auto; left: auto; padding: 2rem 1.8rem 0.5rem; }
    .contact-form-col {
        position: relative; top: auto; right: auto;
        width: 100%; height: auto;
        border-radius: 0;
        padding: 2rem 1.8rem;
    }
}

/* ============================================
   FOOTER
   ============================================ */
/* ── Global Toast Notification ── */
.ascenta-toast {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: #1e1e1e;
    color: #fff;
    padding: 1rem 2rem;
    border-left: 3px solid var(--clr-gold);
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    font-family: 'Gotham', 'Montserrat', sans-serif;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease, transform 0.35s ease;
    white-space: nowrap;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.ascenta-toast.ascenta-toast--error {
    border-left-color: #e05a5a;
}
.ascenta-toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.site-footer {
    background: var(--clr-darker);
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-top {
    padding: 4rem 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-cta {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}
.footer-cta h3 {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    color: var(--clr-white);
}
.footer-subscribe {
    display: flex;
    gap: 0;
    border: 1px solid rgba(255,255,255,0.15);
}
.footer-subscribe input {
    background: transparent;
    border: none;
    padding: 0.7rem 1.4rem;
    color: var(--clr-white);
    font-size: 0.75rem;
    outline: none;
    min-width: 220px;
}
.footer-subscribe input::placeholder { color: rgba(255,255,255,0.25); font-size: 0.72rem; }
.footer-subscribe button {
    background: rgba(255,255,255,0.08);
    border: none;
    border-left: 1px solid rgba(255,255,255,0.15);
    padding: 0.7rem 1.4rem;
    color: rgba(255,255,255,0.6);
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    cursor: pointer;
    font-family: var(--font-sans);
    transition: all 0.3s;
}
.footer-subscribe button:hover {
    background: var(--clr-gold);
    color: var(--clr-darker);
}

.footer-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.2rem;
}
.footer-logo span {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    color: var(--clr-white);
}
.footer-brand p {
    font-size: 0.78rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.35);
    max-width: 320px;
    font-weight: 300;
 padding-left: 2.9%; padding-right: 6.8%; box-sizing: border-box;}
.footer-brand .rera {
    margin-top: 1.2rem;
    font-size: 0.65rem;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.2);
 padding-left: 2.9%; padding-right: 6.8%; box-sizing: border-box;}

.footer-brand {
    flex: 0 0 280px;
}
.footer-links {
    display: flex;
    gap: 5rem;
    justify-content: flex-end;
    flex: 1;
}
.footer-col h4 {
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: rgba(255,255,255,0.45);
    margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col a {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.3);
    transition: color 0.3s;
    font-weight: 300;
}
.footer-col a:hover { color: var(--clr-gold); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 1.4rem 2rem;
    text-align: center;
}
.footer-bottom p {
    font-size: 0.65rem;
    color: rgba(255,255,255,0.2);
    letter-spacing: 0.08em;
}

/* ============================================
   ANIMATE STATES
   ============================================ */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
}
[data-animate="fade-left"] {
    transform: translateX(-30px);
}
[data-animate="fade-right"] {
    transform: translateX(30px);
}
[data-animate].is-visible {
    opacity: 1;
    transform: translate(0);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .about-grid { grid-template-columns: 1fr; gap: 3rem; }
    .testimonials-grid { grid-template-columns: 1fr 1fr; }
    .testimonial-label { grid-column: span 2; }
}

@media (max-width: 768px) {
    :root { --nav-h: 64px; }

    .nav-menu {
        position: fixed;
        top: var(--nav-h);
        left: 0; right: 0;
        background: rgba(15,15,15,0.98);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transform: translateY(-100%);
        opacity: 0;
        transition: all 0.4s var(--ease);
        pointer-events: none;
        backdrop-filter: blur(20px);
    }
    .nav-menu.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    .nav-toggle { display: flex; }
    .btn-book { display: none; }

    .projects-grid { grid-template-columns: 1fr; }
    .project-card  { height: 380px; }
    .contact-grid { grid-template-columns: 1fr; }
    .contact-map { display: none; }
    .contact-form-wrap { padding: 3rem 2rem; }
    .footer-main { grid-template-columns: 1fr; }
    .footer-links { grid-template-columns: repeat(3, 1fr); }
    .testimonials-grid { grid-template-columns: 1fr; }

    .hero-title { letter-spacing: 0.2em; }
    .why-arrows { flex-direction: column; align-items: center; gap: 1rem; }
    .why-arrow  { margin-left: 0 !important; width: 220px; height: 220px; }

    /* About page responsive */
    .au-intro-grid     { grid-template-columns: 1fr; }
    .au-vision-grid    { grid-template-columns: 1fr; gap: 1.5rem; }
    .au-vision-label   { text-align: left; font-size: 1.5rem; }
    .au-visionaries-header { grid-template-columns: 1fr; gap: 1.5rem; }
    .au-team-grid      { grid-template-columns: 1fr 1fr; }
    .au-bv-grid        { grid-template-columns: 1fr; }
    .au-milestone-timeline { grid-template-columns: 1fr 1fr; }
}

/* ============================================
   ABOUT PAGE
   ============================================ */

/* ── About Hero ── */
.about-hero {
    position: relative;
    height: 100vh;
    min-height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.about-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, #151515 0%, #2a2a2a 60%, #1e1e1e 100%);
}
.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
}
.about-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}
.hero-title-logo {
    width: 364px;
    max-width: 80vw;
    height: auto;
    display: block;
}
@media (max-width: 768px) {
    .hero-title-logo { width: 260px; }
}
.hero-logo-mark {
    width: 60px;
    height: 60px;
    overflow: hidden;
    position: relative;
    margin: 0 auto;
}
.hero-logo-mark-img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 290px;
    height: 290px;
    max-width: none;
    transform: translate(-50%, -50%);
}
@media (max-width: 768px) {
    .hero-logo-mark { width: 44px; height: 44px; }
    .hero-logo-mark-img { width: 210px; height: 210px; }
}

/* ── About Intro (light) ── */
.au-intro {
    background: #b8b5b0;
    position: relative;
    overflow: hidden;
    padding: 0;
}
.au-intro-inner {
    max-width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: stretch;
}
.au-watermark {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}
.au-watermark img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 96%;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    opacity: 0.15;
}
.au-watermark svg { width: 100%; height: auto; }

.au-intro-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    width: 100%;
}
.au-intro-text {
    position: relative;
    overflow: hidden;
    padding: 20% 5rem 5rem 5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.au-intro-img {
    overflow: hidden;
    min-height: 480px;
}
.au-intro-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.au-heading {
    font-family: 'Gotham', 'Montserrat', sans-serif;
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 700;
    color: #2a2a2a;
    letter-spacing: 0.08em;
    line-height: 1;
    white-space: nowrap;
    margin-bottom: 2rem;
}
.au-intro-text p {
    color: #3a3a3a;
    font-family: 'Gotham', 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 0.82rem;
    line-height: 2;
    max-width: 480px;
    text-align: justify;
}
.au-img-placeholder {
    width: 100%;
    aspect-ratio: 4 / 5;
    background: linear-gradient(145deg, #c8c8c8, #e0dede);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
}

/* ── Vision ── */
.au-vision {
    background: var(--clr-darker);
    padding: 5rem 0;
    margin-top: 0;
}
.au-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.au-vision-text p {
    font-size: 0.85rem;
    line-height: 1.9;
    color: var(--clr-text);
}
.au-vision-label {
    text-align: right;
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    color: var(--clr-white);
    letter-spacing: 0.15em;
}

/* ── Visionaries ── */
.au-visionaries {
    background: var(--clr-dark);
    padding: 6rem 0;
}
.au-visionaries-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 4rem;
}
.au-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    color: var(--clr-white);
    margin-bottom: 0.4rem;
}
.au-sublabel {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    color: var(--clr-text);
}
.au-visionaries-desc p {
    font-size: 0.85rem;
    line-height: 1.9;
    color: var(--clr-text);
}

/* Team Grid */
.au-team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.au-team-card {
    position: relative;
}
.au-team-photo {
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: var(--clr-mid);
}
.au-team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.6s var(--ease);
}
.au-team-card:hover .au-team-photo img {
    transform: scale(1.04);
}
.au-team-photo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #2a2a2a, #3a3a3a);
    color: var(--clr-text);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
}
.au-team-info {
    padding: 1.2rem 0 0;
    display: flex;
    align-items: baseline;
    gap: 1rem;
    flex-wrap: wrap;
}
.au-team-name {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--clr-white);
    letter-spacing: 0.03em;
}
.au-team-position {
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    color: var(--clr-gold);
    text-transform: uppercase;
    width: 100%;
}
.au-team-linkedin {
    color: var(--clr-text);
    transition: color 0.2s;
}
.au-team-linkedin:hover { color: var(--clr-gold); }

/* ── Team card hover overlay ── */
.au-team-overlay {
    position: absolute;
    inset: 0;
    background: rgba(8, 8, 8, 0.90);
    backdrop-filter: blur(6px) saturate(120%);
    display: flex;
    align-items: flex-end;
    padding: 2rem 1.6rem;
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.42s var(--ease), transform 0.42s var(--ease);
    z-index: 4;
    pointer-events: none;
}
.au-team-card:hover .au-team-overlay {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.au-team-overlay-inner {
    width: 100%;
}
.au-overlay-quote {
    font-family: var(--font-serif);
    font-size: 4rem;
    line-height: 1;
    color: var(--clr-gold);
    margin-bottom: 0.6rem;
    opacity: 0.85;
}
.au-overlay-text {
    font-size: 0.78rem;
    line-height: 1.65;
    color: rgba(255,255,255,0.80);
    margin-bottom: 1.2rem;
    font-style: italic;
}
.au-overlay-divider {
    width: 32px;
    height: 1px;
    background: var(--clr-gold);
    margin-bottom: 0.9rem;
    opacity: 0.7;
}
.au-overlay-name {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 400;
    color: var(--clr-white);
    letter-spacing: 0.04em;
    margin-bottom: 0.2rem;
}
.au-overlay-position {
    font-size: 0.6rem;
    letter-spacing: 0.14em;
    color: var(--clr-gold);
    text-transform: uppercase;
    margin-bottom: 0.8rem;
}
.au-overlay-linkedin {
    display: inline-block;
    font-size: 0.6rem;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.50);
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.2s;
}
.au-overlay-linkedin:hover { color: var(--clr-gold); }

/* ── Brand Values ── */
.au-brand-values {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}

/* Background image — set via inline style in template */
.au-bv-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* slight dark overlay so cards pop */
    filter: brightness(0.75);
}

.au-brand-values .container {
    position: relative;
    z-index: 1;
}
.au-bv-title {
    color: var(--clr-white);
    margin-bottom: 3rem;
}
.au-bv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* Glass cards — frosted light glass with black text */
.au-bv-card {
    padding: 2.8rem 2.2rem;
    border-radius: 18px;
    background: rgba(200, 200, 200, 0.35);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    border: 1px solid rgba(255,255,255,0.55);
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
    transition: background 0.4s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.au-bv-card:hover {
    background: rgba(220, 220, 220, 0.45);
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.2);
}
.au-bv-card h3 {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    text-align: center;
}
.au-bv-card p {
    font-size: 0.82rem;
    line-height: 1.85;
    color: #2a2a2a;
    text-align: center;
}

/* ── Milestone ── */
.au-milestone {
    background: var(--clr-light);
    padding: 6rem 0;
}
.au-milestone-title {
    color: var(--clr-dark);
    margin-bottom: 4rem;
}
.au-milestone-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid rgba(0,0,0,0.12);
}
.au-milestone-item {
    padding: 2rem 2.5rem 2rem 0;
    border-right: 1px solid rgba(0,0,0,0.12);
    position: relative;
}
.au-milestone-item:last-child { border-right: none; padding-right: 0; }
.au-milestone-item:not(:first-child) { padding-left: 2.5rem; }
.au-milestone-year {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 300;
    color: var(--clr-dark);
    margin-bottom: 1.5rem;
    padding-top: 1.5rem;
}
.au-milestone-line {
    width: 1px;
    height: 40px;
    background: var(--clr-gold);
    margin-bottom: 1.5rem;
}
.au-milestone-desc {
    font-size: 0.78rem;
    line-height: 1.8;
    color: #777;
}

/* ── Responsive overrides for About page (> 768 breakpoint already set above) ── */
@media (max-width: 1024px) {
    .au-team-grid { grid-template-columns: repeat(2, 1fr); }
    .au-milestone-timeline { grid-template-columns: repeat(2, 1fr); }
    .au-milestone-item:nth-child(2) { border-right: none; padding-right: 0; }
    .au-milestone-item:nth-child(3) { padding-left: 0; border-right: 1px solid rgba(0,0,0,0.12); }
    .au-milestone-item:nth-child(3),
    .au-milestone-item:nth-child(4) { border-top: 1px solid rgba(0,0,0,0.12); }
}
@media (max-width: 600px) {
    .au-team-grid { grid-template-columns: 1fr; }
    .au-milestone-timeline { grid-template-columns: 1fr; }
    .au-milestone-item { border-right: none; padding: 1.5rem 0; border-top: 1px solid rgba(0,0,0,0.12); }
    .au-milestone-item:first-child { border-top: none; }
    .au-bv-grid { grid-template-columns: 1fr; }
}

/* ============================================
   PROJECT PAGE  (single-ascenta_project)
   ============================================ */

/* ── Shared placeholder ── */
.proj-img-placeholder {
    width: 100%; height: 100%;
    background: linear-gradient(145deg, #c8c6c2, #dedad5);
    display: flex; align-items: center; justify-content: center;
    color: #999; font-size: 0.7rem; letter-spacing: 0.12em;
}
.proj-img-placeholder.sm  { aspect-ratio: 4/3; height: auto; }
.proj-img-placeholder.tall{ aspect-ratio: unset; min-height: 340px; }

/* ── Hero ── */
.proj-hero {
    position: relative;
    height: 90vh; min-height: 560px;
    background-color: #1a1a1a;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex; flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
}
.proj-hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.55) 70%, rgba(0,0,0,0.75) 100%);
}
.proj-brand {
    position: absolute; top: 2.5rem; right: 2.5rem;
    text-align: right; z-index: 2;
}
.proj-brand-name {
    display: block;
    font-family: var(--font-serif);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 300; color: #fff;
    letter-spacing: 0.1em; line-height: 1;
}
.proj-brand-tagline {
    display: block;
    font-size: 0.6rem; letter-spacing: 0.25em;
    color: rgba(255,255,255,0.65); margin-top: 0.3rem;
    text-transform: uppercase;
}
.proj-brand-logo {
    display: block;
    width: 220px; max-width: 60vw;
    height: auto;
    margin-left: auto;
}
.proj-hero-label {
    position: absolute; bottom: 7rem; left: 2.5rem;
    z-index: 2;
    font-family: var(--font-sans);
    font-size: 0.75rem; letter-spacing: 0.25em;
    color: rgba(255,255,255,0.85);
    border-left: 2px solid var(--clr-gold);
    padding-left: 0.8rem;
}
.proj-hero-cta {
    position: relative; z-index: 2;
    display: flex; gap: 1px;
    justify-content: center;
    padding-bottom: 3.5rem;
}
.btn-proj-plan {
    display: inline-block;
    padding: 0.85rem 3rem;
    background: rgba(30,30,30,0.75);
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: 0.65rem; letter-spacing: 0.2em; font-weight: 500;
    border: 1px solid rgba(255,255,255,0.2);
    transition: background 0.3s var(--ease), border-color 0.3s;
}
.btn-proj-plan:hover { background: var(--clr-gold); border-color: var(--clr-gold); color: #1e1e1e; }

/* ── Stats bar ── */
.proj-stats-bar {
    background: #3d3d35;
    display: flex; align-items: center; justify-content: center;
    gap: 0; padding: 1.4rem 2rem;
}
.proj-stat {
    display: flex; flex-direction: column; align-items: center;
    padding: 0 4rem; text-align: center;
}
.proj-stat-val {
    font-family: var(--font-serif);
    font-size: 1.3rem; font-weight: 300;
    color: #fff; letter-spacing: 0.05em;
}
.proj-stat-label {
    font-size: 0.6rem; letter-spacing: 0.18em;
    color: rgba(255,255,255,0.55); margin-top: 0.25rem; text-transform: uppercase;
}
.proj-stat-divider {
    width: 1px; height: 36px; background: rgba(255,255,255,0.2); flex-shrink: 0;
}

/* ── About ── */
.proj-about { background: #edeae4; padding: 6rem 0; }
.proj-about-inner {
    max-width: 1200px; margin: 0 auto; padding: 0 2.5rem;
    display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start;
}
.proj-section-heading {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 3vw, 2.4rem);
    font-weight: 300; color: #1e1e1e;
    letter-spacing: 0.06em; margin-bottom: 1.5rem;
}
.proj-about-text p { font-size: 0.82rem; line-height: 1.95; color: #666; }
.proj-about-img img {
    width: 100%; aspect-ratio: 4/3; object-fit: cover;
}

/* ── Amenities ── */
.proj-amenities { background: #edeae4; padding: 3rem 0 6rem; }
.proj-amenities-inner { max-width: 1200px; margin: 0 auto; padding: 0 2.5rem; }
.proj-amenities-top {
    display: flex; justify-content: space-between; align-items: flex-start;
    margin-bottom: 2.5rem; gap: 2rem;
}
.proj-amenities-desc {
    font-size: 0.82rem; line-height: 1.9; color: #666;
    max-width: 340px;
}
.proj-amenities-heading {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 300; color: #1e1e1e;
    letter-spacing: 0.06em; white-space: nowrap;
}
.proj-amenities-grid {
    display: grid; grid-template-columns: repeat(5, 1fr); gap: 6px;
}
.proj-amenity-item { aspect-ratio: 1; overflow: hidden; background: #d5d1cb; }
.proj-amenity-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.proj-amenity-item:hover img { transform: scale(1.05); }

/* ── Plans CTA ── */
.proj-plans-cta {
    background: #3a3a36;
    padding: 5rem 0 3rem;
}
.proj-plans-grid {
    max-width: 900px; margin: 0 auto; padding: 0 2.5rem;
    display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
}
.proj-plan-col p {
    font-size: 0.82rem; line-height: 1.95; color: rgba(255,255,255,0.55);
    margin-bottom: 2rem; text-align: center;
}
.btn-proj-dark {
    display: block; text-align: center;
    padding: 0.85rem 1.5rem;
    background: #2a2a26; color: #fff;
    font-size: 0.65rem; letter-spacing: 0.18em; font-weight: 500;
    border: 1px solid transparent;
    transition: all 0.3s var(--ease);
}
.btn-proj-dark:hover { background: var(--clr-gold); color: #1e1e1e; }
.btn-proj-outline {
    display: block; text-align: center;
    padding: 0.85rem 1.5rem;
    background: transparent; color: #fff;
    font-size: 0.65rem; letter-spacing: 0.18em; font-weight: 500;
    border: 1px solid rgba(255,255,255,0.3);
    transition: all 0.3s var(--ease);
}
.btn-proj-outline:hover { border-color: var(--clr-gold); color: var(--clr-gold); }
.proj-plans-note {
    text-align: center; font-size: 0.7rem; color: rgba(255,255,255,0.3);
    margin-top: 3rem; letter-spacing: 0.05em;
}

/* ── Gallery ── */
/* ── Gallery section — mosaic layout ── */
.proj-gallery-section {
    background: #edeae4;
    padding: 0;
}

/* Mosaic: large left image + right 2-row grid */
.proj-gallery-mosaic {
    display: flex;
    gap: 3px;
    height: 600px;
}

/* Large left image — full height */
.proj-gallery-main {
    flex: 0 0 50%;
    overflow: hidden;
    cursor: pointer;
    position: relative;
}

/* Right panel — fixed 2×2 grid, fills full right area */
.proj-gallery-right {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 3px;
    overflow: hidden;
}

/* Right-side thumbs */
.proj-gallery-thumb {
    overflow: hidden;
    cursor: pointer;
    position: relative;
    min-width: 0; /* prevent grid blowout */
}

/* Lightbox-only items: hidden from grid, still in DOM for lightbox navigation */
.gallery-lb-only {
    display: none;
}

/* Shared image styles */
.proj-gallery-main img,
.proj-gallery-thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.55s var(--ease);
}
.proj-gallery-main:hover img,
.proj-gallery-thumb:hover img { transform: scale(1.04); }

/* Zoom icon overlay — appears on hover */
.proj-gallery-zoom-icon {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0);
    transition: background 0.3s ease;
    pointer-events: none;
}
.proj-gallery-main:hover .proj-gallery-zoom-icon,
.proj-gallery-thumb:hover .proj-gallery-zoom-icon {
    background: rgba(0,0,0,0.25);
}
.proj-gallery-zoom-icon svg {
    opacity: 0;
    transform: scale(0.7);
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.proj-gallery-main:hover .proj-gallery-zoom-icon svg,
.proj-gallery-thumb:hover .proj-gallery-zoom-icon svg {
    opacity: 1;
    transform: scale(1);
}

/* Placeholder tiles */
.proj-gallery-placeholder { cursor: default; }

/* Footer row: GALLERY label + count */
.proj-gallery-footer {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    padding: 1.6rem 2.5rem 3rem;
}
.proj-gallery-label {
    font-family: var(--font-sans);
    font-size: clamp(1.8rem, 5vw, 3.5rem);
    font-weight: 300;
    letter-spacing: 0.2em;
    color: #1a1a1a;
}
.proj-gallery-count {
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    color: #888;
    font-weight: 500;
    text-transform: uppercase;
}

/* ── Lightbox ── */
.proj-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,0.94);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.proj-lightbox.open {
    opacity: 1;
    pointer-events: all;
}
.lb-img-wrap {
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}
#lb-img {
    max-width: 90vw;
    max-height: 82vh;
    object-fit: contain;
    display: block;
    border: none;
    transition: opacity 0.25s ease;
}
.lb-caption {
    color: rgba(255,255,255,0.6);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-align: center;
}
.lb-counter {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.65rem;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.15em;
}
.lb-close, .lb-prev, .lb-next {
    position: absolute;
    background: none;
    border: 1px solid rgba(255,255,255,0.25);
    color: rgba(255,255,255,0.8);
    cursor: pointer;
    transition: all 0.2s;
    font-size: 1rem;
    padding: 0;
    line-height: 1;
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover {
    background: rgba(255,255,255,0.1);
    color: #fff;
    border-color: rgba(255,255,255,0.6);
}
.lb-close {
    top: 1.5rem; right: 1.8rem;
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    font-size: 0.85rem;
}
.lb-prev {
    left: 1.8rem; top: 50%; transform: translateY(-50%);
    width: 46px; height: 46px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
}
.lb-next {
    right: 1.8rem; top: 50%; transform: translateY(-50%);
    width: 46px; height: 46px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
}

/* ── Location ── */
.proj-location {
    display: grid; grid-template-columns: 1fr 1fr;
    min-height: 500px;
}
.proj-location-img { overflow: hidden; }
.proj-location-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.proj-location-info {
    background: #3a3a36;
    padding: 5rem 4rem;
    display: flex; flex-direction: column; justify-content: center;
}
.proj-loc-heading {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 300; color: #fff;
    letter-spacing: 0.06em; line-height: 1;
    margin-bottom: 1.2rem;
}
.proj-loc-subtitle {
    font-size: 0.82rem; line-height: 1.7;
    color: rgba(255,255,255,0.6);
    margin-bottom: 2.5rem;
}
.proj-loc-distances { list-style: none; }
.proj-loc-distances li {
    display: flex; align-items: baseline; gap: 1rem;
    padding: 0.7rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    font-size: 0.78rem;
}
.proj-loc-distances li:last-child { border-bottom: none; }
.dist-time  { color: #fff; font-weight: 500; white-space: nowrap; min-width: 60px; }
.dist-label { color: rgba(255,255,255,0.5); }

/* ── Project page responsive ── */
@media (max-width: 1024px) {
    .proj-about-inner  { grid-template-columns: 1fr; gap: 2.5rem; }
    .proj-stat         { padding: 0 2rem; }
    .proj-amenities-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
    .proj-hero { height: 75vh; }
    .proj-brand { top: 1.5rem; right: 1.5rem; }
    .proj-hero-label { bottom: 5.5rem; left: 1.5rem; }
    .proj-stats-bar { flex-wrap: wrap; gap: 1.5rem; padding: 1.5rem; }
    .proj-stat { padding: 0 1rem; }
    .proj-stat-divider { display: none; }
    .proj-amenities-top { flex-direction: column; }
    .proj-amenities-grid { grid-template-columns: repeat(2, 1fr); }
    .proj-plans-grid { grid-template-columns: 1fr; gap: 2rem; }
    .proj-gallery-mosaic { flex-direction: column; height: auto; }
    .proj-gallery-main { flex: none; height: 280px; }
    .proj-gallery-right { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; height: auto; }
    .proj-gallery-thumb { height: 160px; }
    .proj-location { grid-template-columns: 1fr; }
    .proj-location-img { min-height: 260px; }
    .proj-location-info { padding: 3rem 2rem; }
}

/* ============================================
   SUB-PLAN PAGES  (Plot Plan / Villa Plan)
   ============================================ */

/* ── Hero ── */
/* ── Subplan page: Gotham throughout ── */
.subplan-page,
.subplan-page * {
    font-family: 'Gotham', 'Montserrat', sans-serif;
}
.sp-headline {
    font-family: 'Gotham', 'Montserrat', sans-serif !important;
    font-weight: 700 !important;
    letter-spacing: 0.06em !important;
}
.sp-cat-num,
.sp-typo-title,
.sp-detail-size,
.sp-faqs-title,
.sp-cta-left {
    font-family: 'Gotham', 'Montserrat', sans-serif !important;
    font-weight: 700 !important;
}
.sp-stat-val {
    font-family: 'Gotham', 'Montserrat', sans-serif !important;
    font-weight: 700 !important;
}

.sp-hero {
    position: relative;
    height: 72vh; min-height: 480px;
    background: linear-gradient(145deg,#1a1e1a,#2a2e2a) center/cover no-repeat;
    display: flex; align-items: flex-end;
    overflow: hidden;
}
.sp-hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.72) 38%, rgba(0,0,0,0.1) 100%);
}
.sp-hero-content {
    position: relative; z-index: 2;
    padding: 0 3rem 3.5rem;
    max-width: 700px;
}
.sp-breadcrumb {
    font-size: 0.6rem; letter-spacing: 0.22em;
    color: rgba(255,255,255,0.55); margin-bottom: 1rem;
    text-transform: uppercase;
}
.sp-breadcrumb a { color: rgba(255,255,255,0.55); }
.sp-breadcrumb a:hover { color: #fff; }
.sp-headline {
    font-family: var(--font-serif);
    font-size: clamp(2.2rem,5vw,4.2rem);
    font-weight: 300; color: #fff;
    letter-spacing: 0.03em; line-height: 1; margin-bottom: 1rem;
    white-space: nowrap;
}
.sp-tagline {
    font-size: 0.82rem; line-height: 1.8;
    color: rgba(255,255,255,0.65);
}

/* ── Stats bar ── */
.sp-stats-bar {
    background: #3d3d35;
    display: flex; align-items: center; justify-content: center;
    padding: 1.2rem 2rem; gap: 0;
}
.sp-stat { display:flex;flex-direction:column;align-items:center;padding:0 4rem;text-align:center; }
.sp-stat-val { font-family:var(--font-serif);font-size:1.2rem;font-weight:300;color:#fff;letter-spacing:.05em; }
.sp-stat-label { font-size:0.58rem;letter-spacing:.18em;color:rgba(255,255,255,.5);margin-top:.2rem;text-transform:uppercase; }
.sp-stat-div { width:1px;height:32px;background:rgba(255,255,255,.18);flex-shrink:0; }

/* ── Plot Categories ── */
.sp-categories { background:#edeae4;padding:4rem 0; }
.sp-cats-grid {
    max-width:1100px;margin:0 auto;padding:0 2rem;
    display:grid;grid-template-columns:1fr 1fr;gap:6px;
}
.sp-cat-card {
    background:#e8e4de;border:1px solid #d8d4ce;
    padding:1.8rem 2rem;
    display:flex;flex-direction:column;gap:.5rem;
    transition:background .3s;
    cursor:pointer;
}
.sp-cat-card:hover { background:#dedad4; }
.sp-cat-full { grid-column:span 2;display:grid;grid-template-columns:1fr auto;align-items:center;gap:1rem; }
.sp-cat-full .sp-cat-size { grid-row:span 1; }
.sp-cat-full .sp-cat-avail { justify-self:end;align-self:center; }
.sp-cat-name { font-size:.68rem;letter-spacing:.12em;color:#888;font-weight:500; }
.sp-cat-size { display:flex;align-items:baseline;gap:.4rem; }
.sp-cat-num {
    font-family:var(--font-serif);
    font-size:clamp(1.4rem,3vw,2.2rem);font-weight:300;color:#1e1e1e;letter-spacing:.02em;
}
.sp-cat-unit { font-size:.78rem;color:#777;font-weight:400; }
.sp-cat-avail { font-size:.68rem;letter-spacing:.1em;color:#999; }

/* ── Villa Typologies ── */
.sp-typologies { background:#edeae4;padding:4rem 0; }
.sp-typo-grid {
    max-width:1100px;margin:0 auto;padding:0 2rem;
    display:grid;grid-template-columns:1fr 1fr;gap:6px;
}
.sp-typo-card {
    background:#e8e4de;border:1px solid #d8d4ce;padding:1.8rem;
    display:flex;flex-direction:column;gap:0;
    cursor:pointer;transition:background .3s;
}
.sp-typo-card:hover { background:#dedad4; }
.sp-cat-card.sp-card-active,
.sp-typo-card.sp-card-active { outline:2px solid var(--clr-gold,#c9a96e); outline-offset:-2px; background:#dedad4; }
.sp-selected-plan { color:var(--clr-gold,#c9a96e);font-size:.8rem;letter-spacing:.02em; }
.sp-typo-label { font-size:.65rem;letter-spacing:.1em;color:#999;margin-bottom:.6rem; }
.sp-typo-title {
    font-family:var(--font-serif);
    font-size:clamp(1.4rem,2.5vw,1.9rem);font-weight:300;color:#1e1e1e;
    letter-spacing:.02em;margin-bottom:1.2rem;
}
.sp-typo-img { aspect-ratio:16/9;overflow:hidden;background:#d5d1cb;margin-bottom:1.2rem; }
.sp-typo-img img { width:100%;height:100%;object-fit:cover; }
.sp-typo-specs { border-top:1px solid #d0ccc6;padding-top:1rem;display:flex;flex-direction:column;gap:.6rem; }
.sp-typo-spec-row { display:grid;grid-template-columns:1fr 1fr;gap:.5rem; }
.sp-typo-spec-row span { font-size:.78rem;color:#555; }
.sp-typo-spec-row small { display:block;font-size:.6rem;letter-spacing:.1em;color:#999;margin-bottom:.15rem;text-transform:uppercase; }
.sp-view-plan { display:inline-block;margin-top:1rem;font-size:.68rem;letter-spacing:.1em;color:#888;text-decoration:underline;text-underline-offset:3px;transition:color .2s; }
.sp-view-plan:hover { color:#1e1e1e; }

/* ── Detail Panel ── */
.sp-detail { background:#edeae4;padding:5rem 0; }
.sp-detail-inner {
    max-width:1100px;margin:0 auto;padding:0 2rem;
    display:grid;grid-template-columns:1fr 1.4fr;gap:5rem;align-items:start;
}
.sp-detail-left { display:flex;flex-direction:column;gap:1rem; }
.sp-detail-type { font-size:.65rem;letter-spacing:.14em;color:#999; }
.sp-detail-size {
    font-family:var(--font-serif);
    font-size:clamp(1.6rem,3.5vw,2.8rem);font-weight:300;color:#1e1e1e;letter-spacing:.02em;line-height:1.1;
}
.sp-detail-desc { font-size:.8rem;line-height:1.85;color:#777; }

/* Spec boxes (dark) */
.sp-spec-grid {
    display:grid;grid-template-columns:1fr 1fr;gap:4px;margin:.8rem 0;
}
.sp-spec-box {
    background:#2a2a26;padding:.9rem 1.1rem;
    display:flex;flex-direction:column;gap:.2rem;
}
.sp-spec-label { font-size:.55rem;letter-spacing:.18em;color:rgba(255,255,255,.5);text-transform:uppercase; }
.sp-spec-val   { font-size:.82rem;color:#fff;font-weight:500; }

/* Detail buttons */
.btn-sp-dark, .btn-sp-outline {
    display:block;text-align:center;
    padding:.9rem 1.4rem;
    font-size:.62rem;letter-spacing:.2em;font-weight:500;
    transition:all .3s var(--ease);
}
.btn-sp-dark {
    background:#2a2a26;color:#fff;border:1px solid transparent;
}
.btn-sp-dark:hover { background:var(--clr-gold);color:#1e1e1e; }
.btn-sp-outline {
    background:transparent;color:#1e1e1e;border:1px solid rgba(0,0,0,.3);
    margin-top:4px;
}
.btn-sp-outline:hover { border-color:#1e1e1e; }

/* Layout plan */
.sp-detail-right {}
.sp-layout-label { font-size:.65rem;letter-spacing:.2em;color:#888;margin-bottom:1rem;font-weight:500; }
.sp-layout-img { background:#ccc; }
.sp-layout-img img { width:100%;display:block; }

/* ── FAQs ── */
.sp-faqs { background:#edeae4;padding:4rem 0 6rem; }
.sp-faqs-inner { max-width:1100px;margin:0 auto;padding:0 2rem; }
.sp-faqs-title {
    font-family:var(--font-serif);
    font-size:clamp(1.6rem,3vw,2.5rem);font-weight:300;color:#1e1e1e;
    letter-spacing:.04em;margin-bottom:2.5rem;
}
.sp-accordion { border-top:1px solid #d0ccc6; }
.sp-accordion-item { border-bottom:1px solid #d0ccc6; }
.sp-accordion-trigger {
    width:100%;display:flex;justify-content:space-between;align-items:center;
    padding:1.3rem 0;background:none;border:none;cursor:pointer;
    font-family:var(--font-sans);font-size:.72rem;letter-spacing:.1em;color:#555;
    text-align:left;gap:1rem;
}
.sp-accordion-trigger:hover { color:#1e1e1e; }
.sp-acc-icon {
    font-size:1.2rem;font-weight:300;color:#999;flex-shrink:0;
    transition:transform .3s var(--ease);
}
.sp-accordion-trigger[aria-expanded="true"] .sp-acc-icon { transform:rotate(45deg);color:#1e1e1e; }
.sp-accordion-body {
    max-height:0;overflow:hidden;
    transition:max-height .4s var(--ease),padding .3s;
}
.sp-accordion-body.open { max-height:300px;padding-bottom:1.2rem; }
.sp-accordion-body p { font-size:.8rem;line-height:1.85;color:#888; }

/* ── CTA Bar ── */
.sp-cta-bar {
    background:#edeae4;border-top:1px solid #d0ccc6;
    display:flex;align-items:center;justify-content:space-between;
    padding:1.4rem 3rem;gap:2rem;
    position:sticky;bottom:0;z-index:100;
}
.sp-cta-left {
    font-family:var(--font-serif);
    font-size:clamp(1.2rem,2.5vw,2rem);font-weight:300;color:#1e1e1e;
    letter-spacing:.04em;white-space:nowrap;
}
.sp-cta-form { display:flex;gap:0;flex:1;max-width:500px;margin-left:auto; }
.sp-cta-form input {
    flex:1;padding:.9rem 1.4rem;
    border:1px solid #c0bbb5;background:#fff;
    font-family:var(--font-sans);font-size:.65rem;letter-spacing:.12em;
    outline:none;color:#555;
}
.sp-cta-form input::placeholder { color:#aaa; }
.sp-cta-form button {
    padding:.9rem 2rem;
    background:#2a2a26;color:#fff;border:none;cursor:pointer;
    font-family:var(--font-sans);font-size:.62rem;letter-spacing:.18em;font-weight:500;
    white-space:nowrap;
    transition:background .3s;
}
.sp-cta-form button:hover { background:var(--clr-gold);color:#1e1e1e; }

/* ── Responsive ── */
@media (max-width:1024px) {
    .sp-stat { padding:0 2.5rem; }
    .sp-detail-inner { grid-template-columns:1fr; gap:3rem; }
}
@media (max-width:768px) {
    .sp-hero { height:60vh; }
    .sp-hero-content { padding:0 1.5rem 3rem; max-width:100%; }
    .sp-headline { font-size: clamp(2rem,9vw,3rem); white-space: normal; }
    .sp-cats-grid { grid-template-columns:1fr; }
    .sp-cat-full { grid-column:span 1;display:flex; }
    .sp-cat-full .sp-cat-avail { justify-self:unset; }
    .sp-typo-grid { grid-template-columns:1fr; }
    .sp-stats-bar { flex-wrap:wrap;gap:1.2rem; }
    .sp-stat { padding:0 1rem; }
    .sp-stat-div { display:none; }
    .sp-spec-grid { grid-template-columns:1fr 1fr; }
    .sp-cta-bar { flex-direction:column;align-items:flex-start;padding:1.2rem 1.5rem; }
    .sp-cta-form { margin-left:0;max-width:100%;width:100%; }
}

/* ============================================
   BOOK NOW PAGE
   ============================================ */
.book-now-page body,
body.book-now-page {
    background: #16191c;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-page {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
    padding-top: var(--nav-h, 72px);
    background: #222222;
}

/* ── Left: dark info panel ── */
.contact-left {
    background: #222222;
    padding: 5rem 4rem 5rem;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.contact-reach-label {
    font-size: 0.6rem;
    letter-spacing: 0.35em;
    color: rgba(255,255,255,0.4);
    font-weight: 500;
    margin-bottom: 1.2rem;
}

.contact-headline {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 300;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 1.2rem;
}

.contact-subtext {
    font-size: 0.8rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.45);
    max-width: 380px;
    margin-bottom: 3.5rem;
}

.contact-get-in-touch {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    font-weight: 500;
    color: rgba(255,255,255,0.7);
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.contact-detail-item {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.contact-detail-label {
    font-size: 0.55rem;
    letter-spacing: 0.25em;
    color: rgba(255,255,255,0.35);
    font-weight: 500;
}

.contact-detail-val {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.85);
    font-weight: 300;
    letter-spacing: 0.02em;
    text-decoration: none;
    transition: color 0.2s;
}
a.contact-detail-val:hover { color: var(--clr-gold); }

.contact-rera-box {
    border: 1px solid rgba(255,255,255,0.1);
    padding: 1.4rem 1.8rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    max-width: 340px;
}

.contact-rera-label {
    font-size: 0.6rem;
    letter-spacing: 0.25em;
    color: rgba(255,255,255,0.4);
    font-weight: 500;
}

.contact-rera-val {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.65);
    font-weight: 300;
}

/* ── Right: dark backdrop + floating card ── */
.contact-right {
    background: #222222;
    display: flex;
    align-items: flex-start;
    padding: 4rem 0 4rem 0;    /* top/bottom padding creates the float effect */
}

.contact-form-wrap {
    width: 100%;
    background: #e4e2dd;
    /* Rounded only on the left side — right side is flush with edge */
    border-radius: 16px 0 0 16px;
    padding: 4rem 4.5rem 5rem 4rem;
    display: flex;
    flex-direction: column;
    box-shadow: -8px 0 40px rgba(0,0,0,0.25);
    min-height: 600px;
}

.contact-form-title {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    letter-spacing: 0.3em;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 2.2rem;
}

/* Form fields */
.cf-field {
    margin-bottom: 0.6rem;
    position: relative;
}

.cf-field input,
.cf-field select,
.cf-field textarea {
    width: 100%;
    background: #ebebeb;
    border: 1px solid #c8c5c0;
    outline: none;
    padding: 0.9rem 1rem;
    font-family: var(--font-sans);
    font-size: 0.72rem;
    color: #1a1a1a;
    letter-spacing: 0.04em;
    transition: border-color 0.2s, background 0.2s;
    border-radius: 0;
    appearance: none;
    -webkit-appearance: none;
    box-sizing: border-box;
}

/* ── Placeholder colour — light grey ── */
.cf-field input::-webkit-input-placeholder { color: #888 !important; }
.cf-field input::-moz-placeholder           { color: #888 !important; opacity: 1; }
.cf-field input::placeholder                { color: #888 !important; }
.cf-field textarea::-webkit-input-placeholder { color: #888 !important; }
.cf-field textarea::-moz-placeholder         { color: #888 !important; opacity: 1; }
.cf-field textarea::placeholder              { color: #888 !important; }

.cf-field input:focus,
.cf-field select:focus,
.cf-field textarea:focus {
    border-color: #888;
    background: #f2f0eb;
    outline: none;
}

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

/* Custom select */
.cf-select-wrap { position: relative; }
.cf-select-arrow {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
    pointer-events: none;
    font-size: 1rem;
    line-height: 1;
}
.cf-field select {
    padding-right: 2.5rem;
    color: #888;         /* placeholder-like until selected */
    cursor: pointer;
}
.cf-field select.has-value { color: #1a1a1a; }
.cf-field select option     { color: #1a1a1a; }

/* Submit */
.cf-submit {
    width: 100%;
    padding: 1.05rem;
    background: #1a1a1a;
    color: #fff;
    border: none;
    font-family: var(--font-sans);
    font-size: 0.68rem;
    letter-spacing: 0.3em;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 0.6rem;
}
.cf-submit:hover    { background: #2e2e2e; }
.cf-submit:disabled { opacity: 0.6; cursor: not-allowed; }

/* Messages */
.cf-success {
    margin-top: 1rem;
    padding: 0.9rem 1rem;
    background: rgba(0,100,0,0.07);
    border: 1px solid rgba(0,120,0,0.2);
    color: #2a6a2a;
    font-size: 0.72rem;
    letter-spacing: 0.04em;
}
.cf-error {
    margin-top: 1rem;
    padding: 0.9rem 1rem;
    background: rgba(180,0,0,0.07);
    border: 1px solid rgba(180,0,0,0.15);
    color: #8a2020;
    font-size: 0.72rem;
    letter-spacing: 0.04em;
}

@media (max-width: 768px) {
    .contact-page { grid-template-columns: 1fr; background: #222222; }
    .contact-left { padding: 3.5rem 1.8rem; }
    .contact-right { padding: 2rem 0 3rem; }
    .contact-form-wrap { border-radius: 16px 16px 0 0; padding: 3rem 1.8rem 4rem; box-shadow: none; }
}

/* ============================================================
   COMING SOON PAGE
   ============================================================ */
.cs-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding-top: var(--nav-h, 72px);
    color: #fff;
    font-family: var(--font-sans);
}

/* Hero — centred content */
.cs-hero {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 5rem 2rem 4rem;
    gap: 2.5rem;
}

.cs-tag {
    display: inline-block;
    border: 1px solid rgba(255,255,255,0.55);
    padding: 0.55rem 2.2rem;
    font-size: 0.65rem;
    letter-spacing: 0.35em;
    font-weight: 400;
    color: rgba(255,255,255,0.85);
}

.cs-title {
    font-family: var(--font-sans);
    font-size: clamp(4rem, 12vw, 9rem);
    font-weight: 300;
    letter-spacing: 0.22em;
    color: #fff;
    line-height: 1;
    margin: 0;
}

/* Email form */
.cs-form {
    display: flex;
    width: 100%;
    max-width: 580px;
    border: 1px solid rgba(255,255,255,0.2);
}

.cs-email {
    flex: 1;
    background: rgba(0,0,0,0.35);
    border: none;
    outline: none;
    padding: 1rem 1.4rem;
    color: #fff;
    font-family: var(--font-sans);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
}
.cs-email::placeholder { color: rgba(255,255,255,0.4); }

.cs-btn {
    background: rgba(255,255,255,0.1);
    border: none;
    border-left: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.85);
    padding: 1rem 1.8rem;
    font-family: var(--font-sans);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    cursor: pointer;
    transition: background 0.3s;
    white-space: nowrap;
}
.cs-btn:hover { background: rgba(255,255,255,0.2); }

/* About section — bottom strip */
.cs-about {
    padding: 4rem 3.5rem 5rem;
    max-width: 520px;
}

.cs-about-heading {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    letter-spacing: 0.35em;
    font-weight: 400;
    color: rgba(255,255,255,0.6);
    margin-bottom: 1.2rem;
}

.cs-about-text {
    font-size: 0.82rem;
    line-height: 1.85;
    color: rgba(255,255,255,0.55);
    font-weight: 300;
}

@media (max-width: 600px) {
    .cs-title { font-size: clamp(3rem, 18vw, 6rem); letter-spacing: 0.1em; }
    .cs-form  { flex-direction: column; }
    .cs-btn   { border-left: none; border-top: 1px solid rgba(255,255,255,0.2); }
    .cs-about { padding: 3rem 1.8rem 4rem; }
}

/* Grain texture overlay on entire page */
.book-page {
    min-height: 100vh;
    background-color: #16191c;
    background-image:
        radial-gradient(ellipse at 50% 50%, rgba(60,65,70,0.5) 0%, transparent 70%);
    position: relative;
    padding: calc(var(--nav-h, 72px) + 2.5rem) 2.5rem 5rem;
    color: #fff;
}
/* CSS grain via SVG filter */
.book-page::before {
    content: '';
    position: fixed; inset: 0; z-index: 0; pointer-events: none;
    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.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.06'/%3E%3C/svg%3E");
    opacity: 0.5;
}
.book-page > * { position: relative; z-index: 1; }

/* ── Project Tabs ── */
.book-tabs-wrap {
    display: flex; justify-content: center;
    margin-bottom: 3rem;
}
.book-tabs {
    display: flex;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50px;
    padding: 6px;
    gap: 4px;
}
.book-tab {
    padding: 0.7rem 2.5rem;
    border-radius: 40px;
    border: none; background: transparent; cursor: pointer;
    font-family: var(--font-sans);
    font-size: 0.75rem; font-weight: 500; letter-spacing: 0.12em;
    color: rgba(255,255,255,0.45);
    transition: all 0.3s var(--ease);
    white-space: nowrap;
}
.book-tab.active {
    background: rgba(255,255,255,0.08);
    color: #fff;
    text-decoration: underline; text-underline-offset: 4px;
}
.book-tab:hover:not(.active) { color: rgba(255,255,255,0.75); }

/* ── Inner container ── */
.book-inner { max-width: 1180px; margin: 0 auto; }

/* ── Headline ── */
.book-headline {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 300; color: #fff;
    letter-spacing: 0.05em; line-height: 1.2;
    margin-bottom: 2.5rem;
}

/* ── Steps ── */
.book-steps {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px;
    margin-bottom: 4rem;
}
.book-step {
    background: rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.06);
    padding: 1.4rem 1.6rem;
    display: flex; flex-direction: column; gap: 0.4rem;
}
.step-num {
    font-size: 0.65rem; letter-spacing: 0.18em;
    color: rgba(255,255,255,0.3);
}
.step-title {
    font-size: 0.8rem; font-weight: 500; letter-spacing: 0.08em;
    color: rgba(255,255,255,0.75);
}
.step-desc {
    font-size: 0.7rem; line-height: 1.6;
    color: rgba(255,255,255,0.35); margin-top: 0.3rem;
}

/* ── Body two-col ── */
.book-body {
    display: grid; grid-template-columns: 1fr 1.6fr;
    gap: 5rem; align-items: start;
}

/* ── Left: Select + Type ── */
.book-select-title {
    font-family: var(--font-serif);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 300; color: #fff;
    letter-spacing: 0.04em; margin-bottom: 1.2rem;
}
.book-type-label { margin-top: 2.5rem; }

.book-type-toggle {
    display: flex; flex-direction: column; gap: 6px;
}
.book-type-btn {
    display: block; width: 100%;
    padding: 1.4rem 1.8rem; text-align: left;
    background: rgba(0,0,0,0.45);
    border: 1px solid rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.4);
    font-family: var(--font-sans);
    font-size: 0.7rem; letter-spacing: 0.2em; font-weight: 500;
    cursor: pointer; transition: all 0.3s var(--ease);
}
.book-type-btn.active {
    background: rgba(255,255,255,0.04);
    color: #fff;
    text-decoration: underline; text-underline-offset: 4px;
}
.book-type-btn:hover:not(.active) { color: rgba(255,255,255,0.7); }

/* Radio list */
.book-radio-list { display: flex; flex-direction: column; gap: 0.6rem; }
.book-radio-item {
    display: flex; align-items: center; gap: 1rem;
    cursor: pointer;
}
.book-radio-item input[type="radio"] {
    appearance: none; -webkit-appearance: none;
    width: 16px; height: 16px; flex-shrink: 0;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.35);
    background: transparent;
    cursor: pointer; transition: all 0.2s;
    position: relative;
}
.book-radio-item input[type="radio"]:checked {
    border-color: #fff;
    background: #fff;
    box-shadow: inset 0 0 0 3px #16191c;
}
.book-radio-item label {
    font-size: 0.82rem; letter-spacing: 0.06em;
    color: rgba(255,255,255,0.65); cursor: pointer;
}

/* ── Right: Form ── */
.book-right {
    background: #e8e4de;
    padding: 2.5rem;
    position: relative;
}
.book-form-section {
    font-family: var(--font-serif);
    font-size: 1.1rem; font-weight: 400;
    color: #1e1e1e; letter-spacing: 0.03em;
    margin-bottom: 1rem;
}
.book-form-section + .book-form-section,
.book-payment-note + * { margin-top: 0; }

.book-payment-note {
    font-size: 0.7rem; color: #888; line-height: 1.6;
    margin-bottom: 0.8rem; margin-top: -0.5rem;
}

.book-field { margin-bottom: 6px; }
.book-field-row {
    display: grid; grid-template-columns: 1fr 1fr; gap: 6px; margin-bottom: 6px;
}
.book-field input,
.book-field-row .book-field input {
    width: 100%; padding: 0.85rem 1rem;
    background: #fff; border: 1px solid #d8d4ce;
    font-family: var(--font-sans); font-size: 0.75rem; color: #333;
    outline: none; transition: border-color 0.2s;
}
.book-field input::placeholder { color: #aaa; }
.book-field input:focus { border-color: #1e1e1e; }

.book-field + .book-form-section { margin-top: 1.4rem; }

.btn-book-confirm {
    display: block; width: 100%;
    padding: 1.1rem;
    background: #1e1e1e; color: #fff; border: none; cursor: pointer;
    font-family: var(--font-sans);
    font-size: 0.65rem; letter-spacing: 0.25em; font-weight: 600;
    margin-top: 1.2rem;
    transition: background 0.3s var(--ease);
}
.btn-book-confirm:hover { background: #333; }
.btn-book-confirm:disabled { opacity: 0.6; cursor: not-allowed; }

.book-success {
    margin-top: 1.2rem; padding: 1rem;
    background: #e8f5e9; border: 1px solid #a5d6a7;
    color: #2e7d32; font-size: 0.78rem; line-height: 1.6;
    border-radius: 2px;
}
.book-error {
    margin-top: 1rem; padding: 0.9rem 1rem;
    background: #fce4ec; border: 1px solid #f48fb1;
    color: #c62828; font-size: 0.75rem;
    border-radius: 2px;
}

/* Scroll hint */
.book-scroll-hint {
    text-align: center; padding: 1rem 0 0;
    color: rgba(30,30,30,0.3); font-size: 1.2rem;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .book-body { grid-template-columns: 1fr; gap: 3rem; }
}
@media (max-width: 768px) {
    .book-page { padding: 1.5rem 1.2rem 4rem; }
    .book-tabs { flex-wrap: wrap; border-radius: 12px; padding: 4px; }
    .book-tab  { padding: 0.6rem 1.2rem; }
    .book-steps { grid-template-columns: 1fr; }
    .book-field-row { grid-template-columns: 1fr; }
}

/* ============================================
   INSIGHTS PAGE
   ============================================ */
.insights-page {
    background: var(--clr-dark);
    padding: calc(var(--nav-h) + 3rem) 4rem 6rem;
    min-height: 60vh;
}
.insights-header { text-align: center; margin-bottom: 2.5rem; }
.insights-title {
    font-family: var(--font-serif);
    font-size: 2.4rem;
    letter-spacing: 0.12em;
    color: var(--clr-white);
    font-weight: 400;
}
.insights-tabs {
    display: flex;
    justify-content: center;
    gap: 0;
    background: var(--clr-mid);
    border-radius: 10px;
    padding: 4px;
    max-width: 640px;
    margin: 0 auto 3rem;
}
.insights-tab {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--clr-text);
    font-family: var(--font-sans);
    font-size: 0.85rem;
    letter-spacing: 0.04em;
    padding: 0.7rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.25s var(--ease), color 0.25s var(--ease);
}
.insights-tab:hover { color: var(--clr-white); }
.insights-tab.is-active {
    background: var(--clr-card);
    color: var(--clr-white);
}
.insights-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem 2rem;
    max-width: 1100px;
    margin: 0 auto;
}
.insights-empty {
    grid-column: 1 / -1;
    text-align: center;
    color: var(--clr-text);
    padding: 3rem 0;
}
.insight-card-link { display: block; text-decoration: none; color: inherit; }
.insight-card-img {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #d9d9d9;
    background-size: cover;
    background-position: center;
    border-radius: 6px;
    margin-bottom: 0.9rem;
}
.insight-card-cat {
    display: inline-block;
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    color: var(--clr-gold);
    border: 1px solid var(--clr-gold);
    border-radius: 4px;
    padding: 0.2rem 0.6rem;
    margin-bottom: 0.6rem;
}
.insight-card-date {
    font-size: 0.72rem;
    letter-spacing: 0.04em;
    color: var(--clr-text);
    margin-bottom: 0.4rem;
}
.insight-card-title {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--clr-white);
    line-height: 1.35;
    margin-bottom: 0.5rem;
    font-weight: 700;
}
.insight-card-excerpt {
    font-size: 0.85rem;
    color: var(--clr-text);
    line-height: 1.55;
    margin-bottom: 0.8rem;
}
.insight-card-readmore {
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    color: var(--clr-gold);
    font-weight: 700;
}
.insight-card-link:hover .insight-card-title { color: var(--clr-gold-lt); }

@media (max-width: 768px) {
    .insights-page { padding: calc(var(--nav-h) + 2rem) 1.2rem 4rem; }
    .insights-title { font-size: 1.7rem; }
    .insights-tabs { max-width: 100%; }
    .insights-tab { font-size: 0.72rem; padding: 0.6rem 0.5rem; }
    .insights-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* ============================================
   SINGLE BLOG POST
   ============================================ */
.single-post-page {
    background: var(--clr-dark);
    padding: calc(var(--nav-h) + 3rem) 4rem 6rem;
}
.single-post-inner { max-width: 760px; margin: 0 auto; }
.single-post-cat {
    display: inline-block;
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    color: var(--clr-gold);
    border: 1px solid var(--clr-gold);
    border-radius: 4px;
    padding: 0.2rem 0.6rem;
    margin-bottom: 1rem;
}
.single-post-date {
    font-size: 0.78rem;
    color: var(--clr-text);
    margin-bottom: 0.8rem;
}
.single-post-title {
    font-family: var(--font-serif);
    font-size: 2rem;
    line-height: 1.3;
    color: var(--clr-white);
    margin-bottom: 1.5rem;
}
.single-post-img {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #d9d9d9;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    margin-bottom: 2rem;
}
.single-post-content {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--clr-text);
}
.single-post-content p { margin-bottom: 1.2rem; }
.single-post-back {
    display: inline-block;
    margin-top: 2.5rem;
    color: var(--clr-gold);
    font-size: 0.85rem;
    letter-spacing: 0.04em;
    text-decoration: none;
}
@media (max-width: 768px) {
    .single-post-page { padding: calc(var(--nav-h) + 2rem) 1.2rem 4rem; }
    .single-post-title { font-size: 1.4rem; }
}


.hero-slide-logo-img {
  height: 2.16em;
  width: auto;
  max-width: 100%;
  display: inline-block;
  vertical-align: middle;
}
