@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;600;700;900&family=Exo+2:ital,wght@0,300;0,400;0,500;0,600;1,300&family=Saira+Condensed:wght@300;400;500;600&display=swap');

:root {
  --bg:            #07090e;
  --bg-surface:    #0c0f1a;
  --bg-card:       #111625;
  --accent:        #c75d3f;
  --accent-bright: #e06748;
  --accent-glow:   rgba(199,93,63,0.35);
  --cyan:          #1ecbe1;
  --text:          #dce3f5;
  --text-dim:      #5a6480;
  --border:        rgba(199,93,63,0.18);
  --border-bright: rgba(199,93,63,0.55);
  --grid-line:     rgba(199,93,63,0.04);
}

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

html, body { width: 100%; overflow-x: hidden; }

body {
  font-family: 'Exo 2', sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.7;
  background-image:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 60px 60px;
}

body::-webkit-scrollbar { width: 4px; }
body::-webkit-scrollbar-track { background: var(--bg); }
body::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 2px; }

/* ─── HEADER ────────────────────────────── */
header {
  background: rgba(7,9,14,0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  padding: 1.1rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-shadow: 0 0 22px var(--accent-glow);
  text-decoration: none;
}

nav { display: flex; gap: 2.2rem; }

nav a {
  font-family: 'Saira Condensed', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
  padding-bottom: 2px;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width 0.3s;
}

nav a:hover,
nav a.active         { color: var(--accent); }
nav a:hover::after,
nav a.active::after  { width: 100%; }

.hamburger {
  display: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--accent);
  z-index: 10;
  background: none;
  border: 1px solid var(--border);
  width: 40px; height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: border-color 0.2s, background 0.2s;
}

.hamburger:hover { background: var(--border); }

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  position: absolute;
  top: 70px; right: 5%;
  padding: 0.8rem;
  border-radius: 6px;
  z-index: 200;
  min-width: 180px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.mobile-menu ul { list-style: none; }
.mobile-menu li { margin: 0.3rem 0; }

.mobile-menu a {
  font-family: 'Saira Condensed', sans-serif;
  font-size: 0.88rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  display: block;
  padding: 0.6rem 0.9rem;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
}

.mobile-menu a:hover { background: var(--border); color: var(--accent); }

/* ─── CAROUSEL / HERO ───────────────────── */
.carousel-container {
  position: relative;
  width: 100vw;
  height: calc(100vh - 66px);
  overflow: hidden;
}

.carousel {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.7s cubic-bezier(0.4,0,0.2,1);
}

.carousel img {
  width: 100vw;
  height: 100%;
  object-fit: cover;
  flex-shrink: 0;
  filter: brightness(0.35) saturate(0.7);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0 8%;
  z-index: 2;
  pointer-events: none;
}

.hero-tag {
  font-family: 'Saira Condensed', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 1.2rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s ease-out forwards;
}

.hero-overlay h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(2.2rem, 6vw, 5.2rem);
  font-weight: 900;
  line-height: 1.08;
  color: #fff;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.45s ease-out forwards;
}

.hero-overlay h1 span {
  color: var(--accent);
  text-shadow: 0 0 40px var(--accent-glow);
}

.hero-sub {
  font-family: 'Saira Condensed', sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 2.8rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.65s ease-out forwards;
}

.cta-btn {
  pointer-events: all;
  display: inline-block;
  padding: 1rem 2.8rem;
  background: var(--accent);
  color: #fff;
  font-family: 'Saira Condensed', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 3px;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
  opacity: 0;
  animation: fadeUp 0.8s 0.85s ease-out forwards;
}

.cta-btn:hover {
  background: var(--accent-bright);
  box-shadow: 0 0 30px var(--accent-glow);
  transform: translateY(-3px);
}

.arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(199,93,63,0.1);
  border: 1px solid var(--border-bright);
  color: #fff;
  font-size: 1.1rem;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  z-index: 5;
  border-radius: 3px;
  transition: background 0.2s, border-color 0.2s;
}

.arrow:hover { background: var(--accent); border-color: var(--accent); }
.arrow.left  { left: 20px; }
.arrow.right { right: 20px; }

.indicators {
  position: absolute;
  bottom: 24px; left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}

.indicator {
  display: inline-block;
  width: 7px; height: 7px;
  margin: 0 4px;
  background: rgba(255,255,255,0.25);
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.indicator.active { background: var(--accent); transform: scale(1.4); }

/* ─── PAGE HERO (inner pages) ────────────── */
.page-hero {
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border);
  padding: 5rem 5%;
}

.page-hero .section-label { margin-bottom: 1rem; }

.page-hero h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 900;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.page-hero h1 span { color: var(--accent); }

.page-hero p {
  color: var(--text-dim);
  font-size: 1.05rem;
  max-width: 580px;
  font-weight: 300;
}

/* ─── MAIN / SECTIONS ────────────────────── */
main {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 5%;
}

section { padding: 5rem 0; }
section + section { padding-top: 0; }

.section-label {
  font-family: 'Saira Condensed', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 22px; height: 1px;
  background: var(--accent);
}

section h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1.2rem;
  line-height: 1.2;
}

section p {
  color: var(--text-dim);
  font-weight: 300;
  font-size: 1rem;
  max-width: 700px;
  line-height: 1.85;
}

/* ─── SERVICES GRID (index) ──────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1px;
  margin-top: 3rem;
  background: var(--border);
}

.service-item {
  background: var(--bg-card);
  padding: 2.5rem 2rem;
  transition: background 0.3s;
}

.service-item:hover { background: var(--bg-surface); }

.service-num {
  font-family: 'Orbitron', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: rgba(199,93,63,0.22);
  margin-bottom: 1rem;
  line-height: 1;
}

.service-item h3 {
  font-family: 'Saira Condensed', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 0.6rem;
}

.service-item p {
  font-size: 0.88rem;
  color: var(--text-dim);
  max-width: none;
}

/* ─── ABOUT PAGE ─────────────────────────── */
.story-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.story-block p {
  color: var(--text-dim);
  font-weight: 300;
  line-height: 1.9;
  font-size: 1rem;
}

.story-aside {
  border-left: 2px solid var(--accent);
  padding-left: 2.5rem;
}

.story-aside .big-quote {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.45;
  margin-bottom: 2rem;
}

.stat-row {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.stat-item .num {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--accent);
  text-shadow: 0 0 20px var(--accent-glow);
  line-height: 1;
}

.stat-item .lbl {
  font-family: 'Saira Condensed', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: 0.25rem;
}

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.mv-card {
  border: 1px solid var(--border);
  padding: 2.5rem;
  border-radius: 4px;
  background: var(--bg-card);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.mv-card:hover {
  border-color: var(--border-bright);
  box-shadow: 0 0 28px var(--accent-glow);
}

.mv-card .tag {
  font-family: 'Saira Condensed', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 0.8rem;
}

.mv-card h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1rem;
}

.mv-card p {
  color: var(--text-dim);
  font-size: 0.95rem;
  line-height: 1.85;
  max-width: none;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1px;
  background: var(--border);
  margin-top: 3rem;
}

.value-card {
  background: var(--bg-card);
  padding: 2.5rem 2rem;
  transition: background 0.3s;
}

.value-card:hover { background: var(--bg-surface); }

.value-icon {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  display: block;
}

.value-card h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 0.8rem;
}

.value-card p {
  font-size: 0.9rem;
  color: var(--text-dim);
  font-weight: 300;
  max-width: none;
}

/* ─── WORK PAGE ──────────────────────────── */
.work-services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 4rem;
}

.work-detail {
  border-left: 2px solid var(--border-bright);
  padding: 1.5rem 0 1.5rem 2rem;
  margin-bottom: 0.5rem;
  transition: border-color 0.3s;
}

.work-detail:hover { border-color: var(--accent); }

.work-detail h3 {
  font-family: 'Saira Condensed', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.7rem;
}

.work-detail p {
  color: var(--text-dim);
  font-size: 0.92rem;
  line-height: 1.8;
  max-width: none;
}

.process-overview { padding: 5rem 0; }

.process-overview h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--text);
  margin-bottom: 2rem;
  text-align: center;
}

.process-image-container img {
  width: 100%;
  max-width: 960px;
  display: block;
  margin: 0 auto;
  border-radius: 4px;
  border: 1px solid var(--border);
  filter: brightness(0.85) saturate(0.8);
  transition: filter 0.4s;
}

.process-image-container img:hover { filter: brightness(1) saturate(1); }

.info-cards { padding: 5rem 0; }

.info-cards h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--text);
  margin-bottom: 2.5rem;
}

.cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.info-card:hover {
  border-color: var(--border-bright);
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

.info-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  filter: brightness(0.8) saturate(0.75);
  transition: filter 0.35s;
}

.info-card:hover img { filter: brightness(1) saturate(1); }

/* ─── CONTACT PAGE ───────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 2rem 1.8rem;
  border-radius: 4px;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.contact-card:hover {
  border-color: var(--border-bright);
  box-shadow: 0 0 28px var(--accent-glow);
  transform: translateY(-3px);
}

.contact-icon {
  font-size: 1.6rem;
  margin-bottom: 1.2rem;
  display: block;
}

.contact-card .lbl {
  font-family: 'Saira Condensed', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 0.5rem;
}

.contact-card .val {
  font-size: 0.98rem;
  color: var(--text);
  font-weight: 500;
  line-height: 1.6;
}

.contact-card .val a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-card .val a:hover { color: var(--accent); }

/* ─── FOOTER ─────────────────────────────── */
footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  padding: 3rem 5%;
  max-width: 1280px;
  margin: 0 auto;
}

.footer-brand .logo { display: block; margin-bottom: 0.5rem; }

.footer-brand p {
  font-size: 0.82rem;
  color: var(--text-dim);
  font-weight: 300;
}

.footer-social {
  display: flex;
  gap: 0.8rem;
  justify-content: center;
}

.footer-social a {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-dim);
  text-decoration: none;
  font-family: 'Saira Condensed', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.55rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: 3px;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.footer-social a:hover {
  color: var(--accent);
  border-color: var(--accent);
  background: rgba(199,93,63,0.07);
}

.footer-contact {
  text-align: right;
  font-size: 0.85rem;
  color: var(--text-dim);
  line-height: 2;
  font-weight: 300;
}

.footer-contact a {
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-contact a:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.03);
  padding: 1.2rem 5%;
  text-align: center;
  font-size: 0.74rem;
  color: var(--text-dim);
}

/* ─── ANIMATIONS ─────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.fade-in.visible { opacity: 1; transform: translateY(0); }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── RESPONSIVE ─────────────────────────── */
@media (max-width: 900px) {
  .story-block,
  .mv-grid,
  .work-services { grid-template-columns: 1fr; gap: 2.5rem; }
  .values-grid   { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  nav          { display: none; }
  .hamburger   { display: flex; }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-contact { text-align: center; }
  .footer-social  { justify-content: center; }
  .hero-overlay   { padding: 0 6%; }
  .hero-overlay h1 { font-size: 2rem; }
  .values-grid    { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .page-hero { padding: 3.5rem 5%; }
  section    { padding: 3rem 0; }
}
