/* ═══ City Edge — Luxury Mobile-First Theme ═══ */
:root {
    --black: #0c0c0e;
    --dark: #141416;
    --dark-2: #1c1c20;
    --dark-card: #18181c;
    --gold: #c9a84c;
    --gold-light: #e2c878;
    --gold-dim: rgba(201, 168, 76, 0.15);
    --cream: #f7f4ef;
    --cream-2: #ede8df;
    --text: #eceae6;
    --text-dark: #1a1a1e;
    --muted: #9a9590;
    --muted-light: rgba(236, 234, 230, 0.65);
    --line: rgba(201, 168, 76, 0.22);
    --line-dark: rgba(255, 255, 255, 0.08);
    --wa: #25d366;
    --radius: 16px;
    --radius-sm: 12px;
    --shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
    --shadow-soft: 0 8px 32px rgba(0, 0, 0, 0.12);
    --header: 64px;
    --font: 'Tajawal', 'Cairo', system-ui, sans-serif;
    --pad: max(18px, env(safe-area-inset-right, 18px));
    --pad-l: max(18px, env(safe-area-inset-left, 18px));
    --max: 1140px;
    --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
}

body {
    font-family: var(--font);
    color: var(--text-dark);
    background: var(--cream);
    line-height: 1.75;
    overflow-x: hidden;
    padding-bottom: calc(80px + env(safe-area-inset-bottom, 0px));
    min-width: 0;
}

body.menu-open { overflow: hidden; touch-action: none; }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; -webkit-tap-highlight-color: transparent; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

.container {
    width: 100%;
    max-width: var(--max);
    margin-inline: auto;
    padding-inline: max(18px, env(safe-area-inset-left, 18px)) max(18px, env(safe-area-inset-right, 18px));
}

/* ── Header ── */
.header {
    position: sticky;
    top: 0;
    z-index: 200;
    height: var(--header);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(14px) saturate(130%);
    -webkit-backdrop-filter: blur(14px) saturate(130%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
    transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}

.header.scrolled {
    background: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-bottom-color: rgba(0, 0, 0, 0.08);
}

.header-bar {
    position: relative;
    height: var(--header);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    z-index: 202;
}

.logo img {
    width: 56px;
    height: 56px;
    object-fit: contain;
    flex-shrink: 0;
}

.menu-btn {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    z-index: 202;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.menu-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transition: transform 0.3s var(--ease), opacity 0.3s;
}

.menu-btn.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-btn.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-btn.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.nav {
    position: fixed;
    top: var(--header);
    inset-inline: 0;
    bottom: 0;
    background: var(--black);
    padding: 16px max(18px, env(safe-area-inset-right, 18px)) calc(24px + env(safe-area-inset-bottom, 0px)) max(18px, env(safe-area-inset-left, 18px));
    display: flex;
    flex-direction: column;
    gap: 2px;
    transform: translateX(100%);
    transition: transform 0.35s var(--ease);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 201;
    border-top: 1px solid var(--line);
}

.nav.open { transform: translateX(0); }

.nav a {
    display: flex;
    align-items: center;
    min-height: 52px;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--muted-light);
    border: 1px solid transparent;
    transition: 0.2s;
}

.nav a.active {
    color: var(--gold-light);
    background: var(--gold-dim);
    border-color: var(--line);
}

.nav a:not(.nav-call):hover { color: var(--text); background: rgba(255,255,255,0.04); }

.nav-call {
    margin-top: auto !important;
    background: linear-gradient(135deg, var(--gold) 0%, #a8863a 100%) !important;
    color: var(--black) !important;
    font-weight: 800 !important;
    justify-content: center;
    min-height: 54px !important;
}

.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 199;
    backdrop-filter: blur(2px);
}

.nav-overlay[hidden] { display: none !important; }

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 14px 24px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 1rem;
    transition: transform 0.2s var(--ease), box-shadow 0.2s, filter 0.2s;
    text-align: center;
    white-space: nowrap;
    border: none;
}

.btn:active { transform: scale(0.98); }

.btn-gold {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, #a8863a 100%);
    color: var(--black);
    box-shadow: 0 4px 20px rgba(201, 168, 76, 0.35);
}

.btn-wa {
    background: var(--wa);
    color: #fff;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.btn-ghost {
    background: transparent;
    color: var(--text);
    border: 1px solid rgba(255, 255, 255, 0.35);
}

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

.btn-outline {
    background: transparent;
    color: var(--text-dark);
    border: 1.5px solid var(--dark);
}

.btn-row {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.btn-row .btn { width: 100%; }

/* ── Hero ── */
.hero {
    position: relative;
    min-height: min(88svh, 680px);
    min-height: min(88dvh, 680px);
    display: flex;
    align-items: center;
    color: var(--text);
    overflow: hidden;
    background: var(--black);
}

.hero-bg { position: absolute; inset: 0; }

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(12,12,14,0.3) 0%, rgba(12,12,14,0.55) 45%, rgba(12,12,14,0.95) 100%),
        linear-gradient(90deg, rgba(12,12,14,0.4) 0%, transparent 60%);
}

.hero-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    min-width: 0;
    padding: calc(var(--header) + 20px) 0 calc(28px + env(safe-area-inset-bottom, 0px));
}

.hero-eyebrow {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 14px;
}

.hero-badge {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    padding: 7px 14px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: var(--black);
    margin-bottom: 14px;
}

.hero h1 {
    font-size: clamp(2rem, 8vw, 3.2rem);
    line-height: 1.25;
    font-weight: 800;
    margin-bottom: 14px;
    max-width: 100%;
    overflow-wrap: break-word;
    color: #fff;
}

.hero p {
    font-size: clamp(0.95rem, 3.5vw, 1.1rem);
    color: var(--muted-light);
    margin-bottom: 28px;
    max-width: 100%;
    overflow-wrap: break-word;
    line-height: 1.8;
}

.hero .btn-row .btn {
    white-space: normal;
}

.hero-sm {
    min-height: min(70svh, 480px);
    min-height: min(70dvh, 480px);
}

.hero-sm h1 { max-width: 100%; font-size: clamp(1.65rem, 6.5vw, 2.6rem); }

/* ── Sections ── */
.section { padding: 48px 0; }
.section-dark { background: var(--dark); color: var(--text); }
.section-cream { background: var(--cream); }
.section-white { background: #fff; }

.section-head {
    margin-bottom: 28px;
    text-align: center;
}

.section-head .eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
}

.section-dark .section-head .eyebrow { color: var(--gold-light); }

.section-head h2 {
    font-size: clamp(1.5rem, 5vw, 2.1rem);
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 10px;
}

.section-dark .section-head h2 { color: #fff; }
.section-cream .section-head h2,
.section-white .section-head h2 { color: var(--black); }

.section-head p {
    color: var(--muted);
    font-size: 0.95rem;
    max-width: 40ch;
    margin-inline: auto;
}

.section-dark .section-head p { color: var(--muted-light); }

.section-head .gold-line {
    width: 48px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
    margin: 14px auto 0;
}

/* ── Destinations ── */
.dest-grid {
    display: grid;
    gap: 14px;
}

.dest {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    min-height: 200px;
    color: var(--text);
    box-shadow: var(--shadow);
    border: 1px solid var(--line-dark);
}

.dest img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

.dest:active img { transform: scale(1.04); }

.dest::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 25%, rgba(12,12,14,0.92) 100%);
}

.dest-body {
    position: relative;
    z-index: 1;
    padding: 22px;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.dest-body span {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--gold-light);
    margin-bottom: 6px;
}

.dest h3 {
    font-size: clamp(1.25rem, 4vw, 1.5rem);
    font-weight: 800;
    margin-bottom: 4px;
}

.dest p { font-size: 0.88rem; color: var(--muted-light); }

/* ── Why cards ── */
.why-grid {
    display: grid;
    gap: 14px;
}

.why {
    background: var(--dark-card);
    border: 1px solid var(--line-dark);
    border-radius: var(--radius);
    padding: 22px 20px;
    position: relative;
    overflow: hidden;
}

.why::before {
    content: '';
    position: absolute;
    top: 0;
    inset-inline: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.why .num {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 12px;
}

.why h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.why p { color: var(--muted-light); font-size: 0.9rem; line-height: 1.7; }

/* ── Project cards ── */
.projects {
    display: grid;
    gap: 20px;
}

.project {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--cream-2);
    display: flex;
    flex-direction: column;
}

.section-dark .project {
    background: var(--dark-card);
    border-color: var(--line-dark);
    box-shadow: var(--shadow);
}

.project-media {
    position: relative;
    aspect-ratio: 4 / 3;
    background: var(--dark-2);
    overflow: hidden;
}

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

.project-tag {
    position: absolute;
    top: 14px;
    inset-inline-start: 14px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: var(--black);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    padding: 6px 12px;
    border-radius: 999px;
    z-index: 1;
}

.project-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.project-loc {
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    margin-bottom: 6px;
}

.section-dark .project-loc { color: var(--gold-light); }

.project h3 {
    font-size: clamp(1.15rem, 4vw, 1.35rem);
    font-weight: 800;
    margin-bottom: 10px;
    line-height: 1.35;
}

.section-dark .project h3 { color: #fff; }

.project .desc {
    color: var(--muted);
    font-size: 0.92rem;
    margin-bottom: 14px;
    flex: 1;
    line-height: 1.75;
}

.section-dark .project .desc { color: var(--muted-light); }

.project-meta {
    display: grid;
    gap: 6px;
    margin-bottom: 18px;
    padding: 14px;
    background: var(--cream);
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
}

.section-dark .project-meta {
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--line-dark);
}

.project-meta strong { color: var(--gold); font-weight: 700; }
.section-dark .project-meta strong { color: var(--gold-light); }

/* ── Brochure ── */
.brochure {
    position: relative;
    background: var(--black);
    color: var(--text);
    border-radius: var(--radius);
    padding: 32px 22px;
    border: 1px solid var(--line);
    overflow: hidden;
}

.brochure::before {
    content: '';
    position: absolute;
    top: -60px;
    inset-inline-end: -60px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--gold-dim) 0%, transparent 70%);
    pointer-events: none;
}

.brochure h2 {
    font-size: clamp(1.35rem, 4.5vw, 1.75rem);
    font-weight: 800;
    margin-bottom: 10px;
    position: relative;
}

.brochure > p {
    color: var(--muted-light);
    margin-bottom: 18px;
    font-size: 0.95rem;
    position: relative;
}

.brochure ul {
    display: grid;
    gap: 10px;
    margin-bottom: 22px;
    position: relative;
}

.brochure li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.93rem;
}

.brochure li i { color: var(--gold); font-size: 0.85rem; }

#downloadError {
    display: none;
    margin-top: 16px;
    padding: 16px;
    background: rgba(255,255,255,0.06);
    border-radius: var(--radius-sm);
    border: 1px solid var(--line-dark);
}

#downloadError.show { display: block; }

/* ── Detail page ── */
.detail {
    padding: 24px 0 48px;
    background: var(--cream);
}

.detail-layout {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.gallery { display: grid; gap: 12px; min-width: 0; }

.gallery-main {
    aspect-ratio: 4 / 3;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--dark-2);
    border: 1px solid var(--cream-2);
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: zoom-in;
}

.gallery-thumbs {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding-bottom: 4px;
    scrollbar-width: none;
}

.gallery-thumbs::-webkit-scrollbar { display: none; }

.gallery-thumbs button {
    flex: 0 0 72px;
    width: 72px;
    height: 72px;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid transparent;
    opacity: 0.65;
    scroll-snap-align: start;
    transition: 0.2s;
}

.gallery-thumbs button.active,
.gallery-thumbs button:hover {
    opacity: 1;
    border-color: var(--gold);
}

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

.detail-panel {
    background: #fff;
    border: 1px solid var(--cream-2);
    border-radius: var(--radius);
    padding: 22px 20px;
    box-shadow: var(--shadow-soft);
    min-width: 0;
}

.detail-panel h1 {
    font-size: clamp(1.4rem, 5vw, 1.85rem);
    font-weight: 800;
    color: var(--black);
    line-height: 1.3;
    margin-bottom: 10px;
}

.detail-panel .lead {
    color: var(--muted);
    margin-bottom: 6px;
    font-size: 0.95rem;
    line-height: 1.75;
}

.block {
    padding: 18px 0;
    border-top: 1px solid var(--cream-2);
}

.block:first-of-type { border-top: none; padding-top: 0; }

.block h3 {
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.block p {
    color: var(--muted);
    font-size: 0.93rem;
    margin-bottom: 8px;
    line-height: 1.75;
    word-break: break-word;
}

.chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.chips span {
    background: var(--cream);
    border: 1px solid var(--cream-2);
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.4;
}

.prices { display: grid; gap: 0; }

.price-line {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 12px 0;
    border-bottom: 1px dashed var(--cream-2);
    font-size: 0.92rem;
}

.price-line:last-child { border-bottom: none; }

.price-line strong {
    color: var(--black);
    font-weight: 800;
    font-size: 1rem;
}

.pay {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.pay div {
    background: var(--cream);
    border-radius: var(--radius-sm);
    padding: 14px;
    border: 1px solid var(--cream-2);
}

.pay small {
    display: block;
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    margin-bottom: 4px;
}

.pay b {
    color: var(--black);
    font-size: 1rem;
    font-weight: 800;
}

.media-box {
    margin-top: 12px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid var(--cream-2);
}

.media-box img { width: 100%; cursor: zoom-in; }

/* ── Float WA ── */
.float-wa {
    position: fixed;
    inset-inline-end: max(16px, env(safe-area-inset-right, 16px));
    bottom: max(16px, env(safe-area-inset-bottom, 16px));
    z-index: 150;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: var(--wa);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 1.65rem;
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
    transition: transform 0.2s;
}

.float-wa:active { transform: scale(0.94); }

/* ── Lightbox ── */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 300;
    background: rgba(0, 0, 0, 0.94);
    display: grid;
    place-items: center;
    padding: max(16px, env(safe-area-inset-top, 16px)) 16px max(16px, env(safe-area-inset-bottom, 16px));
}

.lightbox[hidden] { display: none !important; }

.lightbox img {
    max-width: 100%;
    max-height: 85svh;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox-x {
    position: absolute;
    top: max(12px, env(safe-area-inset-top, 12px));
    inset-inline-end: max(12px, env(safe-area-inset-right, 12px));
    color: #fff;
    font-size: 2.2rem;
    line-height: 1;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
}

/* ── Footer ── */
.footer {
    background: var(--black);
    color: var(--muted-light);
    padding: 40px 0 calc(24px + env(safe-area-inset-bottom, 0px));
    border-top: 1px solid var(--line-dark);
}

.footer-grid {
    display: grid;
    gap: 24px;
    margin-bottom: 24px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: #fff;
    font-weight: 800;
    font-size: 1.1rem;
}

.footer-brand img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    background: #fff;
    border-radius: 10px;
    padding: 4px;
}

.footer-desc {
    font-size: 0.88rem;
    line-height: 1.8;
    color: var(--muted-light);
}

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

.footer-contact a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: var(--gold-light);
    min-height: 44px;
}

.footer-copy {
    border-top: 1px solid var(--line-dark);
    padding-top: 18px;
    font-size: 0.78rem;
    opacity: 0.7;
    text-align: center;
    line-height: 1.6;
}

/* ═══ Tablet (640px+) ═══ */
@media (min-width: 640px) {
    :root { --header: 68px; }

    .dest-grid { grid-template-columns: 1fr 1fr; }
    .why-grid { grid-template-columns: 1fr 1fr; }
    .projects { grid-template-columns: 1fr 1fr; }
    .pay { grid-template-columns: 1fr 1fr; }
    .price-line {
        flex-direction: row;
        justify-content: space-between;
        align-items: baseline;
    }
    .btn-row {
        flex-direction: row;
        flex-wrap: wrap;
        width: auto;
    }
    .btn-row .btn { width: auto; flex: 1 1 auto; min-width: 160px; }
    .gallery-thumbs { flex-wrap: wrap; overflow-x: visible; }
    .gallery-thumbs button { flex: 0 0 calc(25% - 8px); width: auto; height: auto; aspect-ratio: 1; }
}

/* ═══ Desktop (960px+) ═══ */
@media (min-width: 960px) {
    .menu-btn { display: none; }

    .logo {
        position: static;
        left: auto;
        top: auto;
        transform: none;
        margin-inline-end: auto;
    }

    .nav {
        position: static;
        transform: none !important;
        flex-direction: row;
        align-items: center;
        flex-wrap: wrap;
        justify-content: flex-end;
        margin-inline-start: auto;
        padding: 0;
        background: transparent;
        overflow: visible;
        gap: 2px;
        border: none;
    }

    .nav a {
        min-height: auto;
        padding: 8px 11px;
        font-size: 0.84rem;
        border-radius: 8px;
        color: var(--text-dark);
    }

    .nav a.active {
        color: #a8863a;
        background: var(--gold-dim);
        border-color: var(--line);
    }

    .nav a:not(.nav-call):hover {
        color: var(--black);
        background: rgba(0, 0, 0, 0.05);
    }

    .nav-call {
        margin-top: 0 !important;
        margin-inline-start: 8px !important;
        min-height: 40px !important;
        padding: 8px 14px !important;
        font-size: 0.82rem !important;
    }

    .why-grid { grid-template-columns: repeat(4, 1fr); }
    .projects { grid-template-columns: repeat(3, 1fr); }
    .projects .featured { grid-column: span 2; grid-row: span 1; }
    .projects .featured .project-media { aspect-ratio: 16 / 9; }

    .detail-layout {
        display: grid;
        grid-template-columns: 1.15fr 0.85fr;
        gap: 32px;
        align-items: start;
    }

    .detail-panel {
        position: sticky;
        top: calc(var(--header) + 20px);
    }

    .footer-grid {
        grid-template-columns: 1.5fr 0.5fr;
        align-items: start;
    }

    .section { padding: 72px 0; }
    .section-head { text-align: start; margin-bottom: 36px; }
    .section-head p { margin-inline: 0; }
    .section-head .gold-line { margin: 14px 0 0; }
    .brochure { padding: 40px 36px; }

    .hero {
        min-height: 100svh;
        min-height: 100dvh;
        align-items: flex-end;
    }

    .hero-inner { padding: 32px 0 56px; }
}

@media (min-width: 1100px) {
    .projects { grid-template-columns: repeat(3, 1fr); }
}
