/* Variables */
:root {
  --purple: #6c2cff;
  --purple-dark: #3a16a6;
  --bg: #0b0b10;
  --text: #0f1020;
  --muted: #6b6f76;
  --card: #f3f4f6;
  --white: #ffffff;
  --maxw: 1200px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  height: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: 'Manrope', sans-serif;
  color: var(--text);
  background: #fff;
}

/* About page */
#about-main {
  padding: 56px 16px;
}

.about-wrap {
  max-width: var(--maxw);
  margin: 0 auto;
}

.about-hero {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 28px;
  align-items: center;
  padding: 22px;
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: linear-gradient(135deg, rgba(108, 44, 255, 0.10), rgba(255, 255, 255, 1) 50%);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.about-photo {
  width: 220px;
  height: 220px;
  border-radius: 18px;
  object-fit: cover;
  display: block;
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: #ddd;
}

.about-name {
  margin: 10px 0 6px;
  font-size: 44px;
  letter-spacing: 0.02em;
  line-height: 1.05;
}

.about-role {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: #111;
  letter-spacing: 0.04em;
}

.about-sub {
  margin: 10px 0 0;
  font-size: 18px;
  color: #1c1c2b;
  max-width: 56ch;
}

.about-chips {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.about-chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(108, 44, 255, 0.10);
  color: var(--purple);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

.about-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 22px;
}

.about-card {
  background: var(--card);
  border-radius: 18px;
  padding: 22px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  text-align: left;
}

.about-card h2 {
  margin: 0 0 10px;
  font-size: 22px;
  letter-spacing: 0.02em;
}

.about-lede {
  margin: 0 0 14px;
  color: #1c1c2b;
  font-size: 16px;
}

.about-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.about-list li {
  position: relative;
  padding-left: 18px;
  color: #2b2f36;
  font-size: 15px;
  line-height: 1.35;
}

.about-list li::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--purple);
  position: absolute;
  left: 0;
  top: 0.5em;
  transform: translateY(-50%);
}

.about-story p {
  margin: 10px 0 0;
  color: #2b2f36;
  font-size: 16px;
  line-height: 1.8;
}

.about-signoff {
  margin-top: 16px;
  font-weight: 700;
  color: #111;
}

.about-cta {
  margin-top: 22px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: var(--purple);
  color: #fff;
}

.about-cta-inner {
  padding: 26px;
  display: grid;
  gap: 10px;
  align-items: start;
  text-align: left;
}

.about-cta-inner h2 {
  margin: 0;
  font-size: 24px;
}

.about-cta-inner p {
  margin: 0;
  opacity: 0.95;
}

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

@media (max-width: 560px) {
  .about-hero {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }

  .about-name {
    font-size: 34px;
  }

  .about-sub {
    font-size: 16px;
    margin-left: auto;
    margin-right: auto;
  }

  .about-cta-inner {
    text-align: center;
    justify-items: center;
  }
}

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: saturate(180%) blur(12px);
  background: rgba(255, 255, 255, 0.75);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.contact {
  font-family: 'Manrope', sans-serif;
}

.nav {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 10px 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo img {
  height: 60px;
  width: auto;
  display: block;
}

.nav-group {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.spacer {
  flex: 1;
}

.nav a {
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: #111;
  opacity: 0.9;
}

.nav a[aria-current='page'] {
  opacity: 1;
  color: var(--purple);
  font-weight: 700;
  position: relative;
}

.nav a[aria-current='page']::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}

.nav a.btn[aria-current='page']::after {
  display: none;
}

.nav a.btn-primary[aria-current='page'] {
  box-shadow: 0 0 0 3px rgba(108, 44, 255, 0.22);
}

.nav a:hover {
  opacity: 1;
}

.btn {
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--purple);
  color: var(--white) !important;
}

.btn-primary:hover {
  background: var(--purple-dark);
  color: var(--white) !important;
}

.hero {
  position: relative;
  overflow: hidden;
}

.hero-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 16px;
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  pointer-events: none;
}

.hero-text {
  width: 820px;
  max-width: 90%;
  height: auto;
  display: block;
}

.hero-title {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin: 0;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.hero-bg {
  position: relative;
  height: 720px;
  width: 100%;
  overflow: hidden;
  background: #16002b;
}

.hero-bg img,
.hero-bg video {
  position: absolute;
  inset: -5% -5% -5% -5%;
  width: 110%;
  height: 110%;
  object-fit: cover;
  filter: saturate(1.1) contrast(1.05);
  animation: floatSlow 26s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes floatSlow {
  0% {
    transform: translate3d(-2%, -2%, 0) scale(1.05);
  }

  100% {
    transform: translate3d(2%, 2%, 0) scale(1.08);
  }
}

.tagline {
  text-align: center;
  margin-top: 12px;
  font-size: 18px;
  letter-spacing: 0.1em;
  color: #fff;
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.35);
}

section {
  padding: 56px 16px;
}

.center {
  max-width: var(--maxw);
  margin: 0 auto;
  text-align: center;
}

.eyebrow {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
}

.eyebrow-icon {
  width: 16px;
  height: 16px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
}

.eyebrow.purple-bg {
  background: var(--purple);
  color: #fff;
  padding: 8px 20px;
  display: inline-block;
  border-radius: 999px;
}

h1,
h2,
h3 {
  margin: 10px 0;
}

h2 {
  font-size: 20px;
  font-weight: 400;
  font-family: 'Manrope', sans-serif;
}

.purple-text {
  font-size: 14px;
  color: var(--purple);
}

.lede {
  font-size: 20px;
  font-weight: 400;
  max-width: 760px;
  margin: 8px auto 0;
  color: #1c1c2b;
  font-family: 'Manrope', sans-serif;
}

.video-wrap {
  max-width: var(--maxw);
  margin: 28px auto 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.video-wrap video {
  display: block;
  width: 100%;
  height: auto;
  background: #ddd;
}

.grid {
  max-width: var(--maxw);
  margin: 26px auto 0;
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(12, 1fr);
}

.card {
  grid-column: span 6;
  background: var(--card);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.card img {
  display: block;
  width: 100%;
  height: 350px;
  object-fit: cover;
  background: #ddd;
}

.card .meta {
  padding: 12px 14px;
}

.card .title {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #111;
}

.card .desc {
  font-size: 12px;
  color: #4b4f56;
}

/* Services-only: larger, tighter lists for service cards */
#services-main {
  padding: 56px 16px;
}

#services-main .services-head {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 6px 0 6px;
}

#services-main .services-title {
  margin: 10px 0 0;
  font-size: 36px;
  letter-spacing: 0.02em;
}

#services-main .services-lede {
  margin-top: 10px;
}

#services-main .grid {
  margin-top: 18px;
}

#services-main .card {
  border-radius: 18px;
}

#services-main .card img {
  height: 280px;
}

#services-main .card .desc {
  font-size: 15px;
  color: #4b4f56;
  line-height: 1.45;
}

#services-main .card .desc ul {
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

#services-main .card .desc ul li {
  margin: 0;
  font-size: 15px;
  line-height: 1.4;
  position: relative;
  padding-left: 18px;
}

#services-main .card .desc ul li::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--purple);
  position: absolute;
  left: 0;
  top: 0.7em;
  transform: translateY(-50%);
}

#services-main .card .desc ul li.service-meta {
  padding-left: 0;
  margin-top: 8px;
  color: #111;
}

#services-main .card .desc ul li.service-meta::before {
  display: none;
}

#services-main .card .desc ul li.service-meta strong {
  color: var(--purple-dark);
}

@media (max-width: 560px) {
  #services-main .services-title {
    font-size: 28px;
  }

  #services-main .card img {
    height: 240px;
  }
}

.see-more {
  margin: 18px auto 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.see-more a {
  display: inline-block;
  text-decoration: none;
  padding: 12px 40px;
  text-align: center;
  width: 400px;
  border: 1px solid var(--purple);
  color: #000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.stripe {
  margin-top: 100px;
  background: var(--purple);
  color: #fff;
  position: relative;
  overflow: visible;
  padding: 0;
}

.stripe-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 24px 120px 0;
  display: grid;
  gap: 24px;
  grid-template-columns: 160px 1fr;
  align-items: center;
}

.stripe .portrait {
  width: 200px;
  height: 200px;
  border-radius: 14px;
  object-fit: cover;
  background: transparent;
  border: none;
  position: relative;
  margin-top: -60px;
}

.stripe .quote {
  padding: 0 40px;
  margin-left: 20px;
  font-size: 20px;
  line-height: 2;
  font-weight: 600;
  font-family: 'Manrope', sans-serif;
}

footer {
  background: #0b0a13;
  color: #cfd3d8;
}

.footer-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 42px 80px;
  display: grid;
  gap: 100px;
  grid-template-columns: max-content max-content max-content;
  text-align: left;
  justify-items: start;
  justify-content: center;
}

footer h4 {
  margin: 0;
  color: #fff;
  font-size: 14px;
}

footer p {
  margin: 8px 0;
}

footer a {
  color: #cfd3d8;
  text-decoration: none;
  font-size: 14px;
}

footer a:hover {
  color: #fff;
}

/* Social icons in footer */
.socials {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  text-decoration: none;
  position: relative;
}

.social-link svg {
  width: 36px;
  height: 36px;
  display: block;
}

.social-link svg .bg {
  fill: #fff;
  transition: fill 0.12s ease, opacity 0.12s ease;
}

.social-link svg path {
  fill: #fff;
}

.social-link:hover svg .bg,
.social-link:focus svg .bg {
  opacity: 0.9;
}

.social-link:focus {
  outline: 2px solid rgba(108, 44, 255, 0.15);
  outline-offset: 2px;
  border-radius: 8px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 980px) {
  .nav-group {
    gap: 18px;
  }

  .hero-bg {
    height: 360px;
  }

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

  .card {
    grid-column: span 6;
  }

  .stripe-inner {
    grid-template-columns: 1fr;
  }

  .stripe .portrait {
    justify-self: center;
    margin-top: -60px;
    margin-bottom: -60px;
  }

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

/* Contact form styles */
.contact-form {
  max-width: 720px;
  margin: 18px auto 0;
  display: grid;
  gap: 10px;
  text-align: left;
}

.contact-form label {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  font-size: 16px;
  font-family: inherit;
  resize: vertical;
}

.contact-form textarea {
  min-height: 120px;
}

.contact-form .btn {
  padding: 10px 18px;
}

/* Services-specific CSS removed — using portfolio grid styles for services page */

@media (max-width: 560px) {
  .nav {
    gap: 12px;
  }

  .nav a {
    font-size: 11px;
  }

  .btn {
    padding: 8px 12px;
  }

  .hero-bg {
    height: 300px;
  }

  .hero-title {
    font-size: 32px;
  }

  .tagline {
    font-size: 14px;
  }

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

  .stripe .portrait {
    margin-top: -40px;
    margin-bottom: -40px;
  }
}

/* Services-only title style */
#services-main .card .title {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

@media (max-width: 560px) {
  #services-main .card .title {
    font-size: 14px;
  }
}