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

/* ============================================================
   ELEVARE CREATIVES — GLOBAL STYLES
   Colour palette:
   - Background:  #070707
   - Surface:     #0D0D0D / #141414 / #1A1A1A
   - Border:      #1E1E1E / #282828
   - Text:        #FFFFFF / #999 / #4A4A4A
   - Orange:      #FF6A2F  →  #D64400  (gradient)
   ============================================================ */

:root {
  --bg:            #070707;
  --s1:            #0D0D0D;
  --s2:            #141414;
  --s3:            #1A1A1A;
  --b1:            #1E1E1E;
  --b2:            #2A2A2A;
  --text:          #FFFFFF;
  --muted:         #999999;
  --subtle:        #4A4A4A;
  --orange:        #FF6A2F;
  --orange-dk:     #D64400;
  --orange-lt:     #FF8C5A;
  --og:            rgba(255, 106, 47, 0.12);   /* orange glow bg */
  --og-border:     rgba(255, 106, 47, 0.22);
  --nav-h:         76px;
  --max-w:         1200px;
  --ease:          cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
/* subtle film-grain overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 160px;
  opacity: 0.022;
  pointer-events: none;
  z-index: 9999;
}
a  { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; color: inherit; }
ul { list-style: none; }
input, textarea, select { font-family: inherit; }

/* ── Typography ── */
h1 { font-size: clamp(42px, 7vw, 90px); font-weight: 800; line-height: 1.0;  letter-spacing: -0.03em; }
h2 { font-size: clamp(30px, 4.5vw, 60px); font-weight: 800; line-height: 1.05; letter-spacing: -0.025em; }
h3 { font-size: clamp(20px, 2.5vw, 32px); font-weight: 700; line-height: 1.2;  letter-spacing: -0.02em; }
h4 { font-size: clamp(16px, 1.8vw, 21px); font-weight: 600; letter-spacing: -0.015em; }
p  { color: var(--muted); line-height: 1.75; }

/* ── Layout ── */
.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 768px) { .wrap { padding: 0 20px; } }

.section { padding: 120px 0; }
@media (max-width: 768px) { .section { padding: 72px 0; } }

/* ── Utility classes ── */
.grad-text {
  background: linear-gradient(120deg, var(--orange-lt) 0%, var(--orange) 45%, var(--orange-dk) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--og);
  color: var(--orange);
  border: 1px solid var(--og-border);
  margin-bottom: 28px;
}
.eyebrow::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: all 0.25s var(--ease);
  cursor: pointer;
  white-space: nowrap;
}
.btn svg { transition: transform 0.25s var(--ease); flex-shrink: 0; }
.btn:hover svg { transform: translateX(3px); }

.btn-orange {
  background: linear-gradient(135deg, var(--orange), var(--orange-dk));
  color: #fff;
  border: 1px solid transparent;
}
.btn-orange:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(255, 106, 47, 0.32);
}

.btn-ghost {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--b2);
}
.btn-ghost:hover {
  color: var(--text);
  border-color: #3A3A3A;
  transform: translateY(-2px);
}

.btn-outline-orange {
  background: transparent;
  color: var(--orange);
  border: 1px solid var(--og-border);
}
.btn-outline-orange:hover {
  background: var(--og);
  transform: translateY(-2px);
}

/* ── Scroll reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.3s, border-color 0.3s, backdrop-filter 0.3s;
  border-bottom: 1px solid transparent;
}
.nav.stuck {
  background: rgba(7, 7, 7, 0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-color: var(--b1);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.04em;
  flex-shrink: 0;
}
.nav-logo .dot { color: var(--orange); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s;
  letter-spacing: -0.01em;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-btn {
  padding: 9px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  background: linear-gradient(135deg, var(--orange), var(--orange-dk));
  color: #fff;
  transition: all 0.25s;
  flex-shrink: 0;
}
.nav-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(255, 106, 47, 0.28);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: rgba(7,7,7,0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 24px 20px 32px;
  border-bottom: 1px solid var(--b1);
  flex-direction: column;
  gap: 0;
  z-index: 199;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: 17px;
  font-weight: 500;
  color: var(--muted);
  padding: 14px 0;
  border-bottom: 1px solid var(--b1);
  transition: color 0.2s;
}
.nav-mobile a:hover { color: var(--text); }
.nav-mobile .mob-cta {
  margin-top: 20px;
  display: block;
  text-align: center;
  padding: 14px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dk));
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  border-bottom: none;
}

@media (max-width: 900px) {
  .nav-links, .nav-btn { display: none; }
  .hamburger { display: flex; }
  .nav-inner { padding: 0 20px; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--s1);
  border-top: 1px solid var(--b1);
  padding: 72px 0 36px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 52px;
  border-bottom: 1px solid var(--b1);
  margin-bottom: 28px;
}
.f-brand .logo {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 14px;
}
.f-brand .logo .dot { color: var(--orange); }
.f-brand p { font-size: 14px; max-width: 240px; margin-bottom: 24px; }
.socials { display: flex; gap: 10px; }
.socials a {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 8px;
  background: var(--s2);
  border: 1px solid var(--b1);
  font-size: 11px;
  font-weight: 800;
  color: var(--muted);
  transition: all 0.2s;
  letter-spacing: 0.02em;
}
.socials a:hover { background: var(--orange); color: #fff; border-color: var(--orange); }
.f-col h6 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--subtle);
  margin-bottom: 20px;
}
.f-col li + li { margin-top: 12px; }
.f-col a { font-size: 14px; color: var(--muted); transition: color 0.2s; }
.f-col a:hover { color: var(--text); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-bottom p { font-size: 13px; color: var(--subtle); }

@media (max-width: 1024px) { .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 640px) {
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  padding-top: calc(var(--nav-h) + 88px);
  padding-bottom: 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 100%, rgba(255,106,47,0.07) 0%, transparent 70%);
}
.page-hero .wrap { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(38px, 5.5vw, 72px); margin-bottom: 20px; }
.page-hero .sub { font-size: 18px; max-width: 540px; margin: 0 auto; }

/* ============================================================
   STAT BAR
   ============================================================ */
.stat-bar {
  border-top: 1px solid var(--b1);
  border-bottom: 1px solid var(--b1);
  background: var(--s1);
  padding: 0;
}
.stat-bar-inner {
  display: flex;
  align-items: stretch;
}
.stat-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 36px 20px;
  border-right: 1px solid var(--b1);
  gap: 6px;
}
.stat-item:last-child { border-right: none; }
.stat-item .num {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1;
}
.stat-item .num span { color: var(--text); }
.stat-item p { font-size: 13px; font-weight: 500; color: var(--muted); text-align: center; line-height: 1.4; }
@media (max-width: 640px) {
  .stat-bar-inner { flex-wrap: wrap; }
  .stat-item { flex: 0 0 50%; border-bottom: 1px solid var(--b1); }
}

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.service-card {
  background: var(--s1);
  border: 1px solid var(--b1);
  border-radius: 16px;
  padding: 36px 32px;
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,106,47,0.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}
.service-card:hover {
  border-color: var(--og-border);
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.4), 0 0 0 1px var(--og-border);
}
.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--og);
  border: 1px solid var(--og-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--orange);
}
.service-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--orange);
  margin-bottom: 12px;
  display: block;
}
.service-card h3 { margin-bottom: 12px; font-size: clamp(18px, 2vw, 24px); }
.service-card p { font-size: 15px; }

/* ============================================================
   PORTFOLIO CARDS
   ============================================================ */
.portfolio-card {
  border-radius: 14px;
  overflow: hidden;
  background: var(--s2);
  border: 1px solid var(--b1);
  transition: all 0.3s var(--ease);
  cursor: pointer;
}
.portfolio-card:hover {
  transform: translateY(-4px);
  border-color: var(--og-border);
  box-shadow: 0 20px 48px rgba(0,0,0,0.5);
}
.portfolio-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--s3);
  overflow: hidden;
}
.portfolio-thumb-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0D0D0D 0%, #1A1A1A 100%);
}
.portfolio-thumb-glow {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60%;
  background: linear-gradient(to top, rgba(255,106,47,0.08), transparent);
}
.play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s;
  backdrop-filter: blur(8px);
}
.portfolio-card:hover .play-btn {
  background: var(--orange);
  border-color: var(--orange);
  box-shadow: 0 0 32px rgba(255, 106, 47, 0.4);
  transform: translate(-50%, -50%) scale(1.08);
}
.play-btn svg { margin-left: 3px; }
.p-cat {
  position: absolute;
  bottom: 14px; left: 14px;
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(0,0,0,0.7);
  color: var(--muted);
  backdrop-filter: blur(8px);
  border: 1px solid var(--b2);
}
.portfolio-info { padding: 20px 22px 22px; }
.portfolio-info h4 { margin-bottom: 6px; color: var(--text); }
.portfolio-info p { font-size: 14px; }

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--b1);
  border-radius: 16px;
  overflow: hidden;
}
.process-step {
  padding: 40px 32px;
  border-right: 1px solid var(--b1);
  position: relative;
  transition: background 0.3s;
}
.process-step:last-child { border-right: none; }
.process-step:hover { background: var(--s1); }
.step-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--orange);
  margin-bottom: 16px;
  display: block;
}
.process-step h4 { margin-bottom: 10px; }
.process-step p { font-size: 14px; }
@media (max-width: 900px) {
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-step:nth-child(2) { border-right: none; }
  .process-step:nth-child(1),
  .process-step:nth-child(2) { border-bottom: 1px solid var(--b1); }
}
@media (max-width: 540px) {
  .process-grid { grid-template-columns: 1fr; }
  .process-step { border-right: none; border-bottom: 1px solid var(--b1); }
  .process-step:last-child { border-bottom: none; }
}

/* ============================================================
   CTA STRIP
   ============================================================ */
.cta-strip {
  background: var(--s1);
  border-top: 1px solid var(--b1);
  border-bottom: 1px solid var(--b1);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(255,106,47,0.1) 0%, transparent 70%);
}
.cta-strip .wrap { position: relative; z-index: 1; }
.cta-strip h2 { margin-bottom: 16px; }
.cta-strip p { max-width: 480px; margin: 0 auto 36px; font-size: 17px; }
.cta-strip .btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   CONTACT FORM
   ============================================================ */
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  background: var(--s2);
  border: 1px solid var(--b1);
  border-radius: 10px;
  color: var(--text);
  font-size: 15px;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--og-border);
  box-shadow: 0 0 0 3px rgba(255, 106, 47, 0.08);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--subtle); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }
.form-group select option { background: var(--s2); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }

/* ============================================================
   FILTER TABS
   ============================================================ */
.filter-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.filter-tab {
  padding: 9px 20px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  background: var(--s2);
  border: 1px solid var(--b1);
  color: var(--muted);
  cursor: pointer;
  transition: all 0.2s;
}
.filter-tab:hover { color: var(--text); border-color: var(--b2); }
.filter-tab.active {
  background: var(--og);
  border-color: var(--og-border);
  color: var(--orange);
}

/* ============================================================
   ABOUT — VALUES
   ============================================================ */
.value-card {
  padding: 36px;
  background: var(--s1);
  border: 1px solid var(--b1);
  border-radius: 16px;
  transition: border-color 0.3s, transform 0.3s;
}
.value-card:hover { border-color: var(--og-border); transform: translateY(-3px); }
.value-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--og);
  border: 1px solid var(--og-border);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  color: var(--orange);
}
.value-card h4 { margin-bottom: 10px; }
.value-card p { font-size: 15px; }
