/* =============================================
   KOSTEIN — Andreea Petre | Construction Consulting
   Fonts: Outfit (body) + Playfair Display (headings)
   Palette: Dark (#111) + Earth Tones (#ae6e40) + White
   ============================================= */

/* FONT FACES — Local Outfit */
@font-face { font-family:'Outfit'; src:url('../fonts/Outfit-Light.ttf') format('truetype'); font-weight:300; font-style:normal; font-display:swap; }
@font-face { font-family:'Outfit'; src:url('../fonts/Outfit-Regular.ttf') format('truetype'); font-weight:400; font-style:normal; font-display:swap; }
@font-face { font-family:'Outfit'; src:url('../fonts/Outfit-Medium.ttf') format('truetype'); font-weight:500; font-style:normal; font-display:swap; }
@font-face { font-family:'Outfit'; src:url('../fonts/Outfit-SemiBold.ttf') format('truetype'); font-weight:600; font-style:normal; font-display:swap; }
@font-face { font-family:'Outfit'; src:url('../fonts/Outfit-Bold.ttf') format('truetype'); font-weight:700; font-style:normal; font-display:swap; }
@font-face { font-family:'Playfair Display'; src:url('../fonts/PlayfairDisplay-Italic.ttf') format('truetype'); font-weight:400; font-style:italic; font-display:swap; }
@font-face { font-family:'Playfair Display'; src:url('../fonts/PlayfairDisplay-Italic-RO.ttf') format('truetype'); font-weight:400; font-style:italic; font-display:swap; unicode-range:U+0218-021B,U+0102-0103; }

:root {
    --gold: #ae6e40;
    --gold-light: #d3946a;
    --gold-dark: #8a5530;
    --black: #111111;
    --dark: #1A1A1A;
    --dark2: #222222;
    --dark3: #2C2C2C;
    --gray: #999999;
    --gray-light: #CCCCCC;
    --off-white: #F5F4F0;
    --white: #FFFFFF;
    --font-body: 'Outfit', sans-serif;
    --font-heading: 'Playfair Display', 'Outfit', serif;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body {
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--white);
    background: var(--black);
    line-height: 1.75;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    padding-bottom: env(safe-area-inset-bottom, 0);
}
.container { max-width: 1400px; margin: 0 auto; padding: 0 40px; }
a { text-decoration: none; color: inherit; transition: color 0.3s var(--ease); }
img { max-width: 100%; height: auto; display: block; }
em { font-family: var(--font-heading); font-style: italic; font-weight: 400; }

/* TAG (section label) */
.tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}
.tag.light { color: var(--gold-light); }

/* BUTTONS */
.btn {
    display: inline-block;
    padding: 15px 40px;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.4s var(--ease);
}
.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.4);
}
.btn-outline:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
}
.btn-primary {
    background: var(--gold);
    color: var(--black);
    border: 1px solid var(--gold);
}
.btn-primary:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
}

/* ===== NAVIGATION ===== */
#navbar {
    position: fixed;
    top: 0; left: 0; width: 100%;
    z-index: 1000;
    padding: 24px 0;
    transition: padding 0.4s var(--ease), background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
#navbar.scrolled {
    background: rgba(17,17,17,0.98);
    padding: 14px 0;
    box-shadow: 0 1px 0 rgba(255,255,255,0.05);
}
.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: visible;
}
.nav-logo { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.nav-logo img { width: 120px; height: auto; flex-shrink: 0; }
.nav-logo span {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 5px;
    text-transform: uppercase;
}
.nav-links { display: flex; list-style: none; gap: 18px; align-items: center; flex-wrap: nowrap; transform: translateY(-18px); }
.nav-links a {
    color: rgba(255,255,255,0.7);
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    white-space: nowrap;
    transition: color 0.3s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-cta {
    padding: 10px 24px !important;
    border: 1px solid var(--gold) !important;
    color: var(--gold) !important;
}
.nav-cta:hover {
    background: var(--gold) !important;
    color: var(--black) !important;
}
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 5px; touch-action: manipulation; -webkit-tap-highlight-color: transparent; z-index: 1001; }
.nav-toggle span { width: 24px; height: 1.5px; background: var(--white); transition: transform 0.4s var(--ease); transform: translateX(0); }
.nav-toggle.active span:nth-child(1) { transform: translateX(4px); }
.nav-toggle.active span:nth-child(2) { transform: translateX(-4px); }
.nav-toggle.active span:nth-child(3) { transform: translateX(4px); }

/* ===== HERO ===== */
#hero {
    position: relative;
    height: 100vh;
    height: 100dvh;
    height: calc(var(--vh, 1vh) * 100);
    max-height: -webkit-fill-available;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
}
.hero-video {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
    transform: none !important;
    z-index: 0;
}
.hero-video-b {
    object-position: center 35% !important;
}
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(17,17,17,0.6) 0%, rgba(17,17,17,0.55) 40%, rgba(17,17,17,0.7) 70%, rgba(17,17,17,0.95) 100%);
    z-index: 1;
}
.hero-content {
    position: relative; z-index: 2;
    text-align: center;
    padding: 40px;
    padding-bottom: 10vh;
    width: 100%;
}
.hero-pre {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 10px;
    margin-bottom: 28px;
    margin-bottom: 24px;
    animation: fadeUp 1s var(--ease) 0.2s both;
}
#hero h1 {
    font-family: var(--font-body);
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 300;
    color: var(--white);
    letter-spacing: -1px;
    line-height: 1.1;
    margin-bottom: 8px;
    animation: fadeUp 1s var(--ease) 0.4s both;
}
#hero h1 em {
    font-family: var(--font-heading);
    font-weight: 400;
}
.hero-divider {
    width: 60px; height: 1px;
    background: var(--gold);
    margin: 0 auto 16px;
    animation: fadeUp 1s var(--ease) 0.5s both;
}
.hero-partners {
    font-family: var(--font-body);
    font-size: 1.3rem;
    font-weight: 300;
    color: rgba(255,255,255,0.6);
    letter-spacing: 3px;
    text-transform: none;
    text-align: center;
    margin-top: -2px;
    margin-bottom: 6px;
    animation: fadeUp 1s var(--ease) 0.45s both;
}
.hero-partners span {
    display: block;
    font-size: 1.5rem;
    font-weight: 300;
    color: rgba(255,255,255,0.45);
    margin-bottom: 0;
    letter-spacing: 0;
}
.hero-tagline {
    font-size: 1rem;
    font-weight: 300;
    color: rgba(255,255,255,0.65);
    max-width: 520px;
    margin: 0 auto 24px;
    line-height: 1.8;
    animation: fadeUp 1s var(--ease) 0.6s both;
}
.hero-scroll {
    position: absolute;
    bottom: 20px; left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: pulse 2.5s ease-in-out 1s 3;
}
.hero-scroll a { color: var(--gold); font-size: 1.2rem; }

/* Hero Sound Toggle */
.hero-sound-btn {
    position: absolute;
    bottom: 40px;
    left: 40px;
    z-index: 3;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(200,152,46,0.3);
    background: rgba(17,17,17,0.85);
    color: var(--gold);
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    display: flex;
    align-items: center;
    justify-content: center;
    touch-action: manipulation;
    animation: pulseSoundBtn 2.5s ease-in-out 3s 3;
}
@keyframes pulseSoundBtn {
    0%, 100% { transform: scale(1); border-color: rgba(200,152,46,0.3); }
    50% { transform: scale(1.15); border-color: rgba(200,152,46,0.7); }
}
.hero-sound-btn:hover {
    background: rgba(17,17,17,0.85);
}

/* ===== STATS BAR ===== */
#stats { background: var(--dark); scroll-margin-top: 120px; }
.stats-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 35px 40px;
    gap: 50px;
}
.stat-item { text-align: center; }
.stat-prefix, .stat-num, .stat-suffix {
    font-family: var(--font-body);
    font-size: 2.8rem;
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
}
.stat-text {
    display: block;
    margin-top: 10px;
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray);
    line-height: 1.6;
}
.stat-divider { width: 1px; height: 50px; background: rgba(255,255,255,0.1); }

/* ===== ABOUT ===== */
#about {
    padding: 60px 0;
    background: var(--black);
    scroll-margin-top: 70px;
    min-height: calc(100vh - 70px);
    min-height: calc(var(--vh, 1vh) * 100 - 70px);
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}
#about > .container { width: 100%; }
.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}
/* Full-height person image on right */
.about-right-full {
    position: relative;
    align-self: stretch;
    overflow: hidden;
    margin: -60px 0;
    margin-right: -40px;
}
.about-person-full {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 15%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}
.about-right-fade {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(to right, var(--black) 0%, transparent 35%),
        linear-gradient(to top, rgba(17,17,17,0.7) 0%, transparent 40%),
        rgba(17,17,17,0.25);
    z-index: 1;
    pointer-events: none;
}
/* Credentials overlaid on person image */
.about-creds-overlay {
    position: absolute;
    bottom: 30px;
    left: 20px;
    right: 20px;
    z-index: 2;
}
.about-creds-overlay .cred-item {
    background: rgba(17,17,17,0.8);
    border-color: rgba(255,255,255,0.1);
}
.about-left h2 {
    font-family: var(--font-body);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 300;
    line-height: 1.25;
    color: var(--white);
    margin-bottom: 30px;
}
.about-body p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 10px;
    font-weight: 300;
    line-height: 1.65;
}
.about-body strong { color: var(--white); font-weight: 500; }
.about-sign-block {
    position: relative;
    margin-top: 14px;
    text-align: right;
    min-height: 60px;
}
.about-sign-text {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    font-weight: 300;
    text-align: right;
    line-height: 1.5;
    position: relative;
    z-index: 1;
}
.about-sign-text strong {
    color: var(--white);
    font-weight: 500;
}
.about-signature {
    position: absolute;
    right: 60px;
    top: -10px;
    width: 100px;
    height: auto;
    opacity: 0.75;
    z-index: 2;
}
.about-signature.sign-hidden {
    -webkit-clip-path: inset(0 100% 0 0);
    clip-path: inset(0 100% 0 0);
}
.about-signature.writing {
    -webkit-clip-path: inset(0 0% 0 0);
    clip-path: inset(0 0% 0 0);
    -webkit-animation: signWrite 1.8s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
    animation: signWrite 1.8s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}
@-webkit-keyframes signWrite {
    0%   { -webkit-clip-path: inset(0 100% 0 0); clip-path: inset(0 100% 0 0); }
    100% { -webkit-clip-path: inset(0 0% 0 0); clip-path: inset(0 0% 0 0); }
}
@keyframes signWrite {
    0%   { -webkit-clip-path: inset(0 100% 0 0); clip-path: inset(0 100% 0 0); }
    100% { -webkit-clip-path: inset(0 0% 0 0); clip-path: inset(0 0% 0 0); }
}
.about-photo-frame {
    margin-bottom: 12px;
    position: relative;
    overflow: hidden;
}
.about-photo-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(17,17,17,0.0) 0%, rgba(17,17,17,0.0) 30%, rgba(17,17,17,0.4) 70%, rgba(17,17,17,0.95) 100%),
                linear-gradient(90deg, rgba(17,17,17,0.5) 0%, rgba(17,17,17,0.0) 15%, rgba(17,17,17,0.0) 85%, rgba(17,17,17,0.5) 100%),
                linear-gradient(180deg, rgba(17,17,17,0.6) 0%, rgba(17,17,17,0.0) 20%);
    pointer-events: none;
    z-index: 1;
}
.about-portrait {
    width: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}
.about-credentials { display: flex; flex-direction: column; gap: 8px; }
.cred-item {
    display: flex; align-items: center; gap: 12px;
    padding: 10px 14px;
    border: 1px solid rgba(255,255,255,0.06);
    transition: border-color 0.3s var(--ease);
}
.cred-item:hover { border-color: rgba(200,152,46,0.3); }
.cred-item i { font-size: 1.1rem; color: var(--gold); width: 24px; text-align: center; }
.cred-map { filter: none; opacity: 0.9; height: 40px; }
.cred-item strong { display: block; font-size: 0.85rem; font-weight: 500; color: var(--white); }
.cred-item span { font-size: 0.75rem; color: var(--gray); }

/* ===== SERVICES ===== */
#services { background: var(--black); padding-bottom: 100px; scroll-margin-top: 70px; min-height: calc(100vh - 70px); min-height: calc(var(--vh, 1vh) * 100 - 70px); box-sizing: border-box; }
#services {
    position: relative;
    overflow: hidden;
    padding-bottom: 40px;
    min-height: calc(100vh - 70px);
    min-height: calc(var(--vh, 1vh) * 100 - 70px);
    scroll-margin-top: 70px;
    box-sizing: border-box;
}
#services > .container {
    position: relative;
    z-index: 2;
}
.services-bg-video {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100);
    object-fit: cover;
    z-index: 0;
}
.services-bg-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100);
    background: rgba(17,17,17,0.75);
    z-index: 1;
    transition: background 0.5s ease;
}
/* When a service card is in video-mode, darken overlay (no GPU-heavy blur) */
#services:has(.service-expandable.video-mode) .services-bg-video {
    opacity: 0.3;
}
#services:has(.service-expandable.video-mode) .services-bg-overlay {
    background: rgba(17,17,17,0.92);
}
/* JS fallback class for browsers without :has() */
#services.has-video-mode .services-bg-video {
    opacity: 0.3;
}
#services.has-video-mode .services-bg-overlay {
    background: rgba(17,17,17,0.92);
}
.services-hero {
    position: relative;
    z-index: 2;
    padding: 30px 0 15px;
}
.services-hero .container {
    position: relative;
}
.services-hero h2 {
    font-family: var(--font-body);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 300;
    color: var(--white);
}
.services-wrapper {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}
.services-wrapper > .services-grid { order: 1; }
.services-wrapper > .services-more-toggle { order: 2; }
.services-wrapper > .services-grid-hidden { order: 3; }
.services-wrapper > .services-more-toggle.open { order: 4; }
.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1px;
    background: rgba(255,255,255,0.05);
    margin-bottom: 0;
    position: relative;
    z-index: 2;
}
.services-grid > .service-card {
    flex: 1 1 320px;
    min-width: 0;
}
.services-grid-hidden {
    display: none;
    opacity: 0;
    margin-bottom: 0;
}
.services-grid-hidden.open {
    display: flex;
    opacity: 1;
}
/* When "More Services" is open, hide the first 3 cards */
.services-grid.first-hidden {
    display: none;
    opacity: 0;
}
.services-more-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 24px 0;
    cursor: pointer;
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s var(--ease);
    margin-bottom: 20px;
}
.services-more-toggle i {
    font-size: 0.7rem;
    transition: transform 0.4s var(--ease);
}
.services-more-toggle:hover {
    color: var(--gold-light);
}
.services-more-toggle.open i {
    transform: rotate(180deg);
}
.service-card {
    background: transparent;
    padding: 25px 30px;
    position: relative;
    display: flex;
    flex-direction: column;
}
/* Actions row: Read more (left) + Watch video (right) */
.service-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 5px;
}
.service-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 30px;
    width: 0; height: 1px;
    background: var(--gold);
    transition: width 0.5s var(--ease);
}
.service-card:hover::after { width: calc(100% - 60px); }
.service-card:hover { background: rgba(255,255,255,0.05); }
.service-num {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 2px;
    margin-bottom: 20px;
}
.service-card h3 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 14px;
    line-height: 1.4;
}
.service-card p {
    font-size: 0.85rem;
    color: var(--gray);
    font-weight: 300;
    line-height: 1.7;
}
.service-expand-content {
    display: none;
}
.service-expand-content p {
    font-size: 0.85rem;
    color: var(--gray);
    font-weight: 300;
    line-height: 1.7;
    margin-top: 12px;
}
.service-expandable.expanded .service-expand-content {
    display: block;
}
/* Text mode: show text, hide video */
.service-expandable.text-mode .service-expand-content .service-video { display: none; }
/* Video mode: hide intro text + expand text, show only video */
.service-expandable.video-mode > p { display: none; }
.service-expandable.video-mode .service-expand-content > p { display: none; }
.service-expandable.video-mode {
    padding-bottom: 5px;
}
.service-expandable.video-mode .service-num { display: none; }
.service-expandable.video-mode .service-video {
    margin-top: 10px;
    max-height: calc(var(--vh, 1vh) * 50);
}
.service-expandable.video-mode .service-video video {
    max-height: calc(var(--vh, 1vh) * 50);
    object-fit: contain;
    filter: none;
}
.service-video-teaser {
    display: flex;
    align-items: center;
    gap: 14px;
    cursor: pointer;
    padding: 0;
}
.teaser-thumb {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}
.teaser-thumb video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1) brightness(0.7);
}
.service-video-teaser:hover .teaser-thumb video {
    filter: none;
}
.teaser-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.35);
    transition: background 0.3s ease;
}
.service-video-teaser:hover .teaser-play {
    background: rgba(200,152,46,0.25);
}
.teaser-play i {
    color: #fff;
    font-size: 1.4rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.teaser-label {
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.teaser-label i {
    margin-left: 4px;
    font-size: 0.65rem;
    transition: transform 0.3s ease;
}
.service-expandable.expanded .teaser-label i {
    transform: rotate(180deg);
}
.service-video {
    margin-top: 20px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}
.service-video video {
    width: 100%;
    display: block;
    border-radius: 8px;
    filter: grayscale(1) brightness(0.85);
}
.service-video:hover video {
    filter: grayscale(1) brightness(0.85);
}
.service-read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 0;
    margin-left: 4px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: color 0.3s var(--ease);
}
.service-read-more:hover {
    color: var(--white);
}
.service-read-more i {
    font-size: 0.6rem;
    transition: transform 0.3s var(--ease);
}
.service-expandable.expanded .service-read-more i {
    transform: rotate(180deg);
}
.sectors-row {
    display: flex;
    align-items: center;
    gap: 30px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.sectors-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    white-space: nowrap;
}
.sectors-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.sectors-tags span {
    padding: 8px 20px;
    border: 1px solid rgba(255,255,255,0.12);
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    transition: all 0.3s var(--ease);
}
.sectors-tags span:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* ===== PORTFOLIO ===== */
#portfolio {
    padding: 40px 0 80px;
    background: var(--dark);
    scroll-margin-top: 70px;
    min-height: calc(100vh - 70px);
    min-height: calc(var(--vh, 1vh) * 100 - 70px);
    box-sizing: border-box;
}
.section-intro {
    text-align: center;
    margin-bottom: 30px;
}
.section-intro h2 {
    font-family: var(--font-body);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 300;
    color: var(--white);
    margin-bottom: 12px;
}
.section-intro p { color: var(--gray); font-size: 0.95rem; }

/* Project Cards */
.project-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}
/* ===== FEATURED PROJECTS (full-width image) ===== */
.project-featured {
    position: relative;
    width: 100%;
    min-height: 75vh;
    min-height: 75dvh;
    overflow: hidden;
    display: flex;
    align-items: center;
}
.project-featured-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.85);
}
.project-featured:hover .project-featured-bg {
    filter: brightness(0.75);
}
.project-featured-overlay {
    position: absolute;
    inset: 0;
    background: rgba(17,17,17,0.4);
    z-index: 1;
}
.project-featured-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 48px;
}
.project-featured-text {
    background: rgba(17,17,17,0.75);
    border-radius: 12px;
    padding: 40px;
    border: 1px solid rgba(200,152,46,0.1);
    max-width: 700px;
    text-align: center;
}
.project-featured-text .project-type {
    margin-bottom: 16px;
    align-self: center;
}
/* Side-by-side layout inside single chenar */
.project-featured-sidebyside {
    display: flex;
    align-items: center;
    gap: 40px;
    text-align: left;
}
.project-featured-sidebyside.pf-reverse {
    flex-direction: row-reverse;
}
.pf-col-text {
    flex: 1;
}
.pf-col-video {
    flex-shrink: 0;
}
.pf-col-video .project-short {
    margin: 0;
    max-width: 220px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.project-featured-text h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.3;
}
.project-featured-text p {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.65);
    font-weight: 300;
    line-height: 1.8;
}
.project-featured-text .project-highlights {
    border-top: 1px solid rgba(200,152,46,0.2);
    justify-content: center;
}
/* Inline video inside text box */
.project-short-inline {
    margin: 20px auto 0;
    max-width: 320px;
    aspect-ratio: 9 / 16;
    box-shadow: 0 8px 40px rgba(0,0,0,0.4);
}
.project-short-landscape {
    aspect-ratio: 16 / 9 !important;
    max-width: 100% !important;
    border-radius: 12px;
    margin: 20px auto 0;
}
.short-expand-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 3;
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 6px;
    background: rgba(17,17,17,0.6);
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--ease);
    opacity: 0;
    pointer-events: auto;
}
.project-short:hover .short-expand-btn {
    opacity: 1;
}
.short-expand-btn:hover {
    background: rgba(200,152,46,0.8);
    color: #fff;
}
/* Expanded video overlay */
.short-overlay {
    position: fixed;
    inset: 0;
    z-index: 9998;
    background: rgba(0,0,0,0);
    transition: background 0.4s ease;
    pointer-events: none;
}
.short-overlay.active {
    background: rgba(0,0,0,0.85);
    pointer-events: auto;
}
.short-expanded-clone {
    position: fixed;
    z-index: 9999;
    border-radius: 12px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 20px 60px rgba(0,0,0,0.7);
}
.short-expanded-clone video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: none;
}
.short-expanded-clone .short-expand-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    opacity: 1;
    z-index: 10000;
    width: 36px;
    height: 36px;
    font-size: 1rem;
    border: none;
    border-radius: 6px;
    background: rgba(17,17,17,0.6);
    color: rgba(255,255,255,0.8);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}
.short-expanded-clone .short-expand-btn:hover {
    background: rgba(200,152,46,0.8);
    color: #fff;
}

/* Stacked videos row (Agarbiceanu) */
.project-featured-videos-row {
    display: flex;
    gap: 16px;
    margin-top: 24px;
    width: 100%;
}
.project-featured-videos-row .project-short-landscape {
    flex: 1;
}
.video-with-source {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.video-with-source .project-short-landscape {
    margin-top: 0;
}
.video-source {
    display: block;
    text-align: center;
    font-size: 0.55rem;
    color: var(--gray);
    letter-spacing: 0.5px;
    margin-top: 6px;
}
.video-source a {
    color: var(--gray);
    text-decoration: none;
    transition: color 0.3s ease;
}
.video-source a:hover {
    color: var(--gold);
}

/* ===== STANDARD PROJECT CARDS ===== */
.project-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--black);
    overflow: hidden;
    transition: background 0.4s var(--ease);
}
.project-card:hover { background: var(--dark); }
.project-card:nth-child(even) { direction: rtl; }
.project-card:nth-child(even) > * { direction: ltr; }
.project-img {
    position: relative;
    overflow: hidden;
    min-height: 320px;
    aspect-ratio: 16 / 9;
}
.project-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(17,17,17,0.5) 0%, rgba(17,17,17,0.0) 18%, rgba(17,17,17,0.0) 70%, rgba(17,17,17,0.6) 100%),
        linear-gradient(90deg, rgba(17,17,17,0.45) 0%, rgba(17,17,17,0.0) 20%, rgba(17,17,17,0.0) 80%, rgba(17,17,17,0.45) 100%);
    pointer-events: none;
    z-index: 1;
}
.project-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.85);
}
.project-card:hover .project-img img { transform: scale(1.04); }
.project-short {
    position: relative;
    width: 100%;
    max-width: 280px;
    margin: 24px auto 0;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 9 / 16;
    background: var(--dark);
    cursor: pointer;
}
.project-short video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.85);
}
/* Hide Edge/Chrome PiP and media overlay buttons */
video::-webkit-media-controls-overlay-enclosure,
video::-webkit-media-controls-enclosure,
video::-webkit-media-controls-picture-in-picture-button,
video::-webkit-media-controls-toggle-closed-captions-button {
    display: none !important;
    opacity: 0 !important;
    pointer-events: none !important;
}
.project-short:hover video {
    filter: none;
}
.project-short::after {
    content: '\f04b';
    font-family: 'Outfit', 'Font Awesome 6 Free', sans-serif;
    font-weight: 900;
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    color: rgba(255,255,255,0.8);
    z-index: 2;
    pointer-events: none;
    transition: opacity 0.3s var(--ease);
}
.project-short.playing::after {
    opacity: 0;
}
.project-placeholder {
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
}
.project-placeholder-title {
    font-family: var(--font-body);
    font-size: 1.4rem;
    font-weight: 300;
    color: rgba(255,255,255,0.15);
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
    padding: 20px;
}
.project-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 50px 48px;
    position: relative;
}
.project-highlights {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 16px 20px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(200,152,46,0.15);
}
.project-highlight {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2px;
}
.project-highlight .ph-value {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.5px;
}
.project-highlight .ph-label {
    font-size: 0.6rem;
    font-weight: 400;
    color: var(--gray);
    letter-spacing: 1px;
    text-transform: uppercase;
}
.project-partner-logo {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.project-partner-logo-featured {
    z-index: 3;
}
.project-partner-logo .partner-label {
    font-size: 0.55rem;
    color: var(--gray);
    letter-spacing: 1px;
    text-transform: uppercase;
}
.project-partner-logo a {
    display: inline-block;
    transition: opacity 0.3s ease;
}
.project-partner-logo a:hover {
    opacity: 0.7;
}
.project-partner-logo img {
    height: 28px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1) opacity(0.6);
}
.project-partner-bottom {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
}
.project-partner-bottom .partner-label {
    font-size: 0.55rem;
    color: var(--gray);
    letter-spacing: 1px;
    text-transform: uppercase;
}
.project-partner-bottom a {
    display: inline-block;
    transition: opacity 0.3s ease;
}
.project-partner-bottom a:hover {
    opacity: 0.7;
}
.project-partner-bottom img {
    height: 20px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1) opacity(0.6);
}
.project-partner-logo img.logo-svg-wide {
    height: 36px;
    width: auto;
    filter: none;
}
.project-partner-bottom-right {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.project-partner-bottom-right .partner-label {
    font-size: 0.55rem;
    color: var(--gray);
    letter-spacing: 1px;
    text-transform: uppercase;
}
.project-partner-bottom-right a {
    display: inline-block;
    transition: opacity 0.3s ease;
}
.project-partner-bottom-right a:hover {
    opacity: 0.7;
}
.project-partner-bottom-right img {
    height: 20px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1) opacity(0.6);
}
.partner-inline-logo {
    height: 16px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1) opacity(0.6);
    vertical-align: middle;
    margin-left: 4px;
}
.project-type {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    padding: 6px 14px;
    border: 1px solid rgba(200,152,46,0.3);
    align-self: flex-start;
}
.project-info h3 {
    font-family: var(--font-body);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.4;
}
.project-info p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.55);
    font-weight: 300;
    line-height: 1.8;
}

/* ===== SPOTLIGHT (Yunity Park) ===== */
#spotlight {
    position: relative;
    padding: 0 0 80px;
    background: var(--black);
    scroll-margin-top: 70px;
    min-height: calc(100vh - 70px);
    min-height: calc(var(--vh, 1vh) * 100 - 70px);
    box-sizing: border-box;
}
.spotlight-fullimg {
    position: relative;
    width: 100%;
    min-height: 65vh;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}
.spotlight-fullimg > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.7);
}
.spotlight-fullimg-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(17,17,17,0.4) 0%, rgba(17,17,17,0.0) 25%, rgba(17,17,17,0.0) 35%, rgba(17,17,17,0.65) 65%, rgba(17,17,17,1) 100%),
        linear-gradient(90deg, rgba(17,17,17,0.3) 0%, rgba(17,17,17,0.0) 20%, rgba(17,17,17,0.0) 80%, rgba(17,17,17,0.3) 100%);
    z-index: 1;
}
.spotlight-fullimg-content {
    position: relative;
    z-index: 2;
    padding: 80px 0 60px;
    width: 100%;
}
.spotlight-fullimg-content .tag { display: block; text-align: center; }
.spotlight-fullimg-content h2 {
    font-family: var(--font-body);
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 300;
    color: var(--white);
    line-height: 1.2;
    text-align: center;
}
.spotlight-sub {
    font-size: 0.95rem;
    color: var(--gray-light);
    margin-top: 12px;
    text-align: center;
}
.spotlight-desc {
    max-width: 800px;
    margin: 30px auto 0;
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.85;
    color: var(--off-white);
    text-align: center;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
#spotlight .container { position: relative; z-index: 1; }
.spotlight-layout { max-width: 900px; margin: 0 auto; }
.spotlight-body p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.65);
    text-align: center;
    margin-bottom: 50px;
    line-height: 1.9;
}
.spotlight-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 0;
    scroll-margin-top: 70px;
}
.sp-stat {
    text-align: center;
    padding: 35px 20px;
    border: 1px solid rgba(200,152,46,0.2);
    transition: border-color 0.3s var(--ease);
}
.sp-stat:hover { border-color: var(--gold); }
.sp-num {
    display: block;
    font-family: var(--font-body);
    font-size: 2rem;
    font-weight: 300;
    color: var(--gold);
    margin-bottom: 8px;
}
.sp-label {
    font-size: 0.7rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 2px;
}
blockquote {
    border-left: 2px solid var(--gold);
    padding: 24px 32px;
    margin: 0;
}
blockquote p {
    font-size: 1rem !important;
    font-style: italic;
    color: rgba(255,255,255,0.75) !important;
    text-align: left !important;
    margin-bottom: 16px !important;
    line-height: 1.9;
}
blockquote cite {
    font-size: 0.8rem;
    color: var(--gold);
    font-style: normal;
    letter-spacing: 1px;
}

/* ===== TESTIMONIALS ===== */
#testimonials {
    padding: 60px 0;
    background: var(--black);
    scroll-margin-top: 70px;
    min-height: calc(100vh - 70px);
    min-height: calc(var(--vh, 1vh) * 100 - 70px);
    box-sizing: border-box;
}
#testimonials { overflow: hidden; }
#testimonials .section-heading {
    text-align: center;
    margin-bottom: 8px;
}
#testimonials .tag {
    text-align: center;
    display: block;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}
.testimonial-card {
    background: var(--dark);
    border: 1px solid rgba(200,152,46,0.1);
    border-radius: 4px;
    padding: 28px 28px 24px;
    display: flex;
    flex-direction: column;
    transition: border-color 0.4s var(--ease), transform 0.4s var(--ease);
}
.testimonial-card:hover {
    border-color: rgba(200,152,46,0.3);
    transform: translateY(-4px);
}
.testimonial-logo {
    margin-bottom: 16px;
    height: 40px;
    display: flex;
    align-items: center;
}
.testimonial-logo img {
    height: 45px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1) opacity(0.6);
    transition: filter 0.3s var(--ease);
}
.testimonial-card:hover .testimonial-logo img {
    filter: brightness(0) invert(1) opacity(0.85);
}
.testimonial-text {
    font-size: 0.88rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--gray-light);
    flex: 1;
    margin-bottom: 28px;
}
.testimonial-footer {
    border-top: 1px solid rgba(200,152,46,0.15);
    padding-top: 14px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 12px;
}
.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.testimonial-name {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--white);
}
.testimonial-role {
    font-size: 0.75rem;
    color: var(--gray);
    letter-spacing: 0.5px;
}
.testimonial-project {
    font-size: 0.7rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    text-align: right;
    white-space: nowrap;
}
@media (max-width: 1024px) {
    .testimonials-grid { grid-template-columns: 1fr; gap: 24px; }
}

/* ===== PRESS ===== */
#press {
    padding: 60px 0 100px;
    background: var(--black);
    scroll-margin-top: 70px;
    min-height: calc(100vh - 70px);
    min-height: calc(var(--vh, 1vh) * 100 - 70px);
    box-sizing: border-box;
}
#press .tag {
    display: block;
    text-align: center;
    margin-bottom: 12px;
}
#press .section-title {
    font-family: var(--font-body);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 300;
    color: var(--white);
    text-align: center;
    margin-bottom: 50px;
}
#press .section-title em {
    font-family: var(--font-heading);
    font-style: italic;
    color: var(--gold);
}
.press-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.press-card {
    display: block;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(200,152,46,0.1);
    border-radius: 12px;
    padding: 28px 24px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.press-card:hover {
    background: rgba(200,152,46,0.06);
    border-color: rgba(200,152,46,0.3);
    transform: translateY(-2px);
}
.press-source {
    display: inline-block;
    font-size: 0.6rem;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
}
.press-card h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    color: var(--white);
    line-height: 1.4;
    margin-bottom: 10px;
}
.press-card p {
    font-size: 0.82rem;
    color: var(--gray);
    line-height: 1.6;
    font-weight: 300;
}
@media (max-width: 1024px) {
    .press-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .press-grid { grid-template-columns: 1fr; }
}

/* ===== CONTACT ===== */
#contact {
    padding: 40px 0 30px;
    background: var(--dark);
    scroll-margin-top: 70px;
    box-sizing: border-box;
}
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.contact-left h2 {
    font-family: var(--font-body);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 300;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.25;
}
.contact-intro {
    font-size: 0.92rem;
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.7;
}
.contact-details { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.contact-line {
    display: flex; align-items: center; gap: 16px;
    padding: 14px 18px;
    border: 1px solid rgba(255,255,255,0.06);
    transition: border-color 0.3s var(--ease);
}
.contact-line:hover { border-color: rgba(200,152,46,0.3); }
.contact-line i { color: var(--gold); font-size: 0.9rem; width: 20px; text-align: center; }
.contact-line span { font-size: 0.88rem; color: rgba(255,255,255,0.7); }
.social-links { display: flex; gap: 12px; }
.social-links a,
.social-links span[role="button"] {
    width: 44px; height: 44px;
    border: 1px solid rgba(255,255,255,0.12);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    transition: all 0.3s var(--ease);
}
.social-links a:hover,
.social-links span[role="button"]:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
}
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 15px 18px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 300;
    border: 1px solid rgba(255,255,255,0.1);
    background: transparent;
    color: var(--white);
    outline: none;
    transition: border-color 0.3s var(--ease);
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color: var(--gray); }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--gold); }
.contact-form textarea { resize: vertical; }
.contact-form .btn { align-self: flex-start; margin-top: 4px; }

/* GDPR Consent */
.gdpr-consent {
    display: inline;
    font-size: 0.75rem;
    color: var(--gray);
    cursor: pointer;
    line-height: 1.6;
}
.gdpr-consent span {
    display: inline;
}
.gdpr-consent input[type="checkbox"] {
    accent-color: var(--gold);
    width: 14px;
    height: 14px;
    cursor: pointer;
    vertical-align: middle;
    margin-left: 6px;
    position: relative;
    top: -1px;
}
.gdpr-consent a {
    color: var(--gold);
    text-decoration: underline;
}
.gdpr-consent a:hover {
    color: var(--white);
}
.gdpr-wa {
    font-size: 0.65rem;
    padding: 0 12px;
    margin-bottom: 4px;
    display: block;
}

/* ===== FOOTER ===== */
footer {
    padding: 30px 0;
    background: var(--black);
    border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.footer-partners {
    text-align: center;
    width: 100%;
}
.footer-partners-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 24px;
}
.footer-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px 50px;
}
.footer-logos a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 140px;
}
.footer-logos img {
    max-height: 35px;
    max-width: 130px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(1) invert(1) contrast(2);
    mix-blend-mode: screen;
    opacity: 0.5;
    transition: opacity 0.3s var(--ease);
}
.footer-logos a:hover img {
    opacity: 0.8;
}
.footer-logo-text {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    text-decoration: none;
    transition: color 0.3s var(--ease);
    white-space: nowrap;
}
.footer-logo-text:hover {
    color: var(--gold);
}
.footer-copy { font-size: 0.72rem; color: rgba(255,255,255,0.3); }
.footer-legal { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; margin-top: 8px; }
.footer-legal a { font-size: 0.65rem; color: rgba(255,255,255,0.25); text-decoration: none; letter-spacing: 0.5px; transition: color 0.3s ease; }
.footer-legal a:hover { color: var(--gold); }

/* ===== COPY PROTECTION ===== */
body {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
}
img, video {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
    pointer-events: auto;
}
/* Ensure buttons and links remain clickable despite copy protection */
button, a, .nav-toggle, .nav-links a, .btn, .cookie-btn, .whatsapp-btn, #waToggle {
    -webkit-user-select: none;
    pointer-events: auto !important;
    touch-action: manipulation;
}
/* Screenshot protection — opacity hide instead of GPU-heavy blur */
body.blur-protect {
    opacity: 0 !important;
    transition: opacity 0.1s ease;
}

/* ===== COOKIE CONSENT BANNER ===== */
.cookie-banner {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 99999;
    background: rgba(17,17,17,0.98);
    border-top: 1px solid rgba(200,152,46,0.2);
    padding: 18px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    transform: translateY(100%);
    transition: transform 0.5s ease;
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner.hidden { transform: translateY(100%); }
.cookie-text {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
    max-width: 700px;
}
.cookie-text a { color: var(--gold); text-decoration: underline; text-underline-offset: 2px; }
.cookie-text a:hover { color: var(--gold-light); }
.cookie-buttons { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-btn {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 1px;
    padding: 8px 22px;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.cookie-btn-accept {
    background: var(--gold);
    color: var(--black);
}
.cookie-btn-accept:hover { background: var(--gold-light); }
.cookie-btn-decline {
    background: transparent;
    color: rgba(255,255,255,0.4);
    border: 1px solid rgba(255,255,255,0.15);
}
.cookie-btn-decline:hover { color: var(--white); border-color: rgba(255,255,255,0.3); }

/* ===== WHATSAPP CHAT WIDGET ===== */
.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
    transform: translateY(-18px);
}
.lang-btn {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    cursor: pointer;
    transition: color 0.3s ease;
}
.lang-btn:hover {
    color: var(--gold);
}
.bg-sound-btn {
    background: none;
    border: none;
    color: rgba(255,255,255,0.45);
    font-size: 0.85rem;
    cursor: pointer;
    padding: 4px;
    transition: color 0.3s ease;
    line-height: 1;
}
.bg-sound-btn:hover {
    color: var(--gold);
}
.whatsapp-btn {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 9999;
    width: 56px;
    height: 56px;
    background: rgba(30,30,30,0.9);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    font-size: 1.7rem;
    transition: all 0.3s var(--ease);
    cursor: pointer;
}
.whatsapp-btn:hover {
    transform: scale(1.1);
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(200,152,46,0.08);
}
.wa-chat {
    position: fixed;
    bottom: 100px;
    right: 32px;
    z-index: 9998;
    width: 360px;
    max-height: 480px;
    background: var(--dark);
    border: 1px solid rgba(200,152,46,0.15);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 12px 40px rgba(0,0,0,0.5);
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    pointer-events: none;
    transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}
.wa-chat.open {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}
.wa-chat-header {
    background: var(--dark2);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(200,152,46,0.1);
}
.wa-chat-header-info {
    display: flex;
    align-items: center;
    gap: 12px;
}
.wa-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: contain;
}
.wa-chat-name {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 1px;
}
.wa-chat-status {
    display: block;
    font-size: 0.65rem;
    color: var(--gray);
}
.wa-chat-close {
    background: none;
    border: none;
    color: var(--gray);
    font-size: 1.4rem;
    cursor: pointer;
    transition: color 0.3s;
    line-height: 1;
}
.wa-chat-close:hover { color: var(--white); }
.wa-chat-body {
    padding: 20px;
    flex: 1;
    overflow-y: auto;
}
.wa-bubble {
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 10px;
    max-width: 90%;
}
.wa-bubble-in {
    background: var(--dark3);
    color: var(--off-white);
    border-bottom-left-radius: 4px;
}
.wa-bubble-out {
    background: rgba(200,152,46,0.15);
    color: var(--white);
    border-bottom-right-radius: 4px;
    margin-left: auto;
}
.wa-chat-form {
    padding: 12px 16px 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.wa-chat-form input {
    background: var(--dark3);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    padding: 10px 14px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.82rem;
    outline: none;
    transition: border-color 0.3s;
}
.wa-chat-form input::placeholder { color: var(--gray); }
.wa-chat-form input:focus { border-color: rgba(200,152,46,0.3); }
.wa-chat-input-row {
    display: flex;
    gap: 8px;
}
.wa-chat-input-row input { flex: 1; }
.wa-chat-input-row button {
    background: var(--gold);
    border: none;
    border-radius: 8px;
    width: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    font-size: 0.9rem;
    cursor: pointer;
    transition: background 0.3s;
}
.wa-chat-input-row button:hover { background: var(--gold-light); }
.wa-chat-sent { padding: 20px; }
@media (max-width: 480px) {
    .wa-chat {
        right: 12px;
        left: 12px;
        bottom: 96px;
        width: auto;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(25px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
    50% { opacity: 0.5; transform: translateX(-50%) translateY(8px); }
}
.reveal {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .project-card { grid-template-columns: 1fr; }
    .project-card:nth-child(even) { direction: ltr; }
    .project-img { min-height: 220px; aspect-ratio: 4 / 3; /* fallback for no aspect-ratio */ }
    @supports not (aspect-ratio: 4 / 3) { .project-img { height: 280px; } }
    /* Logos flow below text on cards instead of overlapping */
    /* Logos on top, project data below on mobile */
    .project-card .project-info {
        display: flex;
        flex-direction: column;
    }
    .project-card .project-info .project-partner-logo {
        position: relative !important;
        top: auto !important;
        right: auto !important;
        justify-content: flex-start;
        order: -2;
        margin-top: 0;
        margin-bottom: 14px;
        padding-bottom: 14px;
        padding-top: 0;
        border-top: none;
        border-bottom: 1px solid rgba(200,152,46,0.1);
    }
    .project-card .project-info .project-partner-logo img { height: 24px; }
    .project-card .project-info .project-partner-bottom-right {
        position: relative !important;
        bottom: auto !important;
        right: auto !important;
        order: -1;
        margin-top: 0;
        margin-bottom: 14px;
        padding-bottom: 14px;
        padding-top: 0;
        border-top: none;
        border-bottom: 1px solid rgba(200,152,46,0.1);
    }
    .project-partner-logo-featured {
        top: 10px; right: 10px;
    }
    .project-partner-logo-featured img { height: 20px; }
    .project-featured-content { flex-direction: column !important; gap: 30px; padding: 40px 24px; }
    .project-featured-sidebyside { flex-direction: column !important; }
    .project-featured-sidebyside.pf-reverse { flex-direction: column !important; }
    .pf-col-video .project-short { max-width: 100%; }
    .pf-col-video { flex-shrink: 1; width: 100%; }
    .pf-col-video .project-short { max-width: 360px; margin: 0 auto; }
    .project-featured-videos-row { flex-direction: row; flex-wrap: wrap; }
    .project-featured-videos-row .video-with-source,
    .project-featured-videos-row .project-short-landscape { flex: 1 1 200px; min-width: 0; }
    .project-featured { min-height: auto; }
    .project-featured-overlay { background: linear-gradient(180deg, rgba(17,17,17,0.4) 0%, rgba(17,17,17,0.85) 50%, rgba(17,17,17,0.95) 100%); }
    .project-featured-text h3 { font-size: 1.5rem; }
    .project-featured-video .project-short { max-width: 200px; }
    .nav-links {
        display: none; position: absolute;
        top: 100%; left: 0; width: 100%;
        background: rgba(17,17,17,0.97);
        flex-direction: column;
        padding: 30px 24px; gap: 20px;
    }
    .nav-links.open {
        display: flex;
    }
    .nav-toggle { display: flex; }
    .nav-right { gap: 16px; }
    .lang-btn { font-size: 0.65rem; }
    /* Hero fits mobile screen without scrolling */
    .hero-content {
        padding: 20px 24px;
        padding-bottom: 80px;
    }
    #hero h1 { font-size: 2.8rem; margin-bottom: 4px; }
    .hero-partners { font-size: 1rem; letter-spacing: 2px; margin-bottom: 4px; }
    .hero-partners span { font-size: 1.1rem; }
    .hero-divider { margin-bottom: 10px; }
    .hero-tagline { font-size: 0.85rem; margin-bottom: 12px; }
    .hero-scroll { bottom: 14px; }
}
@media (max-width: 768px) {
    .container { padding: 0 24px; }
    .stats-bar { flex-direction: column; gap: 30px; padding: 40px 24px; }
    .stat-divider { width: 50px; height: 1px; }
    .about-layout { grid-template-columns: 1fr; gap: 0; overflow: hidden; }
    .about-right { order: -1; }
    /* Full-height person image — mobile layout */
    #about { min-height: auto; padding: 0 0 60px; }
    #about > .container { padding: 0; }
    .about-right-full {
        order: -1;
        position: relative;
        margin: 0;
        height: 55vh;
        height: calc(var(--vh, 1vh) * 55);
    }
    .about-right-full .about-person-full {
        object-position: center 10%;
    }
    .about-right-fade {
        background:
            linear-gradient(to bottom, transparent 50%, var(--black) 100%),
            rgba(17,17,17,0.15);
    }
    .about-creds-overlay {
        bottom: 15px;
        left: 10px;
        right: 10px;
    }
    .about-creds-overlay .cred-item { padding: 8px 10px; }
    .about-creds-overlay .cred-logo { height: 28px; }
    .about-creds-overlay .cred-item strong { font-size: 0.78rem; }
    .about-creds-overlay .cred-item span { font-size: 0.68rem; }
    .about-left { padding: 30px 24px 20px; }
    .project-info { padding: 30px 24px; }
    .project-partner-logo-featured img { height: 22px; }
    .project-featured-videos-row { flex-direction: column; gap: 12px; }
    .project-featured-videos-row .video-with-source,
    .project-featured-videos-row .project-short-landscape { flex: 1 1 100%; max-width: 100%; }
    .pf-col-video .project-short { max-width: 280px; }
    /* Expand button visible only on mobile */
    .short-expand-btn { display: flex; }
    .project-featured-sidebyside { gap: 20px; }
    .hero-sound-btn { bottom: 24px; left: 24px; }
    .spotlight-stats { grid-template-columns: 1fr; }
    .contact-layout { grid-template-columns: 1fr; gap: 50px; }
    .form-row { grid-template-columns: 1fr; }
    .footer-inner { flex-direction: column; text-align: center; }
    .sectors-row { flex-direction: column; align-items: flex-start; }
    /* Mobile services: show 2 cards initially, hide 3rd */
    .services-grid:not(.services-grid-hidden) > .service-card:nth-child(n+3) {
        display: none;
    }
    /* When mobile-paged, both grids are visible and card visibility is JS-controlled */
    .services-wrapper.mobile-paged .services-grid-hidden {
        display: flex !important;
        opacity: 1 !important;
    }
    .services-wrapper.mobile-paged .services-grid.first-hidden {
        display: flex !important;
        opacity: 1 !important;
    }
    /* Mobile: sibling card collapses to title button when a card is expanded */
    .service-card.mobile-collapsed {
        padding: 0 !important;
        min-height: auto !important;
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;
        background: transparent !important;
    }
    .service-card.mobile-collapsed > .service-num,
    .service-card.mobile-collapsed > h3,
    .service-card.mobile-collapsed > p,
    .service-card.mobile-collapsed > .service-expand-content,
    .service-card.mobile-collapsed > .service-actions {
        display: none !important;
    }
    .mobile-collapsed-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 20px 0;
        color: var(--gold);
        font-size: 0.75rem;
        font-weight: 500;
        letter-spacing: 2px;
        text-transform: uppercase;
        width: 100%;
    }
    .mobile-collapsed-btn i {
        font-size: 0.7rem;
    }
}
@media (max-width: 480px) {
    #hero h1 { font-size: 2.5rem; }
    .about-left h2, .services-hero h2, .section-intro h2, .spotlight-header h2, .contact-left h2, #press .section-title { font-size: 1.8rem; }
}

/* ===== LIGHTBOX GALLERY ===== */
.lightbox-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}
.lightbox-overlay.active { display: flex; }
.lightbox-img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 4px;
    transition: opacity 0.3s ease;
}
.lightbox-close {
    position: absolute;
    top: 20px; right: 30px;
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
    z-index: 10000;
    background: none;
    border: none;
    opacity: 0.7;
    transition: opacity 0.3s;
}
.lightbox-close:hover { opacity: 1; }
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    background: rgba(255,255,255,0.1);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
    transition: opacity 0.3s, background 0.3s;
}
.lightbox-nav:hover { opacity: 1; background: rgba(255,255,255,0.2); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    font-family: var(--font-body);
}
.project-img { cursor: pointer; }
.project-card .project-img::after {
    content: 'See More  \f00e';
    font-family: 'Outfit', 'Font Awesome 6 Free', sans-serif;
    font-weight: 900;
    position: absolute;
    bottom: 12px;
    right: 12px;
    color: rgba(255,255,255,0.6);
    font-size: 1.2rem;
    opacity: 0;
    transition: opacity 0.3s;
}
.project-img { position: relative; }





.cred-logo[alt="RICS"] {
    filter: none;
}

/* Apple-style gallery indicator on project images */
.gallery-indicator {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 8px 16px;
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 5;
    cursor: pointer;
}

.gallery-indicator {
    opacity: 1;
}
.gallery-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
}
.gallery-dot:first-child {
    width: 18px;
    border-radius: 4px;
    background: rgba(255,255,255,0.9);
}
.gallery-play {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 4px;
}
.gallery-play::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 8px solid rgba(255,255,255,0.9);
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    margin-left: 2px;
}

/* Ensure gallery indicator clicks pass through to lightbox */
.gallery-indicator {
    pointer-events: none !important;
}
.gallery-indicator * {
    pointer-events: none !important;
}

/* Inline carousel - override lightbox */
.lightbox-overlay { display: none !important; }
.gallery-indicator {
    pointer-events: auto !important;
    cursor: pointer;
}
.gallery-indicator * {
    pointer-events: auto !important;
}
.project-img {
    cursor: default;
}
.project-img img {
    
}

/* Gallery dots always visible on mobile */
@media (max-width: 1024px) {
    .gallery-indicator {
        opacity: 1 !important;
        bottom: 12px !important;
        padding: 10px 20px !important;
        background: rgba(0,0,0,0.6) !important;
    }
    .gallery-dot {
        width: 10px !important;
        height: 10px !important;
    }
    .gallery-dot:first-child {
        width: 24px !important;
    }
}

/* Fix testimonials on mobile - allow text wrap */
@media (max-width: 768px) {
    .testimonial-project {
        white-space: normal !important;
        text-align: left !important;
        font-size: 0.65rem !important;
    }
    .testimonial-footer {
        flex-direction: column !important;
        gap: 8px !important;
    }
    .testimonials-grid {
        grid-template-columns: 1fr !important;
    }
}

/* Fix project cards on tablet - stack vertically */
@media (max-width: 1200px) {
    .project-card {
        grid-template-columns: 1fr !important;
    }
    .project-img {
        height: 300px !important;
    }
}

/* Force testimonial project name to wrap on all screens */
.testimonial-project {
    white-space: normal !important;
    word-break: break-word !important;
    font-size: 0.65rem !important;
}
.testimonial-footer {
    flex-wrap: wrap !important;
    gap: 6px !important;
}
.testimonial-card {
    overflow: hidden !important;
}



/* Credential logos - transparent on dark bg */
.cred-logo {
    filter: brightness(0) invert(1) !important;
    background: transparent !important;
    padding: 0 !important;
    border-radius: 0 !important;
    max-height: 45px !important;
    width: auto !important;
    object-fit: contain !important;
    opacity: 0.85;
}
.cred-logo[alt*="Bucure"] {
    max-height: 32px !important;
}

/* ===== PORTOFOLIU SECTOR PUBLIC — buton card servicii ===== */
.btn-portfolio {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
    padding: 12px 22px;
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
    border-radius: 2px;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.35s var(--ease);
}
.btn-portfolio i { font-size: 0.7rem; transition: transform 0.3s var(--ease); }
.btn-portfolio:hover {
    background: var(--gold);
    color: var(--black);
}
.btn-portfolio:hover i { transform: translateX(4px); }

/* ===== PORTOFOLIU MODAL ===== */
.pp-modal {
    position: fixed;
    top: 0; right: 0; bottom: 0; left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.35s var(--ease), visibility 0s linear 0.35s;
    -webkit-overflow-scrolling: touch;
}
.pp-modal.is-open {
    visibility: visible;
    opacity: 1;
    transition: opacity 0.35s var(--ease);
}
.pp-modal-overlay {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background: rgba(8,8,10,0.92);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}
@supports not ((backdrop-filter: blur(10px)) or (-webkit-backdrop-filter: blur(10px))) {
    .pp-modal-overlay { background: rgba(8,8,10,0.97); }
}
.pp-modal-content {
    position: absolute;
    top: 5vh; right: 5vw; bottom: 5vh; left: 5vw;
    background: linear-gradient(180deg, #0d0d0f 0%, #111114 100%);
    border: 1px solid rgba(200,152,46,0.25);
    border-radius: 4px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.6);
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
    transition: -webkit-transform 0.45s var(--ease), transform 0.45s var(--ease);
}
.pp-modal.is-open .pp-modal-content {
    -webkit-transform: translateY(0);
    transform: translateY(0);
}
.pp-modal-close {
    position: absolute;
    top: 18px; right: 22px;
    width: 38px; height: 38px;
    background: transparent;
    color: rgba(255,255,255,0.7);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    z-index: 10;
}
.pp-modal-close:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
}
.pp-modal-header {
    padding: 50px 60px 30px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    flex-shrink: 0;
}
.pp-modal-header h2 {
    margin: 12px 0 8px;
    font-family: var(--font-display);
    font-size: 2.6rem;
    font-weight: 400;
    color: var(--white);
    line-height: 1.1;
}
.pp-modal-header h2 em {
    font-style: italic;
    color: var(--gold);
}
.pp-modal-sub {
    margin: 0;
    color: rgba(255,255,255,0.55);
    font-size: 0.88rem;
    letter-spacing: 0.5px;
}
.pp-modal-body {
    padding: 30px 60px 50px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    scrollbar-width: thin;
    scrollbar-color: rgba(200,152,46,0.4) transparent;
}
.pp-modal-body::-webkit-scrollbar { width: 6px; }
.pp-modal-body::-webkit-scrollbar-thumb { background: rgba(200,152,46,0.4); border-radius: 3px; }
.pp-cat {
    margin-bottom: 36px;
}
.pp-cat-title {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 0 0 14px;
    padding-bottom: 10px;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    border-bottom: 1px solid rgba(200,152,46,0.18);
}
.pp-cat-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 22px;
    padding: 0 8px;
    background: rgba(200,152,46,0.12);
    color: var(--gold);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0;
    border-radius: 11px;
}
.pp-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.pp-list li {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    transition: background 0.2s var(--ease);
}
.pp-list li:hover {
    background: rgba(200,152,46,0.03);
}
.pp-name {
    flex: 1;
    color: rgba(255,255,255,0.86);
    font-size: 0.88rem;
    line-height: 1.45;
}
.pp-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 3px;
    flex-shrink: 0;
    min-width: 160px;
    text-align: right;
}
.pp-cn {
    font-family: var(--font-body);
    font-size: 0.66rem;
    font-weight: 400;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
}
.pp-val {
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--gold);
    white-space: nowrap;
}

/* Mobile */
@media (max-width: 768px) {
    .pp-modal-content { top: 0; right: 0; bottom: 0; left: 0; border-radius: 0; border: none; }
    .pp-modal-header { padding: 40px 24px 20px; }
    .pp-modal-header h2 { font-size: 1.8rem; }
    .pp-modal-body { padding: 20px 24px 40px; }
    .pp-list li {
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
    }
    .pp-meta {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        min-width: 0;
        text-align: left;
    }
    .pp-name { font-size: 0.85rem; }
}
