:root {
  --bg: #f4f4f4;
  --bg-soft: #ffffff;
  --ink: #0f0f10;
  --ink-soft: #424247;
  --accent: #ef4fc8;
  --accent-deep: #cb2ca3;
  --dark: #111113;
  --dark-soft: #1d1d22;
  --border: #d8d8df;
  --radius: 18px;
  --shadow: 0 16px 40px rgba(18, 18, 24, 0.12);
  --space-1: 0.5rem;
  --space-2: 0.75rem;
  --space-3: 1rem;
  --space-4: 1.5rem;
  --space-5: 2rem;
  --space-6: 3rem;
  --space-7: 4rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: radial-gradient(
      1200px 700px at 110% -10%,
      rgba(239, 79, 200, 0.16),
      transparent 60%
    ),
    var(--bg);
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  line-height: 1.6;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--dark);
  color: #fff;
  padding: var(--space-2) var(--space-3);
  z-index: 9999;
}

.skip-link:focus {
  left: 0.75rem;
  top: 0.75rem;
}

.container {
  width: min(1120px, 92vw);
  margin-inline: auto;
}

.section {
  padding: var(--space-7) 0;
}

.section h2 {
  font-size: clamp(1.85rem, 3vw, 2.75rem);
  line-height: 1.2;
  margin: 0 0 var(--space-4);
}

.section p {
  margin: 0 0 var(--space-3);
}

.eyebrow {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.08em;
  font-size: 1.1rem;
  margin-bottom: var(--space-2);
  color: var(--accent-deep);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(244, 244, 244, 0.9);
  backdrop-filter: blur(9px);
  border-bottom: 1px solid rgba(17, 17, 19, 0.08);
}

.nav-wrap {
  min-height: 74px;
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.brand {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.9rem;
  letter-spacing: 0.03em;
}

.site-nav {
  margin-left: auto;
  display: flex;
  gap: var(--space-4);
}

.site-nav a {
  font-weight: 600;
  font-size: 0.96rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 0.75rem 1.35rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--accent);
  color: #120e14;
  box-shadow: 0 8px 18px rgba(239, 79, 200, 0.35);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #ff67d5;
}

.btn-ghost {
  border: 1px solid var(--border);
  background: var(--bg-soft);
  color: var(--ink);
}

.btn-small {
  padding: 0.6rem 1rem;
  font-size: 0.9rem;
}

.hero-grid {
  display: grid;
  gap: var(--space-6);
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
}

.hero-copy h1 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.8rem, 10vw, 6.4rem);
  line-height: 0.95;
  letter-spacing: 0.01em;
  margin: 0 0 var(--space-4);
}

.lede {
  color: var(--ink-soft);
  max-width: 65ch;
  font-size: 1.08rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin: var(--space-5) 0 var(--space-4);
}

.hero-media {
  border-radius: var(--radius);
  overflow: hidden;
  border: 6px solid #111;
  box-shadow: var(--shadow);
  background: #d9d9d9;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 2 / 3;
}

.hero-stats {
  list-style: none;
  padding: 0;
  margin: var(--space-4) 0 0;
  display: grid;
  gap: var(--space-3);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hero-stats li {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 0.85rem;
}

.stat-value {
  display: block;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.55rem;
  line-height: 1;
}

.stat-label {
  font-size: 0.84rem;
  color: var(--ink-soft);
}

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

.section-dark .eyebrow {
  color: #ff8ee0;
}

.section-dark .stat-label {
  color: #c9c9d0;
}

.section-accent {
  background: linear-gradient(145deg, #ffd2f3 0%, #ffe6f8 100%);
}

.split {
  display: grid;
  gap: var(--space-6);
  grid-template-columns: 1fr 1fr;
}

.card-grid {
  display: grid;
  gap: var(--space-4);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-4);
  box-shadow: var(--shadow);
}

.service-card h3 {
  margin: 0 0 var(--space-2);
}

.project-logo-wrap {
  background: #fff;
  border-radius: 12px;
  padding: 1rem;
  margin-bottom: var(--space-3);
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.project-logo {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.project-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-color: rgba(255, 255, 255, 0.1);
  background: var(--dark-soft);
  color: #fff;
  padding: var(--space-4);
  height: 100%;
}

.project-header h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  color: #fff;
}

.project-tag {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: var(--space-2);
  font-weight: 800;
}

.project-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: var(--space-4);
}

.project-footer .meta-stat {
  display: flex;
  flex-direction: column;
}

.project-footer .stat-value {
  font-size: 1.2rem;
  line-height: 1;
}

.project-footer .stat-label {
  font-size: 0.7rem;
  color: #c9c9d0;
}

.quote-grid {
  display: grid;
  gap: var(--space-4);
  grid-template-columns: 1fr 1fr;
}

.quote {
  margin: 0;
  background: #fff;
  border-left: 6px solid var(--accent);
  border-radius: 14px;
  padding: 1rem 1.2rem;
}

.quote p {
  font-size: 1.2rem;
  line-height: 1.45;
}

.quote cite {
  display: block;
  color: var(--ink-soft);
  font-style: normal;
  font-weight: 700;
}

.timeline article {
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.timeline article:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.timeline h3 {
  margin: 0 0 0.25rem;
}

.section-gallery {
  background: linear-gradient(180deg, #f4f4f4 0%, #ececf2 100%);
}

.gallery {
  display: grid;
  gap: var(--space-3);
  grid-template-columns: repeat(4, 1fr);
}

.gallery img {
  border-radius: 12px;
  width: 100%;
  height: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border: 1px solid var(--border);
}

.contact-card {
  display: grid;
  gap: var(--space-6);
  grid-template-columns: 1fr 1fr;
  background: var(--dark-soft);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  padding: var(--space-5);
}

.contact-form {
  display: grid;
  gap: 0.7rem;
}

.contact-form label {
  font-size: 0.94rem;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  font: inherit;
  color: var(--ink);
  background: #fff;
  border: 1px solid #c5c5cf;
  border-radius: 10px;
  padding: 0.75rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
  outline: 2px solid rgba(239, 79, 200, 0.35);
  outline-offset: 1px;
}

.site-footer {
  padding: 1.1rem 0 1.4rem;
  background: #0b0b0c;
  color: #e5e5ea;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-3);
  font-size: 0.92rem;
}

.footer-info p {
  margin: 0;
}

.social-link {
  font-weight: 700;
  color: #fff;
  transition: color 180ms ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.social-link::before {
  content: "";
  display: inline-block;
  width: 1.1rem;
  height: 1.1rem;
  background-color: #0077b5; /* LinkedIn Brand Color */
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M19 0h-14c-2.761 0-5 2.239-5 5v14c0 2.761 2.239 5 5 5h14c2.762 0 5-2.239 5-5v-14c0-2.761-2.238-5-5-5zm-11 19h-3v-11h3v11zm-1.5-12.268c-.966 0-1.75-.79-1.75-1.764s.784-1.764 1.75-1.764 1.75.79 1.75 1.764-.783 1.764-1.75 1.764zm13.5 12.268h-3v-5.604c0-3.368-4-3.113-4 0v5.604h-3v-11h3v1.765c1.396-2.586 7-2.777 7 2.476v6.759z'/%3E%3C/svg%3E") no-repeat center;
  mask-size: contain;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M19 0h-14c-2.761 0-5 2.239-5 5v14c0 2.761 2.239 5 5 5h14c2.762 0 5-2.239 5-5v-14c0-2.761-2.238-5-5-5zm-11 19h-3v-11h3v11zm-1.5-12.268c-.966 0-1.75-.79-1.75-1.764s.784-1.764 1.75-1.764 1.75.79 1.75 1.764-.783 1.764-1.75 1.764zm13.5 12.268h-3v-5.604c0-3.368-4-3.113-4 0v5.604h-3v-11h3v1.765c1.396-2.586 7-2.777 7 2.476v6.759z'/%3E%3C/svg%3E") no-repeat center;
  -webkit-mask-size: contain;
}

.social-link:hover {
  color: var(--accent);
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 450ms ease, transform 450ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .nav-wrap {
    flex-wrap: wrap;
    gap: 0.6rem var(--space-3);
    padding: 0.6rem 0;
  }

  .site-nav {
    order: 3;
    width: 100%;
    margin-left: 0;
    justify-content: space-between;
    gap: 0.75rem;
  }

  .hero-grid,
  .split,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .hero-media {
    order: -1;
    max-width: 420px;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .quote-grid {
    grid-template-columns: 1fr;
  }

  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .section {
    padding: var(--space-6) 0;
  }

  .site-nav a {
    font-size: 0.9rem;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .btn-small {
    display: none;
  }
}
