/* RS GROUP HOLDING – STYLESHEET */
:root {
  --black: #0e0e0e;
  --white: #ffffff;
  --off-white: #f8f7f5;
  --light-grey: #f2f1ef;
  --mid-grey: #999;
  --dark-grey: #333;
  --gold: #c9952a;
  --gold-light: #e8c04a;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Jost', sans-serif;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-sans); font-weight: 300; color: var(--black); background: var(--white); line-height: 1.7; font-size: 16px; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
.container { max-width: 1140px; margin: 0 auto; padding: 0 32px; }

/* NAVBAR */
.navbar { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,0.97); border-bottom: 1px solid #e8e6e2; backdrop-filter: blur(8px); }
.nav-inner { max-width: 1140px; margin: 0 auto; padding: 0 32px; display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-brand { font-family: var(--font-sans); font-size: 13px; font-weight: 500; letter-spacing: 3px; color: var(--black); }
.nav-links { display: flex; gap: 40px; }
.nav-links a { font-size: 13px; font-weight: 400; letter-spacing: 1.5px; text-transform: uppercase; color: var(--dark-grey); transition: color 0.2s; position: relative; padding-bottom: 2px; }
.nav-links a::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 1px; background: var(--gold); transition: width 0.3s; }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active, .nav-links a:hover { color: var(--black); }
.hamburger { display: none; background: none; border: none; font-size: 22px; cursor: pointer; color: var(--black); }
.nav-mobile { display: none; flex-direction: column; background: var(--white); border-top: 1px solid #eee; padding: 16px 32px; gap: 16px; }
.nav-mobile a { font-size: 14px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--dark-grey); }
.nav-mobile.open { display: flex; }

/* BUTTONS */
.btn-primary { display: inline-block; padding: 14px 36px; background: var(--black); color: var(--white); font-family: var(--font-sans); font-size: 12px; font-weight: 500; letter-spacing: 2.5px; text-transform: uppercase; transition: background 0.2s, color 0.2s; }
.btn-primary:hover { background: var(--gold); color: var(--black); }
.btn-outline { display: inline-block; padding: 13px 35px; border: 1px solid var(--black); color: var(--black); font-family: var(--font-sans); font-size: 12px; font-weight: 500; letter-spacing: 2.5px; text-transform: uppercase; transition: background 0.2s, color 0.2s; }
.btn-outline:hover { background: var(--black); color: var(--white); }
.full-width { width: 100%; text-align: center; }

/* SECTION LABELS */
.section-label { display: block; font-size: 11px; font-weight: 500; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }

/* HERO */
.hero { min-height: calc(100vh - 72px); display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 60px; padding: 80px 32px; max-width: 1140px; margin: 0 auto; }
.hero-eyebrow { font-size: 12px; letter-spacing: 3px; text-transform: uppercase; color: var(--mid-grey); margin-bottom: 24px; }
.hero-title { font-family: var(--font-serif); font-size: clamp(48px, 6vw, 80px); font-weight: 300; line-height: 1.1; margin-bottom: 28px; color: var(--black); }
.hero-title em { font-style: italic; color: var(--gold); }
.hero-sub { font-size: 16px; color: var(--dark-grey); max-width: 420px; margin-bottom: 40px; line-height: 1.8; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-emblem { display: flex; justify-content: center; align-items: center; animation: float 6s ease-in-out infinite; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.divider-line { height: 1px; background: linear-gradient(90deg, transparent, #ddd 20%, #ddd 80%, transparent); margin: 0 32px; }

/* WHO WE ARE */
.section-who { padding: 100px 0; background: var(--white); }
.who-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.who-text h2 { font-family: var(--font-serif); font-size: clamp(32px, 4vw, 52px); font-weight: 300; line-height: 1.2; margin-bottom: 24px; }
.who-text p { color: var(--dark-grey); margin-bottom: 36px; font-size: 16px; line-height: 1.8; }
.who-stats { display: flex; flex-direction: column; gap: 0; border-left: 1px solid #e0ddd8; padding-left: 60px; }
.stat-box { padding: 32px 0; border-bottom: 1px solid #e0ddd8; }
.stat-box:first-child { padding-top: 0; }
.stat-box:last-child { border-bottom: none; }
.stat-num { display: block; font-family: var(--font-serif); font-size: 56px; font-weight: 300; color: var(--black); line-height: 1; margin-bottom: 6px; }
.stat-label { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--mid-grey); }

/* INVESTMENT AREAS (HOME) */
.section-invest { padding: 100px 0; background: var(--off-white); }
.section-invest h2 { font-family: var(--font-serif); font-size: clamp(32px, 4vw, 52px); font-weight: 300; margin-bottom: 56px; }
.invest-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 2px; margin-bottom: 48px; }
.invest-card { background: var(--white); padding: 36px 24px; transition: transform 0.2s, box-shadow 0.2s; }
.invest-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.08); z-index: 1; }
.invest-icon { font-size: 28px; display: block; margin-bottom: 16px; }
.invest-card h3 { font-family: var(--font-serif); font-size: 19px; font-weight: 600; margin-bottom: 10px; }
.invest-card p { font-size: 13px; color: var(--dark-grey); line-height: 1.7; }
.invest-cta { text-align: center; }

/* WHY US */
.section-why { padding: 100px 0; background: var(--white); }
.section-why h2 { font-family: var(--font-serif); font-size: clamp(32px, 4vw, 52px); font-weight: 300; margin-bottom: 56px; }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 60px; }
.why-num { font-family: var(--font-serif); font-size: 56px; font-weight: 300; color: var(--light-grey); line-height: 1; margin-bottom: 20px; }
.why-item h3 { font-family: var(--font-serif); font-size: 24px; font-weight: 600; margin-bottom: 12px; }
.why-item p { font-size: 15px; color: var(--dark-grey); line-height: 1.8; }

/* CTA BANNER */
.section-cta { padding: 100px 0; background: var(--black); text-align: center; }
.section-cta h2 { font-family: var(--font-serif); font-size: clamp(32px, 5vw, 60px); font-weight: 300; color: var(--white); margin-bottom: 16px; }
.section-cta p { color: rgba(255,255,255,0.6); font-size: 16px; margin-bottom: 40px; max-width: 500px; margin-left: auto; margin-right: auto; }
.section-cta .btn-primary { background: var(--gold); color: var(--black); }
.section-cta .btn-primary:hover { background: var(--gold-light); }

/* PAGE HERO */
.page-hero { padding: 100px 0 80px; border-bottom: 1px solid #e8e6e2; }
.page-hero h1 { font-family: var(--font-serif); font-size: clamp(48px, 6vw, 80px); font-weight: 300; line-height: 1.1; margin-bottom: 24px; }
.page-hero h1 em { font-style: italic; color: var(--gold); }
.page-hero-sub { font-size: 17px; color: var(--dark-grey); max-width: 540px; line-height: 1.8; }

/* ABOUT STORY */
.section-story { padding: 100px 0; }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.story-text h2 { font-family: var(--font-serif); font-size: clamp(28px, 3vw, 44px); font-weight: 300; margin-bottom: 24px; }
.story-text p { color: var(--dark-grey); font-size: 16px; line-height: 1.8; margin-bottom: 20px; }
.aside-box { padding: 32px; background: var(--off-white); margin-bottom: 24px; }
.aside-box:last-child { margin-bottom: 0; }
.aside-box h3 { font-family: var(--font-serif); font-size: 22px; font-weight: 600; margin-bottom: 12px; }
.aside-box p { font-size: 15px; color: var(--dark-grey); line-height: 1.8; }

/* VALUES */
.section-values { padding: 100px 0; background: var(--off-white); }
.section-values h2 { font-family: var(--font-serif); font-size: clamp(28px, 3vw, 44px); font-weight: 300; margin-bottom: 56px; }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }
.value-card { background: var(--white); padding: 40px 28px; }
.value-icon { font-size: 32px; margin-bottom: 16px; }
.value-card h3 { font-family: var(--font-serif); font-size: 22px; font-weight: 600; margin-bottom: 10px; }
.value-card p { font-size: 14px; color: var(--dark-grey); line-height: 1.7; }

/* INVESTMENT DETAIL */
.section-invest-detail { padding: 80px 0; }
.invest-detail-item { display: grid; grid-template-columns: 80px 1fr; gap: 48px; padding: 64px 0; border-bottom: 1px solid #e8e6e2; align-items: start; }
.invest-detail-item:last-child { border-bottom: none; }
.invest-detail-num { font-family: var(--font-serif); font-size: 64px; font-weight: 300; color: #e0ddd8; line-height: 1; padding-top: 8px; }
.invest-icon-lg { font-size: 36px; display: block; margin-bottom: 16px; }
.invest-detail-content h2 { font-family: var(--font-serif); font-size: clamp(28px, 3vw, 40px); font-weight: 300; margin-bottom: 16px; }
.invest-detail-content p { color: var(--dark-grey); font-size: 16px; line-height: 1.8; margin-bottom: 24px; max-width: 640px; }
.invest-detail-content ul { display: flex; flex-direction: column; gap: 10px; }
.invest-detail-content ul li { font-size: 14px; color: var(--dark-grey); padding-left: 20px; position: relative; }
.invest-detail-content ul li::before { content: '—'; position: absolute; left: 0; color: var(--gold); }

/* CONTACT */
.section-contact { padding: 80px 0 100px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; }
.contact-info h2, .contact-form-wrap h2 { font-family: var(--font-serif); font-size: 36px; font-weight: 300; margin-bottom: 36px; }
.contact-item { display: flex; gap: 16px; margin-bottom: 28px; align-items: flex-start; }
.contact-icon { font-size: 20px; margin-top: 2px; }
.contact-item strong { display: block; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--mid-grey); margin-bottom: 4px; font-weight: 500; }
.contact-item p { font-size: 16px; color: var(--dark-grey); }
.contact-note { margin-top: 36px; padding: 20px 24px; background: var(--off-white); font-size: 13px; color: var(--mid-grey); line-height: 1.7; border-left: 2px solid var(--gold); }
.form-group { margin-bottom: 24px; }
.form-group label { display: block; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; font-weight: 500; margin-bottom: 8px; color: var(--dark-grey); }
.optional { color: var(--mid-grey); font-style: italic; text-transform: none; letter-spacing: 0; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 14px 16px; border: 1px solid #ddd; background: var(--white); font-family: var(--font-sans); font-size: 15px; color: var(--black); outline: none; transition: border-color 0.2s; appearance: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--black); }
.form-group textarea { resize: vertical; }

/* FOOTER */
.footer { background: var(--black); color: rgba(255,255,255,0.7); }
.footer-inner { padding: 60px 32px; display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; }
.footer-brand strong { display: block; font-size: 13px; letter-spacing: 2px; text-transform: uppercase; color: var(--white); margin-bottom: 10px; }
.footer-brand p { font-size: 14px; line-height: 1.8; }
.footer-links { display: flex; gap: 32px; flex-wrap: wrap; }
.footer-links a { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 32px; text-align: center; font-size: 12px; color: rgba(255,255,255,0.3); }

/* RESPONSIVE */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: block; }
  .hero { grid-template-columns: 1fr; min-height: auto; padding: 60px 24px; text-align: center; }
  .hero-sub { margin: 0 auto 40px; }
  .hero-cta { justify-content: center; }
  .hero-emblem { display: none; }
  .who-grid, .story-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .who-stats { border-left: none; padding-left: 0; border-top: 1px solid #e0ddd8; padding-top: 40px; }
  .invest-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .invest-detail-item { grid-template-columns: 1fr; gap: 16px; }
  .invest-detail-num { font-size: 40px; }
  .footer-inner { flex-direction: column; }
}
@media (max-width: 580px) {
  .invest-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; align-items: center; }
}

/* LEADERSHIP */
.section-leadership { padding: 100px 0; background: var(--white); }
.section-leadership h2 { font-family: var(--font-serif); font-size: clamp(28px, 3vw, 44px); font-weight: 300; margin-bottom: 56px; }
.leader-card { display: grid; grid-template-columns: 220px 1fr; gap: 56px; align-items: center; background: var(--off-white); padding: 48px; }
.leader-photo { width: 220px; height: 220px; border-radius: 50%; background: linear-gradient(135deg, #1c1c1c, #080808); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.leader-photo::after { content: ''; position: absolute; inset: 6px; border-radius: 50%; border: 1px solid; border-image: linear-gradient(135deg, #f5d97a, #c9952a, #a87020) 1; }
.leader-initials { font-family: var(--font-serif); font-size: 72px; font-weight: 700; background: linear-gradient(135deg, #f5d97a, #c9952a); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; letter-spacing: 2px; }
.leader-info .leader-name { font-family: var(--font-serif); font-size: 34px; font-weight: 600; margin-bottom: 4px; }
.leader-info .leader-role { font-size: 12px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 24px; }
.leader-info p { font-size: 16px; color: var(--dark-grey); line-height: 1.8; margin-bottom: 20px; }
.leader-expertise { display: flex; flex-wrap: wrap; gap: 10px; }
.leader-tag { font-size: 12px; letter-spacing: 1px; text-transform: uppercase; padding: 7px 16px; background: var(--white); border: 1px solid #e0ddd8; color: var(--dark-grey); }
@media (max-width: 900px) {
  .leader-card { grid-template-columns: 1fr; gap: 32px; text-align: center; padding: 40px 28px; }
  .leader-photo { margin: 0 auto; }
  .leader-expertise { justify-content: center; }
}

/* SUCCESS BANNER */
.success-banner { padding: 18px 24px; background: #eef7ee; border-left: 3px solid #2a7a2a; color: #1d5a1d; font-size: 14px; line-height: 1.6; margin-bottom: 28px; }

/* Contact links */
.contact-item a { color: var(--dark-grey); border-bottom: 1px solid var(--gold); transition: color 0.2s; }
.contact-item a:hover { color: var(--gold); }

/* SERVICES PAGE */
.section-services { padding: 100px 0; background: var(--white); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: #e8e6e2; }
.service-card { background: var(--white); padding: 48px 36px; transition: transform 0.2s, box-shadow 0.2s; position: relative; }
.service-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.08); z-index: 1; }
.service-card-icon { width: 56px; height: 56px; display: flex; align-items: center; justify-content: center; margin-bottom: 24px; border-radius: 50%; background: linear-gradient(135deg, #1c1c1c, #080808); position: relative; }
.service-card-icon::after { content: ''; position: absolute; inset: 3px; border-radius: 50%; border: 1px solid; border-image: linear-gradient(135deg, #f5d97a, #c9952a, #a87020) 1; }
.service-card-icon svg { width: 26px; height: 26px; position: relative; z-index: 1; }
.service-card h3 { font-family: var(--font-serif); font-size: 24px; font-weight: 600; margin-bottom: 14px; color: var(--black); }
.service-card p { font-size: 14px; color: var(--dark-grey); line-height: 1.75; }

.section-services-intro { padding: 100px 0 60px; }
.section-services-intro h2 { font-family: var(--font-serif); font-size: clamp(28px, 3vw, 44px); font-weight: 300; margin-bottom: 24px; max-width: 720px; line-height: 1.25; }
.section-services-intro h2 em { font-style: italic; color: var(--gold); }
.section-services-intro p.lead { font-size: 17px; color: var(--dark-grey); max-width: 640px; line-height: 1.8; }

@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 580px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* PROJECTS - MINI SLIDESHOW (About Us) */
.section-projects-preview { padding: 100px 0; background: var(--off-white); }
.section-projects-preview h2 { font-family: var(--font-serif); font-size: clamp(28px, 3vw, 44px); font-weight: 300; margin-bottom: 12px; }
.projects-preview-sub { color: var(--dark-grey); font-size: 16px; margin-bottom: 48px; max-width: 540px; }
.slideshow { position: relative; max-width: 100%; overflow: hidden; background: #000; aspect-ratio: 16/9; }
.slide { position: absolute; inset: 0; opacity: 0; transition: opacity 0.6s ease; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.slide.active { opacity: 1; z-index: 1; }
.slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.slide-placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%); display: flex; align-items: center; justify-content: center; }
.slide-placeholder-text { font-family: var(--font-serif); font-size: 32px; color: rgba(255,255,255,0.15); letter-spacing: 8px; font-weight: 300; }
.slide-overlay { position: absolute; left: 0; right: 0; bottom: 0; padding: 28px 36px; background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0) 100%); color: #fff; opacity: 0; transition: opacity 0.3s ease; z-index: 2; }
.slide:hover .slide-overlay { opacity: 1; }
.slide-overlay-title { font-family: var(--font-serif); font-size: 26px; font-weight: 600; margin-bottom: 4px; }
.slide-overlay-sub { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); }
.slide-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 48px; height: 48px; background: rgba(0,0,0,0.6); color: #fff; border: none; cursor: pointer; z-index: 10; display: flex; align-items: center; justify-content: center; transition: background 0.2s; font-size: 18px; }
.slide-nav:hover { background: var(--gold); color: var(--black); }
.slide-nav.prev { left: 16px; }
.slide-nav.next { right: 16px; }
.slide-dots { position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 10; }
.slide-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.4); cursor: pointer; transition: background 0.2s; border: none; padding: 0; }
.slide-dot.active { background: var(--gold); }
.projects-preview-cta { text-align: center; margin-top: 48px; }

/* PROJECTS GRID (Projects page) */
.section-projects { padding: 80px 0 100px; }
.projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.project-tile { position: relative; aspect-ratio: 4/3; overflow: hidden; cursor: pointer; background: #000; }
.project-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.project-tile:hover img { transform: scale(1.05); }
.project-tile-placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%); display: flex; align-items: center; justify-content: center; transition: transform 0.5s ease; }
.project-tile:hover .project-tile-placeholder { transform: scale(1.05); }
.project-tile-placeholder span { font-family: var(--font-serif); font-size: 38px; color: rgba(255,255,255,0.18); letter-spacing: 4px; font-weight: 300; }
.project-tile-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0) 100%); opacity: 0; transition: opacity 0.3s ease; display: flex; align-items: flex-end; padding: 28px; }
.project-tile:hover .project-tile-overlay { opacity: 1; }
.project-tile-info { color: #fff; }
.project-tile-title { font-family: var(--font-serif); font-size: 22px; font-weight: 600; margin-bottom: 6px; }
.project-tile-sub { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); }

@media (max-width: 900px) {
  .projects-grid { grid-template-columns: 1fr 1fr; }
  .slide-overlay { opacity: 1; }
  .project-tile-overlay { opacity: 1; background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 70%, rgba(0,0,0,0) 100%); }
}
@media (max-width: 580px) {
  .projects-grid { grid-template-columns: 1fr; }
  .slide-nav { width: 40px; height: 40px; }
}

/* LEADER SKILL CARDS */
.leader-cards-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; margin-top: 32px; background: #e8e6e2; }
.leader-skill-card { background: var(--white); padding: 32px 24px; text-align: center; transition: transform 0.2s, box-shadow 0.2s; }
.leader-skill-card:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(0,0,0,0.08); z-index: 1; }
.skill-card-icon { width: 52px; height: 52px; margin: 0 auto 18px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: linear-gradient(135deg, #1c1c1c, #080808); position: relative; }
.skill-card-icon::after { content: ''; position: absolute; inset: 3px; border-radius: 50%; border: 1px solid; border-image: linear-gradient(135deg, #f5d97a, #c9952a, #a87020) 1; }
.skill-card-icon svg { width: 24px; height: 24px; position: relative; z-index: 1; }
.leader-skill-card h3 { font-family: var(--font-serif); font-size: 17px; font-weight: 600; color: var(--black); line-height: 1.3; }

@media (max-width: 900px) { .leader-cards-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 580px) { .leader-cards-grid { grid-template-columns: 1fr; } }

/* PROJECTS PAGE - DARK FULL-WIDTH */
.projects-dark { background: #0e0e0e; color: #fff; padding: 80px 0 100px; }
.projects-dark .page-hero-label { color: #c9952a; }
.project-block { margin-bottom: 100px; }
.project-block:last-child { margin-bottom: 0; }
.project-image { position: relative; width: 100%; aspect-ratio: 16/8; overflow: hidden; background: linear-gradient(135deg, #1c1c1c 0%, #0a0a0a 100%); display: flex; align-items: center; justify-content: center; border: 1px solid rgba(192,192,192,0.12); }
.project-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.project-image-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.7) 100%); display: flex; align-items: flex-end; padding: 48px; }
.project-image-overlay-title { font-family: var(--font-serif); font-size: clamp(28px, 4vw, 48px); font-weight: 300; color: #fff; letter-spacing: 1px; }
.project-image-overlay-title em { font-style: italic; background: linear-gradient(135deg, #e8e8e8, #b0b0b0, #808080); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.project-placeholder-text { font-family: var(--font-serif); font-size: 56px; color: rgba(192,192,192,0.18); letter-spacing: 8px; font-weight: 300; }
.project-info { padding: 36px 48px 0; }
.project-info-meta { display: flex; flex-wrap: wrap; gap: 32px; margin-bottom: 18px; font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: #c9952a; }
.project-info-meta span { display: flex; align-items: center; gap: 8px; }
.project-info h2 { font-family: var(--font-serif); font-size: clamp(26px, 3vw, 40px); font-weight: 300; color: #fff; margin-bottom: 16px; line-height: 1.2; }
.project-info p { font-size: 15px; color: rgba(255,255,255,0.7); line-height: 1.8; max-width: 760px; }

.projects-divider { width: 60px; height: 1px; background: linear-gradient(90deg, transparent, #c0c0c0, transparent); margin: 0 auto 80px; }

@media (max-width: 700px) {
  .project-image-overlay { padding: 24px; }
  .project-info { padding: 28px 24px 0; }
  .project-info-meta { gap: 16px; }
  .project-block { margin-bottom: 60px; }
}

/* PROJECT VIDEO PLACEHOLDER */
.project-video-placeholder { margin-top: 32px; padding: 32px; background: rgba(192,192,192,0.04); border: 1px dashed rgba(192,192,192,0.2); display: flex; align-items: center; gap: 20px; max-width: 360px; }
.video-icon { width: 48px; height: 48px; min-width: 48px; border-radius: 50%; background: rgba(201,149,42,0.1); display: flex; align-items: center; justify-content: center; }
.video-icon svg { width: 22px; height: 22px; }
.video-label { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.5); }

/* PROJECT EXTERNAL LINK */
.project-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 24px; padding: 11px 22px; border: 1px solid rgba(192,192,192,0.4); color: #fff; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; transition: all 0.2s ease; }
.project-link:hover { border-color: #c9952a; color: #c9952a; background: rgba(201,149,42,0.05); }
.project-link svg { transition: transform 0.2s ease; }
.project-link:hover svg { transform: translate(2px, -2px); }

/* PROJECT GALLERY (multiple images per project) */
.project-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px; }
.project-gallery-item { position: relative; aspect-ratio: 4/3; overflow: hidden; border: 1px solid rgba(192,192,192,0.15); margin: 0; }
.project-gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.project-gallery-item:hover img { transform: scale(1.05); }
.project-gallery-item figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 14px 18px; background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 100%); font-size: 12px; letter-spacing: 1px; color: #fff; }
@media (max-width: 700px) {
  .project-gallery { grid-template-columns: 1fr; }
}

/* Technical drawing display - show full drawing without cropping */
.project-image-contain { background: #f4f4f1; aspect-ratio: 16/9; }
.project-image-contain img { object-fit: contain; padding: 24px; }
.project-image-contain .project-image-overlay { background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(0,0,0,0.55) 100%); }
.project-image-contain .project-image-overlay-title { color: #fff; }

/* Image caption under text */
.project-caption { margin-top: 18px; font-size: 12px; letter-spacing: 1px; color: rgba(255,255,255,0.4); font-style: italic; }

/* BIRKELAND ROCKET HERO - the rocket image is very horizontal */
.project-image-birkeland { aspect-ratio: 16/9; background: linear-gradient(135deg, #0a1d3a 0%, #050d1f 100%); padding: 40px 80px; display: flex; align-items: center; justify-content: center; }
.project-image-birkeland img { width: 100%; height: auto; max-height: 100%; object-fit: contain; filter: drop-shadow(0 30px 60px rgba(0,0,0,0.5)); }

/* TECHNICAL REPORT CARD */
.report-card { margin-top: 36px; display: grid; grid-template-columns: 160px 1fr; gap: 28px; padding: 28px; background: linear-gradient(135deg, rgba(192,192,192,0.06), rgba(255,255,255,0.02)); border: 1px solid rgba(192,192,192,0.2); border-radius: 4px; }
.report-card-cover { aspect-ratio: 1/1.414; overflow: hidden; border: 1px solid rgba(192,192,192,0.3); box-shadow: 0 12px 32px rgba(0,0,0,0.6); }
.report-card-cover img { width: 100%; height: 100%; object-fit: cover; display: block; }
.report-card-content { display: flex; flex-direction: column; }
.report-card-label { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: #c9952a; margin-bottom: 8px; }
.report-card-content h3 { font-family: var(--font-serif); font-size: 22px; font-weight: 500; color: #fff; line-height: 1.3; margin-bottom: 14px; }
.report-card-content h3 span { display: block; font-size: 14px; font-weight: 400; color: rgba(255,255,255,0.55); font-style: italic; margin-top: 4px; }
.report-card-content p { font-size: 13px; color: rgba(255,255,255,0.7); line-height: 1.7; margin-bottom: 16px; }
.report-card-meta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 20px; font-size: 11px; letter-spacing: 1px; color: rgba(192,192,192,0.55); text-transform: uppercase; }
.report-card-meta span { padding-right: 14px; border-right: 1px solid rgba(192,192,192,0.15); }
.report-card-meta span:last-child { border-right: none; }
.report-card-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: auto; }
.btn-report-primary, .btn-report-secondary { display: inline-flex; align-items: center; gap: 8px; padding: 11px 22px; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; transition: all 0.2s ease; text-decoration: none; }
.btn-report-primary { background: #c9952a; color: #0e0e0e; border: 1px solid #c9952a; }
.btn-report-primary:hover { background: #f5d97a; border-color: #f5d97a; }
.btn-report-secondary { border: 1px solid rgba(192,192,192,0.4); color: #fff; }
.btn-report-secondary:hover { border-color: #c9952a; color: #c9952a; background: rgba(201,149,42,0.05); }

@media (max-width: 700px) {
  .report-card { grid-template-columns: 1fr; }
  .report-card-cover { max-width: 180px; margin: 0 auto; }
  .project-image-birkeland { padding: 30px 30px; }
}

/* Profile photo inside leader-photo circle */
.leader-photo img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; position: relative; z-index: 1; }
.leader-photo::after { z-index: 2; pointer-events: none; }

/* PROJECT VIDEO CONTAINER */
.project-video-container { margin-top: 32px; position: relative; }
.project-video { width: 100%; max-width: 100%; display: block; background: #000; aspect-ratio: 16/9; border: 1px solid rgba(192,192,192,0.15); }
.project-video-label { margin-top: 12px; display: flex; align-items: center; gap: 8px; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.project-video-label svg { flex-shrink: 0; }

/* Create videos folder placeholder note shown when video missing */
.project-video:not([src]):not(:has(source[src])) { background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%); }

/* Slideshow Birkeland-specific - center the rocket on dark space-like background */
.slide-birkeland { background: linear-gradient(135deg, #0a1d3a 0%, #050d1f 100%); }
.slide-birkeland img { object-fit: contain !important; padding: 40px 60px; filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5)); }

/* LOGO IMAGES (SVG) */
.nav-logo-img { height: 56px; width: auto; display: block; }
.hero-logo-img { width: 100%; max-width: 480px; height: auto; display: block; }
@media (max-width: 700px) {
  .nav-logo-img { height: 44px; }
}
