@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,500;0,600;0,700;1,500;1,600&family=Lora:ital,wght@0,400;0,500;0,600;1,400&family=Geist:wght@400;500;600;700&display=swap');

:root {
  --bg: #0a0a0a;
  --bg-alt: #121212;
  --card: #161616;
  --card-border: #272727;
  --red: #d81e2c;
  --red-dark: #8f0f1a;
  --red-light: #ff4552;
  --white: #f5f5f5;
  --gray: #a3a3a3;
  --gray-dim: #6f6f6f;
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 18px;
  --shadow: 0 20px 50px -20px rgba(0,0,0,0.6);
  --shadow-red: 0 16px 40px -14px rgba(216,30,44,0.45);
  --container: 1200px;
  --font-head: 'Playfair Display', 'Georgia', serif;
  --font-body: 'Lora', 'Georgia', serif;
  --font-ui: 'Geist', system-ui, -apple-system, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.12;
  text-wrap: balance;
}

.eyebrow {
  color: var(--red);
  font-family: var(--font-ui);
  font-weight: 600;
  letter-spacing: 3px;
  font-size: 0.78rem;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: '';
  width: 26px; height: 2px;
  background: var(--red);
  display: inline-block;
}

.section { padding: 110px 0; position: relative; }
.section-alt { background: var(--bg-alt); }
.section-head { max-width: 640px; margin: 0 0 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head.center .eyebrow::before { display: none; }
.section-head h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); }
.text-red { color: var(--red); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-ui);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.85rem;
  padding: 16px 32px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(.4,0,.2,1);
}
.btn-primary { background: var(--red); color: #fff; box-shadow: var(--shadow-red); }
.btn-primary:hover { background: var(--red-light); transform: translateY(-3px); box-shadow: 0 20px 44px -14px rgba(216,30,44,0.6); }
.btn-outline { border-color: rgba(245,245,245,0.35); color: var(--white); }
.btn-outline:hover { border-color: var(--red); color: var(--red); }
.btn-sm { padding: 11px 22px; font-size: 0.78rem; }

/* Top utility bar */
.top-bar {
  background: #000;
  border-bottom: 1px solid var(--card-border);
  font-size: 0.78rem;
  color: var(--gray-dim);
  padding: 9px 0;
}
.top-bar .container { display: flex; justify-content: flex-end; align-items: center; flex-wrap: wrap; gap: 28px; }
.top-bar strong { color: var(--gray); font-weight: 500; }
.top-bar a:hover { color: var(--red-light); }
.top-bar-links { display: flex; gap: 22px; flex-wrap: wrap; }
.top-bar-item { display: flex; align-items: center; gap: 8px; font-family: var(--font-ui); font-weight: 400; }
.top-bar-item svg { width: 14px; height: 14px; stroke: var(--red); fill: none; stroke-width: 1.8; flex-shrink: 0; }

/* Header */
.site-header {
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  background: rgba(8,8,8,0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, padding 0.25s ease, border-color .25s ease;
}
.site-header.scrolled {
  background: rgba(6,6,6,0.97);
  padding: 12px 0;
  border-color: var(--card-border);
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 20px; }

.brand { display: flex; align-items: center; gap: 12px; }
.brand-badge {
  width: 48px; height: 52px;
  clip-path: polygon(50% 0%, 100% 20%, 100% 75%, 50% 100%, 0% 75%, 0% 20%);
  background: linear-gradient(160deg, var(--red), var(--red-dark));
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.brand-badge svg { width: 27px; height: 27px; fill: #fff; }
.brand-logo-img { height: 54px; width: auto; display: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text .g1 { font-family: var(--font-head); font-weight: 700; font-size: 1.25rem; letter-spacing: 1px; color: #fff; }
.brand-text .g2 { font-family: 'Georgia', serif; font-style: italic; font-size: 0.85rem; color: var(--red-light); }

.main-nav { display: flex; align-items: center; gap: 36px; }
.main-nav ul { display: flex; gap: 20px; }
.main-nav a {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--gray);
  transition: color .2s ease;
  position: relative;
  white-space: nowrap;
}
.main-nav a:hover, .main-nav a.active { color: #fff; }
.main-nav a.active::after { content: ''; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px; background: var(--red); }

.header-actions { display: flex; align-items: center; gap: 14px; }
.lang-switch { display: flex; gap: 4px; border: 1px solid var(--card-border); border-radius: 999px; overflow: hidden; padding: 3px; }
.lang-switch a { padding: 6px 12px; border-radius: 999px; font-family: var(--font-ui); font-size: 0.75rem; letter-spacing: 1px; color: var(--gray); }
.lang-switch a.current { background: var(--red); color: #fff; }
.header-phone { display: flex; align-items: center; gap: 10px; font-family: var(--font-ui); letter-spacing: 0.5px; }
.header-phone svg { width: 18px; height: 18px; stroke: var(--red); fill: none; stroke-width: 2; }
.header-cta { white-space: nowrap; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 24px; height: 2px; background: #fff; }

/* Hero */
.hero {
  position: relative;
  padding: 90px 0 0;
  background: var(--bg-alt);
  overflow: hidden;
}
.hero-video-wrap { position: absolute; inset: 0; z-index: 0; background: #050403 url('../images/hero-bg.png') center 65% / cover; }
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 65%; }
@media (prefers-reduced-motion: reduce) {
  .hero-video { display: none; }
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(100deg, rgba(5,4,4,0.94) 0%, rgba(10,6,6,0.88) 32%, rgba(20,4,4,0.55) 60%, rgba(20,4,4,0.35) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.25) 55%, var(--bg-alt) 100%);
}
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 60px; align-items: center; padding-bottom: 90px; }
.hero h1 { font-size: clamp(2.5rem, 4.6vw, 3.9rem); margin-bottom: 22px; }
.hero h1 span { color: var(--red); display: block; }
.hero p.lead { font-size: 1.12rem; color: var(--gray); max-width: 520px; margin-bottom: 34px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 44px; }
.hero-stats { display: flex; gap: 36px; flex-wrap: wrap; }
.hero-stats div { display: flex; flex-direction: column; }
.hero-stats .n { font-family: var(--font-head); font-size: 1.7rem; color: #fff; font-weight: 700; }
.hero-stats .l { font-size: 0.78rem; color: var(--gray-dim); text-transform: uppercase; letter-spacing: 0.8px; }

.hero-visual { position: relative; height: 520px; }
.hero-photo {
  position: absolute;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-lg);
  border: 1px solid var(--card-border);
  background: linear-gradient(150deg, #1c1c1c, #0c0c0c 65%);
  box-shadow: var(--shadow);
  overflow: hidden;
  background-size: cover;
  background-position: center;
}
.hero-photo::after {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(135deg, rgba(255,255,255,0.035) 0 2px, transparent 2px 34px);
}
.hero-photo svg { width: 30%; height: 30%; stroke: rgba(216,30,44,0.4); fill: none; stroke-width: 1; position: relative; z-index: 1; }
.hero-photo.p1 { width: 78%; height: 78%; top: 0; right: 0; background-image: var(--hero-img-1, none); }
.hero-photo.p2 { width: 55%; height: 46%; bottom: 0; left: 0; border: 1px solid var(--red); background-image: var(--hero-img-2, none); }
.hero-badge {
  position: absolute;
  bottom: 22px; right: -14px;
  background: var(--red);
  color: #fff;
  padding: 18px 22px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-red);
  font-family: var(--font-head);
  text-align: center;
  line-height: 1.15;
  z-index: 3;
}
.hero-badge .n { font-size: 1.7rem; font-weight: 700; display: block; }
.hero-badge .l { font-size: 0.65rem; letter-spacing: 1px; text-transform: uppercase; opacity: .9; }

/* Trust strip */
.trust-strip { border-top: 1px solid var(--card-border); border-bottom: 1px solid var(--card-border); padding: 0; }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.trust-item { display: flex; align-items: center; gap: 18px; padding: 36px 28px; border-left: 1px solid var(--card-border); transition: background .2s ease; }
.trust-item:first-child { border-left: none; }
.trust-item:hover { background: var(--card); }
.trust-icon { width: 46px; height: 46px; border-radius: 50%; background: rgba(216,30,44,0.12); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.trust-icon svg { width: 22px; height: 22px; stroke: var(--red); fill: none; stroke-width: 1.7; }
.trust-item h4 { font-family: var(--font-head); font-size: 0.95rem; letter-spacing: 0.5px; margin-bottom: 4px; }
.trust-item p { color: var(--gray-dim); font-size: 0.85rem; }

/* Who we serve */
.serve-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.serve-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--card-border);
  background: var(--card);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.serve-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--red); }
.serve-media {
  height: 190px;
  background: linear-gradient(150deg, #1e1e1e, #0a0a0a 70%);
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.serve-media::after { content: ''; position: absolute; inset: 0; background-image: repeating-linear-gradient(115deg, rgba(255,255,255,0.03) 0 2px, transparent 2px 40px); }
.serve-media svg { width: 54px; height: 54px; stroke: var(--red); fill: none; stroke-width: 1.3; position: relative; z-index: 1; }
.serve-body { padding: 28px 26px 32px; }
.serve-body span.tag { color: var(--red); font-family: var(--font-ui); font-size: 0.75rem; letter-spacing: 2px; text-transform: uppercase; }
.serve-body h3 { font-size: 1.3rem; margin: 8px 0 12px; }
.serve-body p { color: var(--gray); font-size: 0.95rem; }

/* Service cards */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card { background: var(--card); border: 1px solid var(--card-border); border-radius: var(--radius-lg); padding: 34px 28px; transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease; position: relative; }
.service-card:hover { border-color: var(--red); transform: translateY(-4px); box-shadow: var(--shadow); }
.service-index { position: absolute; top: 26px; right: 28px; font-family: var(--font-ui); font-size: 0.85rem; color: var(--gray-dim); }
.service-icon { width: 58px; height: 58px; border: 1px solid var(--red); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; margin-bottom: 24px; }
.service-icon svg { width: 28px; height: 28px; stroke: #fff; fill: none; stroke-width: 1.6; }
.service-card h3 { color: var(--red); font-size: 1.15rem; margin-bottom: 10px; }
.service-card p { color: var(--gray); font-size: 0.95rem; }

/* Team gallery */
.team-gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }
.team-gallery figure {
  position: relative;
  margin: 0;
  z-index: 1;
}
.team-gallery figure::before {
  content: '';
  position: absolute;
  top: 18px; left: 18px;
  right: -18px; bottom: -18px;
  z-index: -1;
  border: 2px solid var(--red);
  border-radius: var(--radius-lg);
  transition: transform .3s ease;
}
.team-gallery figure .photo-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow);
  transition: transform .3s ease, border-color .3s ease;
}
.team-gallery figure:hover .photo-frame { transform: translate(-8px, -8px); border-color: var(--red); }
.team-gallery figure:hover::before { transform: translate(8px, 8px); }
.team-gallery img { width: 100%; display: block; }

/* Full service list */
.service-list-panel { background: var(--card); border: 1px solid var(--card-border); border-radius: var(--radius-lg); padding: 12px 44px; }
.service-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 44px; }
.service-list li { display: flex; align-items: flex-start; gap: 14px; padding: 20px 0; border-bottom: 1px solid var(--card-border); font-size: 1rem; }
.service-list li:nth-last-child(-n+2) { border-bottom: none; }
.service-list li svg { width: 20px; height: 20px; stroke: var(--red); fill: none; stroke-width: 2; flex-shrink: 0; margin-top: 3px; }

/* About / stats */
.about-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 74px; align-items: center; }
.about-grid p { color: var(--gray); margin-bottom: 18px; }
.stat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.stat-box { background: var(--bg); border: 1px solid var(--card-border); padding: 30px 24px; border-radius: var(--radius-lg); transition: border-color .2s ease, transform .2s ease; }
.stat-box:hover { border-color: var(--red); transform: translateY(-4px); }
.stat-box .num { font-family: var(--font-head); font-size: 2.4rem; color: #fff; font-weight: 700; display: block; }
.stat-box .label { color: var(--gray-dim); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.5px; }

/* Careers */
.career-card { background: var(--card); border: 1px solid var(--card-border); border-radius: var(--radius-lg); overflow: hidden; }
.career-head { padding: 40px 44px; border-bottom: 1px solid var(--card-border); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.career-head .tag { display: inline-block; font-family: var(--font-ui); font-size: 0.75rem; letter-spacing: 2px; text-transform: uppercase; color: var(--red); margin-bottom: 8px; }
.career-head h3 { font-size: 1.6rem; }
.career-body { padding: 40px 44px; display: grid; grid-template-columns: 1fr 1fr; gap: 44px; }
.career-col h4 { font-family: var(--font-ui); font-size: 0.85rem; letter-spacing: 1px; text-transform: uppercase; color: var(--gray-dim); margin-bottom: 18px; }
.career-list { display: flex; flex-direction: column; }
.career-list li { display: flex; align-items: flex-start; gap: 12px; padding: 13px 0; border-bottom: 1px solid var(--card-border); font-size: 0.95rem; color: var(--gray); }
.career-list li:last-child { border-bottom: none; }
.career-list li svg { width: 18px; height: 18px; stroke: var(--red); fill: none; stroke-width: 2; flex-shrink: 0; margin-top: 3px; }
.career-note { padding: 26px 44px; border-top: 1px solid var(--card-border); font-style: italic; color: var(--gray-dim); font-size: 0.88rem; }
.career-foot { padding: 32px 44px; border-top: 1px solid var(--card-border); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; background: var(--bg); }
.career-foot p { color: var(--gray); font-size: 0.95rem; max-width: 480px; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 50px; }
.contact-card { background: var(--card); border: 1px solid var(--card-border); border-radius: var(--radius-lg); padding: 44px; }
.contact-row { display: flex; gap: 18px; padding: 20px 0; border-bottom: 1px solid var(--card-border); }
.contact-row:last-child { border-bottom: none; }
.contact-row .ic { width: 42px; height: 42px; border-radius: 50%; background: rgba(216,30,44,0.12); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-row .ic svg { width: 20px; height: 20px; stroke: var(--red); fill: none; stroke-width: 1.7; }
.contact-row h4 { font-family: var(--font-ui); font-size: 0.8rem; letter-spacing: 1px; text-transform: uppercase; color: var(--gray-dim); margin-bottom: 4px; }
.contact-row a, .contact-row span { color: #fff; font-size: 1rem; }
.contact-row a:hover { color: var(--red); }

.map-frame { border: 1px solid var(--card-border); border-radius: var(--radius-lg); overflow: hidden; min-height: 420px; }
.map-frame iframe { width: 100%; height: 100%; min-height: 420px; border: 0; filter: saturate(0.35) brightness(0.85) contrast(1.05); }

/* Footer */
.site-footer { background: #000; border-top: 1px solid var(--card-border); padding: 60px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 0.7fr 1fr; gap: 40px; padding-bottom: 40px; }
.footer-grid p { color: var(--gray-dim); font-size: 0.9rem; max-width: 320px; margin-top: 14px; }
.footer-col h5 { font-family: var(--font-ui); font-size: 0.8rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gray-dim); margin-bottom: 18px; }
.footer-nav { display: flex; flex-direction: column; gap: 12px; }
.footer-nav a { color: var(--gray); font-size: 0.92rem; }
.footer-nav a:hover { color: var(--red); }
.footer-bottom { border-top: 1px solid var(--card-border); padding-top: 22px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; color: var(--gray-dim); font-size: 0.8rem; }

/* Floating call button (mobile) */
.call-fab { display: none; position: fixed; bottom: 20px; right: 20px; z-index: 90; width: 56px; height: 56px; border-radius: 50%; background: var(--red); align-items: center; justify-content: center; box-shadow: var(--shadow-red); }
.call-fab svg { width: 24px; height: 24px; stroke: #fff; fill: none; stroke-width: 2; }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* Responsive */
@media (max-width: 1300px) {
  .header-cta { display: none; }
}

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { height: 380px; margin-top: 40px; }
  .services-grid, .serve-grid { grid-template-columns: repeat(2, 1fr); }
  .team-gallery { grid-template-columns: 1fr; }
  .about-grid, .contact-grid, .career-body { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { border-left: none; border-top: 1px solid var(--card-border); }
  .trust-item:first-child { border-top: none; }
  .service-list { grid-template-columns: 1fr; }
  .service-list li:nth-last-child(-n+2) { border-bottom: 1px solid var(--card-border); }
  .service-list li:last-child { border-bottom: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .top-bar .hide-mobile { display: none; }
  .top-bar .container { gap: 16px; }
  .header-phone { display: none; }
  .main-nav { position: fixed; top: 0; right: -100%; height: 100vh; width: 78%; max-width: 320px; background: #0a0a0a; border-left: 1px solid var(--card-border); flex-direction: column; align-items: flex-start; justify-content: flex-start; padding: 100px 30px 30px; gap: 40px; transition: right .3s ease; }
  .main-nav.open { right: 0; }
  .main-nav ul { flex-direction: column; gap: 22px; }
  .nav-toggle { display: flex; }
  .services-grid, .serve-grid { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .section { padding: 72px 0; }
  .service-list-panel { padding: 6px 26px; }
  .career-head, .career-body, .career-note, .career-foot { padding-left: 26px; padding-right: 26px; }
  .footer-grid { grid-template-columns: 1fr; }
  .call-fab { display: flex; }
  .hero-video-wrap { background-position: 22% 60%; }
  .hero-video { object-position: 22% 60%; }
}
