@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --navy: #0d1f33;
  --navy2: #162d47;
  --slate: #2c4a66;
  --gold: #b8922a;
  --gold-light: #d4a843;
  --cream: #f8f6f1;
  --white: #ffffff;
  --text: #1a2533;
  --muted: #5a6b7d;
  --border: #dde3ea;
  --shadow-sm: 0 1px 4px rgba(13,31,51,.06);
  --shadow-md: 0 8px 32px rgba(13,31,51,.10);
  --shadow-lg: 0 24px 60px rgba(13,31,51,.14);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

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

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.15;
  color: var(--navy);
}

h1 { font-size: clamp(38px, 5.5vw, 68px); font-weight: 600; }
h2 { font-size: clamp(28px, 3.5vw, 44px); font-weight: 600; }
h3 { font-size: 20px; font-weight: 600; }
p  { color: var(--muted); font-size: 16.5px; line-height: 1.75; }

.eyebrow {
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 12px;
}

/* ── LAYOUT ── */
.container { width: min(1140px, 92%); margin: 0 auto; }

.section { padding: 96px 0; }
.section--cream { background: var(--cream); }
.section--navy  { background: var(--navy); }

/* ── TOPBAR ── */
.topbar {
  background: var(--navy);
  color: #a8b9cc;
  font-size: 13px;
  font-family: 'Inter', sans-serif;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  gap: 16px;
}
.topbar a {
  color: #d4b96a;
  font-weight: 600;
  letter-spacing: .01em;
  transition: color .2s;
}
.topbar a:hover { color: var(--gold-light); }

/* ── NAVBAR ── */
.navbar {
  position: sticky;
  top: 0;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 100;
}
.nav-inner {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -.01em;
}
.brand span { color: var(--gold); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 14px;
  font-weight: 500;
}
.nav-links a {
  color: var(--slate);
  transition: color .2s;
  letter-spacing: .02em;
}
.nav-links a:hover { color: var(--gold); }
.menu-btn {
  display: none;
  background: none;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  padding: 8px 11px;
  font-size: 18px;
  cursor: pointer;
  color: var(--navy);
}

/* ── BUTTON ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--gold);
  color: var(--navy);
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  border-radius: 3px;
  padding: 14px 28px;
  border: 2px solid var(--gold);
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
}
.btn:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}
.btn.outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn.outline:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn.small { padding: 10px 20px; font-size: 12.5px; }
.btn.dark {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn.dark:hover {
  background: var(--navy2);
  border-color: var(--navy2);
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: center;
  background: var(--navy);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(13,31,51,.98) 0%, rgba(22,45,71,.85) 100%);
}
.hero-accent {
  position: absolute;
  top: -120px;
  right: -60px;
  width: 580px;
  height: 580px;
  background: radial-gradient(circle, rgba(184,146,42,.12) 0%, transparent 65%);
  pointer-events: none;
}
.hero-rule {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 4px;
  width: 100%;
  background: linear-gradient(90deg, var(--gold) 0%, transparent 60%);
}
.hero-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  max-width: 740px;
  padding: 80px 0;
}
.hero-content h1 {
  color: var(--white);
  margin-bottom: 22px;
  letter-spacing: -.02em;
}
.hero-content p {
  font-size: 18px;
  color: rgba(220,232,245,.8);
  max-width: 600px;
  margin-bottom: 38px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── INTRO SECTION ── */
.intro-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 72px;
  align-items: center;
}
.intro-grid h2 { margin-bottom: 18px; }
.intro-grid p + p { margin-top: 14px; }

.stats-block {
  display: grid;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}
.stat-item {
  padding: 28px 32px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 20px;
}
.stat-item:last-child { border-bottom: none; }
.stat-item::before {
  content: '';
  width: 4px;
  height: 48px;
  background: var(--gold);
  flex-shrink: 0;
  border-radius: 2px;
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.stat-label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--muted);
  margin-top: 4px;
}

/* ── SERVICES GRID ── */
.section-head { margin-bottom: 54px; }
.section-head h2 { margin-top: 8px; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}
.service-card {
  background: var(--white);
  padding: 36px 30px;
  transition: background .2s;
}
.service-card:hover { background: var(--cream); }
.service-card-icon {
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 22px;
}
.service-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--navy);
}
.service-card p {
  font-size: 15px;
  color: var(--muted);
}

/* ── CTA BAND ── */
.cta-band {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.cta-band::after {
  content: '';
  position: absolute;
  right: -80px;
  top: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 1px solid rgba(184,146,42,.15);
  pointer-events: none;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.cta-inner h2 { color: var(--white); font-size: clamp(24px, 3vw, 36px); }
.cta-inner p  { color: rgba(220,232,245,.7); margin-top: 6px; }

/* ── GREEN / FACILITIES ── */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.feature-block h2 { margin-bottom: 16px; }
.feature-block p + p { margin-top: 12px; }

.facilities-list h3 {
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-family: 'Inter', sans-serif;
  color: var(--muted);
  margin-bottom: 20px;
}
.facilities-list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15.5px;
  color: var(--text);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 12px;
}
.facilities-list li::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.facilities-list li:last-child { border-bottom: none; }

/* ── PAGE HERO ── */
.page-hero {
  background: var(--navy);
  color: var(--white);
  padding: 80px 0 72px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold) 0%, transparent 50%);
}
.page-hero h1 { color: var(--white); max-width: 820px; }

/* ── ABOUT PAGE ── */
.content-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  max-width: 860px;
}
.content-layout h2 {
  font-size: 30px;
  margin-bottom: 14px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.content-layout h2:first-child { border-top: none; padding-top: 0; }

.clients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  margin: 24px 0 48px;
}
.client-card {
  background: var(--white);
  padding: 30px 28px;
}
.client-card h3 { font-size: 17px; margin-bottom: 8px; }
.client-card p  { font-size: 14.5px; }

.green-list {
  margin-top: 16px;
  display: grid;
  gap: 12px;
}
.green-list li {
  padding: 14px 18px;
  background: var(--cream);
  border-left: 3px solid var(--gold);
  border-radius: 0 3px 3px 0;
  font-size: 15px;
  color: var(--text);
}

/* ── SERVICES PAGE ── */
.service-list-grid {
  display: grid;
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}
.service-article {
  background: var(--white);
  padding: 40px 44px;
}
.service-article h2 {
  font-size: 24px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.service-article ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 24px;
  margin-top: 6px;
}
.service-article ul li {
  font-size: 15px;
  color: var(--text);
  padding: 6px 0 6px 16px;
  position: relative;
}
.service-article ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}
.service-article p { font-size: 15.5px; }

.certs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px 24px;
}

/* ── CONTACT PAGE ── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 56px;
  align-items: start;
}
.contact-info h2 { font-size: 26px; margin-bottom: 28px; }
.contact-info-group { margin-bottom: 24px; }
.contact-info-group strong {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--muted);
  margin-bottom: 5px;
}
.contact-info-group p,
.contact-info-group a {
  font-size: 16px;
  color: var(--text);
  line-height: 1.55;
}
.contact-info-group a:hover { color: var(--gold); }

/* ── FORM ── */
.form { display: grid; gap: 14px; }
.form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form .form-row-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 14px; }

input, textarea, select {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 13px 16px;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
input::placeholder, textarea::placeholder { color: #9aabb9; }
input:focus, textarea:focus, select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,146,42,.12);
}
textarea { min-height: 120px; resize: vertical; }
label {
  font-size: 13px;
  font-weight: 600;
  color: var(--slate);
  letter-spacing: .02em;
}

/* ── CAREERS PAGE ── */
.application-form {
  max-width: 860px;
  margin: 0 auto;
}
.form-section {
  border-top: 1px solid var(--border);
  padding-top: 32px;
  margin-top: 32px;
}
.form-section:first-child { border-top: none; margin-top: 0; padding-top: 0; }
.form-section-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 22px;
}
.form-note {
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
}
.field-group { display: grid; gap: 6px; }

/* ── FOOTER ── */
.footer {
  background: #07182b;
  color: #8fa5bc;
  padding: 64px 0 0;
  border-top: 1px solid rgba(255,255,255,.05);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1.2fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer h3 {
  font-size: 17px;
  color: var(--white);
  margin-bottom: 14px;
}
.footer h4 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: #5a7a9a;
  margin-bottom: 16px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
}
.footer p, .footer a { font-size: 14.5px; line-height: 1.7; }
.footer a { display: block; margin-bottom: 8px; color: #8fa5bc; transition: color .2s; }
.footer a:hover { color: var(--gold-light); }
.footer-brand p { font-size: 14px; margin-top: 10px; max-width: 280px; line-height: 1.7; }
.copyright {
  text-align: center;
  padding: 20px;
  font-size: 13px;
  color: #4a6a88;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .topbar-inner { flex-direction: column; align-items: flex-start; gap: 4px; }
  .menu-btn { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    left: 0; right: 0;
    top: 80px;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 5%;
    gap: 16px;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 16px 32px rgba(0,0,0,.08);
  }
  .nav-links.open { display: flex; }
  .intro-grid,
  .feature-grid,
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .services-grid { grid-template-columns: 1fr; }
  .clients-grid { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .form .form-row,
  .form .form-row-3 { grid-template-columns: 1fr; }
  .service-article ul { grid-template-columns: 1fr; }
  .certs-grid { grid-template-columns: 1fr 1fr; }
  .hero-content { padding: 60px 0; }
}

/* ── SCROLL CINEMA HOME ── */
.scroll-home { background:#050b12; }
.topbar-overlay { position: fixed; top:0; left:0; width:100%; z-index:300; background: rgba(3,10,18,.62); backdrop-filter: blur(12px); }
.navbar-overlay { position: fixed; top:38px; left:0; width:100%; z-index:299; background: rgba(4,13,24,.50); border-bottom:1px solid rgba(255,255,255,.08); backdrop-filter: blur(16px); }
.navbar-overlay .nav-links a { color: rgba(255,255,255,.82); }
.navbar-overlay .nav-links a:hover { color: var(--gold-light); }
.brand-light { color:#fff; }
.scroll-cinema { height: 680vh; position: relative; background:#02060b; }
.scroll-stage { position: sticky; top:0; height:100vh; overflow:hidden; display:grid; place-items:center; background:#02060b; }
#heroCanvas{
position:fixed;
top:0;
left:0;
width:100vw;
height:100vh;
object-fit:cover;
z-index:-2;
}
.cinema-vignette { position:absolute; inset:0; background: radial-gradient(circle at center, rgba(0,0,0,.05), rgba(0,0,0,.62) 72%), linear-gradient(90deg, rgba(1,7,15,.72), transparent 52%, rgba(1,7,15,.35)); pointer-events:none; }
.cinema-copy { position:relative; z-index:2; width:min(1120px, 90%); padding-top:84px; color:#fff; transition: transform .15s linear; will-change: transform; }
.cinema-copy.is-hidden { opacity:0; transform: translateY(-24px); pointer-events:none; }
.hero-logo { width:min(260px, 54vw); margin-bottom:24px; filter: drop-shadow(0 0 30px rgba(40,160,255,.28)); }
.cinema-copy h1 { color:#fff; font-size:clamp(46px, 8vw, 104px); letter-spacing:-.045em; line-height:.95; max-width:880px; }
.cinema-text { color:rgba(225,238,255,.78); font-size:clamp(17px, 2vw, 22px); max-width:660px; margin-top:28px; }
.scroll-indicator { margin-top:36px; display:inline-flex; align-items:center; gap:10px; color:#9fc6ff; text-transform:uppercase; font-size:12px; letter-spacing:.18em; font-weight:700; }
.scroll-indicator::before { content:''; width:42px; height:1px; background:#2da8ff; box-shadow:0 0 14px #2da8ff; }
.content-after-cinema { background:#fff; position:relative; z-index:5; }
.smart-intro { background:linear-gradient(180deg, #07182b 0%, #ffffff 0%); }
.smart-panel { border:1px solid rgba(45,168,255,.22); background: radial-gradient(circle at top left, rgba(45,168,255,.16), transparent 45%), #07182b; color:#fff; padding:42px; border-radius:18px; box-shadow: 0 30px 80px rgba(7,24,43,.22); }
.smart-panel h3 { color:#fff; font-size:28px; margin-bottom:18px; }
.smart-panel li { color:rgba(230,242,255,.86); padding:14px 0; border-bottom:1px solid rgba(255,255,255,.1); display:flex; gap:12px; align-items:center; }
.smart-panel li::before { content:''; width:9px; height:9px; border-radius:50%; background:#2da8ff; box-shadow:0 0 18px #2da8ff; flex:0 0 auto; }
.pulse-dot { width:58px; height:58px; border-radius:50%; background:#2da8ff; box-shadow:0 0 24px #2da8ff, 0 0 80px rgba(45,168,255,.65); margin-bottom:28px; animation:pulseDot 2s infinite; }
@keyframes pulseDot { 0%,100%{ transform:scale(1); opacity:.85;} 50%{ transform:scale(1.13); opacity:1;} }
.smart-services .service-card { min-height:260px; }
.metrics-band { background:#061321; color:#fff; padding:86px 0; overflow:hidden; }
.metrics-grid { display:grid; grid-template-columns: repeat(3, 1fr); gap:28px; text-align:center; }
.metrics-grid strong { display:block; font-family:'Playfair Display', serif; font-size:clamp(48px, 7vw, 92px); line-height:1; color:#fff; }
.metrics-grid span { display:block; margin-top:12px; color:#92abc5; text-transform:uppercase; letter-spacing:.14em; font-size:12px; font-weight:700; }
.reveal-section { opacity:0; transform: translateY(42px); transition: opacity .8s ease, transform .8s ease; }
.reveal-section.visible { opacity:1; transform: translateY(0); }
@media (max-width: 768px) {
  .navbar-overlay { top:62px; }
  .navbar-overlay .nav-links { background:#07182b; }
  .scroll-cinema { height:560vh; }
  .cinema-copy { padding-top:130px; }
  .metrics-grid { grid-template-columns:1fr; }
  .smart-panel { padding:30px; }
}
