
:root {
    /* Brand colors */
    --ink: #0c2421;
    --ink-soft: #1e3a36;
    --ink-muted: #29433f;
    --gold: #b8894a;
    --gold-light: #d4ad72;
    --gold-dark: #967038;
    --cream: #f4efe6;
    --paper: #fdfbf7;
    --surface: #ffffff;
    --muted: #5f6e6b;
    --line: #e2dcd2;
    --line-strong: #cfc7bb;
    --white: #fff;
    --success: #1a7a55;
    --error: #b42318;
    --focus: #b8894a;

    /* Typography */
    --font-heading: 'Plus Jakarta Sans', system-ui, sans-serif;
    --font-body: 'DM Sans', system-ui, sans-serif;

    /* Spacing scale */
    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 48px;
    --space-xl: 80px;

    /* Elevation */
    --shadow-sm: 0 4px 16px rgba(12, 36, 33, .06);
    --shadow-md: 0 12px 40px rgba(12, 36, 33, .10);
    --shadow-lg: 0 24px 60px rgba(12, 36, 33, .14);
    --radius-sm: 4px;
    --radius-md: 8px;

    /* Motion */
    --ease-out: cubic-bezier(.22, 1, .36, 1);
    --duration: .25s;

    /* Header typography */
    --nav-height: 84px;
    --nav-brand-size: 17px;
    --nav-brand-sub-size: 10px;
    --nav-link-size: 14px;
    --nav-dropdown-size: 14px;
    --nav-cta-size: 12px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }

:focus-visible {
    outline: 2px solid var(--focus);
    outline-offset: 3px;
}
:focus:not(:focus-visible) { outline: none; }

.skip-link {
    position: fixed;
    z-index: 999;
    top: -100%;
    left: var(--space-sm);
    padding: 12px 20px;
    background: var(--ink);
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    transition: top .2s var(--ease-out);
}
.skip-link:focus { top: var(--space-sm); }
.container { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.section { padding: 120px 0; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--font-heading); }
h2 {
    margin-bottom: 28px;
    font-size: clamp(40px, 5vw, 67px);
    font-weight: 500;
    letter-spacing: -.055em;
    line-height: 1.08;
}
h1 em, h2 em { color: var(--gold); font-family: Georgia, serif; font-weight: 400; }
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 25px;
    color: var(--gold);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
}
.eyebrow i { display: inline-block; width: 28px; height: 1px; background: currentColor; }
.eyebrow-light { color: var(--gold-light); }
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    min-height: 56px;
    padding: 15px 28px;
    border: 0;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .055em;
    text-transform: uppercase;
    transition: color var(--duration) var(--ease-out), background var(--duration) var(--ease-out), transform var(--duration) var(--ease-out), box-shadow var(--duration) var(--ease-out);
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}
.btn span { font-size: 19px; font-weight: 400; }
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }
.btn-gold { background: var(--gold); color: var(--white); }
.btn-gold:hover { background: var(--gold-light); color: var(--ink); }
.btn-dark { background: var(--ink); color: var(--white); }
.btn-dark:hover { background: var(--gold); }
.text-link {
    display: inline-flex;
    align-items: center;
    gap: 24px;
    padding-bottom: 7px;
    border-bottom: 1px solid currentColor;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    transition: color .2s;
}
.text-link:hover { color: var(--gold); }
.text-link-light { color: var(--white); }

/* Header */
.site-header {
    position: fixed;
    z-index: 100;
    top: 0;
    right: 0;
    left: 0;
    border-bottom: 1px solid rgba(255,255,255,.16);
    color: var(--white);
    font-family: var(--font-body);
    transition: background .3s, box-shadow .3s, color .3s;
}
.site-header.scrolled,
body:has(.project-breadcrumb) .site-header {
    background: rgba(253,251,247,.97);
    box-shadow: var(--shadow-md);
    color: var(--ink);
    backdrop-filter: blur(16px);
}
.nav-shell {
    display: flex;
    align-items: center;
    width: min(1380px, calc(100% - 48px));
    min-height: var(--nav-height);
    margin: auto;
}
.brand { display: inline-flex; align-items: center; gap: 12px; flex: 0 0 auto; }
.brand-mark { display: block; width: 42px; color: currentColor; }
.brand-mark svg { fill: currentColor; width: 100%; }
.brand-mark .brand-mark-accent { fill: var(--gold); }
.brand-copy { display: flex; flex-direction: column; line-height: 1.05; }
.brand-copy strong {
    font-family: var(--font-heading);
    font-size: var(--nav-brand-size);
    font-weight: 700;
    letter-spacing: .14em;
}
.brand-copy small {
    margin-top: 4px;
    color: var(--gold);
    font-size: var(--nav-brand-sub-size);
    font-weight: 600;
    letter-spacing: .34em;
}
.main-nav {
    display: flex;
    align-items: center;
    gap: 36px;
    margin: 0 auto;
}
.main-nav a {
    position: relative;
    padding: 30px 2px;
    font-size: var(--nav-link-size);
    font-weight: 500;
    letter-spacing: .01em;
    line-height: 1.2;
    transition: color .2s;
}
.main-nav a:hover,
.main-nav a.active { color: var(--gold-light); }
.site-header.scrolled .main-nav a:hover,
.site-header.scrolled .main-nav a.active,
body:has(.project-breadcrumb) .site-header .main-nav a:hover,
body:has(.project-breadcrumb) .site-header .main-nav a.active { color: var(--gold); }
.main-nav a::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 22px;
    left: 0;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .22s var(--ease-out);
}
.main-nav a:hover::after,
.main-nav a.active::after { transform: scaleX(1); }
.nav-dropdown { position: relative; display: flex; align-items: center; }
.nav-dropdown > a { display: flex; align-items: center; gap: 6px; }
.nav-dropdown > a svg { width: 10px; fill: none; stroke: currentColor; stroke-width: 1.5; transition: transform .2s; }
.nav-dropdown:hover > a svg { transform: rotate(180deg); }
.dropdown-menu {
    position: absolute;
    top: calc(100% - 6px);
    left: 50%;
    display: flex;
    min-width: 260px;
    padding: 8px 0;
    flex-direction: column;
    background: var(--paper);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    color: var(--ink);
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 10px);
    transition: opacity .2s, transform .2s;
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu { opacity: 1; pointer-events: auto; transform: translate(-50%, 0); }
.main-nav .dropdown-menu a {
    display: flex;
    gap: 12px;
    padding: 12px 20px;
    font-size: var(--nav-dropdown-size);
    font-weight: 500;
    letter-spacing: .01em;
    white-space: nowrap;
    transition: background .2s, color .2s;
}
.main-nav .dropdown-menu a::after { display: none; }
.main-nav .dropdown-menu a:hover,
.main-nav .dropdown-menu a.active {
    background: var(--cream);
    color: var(--gold-dark);
    font-weight: 600;
}
.header-cta {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 12px 20px;
    border: 1px solid rgba(255,255,255,.45);
    font-size: var(--nav-cta-size);
    font-weight: 600;
    letter-spacing: .06em;
    line-height: 1;
    text-transform: uppercase;
    transition: border-color .2s, color .2s, background .2s;
}
.site-header.scrolled .header-cta,
body:has(.project-breadcrumb) .site-header .header-cta { border-color: var(--line-strong); }
.header-cta:hover {
    border-color: var(--gold);
    color: var(--gold);
}
.header-cta svg { width: 16px; fill: none; stroke: currentColor; stroke-width: 1.6; }
.menu-toggle { display: none; padding: 8px; border: 0; background: transparent; color: inherit; }
.menu-toggle span { display: block; width: 24px; height: 1.5px; margin: 5px 0; background: currentColor; }

/* Hero */
.hero { position: relative; min-height: 100vh; color: var(--white); overflow: hidden; }
.hero-media {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1600607687920-4e2a09cf159d?auto=format&fit=crop&w=2000&q=90');
    background-position: center;
    background-size: cover;
    animation: heroZoom 18s ease-out both;
}
@keyframes heroZoom { from { transform: scale(1.08); } to { transform: scale(1); } }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7,28,26,.9) 0%, rgba(7,28,26,.58) 48%, rgba(7,28,26,.12) 100%); }
.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100vh;
    padding: 130px 0 100px;
}
.hero h1, .inner-hero h1 {
    max-width: 850px;
    margin-bottom: 28px;
    font-size: clamp(55px, 7.2vw, 103px);
    font-weight: 500;
    letter-spacing: -.065em;
    line-height: .99;
}
.hero-content > p { max-width: 570px; color: rgba(255,255,255,.78); font-size: 18px; }
.hero-actions { display: flex; align-items: center; gap: 37px; margin-top: 25px; }
.hero-stats {
    position: absolute;
    z-index: 3;
    right: 0;
    bottom: 0;
    display: grid;
    grid-template-columns: repeat(3, 175px);
    background: rgba(10,40,37,.9);
    backdrop-filter: blur(9px);
}
.hero-stats div { padding: 28px; border-left: 1px solid rgba(255,255,255,.14); }
.hero-stats strong { display: block; color: var(--gold-light); font: 500 27px var(--font-heading); }
.hero-stats span { color: rgba(255,255,255,.66); font-size: 11px; letter-spacing: .03em; text-transform: uppercase; }
.scroll-cue {
    position: absolute;
    z-index: 3;
    bottom: 30px;
    left: 40px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    transform: rotate(-90deg);
    transform-origin: left center;
}
.scroll-cue span { width: 42px; height: 1px; background: rgba(255,255,255,.6); }

/* Home about */
.split-grid { display: grid; grid-template-columns: 1fr .9fr; align-items: center; gap: 100px; }
.image-composition { position: relative; min-height: 620px; }
.image-main { position: absolute; top: 0; left: 0; width: 86%; height: 555px; object-fit: cover; }
.image-frame { position: absolute; z-index: -1; right: 0; bottom: 0; width: 65%; height: 460px; border: 1px solid var(--gold); }
.image-card {
    position: absolute;
    right: 0;
    bottom: 38px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 27px 31px;
    background: var(--ink);
    color: var(--white);
}
.image-card strong { color: var(--gold-light); font: 500 50px var(--font-heading); line-height: 1; }
.image-card span { font-size: 11px; line-height: 1.4; letter-spacing: .08em; text-transform: uppercase; }
.section-copy .lead { margin-bottom: 20px; color: var(--ink-soft); font-size: 20px; line-height: 1.6; }
.section-copy > p:not(.lead) { color: var(--muted); }
.section-copy .btn { margin-top: 20px; }

/* Why */
.why-section, .values-section { background: var(--cream); }
.section-heading { margin-bottom: 60px; }
.section-heading.centered { max-width: 700px; margin-right: auto; margin-left: auto; text-align: center; }
.section-heading.centered p { max-width: 580px; margin-right: auto; margin-left: auto; color: var(--muted); }
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.feature-card {
    position: relative;
    min-height: 335px;
    padding: 48px 33px 35px;
    border: 1px solid var(--line);
    border-right: 0;
    background: var(--paper);
    transition: transform .25s, background .25s, color .25s;
}
.feature-card:last-child { border-right: 1px solid var(--line); }
.feature-card:hover, .feature-card.featured { z-index: 2; background: var(--ink); color: var(--white); transform: translateY(-12px); }
.feature-card svg { width: 48px; margin-bottom: 43px; fill: none; stroke: var(--gold); stroke-width: 1.25; }
.feature-card h3 { margin-bottom: 12px; font-size: 20px; font-weight: 600; }
.feature-card p { color: var(--muted); font-size: 14px; }
.feature-card:hover p, .feature-card.featured p { color: rgba(255,255,255,.65); }
/* Projects */
.heading-row { display: flex; align-items: end; justify-content: space-between; }
.heading-row p { max-width: 430px; color: var(--muted); }
.project-grid { display: grid; grid-template-columns: 1.2fr .8fr; grid-template-rows: repeat(2, 330px); gap: 20px; }
.project-card { position: relative; overflow: hidden; color: var(--white); }
.project-large { grid-row: 1 / 3; }
.project-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(6,26,24,.9), transparent 65%); }
.project-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s; }
.project-card:hover img { transform: scale(1.06); }
.project-tag {
    position: absolute;
    z-index: 2;
    top: 22px;
    left: 22px;
    padding: 7px 13px;
    background: rgba(255,255,255,.9);
    color: var(--ink);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}
.project-info { position: absolute; z-index: 2; right: 28px; bottom: 25px; left: 28px; }
.project-info small { color: var(--gold-light); font-size: 10px; letter-spacing: .15em; text-transform: uppercase; }
.project-info h3 { max-width: calc(100% - 60px); margin: 5px 0 0; font-size: 24px; font-weight: 500; }
.round-arrow {
    position: absolute;
    right: 0;
    bottom: 2px;
    display: grid;
    width: 45px;
    height: 45px;
    place-items: center;
    border: 1px solid rgba(255,255,255,.5);
    border-radius: 50%;
}

/* Numbers */
.numbers-section { position: relative; min-height: 680px; color: var(--white); }
.numbers-image { position: absolute; inset: 0; background: url('https://images.unsplash.com/photo-1480714378408-67cf0d13bc1b?auto=format&fit=crop&w=2000&q=85') center/cover; }
.numbers-overlay { position: absolute; inset: 0; background: rgba(8,34,31,.87); }
.numbers-content { position: relative; padding-top: 110px; padding-bottom: 95px; }
.numbers-content h2 { max-width: 680px; }
.numbers-grid { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 70px; border-top: 1px solid rgba(255,255,255,.22); }
.numbers-grid div { padding: 34px 25px 0 0; border-right: 1px solid rgba(255,255,255,.16); }
.numbers-grid div:not(:first-child) { padding-left: 32px; }
.numbers-grid strong, .numbers-grid div > span { color: var(--gold-light); font: 500 clamp(42px, 5vw, 66px) var(--font-heading); }
.numbers-grid p { margin: 5px 0 0; color: rgba(255,255,255,.62); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }

/* Services */
.service-list { border-top: 1px solid var(--line); }
.service-row {
    display: grid;
    grid-template-columns: 1fr 1.1fr 55px;
    align-items: center;
    gap: 30px;
    min-height: 135px;
    border-bottom: 1px solid var(--line);
    transition: padding .25s, background .25s;
}
.service-row:hover { padding: 0 22px; background: var(--cream); }
.service-row h3 { margin: 0; font-size: 25px; font-weight: 500; }
.service-row p { margin: 0; color: var(--muted); font-size: 14px; }
.service-row a { display: grid; width: 45px; height: 45px; place-items: center; border: 1px solid var(--line); border-radius: 50%; transition: background .2s, color .2s; }
.service-row:hover a { background: var(--ink); color: var(--white); }

/* CTA & footer */
.cta-section { position: relative; padding: 110px 0; background: var(--ink); color: var(--white); overflow: hidden; }
.cta-section::after {
    content: '';
    position: absolute;
    top: -70%;
    right: -5%;
    width: 600px;
    height: 600px;
    border: 1px solid rgba(201,154,84,.2);
    border-radius: 50%;
    box-shadow: 0 0 0 80px rgba(201,154,84,.03), 0 0 0 160px rgba(201,154,84,.025);
}
.cta-content { position: relative; z-index: 2; text-align: center; }
.cta-content h2 { margin-bottom: 22px; }
.cta-content p { color: rgba(255,255,255,.65); }
.cta-content .btn { margin-top: 18px; }
.site-footer { padding-top: 80px; background: #091e1c; color: var(--white); }
.footer-top { display: grid; grid-template-columns: 1.7fr .8fr 1fr 1.1fr; gap: 60px; padding-bottom: 65px; }
.brand-light { color: var(--white); }
.footer-intro p { max-width: 330px; margin-top: 28px; color: rgba(255,255,255,.53); font-size: 14px; }
.footer-links, .footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-links h3, .footer-contact h3 { margin-bottom: 15px; color: var(--gold-light); font-size: 12px; letter-spacing: .15em; text-transform: uppercase; }
.footer-links a, .footer-contact a, .footer-contact p { color: rgba(255,255,255,.62); font-size: 13px; transition: color .2s; }
.footer-links a:hover, .footer-contact a:hover { color: var(--gold-light); }
.footer-contact p { margin: 3px 0 0; }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 23px; padding-bottom: 23px; border-top: 1px solid rgba(255,255,255,.1); }
.footer-bottom p { margin: 0; color: rgba(255,255,255,.36); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.whatsapp-float {
    position: fixed;
    z-index: 80;
    right: 23px;
    bottom: 23px;
    display: grid;
    width: 53px;
    height: 53px;
    place-items: center;
    border-radius: 50%;
    background: #25d366;
    box-shadow: 0 8px 25px rgba(0,0,0,.2);
}
.whatsapp-float svg { width: 27px; fill: var(--white); }

/* Inner pages */
.inner-hero { position: relative; display: flex; min-height: 610px; align-items: end; color: var(--white); }
.inner-hero-bg { position: absolute; inset: 0; background-position: center; background-size: cover; }
.about-hero .inner-hero-bg { background-image: url('https://images.unsplash.com/photo-1600585154526-990dced4db0d?auto=format&fit=crop&w=2000&q=85'); }
.projects-hero .inner-hero-bg { background-image: url('https://images.unsplash.com/photo-1600607687920-4e2a09cf159d?auto=format&fit=crop&w=2000&q=85'); }
.contact-hero .inner-hero-bg { background-image: url('https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=2000&q=85'); }
.inner-hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7,28,26,.9), rgba(7,28,26,.35)); }
.inner-hero-content { position: relative; z-index: 2; padding-bottom: 85px; }
.inner-hero h1 { margin-bottom: 20px; font-size: clamp(51px, 7vw, 88px); }
.inner-hero p { max-width: 600px; color: rgba(255,255,255,.7); font-size: 17px; }
.story-grid { align-items: start; }
.signature, .ceo-sign { margin-top: 30px; color: var(--ink); font: italic 29px Georgia, serif; }
.signature small, .ceo-sign small { display: block; margin-top: 5px; color: var(--gold); font: 700 9px var(--font-body); letter-spacing: .15em; text-transform: uppercase; }
.story-images { position: relative; min-height: 590px; }
.story-images img:first-child { width: 78%; height: 500px; margin-left: auto; object-fit: cover; }
.story-images img:last-child { position: absolute; bottom: 0; left: 0; width: 49%; height: 245px; border: 10px solid var(--paper); object-fit: cover; }

/* CEO */
.ceo-section { background: var(--ink); color: var(--white); }
.ceo-grid { display: grid; grid-template-columns: .85fr 1.15fr; align-items: center; gap: 100px; }
.ceo-photo { position: relative; }
.ceo-photo::before { content: ''; position: absolute; top: -20px; right: 25px; bottom: 40px; left: -20px; border: 1px solid rgba(201,154,84,.55); }
.ceo-photo img { position: relative; z-index: 1; width: 100%; height: 570px; object-fit: cover; object-position: top; filter: saturate(.8); }
.ceo-name { position: relative; z-index: 2; width: calc(100% - 35px); margin: -40px 0 0 auto; padding: 24px 27px; background: var(--gold); }
.ceo-name strong { display: block; font: 600 17px var(--font-heading); }
.ceo-name span { color: rgba(255,255,255,.75); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
.ceo-message { position: relative; }
.quote-mark { position: absolute; top: -75px; right: 0; color: rgba(201,154,84,.12); font: 180px Georgia, serif; }
.ceo-message blockquote { margin: 0 0 25px; color: var(--white); font: 400 23px/1.65 Georgia, serif; }
.ceo-message > p { color: rgba(255,255,255,.6); }
.ceo-sign { color: var(--gold-light); }

/* Values, portfolio, team */
.value-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.value-grid article { padding: 40px 30px; border-left: 1px solid var(--line); }
.value-grid article:last-child { border-right: 1px solid var(--line); }
.value-grid h3 { margin: 0 0 12px; font-size: 22px; }
.value-grid p { color: var(--muted); font-size: 14px; }
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.portfolio-item { background: var(--cream); }
.portfolio-item img { width: 100%; height: 330px; object-fit: cover; }
.portfolio-item > div { padding: 28px; }
.portfolio-item span { color: var(--gold); font-size: 9px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.portfolio-item h3 { margin: 8px 0; font-size: 22px; }
.portfolio-item p { margin: 0; color: var(--muted); font-size: 14px; }
.team-section { padding-top: 20px; }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.team-photo { height: 370px; overflow: hidden; background: var(--cream); }
.team-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; filter: saturate(.75); transition: transform .5s, filter .5s; }
.team-card:hover img { transform: scale(1.04); filter: saturate(1); }
.team-card h3 { margin: 20px 0 2px; font-size: 18px; }
.team-card p { color: var(--gold); font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }

/* Catalog */
.catalog-intro { display: flex; align-items: end; justify-content: space-between; margin-bottom: 60px; }
.project-filters { display: flex; gap: 8px; padding-bottom: 30px; }
.project-filters button { padding: 9px 15px; border: 1px solid var(--line); background: transparent; color: var(--muted); font-size: 10px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; cursor: pointer; }
.project-filters button:hover, .project-filters button.active { border-color: var(--ink); background: var(--ink); color: var(--white); }
.catalog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 55px 25px; }
.catalog-card { transition: opacity .25s, transform .25s; }
.catalog-card.is-hidden { display: none; }
.catalog-image { position: relative; height: 440px; overflow: hidden; }
.catalog-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.catalog-card:hover img { transform: scale(1.04); }
.catalog-image span { position: absolute; top: 20px; left: 20px; padding: 7px 12px; background: var(--paper); font-size: 9px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.catalog-copy { padding: 23px 5px 0; }
.catalog-copy small { color: var(--gold); font-size: 9px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.catalog-copy h3 { margin: 6px 0 9px; font-size: 27px; font-weight: 500; }
.catalog-copy p { color: var(--muted); font-size: 14px; }
.catalog-copy a { display: inline-flex; gap: 25px; color: var(--ink); font-size: 11px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; }
.project-banner { padding: 85px 0; background: var(--ink); color: var(--white); }
.project-banner .container { display: flex; align-items: center; justify-content: space-between; }
.project-banner h2 { margin: 0; font-size: clamp(36px, 4vw, 53px); }

/* Individual project pages */
.category-hero .inner-hero-bg { background-position: center; }
.category-hero .inner-hero-content > p { max-width: 720px; font: 400 clamp(22px, 3vw, 34px)/1.35 Georgia, serif; }
.category-intro { display: grid; grid-template-columns: 1.25fr .75fr; align-items: center; gap: 110px; }
.project-facts { border-top: 1px solid var(--line); }
.project-facts div { padding: 25px 0; border-bottom: 1px solid var(--line); }
.project-facts small { display: block; margin-bottom: 5px; color: var(--gold); font-size: 9px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.project-facts strong { color: var(--ink-soft); font: 500 17px var(--font-heading); }
.category-gallery { padding-bottom: 120px; }
.category-gallery-grid { display: grid; grid-template-columns: 1.2fr .8fr; grid-template-rows: repeat(2, 285px); gap: 20px; }
.category-gallery figure { margin: 0; overflow: hidden; }
.category-gallery .gallery-featured { grid-row: 1 / 3; }
.category-gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.category-gallery figure:hover img { transform: scale(1.04); }
.etihad-projects { padding-top: 20px; }
.etihad-project-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 45px 22px; }
.etihad-project-card { border-bottom: 1px solid var(--line); }
.etihad-project-image { position: relative; height: 285px; overflow: hidden; background: var(--cream); }
.etihad-project-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.etihad-project-card:hover .etihad-project-image img { transform: scale(1.05); }
.etihad-project-image > span {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 7px 10px;
    background: rgba(255,253,249,.92);
    color: var(--ink);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;
}
.etihad-project-copy { padding: 23px 4px 28px; }
.etihad-project-copy small { color: var(--gold); font-size: 9px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.etihad-project-copy h3 { margin: 7px 0 10px; font-size: 22px; font-weight: 600; }
.etihad-project-copy p { min-height: 68px; color: var(--muted); font-size: 13px; }
.project-detail-link { display: inline-flex; gap: 22px; color: var(--ink); font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; transition: color .2s; }
.etihad-project-card:hover .project-detail-link { color: var(--gold); }
.category-features { background: var(--cream); }
.category-feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.category-feature-grid article { min-height: 180px; padding: 35px 25px; border: 1px solid var(--line); border-right: 0; background: var(--paper); }
.category-feature-grid article:last-child { border-right: 1px solid var(--line); }
.category-feature-grid span { color: var(--gold); font-size: 10px; }
.category-feature-grid h3 { margin: 35px 0 0; font-size: 19px; font-weight: 600; }

/* Etihad project detail */
.detail-hero { position: relative; display: flex; min-height: 760px; align-items: end; color: var(--white); }
.detail-hero-bg { position: absolute; inset: 0; background-position: center; background-size: cover; }
.detail-hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7,28,26,.92), rgba(7,28,26,.25)); }
.detail-hero-content { position: relative; z-index: 2; padding-bottom: 95px; }
.back-link { display: block; width: max-content; margin-bottom: 65px; color: rgba(255,255,255,.7); font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.detail-hero h1 { max-width: 980px; margin-bottom: 18px; font-size: clamp(55px, 7.5vw, 105px); font-weight: 500; letter-spacing: -.065em; line-height: 1; }
.detail-hero-content > p { max-width: 650px; color: rgba(255,255,255,.72); font: 400 22px/1.55 Georgia, serif; }
.detail-overview-grid { display: grid; grid-template-columns: 1.15fr .85fr; align-items: center; gap: 110px; }
.detail-facts { padding: 15px 40px; border-left: 1px solid var(--line); background: var(--cream); }
.detail-facts div { display: flex; align-items: center; justify-content: space-between; gap: 25px; padding: 23px 0; border-bottom: 1px solid var(--line); }
.detail-facts div:last-child { border-bottom: 0; }
.detail-facts small { color: var(--muted); font-size: 9px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.detail-facts strong { max-width: 65%; text-align: right; font: 600 14px var(--font-heading); }
.detail-facts .status-value { color: var(--gold); }
.detail-gallery { padding-bottom: 120px; }
.detail-gallery-grid { display: grid; grid-template-columns: 1.2fr .8fr; grid-template-rows: repeat(2, 320px); gap: 20px; }
.detail-gallery figure { margin: 0; overflow: hidden; }
.detail-gallery-main { grid-row: 1 / 3; }
.detail-gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.detail-gallery figure:hover img { transform: scale(1.04); }
.detail-features { background: var(--ink); color: var(--white); }
.detail-feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.detail-feature-grid article { min-height: 170px; padding: 34px 30px; border: 1px solid rgba(255,255,255,.14); border-right: 0; border-bottom: 0; }
.detail-feature-grid article:nth-child(3n) { border-right: 1px solid rgba(255,255,255,.14); }
.detail-feature-grid article:nth-last-child(-n+3) { border-bottom: 1px solid rgba(255,255,255,.14); }
.detail-feature-grid h3 { margin: 0; font-size: 19px; font-weight: 500; }
.detail-location { padding-bottom: 0; }
.detail-location-heading { display: flex; align-items: end; justify-content: space-between; padding-bottom: 50px; }
.detail-location-heading h2 { margin-bottom: 0; }
.detail-location-heading > div:last-child { padding: 20px 35px; border-left: 2px solid var(--gold); }
.detail-location-heading small { display: block; color: var(--gold); font-size: 9px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.detail-location-heading strong { display: block; margin-top: 5px; font: 600 17px var(--font-heading); }
.detail-map iframe { display: block; filter: saturate(.55) contrast(.95); }

/* Etihad Town pages */
.et-hero { position: relative; display: flex; min-height: 100vh; align-items: end; color: var(--white); overflow: hidden; }
.et-hero-bg { position: absolute; inset: 0; background-position: center; background-size: cover; }
.et-hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7,28,26,.92) 0%, rgba(7,28,26,.55) 50%, rgba(7,28,26,.15) 100%); }
.et-hero-content { position: relative; z-index: 2; padding: 130px 0 100px; }
.et-hero h1 { max-width: 900px; margin-bottom: 22px; font-size: clamp(52px, 7vw, 96px); font-weight: 500; letter-spacing: -.065em; line-height: .98; }
.et-hero-content > p { max-width: 620px; color: rgba(255,255,255,.75); font-size: 18px; }
.et-about-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.et-about-stats div { padding: 28px 24px; background: var(--cream); border: 1px solid var(--line); }
.et-about-stats strong, .et-about-stats div > span { color: var(--gold); font: 500 clamp(36px, 4vw, 52px) var(--font-heading); }
.et-about-stats p { margin: 6px 0 0; color: var(--muted); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.et-sticky-nav { position: sticky; top: var(--nav-height); z-index: 90; background: rgba(255,253,249,.97); border-bottom: 1px solid var(--line); backdrop-filter: blur(12px); }
.et-sticky-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 54px; overflow-x: auto; }
.et-sticky-back { flex: 0 0 auto; color: var(--gold); font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; white-space: nowrap; }
.et-sticky-links { display: flex; gap: 22px; }
.et-sticky-links a { padding: 16px 0; color: var(--muted); font-size: 10px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; white-space: nowrap; transition: color .2s; }
.et-sticky-links a:hover { color: var(--gold); }
.et-status-badge { display: inline-block; margin-top: 18px; padding: 10px 16px; background: var(--gold); color: var(--white); font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.et-highlights { margin: 25px 0 0; padding: 0; list-style: none; }
.et-highlights li { position: relative; padding: 10px 0 10px 22px; border-bottom: 1px solid var(--line); color: var(--ink-soft); font-size: 14px; }
.et-highlights li::before { content: '→'; position: absolute; left: 0; color: var(--gold); }
.et-tag-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }
.et-tag-list span { padding: 10px 16px; background: var(--cream); border: 1px solid var(--line); font-size: 13px; font-weight: 600; color: var(--ink-soft); }
.et-about-visual img { width: 100%; height: 480px; object-fit: cover; }
.et-plot-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; }
.et-plot-grid article { padding: 30px 24px; border: 1px solid var(--line); background: var(--cream); }
.et-plot-grid h3 { margin: 0 0 8px; font-size: 18px; }
.et-plot-grid p { margin: 0; color: var(--muted); font-size: 13px; }
.et-location-grid { align-items: start; }
.et-location-list { margin: 20px 0 0; padding: 0; list-style: none; }
.et-location-list li { position: relative; padding: 12px 0 12px 24px; border-bottom: 1px solid var(--line); color: var(--ink-soft); font-size: 14px; }
.et-location-list li::before { content: '—'; position: absolute; left: 0; color: var(--gold); }
.et-landmarks { padding: 35px; background: var(--cream); }
.et-landmarks h3 { margin: 0 0 20px; font-size: 18px; }
.et-landmark-item { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.et-landmark-item span { color: var(--gold); font-weight: 700; }
.et-landmark-item p { margin: 0; color: var(--ink-soft); font-size: 13px; }
.et-master-plan-image { margin: 0; overflow: hidden; border: 1px solid var(--line); cursor: zoom-in; }
.et-master-plan-image img { width: 100%; max-height: 600px; object-fit: contain; background: var(--cream); transition: transform .4s; }
.et-master-plan-image:hover img { transform: scale(1.02); }
.et-tab-buttons { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 30px; }
.et-tab-buttons button { padding: 11px 18px; border: 1px solid var(--line); background: transparent; color: var(--muted); font-size: 10px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; cursor: pointer; transition: background .2s, color .2s, border-color .2s; }
.et-tab-buttons button.active, .et-tab-buttons button:hover { border-color: var(--ink); background: var(--ink); color: var(--white); }
.et-tab-panel { display: none; }
.et-tab-panel.active { display: block; }
.et-table-wrap { overflow-x: auto; border: 1px solid var(--line); }
.et-table-wrap table { width: 100%; min-width: 640px; border-collapse: collapse; font-size: 13px; }
.et-table-wrap th, .et-table-wrap td { padding: 14px 16px; border-bottom: 1px solid var(--line); text-align: left; }
.et-table-wrap th { background: var(--ink); color: var(--white); font-size: 10px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; white-space: nowrap; }
.et-table-wrap tr:hover td { background: var(--cream); }
.et-payment-terms { margin-top: 40px; padding: 30px; background: var(--cream); }
.et-payment-terms h3 { margin: 0 0 15px; font-size: 18px; }
.et-payment-terms ul { margin: 0; padding-left: 18px; color: var(--muted); font-size: 13px; }
.et-payment-terms li { margin-bottom: 8px; }
.et-amenity-slider { position: relative; }
.et-amenity-track { display: flex; gap: 18px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; padding-bottom: 8px; }
.et-amenity-track::-webkit-scrollbar { display: none; }
.et-amenity-card { flex: 0 0 min(320px, 85vw); scroll-snap-align: start; padding: 35px 28px; background: var(--cream); border: 1px solid var(--line); }
.et-amenity-card h3 { margin: 0 0 12px; font-size: 19px; }
.et-amenity-card p { margin: 0; color: var(--muted); font-size: 14px; }
.et-slider-btn { position: absolute; top: 50%; z-index: 2; display: grid; width: 42px; height: 42px; place-items: center; border: 1px solid var(--line); background: var(--paper); color: var(--ink); cursor: pointer; transform: translateY(-50%); transition: background .2s, color .2s; }
.et-slider-btn:hover { background: var(--ink); color: var(--white); }
.et-slider-prev { left: -21px; }
.et-slider-next { right: -21px; }
.et-invest { background: var(--cream); }
.et-why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 10px; }
.et-why-grid article { padding: 24px; background: var(--paper); border: 1px solid var(--line); }
.et-why-grid h3 { margin: 0 0 8px; font-size: 17px; }
.et-why-grid p { margin: 0; color: var(--muted); font-size: 13px; }
.et-benefits { padding: 40px; background: var(--ink); color: var(--white); }
.et-benefits h3 { margin: 0 0 22px; color: var(--gold-light); font-size: 18px; }
.et-benefits ul { margin: 0; padding: 0; list-style: none; }
.et-benefits li { position: relative; padding: 12px 0 12px 22px; border-bottom: 1px solid rgba(255,255,255,.12); font-size: 14px; }
.et-benefits li::before { content: '✓'; position: absolute; left: 0; color: var(--gold-light); }
.et-gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.et-gallery-item { padding: 0; border: 0; background: transparent; cursor: zoom-in; overflow: hidden; }
.et-gallery-item img { width: 100%; height: 240px; object-fit: cover; transition: transform .5s; }
.et-gallery-item:hover img { transform: scale(1.05); }
.et-accordion-item { border-bottom: 1px solid var(--line); }
.et-accordion-trigger { display: flex; width: 100%; align-items: center; justify-content: space-between; padding: 22px 0; border: 0; background: transparent; color: var(--ink); font: 600 16px var(--font-heading); text-align: left; cursor: pointer; }
.et-accordion-trigger span { color: var(--gold); font-size: 22px; font-weight: 400; transition: transform .25s; }
.et-accordion-item.open .et-accordion-trigger span { transform: rotate(45deg); }
.et-accordion-panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s; }
.et-accordion-item.open .et-accordion-panel { grid-template-rows: 1fr; }
.et-accordion-panel > p { overflow: hidden; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.7; }
.et-accordion-item.open .et-accordion-panel > p { padding-bottom: 22px; }
.et-lightbox { position: fixed; z-index: 200; inset: 0; display: grid; place-items: center; background: rgba(7,28,26,.92); padding: 40px; }
.et-lightbox[hidden] { display: none; }
.et-lightbox img { max-width: min(1100px, 100%); max-height: 85vh; object-fit: contain; }
.et-lightbox-close { position: absolute; top: 24px; right: 24px; width: 48px; height: 48px; border: 1px solid rgba(255,255,255,.3); background: transparent; color: var(--white); font-size: 28px; cursor: pointer; }

/* Breadcrumb */
.project-breadcrumb {
    padding: calc(var(--nav-height) + 18px) 0 18px;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
}
.project-breadcrumb ol { display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; list-style: none; font-size: 11px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }
.project-breadcrumb li:not(:last-child)::after { content: '/'; margin-left: 8px; color: var(--muted); }
.project-breadcrumb a { color: var(--muted); transition: color .2s; }
.project-breadcrumb a:hover { color: var(--gold); }
.project-breadcrumb li[aria-current="page"] { color: var(--ink); }

/* Project highlights grid */
.et-highlight-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.et-highlight-grid article { padding: 30px 24px; background: var(--cream); border: 1px solid var(--line); }
.et-highlight-grid span { display: block; margin-bottom: 12px; color: var(--gold); font: 500 32px var(--font-heading); }
.et-highlight-grid h3 { margin: 0 0 8px; font-size: 17px; }
.et-highlight-grid p { margin: 0; color: var(--muted); font-size: 13px; }

/* Facility groups */
.et-facility-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; }
.et-facility-grid article { padding: 35px 28px; background: var(--cream); border: 1px solid var(--line); }
.et-facility-grid h3 { margin: 0 0 18px; font-size: 19px; color: var(--ink); }
.et-facility-grid ul { margin: 0; padding: 0; list-style: none; }
.et-facility-grid li { position: relative; padding: 10px 0 10px 22px; border-bottom: 1px solid var(--line); color: var(--ink-soft); font-size: 14px; }
.et-facility-grid li::before { content: '✓'; position: absolute; left: 0; color: var(--gold); font-weight: 700; }

/* Contact block in location */
.et-contact-block { margin-top: 28px; padding-top: 22px; border-top: 1px solid var(--line); }
.et-contact-block h4 { margin: 0 0 10px; font-size: 14px; text-transform: uppercase; letter-spacing: .08em; }
.et-contact-block p { margin: 0 0 8px; color: var(--ink-soft); font-size: 13px; }
.et-contact-block a { color: var(--gold); font-size: 13px; font-weight: 600; }

/* Timeline */
.et-timeline { background: var(--cream); }
.et-timeline-track { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 22px; }
.et-timeline-track article { padding: 30px 24px; background: var(--paper); border: 1px solid var(--line); border-top: 3px solid var(--gold); }
.et-timeline-track span { display: block; margin-bottom: 10px; color: var(--gold); font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.et-timeline-track h3 { margin: 0 0 8px; font-size: 18px; }
.et-timeline-track p { margin: 0; color: var(--muted); font-size: 13px; }

/* Related projects */
.et-related { padding-top: 20px; }

/* Filter hidden cards */
.etihad-project-card.is-hidden { display: none; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 90px; }
.contact-details > p { color: var(--muted); }
.contact-items { margin-top: 45px; }
.contact-item { display: flex; gap: 20px; padding: 24px 0; border-top: 1px solid var(--line); }
.contact-item:last-child { border-bottom: 1px solid var(--line); }
.contact-icon { display: grid; flex: 0 0 45px; width: 45px; height: 45px; place-items: center; border: 1px solid var(--gold); border-radius: 50%; }
.contact-icon svg { width: 20px; fill: none; stroke: var(--gold); stroke-width: 1.5; }
.contact-item small { display: block; margin-bottom: 4px; color: var(--gold); font-size: 9px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.contact-item strong, .contact-item a { display: block; color: var(--ink-soft); font-size: 14px; font-weight: 500; }
.contact-form-wrap { padding: 45px; background: var(--cream); }
.form-heading { display: flex; align-items: end; justify-content: space-between; margin-bottom: 33px; }
.form-heading span { font: 600 25px var(--font-heading); }
.form-heading p { margin: 0; color: var(--muted); font-size: 10px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.contact-form label { display: block; margin-bottom: 22px; color: var(--ink); font-size: 11px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.contact-form input, .contact-form select, .contact-form textarea {
    width: 100%;
    margin-top: 8px;
    padding: 15px 0;
    border: 0;
    border-bottom: 1px solid #cfc7bb;
    border-radius: 0;
    outline: 0;
    background: transparent;
    color: var(--ink);
    font-size: 14px;
    font-weight: 400;
    text-transform: none;
    transition: border-color .2s;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--gold); }
.contact-form textarea { resize: vertical; }
.form-success { display: none; margin: 18px 0 0; padding: 12px 16px; background: rgba(26,122,85,.08); border-left: 3px solid var(--success); color: var(--success); font-size: 13px; }
.form-success.show { display: block; }
.form-error { display: block; margin-top: 6px; color: var(--error); font-size: 12px; font-weight: 500; }
.form-field.has-error input,
.form-field.has-error textarea,
.form-field.has-error select { border-bottom-color: var(--error); }
.form-alert { margin-bottom: 22px; padding: 14px 18px; background: rgba(180,35,24,.08); border-left: 3px solid var(--error); color: var(--error); font-size: 13px; }
.form-alert ul { margin: 8px 0 0; padding-left: 18px; }

/* Toast notifications */
.toast-stack { position: fixed; z-index: 300; right: 24px; bottom: 24px; display: flex; flex-direction: column; gap: 10px; max-width: min(400px, calc(100vw - 48px)); pointer-events: none; }
.toast {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 20px;
    background: var(--ink);
    color: var(--white);
    box-shadow: var(--shadow-lg);
    border-left: 3px solid var(--gold-light);
    font-size: 14px;
    line-height: 1.5;
    pointer-events: auto;
    animation: toastIn .35s var(--ease-out) both;
}
.toast.is-leaving { animation: toastOut .25s var(--ease-out) both; }
.toast-success { border-left-color: #4ade80; }
.toast-error { border-left-color: #f87171; }
@keyframes toastIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
@keyframes toastOut { from { opacity: 1; transform: none; } to { opacity: 0; transform: translateY(8px); } }

/* Testimonials */
.testimonials-section { background: var(--cream); }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testimonial-card {
    display: flex;
    flex-direction: column;
    padding: 36px 30px;
    background: var(--surface);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    transition: transform var(--duration) var(--ease-out), box-shadow var(--duration) var(--ease-out);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testimonial-stars { margin-bottom: 18px; color: var(--gold); font-size: 14px; letter-spacing: .15em; }
.testimonial-card blockquote { flex: 1; margin: 0 0 24px; color: var(--ink-soft); font-size: 15px; line-height: 1.75; }
.testimonial-card footer strong { display: block; font-size: 15px; }
.testimonial-card footer span { color: var(--muted); font-size: 12px; }

/* Home FAQ */
.home-faq-section .et-accordion { max-width: 820px; margin-inline: auto; }

/* Page load */
body.is-loading main { opacity: 0; }
body.is-ready main { opacity: 1; transition: opacity .4s var(--ease-out); }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.section-sm { padding: 60px 0; }

/* Defence Estate inspired — DHA Properties */
.de-hero { position: relative; display: flex; min-height: 85vh; align-items: end; color: var(--white); overflow: hidden; }
.de-hero-bg, .de-detail-hero-bg { position: absolute; inset: 0; background-position: center; background-size: cover; }
.de-hero-overlay, .de-detail-hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7,28,26,.92) 0%, rgba(7,28,26,.55) 50%, rgba(7,28,26,.2) 100%); }
.de-hero-content, .de-detail-hero-content { position: relative; z-index: 2; padding: 130px 0 90px; }
.de-hero h1 { max-width: 900px; margin-bottom: 20px; font-size: clamp(44px, 6vw, 80px); font-weight: 600; letter-spacing: -.05em; line-height: 1.05; }
.de-hero-content > p { max-width: 620px; color: rgba(255,255,255,.78); font-size: 18px; }

.de-stats { background: var(--ink); color: var(--white); }
.de-stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; text-align: center; }
.de-stats-grid strong, .de-stats-grid > div > span { color: var(--gold-light); font: 500 clamp(36px, 4vw, 56px) var(--font-heading); }
.de-stats-grid p { margin: 8px 0 0; color: rgba(255,255,255,.65); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }

.de-listings-header { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 30px; }
.de-search input {
    min-width: min(320px, 100%);
    padding: 14px 0;
    border: 0;
    border-bottom: 1px solid var(--line-strong);
    background: transparent;
    font-size: 14px;
}
.de-search input:focus { border-bottom-color: var(--gold); outline: none; }

.de-filters, .de-area-filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.de-filters button, .de-area-filters button, .project-filters button {
    padding: 10px 16px;
    border: 1px solid var(--line);
    background: transparent;
    color: var(--muted);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .2s, color .2s, border-color .2s;
}
.de-filters button.active, .de-area-filters button.active, .project-filters button.active,
.de-filters button:hover, .de-area-filters button:hover { border-color: var(--ink); background: var(--ink); color: var(--white); }

.de-property-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px 22px; }
.de-property-grid-compact { grid-template-columns: repeat(3, 1fr); }
.de-property-card { border-bottom: 1px solid var(--line); transition: transform .25s var(--ease-out); }
.de-property-card:hover { transform: translateY(-4px); }
.de-property-card.is-hidden, .de-property-card.is-lazy-hidden, .catalog-card.is-hidden { display: none; }
.de-property-link { display: block; color: inherit; }
.de-property-image { position: relative; height: 260px; overflow: hidden; background: var(--cream); }
.de-property-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease-out); }
.de-property-card:hover .de-property-image img { transform: scale(1.05); }
.de-property-badges { position: absolute; top: 14px; left: 14px; display: flex; flex-wrap: wrap; gap: 6px; }
.de-badge { padding: 5px 10px; background: rgba(12,36,33,.85); color: var(--white); font-size: 9px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.de-badge-open { background: var(--gold); color: var(--ink); }
.de-badge-status { background: rgba(255,255,255,.92); color: var(--ink); }
.de-photo-count { position: absolute; bottom: 14px; right: 14px; padding: 5px 10px; background: rgba(12,36,33,.8); color: var(--white); font-size: 10px; font-weight: 600; }
.de-property-body { padding: 20px 4px 26px; }
.de-property-body small { color: var(--gold); font-size: 9px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.de-property-body h3 { margin: 8px 0 10px; font-size: 20px; font-weight: 600; line-height: 1.3; }
.de-price { display: block; margin-bottom: 10px; color: var(--ink); font: 600 18px var(--font-heading); }
.de-property-body p { margin: 0 0 12px; color: var(--muted); font-size: 13px; line-height: 1.6; }

.de-load-more, .de-view-all { margin-top: 50px; text-align: center; }
.de-empty-state { padding: 60px 20px; text-align: center; border: 1px dashed var(--line); }
.de-empty-state h3 { margin-bottom: 8px; }

.de-portfolio-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.de-portfolio-link {
    display: block;
    padding: 28px 24px;
    border: 1px solid var(--line);
    background: var(--cream);
    transition: transform .25s, box-shadow .25s, border-color .25s;
}
.de-portfolio-link:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.de-portfolio-link span { display: block; color: var(--gold); font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.de-portfolio-link strong { display: block; margin: 10px 0 6px; font: 600 22px var(--font-heading); }
.de-portfolio-link small { color: var(--muted); font-size: 13px; }

/* Property detail */
.de-detail-hero { position: relative; min-height: 70vh; color: var(--white); overflow: hidden; display: flex; align-items: end; }
.de-detail-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.de-detail-badges span { padding: 7px 12px; background: rgba(255,255,255,.15); backdrop-filter: blur(6px); font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.de-detail-hero h1 { max-width: 900px; margin-bottom: 14px; font-size: clamp(32px, 5vw, 56px); font-weight: 600; line-height: 1.15; }
.de-detail-price { margin-bottom: 8px; color: var(--gold-light); font: 600 clamp(24px, 3vw, 36px) var(--font-heading); }
.de-detail-location { margin-bottom: 24px; color: rgba(255,255,255,.75); font-size: 16px; }

.de-detail-grid { display: grid; grid-template-columns: 1fr 380px; gap: 50px; align-items: start; }
.de-detail-block { margin-bottom: 50px; padding-bottom: 50px; border-bottom: 1px solid var(--line); }
.de-detail-block:last-child { border-bottom: 0; }
.de-detail-block h2 { margin-bottom: 22px; font-size: 28px; }
.de-detail-block h3 { margin: 24px 0 14px; font-size: 18px; }

.de-overview-list { margin: 0; padding: 0; list-style: none; display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 16px; }
.de-overview-list li { padding: 18px; background: var(--cream); border: 1px solid var(--line); }
.de-overview-list span { display: block; margin-bottom: 6px; color: var(--muted); font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.de-overview-list strong { font-size: 16px; }

.de-address-card, .de-details-table { display: grid; gap: 0; border: 1px solid var(--line); }
.de-address-card div, .de-details-table div { display: flex; justify-content: space-between; gap: 20px; padding: 16px 20px; border-bottom: 1px solid var(--line); }
.de-address-card div:last-child, .de-details-table div:last-child { border-bottom: 0; }
.de-address-card small { color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: .06em; }

.de-sidebar-card { padding: 30px; background: var(--cream); border: 1px solid var(--line); margin-bottom: 20px; }
.de-sidebar-card h3 { margin: 0 0 12px; font-size: 22px; }
.de-sidebar-card > p { margin: 0 0 20px; color: var(--muted); font-size: 14px; }
.de-sidebar-cta { text-align: center; }
.de-sidebar-cta strong { display: block; margin-bottom: 18px; }

/* Map */
.map-heading { display: flex; align-items: end; justify-content: space-between; padding-bottom: 45px; }
.map-heading h2 { margin-bottom: 0; }
.map-heading p { max-width: 400px; color: var(--muted); }
.map-wrap { position: relative; }
.map-wrap iframe { display: block; filter: saturate(.55) contrast(.95); }
.map-card {
    position: absolute;
    top: 50%;
    left: max(24px, calc((100% - 1180px) / 2));
    width: 310px;
    padding: 32px;
    background: var(--ink);
    color: var(--white);
    transform: translateY(-50%);
}
.map-card span { color: var(--gold-light); font-size: 9px; font-weight: 700; letter-spacing: .15em; }
.map-card strong { display: block; margin: 13px 0 24px; font: 500 20px/1.5 var(--font-heading); }
.map-card a { color: var(--gold-light); font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }

/* Motion */
.reveal { opacity: 0; transform: translateY(25px); transition: opacity .75s ease, transform .75s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1050px) {
    .de-property-grid, .de-property-grid-compact, .de-portfolio-links { grid-template-columns: repeat(2, 1fr); }
    .de-detail-grid { grid-template-columns: 1fr; }
    .de-stats-grid { grid-template-columns: repeat(3, 1fr); }
    .de-listings-header { flex-direction: column; align-items: flex-start; }
    .main-nav { gap: 28px; }
    .main-nav a { font-size: 13px; }
    .header-cta { display: none; }
    .split-grid, .ceo-grid { gap: 60px; }
    .feature-grid { grid-template-columns: repeat(2, 1fr); }
    .feature-card:nth-child(2) { border-right: 1px solid var(--line); }
    .footer-top { grid-template-columns: 1.4fr 1fr 1fr; }
    .footer-contact { grid-column: 2 / 4; }
    .contact-grid { gap: 45px; }
}

@media (max-width: 800px) {
    :root { --nav-height: 72px; }
    .container { width: min(100% - 34px, 650px); }
    .section { padding: 85px 0; }
    .nav-shell { width: calc(100% - 30px); min-height: 72px; }
    .menu-toggle { display: block; margin-left: auto; }
    .main-nav {
        position: fixed;
        top: 72px;
        right: 0;
        bottom: 0;
        left: 0;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 36px 28px 48px;
        background: var(--ink);
        color: var(--white);
        transform: translateX(100%);
        transition: transform .35s;
        overflow-y: auto;
    }
    .main-nav.open { transform: none; }
    .main-nav a {
        padding: 16px 0;
        border-bottom: 1px solid rgba(255,255,255,.1);
        font-size: 17px;
        font-weight: 500;
        letter-spacing: .01em;
    }
    .main-nav a:hover,
    .main-nav a.active { color: var(--gold-light); }
    .main-nav a::after { display: none; }
    .nav-dropdown { display: block; }
    .nav-dropdown > a { justify-content: space-between; }
    .nav-dropdown > a svg { width: 11px; }
    .dropdown-menu {
        position: static;
        min-width: 0;
        padding: 0 0 6px 16px;
        background: transparent;
        border: 0;
        box-shadow: none;
        color: var(--white);
        opacity: 1;
        pointer-events: auto;
        transform: none;
    }
    .main-nav .dropdown-menu a {
        padding: 12px 0;
        border-bottom: 1px solid rgba(255,255,255,.07);
        font-size: 15px;
        font-weight: 500;
    }
    .main-nav .dropdown-menu a:hover,
    .main-nav .dropdown-menu a.active { background: transparent; color: var(--gold-light); font-weight: 600; }
    .hero-content { min-height: 830px; }
    .hero-shade { background: rgba(7,28,26,.7); }
    .hero h1 { font-size: clamp(49px, 14vw, 72px); }
    .hero-stats { right: 17px; left: 17px; grid-template-columns: repeat(3, 1fr); }
    .hero-stats div { padding: 20px 12px; }
    .scroll-cue { display: none; }
    .split-grid, .ceo-grid, .contact-grid { grid-template-columns: 1fr; }
    .image-composition { min-height: 545px; }
    .image-main { height: 480px; }
    .image-card { bottom: 10px; }
    .project-grid { display: block; }
    .project-card { display: block; height: 450px; margin-bottom: 18px; }
    .numbers-section { min-height: auto; }
    .numbers-grid { grid-template-columns: repeat(2, 1fr); }
    .numbers-grid div { padding-bottom: 35px; }
    .service-row { grid-template-columns: 1fr 45px; gap: 18px; padding: 25px 0; }
    .service-row p { grid-column: 1 / 2; grid-row: 2; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .footer-intro { grid-column: 1 / 3; }
    .footer-contact { grid-column: auto; }
    .story-images { min-height: 525px; }
    .ceo-photo { max-width: 520px; }
    .value-grid, .team-grid { grid-template-columns: repeat(2, 1fr); }
    .portfolio-grid { grid-template-columns: 1fr; }
    .catalog-intro, .project-banner .container { display: block; }
    .project-filters { padding: 10px 0 0; flex-wrap: wrap; }
    .catalog-image { height: 360px; }
    .project-banner .btn { margin-top: 30px; }
    .category-intro { grid-template-columns: 1fr; gap: 55px; }
    .etihad-project-grid { grid-template-columns: repeat(2, 1fr); }
    .category-feature-grid { grid-template-columns: repeat(2, 1fr); }
    .category-feature-grid article:nth-child(2) { border-right: 1px solid var(--line); }
    .detail-overview-grid { grid-template-columns: 1fr; gap: 60px; }
    .detail-feature-grid { grid-template-columns: repeat(2, 1fr); }
    .detail-feature-grid article:nth-child(3n) { border-right: 0; }
    .detail-feature-grid article:nth-child(2n) { border-right: 1px solid rgba(255,255,255,.14); }
    .detail-feature-grid article:nth-last-child(-n+3) { border-bottom: 0; }
    .detail-feature-grid article:nth-last-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.14); }
    .testimonial-grid { grid-template-columns: 1fr; }
    .de-property-grid, .de-property-grid-compact, .de-portfolio-links { grid-template-columns: 1fr; }
    .de-stats-grid { grid-template-columns: 1fr; }
    .de-property-image { height: 240px; }
    .toast-stack { right: 17px; bottom: 17px; }
    .map-heading { display: block; }
    .map-card { left: 17px; width: 280px; }
}

@media (max-width: 550px) {
    h2 { font-size: 41px; }
    .hero { min-height: 840px; }
    .hero-content { justify-content: flex-start; min-height: 840px; padding-top: 180px; }
    .hero-actions { align-items: flex-start; flex-direction: column; gap: 25px; }
    .hero-stats { bottom: 0; }
    .hero-stats strong { font-size: 22px; }
    .hero-stats span { font-size: 8px; }
    .feature-grid, .numbers-grid, .value-grid, .team-grid, .catalog-grid { grid-template-columns: 1fr; }
    .feature-card, .feature-card:nth-child(2) { border-right: 1px solid var(--line); }
    .feature-card { min-height: 290px; }
    .heading-row { display: block; }
    .heading-row .text-link { margin-top: 15px; }
    .project-card { height: 380px; }
    .numbers-grid div, .numbers-grid div:not(:first-child) { padding-left: 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.12); }
    .service-row { grid-template-columns: 1fr 40px; }
    .service-row h3 { font-size: 20px; }
    .footer-top { grid-template-columns: 1fr; }
    .footer-intro { grid-column: auto; }
    .footer-bottom { display: block; }
    .footer-bottom p + p { margin-top: 8px; }
.footer-bottom a { color: rgba(255,255,255,.55); transition: color .2s; }
.footer-bottom a:hover { color: var(--gold-light); }
    .inner-hero { min-height: 560px; }
    .inner-hero h1 { font-size: 49px; }
    .story-images { min-height: 450px; }
    .story-images img:first-child { height: 400px; }
    .story-images img:last-child { height: 185px; }
    .ceo-photo img { height: 470px; }
    .team-photo { height: 460px; }
    .catalog-grid { gap: 45px; }
    .catalog-image { height: 330px; }
    .category-gallery { padding-bottom: 80px; }
    .category-gallery-grid { display: block; }
    .category-gallery figure { height: 330px; margin-bottom: 15px; }
    .etihad-project-grid { grid-template-columns: 1fr; }
    .etihad-project-image { height: 330px; }
    .etihad-project-copy p { min-height: 0; }
    .category-feature-grid { grid-template-columns: 1fr; }
    .category-feature-grid article { border-right: 1px solid var(--line); }
    .detail-hero { min-height: 650px; }
    .detail-hero h1 { font-size: 50px; }
    .back-link { margin-bottom: 45px; }
    .detail-facts { padding: 10px 22px; }
    .detail-gallery { padding-bottom: 80px; }
    .detail-gallery-grid { display: block; }
    .detail-gallery figure { height: 320px; margin-bottom: 15px; }
    .detail-feature-grid { grid-template-columns: 1fr; }
    .detail-feature-grid article,
    .detail-feature-grid article:nth-child(2n),
    .detail-feature-grid article:nth-child(3n) { border-right: 1px solid rgba(255,255,255,.14); }
    .detail-feature-grid article:nth-last-child(-n+2) { border-bottom: 0; }
    .detail-feature-grid article:last-child { border-bottom: 1px solid rgba(255,255,255,.14); }
    .et-gallery-grid { grid-template-columns: 1fr; }
    .et-gallery-item img { height: 280px; }
    .et-sticky-inner { flex-direction: column; align-items: flex-start; padding: 10px 0; }
    .et-about-stats { grid-template-columns: 1fr; }
    .et-about-visual img { height: 360px; }
    .detail-location-heading { display: block; }
    .detail-location-heading > div:last-child { margin-top: 30px; }
    .et-sticky-nav { top: var(--nav-height); }
    .et-sticky-links { gap: 14px; }
    .et-why-grid { grid-template-columns: 1fr; }
    .et-gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .et-highlight-grid { grid-template-columns: repeat(2, 1fr); }
    .et-slider-prev { left: 0; }
    .et-slider-next { right: 0; }
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .contact-form-wrap { padding: 30px 22px; }
    .form-heading { display: block; }
    .form-heading p { margin-top: 5px; }
    .map-card { position: relative; top: auto; left: auto; width: calc(100% - 34px); margin: -60px auto 0; transform: none; }
    .et-highlight-grid { grid-template-columns: 1fr; }
    .et-timeline-track { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition-duration: .01ms !important; }
    .reveal { opacity: 1; transform: none; }
}
