/* ==========================================================================
   ALOHA Project – Consolidated Stylesheet
   Brand: #1A56DB + #F97316 | Font: Inter
   Style: Leger · Sportlich · Elegant | Business & Sport
   ========================================================================== */

/* ── Design Tokens ─────────────────────────────────────────────────────── */
:root {
  /* Brand Colors */
  --brand-blue:       #C9A227;
  --brand-blue-hover: #B8911F;
  --brand-blue-light: #FDF8E8;
  --brand-orange:     #DC2626;
  --brand-orange-hover:#B91C1C;
  --brand-green:      #10B981;
  --brand-purple:     #8B5CF6;

  /* Dark Palette */
  --dark:             #0B1628;
  --dark-mid:         #152035;
  --dark-card:        #1C2D46;
  --dark-border:      rgba(255,255,255,.1);

  /* Light Palette */
  --light:            #F8FAFC;
  --light-mid:        #F1F5F9;
  --border:           #E2E8F0;
  --muted:            #64748B;
  --white:            #FFFFFF;

  /* Typography */
  --font-display:     'Inter', system-ui, sans-serif;
  --font-body:        'Inter', system-ui, sans-serif;

  /* Spacing & Radii */
  --radius:           14px;
  --radius-lg:        22px;
  --radius-pill:      100px;

  /* Shadows */
  --shadow-sm:        0 2px 8px rgba(0,0,0,.06);
  --shadow:           0 4px 24px rgba(0,0,0,.10);
  --shadow-card:      0 8px 32px rgba(0,0,0,.12);
  --shadow-hover:     0 16px 48px rgba(0,0,0,.20);
  --shadow-blue:      0 8px 32px rgba(201,162,39,.30);

  /* Transitions */
  --t:                .25s cubic-bezier(.4,0,.2,1);
  --t-fast:           .15s cubic-bezier(.4,0,.2,1);

  /* Gradient */
  --grad-hero:        linear-gradient(135deg, #0B1628 0%, #1a1508 50%, #0B1628 100%);
  --grad-blue:        linear-gradient(135deg, #C9A227, #E8C547);
  --grad-sport:       linear-gradient(135deg, #10B981, #0EA5E9);
  --grad-orange:      linear-gradient(135deg, #DC2626, #EF4444);
  --grad-card:        linear-gradient(135deg, rgba(201,162,39,.08), rgba(220,38,38,.05));
}

/* ── Reset & Base ──────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  line-height: 1.65;
  color: var(--dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.2;
  letter-spacing: -.02em;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--t);
}

img { max-width: 100%; height: auto; display: block; }

ul { list-style: none; }

/* ── Layout Utilities ──────────────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container--wide { max-width: 1400px; }
.container--narrow { max-width: 840px; }

.section { padding: 6rem 0; }
.section--sm { padding: 4rem 0; }
.section--lg { padding: 8rem 0; }

.section--dark {
  background: var(--dark);
  color: var(--white);
}

.section--dark-mid {
  background: var(--dark-mid);
  color: var(--white);
}

.section--light { background: var(--light); }

/* ── Section Headlines ─────────────────────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--brand-blue);
  background: var(--brand-blue-light);
  padding: .35rem .9rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1rem;
}

.section--dark .section-header .eyebrow {
  background: rgba(26,86,219,.25);
  color: #93C5FD;
}

.section-header h2 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  margin-bottom: .75rem;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 540px;
  margin: 0 auto;
}

.section--dark .section-header p { color: rgba(255,255,255,.6); }
.section--dark .section-header h2 { color: var(--white); }

/* ── Header / Navigation ───────────────────────────────────────────────── */
.main-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(11,22,40,.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: box-shadow var(--t);
}

.main-header.scrolled {
  box-shadow: 0 4px 40px rgba(0,0,0,.40);
}

.nav-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 70px;
  display: flex;
  align-items: center;
  gap: 2rem;
}

/* Logo */
.logo a {
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: .05em;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: .15rem;
  white-space: nowrap;
  text-transform: uppercase;
}

.logo a .logo-accent { color: var(--brand-orange); }

.logo-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: var(--brand-orange);
  border-radius: 50%;
  margin: 0 .2rem;
  vertical-align: middle;
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: .15rem;
  flex: 1;
}

.nav-links li a {
  font-size: .875rem;
  font-weight: 500;
  color: rgba(255,255,255,.65);
  padding: .45rem .9rem;
  border-radius: 8px;
  transition: var(--t);
  white-space: nowrap;
}

.nav-links li a:hover {
  color: var(--white);
  background: rgba(255,255,255,.08);
}

.nav-links li a.active {
  color: var(--brand-orange);
  background: rgba(249,115,22,.12);
}

/* Nav Right */
.nav-right {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-left: auto;
}

.btn-contact-nav {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--brand-blue);
  color: var(--white) !important;
  font-size: .85rem;
  font-weight: 600;
  padding: .55rem 1.25rem;
  border-radius: var(--radius-pill);
  transition: var(--t);
  white-space: nowrap;
}

.btn-contact-nav:hover {
  background: var(--brand-blue-hover);
  box-shadow: var(--shadow-blue);
  transform: translateY(-1px);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,.08);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--t);
}

/* ── Hero Section ──────────────────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  background: var(--grad-hero);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(201,162,39,.20) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(220,38,38,.14) 0%, transparent 60%);
  pointer-events: none;
}

/* Animated grid pattern */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--brand-orange);
  background: rgba(249,115,22,.15);
  border: 1px solid rgba(249,115,22,.25);
  padding: .4rem 1rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1.75rem;
}

.hero-eyebrow i { font-size: .75rem; }

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 1.5rem;
  max-width: 720px;
}

.hero h1 .text-gradient {
  background: linear-gradient(135deg, #E8C547, #DC2626);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,.65);
  max-width: 540px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3.5rem;
}

/* Stats row */
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.1);
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat strong {
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

.hero-stat span {
  font-size: .8rem;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: .25rem;
}

/* Hero scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: rgba(255,255,255,.35);
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  animation: heroScrollBounce 2s ease-in-out infinite;
}

.hero-scroll svg { animation: heroScrollBounce 2s ease-in-out infinite; }

@keyframes heroScrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ── Buttons ───────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 600;
  padding: .75rem 1.75rem;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--t);
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}

.btn-primary {
  background: var(--brand-blue);
  color: var(--white);
  border-color: var(--brand-blue);
}

.btn-primary:hover {
  background: var(--brand-blue-hover);
  border-color: var(--brand-blue-hover);
  box-shadow: 0 8px 32px rgba(201,162,39,.35);
  transform: translateY(-2px);
  color: var(--white);
}

.btn-orange {
  background: var(--brand-orange);
  color: var(--white);
  border-color: var(--brand-orange);
}

.btn-orange:hover {
  background: var(--brand-orange-hover);
  border-color: var(--brand-orange-hover);
  transform: translateY(-2px);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.3);
}

.btn-outline:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.6);
  color: var(--white);
}

.btn-outline-dark {
  background: transparent;
  color: var(--dark);
  border-color: var(--border);
}

.btn-outline-dark:hover {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}

.btn-sm {
  font-size: .8rem;
  padding: .5rem 1.2rem;
}

.btn-lg {
  font-size: 1rem;
  padding: .95rem 2.25rem;
}

/* ── Category Pills ────────────────────────────────────────────────────── */
.cat-pill {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .3rem .8rem;
  border-radius: var(--radius-pill);
  background: var(--brand-blue-light);
  color: var(--brand-blue);
}

/* ── Project Cards ─────────────────────────────────────────────────────── */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2rem;
}

.project-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--t);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(26,86,219,.2);
}

.project-card__img {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--light-mid);
}

.project-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}

.project-card:hover .project-card__img img {
  transform: scale(1.05);
}

.project-card__badge {
  position: absolute;
  top: .9rem;
  left: .9rem;
}

.project-card__featured-badge {
  position: absolute;
  top: .9rem;
  right: .9rem;
  background: var(--brand-orange);
  color: var(--white);
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: .25rem .65rem;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  gap: .35rem;
}

.project-card__body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.project-card__title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.3;
}

.project-card__subtitle {
  font-size: .85rem;
  color: var(--muted);
  font-weight: 500;
}

.project-card__desc {
  font-size: .9rem;
  color: #475569;
  line-height: 1.6;
  flex: 1;
}

.project-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: .75rem;
  border-top: 1px solid var(--border);
  margin-top: auto;
}

.project-card__meta {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .78rem;
  color: var(--muted);
}

.project-card__link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .82rem;
  font-weight: 600;
  color: var(--brand-blue);
}

.project-card__link:hover { gap: .6rem; }

/* ── Feature / Service Cards ───────────────────────────────────────────── */
.feature-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--t);
}

.feature-card:hover {
  border-color: rgba(26,86,219,.5);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(26,86,219,.15);
}

.feature-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1.25rem;
  background: var(--grad-blue);
  color: var(--white);
}

.feature-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .6rem;
}

.feature-card__text {
  font-size: .9rem;
  color: rgba(255,255,255,.55);
  line-height: 1.65;
}

/* ── Services Grid ─────────────────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

/* ── Team / About Cards ────────────────────────────────────────────────── */
.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: center;
  transition: var(--t);
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.team-card__img {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--light-mid);
}

.team-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s var(--t);
}

.team-card:hover .team-card__img img { transform: scale(1.04); }

.team-card__body { padding: 1.5rem; }

.team-card__name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: .25rem;
}

.team-card__role {
  font-size: .82rem;
  color: var(--brand-blue);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .07em;
}

/* ── Two-Column Layout ─────────────────────────────────────────────────── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.split--reverse { direction: rtl; }
.split--reverse > * { direction: ltr; }

@media (max-width: 768px) {
  .split, .split--reverse { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ── Contact Form ──────────────────────────────────────────────────────── */
.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-card);
}

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

@media (max-width: 600px) { .form-grid { grid-template-columns: 1fr; } }

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

.form-group.full { grid-column: 1 / -1; }

.form-group label {
  font-size: .82rem;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: .02em;
}

.form-group label .required { color: var(--brand-orange); margin-left: .2rem; }

.form-input, .form-textarea, .form-select {
  font-family: var(--font-body);
  font-size: .9rem;
  color: var(--dark);
  background: var(--light);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: .75rem 1rem;
  transition: var(--t);
  width: 100%;
  outline: none;
}

.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--brand-blue);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(26,86,219,.12);
}

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

/* ── Stats Bar ─────────────────────────────────────────────────────────── */
.stats-bar {
  background: linear-gradient(135deg, #C9A227, #B8911F);
  padding: 3rem 0;
}

.stats-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

@media (max-width: 600px) { .stats-bar-inner { grid-template-columns: repeat(2, 1fr); } }

.stat-item strong {
  display: block;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: .3rem;
}

.stat-item span {
  font-size: .8rem;
  color: rgba(255,255,255,.65);
  text-transform: uppercase;
  letter-spacing: .1em;
}

/* ── Logos / Clients Strip ─────────────────────────────────────────────── */
.logos-strip {
  padding: 3rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--white);
}

.logos-strip__label {
  text-align: center;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.logos-strip__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
}

.logos-strip__item {
  font-size: 1rem;
  font-weight: 800;
  color: var(--muted);
  letter-spacing: .05em;
  text-transform: uppercase;
  opacity: .6;
  transition: var(--t);
}

.logos-strip__item:hover { opacity: 1; color: var(--dark); }

/* ── CTA Section ───────────────────────────────────────────────────────── */
.cta-section {
  background: var(--dark);
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,162,39,.18), transparent 70%);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.cta-inner h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-inner p {
  font-size: 1.1rem;
  color: rgba(255,255,255,.6);
  margin-bottom: 2rem;
}

.cta-inner .cta-btns {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ── Alerts ────────────────────────────────────────────────────────────── */
.alert {
  padding: 1rem 1.25rem;
  border-radius: 10px;
  margin-bottom: 1.5rem;
  font-size: .9rem;
  display: flex;
  align-items: flex-start;
  gap: .75rem;
}

.alert-success {
  background: #ECFDF5;
  color: #065F46;
  border: 1px solid #A7F3D0;
}

.alert-error {
  background: #FEF2F2;
  color: #991B1B;
  border: 1px solid #FECACA;
}

/* ── Tags ──────────────────────────────────────────────────────────────── */
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
}

.tag {
  font-size: .75rem;
  font-weight: 600;
  color: var(--muted);
  background: var(--light);
  border: 1px solid var(--border);
  padding: .2rem .65rem;
  border-radius: 6px;
}

/* ── Breadcrumb ────────────────────────────────────────────────────────── */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .35rem;
  font-size: .82rem;
  color: var(--muted);
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2.5rem;
}

.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--brand-blue); }
.breadcrumb .sep { opacity: .4; }
.breadcrumb .current { color: var(--dark); font-weight: 500; }

/* ── Page Header (inner pages) ─────────────────────────────────────────── */
.page-header {
  background: var(--grad-hero);
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(201,162,39,.22), transparent 65%);
}

.page-header-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.page-header .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--brand-orange);
  background: rgba(249,115,22,.15);
  border: 1px solid rgba(249,115,22,.25);
  padding: .35rem .9rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1.25rem;
}

.page-header h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: .75rem;
}

.page-header p {
  font-size: 1.1rem;
  color: rgba(255,255,255,.6);
  max-width: 560px;
}

/* ── Footer ────────────────────────────────────────────────────────────── */
.main-footer {
  background: var(--dark);
  color: rgba(255,255,255,.6);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 550px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.footer-brand .logo-footer {
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: .05em;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: block;
}

.footer-brand .logo-footer .logo-accent { color: var(--brand-orange); }

.footer-brand p {
  font-size: .875rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: .6rem;
  margin-top: 1.25rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.07);
  color: rgba(255,255,255,.6);
  border-radius: 8px;
  font-size: .9rem;
  transition: var(--t);
}

.footer-social a:hover {
  background: var(--brand-blue);
  color: var(--white);
}

.footer-col h4 {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.footer-col ul li a {
  font-size: .875rem;
  color: rgba(255,255,255,.5);
  transition: var(--t);
  display: flex;
  align-items: center;
  gap: .4rem;
}

.footer-col ul li a:hover { color: var(--white); gap: .65rem; }

.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .75rem;
  font-size: .8rem;
  color: rgba(255,255,255,.35);
}

.footer-bottom a { color: rgba(255,255,255,.35); }
.footer-bottom a:hover { color: rgba(255,255,255,.7); }

/* ── Project Detail ────────────────────────────────────────────────────── */
.projekt-hero {
  position: relative;
  height: 480px;
  overflow: hidden;
  background: var(--dark);
}

.projekt-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .5;
}

.projekt-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(11,22,40,.2), rgba(11,22,40,.85));
  display: flex;
  align-items: flex-end;
  padding: 3rem;
}

.projekt-hero-content { max-width: 700px; }
.projekt-hero-content h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: .5rem;
}
.projekt-hero-content p {
  font-size: 1.1rem;
  color: rgba(255,255,255,.65);
}

/* Project Content */
.projekt-content {
  max-width: 840px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.projekt-content h2 {
  font-size: 1.6rem;
  font-weight: 800;
  margin: 2rem 0 1rem;
}

.projekt-content p { margin-bottom: 1.25rem; line-height: 1.8; color: #374151; }

.projekt-content ul, .projekt-content ol {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
}

.projekt-content ul li, .projekt-content ol li {
  margin-bottom: .5rem;
  color: #374151;
}

.projekt-sidebar {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}

.projekt-sidebar h3 {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.25rem;
}

.projekt-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .65rem 0;
  border-bottom: 1px solid var(--border);
  font-size: .875rem;
}

.projekt-meta-row:last-child { border-bottom: none; }
.projekt-meta-row .label { color: var(--muted); font-weight: 500; }
.projekt-meta-row .value { font-weight: 700; color: var(--dark); }

/* ── Filter Bar ────────────────────────────────────────────────────────── */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 2.5rem;
  justify-content: center;
}

.filter-btn {
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 600;
  padding: .45rem 1.1rem;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--muted);
  cursor: pointer;
  transition: var(--t);
}

.filter-btn:hover {
  border-color: var(--brand-blue);
  color: var(--brand-blue);
}

.filter-btn.active {
  background: var(--brand-blue);
  border-color: var(--brand-blue);
  color: var(--white);
}

/* ── Status Badges ─────────────────────────────────────────────────────── */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  padding: .25rem .7rem;
  border-radius: var(--radius-pill);
}

.status-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

.status-active   { background: #ECFDF5; color: #059669; }
.status-completed{ background: #F0F9FF; color: #0369A1; }
.status-upcoming { background: #FFF7ED; color: #D97706; }

/* ── Responsive ────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .projects-grid { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
}

@media (max-width: 768px) {
  .section { padding: 4rem 0; }
  .section--lg { padding: 5rem 0; }

  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(11,22,40,.97);
    backdrop-filter: blur(16px);
    padding: 1.5rem;
    gap: .25rem;
    border-bottom: 1px solid rgba(255,255,255,.08);
    z-index: 800;
  }

  .nav-links.open li a {
    display: block;
    padding: .75rem 1rem;
    font-size: 1rem;
    border-radius: 10px;
  }

  .menu-toggle { display: flex; }

  .btn-contact-nav .btn-label { display: none; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2.2rem; }
  .projects-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.5rem; }
  .hero-stat strong { font-size: 1.6rem; }
  .contact-form { padding: 1.5rem; }
}

/* ── Utilities ─────────────────────────────────────────────────────────── */
.text-center { text-align: center; }
.text-muted { color: var(--muted); }
.text-white { color: var(--white); }
.fw-700 { font-weight: 700; }
.fw-900 { font-weight: 900; }
.mb-1 { margin-bottom: .5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-auto { margin-top: auto; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.gap-1 { gap: .5rem; }
.gap-2 { gap: 1rem; }

/* ── Animations ────────────────────────────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.animate-in {
  animation: fadeInUp .6s cubic-bezier(.4,0,.2,1) both;
}

.animate-in-delay-1 { animation-delay: .1s; }
.animate-in-delay-2 { animation-delay: .2s; }
.animate-in-delay-3 { animation-delay: .3s; }
.animate-in-delay-4 { animation-delay: .4s; }

[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s cubic-bezier(.4,0,.2,1), transform .6s cubic-bezier(.4,0,.2,1);
}

[data-reveal].revealed {
  opacity: 1;
  transform: none;
}
