/* =========================
   Airy Artist Portfolio Theme
   ========================= */

:root {
  --bg: #ffffff;
  --ink: #0f1a2a;
  --muted: rgba(15, 26, 42, 0.68);
  --faint: rgba(15, 26, 42, 0.5);
  --p: 72%;

  --mist: #f4f9ff;
  --mist-2: #eef6ff;
  --line: rgba(26, 64, 117, 0.16);

  --blue: #2f6fed;
  --blue-2: #5aa8ff;
  --glow: rgba(90, 168, 255, 0.22);

  --radius: 18px;
  --shadow: 0 14px 40px rgba(10, 24, 46, 0.1);

  --wrap: 1120px;
  --pad: clamp(16px, 3vw, 28px);

  --h1: clamp(2.1rem, 4vw, 3.2rem);
  --h2: clamp(1.55rem, 2.2vw, 2rem);
  --h3: 1.05rem;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  background: radial-gradient(1200px 700px at 70% 0%, var(--mist-2), var(--bg));
  font:
    16px/1.55 system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    sans-serif;
}

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

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

.wrap {
  width: min(var(--wrap), calc(100% - (var(--pad) * 2)));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip-link:focus {
  left: 16px;
  top: 16px;
  width: auto;
  height: auto;
  padding: 10px 12px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
  z-index: 9999;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand__mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 800;
  letter-spacing: 0.06em;
  background: linear-gradient(135deg, var(--mist-2), #fff);
  border: 1px solid var(--line);
  box-shadow: 0 10px 25px rgba(10, 24, 46, 0.08);
}
.brand__name {
  display: block;
  font-weight: 750;
}
.brand__tag {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
}

.nav {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.nav a {
  padding: 8px 10px;
  border-radius: 12px;
}
.nav a:focus-visible {
  outline: 3px solid var(--glow);
  outline-offset: 2px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid rgba(47, 111, 237, 0.25);
  background: linear-gradient(
    135deg,
    rgba(47, 111, 237, 0.12),
    rgba(90, 168, 255, 0.1)
  );
  box-shadow: 0 12px 28px rgba(10, 24, 46, 0.08);
  font-weight: 650;
}
.btn:hover {
  text-decoration: none;
}
.btn:focus-visible {
  outline: 3px solid var(--glow);
  outline-offset: 2px;
}
.btn--ghost {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: none;
}
.btn--small {
  padding: 10px 14px;
}
.btn--wide {
  width: 100%;
}
.btn--pink {
  border-color: rgba(107, 108, 255, 0.4);
  background: linear-gradient(
    90deg,
    rgba(107, 108, 255, 0.18),
    rgba(255, 79, 216, 0.14)
  );
}

/* Hero */
.hero {
  padding: clamp(34px, 7vw, 80px) 0 28px;
  background-image: url("images/girl3.png");
  background-position: right;
  background-size: contain;
  background-repeat: no-repeat;
  min-height: 50vh;
  position: relative;
}
.hero2 {
  padding: clamp(34px, 7vw, 80px) 0 28px;
  background-image: url("images/brandname3.png");
  background-position: top center;
  background-size: contain;
  background-repeat: no-repeat;
  min-height: 50vh;
  position: relative;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr;
  gap: clamp(22px, 4vw, 48px);
  align-items: center;
}
.kicker {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--line);
  color: var(--muted);
  margin: 0 0 14px;
}
.hero h1 {
  font-size: var(--h1);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
}
.soft-emphasis {
  background: linear-gradient(
    90deg,
    rgba(47, 111, 237, 0.18),
    rgba(90, 168, 255, 0.14)
  );
  padding: 0 8px;
  border-radius: 12px;
}
.lead {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 62ch;
  margin: 0 0 18px;
}
.hero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 0 0 18px;
}
.hero__meta {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
  color: var(--muted);
}

.hero__visual {
  position: relative;
  min-height: 360px;
  display: grid;
  place-items: center;
}
.halo {
  position: absolute;
  inset: -40px;
  background: radial-gradient(
    circle at 50% 30%,
    rgba(90, 168, 255, 0.4),
    transparent 55%
  );
  filter: blur(18px);
  z-index: 0;
}
.glass-card {
  position: relative;
  z-index: 1;
  width: min(420px, 100%);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.glass-card__top {
  display: flex;
  gap: 8px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(15, 26, 42, 0.22);
}
.dot--a {
  background: rgba(47, 111, 237, 0.35);
}
.dot--b {
  background: rgba(90, 168, 255, 0.35);
}
.dot--c {
  background: rgba(15, 26, 42, 0.2);
}

.glass-card__body {
  padding: 18px;
}
.mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.mini-tile {
  aspect-ratio: 4/3;
  border-radius: 16px;
  background-image: url("images/moodboard2.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-color: #cccccc;
  border: 1px solid rgba(26, 64, 117, 0.14);
  cursor: zoom-in;
}
.mini-tile2 {
  aspect-ratio: 4/3;
  border-radius: 16px;
  background-image: url("images/brandname3.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-color: #cccccc;
  border: 1px solid rgba(26, 64, 117, 0.14);
  cursor: zoom-in;
}
.mini-tile3 {
  aspect-ratio: 4/3;
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(47, 111, 237, 0.18), rgba(90, 168, 255, 0.12)),
    radial-gradient(
      circle at 30% 30%,
      rgba(255, 255, 255, 0.7),
      transparent 50%
    );
  border: 1px solid rgba(26, 64, 117, 0.14);
}
.mini-tile4 {
  aspect-ratio: 4/3;
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(47, 111, 237, 0.18), rgba(90, 168, 255, 0.12)),
    radial-gradient(
      circle at 30% 30%,
      rgba(255, 255, 255, 0.7),
      transparent 50%
    );
  border: 1px solid rgba(26, 64, 117, 0.14);
}

a:hover .mini-tile,
a:hover .mini-tile2,
a:hover .mini-tile3,
a:hover .mini-tile4 {
  box-shadow: 0 0 0 2px rgba(104, 122, 255, 0.25);
}

.mini-caption {
  align-items: center;
  margin-top: 14px;
  display: grid;
  gap: 10px;
}
.mini-line {
  height: 10px;
  border-radius: 999px;
  background: rgba(15, 26, 42, 0.1);
}
.mini-line--short {
  width: 70%;
}

/* Sections */
.section {
  padding: clamp(34px, 7vw, 74px) 0;
}
.section--alt {
  background: linear-gradient(180deg, var(--mist), #fff);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section__head {
  margin-bottom: 18px;
}
.section__head h2 {
  font-size: var(--h2);
  margin: 0 0 6px;
}
.muted {
  color: var(--muted);
}
.tiny {
  font-size: 0.9rem;
}

/* Filters */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 14px 0 18px;
}
.chip {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.8);
  padding: 10px 12px;
  border-radius: 999px;
  cursor: pointer;
  color: var(--muted);
  font-weight: 600;
}
.chip.is-active {
  color: var(--ink);
  border-color: rgba(47, 111, 237, 0.28);
  background: linear-gradient(
    135deg,
    rgba(47, 111, 237, 0.1),
    rgba(90, 168, 255, 0.1)
  );
}

/* Work Grid */
.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}
.card {
  grid-column: span 6;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.86);
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(10, 24, 46, 0.08);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(10, 24, 46, 0.12);
}
.card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}
.card__body {
  padding: 14px 14px 16px;
}
.card__body h3 {
  margin: 0 0 2px;
  font-size: var(--h3);
}
.card__body p {
  margin: 0;
}

/* Disciplines grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.feature {
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
}
.feature h3 {
  margin: 0 0 6px;
}
.feature p {
  margin: 0;
  color: var(--muted);
}

/* Steps */
.steps {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 12px;
}
.step {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 14px;
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
}
.step__num {
  font-weight: 800;
  color: rgba(47, 111, 237, 0.85);
  letter-spacing: 0.08em;
}
.step h3 {
  margin: 0 0 6px;
}
.step p {
  margin: 0;
  color: var(--muted);
}

/* CTA */
.section--cta {
  background:
    radial-gradient(
      900px 400px at 20% 20%,
      rgba(90, 168, 255, 0.22),
      transparent 60%
    ),
    linear-gradient(180deg, var(--mist), #fff);
  border-top: 1px solid var(--line);
}
.cta {
  display: grid;
  grid-template-columns: 1.4fr 0.85fr;
  gap: 18px;
  align-items: center;
}
.cta__box {
  border-radius: var(--radius);
  border: 1px solid rgba(47, 111, 237, 0.22);
  background: rgba(255, 255, 255, 0.84);
  padding: 18px;
  box-shadow: 0 18px 42px rgba(10, 24, 46, 0.1);
}
.cta__label {
  margin: 0 0 10px;
  color: var(--muted);
  font-weight: 650;
}

/* Footer */
.footer {
  padding: 26px 0;
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

/* Responsive */
@media (max-width: 920px) {
  .hero__inner {
    grid-template-columns: 1fr;
  }
  .hero__visual {
    min-height: 280px;
  }
  .cta {
    grid-template-columns: 1fr;
  }
  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }
  .card {
    grid-column: span 12;
  }
}

@media (max-width: 560px) {
  .nav {
    display: none;
  } /* keeps it clean; we can add a mobile menu later */
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .step {
    grid-template-columns: 56px 1fr;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .card {
    transition: none;
  }
}
/* ===== Under Construction (fun + flashy, airy palette) ===== */
.uc {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  position: relative;
}

.uc__wrap {
  position: relative;
  background:
    radial-gradient(
      900px 400px at 20% 10%,
      rgba(90, 168, 255, 0.3),
      transparent 60%
    ),
    radial-gradient(
      800px 380px at 90% 0%,
      rgba(47, 111, 237, 0.22),
      transparent 55%
    ),
    rgba(255, 255, 255, 0.88);
  margin: 0 auto;
  padding: clamp(18px, 3.5vw, 28px);
  border-radius: 22px;

  border: 2px solid rgba(26, 64, 117, 0.18);
  box-shadow: 0 18px 45px rgba(10, 24, 46, 0.1);
  overflow: hidden;
}

/* Animated gradient border "frame" */
.uc__wrap::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 24px;
  padding: 2px;
  background: linear-gradient(
    90deg,
    rgba(47, 111, 237, 0.55),
    rgba(90, 168, 255, 0.55),
    rgba(255, 255, 255, 0.65),
    rgba(90, 168, 255, 0.55),
    rgba(47, 111, 237, 0.55)
  );
  background-size: 300% 100%;
  animation: ucBorder 6s linear infinite;

  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;

  pointer-events: none;
}

@keyframes ucBorder {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}

.uc__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(47, 111, 237, 0.22);
  background: rgba(255, 255, 255, 0.75);
  font-weight: 800;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  color: rgba(15, 26, 42, 0.78);
  margin-bottom: 14px;
}

.uc__dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(47, 111, 237, 0.55);
  box-shadow: 0 0 0 6px rgba(90, 168, 255, 0.18);
}

.uc__title {
  margin: 0 0 10px;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: -0.02em;
  color: #0f1a2a;
}

.uc__sub {
  margin: 0 0 18px;
  color: rgba(15, 26, 42, 0.68);
  max-width: 70ch;
}

.uc__shine {
  display: inline-block;
  background: linear-gradient(
    90deg,
    rgba(47, 111, 237, 0.22),
    rgba(90, 168, 255, 0.22),
    rgba(47, 111, 237, 0.22)
  );
  background-size: 200% 100%;
  animation: ucShine 2.8s ease-in-out infinite;
  padding: 0 0.35em;
  border-radius: 12px;
}

@keyframes ucShine {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.uc__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.uc__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid rgba(47, 111, 237, 0.25);
  background: linear-gradient(
    135deg,
    rgba(47, 111, 237, 0.14),
    rgba(90, 168, 255, 0.12)
  );
  box-shadow: 0 12px 28px rgba(10, 24, 46, 0.08);
  font-weight: 700;
  text-decoration: none;
}

.uc__btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 36px rgba(10, 24, 46, 0.12);
}

.uc__btn:focus-visible {
  outline: 3px solid rgba(90, 168, 255, 0.38);
  outline-offset: 2px;
}

.uc__btn--ghost {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(26, 64, 117, 0.18);
  box-shadow: none;
}

.uc__status {
  border-radius: 18px;
  border: 1px solid rgba(26, 64, 117, 0.16);
  background: rgba(255, 255, 255, 0.75);
  padding: 14px;
}

.uc__statusRow {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: baseline;
  margin-bottom: 10px;
}

.uc__label {
  font-weight: 800;
  color: rgba(15, 26, 42, 0.82);
}

.uc__meta {
  color: rgba(15, 26, 42, 0.6);
  font-size: 0.95rem;
}

.uc__bar {
  height: 12px;
  border-radius: 999px;
  background: rgba(15, 26, 42, 0.08);
  overflow: hidden;
  border: 1px solid rgba(26, 64, 117, 0.12);
}

.uc__barFill {
  height: 100%;
  width: var(--p, 60%);
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(47, 111, 237, 0.75),
    rgba(90, 168, 255, 0.75),
    rgba(47, 111, 237, 0.75)
  );
  background-size: 200% 100%;
  animation: ucBar 1.8s ease-in-out infinite;
}

@keyframes ucBar {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.uc__list {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
  color: rgba(15, 26, 42, 0.7);
}

.uc__spark {
  display: inline-block;
  margin-right: 8px;
  color: rgba(47, 111, 237, 0.75);
  filter: drop-shadow(0 0 10px rgba(90, 168, 255, 0.35));
  animation: ucTwinkle 2.4s ease-in-out infinite;
}

@keyframes ucTwinkle {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.9;
  }
  50% {
    transform: translateY(-2px) rotate(10deg);
    opacity: 1;
  }
}

/* ===== Project / Process Page ===== */

.page-header {
  padding: 16px 0;
}

.back-link {
  color: rgba(47, 111, 237, 0.85);
  font-weight: 600;
}

.project-hero {
  padding: clamp(64px, 9vw, 120px) 0;
  position: relative;
  overflow: hidden;

  background:
    radial-gradient(
      900px 420px at 20% 18%,
      rgba(90, 168, 255, 0.2),
      transparent 60%
    ),
    radial-gradient(
      800px 360px at 80% 0%,
      rgba(47, 111, 237, 0.14),
      transparent 55%
    ),
    linear-gradient(180deg, #f6fbff, #ffffff);
  border-bottom: 1px solid rgba(26, 64, 117, 0.12);
}

.project-hero::before {
  content: "";
  position: absolute;
  inset: -2px;
  background:
    linear-gradient(rgba(26, 64, 117, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 64, 117, 0.06) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: 0.35;
  pointer-events: none;
}

.project-hero::after {
  content: "";
  position: absolute;
  width: 680px;
  height: 680px;
  right: -260px;
  top: -260px;
  background: radial-gradient(
    circle,
    rgba(90, 168, 255, 0.35),
    transparent 60%
  );
  filter: blur(18px);
  pointer-events: none;
}
.project-hero__inner {
  max-width: 720px;
}

.project-pill {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(47, 111, 237, 0.22);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.project-hero h1 {
  font-size: clamp(2.2rem, 4.2vw, 3.4rem);
  margin: 10px 0 14px;
  letter-spacing: -0.03em;
  line-height: 1.05;
}
.project-hero h1 .soft-highlight {
  background: linear-gradient(
    90deg,
    rgba(47, 111, 237, 0.18),
    rgba(90, 168, 255, 0.12)
  );
  padding: 0 0.35em;
  border-radius: 14px;
}
.project-intro {
  font-size: 1.06rem;
  color: rgba(15, 26, 42, 0.7);
  max-width: 68ch;
}

/* Details */
.project-details {
  padding: 34px 0;
}

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

.details-grid > div {
  padding: 18px 18px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(26, 64, 117, 0.14);
  box-shadow: 0 14px 38px rgba(10, 24, 46, 0.06);
}

.details-grid h3 {
  margin: 0 0 6px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(15, 26, 42, 0.6);
}

.details-grid p {
  margin: 0;
  font-weight: 650;
  color: rgba(15, 26, 42, 0.82);
}

/* Process */
.project-process {
  padding: clamp(48px, 7vw, 90px) 0;
}

.process-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 16px;
  position: relative;
}

/* vertical line */
.process-list::before {
  content: "";
  position: absolute;
  left: 28px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: linear-gradient(
    to bottom,
    rgba(47, 111, 237, 0.18),
    rgba(90, 168, 255, 0.12)
  );
}

.process-step {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 16px;
  padding: 20px 22px 22px 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(26, 64, 117, 0.14);
  box-shadow: 0 14px 40px rgba(10, 24, 46, 0.08);
  position: relative;
}

.step-number {
  width: 90px;
  height: 55px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  justify-content: center;

  font-weight: 850;
  letter-spacing: 0.06em;
  color: rgba(15, 26, 42, 0.8);

  background: linear-gradient(
    135deg,
    rgba(47, 111, 237, 0.12),
    rgba(90, 168, 255, 0.1)
  );
  border: 1px solid rgba(47, 111, 237, 0.22);
  box-shadow: 0 10px 22px rgba(10, 24, 46, 0.06);
}

/* dot that sits on the timeline line */
.process-step::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 28px;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: rgba(47, 111, 237, 0.55);
  box-shadow: 0 0 0 6px rgba(90, 168, 255, 0.18);
}

.process-step h3 {
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}

.process-step p {
  margin: 0;
  color: rgba(15, 26, 42, 0.7);
  max-width: 72ch;
}

@media (max-width: 700px) {
  .process-list::before {
    left: 22px;
  }
  .process-step {
    grid-template-columns: 60px 1fr;
  }
  .process-step::before {
    left: 16px;
  }
}

/* Gallery */
.project-gallery {
  padding: clamp(40px, 7vw, 80px) 0;
  background: #f8fbff;
}

.gallery-grid {
  margin: 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.gallery-grid img {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(26, 64, 117, 0.12);
}

/* Footer */
.site-footer {
  padding: 32px 0;
  text-align: center;
  color: rgba(15, 26, 42, 0.6);
}

/* Responsive */
@media (max-width: 700px) {
  .details-grid {
    grid-template-columns: 1fr;
  }

  .process-step {
    grid-template-columns: 44px 1fr;
  }
}
/* ===== Font-based hero lockup ===== */
.name-hero {
  max-width: 46rem;
}

.name-hero__eyebrow {
  margin: 0 0 12px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.75);
  color: var(--muted);
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.name-hero__title {
  margin: 0;
  line-height: 0.92;
  letter-spacing: -0.04em;
  font-weight: 850;
  font-size: clamp(3rem, 6vw, 4.8rem);
  color: var(--ink);
  text-wrap: balance;
}

/* Make the first name crisp, the last name “signature” */
.name-hero__first {
  display: inline-block;
  padding-right: 0.18em;
}

.name-hero__last {
  display: inline-block;
  position: relative;
  padding: 0 0.14em 0.06em;
  border-radius: 18px;

  /* airy blue “wash” highlight */
  background: linear-gradient(
    90deg,
    rgba(47, 111, 237, 0.18),
    rgba(90, 168, 255, 0.12)
  );
}

/* elegant shine line */
.name-hero__last::after {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: -10px;
  height: 10px;
  border-radius: 999px;
  background: radial-gradient(
    closest-side,
    rgba(90, 168, 255, 0.45),
    transparent 70%
  );
  filter: blur(6px);
  opacity: 0.9;
}

.name-hero__tagline {
  margin: 18px 0 0;
  color: var(--muted);
}

.name-hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(47, 111, 237, 0.22);
  background: rgba(255, 255, 255, 0.82);
  font-weight: 750;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.85rem;
  position: relative;
}

/* subtle sparkle dots */
.name-hero__tag::before,
.name-hero__tag::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(47, 111, 237, 0.45);
  box-shadow: 0 0 0 6px rgba(90, 168, 255, 0.16);
}

@media (prefers-reduced-motion: no-preference) {
  .name-hero__last {
    background-size: 200% 100%;
    animation: nameWash 3.6s ease-in-out infinite;
  }
  @keyframes nameWash {
    0%,
    100% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
  }
}
/* ===== Project / Case Study Pages ===== */

.project-hero {
  padding: clamp(64px, 9vw, 120px) 0;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      900px 420px at 20% 18%,
      rgba(90, 168, 255, 0.2),
      transparent 60%
    ),
    radial-gradient(
      800px 360px at 80% 0%,
      rgba(47, 111, 237, 0.14),
      transparent 55%
    ),
    linear-gradient(180deg, #f6fbff, #ffffff);
  border-bottom: 1px solid rgba(26, 64, 117, 0.12);
}

.project-hero::before {
  content: "";
  position: absolute;
  inset: -2px;
  background:
    linear-gradient(rgba(26, 64, 117, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 64, 117, 0.06) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: 0.35;
  pointer-events: none;
}

.project-hero::after {
  content: "";
  position: absolute;
  width: 680px;
  height: 680px;
  right: -260px;
  top: -260px;
  background: radial-gradient(
    circle,
    rgba(90, 168, 255, 0.35),
    transparent 60%
  );
  filter: blur(18px);
  pointer-events: none;
}

.project-hero__inner {
  max-width: 720px;
}

.project-pill {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(47, 111, 237, 0.22);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.project-intro {
  font-size: 1.06rem;
  color: rgba(15, 26, 42, 0.7);
  max-width: 68ch;
}

.project-section {
  padding: clamp(40px, 7vw, 80px) 0;
}

.project-text {
  max-width: 720px;
}

.project-text h2 {
  margin: 0 0 12px;
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
}

.project-text p {
  color: rgba(15, 26, 42, 0.72);
  margin: 0 0 14px;
  line-height: 1.6;
}

.project-text ul {
  margin: 12px 0 0;
  padding-left: 18px;
  color: rgba(15, 26, 42, 0.7);
}

.pill-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill-list li {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(26, 64, 117, 0.16);
  font-weight: 600;
  color: rgba(15, 26, 42, 0.72);
}

/* Details */
.project-details {
  padding: 34px 0;
}

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

.details-grid > div {
  padding: 18px 18px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(26, 64, 117, 0.14);
  box-shadow: 0 14px 38px rgba(10, 24, 46, 0.06);
}

.details-grid h3 {
  margin: 0 0 6px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(15, 26, 42, 0.6);
}

.details-grid p {
  margin: 0;
  font-weight: 650;
  color: rgba(15, 26, 42, 0.82);
}

/* ===== Process Timeline ===== */

.project-process {
  padding: clamp(48px, 7vw, 90px) 0;
}

.process-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 16px;
  position: relative;
}

.process-list::before {
  content: "";
  position: absolute;
  left: 28px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: linear-gradient(
    to bottom,
    rgba(47, 111, 237, 0.18),
    rgba(90, 168, 255, 0.12)
  );
}

.process-step {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 16px;
  padding: 22px 22px 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(26, 64, 117, 0.14);
  box-shadow: 0 14px 40px rgba(10, 24, 46, 0.08);
  position: relative;
}

.step-number {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 850;
  letter-spacing: 0.06em;
  color: rgba(15, 26, 42, 0.8);
  background: linear-gradient(
    135deg,
    rgba(47, 111, 237, 0.12),
    rgba(90, 168, 255, 0.1)
  );
  border: 1px solid rgba(47, 111, 237, 0.22);
  box-shadow: 0 10px 22px rgba(10, 24, 46, 0.06);
}

.process-step::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 28px;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: rgba(47, 111, 237, 0.55);
  box-shadow: 0 0 0 6px rgba(90, 168, 255, 0.18);
}

.process-step h3 {
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}

.process-step p {
  margin: 0;
  color: rgba(15, 26, 42, 0.7);
  max-width: 72ch;
}

/* Outcome */
.project-outcome {
  padding: 22px;
  border-radius: 22px;
  background:
    radial-gradient(
      700px 260px at 20% 0%,
      rgba(90, 168, 255, 0.18),
      transparent 60%
    ),
    rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(26, 64, 117, 0.14);
  box-shadow: 0 16px 44px rgba(10, 24, 46, 0.08);
}

/* CTA */
.section--cta {
  background:
    radial-gradient(
      900px 400px at 20% 20%,
      rgba(90, 168, 255, 0.22),
      transparent 60%
    ),
    linear-gradient(180deg, var(--mist), #fff);
  border-top: 1px solid rgba(26, 64, 117, 0.16);
}

.cta {
  display: grid;
  grid-template-columns: 1.4fr 0.85fr;
  gap: 18px;
  align-items: center;
}

.cta__box {
  border-radius: 20px;
  border: 1px solid rgba(47, 111, 237, 0.22);
  background: rgba(255, 255, 255, 0.84);
  padding: 18px;
  box-shadow: 0 18px 42px rgba(10, 24, 46, 0.1);
}

/* Responsive */
@media (max-width: 700px) {
  .details-grid {
    grid-template-columns: 1fr;
  }

  .process-step {
    grid-template-columns: 44px 1fr;
  }

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