/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold: #8a0605;
  --gold-light: #ca8e8e;
  --gold-dim: #ca8e8e;
  --dark: #0C0C0C;
  --dark2: #161616;
  --dark3: #1E1E1E;
  --dark4: #2A2A2A;
  --light: #F5F2EC;
  --light2: #EAE5DC;
  --white: #FFFFFF;
  --text-muted: #888880;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --font-italic: 'Playfair Display', serif;
  --radius: 12px;
  --radius-lg: 20px;
}

/* ============================================================
   M CUBE CREATIONS — Unified Stylesheet
   Refactored: consolidated variables, removed duplicates,
   fixed typos, resolved conflicts.
   ============================================================ */

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

/* ===== TOKENS ===== */
:root {
  /* Gold palette */
  --gold:          #C9A84C;
  --gold-light:    #E8C97A;
  --gold-dim:      rgba(201, 168, 76, 0.14);   /* was split between #8A6A28 and rgba — unified */
  --gold-line:     rgba(201, 168, 76, 0.32);

  /* Dark surfaces */
  --dark:          #0C0C0C;
  --dark2:         #161616;
  --dark3:         #1E1E1E;
  --dark4:         #2A2A2A;

  /* Light tones */
  --light:         #F5F2EC;
  --light2:        #EAE5DC;
  --white:         #FFFFFF;

  /* Text */
  --text-primary:  #F5F2EC;   /* replaces both --light and --text */
  --text-muted:    #888880;
  --text-dim:      #555550;   /* replaces bare --text-dim references */

  /* Surfaces (used in card/tag backgrounds) */
  --surface:       #161616;   /* replaces --bg2 */
  --surface2:      #1E1E1E;   /* replaces --bg3 */

  /* Borders */
  --border:        rgba(255, 255, 255, 0.07);

  /* Typography */
  --font-display:  'Bebas Neue', sans-serif;
  --font-body:     'DM Sans', sans-serif;
  --font-serif:    'Cormorant Garamond', Georgia, serif;  /* replaces --font-italic & --serif */

  /* Layout */
  --radius:        12px;
  --radius-lg:     20px;

  /* Nav gradient (single source of truth) */
  --nav-gradient:  linear-gradient(315deg, #03A9F4 0%, #d3df46 74%);
}

/* ===== BASE ===== */
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.7;
}

em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--gold);
}

/* ===== NAVBAR ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 5vw;
  background: var(--nav-gradient);
  transition: backdrop-filter 0.4s, padding 0.4s, border-color 0.4s;
}

.nav.scrolled {
  backdrop-filter: blur(16px);
  padding: 0.9rem 5vw;
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 2px;
  line-height: 1;
}

.logo-img {
  width: 150px;
  height: 40px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

.nav-links a {
  color: var(--light2);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--gold); }

.nav-cta {
  background: var(--gold);
  color: var(--dark);
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: background 0.3s, transform 0.2s;
}
.nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--light);
  transition: all 0.3s;
}

/* ── Mobile Menu ── */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 999;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.mobile-menu.open { display: flex; }

.mob-link {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--light);
  text-decoration: none;
  letter-spacing: 3px;
  transition: color 0.3s;
}
.mob-link:hover { color: var(--gold); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background: var(--dark);
  padding: 0 5vw;
  text-align: center;         /* kept from team-profiles version */
}

/* Radial glow */
.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%);
  pointer-events: none;
}

/* Bottom fade */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--dark), transparent);
  pointer-events: none;
}

/* Grid lines overlay */
.hero-bg-lines {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(90deg, rgba(201,168,76,0.03) 0px, rgba(201,168,76,0.03) 1px, transparent 1px, transparent 80px),
    repeating-linear-gradient(0deg,  rgba(201,168,76,0.03) 0px, rgba(201,168,76,0.03) 1px, transparent 1px, transparent 80px);
  pointer-events: none;
}

/* Large watermark text */
.hero-bg-text {
  position: absolute;
  top: 50%;
  right: -2vw;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: clamp(8rem, 20vw, 22rem);
  color: rgba(255,255,255,0.03);
  letter-spacing: 8px;
  user-select: none;
  pointer-events: none;
  white-space: nowrap;
}

/* Concentric ring ornament */
.hero-ornament {
  position: absolute;
  top: 120px;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 0.5px solid rgba(201,168,76,0.06);
  pointer-events: none;
}
.hero-ornament::after {
  content: '';
  position: absolute;
  inset: 40px;
  border-radius: 50%;
  border: 0.5px solid rgba(201,168,76,0.04);
}

/* Hero text content */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding: 6rem 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.8s ease both;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.2s;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 9rem);
  line-height: 0.92;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.8s ease 0.15s both;
}

/* Team-profile hero variant — smaller, centered */
.hero-title.hero-title--serif {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: 0;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.4s;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-muted);
  max-width: 540px;
  margin-bottom: 2.5rem;
  animation: fadeUp 0.8s ease 0.3s both;
}

.hero-sub {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--text-dim);
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.6s;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeUp 0.8s ease 0.45s both;
}

.hero-divider {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  margin: 0 auto;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.8s;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 80px;
  right: 5vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
  animation: fadeUp 1s ease 0.8s both;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

.hero-scroll span {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  writing-mode: vertical-lr;
}

/* Ticker */
.hero-ticker {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 48px;
  background: var(--gold);
  display: flex;
  align-items: center;
  overflow: hidden;
  z-index: 3;
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 2rem;
  animation: ticker 30s linear infinite;
  white-space: nowrap;
}

.ticker-track span {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 2px;
  color: var(--dark);
}

.ticker-track .dot {
  color: var(--dark2);
  font-size: 0.5rem;
}

/* ===== BUTTONS ===== */
.btn-primary {
  background: var(--gold);
  color: var(--dark);
  padding: 0.85rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  display: inline-block;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }

.btn-ghost {
  background: transparent;
  color: var(--light);
  padding: 0.85rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  border: 1px solid rgba(255,255,255,0.2);
  transition: border-color 0.3s, color 0.3s;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

.btn-full { width: 100%; text-align: center; border-radius: var(--radius); }

/* ===== STATS ===== */
.stats {
  background: var(--dark2);
  padding: 5rem 5vw;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 2rem;
}

.stat-item { text-align: center; }

.stat-num {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  color: var(--gold);
  line-height: 1;
  letter-spacing: 2px;
}

.stat-plus {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--gold);
}

.stat-item p {
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

.stat-divider {
  width: 1px;
  height: 80px;
  background: rgba(255,255,255,0.1);
}

/* ===== SECTION SHARED ===== */
.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-label.light { color: var(--gold-light); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  letter-spacing: 1px;
  line-height: 1;
  margin-bottom: 1.5rem;
}
.section-title.light { color: var(--dark); }

/* ===== ABOUT ===== */
.about {
  padding: 8rem 5vw;
  background: var(--dark);
}

.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-left p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-size: 1rem;
  max-width: 480px;
}

.about-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.about-card {
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: border-color 0.3s, transform 0.3s;
}
.about-card:hover {
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-3px);
}

/* Fixed typo: was "..about-card.ac-large" */
.about-card.ac-large {
  grid-column: span 2;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.ac-icon { font-size: 1.8rem; }
.about-card.ac-small .ac-icon {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 0.75rem;
}

.about-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--light);
}

.about-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.about-card.ac-large .ac-content h3 { font-size: 1.1rem; }

/* ===== SERVICES ===== */
.services {
  background: var(--light);
  padding: 8rem 5vw;
}

.services-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
}

.services-header .section-title { color: var(--dark); }

.services-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  border: 1.5px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.service-card {
  background: var(--white);
  padding: 2.5rem;
  position: relative;
  transition: background 0.4s;
  cursor: default;
}

.service-card::before {
  content: attr(data-num);
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 2px;
  color: rgba(0,0,0,0.15);
  transition: color 0.4s;
}

.service-card:hover { background: var(--dark2); }
.service-card:hover h3 { color: var(--light); }
.service-card:hover p  { color: var(--light2); }
.service-card:hover .sc-arrow { color: var(--gold); opacity: 1; }
.service-card:hover::before { color: rgba(201,168,76,0.4); }

.sc-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.75rem;
  transition: color 0.4s;
}

.service-card p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.7;
  transition: color 0.4s;
}

.sc-arrow {
  display: block;
  margin-top: 1.5rem;
  font-size: 1.2rem;
  color: var(--dark);
  opacity: 0.2;
  transition: color 0.3s, opacity 0.3s, transform 0.3s;
}
.service-card:hover .sc-arrow { transform: translateX(4px); }

/* ===== PORTFOLIO ===== */
.portfolio {
  padding: 8rem 5vw;
  background: var(--dark2);
}

.portfolio-header {
  max-width: 700px;
  margin: 0 auto 4rem;
  text-align: center;
}

.portfolio-desc {
  color: var(--text-muted);
  margin-top: 1rem;
  font-size: 1rem;
}

.portfolio-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 280px 240px;
  gap: 1rem;
}

.pf-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

/* Grid span variants */
.pf-item:nth-child(1) { grid-column: span 2; background: linear-gradient(135deg, #1a3a2a, #0d2018); }
.pf-item:nth-child(2) { background: linear-gradient(135deg, #3a261a, #201208); }
.pf-item:nth-child(3) { background: linear-gradient(135deg, #1a263a, #081220); }
.pf-item:nth-child(4) { background: linear-gradient(135deg, #261a3a, #120820); }
.pf-item:nth-child(5) { grid-column: span 2; background: linear-gradient(135deg, #1a2a3a, #0d1820); }

/* Bottom gradient overlay */
.pf-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 60%);
  z-index: 1;
  transition: opacity 0.4s;
}
.pf-item:hover::before { opacity: 0.7; }

/* Diagonal texture */
.pf-item::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 20px,
    rgba(255,255,255,0.015) 20px,
    rgba(255,255,255,0.015) 40px
  );
  pointer-events: none;
}

.pf-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem;
  z-index: 2;
  transform: translateY(4px);
  transition: transform 0.4s;
}
.pf-item:hover .pf-overlay { transform: translateY(0); }

.pf-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--dark);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  margin-bottom: 0.5rem;
}

.pf-overlay h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.pf-overlay p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
}

/* ===== CONTACT ===== */
.contact {
  padding: 8rem 5vw;
  background: var(--dark);
}

.contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 6rem;
  align-items: start;
}

.contact-left .section-title { margin-bottom: 2rem; }

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.ci-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.ci-label {
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.ci-item a,
.ci-item span {
  font-size: 1rem;
  color: var(--light);
  text-decoration: none;
  transition: color 0.3s;
}
.ci-item a:hover { color: var(--gold); }

/* Form */
.contact-form {
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--dark4);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  color: var(--light);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.3s;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-group select option { background: var(--dark2); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.2); }

.form-group textarea { resize: vertical; min-height: 120px; }

.form-msg {
  text-align: center;
  font-size: 0.9rem;
  border-radius: var(--radius);
  padding: 0;
  transition: all 0.3s;
}
.form-msg.success { color: #6ee7a6; padding: 0.75rem; background: rgba(110,231,166,0.1); }
.form-msg.error   { color: #f97272; padding: 0.75rem; background: rgba(249,114,114,0.1); }

/* ===== FOOTER ===== */
.footer {
  background: var(--dark2);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 5vw;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
}

.footer-brand .nav-logo { display: inline-block; margin-bottom: 1rem; }
.footer-brand p {
  font-size: 0.875rem;
  color: var(--text-muted);
  max-width: 240px;
  line-height: 1.7;
}

.footer-links { display: flex; flex-direction: column; gap: 0.75rem; }

.footer-links h4 {
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--light); }

.footer-social h4 {
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.social-links { display: flex; gap: 0.75rem; flex-wrap: wrap; }

.social-btn {
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}
.social-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.08);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 5vw;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ===== TEAM PROFILES ===== */
.team-section {
  position: relative;
  z-index: 1;
  padding: 60px 48px 100px;
  max-width: 1200px;
  margin: 0 auto;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

/* Card */
.card {
  position: relative;
  background: var(--surface);
  border: 0.5px solid var(--border);
  overflow: hidden;
  cursor: default;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease, border-color 0.4s;
}

.card.visible {
  opacity: 1;
  transform: translateY(0);
}

.card:hover {
  border-color: var(--gold-line);
  z-index: 2;
}

.card-top-line {
  height: 2px;
  background: var(--gold);
  width: 0;
  transition: width 0.8s ease;
}
.card.visible .card-top-line { width: 100%; }

.card-inner { padding: 32px 28px 28px; }

/* Badge */
.card-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
  border: 0.5px solid var(--gold-line);
  padding: 4px 12px;
  margin-bottom: 28px;
}

/* Avatar */
.card-avatar-wrap {
  position: relative;
  width: 72px;
  height: 72px;
  margin-bottom: 22px;
}

.card-avatar-ring {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 0.5px solid var(--gold-line);
  transition: border-color 0.4s;
}
.card:hover .card-avatar-ring { border-color: var(--gold); }

.card-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #160E04;
  border: 1px solid rgba(201,168,76,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 300;
  color: var(--gold);
  letter-spacing: 1px;
  position: relative;
  z-index: 1;
  transition: background 0.4s;
}
.card:hover .card-avatar { background: #1E1104; }

/* Name & role */
.card-name {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 4px;
  line-height: 1.2;
}

.card-role {
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  opacity: 0.8;
}

.card-rule {
  width: 28px;
  height: 0.5px;
  background: var(--text-muted);
  margin-bottom: 18px;
  transition: width 0.4s ease, background 0.4s;
}
.card:hover .card-rule { width: 48px; background: var(--gold-line); }

/* Bio */
.card-bio {
  font-family: var(--font-serif);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--text-muted);
  margin-bottom: 24px;
  font-style: italic;
}

/* Stats (card-level, distinct from hero .stat-item) */
.card-stats {
  display: flex;
  border-top: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
  margin-bottom: 22px;
}

.card-stat {
  flex: 1;
  padding: 14px 0;
  text-align: center;
  position: relative;
}

.card-stat + .card-stat::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  bottom: 14px;
  width: 0.5px;
  background: var(--border);
}

.card-stat-val {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 300;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: 5px;
}

.card-stat-lbl {
  font-family: var(--font-body);
  font-size: 8px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Tags */
.card-tags { display: flex; flex-wrap: wrap; gap: 6px; }

.tag {
  font-family: var(--font-body);
  font-size: 8px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  background: var(--surface2);
  border: 0.5px solid var(--border);
  padding: 5px 10px;
  transition: color 0.3s, border-color 0.3s;
}
.card:hover .tag {
  color: rgba(201,168,76,0.6);
  border-color: rgba(201,168,76,0.15);
}

/* Corner ornament */
.card-corner {
  position: absolute;
  bottom: 0; right: 0;
  width: 40px; height: 40px;
  border-top: 0.5px solid var(--border);
  border-left: 0.5px solid var(--border);
  border-radius: 0;
  opacity: 0;
  transition: opacity 0.4s, border-color 0.4s;
}
.card:hover .card-corner {
  opacity: 1;
  border-color: var(--gold-line);
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.5; }
  50%       { opacity: 1; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about-inner           { grid-template-columns: 1fr; gap: 3rem; }
  .services-grid         { grid-template-columns: repeat(2, 1fr); }
  .contact-inner         { grid-template-columns: 1fr; gap: 3rem; }
  .footer-inner          { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .portfolio-grid        { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .pf-item:nth-child(1)  { grid-column: span 2; }
  .pf-item:nth-child(5)  { grid-column: span 1; }
  .stat-divider          { display: none; }
  .team-grid             { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links,
  .nav-cta                { display: none; }
  .nav-hamburger          { display: flex; }
  .services-grid          { grid-template-columns: 1fr; }
  .portfolio-grid         { grid-template-columns: 1fr; grid-template-rows: auto; }
  .pf-item:nth-child(n)  { grid-column: span 1; }
  .form-row               { grid-template-columns: 1fr; }
  .footer-inner           { grid-template-columns: 1fr; }
  .footer-bottom          { flex-direction: column; gap: 0.5rem; text-align: center; }
  .about-card-grid        { grid-template-columns: 1fr; }
  .about-card.ac-large    { grid-column: span 1; flex-direction: column; }
  .team-grid              { grid-template-columns: 1fr; }
  .team-section           { padding: 40px 24px 80px; }
  .hero                   { padding: 130px 24px 60px; }
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--light);
  overflow-x: hidden;
  line-height: 1.7;
}

em { font-family: var(--font-italic); font-style: italic; color: var(--gold); }

/* ===== NAVBAR ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 5vw;
  transition: background 0.4s, backdrop-filter 0.4s, padding 0.4s;
  background-color:#ca8e8e;
}

.nav.scrolled {
  background-color:#ca8e8e;
  backdrop-filter: blur(16px);
  padding: 0.9rem 5vw;
  border-bottom: 1px solid rgba(201,168,76,0.15);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 2px;
  line-height: 1;
 
}
.logo-img{  
  width: 150px;
  height: 40px;  object-fit: contain;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

.nav-links a {
  color: var(--light2);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--gold); }

.nav-cta {
  background: var(--gold);
  color: var(--dark);
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: background 0.3s, transform 0.2s;
}
.nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--light);
  transition: all 0.3s;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--dark);
  z-index: 999;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.mobile-menu.open { display: flex; }
.mob-link {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--light);
  text-decoration: none;
  letter-spacing: 3px;
  transition: color 0.3s;
}
.mob-link:hover { color: var(--gold); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background: var(--dark);
  padding: 0 5vw;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--dark), transparent);
  pointer-events: none;
}

.hero-bg-text {
  position: absolute;
  top: 50%;
  right: -2vw;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: clamp(8rem, 20vw, 22rem);
  color: rgba(255,255,255,0.03);
  letter-spacing: 8px;
  user-select: none;
  pointer-events: none;
  white-space: nowrap;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding: 6rem 0px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.8s ease both;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 9rem);
  line-height: 0.92;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.8s ease 0.15s both;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-muted);
  max-width: 540px;
  margin-bottom: 2.5rem;
  animation: fadeUp 0.8s ease 0.3s both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeUp 0.8s ease 0.45s both;
}

.btn-primary {
  background: var(--gold);
  color: var(--dark);
  padding: 0.85rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  display: inline-block;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }

.btn-ghost {
  background: transparent;
  color: var(--light);
  padding: 0.85rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  border: 1px solid rgba(255,255,255,0.2);
  transition: border-color 0.3s, color 0.3s;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

.btn-full { width: 100%; text-align: center; border-radius: var(--radius); }

.hero-scroll {
  position: absolute;
  bottom: 80px;
  right: 5vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
  animation: fadeUp 1s ease 0.8s both;
}
.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
.hero-scroll span {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  writing-mode: vertical-lr;
}

/* TICKER */
.hero-ticker {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 48px;
  background: var(--gold);
  display: flex;
  align-items: center;
  overflow: hidden;
  z-index: 3;
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 2rem;
  animation: ticker 30s linear infinite;
  white-space: nowrap;
}

.ticker-track span {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 2px;
  color: var(--dark);
}

.ticker-track .dot {
  color: var(--dark2);
  font-size: 0.5rem;
}

/* ===== STATS ===== */
.stats {
  background: var(--dark2);
  padding: 5rem 5vw;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 2rem;
}

.stat-item {
  text-align: center;
}

.stat-num {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  color: var(--gold);
  line-height: 1;
  letter-spacing: 2px;
}

.stat-plus {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--gold);
}

.stat-item p {
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

.stat-divider {
  width: 1px;
  height: 80px;
  background: rgba(255,255,255,0.1);
}

/* ===== ABOUT ===== */
.about {
  padding: 8rem 5vw;
  background: var(--dark);
}

.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-label.light { color: var(--gold-light); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  letter-spacing: 1px;
  line-height: 1;
  margin-bottom: 1.5rem;
}
.section-title.light { color: var(--dark); }

.about-left p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-size: 1rem;
  max-width: 480px;
}

.about-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.about-card {
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: border-color 0.3s, transform 0.3s;
}
.about-card:hover {
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-3px);
}

.about-card.ac-large { grid-column: span 2; display: flex; gap: 1rem; align-items: flex-start; }
.about-card.ac-small { }

.ac-icon { font-size: 1.8rem; }
.about-card.ac-small .ac-icon { font-size: 1.5rem; display: block; margin-bottom: 0.75rem; }

.about-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--light);
}

.about-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.about-card.ac-large .ac-content h3 { font-size: 1.1rem; }

/* ===== SERVICES ===== */
.services {
  background: var(--light);
  padding: 8rem 5vw;
}

.services-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
}

.services-header .section-title {
  color: var(--dark);
}

.services-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  border: 1.5px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.service-card {
  background: var(--white);
  padding: 2.5rem;
  position: relative;
  transition: background 0.4s;
  cursor: default;
}

.service-card::before {
  content: attr(data-num);
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 2px;
  color: rgba(0,0,0,0.15);
}

.service-card:hover {
  background: var(--gold-dim);
}
.service-card:hover h3,
.service-card:hover p { color: var(--light); }
.service-card:hover p { color: var(--light2); }
.service-card:hover .sc-arrow { color: var(--gold); opacity: 1; }
.service-card:hover::before { color: rgba(201,168,76,0.4); }

.sc-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.75rem;
  transition: color 0.4s;
}

.service-card p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.7;
  transition: color 0.4s;
}

.sc-arrow {
  display: block;
  margin-top: 1.5rem;
  font-size: 1.2rem;
  color: var(--dark);
  opacity: 0.2;
  transition: color 0.3s, opacity 0.3s, transform 0.3s;
}
.service-card:hover .sc-arrow { transform: translateX(4px); }

/* ===== PORTFOLIO ===== */
.portfolio {
  padding: 8rem 5vw;
  background: var(--dark2);
}

.portfolio-header {
  max-width: 700px;
  margin: 0 auto 4rem;
  text-align: center;
}

.portfolio-desc {
  color: var(--text-muted);
  margin-top: 1rem;
  font-size: 1rem;
}

.portfolio-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 280px 240px;
  gap: 1rem;
}

.pf-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.pf-large { grid-column: span 2; grid-row: span 1; background: linear-gradient(135deg, #1a3a2a 0%, #0d2018 100%); }
.pf-small { grid-column: span 1; background: linear-gradient(135deg, #2a1a3a 0%, #180d20 100%); }
.pf-small:first-of-type { background: linear-gradient(135deg, #3a2a1a 0%, #201808 100%); }
.pf-medium { grid-column: span 2; background: linear-gradient(135deg, #1a2a3a 0%, #0d1820 100%); }

.pf-item:nth-child(2) { background: linear-gradient(135deg, #3a261a 0%, #201208 100%); }
.pf-item:nth-child(3) { background: linear-gradient(135deg, #1a263a 0%, #081220 100%); }
.pf-item:nth-child(4) { background: linear-gradient(135deg, #261a3a 0%, #120820 100%); }
.pf-item:nth-child(5) { background: linear-gradient(135deg, #1a3a26 0%, #082012 100%); }

.pf-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 60%);
  z-index: 1;
  transition: opacity 0.4s;
}
.pf-item:hover::before { opacity: 0.7; }

.pf-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem;
  z-index: 2;
  transform: translateY(4px);
  transition: transform 0.4s;
}
.pf-item:hover .pf-overlay { transform: translateY(0); }

.pf-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--dark);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  margin-bottom: 0.5rem;
}

.pf-overlay h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.pf-overlay p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
}

/* Decorative item backgrounds using patterns */
.pf-item::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 20px,
    rgba(255,255,255,0.015) 20px,
    rgba(255,255,255,0.015) 40px
  );
  pointer-events: none;
}

/* ===== CONTACT ===== */
.contact {
  padding: 8rem 5vw;
  background: var(--dark);
}

.contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 6rem;
  align-items: start;
}

.contact-left .section-title { margin-bottom: 2rem; }

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.ci-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.ci-label {
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.ci-item a, .ci-item span {
  font-size: 1rem;
  color: var(--light);
  text-decoration: none;
  transition: color 0.3s;
}
.ci-item a:hover { color: var(--gold); }

/* FORM */
.contact-form {
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--dark4);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  color: var(--light);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.3s;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-group select option { background: var(--dark2); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.2); }

.form-group textarea { resize: vertical; min-height: 120px; }

.form-msg {
  text-align: center;
  font-size: 0.9rem;
  border-radius: var(--radius);
  padding: 0;
  transition: all 0.3s;
}
.form-msg.success { color: #6ee7a6; padding: 0.75rem; background: rgba(110,231,166,0.1); }
.form-msg.error { color: #f97272; padding: 0.75rem; background: rgba(249,114,114,0.1); }

/* ===== FOOTER ===== */
.footer {
  background: var(--dark2);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 5vw;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
}

.footer-brand .nav-logo { display: inline-block; margin-bottom: 1rem; }
.footer-brand p {
  font-size: 0.875rem;
  color: var(--text-muted);
  max-width: 240px;
  line-height: 1.7;
}

.footer-links { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-links h4 {
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.footer-links a {
  font-size: 0.875rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--light); }

.footer-social h4 {
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.social-links { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.social-btn {
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}
.social-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.08);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 5vw;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about-inner { grid-template-columns: 1fr; gap: 3rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .pf-large { grid-column: span 2; }
  .pf-small { grid-column: span 1; }
  .pf-medium { grid-column: span 1; }
  .stat-divider { display: none; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .pf-large, .pf-small, .pf-medium { grid-column: span 1; }
  .portfolio-grid { grid-template-rows: auto; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .about-card-grid { grid-template-columns: 1fr; }
  .about-card.ac-large { grid-column: span 1; }
}
