:root {
  --red:       #D93025;
  --red-dark:  #B02318;
  --dark:      #0D1117;
  --dark-2:    #141B24;
  --dark-3:    #1C2631;
  --mid:       #2A3A4A;
  --text:      #E8E4DC;
  --text-muted:#8A9BAA;
  --white:     #FAF8F4;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Jost', sans-serif; background: var(--dark); color: var(--text); overflow-x: hidden; }

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.85rem 5%;
  background: rgba(13,17,23,0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(217,48,37,0.2);
  transition: all 0.3s;
}
.nav-brand { display: flex; align-items: center; gap: 0.9rem; text-decoration: none; }
.nav-brand img { height: 46px; width: 46px; display: block; object-fit: cover; border-radius: 4px; }
.nav-brand-text { display: flex; flex-direction: column; line-height: 1.2; border-left: 2px solid var(--red); padding-left: 0.9rem; }
.nav-brand-text .line1 { font-family: 'Jost', sans-serif; font-size: 1rem; font-weight: 600; color: #FFFFFF; letter-spacing: 0.06em; text-transform: uppercase; }
.nav-brand-text .line2 { font-family: 'Jost', sans-serif; font-size: 0.58rem; font-weight: 300; color: var(--red); letter-spacing: 0.22em; text-transform: uppercase; margin-top: 2px; }
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a { text-decoration: none; color: var(--text-muted); font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; font-weight: 400; transition: color 0.2s; }
.nav-links a:hover { color: var(--red); }
.nav-cta { background: transparent; border: 1px solid var(--red); color: var(--red); padding: 0.52rem 1.4rem; font-family: 'Jost', sans-serif; font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; cursor: pointer; transition: all 0.25s; text-decoration: none; }
.nav-cta:hover { background: var(--red); color: var(--white); }

/* ─── HERO ─── */
.hero { min-height: 100vh; display: flex; align-items: center; position: relative; overflow: hidden; }
.hero-img {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1486325212027-8081e485255e?w=1800&q=80');
  background-size: cover; background-position: center 30%;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(13,17,23,0.92) 0%, rgba(13,17,23,0.72) 50%, rgba(13,17,23,0.25) 100%);
}
.hero-grid { position: absolute; inset: 0; opacity: 0.03; background-image: linear-gradient(var(--red) 1px, transparent 1px), linear-gradient(90deg, var(--red) 1px, transparent 1px); background-size: 60px 60px; }
.hero-accent { position: absolute; right: 7%; top: 50%; width: 440px; height: 440px; border: 1px solid rgba(217,48,37,0.15); transform: translateY(-50%) rotate(45deg); }
.hero-accent::before { content: ''; position: absolute; inset: 28px; border: 1px solid rgba(217,48,37,0.08); }
.hero-accent::after  { content: ''; position: absolute; inset: 56px; border: 1px solid rgba(217,48,37,0.05); }
.hero-content { position: relative; z-index: 2; padding: 0 5%; max-width: 820px; margin-top: 5rem; animation: fadeUp 1s ease both; }
.hero-tag { display: inline-flex; align-items: center; gap: 0.75rem; margin-bottom: 2rem; }
.hero-tag span { width: 40px; height: 1px; background: var(--red); }
.hero-tag p { font-size: 0.7rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--red); font-weight: 400; }
.hero h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(3.2rem, 7vw, 6rem); font-weight: 300; line-height: 1.05; color: var(--white); margin-bottom: 1.5rem; }
.hero h2 em { font-style: italic; color: var(--red); }
.hero-content > p { font-size: 1rem; font-weight: 300; line-height: 1.8; color: var(--text-muted); max-width: 520px; margin-bottom: 2.8rem; }
.hero-btns { display: flex; gap: 1.2rem; flex-wrap: wrap; }
.btn-primary { background: var(--red); color: var(--white); padding: 0.9rem 2.4rem; font-family: 'Jost', sans-serif; font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 500; border: none; cursor: pointer; text-decoration: none; display: inline-block; transition: all 0.25s; }
.btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--text); padding: 0.9rem 2.4rem; font-family: 'Jost', sans-serif; font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 400; border: 1px solid rgba(232,228,220,0.25); cursor: pointer; text-decoration: none; display: inline-block; transition: all 0.25s; }
.btn-outline:hover { border-color: var(--red); color: var(--red); }
.hero-stats { position: absolute; bottom: 3rem; right: 5%; display: flex; gap: 3rem; z-index: 2; animation: fadeUp 1s 0.4s ease both; }
.stat { text-align: right; }
.stat-num { font-family: 'Cormorant Garamond', serif; font-size: 2.4rem; font-weight: 300; color: var(--red); line-height: 1; }
.stat-label { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted); margin-top: 0.3rem; }

/* ─── SECTIONS ─── */
section { padding: 7rem 5%; }
.section-header { margin-bottom: 4rem; display: flex; align-items: flex-start; gap: 1.5rem; }
.section-line { width: 2px; height: 60px; background: linear-gradient(to bottom, var(--red), transparent); flex-shrink: 0; margin-top: 0.3rem; }
.section-tag { font-size: 0.68rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--red); margin-bottom: 0.8rem; }
.section-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 300; color: var(--white); line-height: 1.2; }
.section-title em { font-style: italic; color: var(--red); }

/* ─── ABOUT ─── */
.about { background: var(--dark-2); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-text p { color: var(--text-muted); line-height: 1.9; font-size: 0.95rem; margin-bottom: 1.5rem; font-weight: 300; }
.about-text p strong { color: var(--text); font-weight: 500; }
.about-cards { display: grid; gap: 1px; }
.about-card { background: var(--dark-3); padding: 2rem 2.2rem; border-left: 2px solid transparent; transition: border-color 0.3s; }
.about-card:hover { border-left-color: var(--red); }
.about-card h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-weight: 400; color: var(--red); margin-bottom: 0.6rem; }
.about-card p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.7; font-weight: 300; }
.bee-badge { margin-top: 2rem; display: inline-flex; align-items: center; gap: 1rem; background: rgba(217,48,37,0.08); border: 1px solid rgba(217,48,37,0.25); padding: 1rem 1.5rem; }
.bee-badge .badge-icon { width: 40px; height: 40px; background: var(--red); display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', serif; font-size: 1rem; font-weight: 600; color: var(--white); flex-shrink: 0; }
.bee-badge div p:first-child { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--red); font-weight: 400; }
.bee-badge div p:last-child { font-size: 0.82rem; color: var(--text-muted); margin-top: 0.15rem; }

/* ─── SERVICES ─── */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--mid); border: 1px solid var(--mid); }
.service-card { background: var(--dark-2); padding: 3rem 2.5rem; transition: background 0.3s; position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--red), transparent); transform: scaleX(0); transition: transform 0.3s; }
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { background: var(--dark-3); }
.service-num { font-family: 'Cormorant Garamond', serif; font-size: 3rem; font-weight: 300; color: rgba(217,48,37,0.12); margin-bottom: 1.5rem; line-height: 1; }
.service-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 400; color: var(--white); margin-bottom: 1rem; line-height: 1.3; }
.service-card p { color: var(--text-muted); font-size: 0.85rem; line-height: 1.8; font-weight: 300; }
.service-list { margin-top: 1.2rem; list-style: none; }
.service-list li { color: var(--text-muted); font-size: 0.82rem; padding: 0.3rem 0; border-bottom: 1px solid rgba(255,255,255,0.04); display: flex; align-items: center; gap: 0.6rem; font-weight: 300; }
.service-list li::before { content: ''; width: 4px; height: 4px; background: var(--red); flex-shrink: 0; transform: rotate(45deg); }

/* ─── DEVELOPMENTS ─── */
.developments { background: var(--dark-2); }
.dev-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; background: rgba(217,48,37,0.12); }
.dev-card { background: var(--dark); position: relative; overflow: hidden; cursor: default; transition: transform 0.3s; display: flex; flex-direction: column; }
.dev-card:hover { transform: scale(1.01); z-index: 2; }
.dev-img-wrap { overflow: hidden; flex-shrink: 0; position: relative; height: 220px; }
.dev-img { width: 100%; height: 100%; object-fit: cover; display: block; filter: brightness(0.72) saturate(0.85); transition: filter 0.4s, transform 0.4s; }
.dev-card:hover .dev-img { filter: brightness(0.85) saturate(1); transform: scale(1.05); }
.dev-img-overlay { position: absolute; bottom: 0; left: 0; right: 0; height: 55%; background: linear-gradient(to top, var(--dark), transparent); }
.dev-body { padding: 2rem 2.5rem 2.6rem; }
.dev-tag-label { display: inline-block; font-size: 0.65rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--red); border: 1px solid rgba(217,48,37,0.3); padding: 0.3rem 0.8rem; margin-bottom: 1.2rem; }
.dev-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.7rem; font-weight: 300; color: var(--white); margin-bottom: 1rem; line-height: 1.2; }
.dev-card p { color: var(--text-muted); font-size: 0.87rem; line-height: 1.85; font-weight: 300; margin-bottom: 1.5rem; }
.dev-items { list-style: none; display: flex; flex-wrap: wrap; gap: 0.6rem; }
.dev-items li { font-size: 0.72rem; color: var(--text-muted); background: rgba(139,115,85,0.07); border: 1px solid rgba(139,115,85,0.18); padding: 0.3rem 0.8rem; letter-spacing: 0.05em; }

/* ─── STRUCTURE ─── */
.structure { background: var(--dark-3); }
.structure-inner { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.struct-box { background: var(--dark-2); border: 1px solid rgba(217,48,37,0.2); padding: 1.5rem 3rem; text-align: center; min-width: 300px; }
.struct-box.primary { background: linear-gradient(135deg, rgba(217,48,37,0.14), rgba(217,48,37,0.04)); border-color: var(--red); }
.struct-box h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 400; color: var(--white); }
.struct-box p { font-size: 0.72rem; color: var(--text-muted); margin-top: 0.3rem; letter-spacing: 0.1em; text-transform: uppercase; }
.struct-connector { width: 2px; height: 30px; background: linear-gradient(to bottom, var(--red), rgba(217,48,37,0.3)); }
.struct-row { display: flex; gap: 2rem; align-items: flex-start; }
.struct-col { display: flex; flex-direction: column; align-items: center; gap: 2px; }

/* ─── CONTACT ─── */
.contact { background: linear-gradient(135deg, var(--dark-2), var(--dark-3)); position: relative; overflow: hidden; }
.contact::before { content: ''; position: absolute; bottom: -100px; right: -100px; width: 400px; height: 400px; border: 1px solid rgba(217,48,37,0.07); transform: rotate(45deg); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.contact-info p { color: var(--text-muted); line-height: 1.9; font-size: 0.95rem; font-weight: 300; margin-bottom: 2rem; }
.contact-persons { display: grid; gap: 1.5rem; }
.person-card { background: var(--dark); border: 1px solid rgba(217,48,37,0.14); padding: 2rem; display: flex; gap: 1.5rem; align-items: center; transition: border-color 0.3s; }
.person-card:hover { border-color: rgba(217,48,37,0.45); }
.person-avatar { width: 56px; height: 56px; background: var(--red); display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; color: var(--white); flex-shrink: 0; font-weight: 600; }
.person-info h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 400; color: var(--white); }
.person-info p { font-size: 0.72rem; color: var(--red); text-transform: uppercase; letter-spacing: 0.15em; margin-top: 0.2rem; }
.person-contacts { margin-top: 0.8rem; }
.person-contacts a { display: block; color: var(--text-muted); font-size: 0.82rem; text-decoration: none; font-weight: 300; transition: color 0.2s; }
.person-contacts a:hover { color: var(--red); }
.form-box { background: var(--dark); border: 1px solid rgba(217,48,37,0.15); padding: 3rem; }
.form-box h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 300; color: var(--white); margin-bottom: 0.5rem; }
.form-box > p { color: var(--text-muted); font-size: 0.82rem; margin-bottom: 2rem; }
.form-grid { display: grid; gap: 1rem; }
.fi { background: var(--dark-2); border: 1px solid rgba(217,48,37,0.18); padding: 0.9rem 1.2rem; color: var(--text); font-family: 'Jost', sans-serif; font-size: 0.88rem; outline: none; width: 100%; transition: border-color 0.2s; }
.fi:focus { border-color: rgba(217,48,37,0.6); }
.fi::placeholder { color: var(--text-muted); }

/* ─── FOOTER ─── */
footer { background: var(--dark); border-top: 1px solid rgba(217,48,37,0.15); padding: 2rem 5%; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-brand { display: flex; align-items: center; gap: 0.9rem; }
.footer-brand img { height: 38px; width: 38px; object-fit: cover; border-radius: 3px; }
.footer-brand span { font-family: 'Jost', sans-serif; font-size: 0.82rem; font-weight: 500; color: #FFFFFF; letter-spacing: 0.1em; text-transform: uppercase; border-left: 2px solid var(--red); padding-left: 0.9rem; }
footer p.copy { font-size: 0.74rem; color: var(--text-muted); font-weight: 300; }
.footer-links { display: flex; gap: 2rem; list-style: none; }
.footer-links a { font-size: 0.7rem; color: var(--text-muted); text-decoration: none; letter-spacing: 0.1em; text-transform: uppercase; transition: color 0.2s; }
.footer-links a:hover { color: var(--red); }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.reveal { opacity: 1; transform: none; transition: opacity 0.7s ease, transform 0.7s ease; }
.js-ready .reveal { opacity: 0; transform: translateY(24px); }
.js-ready .reveal.visible { opacity: 1; transform: none; }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .about-grid, .contact-grid, .dev-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .hero-stats { position: relative; bottom: auto; right: auto; justify-content: flex-start; flex-wrap: wrap; padding: 0 5%; margin-top: 2rem; }
  .hero-accent { display: none; }
  .struct-row { flex-direction: column; align-items: center; }
}
