/* ============================================================
   Khatua Luxury Developers — Design System
   Dark Luxury: Black + Gold
   ============================================================ */

/* ── GOOGLE FONTS ── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&family=Montserrat:wght@300;400;500;600;700&display=swap');

/* ── CSS VARIABLES ── */
:root {
    /* Colors */
    --gold:           #C9962E;
    --gold-light:     #E8C97A;
    --gold-pale:      #F5E8C4;
    --gold-dim:       rgba(201, 150, 46, 0.15);
    --dark:           #080808;
    --dark-2:         #0F0F0F;
    --dark-3:         #161616;
    --dark-4:         #1E1E1E;
    --dark-5:         #272727;
    --off-white:      #F7F3EC;
    --white:          #FFFFFF;
    --muted:          #888888;
    --muted-light:    #AAAAAA;
    --border:         rgba(201, 150, 46, 0.18);
    --border-subtle:  rgba(255, 255, 255, 0.06);

    /* Typography */
    --font-serif:     'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    --font-sans:      'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --space-xs:   4px;
    --space-sm:   8px;
    --space-md:   16px;
    --space-lg:   32px;
    --space-xl:   64px;
    --space-2xl:  96px;
    --space-3xl:  140px;

    /* Layout */
    --max-width:  1320px;
    --nav-height: 88px;

    /* Transitions */
    --ease:       cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-out:   cubic-bezier(0.0, 0.0, 0.2, 1);
    --duration:   0.35s;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    font-size: 16px;
}

body {
    background-color: var(--dark);
    color: var(--off-white);
    font-family: var(--font-sans);
    font-weight: 300;
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
    list-style: none;
}

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

input, textarea, select {
    font-family: inherit;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.01em;
}

h1 { font-size: clamp(44px, 6vw, 84px); }
h2 { font-size: clamp(32px, 4vw, 56px); }
h3 { font-size: clamp(22px, 2.5vw, 36px); }
h4 { font-size: clamp(18px, 2vw, 26px); }

p {
    font-size: 14px;
    line-height: 1.9;
    letter-spacing: 0.02em;
    color: var(--muted-light);
}

.eyebrow {
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 20px;
}

.eyebrow::before {
    content: '';
    display: inline-block;
    width: 36px;
    height: 1px;
    background: var(--gold);
    flex-shrink: 0;
}

/* ── LAYOUT UTILITIES ── */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 40px;
}

.section {
    padding: var(--space-3xl) 0;
}

.section-sm {
    padding: var(--space-2xl) 0;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

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

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.flex {
    display: flex;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.text-center { text-align: center; }
.text-gold   { color: var(--gold); }
.text-muted  { color: var(--muted); }
.italic      { font-style: italic; }

/* ── DIVIDER ── */
.gold-divider {
    width: 60px;
    height: 1px;
    background: linear-gradient(to right, var(--gold), transparent);
    margin: 24px 0;
}

.gold-divider-center {
    width: 60px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    margin: 24px auto;
}

/* ── BUTTONS ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    transition: all var(--duration) var(--ease);
    position: relative;
    overflow: hidden;
}

.btn-gold {
    background: var(--gold);
    color: var(--dark);
    border: 1px solid var(--gold);
}

.btn-gold:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(201, 150, 46, 0.3);
}

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

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

.btn-white {
    background: transparent;
    color: var(--off-white);
    border: 1px solid rgba(247, 243, 236, 0.3);
}

.btn-white:hover {
    background: var(--off-white);
    color: var(--dark);
    border-color: var(--off-white);
}

.btn-arrow::after {
    content: '→';
    font-size: 14px;
    transition: transform var(--duration) var(--ease);
}

.btn-arrow:hover::after {
    transform: translateX(4px);
}

/* ── NAVIGATION ── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1150;
    height: var(--nav-height);
    padding: 0 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background var(--duration) var(--ease),
                border-color var(--duration) var(--ease);
    background: linear-gradient(to bottom, rgba(8,8,8,0.9) 0%, rgba(8,8,8,0) 100%);
}

.nav.scrolled {
    background: rgba(8, 8, 8, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

/* Logo */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
}

.nav-logo-mark {
    width: 46px;
    height: 46px;
    border: 1.5px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(45deg);
    flex-shrink: 0;
    transition: background var(--duration) var(--ease);
}

.nav-logo-mark span {
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 600;
    color: var(--gold);
    transform: rotate(-45deg);
    display: block;
}

.nav-logo:hover .nav-logo-mark {
    background: var(--gold-dim);
}

.nav-logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.nav-logo-text {
    display: flex;
    flex-direction: column;
}

.nav-logo-name {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.12em;
    color: var(--off-white);
    line-height: 1.1;
}

.nav-logo-sub {
    font-size: 8px;
    letter-spacing: 0.4em;
    color: var(--gold);
    text-transform: uppercase;
    margin-top: 3px;
}

/* Nav Links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 38px;
}

.nav-links a {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(247, 243, 236, 0.65);
    text-decoration: none;
    position: relative;
    transition: color var(--duration) var(--ease);
    padding-bottom: 4px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width var(--duration) var(--ease);
}

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

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 16px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--dark-3);
    border: 1px solid var(--border);
    min-width: 200px;
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-8px);
    transition: all var(--duration) var(--ease);
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
    display: block;
    padding: 10px 24px;
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted-light);
    transition: all var(--duration) var(--ease);
    border-left: 2px solid transparent;
}

.nav-dropdown-menu a::after { display: none; }

.nav-dropdown-menu a:hover {
    color: var(--gold);
    border-left-color: var(--gold);
    background: var(--gold-dim);
    padding-left: 28px;
}

/* Nav CTA */
.nav-cta-group {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Hamburger (mobile) */
/* Hamburger */
.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    padding: 6px;
    background: none;
    border: none;
    z-index: 1200;
    position: relative;
}

.nav-hamburger span {
    display: block;
    height: 1.5px;
    background: var(--off-white);
    transition: all 0.4s var(--ease);
    transform-origin: center;
}

.nav-hamburger span:nth-child(1) { width: 24px; }
.nav-hamburger span:nth-child(2) { width: 18px; }
.nav-hamburger span:nth-child(3) { width: 24px; }

/* Open state — X */
.nav-hamburger.open span:nth-child(1) {
    width: 24px;
    transform: translateY(7.5px) rotate(45deg);
}
.nav-hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.nav-hamburger.open span:nth-child(3) {
    width: 24px;
    transform: translateY(-7.5px) rotate(-45deg);
}

/* ── MOBILE NAV OVERLAY ─────────────────────────────────── */
.mob-overlay {
    position: fixed;
    inset: 0;
    z-index: 1050;
    background: var(--dark-2);
    display: flex;
    flex-direction: column;
    padding: 0;
    overflow-y: auto;
    overflow-x: hidden;

    /* Hidden state */
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition:
        opacity   0.45s var(--ease),
        visibility 0.45s var(--ease),
        transform 0.45s var(--ease);
}

.mob-overlay.open {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Ambient gold radial glow */
.mob-glow {
    position: absolute;
    top: -10%;
    right: -20%;
    width: 60vw;
    height: 60vw;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(201,150,46,0.07) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* ── Top strip ── */
.mob-top {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 28px 32px 20px;
    margin-top: var(--nav-height);
}

.mob-mark {
    width: 36px;
    height: 36px;
    border: 1px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(45deg);
    flex-shrink: 0;
}

.mob-mark span {
    font-family: var(--font-serif);
    font-size: 12px;
    color: var(--gold);
    transform: rotate(-45deg);
    display: block;
    line-height: 1;
}

.mob-top-label {
    font-size: 9px;
    letter-spacing: 0.45em;
    text-transform: uppercase;
    color: var(--muted);
}

/* ── Gold rule ── */
.mob-rule {
    position: relative;
    z-index: 1;
    height: 1px;
    margin: 0 32px 8px;
    background: linear-gradient(to right, var(--gold), transparent);
    opacity: 0.35;
}

/* ── Primary Links ── */
.mob-links {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    padding: 8px 0;
    flex: 1;
}

.mob-link {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 32px;
    text-decoration: none;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    border-bottom: 1px solid var(--border-subtle);
    position: relative;
    overflow: hidden;

    /* stagger-in */
    opacity: 0;
    transform: translateX(32px);
    transition:
        background 0.3s ease,
        opacity    0.4s ease calc(var(--mob-d, 0ms)),
        transform  0.4s ease calc(var(--mob-d, 0ms));
}

.mob-overlay.open .mob-link {
    opacity: 1;
    transform: translateX(0);
}

/* Set stagger delays via inline style */
.mob-link[data-index="0"], .mob-link-group[data-index="0"] .mob-link { --mob-d: 80ms; }
.mob-link[data-index="1"], .mob-link-group[data-index="1"] .mob-link { --mob-d: 140ms; }
.mob-link[data-index="2"], .mob-link-group[data-index="2"] .mob-link { --mob-d: 200ms; }
.mob-link[data-index="3"], .mob-link-group[data-index="3"] .mob-link { --mob-d: 260ms; }
.mob-link[data-index="4"], .mob-link-group[data-index="4"] .mob-link { --mob-d: 320ms; }

/* Gold left border sweep on hover */
.mob-link::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 2px;
    background: var(--gold);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.3s ease;
}

.mob-link:hover::before,
.mob-link--active::before { transform: scaleY(1); }

.mob-link:hover,
a.mob-link:hover { background: rgba(201,150,46,0.04); }

/* Number */
.mob-link-num {
    font-family: var(--font-serif);
    font-size: 11px;
    color: var(--muted);
    letter-spacing: 0.1em;
    flex-shrink: 0;
    min-width: 22px;
    transition: color 0.3s ease;
}

.mob-link:hover .mob-link-num,
.mob-link--active .mob-link-num { color: var(--gold); }

/* Text */
.mob-link-text {
    font-family: var(--font-serif);
    font-size: clamp(26px, 6vw, 34px);
    font-weight: 300;
    color: var(--off-white);
    letter-spacing: -0.01em;
    flex: 1;
    transition: color 0.3s ease;
    line-height: 1;
}

.mob-link:hover .mob-link-text,
.mob-link--active .mob-link-text { color: var(--gold); }

/* Arrow icon */
.mob-link-arrow {
    color: var(--muted);
    font-size: 12px;
    flex-shrink: 0;
    transition: transform 0.3s ease, color 0.3s ease;
}

.mob-link:hover .mob-link-arrow { color: var(--gold); }
.mob-link:hover .mob-link-arrow:not(.mob-link-plus) { transform: translateX(4px); }

/* Plus icon for accordion */
.mob-link-plus { font-size: 11px; }
.mob-link-toggle[aria-expanded="true"] .mob-link-plus {
    transform: rotate(45deg);
    color: var(--gold);
}

/* ── Sub-menu (Projects accordion) ── */
.mob-link-group {
    display: flex;
    flex-direction: column;
}

.mob-link-group .mob-link {
    width: 100%;
}

.mob-sub {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: var(--dark-3);
    border-bottom: 1px solid var(--border-subtle);
}

.mob-sub[aria-hidden="false"] {
    max-height: 200px;
}

.mob-sub-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 32px 14px 70px;
    text-decoration: none;
    color: var(--muted-light);
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-bottom: 1px solid var(--border-subtle);
    transition: color 0.3s ease, background 0.3s ease;
}

.mob-sub-link:last-child { border-bottom: none; }

.mob-sub-link i {
    color: var(--gold);
    font-size: 11px;
    width: 14px;
    text-align: center;
    flex-shrink: 0;
}

.mob-sub-link:hover {
    color: var(--gold);
    background: rgba(201,150,46,0.04);
}

/* ── Bottom strip ── */
.mob-bottom {
    position: relative;
    z-index: 1;
    padding: 24px 32px 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mob-bottom-rule {
    height: 1px;
    background: linear-gradient(to right, var(--gold), transparent);
    opacity: 0.25;
    margin-bottom: 4px;
}

/* CTA button */
.mob-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 28px;
    background: var(--gold);
    color: var(--dark);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.3s ease;

    opacity: 0;
    transform: translateY(16px);
    transition:
        background 0.3s ease,
        opacity    0.4s ease 380ms,
        transform  0.4s ease 380ms;
}

.mob-overlay.open .mob-cta {
    opacity: 1;
    transform: translateY(0);
}

.mob-cta:hover { background: var(--gold-light); }
.mob-cta i { font-size: 12px; }

/* Quick contact */
.mob-contacts {
    display: flex;
    flex-direction: column;
    gap: 12px;

    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.4s ease 440ms, transform 0.4s ease 440ms;
}

.mob-overlay.open .mob-contacts { opacity: 1; transform: translateY(0); }

.mob-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--muted-light);
    font-size: 12px;
    letter-spacing: 0.08em;
    transition: color 0.3s ease;
}

.mob-contact-item i {
    color: var(--gold);
    font-size: 14px;
    width: 18px;
    text-align: center;
}

.mob-contact-item:hover { color: var(--gold); }

/* Social row */
.mob-social {
    display: flex;
    gap: 10px;

    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease 500ms, transform 0.4s ease 500ms;
}

.mob-overlay.open .mob-social { opacity: 1; transform: translateY(0); }

.mob-social-link {
    width: 38px;
    height: 38px;
    border: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mob-social-link:hover {
    border-color: var(--gold);
    color: var(--gold);
}

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

.hero-bg {
    position: absolute;
    inset: 0;
    background: var(--dark);
}

.hero-bg-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.35;
    transition: opacity 1.2s ease;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(8, 8, 8, 0.95) 0%,
        rgba(8, 8, 8, 0.75) 50%,
        rgba(8, 8, 8, 0.4)  100%
    );
}

/* Decorative gold lines */
.hero-deco-line {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, transparent 0%, var(--gold) 40%, transparent 100%);
    opacity: 0.3;
}

.hero-deco-line:nth-child(2) {
    right: 80px;
    opacity: 0.1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 60px;
    max-width: 820px;
}

.hero-content .eyebrow {
    animation: fadeInUp 0.8s var(--ease) both;
    justify-content: flex-start !important;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(52px, 7vw, 80px);
    font-weight: 300;
    line-height: 1.0;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
    animation: fadeInUp 0.9s var(--ease) 0.1s both;
}

.hero-title em {
    font-style: italic;
    color: var(--gold);
}

.hero-subtitle {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: clamp(16px, 2vw, 28px);
    font-weight: 300;
    color: var(--gold-pale);
    margin-bottom: 28px;
    animation: fadeInUp 1.0s var(--ease) 0.2s both;
}

.hero-desc {
    font-size: 13px;
    line-height: 1.9;
    color: rgba(247, 243, 236, 0.5);
    max-width: 500px;
    margin-bottom: 22px;
    animation: fadeInUp 1.0s var(--ease) 0.3s both;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    animation: fadeInUp 1.0s var(--ease) 0.4s both;
}

/* Scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 60px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 2;
    animation: fadeInUp 1.2s var(--ease) 0.6s both;
}

.hero-scroll-line {
    width: 40px;
    height: 1px;
    background: var(--gold);
    animation: scrollLine 2s ease infinite;
}

.hero-scroll-text {
    font-size: 9px;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
}

/* Slide counter */
.hero-counter {
    position: absolute;
    right: 60px;
    bottom: 40px;
    font-family: var(--font-serif);
    font-size: 14px;
    color: var(--muted);
    z-index: 2;
}

.hero-counter strong {
    color: var(--gold);
    font-size: 22px;
    font-weight: 300;
}

/* Slider dots */
.hero-dots {
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 2;
}

.hero-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--muted);
    cursor: pointer;
    transition: all var(--duration) var(--ease);
}

.hero-dot.active {
    background: var(--gold);
    transform: scale(1.4);
}

/* ── STATS BAR ── */
.stats-bar {
    background: var(--dark-3);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 52px 0;
}

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

.stat-item {
    padding: 0 40px;
    text-align: center;
    border-right: 1px solid var(--border);
    position: relative;
}

.stat-item:last-child {
    border-right: none;
}

.stat-number {
    font-family: var(--font-serif);
    font-size: clamp(44px, 5vw, 72px);
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
    letter-spacing: -0.02em;
    display: block;
}

.stat-suffix {
    font-family: var(--font-serif);
    font-size: 32px;
    color: var(--gold-light);
}

.stat-label {
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 10px;
    display: block;
}

/* ── SECTION HEADERS ── */
.section-header {
    margin-bottom: 64px;
}

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

.section-header h2 {
    color: var(--off-white);
    margin-bottom: 16px;
}

.section-header h2 em {
    color: var(--gold);
    font-style: italic;
}

.section-header p {
    max-width: 560px;
    color: var(--muted);
}

.section-header.center p {
    margin: 0 auto;
}

/* ── PROJECT CARDS ── */
.project-card {
    position: relative;
    overflow: hidden;
    background: var(--dark-3);
    cursor: pointer;
    group: true;
}

.project-card-image {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
    display: block;
}

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

.project-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8,8,8,0.9) 0%, transparent 60%);
    transition: opacity var(--duration) var(--ease);
}

.project-card-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px;
    transform: translateY(8px);
    transition: transform var(--duration) var(--ease);
}

.project-card:hover .project-card-body {
    transform: translateY(0);
}

.project-card-status {
    display: inline-block;
    padding: 4px 12px;
    background: var(--gold);
    color: var(--dark);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.project-card-status.completed {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
}

.project-card-name {
    font-family: var(--font-serif);
    font-size: 26px;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 4px;
}

.project-card-location {
    font-size: 11px;
    letter-spacing: 0.15em;
    color: var(--muted-light);
    text-transform: uppercase;
    margin-bottom: 6px;
}

.project-card-type {
    font-size: 12px;
    color: var(--muted);
    margin-bottom: 16px;
}

.project-card-completion {
    font-size: 10px;
    letter-spacing: 0.15em;
    color: var(--gold);
    text-transform: uppercase;
}

.project-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 16px;
    opacity: 0;
    transform: translateY(8px);
    transition: all var(--duration) var(--ease);
}

.project-card:hover .project-card-link {
    opacity: 1;
    transform: translateY(0);
}

/* ── VALUES ── */
.value-card {
    padding: 40px 32px;
    border: 1px solid var(--border-subtle);
    background: var(--dark-3);
    position: relative;
    overflow: hidden;
    transition: all var(--duration) var(--ease);
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--duration) var(--ease);
}

.value-card:hover {
    border-color: var(--border);
    background: var(--dark-4);
    transform: translateY(-4px);
}

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

.value-icon {
    width: 48px;
    height: 48px;
    border: 1px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--gold);
    font-size: 20px;
}

.value-card h4 {
    font-family: var(--font-serif);
    font-size: 22px;
    color: var(--off-white);
    margin-bottom: 12px;
}

.value-card p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.8;
}

/* ── QUOTE SECTION ── */
.quote-section {
    background: var(--dark-3);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.quote-section::before {
    content: '\201C';
    position: absolute;
    top: -20px;
    left: 40px;
    font-family: var(--font-serif);
    font-size: 280px;
    color: var(--gold);
    opacity: 0.04;
    line-height: 1;
    pointer-events: none;
}

.quote-text {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: clamp(22px, 3vw, 40px);
    font-weight: 300;
    line-height: 1.4;
    color: var(--off-white);
    max-width: 860px;
    margin: 0 auto 32px;
    text-align: center;
}

.quote-author {
    font-size: 10px;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.quote-author::before,
.quote-author::after {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--gold);
    opacity: 0.5;
}

/* ── TESTIMONIALS ── */
.testimonials-section {
    background: var(--dark-2);
}

.testimonial-card {
    background: var(--dark-3);
    border: 1px solid var(--border-subtle);
    padding: 36px 32px;
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    font-family: var(--font-serif);
    font-size: 64px;
    color: var(--gold);
    opacity: 0.4;
    position: absolute;
    top: 16px;
    left: 24px;
    line-height: 1;
}

.testimonial-text {
    font-size: 13px;
    line-height: 1.8;
    color: var(--muted-light);
    margin-bottom: 24px;
    font-style: italic;
}

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

.testimonial-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--gold-dim);
    border: 1px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-family: var(--font-serif);
    font-size: 16px;
    font-weight: 500;
    flex-shrink: 0;
}

.testimonial-name {
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--off-white);
    text-transform: uppercase;
}

.testimonial-role {
    font-size: 11px;
    color: var(--gold);
    margin-top: 2px;
}

/* Slider arrows */
.slider-nav {
    display: flex;
    gap: 12px;
    margin-top: 40px;
}

.slider-arrow {
    width: 48px;
    height: 48px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    cursor: pointer;
    transition: all var(--duration) var(--ease);
    font-size: 16px;
    background: none;
}

.slider-arrow:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* ── BANKING PARTNERS ── */
.partners-section {
    background: var(--dark-3);
    border-top: 1px solid var(--border);
    padding: 60px 0;
}

.partners-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px 60px;
}

.partner-logo {
    height: 36px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1) opacity(0.35);
    transition: all var(--duration) var(--ease);
}

.partner-logo:hover {
    filter: brightness(0) invert(1) opacity(0.7);
}

/* ── NEWS ── */
.news-card {
    border-bottom: 1px solid var(--border-subtle);
    padding: 28px 0;
    display: flex;
    gap: 24px;
    align-items: flex-start;
    transition: all var(--duration) var(--ease);
}

.news-card:hover { border-bottom-color: var(--border); }

.news-number {
    font-family: var(--font-serif);
    font-size: 48px;
    font-weight: 300;
    color: var(--dark-5);
    line-height: 1;
    flex-shrink: 0;
    width: 60px;
    transition: color var(--duration) var(--ease);
}

.news-card:hover .news-number { color: var(--gold-dim); }

.news-source {
    font-size: 9px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
}

.news-title {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 400;
    color: var(--off-white);
    line-height: 1.3;
    margin-bottom: 8px;
    transition: color var(--duration) var(--ease);
}

.news-card:hover .news-title { color: var(--gold-light); }

.news-date {
    font-size: 11px;
    color: var(--muted);
    letter-spacing: 0.1em;
}

/* ── CONTACT SECTION ── */
.contact-form-group {
    margin-bottom: 24px;
}

.contact-form-group label {
    display: block;
    font-size: 9px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
}

.contact-form-group input,
.contact-form-group textarea,
.contact-form-group select {
    width: 100%;
    background: var(--dark-4);
    border: 1px solid var(--border-subtle);
    border-radius: 0;
    padding: 14px 18px;
    color: var(--off-white);
    font-size: 13px;
    font-family: var(--font-sans);
    font-weight: 300;
    transition: border-color var(--duration) var(--ease);
    outline: none;
    appearance: none;
}

.contact-form-group input:focus,
.contact-form-group textarea:focus,
.contact-form-group select:focus {
    border-color: var(--gold);
}

.contact-form-group input::placeholder,
.contact-form-group textarea::placeholder {
    color: var(--dark-5);
}

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

/* ── FOOTER ── */
.footer {
    background: var(--dark-2);
    border-top: 1px solid var(--border);
    padding: var(--space-2xl) 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand-name {
    font-family: var(--font-serif);
    font-size: 26px;
    font-weight: 300;
    color: var(--off-white);
    letter-spacing: 0.08em;
    margin-bottom: 6px;
}

.footer-brand-tagline {
    font-size: 9px;
    letter-spacing: 0.4em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 20px;
}

.footer-brand-desc {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.9;
    max-width: 300px;
}

.footer-heading {
    font-size: 9px;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
}

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

.footer-links a {
    font-size: 12px;
    color: var(--muted);
    transition: color var(--duration) var(--ease);
    letter-spacing: 0.05em;
}

.footer-links a:hover { color: var(--gold-light); }

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-contact-icon {
    color: var(--gold);
    font-size: 14px;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact-text {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.6;
}

.footer-contact-text a {
    color: var(--muted);
    transition: color var(--duration) var(--ease);
}

.footer-contact-text a:hover { color: var(--gold); }

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    font-size: 14px;
    transition: all var(--duration) var(--ease);
}

.footer-social a:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid var(--border-subtle);
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-bottom-text {
    font-size: 11px;
    color: var(--muted);
    letter-spacing: 0.05em;
}

.footer-bottom-links {
    display: flex;
    gap: 28px;
}

.footer-bottom-links a {
    font-size: 10px;
    letter-spacing: 0.1em;
    color: var(--muted);
    transition: color var(--duration) var(--ease);
}

.footer-bottom-links a:hover { color: var(--gold); }

/* ── FLOAT BUTTONS ── */
.float-buttons {
    position: fixed;
    bottom: 32px;
    right: 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 900;
}

.float-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all var(--duration) var(--ease);
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
    color: white;
    text-decoration: none;
}

.float-whatsapp {
    background: #25D366;
}

.float-call {
    background: var(--gold);
    color: var(--dark);
}

.float-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

/* ── ENQUIRY MODAL / POPUP ── */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(8, 8, 8, 0.9);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--duration) var(--ease);
}

.modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.modal-box {
    background: var(--dark-3);
    border: 1px solid var(--border);
    padding: 56px 52px;
    max-width: 520px;
    width: 90%;
    position: relative;
    transform: translateY(20px);
    transition: transform var(--duration) var(--ease);
}

.modal-overlay.open .modal-box {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    font-size: 18px;
    cursor: pointer;
    transition: all var(--duration) var(--ease);
    background: none;
}

.modal-close:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.modal-title {
    font-family: var(--font-serif);
    font-size: 36px;
    font-weight: 300;
    color: var(--off-white);
    margin-bottom: 6px;
}

.modal-subtitle {
    font-size: 11px;
    letter-spacing: 0.2em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 36px;
}

/* ── ANIMATIONS ── */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes scrollLine {
    0%   { transform: scaleX(1); opacity: 1; }
    50%  { transform: scaleX(0.4); opacity: 0.4; }
    100% { transform: scaleX(1); opacity: 1; }
}

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

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

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

/* ── MISC COMPONENTS ── */

/* Page hero (inner pages) */
.page-hero {
    height: 45vh;
    min-height: 380px;
    display: flex;
    align-items: flex-end;
    padding-bottom: 64px;
    position: relative;
    overflow: hidden;
    background: var(--dark-2);
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.25;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--dark) 0%, transparent 60%);
}

.page-hero-content {
    position: relative;
    z-index: 2;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.breadcrumb a,
.breadcrumb span {
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
    transition: color var(--duration) var(--ease);
}

.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: var(--gold); font-size: 8px; }

/* Tag pill */
.tag {
    display: inline-block;
    padding: 4px 14px;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border: 1px solid var(--border);
    color: var(--muted);
}

.tag-gold {
    border-color: var(--gold);
    color: var(--gold);
}

/* ── SCROLL TO TOP ── */
.scroll-top {
    position: fixed;
    bottom: 32px;
    left: 32px;
    width: 44px;
    height: 44px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    cursor: pointer;
    z-index: 900;
    opacity: 0;
    visibility: hidden;
    transition: all var(--duration) var(--ease);
    background: var(--dark-3);
    font-size: 18px;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* ── RESPONSIVE ── */
@media (max-width: 1200px) {
    .nav { padding: 0 40px; }
    .container { padding: 0 32px; }
    .hero-content { padding: 0 40px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 1024px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-item { border-right: none; border-bottom: 1px solid var(--border); padding: 28px; }
    .stat-item:nth-child(odd) { border-right: 1px solid var(--border); }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    :root { --nav-height: 72px; }
    .nav { padding: 0 24px; }
    .nav-links, .nav-cta-group { display: none; }
    .nav-hamburger { display: flex; }
    .container { padding: 0 24px; }
    .section { padding: var(--space-2xl) 0; }
    .hero-content { padding: 0 24px; }
    .hero-scroll, .hero-counter, .hero-dots { display: none; }
    .grid-2 { grid-template-columns: 1fr; }
    .grid-3 { grid-template-columns: 1fr; }
    .grid-4 { grid-template-columns: 1fr 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
    .modal-box { padding: 40px 28px; }
    .hero-actions { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
    .grid-4 { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr; }
    .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
}
/* ═══════════════════════════════════════════════
   HOMEPAGE — Alignment & Responsive Fixes
═══════════════════════════════════════════════ */

/* Eyebrow — left-justified variant (no centering override) */
.eyebrow.left,
.hero-content .eyebrow {
    justify-content: flex-start !important;
}

/* Stat suffix inline with number */
.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number-row {
    display: flex;
    align-items: baseline;
    gap: 4px;
    line-height: 1;
}

/* About section — image frame on smaller screens */
@media (max-width: 960px) {
    [style*="grid-template-columns:1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }
    /* Float badge repositioned */
    [style*="bottom:40px; left:-36px"] {
        left: 16px !important;
        bottom: 16px !important;
    }
}

/* Project cards — equal height images */
.project-card-image {
    aspect-ratio: 16/10;
}

/* Values grid gap flush */
.value-card {
    margin: 0;
}

/* Testimonial cards equal height */
.testimonial-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

/* Quote section em fix */
.quote-text em {
    font-style: italic;
    color: var(--gold);
}

/* CTA section responsive */
@media (max-width: 768px) {
    /* Stack CTA columns */
    [style*="display:flex; align-items:center; justify-content:space-between"] {
        flex-direction: column;
        align-items: flex-start !important;
    }
    /* Full-width CTA buttons */
    .section [style*="min-width:260px"] {
        min-width: 100% !important;
        width: 100%;
    }
    /* Project cards stack */
    [style*="grid-template-columns:1fr 1fr; gap:3px"] {
        grid-template-columns: 1fr !important;
    }
    /* About grid */
    [style*="grid-template-columns:1fr 1fr; gap:80px"] {
        grid-template-columns: 1fr !important;
        gap: 48px !important;
    }
    /* Partners wrap tight */
    .partners-grid {
        gap: 12px 24px;
    }
}

/* Smooth stat suffix alignment */
.stat-item .stat-suffix {
    font-size: 28px;
    line-height: 1;
    vertical-align: baseline;
    display: inline;
    margin-left: 2px;
}

/* Polarity fix: stat-number + suffix sit in same line */
.stats-grid .stat-item > .stat-number,
.stats-grid .stat-item > .stat-suffix {
    display: inline;
}

.stats-grid .stat-item > .stat-label {
    display: block;
    margin-top: 10px;
}

/* ═══════════════════════════════════════════════
   ABOUT PAGE — Specific styles & responsive fixes
═══════════════════════════════════════════════ */

/* Page Hero — about/inner pages */
.page-hero {
    height: 52vh;
    min-height: 420px;
}

.page-hero-bg {
    filter: grayscale(20%);
}

/* Company info strip — responsive */
@media (max-width: 1024px) {
    /* Info strip 2-col */
    .company-info-grid {
        grid-template-columns: 1fr 1fr !important;
    }
}

@media (max-width: 768px) {
    /* About grid stack */
    .about-grid {
        grid-template-columns: 1fr !important;
        gap: 48px !important;
    }
    /* Floating badge hide on mobile */
    .about-float-badge {
        display: none;
    }
    /* Mission/Vision stack */
    .mission-grid {
        grid-template-columns: 1fr !important;
    }
    /* Values grid — 2 col on mobile */
    .values-8-grid {
        grid-template-columns: 1fr 1fr !important;
    }
    /* Why Choose Us grid — 2 columns on mobile */
    .why-choose-grid {
        grid-template-columns: 1fr 1fr !important;
    }
    /* Company info strip — 2 col */
    [style*="grid-template-columns:repeat(4,1fr)"] {
        grid-template-columns: 1fr 1fr !important;
        gap: 24px !important;
    }
    [style*="border-right:1px solid var(--border)"] {
        border-right: none !important;
        border-bottom: 1px solid var(--border) !important;
        padding-bottom: 24px !important;
        margin-bottom: 24px !important;
    }
    /* Testimonial layout stack */
    [style*="grid-template-columns:1fr 1fr; gap:3px; align-items:stretch"] {
        grid-template-columns: 1fr !important;
    }
    /* Leadership grid */
    [style*="grid-template-columns:1fr 1.4fr"] {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 480px) {
    .page-hero {
        height: 45vh;
        min-height: 320px;
        padding-bottom: 40px;
    }
    [style*="grid-template-columns:repeat(4,1fr)"] {
        grid-template-columns: 1fr !important;
    }
    .values-8-grid,
    [style*="grid-template-columns:repeat(4,1fr); gap:3px"] {
        grid-template-columns: 1fr !important;
    }
    .why-choose-grid {
        grid-template-columns: 1fr !important;
    }
}

/* ═══════════════════════════════════════════════════════════
   JOURNEY PAGE — Vertical Timeline
═══════════════════════════════════════════════════════════ */

/* ── Timeline Container ── */
.timeline {
    position: relative;
    padding: 0;
    max-width: 1100px;
    margin: 0 auto;
}

/* Central vertical spine */
.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        var(--gold) 8%,
        var(--gold) 92%,
        transparent 100%
    );
    opacity: 0.35;
    z-index: 0;
}

/* ── Timeline Item — base ── */
.timeline-item {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 60px 1fr;
    gap: 0;
    align-items: start;
    margin-bottom: 64px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

/* ── Year Bubble — center column ── */
.timeline-year-bubble {
    grid-column: 2;
    position: relative;
    z-index: 2;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--dark-3);
    border: 1.5px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 13px;
    font-weight: 400;
    color: var(--gold);
    letter-spacing: 0.05em;
    transition: all 0.35s ease;
    margin: 0 auto;
    box-shadow: 0 0 0 6px var(--dark);
    writing-mode: horizontal-tb;
    text-align: center;
    flex-shrink: 0;
}

.timeline-year-bubble.current {
    background: var(--gold);
    color: var(--dark);
    box-shadow: 0 0 0 6px var(--dark), 0 0 24px rgba(201,150,46,0.35);
    font-weight: 600;
}

.timeline-item:hover .timeline-year-bubble {
    background: var(--gold);
    color: var(--dark);
    box-shadow: 0 0 0 6px var(--dark), 0 0 20px rgba(201,150,46,0.25);
}

/* ── Connector lines (bubble → card) ── */
.timeline-year-bubble::before,
.timeline-year-bubble::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 1px;
    background: var(--gold);
    opacity: 0.3;
    transition: opacity 0.35s ease;
}

.timeline-year-bubble::before { right: 100%; }
.timeline-year-bubble::after  { left: 100%;  }

.timeline-item:hover .timeline-year-bubble::before,
.timeline-item:hover .timeline-year-bubble::after {
    opacity: 0.7;
}

/* ── Card placement ── */

/* RIGHT-side items: card in col 3, col 1 empty */
.timeline-right .timeline-year-bubble {
    grid-column: 2;
    grid-row: 1;
}
.timeline-right .timeline-card {
    grid-column: 3;
    grid-row: 1;
    padding-left: 40px;
}

/* LEFT-side items: card in col 1, col 3 empty */
.timeline-left .timeline-year-bubble {
    grid-column: 2;
    grid-row: 1;
}
.timeline-left .timeline-card {
    grid-column: 1;
    grid-row: 1;
    padding-right: 40px;
    text-align: right;
}

/* Left card — flip tag/icon alignment */
.timeline-left .timeline-card > div:first-child {
    flex-direction: row-reverse;
}

.timeline-left .timeline-card [style*="width:36px"] {
    margin-left: auto;
    margin-right: 0;
}

/* ── Card styles ── */
.timeline-card {
    background: var(--dark-3);
    border: 1px solid var(--border-subtle);
    padding: 36px 32px;
    position: relative;
    overflow: hidden;
    transition: all 0.35s ease;
}

.timeline-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

.timeline-item:hover .timeline-card {
    border-color: var(--border);
    background: var(--dark-4);
    transform: translateY(-3px);
}

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

.timeline-card.current {
    border-color: var(--border);
    background: var(--dark-4);
}

.timeline-card.current::before {
    transform: scaleX(1);
}

/* Left card — top border origin from right */
.timeline-left .timeline-card::before {
    transform-origin: right;
}

/* ── Card inner elements ── */
.timeline-title {
    font-family: var(--font-serif);
    font-size: clamp(20px, 2vw, 28px);
    font-weight: 400;
    color: var(--off-white);
    line-height: 1.2;
    margin-bottom: 0;
}

.timeline-tag {
    display: inline-block;
    padding: 4px 12px;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border: 1px solid var(--border);
    color: var(--muted);
    background: var(--dark-5);
    transition: all 0.3s ease;
}

.timeline-tag.current {
    background: var(--gold-dim);
    border-color: var(--gold);
    color: var(--gold);
}

.timeline-item:hover .timeline-tag {
    border-color: var(--border);
    color: var(--muted-light);
}

.timeline-icon {
    width: 36px;
    height: 36px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    font-size: 14px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-icon {
    border-color: var(--gold);
    color: var(--gold);
}

/* Mobile-only year display */
.timeline-year-mobile {
    display: none;
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 10px;
}

/* ── RESPONSIVE — Timeline ── */

/* Tablet: reduce padding */
@media (max-width: 1024px) {
    .timeline-right .timeline-card { padding-left: 28px; }
    .timeline-left  .timeline-card { padding-right: 28px; }
    .timeline-card { padding: 28px 24px; }
}

/* Mobile: collapse to single-column left-aligned */
@media (max-width: 768px) {

    /* Remove center spine */
    .timeline::before { display: none; }

    /* All items single-column */
    .timeline-item {
        display: block;
        margin-bottom: 24px;
        padding-left: 28px;
        border-left: 1px solid var(--border);
        position: relative;
    }

    /* Left dot instead of bubble */
    .timeline-year-bubble {
        display: none;
    }

    /* Dot on the left rail */
    .timeline-item::before {
        content: '';
        position: absolute;
        left: -5px;
        top: 28px;
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: var(--gold);
        border: 2px solid var(--dark);
        box-shadow: 0 0 0 2px var(--gold);
    }

    .timeline-item.timeline-item:hover::before {
        box-shadow: 0 0 0 2px var(--gold), 0 0 12px rgba(201,150,46,0.4);
    }

    /* Current item dot */
    .timeline-item:has(.timeline-year-bubble.current)::before {
        background: var(--gold);
        box-shadow: 0 0 0 3px var(--dark), 0 0 0 5px var(--gold);
    }

    /* Show year inside card on mobile */
    .timeline-year-mobile { display: block; }

    /* Reset all card positioning */
    .timeline-right .timeline-card,
    .timeline-left  .timeline-card {
        grid-column: unset;
        padding: 28px 24px !important;
        text-align: left !important;
        margin: 0;
    }

    /* Reset left card flex direction */
    .timeline-left .timeline-card > div:first-child {
        flex-direction: row !important;
    }

    .timeline-left .timeline-card [style*="width:36px"] {
        margin-left: 0;
        margin-right: auto;
    }

    /* Card hover: no upward translate on mobile */
    .timeline-item:hover .timeline-card {
        transform: none;
    }
}

/* ── Journey page: What's Next grid responsive ── */
@media (max-width: 768px) {
    /* What's next 3-col → 1-col */
    .journey-next-grid {
        grid-template-columns: 1fr !important;
    }
    /* Intro strip grid → 1-col */
    .journey-intro-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }
    /* Mini stats 2×2 stays as-is on mobile */
}

@media (max-width: 480px) {
    .timeline-item {
        padding-left: 20px;
    }
}


/* ═══════════════════════════════════════════════════════════
   CONTACT PAGE STYLES
═══════════════════════════════════════════════════════════ */

/* ── Info Cards Strip ── */
.contact-info-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.contact-info-card {
    padding: 44px 32px;
    border-right: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border);
    transition: background 0.3s ease;
    position: relative;
}

.contact-info-card:last-child {
    border-right: none;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

.contact-info-card:hover { background: var(--dark-4); }
.contact-info-card:hover::before { transform: scaleX(1); }

.contact-info-icon {
    width: 44px; height: 44px;
    border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold); font-size: 18px;
    margin-bottom: 20px;
    transition: border-color 0.3s ease;
}

.contact-info-card:hover .contact-info-icon {
    border-color: var(--gold);
}

.contact-info-label {
    font-size: 9px;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
}

.contact-info-value {
    font-family: var(--font-serif);
    font-size: 15px;
    font-weight: 400;
    color: var(--off-white);
    line-height: 1.6;
    margin-bottom: 12px;
}

.contact-info-value a {
    color: var(--off-white);
    transition: color 0.3s ease;
}

.contact-info-value a:hover { color: var(--gold); }

.contact-info-sub {
    font-size: 11px;
    color: var(--muted);
    letter-spacing: 0.05em;
    line-height: 1.5;
}

.contact-info-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 14px;
    transition: gap 0.3s ease;
}

.contact-info-link:hover { gap: 10px; }

/* ── Main Form + Map Grid ── */
.contact-main-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 72px;
    align-items: start;
}

/* ── Form Styles ── */
.contact-page-form { margin-top: 8px; }

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

.contact-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-form-group label {
    font-size: 9px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
}

.contact-form-group input,
.contact-form-group textarea,
.contact-form-group select {
    background: var(--dark-4);
    border: 1px solid var(--border-subtle);
    border-radius: 0;
    padding: 14px 18px;
    color: var(--off-white);
    font-size: 13px;
    font-family: var(--font-sans);
    font-weight: 300;
    outline: none;
    transition: border-color 0.3s ease, background 0.3s ease;
    appearance: none;
    width: 100%;
}

.contact-form-group input:focus,
.contact-form-group textarea:focus,
.contact-form-group select:focus {
    border-color: var(--gold);
    background: var(--dark-5);
}

.contact-form-group input::placeholder,
.contact-form-group textarea::placeholder {
    color: var(--dark-5);
}

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

/* ── Success / Error ── */
.contact-success {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: rgba(201,150,46,0.1);
    border: 1px solid var(--gold);
    padding: 24px 28px;
    margin-bottom: 32px;
}

.contact-success-icon {
    width: 40px; height: 40px;
    background: var(--gold);
    color: var(--dark);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.contact-success-title {
    font-family: var(--font-serif);
    font-size: 20px;
    color: var(--off-white);
    margin-bottom: 4px;
}

.contact-success-sub {
    font-size: 13px;
    color: var(--muted);
}

.contact-error {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(231,76,60,0.1);
    border: 1px solid #e74c3c;
    padding: 16px 20px;
    margin-bottom: 24px;
    font-size: 13px;
    color: #ec7063;
}

/* ── Map ── */
.contact-map-wrapper {
    position: relative;
    width: 100%;
    height: 380px;
    background: var(--dark-4);
    border: 1px solid var(--border-subtle);
    overflow: hidden;
}

.contact-map-label {
    position: absolute;
    bottom: 16px; left: 16px;
    background: var(--dark-3);
    border: 1px solid var(--border);
    padding: 10px 16px;
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 8px;
    pointer-events: none;
}

/* ── Quick Connect Cards ── */
.contact-quick-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 22px;
    background: var(--dark-3);
    border: 1px solid var(--border-subtle);
    text-decoration: none;
    transition: all 0.3s ease;
}

a.contact-quick-card:hover {
    border-color: var(--border);
    background: var(--dark-4);
}

.contact-quick-icon {
    font-size: 22px;
    flex-shrink: 0;
}

.contact-quick-title {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--off-white);
    margin-bottom: 3px;
}

.contact-quick-sub {
    font-size: 11px;
    color: var(--muted);
    letter-spacing: 0.05em;
}

/* ── Office Hours ── */
.contact-hours-grid {
    display: grid;
    grid-template-columns: 1fr 1px 1fr 1px 1fr;
    gap: 0 48px;
    align-items: start;
}

.contact-hours-divider {
    background: var(--border);
    height: 100%;
    min-height: 200px;
}

.contact-hours-table {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-hours-row {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-subtle);
}

.contact-hours-row:last-child { border-bottom: none; }

.contact-hours-day {
    font-size: 12px;
    color: var(--muted-light);
    letter-spacing: 0.05em;
    min-width: 160px;
    flex-shrink: 0;
}

.contact-hours-dots {
    flex: 1;
    height: 1px;
    background: repeating-linear-gradient(
        to right,
        var(--border-subtle) 0px,
        var(--border-subtle) 3px,
        transparent 3px,
        transparent 8px
    );
    margin: 0 12px;
}

.contact-hours-time {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.05em;
    flex-shrink: 0;
}

.contact-hours-time.open  { color: var(--gold); }
.contact-hours-time.closed { color: var(--muted); }

/* ── Project Location Cards ── */
.contact-location-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: var(--dark-4);
    border: 1px solid var(--border-subtle);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-location-card:hover {
    border-color: var(--gold);
    background: var(--dark-5);
}

.contact-location-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
    box-shadow: 0 0 0 3px rgba(201,150,46,0.2);
}

.contact-location-name {
    font-family: var(--font-serif);
    font-size: 16px;
    font-weight: 400;
    color: var(--off-white);
    margin-bottom: 2px;
    transition: color 0.3s ease;
}

.contact-location-card:hover .contact-location-name { color: var(--gold); }

.contact-location-addr {
    font-size: 11px;
    color: var(--muted);
    letter-spacing: 0.08em;
}

.contact-location-status {
    font-size: 9px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: 3px 10px;
    flex-shrink: 0;
}

/* ── FAQ ── */
.faq-grid {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

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

.faq-item:first-child { border-top: 1px solid var(--border-subtle); }

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.03em;
    color: var(--muted-light);
    transition: color 0.3s ease;
}

.faq-question:hover,
.faq-question.active { color: var(--off-white); }

.faq-icon {
    width: 32px; height: 32px;
    border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold); font-size: 11px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.faq-question.active .faq-icon {
    background: var(--gold-dim);
    border-color: var(--gold);
    transform: rotate(0deg);
}

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

.faq-answer p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.9;
    padding-right: 52px;
}

/* ═══════════════════════════════════════════════════════════
   CONTACT PAGE RESPONSIVE
═══════════════════════════════════════════════════════════ */

@media (max-width: 1200px) {
    .contact-main-grid { gap: 48px; }
    .contact-hours-grid { gap: 0 32px; }
    .contact-hours-day { min-width: 130px; }
}

@media (max-width: 1024px) {
    /* Info strip: 2x2 */
    .contact-info-strip {
        grid-template-columns: 1fr 1fr;
    }
    .contact-info-card:nth-child(2) { border-right: none; }
    .contact-info-card:nth-child(3) { border-right: 1px solid var(--border-subtle); }
    .contact-info-card:nth-child(3),
    .contact-info-card:nth-child(4) { border-top: 1px solid var(--border-subtle); }

    /* Hours: stack */
    .contact-hours-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .contact-hours-divider { display: none; }
    .contact-hours-day { min-width: 140px; }
}

@media (max-width: 768px) {
    /* Info strip: 1 col */
    .contact-info-strip { grid-template-columns: 1fr; }
    .contact-info-card { border-right: none !important; }

    /* Form + map: stack */
    .contact-main-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    /* Form row: stack */
    .contact-form-row { grid-template-columns: 1fr; }

    /* Map height reduce */
    .contact-map-wrapper { height: 280px; }

    /* Quick cards: 1 col */
    .contact-quick-grid-2 { grid-template-columns: 1fr !important; }

    /* FAQ answer padding */
    .faq-answer p { padding-right: 0; }

    /* Gold CTA strip stack */
    .contact-cta-strip {
        flex-direction: column;
        align-items: flex-start !important;
    }
}

@media (max-width: 480px) {
    .contact-info-card { padding: 32px 24px; }
    .contact-hours-day { min-width: 110px; font-size: 11px; }
    .contact-hours-time { font-size: 11px; }
}
/* ═══════════════════════════════════════════════════════════
   PROJECT DETAIL PAGE
═══════════════════════════════════════════════════════════ */

/* Hero slide transition */
.project-hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: opacity 1.4s ease;
}

/* Hero dots — right side vertical */
.project-hero-dots {
    position: absolute;
    right: 60px;
    bottom: 48px;
    display: flex;
    gap: 10px;
    z-index: 2;
}

.project-hero-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--muted);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.project-hero-dot.active {
    background: var(--gold);
    transform: scale(1.4);
}

/* Pulse animation for status badge */
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.5; transform: scale(0.8); }
}

/* Amenities grid responsive */
.amenities-grid {
    grid-template-columns: repeat(5,1fr);
}

@media (max-width: 1200px) {
    .amenities-grid { grid-template-columns: repeat(4,1fr) !important; }
}

@media (max-width: 1024px) {
    .amenities-grid { grid-template-columns: repeat(3,1fr) !important; }
    .project-hero-dots { display: none; }
}

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

    /* Overview grid stack */
    [style*="grid-template-columns:1fr 1fr;gap:80px"] {
        grid-template-columns: 1fr !important;
        gap: 48px !important;
    }

    /* Location grid stack */
    [style*="grid-template-columns:1fr 1fr;gap:3px;align-items:start"] {
        grid-template-columns: 1fr !important;
    }

    /* Gallery thumbnails 2-col */
    [style*="grid-template-columns:repeat(4,1fr);gap:3px"] {
        grid-template-columns: repeat(2,1fr) !important;
    }

    /* CTA gold strip */
    [style*="grid-template-columns:1fr 1fr;gap:60px"] {
        grid-template-columns: 1fr !important;
        gap: 36px !important;
    }
}

@media (max-width: 480px) {
    .amenities-grid { grid-template-columns: repeat(2,1fr) !important; }
    [style*="grid-template-columns:repeat(3,1fr);gap:3px;margin-top"] {
        grid-template-columns: 1fr !important;
    }
}

/* ═══════════════════════════════════════════════════════════
   PROJECT CARD — COMING SOON
   Classes: .project-card-coming-soon, .project-card-cs-*
═══════════════════════════════════════════════════════════ */

.project-card-coming-soon {
    position: relative;
    overflow: hidden;
    background: var(--dark-3);
    cursor: default;
    /* match sibling card height */
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ── Atmospheric background ── */
.project-card-cs-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse at 30% 60%,
        rgba(201, 150, 46, 0.08) 0%,
        transparent 70%
    ),
    radial-gradient(
        ellipse at 80% 20%,
        rgba(201, 150, 46, 0.05) 0%,
        transparent 60%
    );
    z-index: 0;
}

/* Subtle grid texture overlay */
.project-card-cs-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(201,150,46,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201,150,46,0.04) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse at center, rgba(0,0,0,0.6) 0%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, rgba(0,0,0,0.6) 0%, transparent 75%);
}

/* ── Body — centred content ── */
.project-card-cs-body {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: clamp(32px, 4vw, 56px) clamp(24px, 3vw, 48px);
    width: 100%;
    height: 100%;
}

/* ── Animated diamond icon ── */
.project-card-cs-diamond {
    width: 64px;
    height: 64px;
    border: 1px solid rgba(201, 150, 46, 0.3);
    transform: rotate(45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    flex-shrink: 0;
    position: relative;
    animation: csDiamondPulse 4s ease infinite;
}

/* Outer ring */
.project-card-cs-diamond::before {
    content: '';
    position: absolute;
    inset: -8px;
    border: 1px solid rgba(201, 150, 46, 0.1);
    animation: csDiamondPulse 4s ease 0.4s infinite;
}

.project-card-cs-diamond-inner {
    transform: rotate(-45deg);
    color: var(--gold);
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes csDiamondPulse {
    0%, 100% {
        border-color: rgba(201, 150, 46, 0.3);
        box-shadow: none;
    }
    50% {
        border-color: rgba(201, 150, 46, 0.7);
        box-shadow: 0 0 24px rgba(201, 150, 46, 0.15);
    }
}

/* ── Tag line ── */
.project-card-cs-tag {
    font-family: var(--font-sans);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.45em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.project-card-cs-tag::before,
.project-card-cs-tag::after {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--gold);
    opacity: 0.5;
    flex-shrink: 0;
}

/* ── Headline ── */
.project-card-cs-title {
    font-family: var(--font-serif);
    font-size: clamp(26px, 3vw, 42px);
    font-weight: 300;
    color: var(--off-white);
    line-height: 1.15;
    margin-bottom: 0;
    letter-spacing: -0.01em;
}

.project-card-cs-title em {
    color: var(--gold);
    font-style: italic;
}

/* ── Gold rule ── */
.project-card-cs-rule {
    width: 40px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    margin: 20px auto;
    flex-shrink: 0;
}

/* ── Subtitle text ── */
.project-card-cs-sub {
    font-size: 12px;
    line-height: 1.85;
    color: var(--muted);
    max-width: 340px;
    margin-bottom: 28px;
    font-style: normal;
}

/* ── Notify / CTA button ── */
.project-card-cs-notify {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-sans);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--dark);
    background: var(--gold);
    padding: 12px 26px;
    text-decoration: none;
    transition: background 0.3s ease, gap 0.3s ease;
    border: none;
}

.project-card-cs-notify:hover {
    background: var(--gold-light);
    gap: 14px;
}

.project-card-cs-notify i {
    font-size: 11px;
    transition: transform 0.3s ease;
}

.project-card-cs-notify:hover i {
    transform: translateX(3px);
}

/* ── Corner accent lines (top-left & bottom-right) ── */
.project-card-cs-corner {
    position: absolute;
    width: 28px;
    height: 28px;
    z-index: 3;
    pointer-events: none;
}

.project-card-cs-corner-tl {
    top: 20px;
    left: 20px;
    border-top: 1px solid var(--gold);
    border-left: 1px solid var(--gold);
    opacity: 0.5;
}

.project-card-cs-corner-br {
    bottom: 20px;
    right: 20px;
    border-bottom: 1px solid var(--gold);
    border-right: 1px solid var(--gold);
    opacity: 0.5;
}

/* hover — brighten corners and elevate diamond */
.project-card-coming-soon:hover .project-card-cs-corner {
    opacity: 1;
    width: 36px;
    height: 36px;
    transition: all 0.4s ease;
}

.project-card-coming-soon:hover .project-card-cs-diamond {
    border-color: rgba(201, 150, 46, 0.7);
    box-shadow: 0 0 32px rgba(201, 150, 46, 0.2);
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .project-card-coming-soon {
        aspect-ratio: 16/12;
    }

    .project-card-cs-title {
        font-size: clamp(22px, 7vw, 32px);
    }

    .project-card-cs-sub {
        display: none; /* hide on small to avoid overflow */
    }

    .project-card-cs-diamond {
        width: 52px;
        height: 52px;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .project-card-coming-soon {
        aspect-ratio: 4/6;
    }
}
